]> git.lizzy.rs Git - rust.git/blob - src/librustc/ty/context.rs
0cfdea68e881c80ee4625ec52eda3175a0cb2fa6
[rust.git] / src / librustc / ty / context.rs
1 // Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! type context book-keeping
12
13 use dep_graph::DepGraph;
14 use dep_graph::{DepNode, DepConstructor};
15 use errors::DiagnosticBuilder;
16 use session::Session;
17 use session::config::{BorrowckMode, OutputFilenames};
18 use session::config::CrateType;
19 use middle;
20 use hir::{TraitCandidate, HirId, ItemLocalId};
21 use hir::def::{Def, Export};
22 use hir::def_id::{CrateNum, DefId, DefIndex, LOCAL_CRATE};
23 use hir::map as hir_map;
24 use hir::map::DefPathHash;
25 use lint::{self, Lint};
26 use ich::{StableHashingContext, NodeIdHashingMode};
27 use infer::canonical::{CanonicalVarInfo, CanonicalVarInfos};
28 use infer::outlives::free_region_map::FreeRegionMap;
29 use middle::cstore::{CrateStoreDyn, LinkMeta};
30 use middle::cstore::EncodedMetadata;
31 use middle::lang_items;
32 use middle::resolve_lifetime::{self, ObjectLifetimeDefault};
33 use middle::stability;
34 use mir::{self, Mir, interpret};
35 use mir::interpret::Allocation;
36 use ty::subst::{Kind, Substs, Subst};
37 use ty::ReprOptions;
38 use traits;
39 use traits::{Clause, Clauses, Goal, Goals};
40 use ty::{self, Ty, TypeAndMut};
41 use ty::{TyS, TypeVariants, Slice};
42 use ty::{AdtKind, AdtDef, ClosureSubsts, GeneratorSubsts, Region, Const};
43 use ty::{PolyFnSig, InferTy, ParamTy, ProjectionTy, ExistentialPredicate, Predicate};
44 use ty::RegionKind;
45 use ty::{TyVar, TyVid, IntVar, IntVid, FloatVar, FloatVid};
46 use ty::TypeVariants::*;
47 use ty::GenericParamDefKind;
48 use ty::layout::{LayoutDetails, TargetDataLayout};
49 use ty::query;
50 use ty::steal::Steal;
51 use ty::BindingMode;
52 use ty::CanonicalTy;
53 use util::nodemap::{DefIdSet, ItemLocalMap};
54 use util::nodemap::{FxHashMap, FxHashSet};
55 use rustc_data_structures::accumulate_vec::AccumulateVec;
56 use rustc_data_structures::stable_hasher::{HashStable, hash_stable_hashmap,
57                                            StableHasher, StableHasherResult,
58                                            StableVec};
59 use arena::{TypedArena, SyncDroplessArena};
60 use rustc_data_structures::indexed_vec::IndexVec;
61 use rustc_data_structures::sync::{self, Lrc, Lock, WorkerLocal};
62 use std::any::Any;
63 use std::borrow::Borrow;
64 use std::cmp::Ordering;
65 use std::collections::hash_map::{self, Entry};
66 use std::hash::{Hash, Hasher};
67 use std::fmt;
68 use std::mem;
69 use std::ops::Deref;
70 use std::iter;
71 use std::sync::mpsc;
72 use std::sync::Arc;
73 use rustc_target::spec::abi;
74 use syntax::ast::{self, NodeId};
75 use syntax::attr;
76 use syntax::codemap::MultiSpan;
77 use syntax::edition::Edition;
78 use syntax::feature_gate;
79 use syntax::symbol::{Symbol, keywords, InternedString};
80 use syntax_pos::Span;
81
82 use hir;
83
84 pub struct AllArenas<'tcx> {
85     pub global: WorkerLocal<GlobalArenas<'tcx>>,
86     pub interner: SyncDroplessArena,
87 }
88
89 impl<'tcx> AllArenas<'tcx> {
90     pub fn new() -> Self {
91         AllArenas {
92             global: WorkerLocal::new(|_| GlobalArenas::new()),
93             interner: SyncDroplessArena::new(),
94         }
95     }
96 }
97
98 /// Internal storage
99 pub struct GlobalArenas<'tcx> {
100     // internings
101     layout: TypedArena<LayoutDetails>,
102
103     // references
104     generics: TypedArena<ty::Generics>,
105     trait_def: TypedArena<ty::TraitDef>,
106     adt_def: TypedArena<ty::AdtDef>,
107     steal_mir: TypedArena<Steal<Mir<'tcx>>>,
108     mir: TypedArena<Mir<'tcx>>,
109     tables: TypedArena<ty::TypeckTables<'tcx>>,
110     /// miri allocations
111     const_allocs: TypedArena<interpret::Allocation>,
112 }
113
114 impl<'tcx> GlobalArenas<'tcx> {
115     pub fn new() -> GlobalArenas<'tcx> {
116         GlobalArenas {
117             layout: TypedArena::new(),
118             generics: TypedArena::new(),
119             trait_def: TypedArena::new(),
120             adt_def: TypedArena::new(),
121             steal_mir: TypedArena::new(),
122             mir: TypedArena::new(),
123             tables: TypedArena::new(),
124             const_allocs: TypedArena::new(),
125         }
126     }
127 }
128
129 type InternedSet<'tcx, T> = Lock<FxHashSet<Interned<'tcx, T>>>;
130
131 pub struct CtxtInterners<'tcx> {
132     /// The arena that types, regions, etc are allocated from
133     arena: &'tcx SyncDroplessArena,
134
135     /// Specifically use a speedy hash algorithm for these hash sets,
136     /// they're accessed quite often.
137     type_: InternedSet<'tcx, TyS<'tcx>>,
138     type_list: InternedSet<'tcx, Slice<Ty<'tcx>>>,
139     substs: InternedSet<'tcx, Substs<'tcx>>,
140     canonical_var_infos: InternedSet<'tcx, Slice<CanonicalVarInfo>>,
141     region: InternedSet<'tcx, RegionKind>,
142     existential_predicates: InternedSet<'tcx, Slice<ExistentialPredicate<'tcx>>>,
143     predicates: InternedSet<'tcx, Slice<Predicate<'tcx>>>,
144     const_: InternedSet<'tcx, Const<'tcx>>,
145     clauses: InternedSet<'tcx, Slice<Clause<'tcx>>>,
146     goals: InternedSet<'tcx, Slice<Goal<'tcx>>>,
147 }
148
149 impl<'gcx: 'tcx, 'tcx> CtxtInterners<'tcx> {
150     fn new(arena: &'tcx SyncDroplessArena) -> CtxtInterners<'tcx> {
151         CtxtInterners {
152             arena,
153             type_: Default::default(),
154             type_list: Default::default(),
155             substs: Default::default(),
156             region: Default::default(),
157             existential_predicates: Default::default(),
158             canonical_var_infos: Default::default(),
159             predicates: Default::default(),
160             const_: Default::default(),
161             clauses: Default::default(),
162             goals: Default::default(),
163         }
164     }
165
166     /// Intern a type
167     fn intern_ty(
168         local: &CtxtInterners<'tcx>,
169         global: &CtxtInterners<'gcx>,
170         st: TypeVariants<'tcx>
171     ) -> Ty<'tcx> {
172         let flags = super::flags::FlagComputation::for_sty(&st);
173
174         // HACK(eddyb) Depend on flags being accurate to
175         // determine that all contents are in the global tcx.
176         // See comments on Lift for why we can't use that.
177         if flags.flags.intersects(ty::TypeFlags::KEEP_IN_LOCAL_TCX) {
178             let mut interner = local.type_.borrow_mut();
179             if let Some(&Interned(ty)) = interner.get(&st) {
180                 return ty;
181             }
182
183             let ty_struct = TyS {
184                 sty: st,
185                 flags: flags.flags,
186                 outer_exclusive_binder: flags.outer_exclusive_binder,
187             };
188
189             // Make sure we don't end up with inference
190             // types/regions in the global interner
191             if local as *const _ as usize == global as *const _ as usize {
192                 bug!("Attempted to intern `{:?}` which contains \
193                     inference types/regions in the global type context",
194                     &ty_struct);
195             }
196
197             // Don't be &mut TyS.
198             let ty: Ty<'tcx> = local.arena.alloc(ty_struct);
199             interner.insert(Interned(ty));
200             ty
201         } else {
202             let mut interner = global.type_.borrow_mut();
203             if let Some(&Interned(ty)) = interner.get(&st) {
204                 return ty;
205             }
206
207             let ty_struct = TyS {
208                 sty: st,
209                 flags: flags.flags,
210                 outer_exclusive_binder: flags.outer_exclusive_binder,
211             };
212
213             // This is safe because all the types the ty_struct can point to
214             // already is in the global arena
215             let ty_struct: TyS<'gcx> = unsafe {
216                 mem::transmute(ty_struct)
217             };
218
219             // Don't be &mut TyS.
220             let ty: Ty<'gcx> = global.arena.alloc(ty_struct);
221             interner.insert(Interned(ty));
222             ty
223         }
224     }
225 }
226
227 pub struct CommonTypes<'tcx> {
228     pub bool: Ty<'tcx>,
229     pub char: Ty<'tcx>,
230     pub isize: Ty<'tcx>,
231     pub i8: Ty<'tcx>,
232     pub i16: Ty<'tcx>,
233     pub i32: Ty<'tcx>,
234     pub i64: Ty<'tcx>,
235     pub i128: Ty<'tcx>,
236     pub usize: Ty<'tcx>,
237     pub u8: Ty<'tcx>,
238     pub u16: Ty<'tcx>,
239     pub u32: Ty<'tcx>,
240     pub u64: Ty<'tcx>,
241     pub u128: Ty<'tcx>,
242     pub f32: Ty<'tcx>,
243     pub f64: Ty<'tcx>,
244     pub never: Ty<'tcx>,
245     pub err: Ty<'tcx>,
246
247     pub re_empty: Region<'tcx>,
248     pub re_static: Region<'tcx>,
249     pub re_erased: Region<'tcx>,
250 }
251
252 pub struct LocalTableInContext<'a, V: 'a> {
253     local_id_root: Option<DefId>,
254     data: &'a ItemLocalMap<V>
255 }
256
257 /// Validate that the given HirId (respectively its `local_id` part) can be
258 /// safely used as a key in the tables of a TypeckTable. For that to be
259 /// the case, the HirId must have the same `owner` as all the other IDs in
260 /// this table (signified by `local_id_root`). Otherwise the HirId
261 /// would be in a different frame of reference and using its `local_id`
262 /// would result in lookup errors, or worse, in silently wrong data being
263 /// stored/returned.
264 fn validate_hir_id_for_typeck_tables(local_id_root: Option<DefId>,
265                                      hir_id: hir::HirId,
266                                      mut_access: bool) {
267     if cfg!(debug_assertions) {
268         if let Some(local_id_root) = local_id_root {
269             if hir_id.owner != local_id_root.index {
270                 ty::tls::with(|tcx| {
271                     let node_id = tcx.hir.hir_to_node_id(hir_id);
272
273                     bug!("node {} with HirId::owner {:?} cannot be placed in \
274                           TypeckTables with local_id_root {:?}",
275                           tcx.hir.node_to_string(node_id),
276                           DefId::local(hir_id.owner),
277                           local_id_root)
278                 });
279             }
280         } else {
281             // We use "Null Object" TypeckTables in some of the analysis passes.
282             // These are just expected to be empty and their `local_id_root` is
283             // `None`. Therefore we cannot verify whether a given `HirId` would
284             // be a valid key for the given table. Instead we make sure that
285             // nobody tries to write to such a Null Object table.
286             if mut_access {
287                 bug!("access to invalid TypeckTables")
288             }
289         }
290     }
291 }
292
293 impl<'a, V> LocalTableInContext<'a, V> {
294     pub fn contains_key(&self, id: hir::HirId) -> bool {
295         validate_hir_id_for_typeck_tables(self.local_id_root, id, false);
296         self.data.contains_key(&id.local_id)
297     }
298
299     pub fn get(&self, id: hir::HirId) -> Option<&V> {
300         validate_hir_id_for_typeck_tables(self.local_id_root, id, false);
301         self.data.get(&id.local_id)
302     }
303
304     pub fn iter(&self) -> hash_map::Iter<hir::ItemLocalId, V> {
305         self.data.iter()
306     }
307 }
308
309 impl<'a, V> ::std::ops::Index<hir::HirId> for LocalTableInContext<'a, V> {
310     type Output = V;
311
312     fn index(&self, key: hir::HirId) -> &V {
313         self.get(key).expect("LocalTableInContext: key not found")
314     }
315 }
316
317 pub struct LocalTableInContextMut<'a, V: 'a> {
318     local_id_root: Option<DefId>,
319     data: &'a mut ItemLocalMap<V>
320 }
321
322 impl<'a, V> LocalTableInContextMut<'a, V> {
323     pub fn get_mut(&mut self, id: hir::HirId) -> Option<&mut V> {
324         validate_hir_id_for_typeck_tables(self.local_id_root, id, true);
325         self.data.get_mut(&id.local_id)
326     }
327
328     pub fn entry(&mut self, id: hir::HirId) -> Entry<hir::ItemLocalId, V> {
329         validate_hir_id_for_typeck_tables(self.local_id_root, id, true);
330         self.data.entry(id.local_id)
331     }
332
333     pub fn insert(&mut self, id: hir::HirId, val: V) -> Option<V> {
334         validate_hir_id_for_typeck_tables(self.local_id_root, id, true);
335         self.data.insert(id.local_id, val)
336     }
337
338     pub fn remove(&mut self, id: hir::HirId) -> Option<V> {
339         validate_hir_id_for_typeck_tables(self.local_id_root, id, true);
340         self.data.remove(&id.local_id)
341     }
342 }
343
344 #[derive(RustcEncodable, RustcDecodable, Debug)]
345 pub struct TypeckTables<'tcx> {
346     /// The HirId::owner all ItemLocalIds in this table are relative to.
347     pub local_id_root: Option<DefId>,
348
349     /// Resolved definitions for `<T>::X` associated paths and
350     /// method calls, including those of overloaded operators.
351     type_dependent_defs: ItemLocalMap<Def>,
352
353     /// Resolved field indices for field accesses in expressions (`S { field }`, `obj.field`)
354     /// or patterns (`S { field }`). The index is often useful by itself, but to learn more
355     /// about the field you also need definition of the variant to which the field
356     /// belongs, but it may not exist if it's a tuple field (`tuple.0`).
357     field_indices: ItemLocalMap<usize>,
358
359     /// Stores the canonicalized types provided by the user. See also `UserAssertTy` statement in
360     /// MIR.
361     user_provided_tys: ItemLocalMap<CanonicalTy<'tcx>>,
362
363     /// Stores the types for various nodes in the AST.  Note that this table
364     /// is not guaranteed to be populated until after typeck.  See
365     /// typeck::check::fn_ctxt for details.
366     node_types: ItemLocalMap<Ty<'tcx>>,
367
368     /// Stores the type parameters which were substituted to obtain the type
369     /// of this node.  This only applies to nodes that refer to entities
370     /// parameterized by type parameters, such as generic fns, types, or
371     /// other items.
372     node_substs: ItemLocalMap<&'tcx Substs<'tcx>>,
373
374     adjustments: ItemLocalMap<Vec<ty::adjustment::Adjustment<'tcx>>>,
375
376     /// Stores the actual binding mode for all instances of hir::BindingAnnotation.
377     pat_binding_modes: ItemLocalMap<BindingMode>,
378
379     /// Stores the types which were implicitly dereferenced in pattern binding modes
380     /// for later usage in HAIR lowering. For example,
381     ///
382     /// ```
383     /// match &&Some(5i32) {
384     ///     Some(n) => {},
385     ///     _ => {},
386     /// }
387     /// ```
388     /// leads to a `vec![&&Option<i32>, &Option<i32>]`. Empty vectors are not stored.
389     ///
390     /// See:
391     /// https://github.com/rust-lang/rfcs/blob/master/text/2005-match-ergonomics.md#definitions
392     pat_adjustments: ItemLocalMap<Vec<Ty<'tcx>>>,
393
394     /// Borrows
395     pub upvar_capture_map: ty::UpvarCaptureMap<'tcx>,
396
397     /// Records the reasons that we picked the kind of each closure;
398     /// not all closures are present in the map.
399     closure_kind_origins: ItemLocalMap<(Span, ast::Name)>,
400
401     /// For each fn, records the "liberated" types of its arguments
402     /// and return type. Liberated means that all bound regions
403     /// (including late-bound regions) are replaced with free
404     /// equivalents. This table is not used in codegen (since regions
405     /// are erased there) and hence is not serialized to metadata.
406     liberated_fn_sigs: ItemLocalMap<ty::FnSig<'tcx>>,
407
408     /// For each FRU expression, record the normalized types of the fields
409     /// of the struct - this is needed because it is non-trivial to
410     /// normalize while preserving regions. This table is used only in
411     /// MIR construction and hence is not serialized to metadata.
412     fru_field_types: ItemLocalMap<Vec<Ty<'tcx>>>,
413
414     /// Maps a cast expression to its kind. This is keyed on the
415     /// *from* expression of the cast, not the cast itself.
416     cast_kinds: ItemLocalMap<ty::cast::CastKind>,
417
418     /// Set of trait imports actually used in the method resolution.
419     /// This is used for warning unused imports. During type
420     /// checking, this `Lrc` should not be cloned: it must have a ref-count
421     /// of 1 so that we can insert things into the set mutably.
422     pub used_trait_imports: Lrc<DefIdSet>,
423
424     /// If any errors occurred while type-checking this body,
425     /// this field will be set to `true`.
426     pub tainted_by_errors: bool,
427
428     /// Stores the free-region relationships that were deduced from
429     /// its where clauses and parameter types. These are then
430     /// read-again by borrowck.
431     pub free_region_map: FreeRegionMap<'tcx>,
432
433     /// All the existential types that are restricted to concrete types
434     /// by this function
435     pub concrete_existential_types: FxHashMap<DefId, Ty<'tcx>>,
436 }
437
438 impl<'tcx> TypeckTables<'tcx> {
439     pub fn empty(local_id_root: Option<DefId>) -> TypeckTables<'tcx> {
440         TypeckTables {
441             local_id_root,
442             type_dependent_defs: ItemLocalMap(),
443             field_indices: ItemLocalMap(),
444             user_provided_tys: ItemLocalMap(),
445             node_types: ItemLocalMap(),
446             node_substs: ItemLocalMap(),
447             adjustments: ItemLocalMap(),
448             pat_binding_modes: ItemLocalMap(),
449             pat_adjustments: ItemLocalMap(),
450             upvar_capture_map: FxHashMap(),
451             closure_kind_origins: ItemLocalMap(),
452             liberated_fn_sigs: ItemLocalMap(),
453             fru_field_types: ItemLocalMap(),
454             cast_kinds: ItemLocalMap(),
455             used_trait_imports: Lrc::new(DefIdSet()),
456             tainted_by_errors: false,
457             free_region_map: FreeRegionMap::new(),
458             concrete_existential_types: FxHashMap(),
459         }
460     }
461
462     /// Returns the final resolution of a `QPath` in an `Expr` or `Pat` node.
463     pub fn qpath_def(&self, qpath: &hir::QPath, id: hir::HirId) -> Def {
464         match *qpath {
465             hir::QPath::Resolved(_, ref path) => path.def,
466             hir::QPath::TypeRelative(..) => {
467                 validate_hir_id_for_typeck_tables(self.local_id_root, id, false);
468                 self.type_dependent_defs.get(&id.local_id).cloned().unwrap_or(Def::Err)
469             }
470         }
471     }
472
473     pub fn type_dependent_defs(&self) -> LocalTableInContext<Def> {
474         LocalTableInContext {
475             local_id_root: self.local_id_root,
476             data: &self.type_dependent_defs
477         }
478     }
479
480     pub fn type_dependent_defs_mut(&mut self) -> LocalTableInContextMut<Def> {
481         LocalTableInContextMut {
482             local_id_root: self.local_id_root,
483             data: &mut self.type_dependent_defs
484         }
485     }
486
487     pub fn field_indices(&self) -> LocalTableInContext<usize> {
488         LocalTableInContext {
489             local_id_root: self.local_id_root,
490             data: &self.field_indices
491         }
492     }
493
494     pub fn field_indices_mut(&mut self) -> LocalTableInContextMut<usize> {
495         LocalTableInContextMut {
496             local_id_root: self.local_id_root,
497             data: &mut self.field_indices
498         }
499     }
500
501     pub fn user_provided_tys(&self) -> LocalTableInContext<CanonicalTy<'tcx>> {
502         LocalTableInContext {
503             local_id_root: self.local_id_root,
504             data: &self.user_provided_tys
505         }
506     }
507
508     pub fn user_provided_tys_mut(&mut self) -> LocalTableInContextMut<CanonicalTy<'tcx>> {
509         LocalTableInContextMut {
510             local_id_root: self.local_id_root,
511             data: &mut self.user_provided_tys
512         }
513     }
514
515     pub fn node_types(&self) -> LocalTableInContext<Ty<'tcx>> {
516         LocalTableInContext {
517             local_id_root: self.local_id_root,
518             data: &self.node_types
519         }
520     }
521
522     pub fn node_types_mut(&mut self) -> LocalTableInContextMut<Ty<'tcx>> {
523         LocalTableInContextMut {
524             local_id_root: self.local_id_root,
525             data: &mut self.node_types
526         }
527     }
528
529     pub fn node_id_to_type(&self, id: hir::HirId) -> Ty<'tcx> {
530         match self.node_id_to_type_opt(id) {
531             Some(ty) => ty,
532             None => {
533                 bug!("node_id_to_type: no type for node `{}`",
534                     tls::with(|tcx| {
535                         let id = tcx.hir.hir_to_node_id(id);
536                         tcx.hir.node_to_string(id)
537                     }))
538             }
539         }
540     }
541
542     pub fn node_id_to_type_opt(&self, id: hir::HirId) -> Option<Ty<'tcx>> {
543         validate_hir_id_for_typeck_tables(self.local_id_root, id, false);
544         self.node_types.get(&id.local_id).cloned()
545     }
546
547     pub fn node_substs_mut(&mut self) -> LocalTableInContextMut<&'tcx Substs<'tcx>> {
548         LocalTableInContextMut {
549             local_id_root: self.local_id_root,
550             data: &mut self.node_substs
551         }
552     }
553
554     pub fn node_substs(&self, id: hir::HirId) -> &'tcx Substs<'tcx> {
555         validate_hir_id_for_typeck_tables(self.local_id_root, id, false);
556         self.node_substs.get(&id.local_id).cloned().unwrap_or(Substs::empty())
557     }
558
559     pub fn node_substs_opt(&self, id: hir::HirId) -> Option<&'tcx Substs<'tcx>> {
560         validate_hir_id_for_typeck_tables(self.local_id_root, id, false);
561         self.node_substs.get(&id.local_id).cloned()
562     }
563
564     // Returns the type of a pattern as a monotype. Like @expr_ty, this function
565     // doesn't provide type parameter substitutions.
566     pub fn pat_ty(&self, pat: &hir::Pat) -> Ty<'tcx> {
567         self.node_id_to_type(pat.hir_id)
568     }
569
570     pub fn pat_ty_opt(&self, pat: &hir::Pat) -> Option<Ty<'tcx>> {
571         self.node_id_to_type_opt(pat.hir_id)
572     }
573
574     // Returns the type of an expression as a monotype.
575     //
576     // NB (1): This is the PRE-ADJUSTMENT TYPE for the expression.  That is, in
577     // some cases, we insert `Adjustment` annotations such as auto-deref or
578     // auto-ref.  The type returned by this function does not consider such
579     // adjustments.  See `expr_ty_adjusted()` instead.
580     //
581     // NB (2): This type doesn't provide type parameter substitutions; e.g. if you
582     // ask for the type of "id" in "id(3)", it will return "fn(&isize) -> isize"
583     // instead of "fn(ty) -> T with T = isize".
584     pub fn expr_ty(&self, expr: &hir::Expr) -> Ty<'tcx> {
585         self.node_id_to_type(expr.hir_id)
586     }
587
588     pub fn expr_ty_opt(&self, expr: &hir::Expr) -> Option<Ty<'tcx>> {
589         self.node_id_to_type_opt(expr.hir_id)
590     }
591
592     pub fn adjustments(&self) -> LocalTableInContext<Vec<ty::adjustment::Adjustment<'tcx>>> {
593         LocalTableInContext {
594             local_id_root: self.local_id_root,
595             data: &self.adjustments
596         }
597     }
598
599     pub fn adjustments_mut(&mut self)
600                            -> LocalTableInContextMut<Vec<ty::adjustment::Adjustment<'tcx>>> {
601         LocalTableInContextMut {
602             local_id_root: self.local_id_root,
603             data: &mut self.adjustments
604         }
605     }
606
607     pub fn expr_adjustments(&self, expr: &hir::Expr)
608                             -> &[ty::adjustment::Adjustment<'tcx>] {
609         validate_hir_id_for_typeck_tables(self.local_id_root, expr.hir_id, false);
610         self.adjustments.get(&expr.hir_id.local_id).map_or(&[], |a| &a[..])
611     }
612
613     /// Returns the type of `expr`, considering any `Adjustment`
614     /// entry recorded for that expression.
615     pub fn expr_ty_adjusted(&self, expr: &hir::Expr) -> Ty<'tcx> {
616         self.expr_adjustments(expr)
617             .last()
618             .map_or_else(|| self.expr_ty(expr), |adj| adj.target)
619     }
620
621     pub fn expr_ty_adjusted_opt(&self, expr: &hir::Expr) -> Option<Ty<'tcx>> {
622         self.expr_adjustments(expr)
623             .last()
624             .map(|adj| adj.target)
625             .or_else(|| self.expr_ty_opt(expr))
626     }
627
628     pub fn is_method_call(&self, expr: &hir::Expr) -> bool {
629         // Only paths and method calls/overloaded operators have
630         // entries in type_dependent_defs, ignore the former here.
631         if let hir::ExprKind::Path(_) = expr.node {
632             return false;
633         }
634
635         match self.type_dependent_defs().get(expr.hir_id) {
636             Some(&Def::Method(_)) => true,
637             _ => false
638         }
639     }
640
641     pub fn pat_binding_modes(&self) -> LocalTableInContext<BindingMode> {
642         LocalTableInContext {
643             local_id_root: self.local_id_root,
644             data: &self.pat_binding_modes
645         }
646     }
647
648     pub fn pat_binding_modes_mut(&mut self)
649                            -> LocalTableInContextMut<BindingMode> {
650         LocalTableInContextMut {
651             local_id_root: self.local_id_root,
652             data: &mut self.pat_binding_modes
653         }
654     }
655
656     pub fn pat_adjustments(&self) -> LocalTableInContext<Vec<Ty<'tcx>>> {
657         LocalTableInContext {
658             local_id_root: self.local_id_root,
659             data: &self.pat_adjustments,
660         }
661     }
662
663     pub fn pat_adjustments_mut(&mut self)
664                            -> LocalTableInContextMut<Vec<Ty<'tcx>>> {
665         LocalTableInContextMut {
666             local_id_root: self.local_id_root,
667             data: &mut self.pat_adjustments,
668         }
669     }
670
671     pub fn upvar_capture(&self, upvar_id: ty::UpvarId) -> ty::UpvarCapture<'tcx> {
672         self.upvar_capture_map[&upvar_id]
673     }
674
675     pub fn closure_kind_origins(&self) -> LocalTableInContext<(Span, ast::Name)> {
676         LocalTableInContext {
677             local_id_root: self.local_id_root,
678             data: &self.closure_kind_origins
679         }
680     }
681
682     pub fn closure_kind_origins_mut(&mut self) -> LocalTableInContextMut<(Span, ast::Name)> {
683         LocalTableInContextMut {
684             local_id_root: self.local_id_root,
685             data: &mut self.closure_kind_origins
686         }
687     }
688
689     pub fn liberated_fn_sigs(&self) -> LocalTableInContext<ty::FnSig<'tcx>> {
690         LocalTableInContext {
691             local_id_root: self.local_id_root,
692             data: &self.liberated_fn_sigs
693         }
694     }
695
696     pub fn liberated_fn_sigs_mut(&mut self) -> LocalTableInContextMut<ty::FnSig<'tcx>> {
697         LocalTableInContextMut {
698             local_id_root: self.local_id_root,
699             data: &mut self.liberated_fn_sigs
700         }
701     }
702
703     pub fn fru_field_types(&self) -> LocalTableInContext<Vec<Ty<'tcx>>> {
704         LocalTableInContext {
705             local_id_root: self.local_id_root,
706             data: &self.fru_field_types
707         }
708     }
709
710     pub fn fru_field_types_mut(&mut self) -> LocalTableInContextMut<Vec<Ty<'tcx>>> {
711         LocalTableInContextMut {
712             local_id_root: self.local_id_root,
713             data: &mut self.fru_field_types
714         }
715     }
716
717     pub fn cast_kinds(&self) -> LocalTableInContext<ty::cast::CastKind> {
718         LocalTableInContext {
719             local_id_root: self.local_id_root,
720             data: &self.cast_kinds
721         }
722     }
723
724     pub fn cast_kinds_mut(&mut self) -> LocalTableInContextMut<ty::cast::CastKind> {
725         LocalTableInContextMut {
726             local_id_root: self.local_id_root,
727             data: &mut self.cast_kinds
728         }
729     }
730 }
731
732 impl<'a, 'gcx> HashStable<StableHashingContext<'a>> for TypeckTables<'gcx> {
733     fn hash_stable<W: StableHasherResult>(&self,
734                                           hcx: &mut StableHashingContext<'a>,
735                                           hasher: &mut StableHasher<W>) {
736         let ty::TypeckTables {
737             local_id_root,
738             ref type_dependent_defs,
739             ref field_indices,
740             ref user_provided_tys,
741             ref node_types,
742             ref node_substs,
743             ref adjustments,
744             ref pat_binding_modes,
745             ref pat_adjustments,
746             ref upvar_capture_map,
747             ref closure_kind_origins,
748             ref liberated_fn_sigs,
749             ref fru_field_types,
750
751             ref cast_kinds,
752
753             ref used_trait_imports,
754             tainted_by_errors,
755             ref free_region_map,
756             ref concrete_existential_types,
757         } = *self;
758
759         hcx.with_node_id_hashing_mode(NodeIdHashingMode::HashDefPath, |hcx| {
760             type_dependent_defs.hash_stable(hcx, hasher);
761             field_indices.hash_stable(hcx, hasher);
762             user_provided_tys.hash_stable(hcx, hasher);
763             node_types.hash_stable(hcx, hasher);
764             node_substs.hash_stable(hcx, hasher);
765             adjustments.hash_stable(hcx, hasher);
766             pat_binding_modes.hash_stable(hcx, hasher);
767             pat_adjustments.hash_stable(hcx, hasher);
768             hash_stable_hashmap(hcx, hasher, upvar_capture_map, |up_var_id, hcx| {
769                 let ty::UpvarId {
770                     var_id,
771                     closure_expr_id
772                 } = *up_var_id;
773
774                 let local_id_root =
775                     local_id_root.expect("trying to hash invalid TypeckTables");
776
777                 let var_owner_def_id = DefId {
778                     krate: local_id_root.krate,
779                     index: var_id.owner,
780                 };
781                 let closure_def_id = DefId {
782                     krate: local_id_root.krate,
783                     index: closure_expr_id.to_def_id().index,
784                 };
785                 (hcx.def_path_hash(var_owner_def_id),
786                  var_id.local_id,
787                  hcx.def_path_hash(closure_def_id))
788             });
789
790             closure_kind_origins.hash_stable(hcx, hasher);
791             liberated_fn_sigs.hash_stable(hcx, hasher);
792             fru_field_types.hash_stable(hcx, hasher);
793             cast_kinds.hash_stable(hcx, hasher);
794             used_trait_imports.hash_stable(hcx, hasher);
795             tainted_by_errors.hash_stable(hcx, hasher);
796             free_region_map.hash_stable(hcx, hasher);
797             concrete_existential_types.hash_stable(hcx, hasher);
798         })
799     }
800 }
801
802 impl<'tcx> CommonTypes<'tcx> {
803     fn new(interners: &CtxtInterners<'tcx>) -> CommonTypes<'tcx> {
804         // Ensure our type representation does not grow
805         #[cfg(target_pointer_width = "64")]
806         assert!(mem::size_of::<ty::TypeVariants>() <= 24);
807         #[cfg(target_pointer_width = "64")]
808         assert!(mem::size_of::<ty::TyS>() <= 32);
809
810         let mk = |sty| CtxtInterners::intern_ty(interners, interners, sty);
811         let mk_region = |r| {
812             if let Some(r) = interners.region.borrow().get(&r) {
813                 return r.0;
814             }
815             let r = interners.arena.alloc(r);
816             interners.region.borrow_mut().insert(Interned(r));
817             &*r
818         };
819         CommonTypes {
820             bool: mk(TyBool),
821             char: mk(TyChar),
822             never: mk(TyNever),
823             err: mk(TyError),
824             isize: mk(TyInt(ast::IntTy::Isize)),
825             i8: mk(TyInt(ast::IntTy::I8)),
826             i16: mk(TyInt(ast::IntTy::I16)),
827             i32: mk(TyInt(ast::IntTy::I32)),
828             i64: mk(TyInt(ast::IntTy::I64)),
829             i128: mk(TyInt(ast::IntTy::I128)),
830             usize: mk(TyUint(ast::UintTy::Usize)),
831             u8: mk(TyUint(ast::UintTy::U8)),
832             u16: mk(TyUint(ast::UintTy::U16)),
833             u32: mk(TyUint(ast::UintTy::U32)),
834             u64: mk(TyUint(ast::UintTy::U64)),
835             u128: mk(TyUint(ast::UintTy::U128)),
836             f32: mk(TyFloat(ast::FloatTy::F32)),
837             f64: mk(TyFloat(ast::FloatTy::F64)),
838
839             re_empty: mk_region(RegionKind::ReEmpty),
840             re_static: mk_region(RegionKind::ReStatic),
841             re_erased: mk_region(RegionKind::ReErased),
842         }
843     }
844 }
845
846 /// The central data structure of the compiler. It stores references
847 /// to the various **arenas** and also houses the results of the
848 /// various **compiler queries** that have been performed. See the
849 /// [rustc guide] for more details.
850 ///
851 /// [rustc guide]: https://rust-lang-nursery.github.io/rustc-guide/ty.html
852 #[derive(Copy, Clone)]
853 pub struct TyCtxt<'a, 'gcx: 'tcx, 'tcx: 'a> {
854     gcx: &'a GlobalCtxt<'gcx>,
855     interners: &'a CtxtInterners<'tcx>
856 }
857
858 impl<'a, 'gcx, 'tcx> Deref for TyCtxt<'a, 'gcx, 'tcx> {
859     type Target = &'a GlobalCtxt<'gcx>;
860     fn deref(&self) -> &Self::Target {
861         &self.gcx
862     }
863 }
864
865 pub struct GlobalCtxt<'tcx> {
866     global_arenas: &'tcx WorkerLocal<GlobalArenas<'tcx>>,
867     global_interners: CtxtInterners<'tcx>,
868
869     cstore: &'tcx CrateStoreDyn,
870
871     pub sess: &'tcx Session,
872
873     pub dep_graph: DepGraph,
874
875     /// Common types, pre-interned for your convenience.
876     pub types: CommonTypes<'tcx>,
877
878     /// Map indicating what traits are in scope for places where this
879     /// is relevant; generated by resolve.
880     trait_map: FxHashMap<DefIndex,
881                          Lrc<FxHashMap<ItemLocalId,
882                                        Lrc<StableVec<TraitCandidate>>>>>,
883
884     /// Export map produced by name resolution.
885     export_map: FxHashMap<DefId, Lrc<Vec<Export>>>,
886
887     pub hir: hir_map::Map<'tcx>,
888
889     /// A map from DefPathHash -> DefId. Includes DefIds from the local crate
890     /// as well as all upstream crates. Only populated in incremental mode.
891     pub def_path_hash_to_def_id: Option<FxHashMap<DefPathHash, DefId>>,
892
893     pub(crate) queries: query::Queries<'tcx>,
894
895     // Records the free variables refrenced by every closure
896     // expression. Do not track deps for this, just recompute it from
897     // scratch every time.
898     freevars: FxHashMap<DefId, Lrc<Vec<hir::Freevar>>>,
899
900     maybe_unused_trait_imports: FxHashSet<DefId>,
901
902     maybe_unused_extern_crates: Vec<(DefId, Span)>,
903
904     // Internal cache for metadata decoding. No need to track deps on this.
905     pub rcache: Lock<FxHashMap<ty::CReaderCacheKey, Ty<'tcx>>>,
906
907     /// Caches the results of trait selection. This cache is used
908     /// for things that do not have to do with the parameters in scope.
909     pub selection_cache: traits::SelectionCache<'tcx>,
910
911     /// Caches the results of trait evaluation. This cache is used
912     /// for things that do not have to do with the parameters in scope.
913     /// Merge this with `selection_cache`?
914     pub evaluation_cache: traits::EvaluationCache<'tcx>,
915
916     /// The definite name of the current crate after taking into account
917     /// attributes, commandline parameters, etc.
918     pub crate_name: Symbol,
919
920     /// Data layout specification for the current target.
921     pub data_layout: TargetDataLayout,
922
923     stability_interner: Lock<FxHashSet<&'tcx attr::Stability>>,
924
925     /// Stores the value of constants (and deduplicates the actual memory)
926     allocation_interner: Lock<FxHashSet<&'tcx Allocation>>,
927
928     pub alloc_map: Lock<interpret::AllocMap<'tcx, &'tcx Allocation>>,
929
930     layout_interner: Lock<FxHashSet<&'tcx LayoutDetails>>,
931
932     /// A general purpose channel to throw data out the back towards LLVM worker
933     /// threads.
934     ///
935     /// This is intended to only get used during the codegen phase of the compiler
936     /// when satisfying the query for a particular codegen unit. Internally in
937     /// the query it'll send data along this channel to get processed later.
938     pub tx_to_llvm_workers: Lock<mpsc::Sender<Box<dyn Any + Send>>>,
939
940     output_filenames: Arc<OutputFilenames>,
941 }
942
943 impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
944     /// Get the global TyCtxt.
945     #[inline]
946     pub fn global_tcx(self) -> TyCtxt<'a, 'gcx, 'gcx> {
947         TyCtxt {
948             gcx: self.gcx,
949             interners: &self.gcx.global_interners,
950         }
951     }
952
953     pub fn alloc_generics(self, generics: ty::Generics) -> &'gcx ty::Generics {
954         self.global_arenas.generics.alloc(generics)
955     }
956
957     pub fn alloc_steal_mir(self, mir: Mir<'gcx>) -> &'gcx Steal<Mir<'gcx>> {
958         self.global_arenas.steal_mir.alloc(Steal::new(mir))
959     }
960
961     pub fn alloc_mir(self, mir: Mir<'gcx>) -> &'gcx Mir<'gcx> {
962         self.global_arenas.mir.alloc(mir)
963     }
964
965     pub fn alloc_tables(self, tables: ty::TypeckTables<'gcx>) -> &'gcx ty::TypeckTables<'gcx> {
966         self.global_arenas.tables.alloc(tables)
967     }
968
969     pub fn alloc_trait_def(self, def: ty::TraitDef) -> &'gcx ty::TraitDef {
970         self.global_arenas.trait_def.alloc(def)
971     }
972
973     pub fn alloc_adt_def(self,
974                          did: DefId,
975                          kind: AdtKind,
976                          variants: Vec<ty::VariantDef>,
977                          repr: ReprOptions)
978                          -> &'gcx ty::AdtDef {
979         let def = ty::AdtDef::new(self, did, kind, variants, repr);
980         self.global_arenas.adt_def.alloc(def)
981     }
982
983     pub fn alloc_byte_array(self, bytes: &[u8]) -> &'gcx [u8] {
984         if bytes.is_empty() {
985             &[]
986         } else {
987             self.global_interners.arena.alloc_slice(bytes)
988         }
989     }
990
991     pub fn alloc_const_slice(self, values: &[&'tcx ty::Const<'tcx>])
992                              -> &'tcx [&'tcx ty::Const<'tcx>] {
993         if values.is_empty() {
994             &[]
995         } else {
996             self.interners.arena.alloc_slice(values)
997         }
998     }
999
1000     pub fn alloc_name_const_slice(self, values: &[(ast::Name, &'tcx ty::Const<'tcx>)])
1001                                   -> &'tcx [(ast::Name, &'tcx ty::Const<'tcx>)] {
1002         if values.is_empty() {
1003             &[]
1004         } else {
1005             self.interners.arena.alloc_slice(values)
1006         }
1007     }
1008
1009     pub fn intern_const_alloc(
1010         self,
1011         alloc: Allocation,
1012     ) -> &'gcx Allocation {
1013         let allocs = &mut self.allocation_interner.borrow_mut();
1014         if let Some(alloc) = allocs.get(&alloc) {
1015             return alloc;
1016         }
1017
1018         let interned = self.global_arenas.const_allocs.alloc(alloc);
1019         if let Some(prev) = allocs.replace(interned) {
1020             bug!("Tried to overwrite interned Allocation: {:#?}", prev)
1021         }
1022         interned
1023     }
1024
1025     /// Allocates a byte or string literal for `mir::interpret`
1026     pub fn allocate_bytes(self, bytes: &[u8]) -> interpret::AllocId {
1027         // create an allocation that just contains these bytes
1028         let alloc = interpret::Allocation::from_byte_aligned_bytes(bytes);
1029         let alloc = self.intern_const_alloc(alloc);
1030         self.alloc_map.lock().allocate(alloc)
1031     }
1032
1033     pub fn intern_stability(self, stab: attr::Stability) -> &'gcx attr::Stability {
1034         let mut stability_interner = self.stability_interner.borrow_mut();
1035         if let Some(st) = stability_interner.get(&stab) {
1036             return st;
1037         }
1038
1039         let interned = self.global_interners.arena.alloc(stab);
1040         if let Some(prev) = stability_interner.replace(interned) {
1041             bug!("Tried to overwrite interned Stability: {:?}", prev)
1042         }
1043         interned
1044     }
1045
1046     pub fn intern_layout(self, layout: LayoutDetails) -> &'gcx LayoutDetails {
1047         let mut layout_interner = self.layout_interner.borrow_mut();
1048         if let Some(layout) = layout_interner.get(&layout) {
1049             return layout;
1050         }
1051
1052         let interned = self.global_arenas.layout.alloc(layout);
1053         if let Some(prev) = layout_interner.replace(interned) {
1054             bug!("Tried to overwrite interned Layout: {:?}", prev)
1055         }
1056         interned
1057     }
1058
1059     pub fn lift<T: ?Sized + Lift<'tcx>>(self, value: &T) -> Option<T::Lifted> {
1060         value.lift_to_tcx(self)
1061     }
1062
1063     /// Like lift, but only tries in the global tcx.
1064     pub fn lift_to_global<T: ?Sized + Lift<'gcx>>(self, value: &T) -> Option<T::Lifted> {
1065         value.lift_to_tcx(self.global_tcx())
1066     }
1067
1068     /// Returns true if self is the same as self.global_tcx().
1069     fn is_global(self) -> bool {
1070         let local = self.interners as *const _;
1071         let global = &self.global_interners as *const _;
1072         local as usize == global as usize
1073     }
1074
1075     /// Create a type context and call the closure with a `TyCtxt` reference
1076     /// to the context. The closure enforces that the type context and any interned
1077     /// value (types, substs, etc.) can only be used while `ty::tls` has a valid
1078     /// reference to the context, to allow formatting values that need it.
1079     pub fn create_and_enter<F, R>(s: &'tcx Session,
1080                                   cstore: &'tcx CrateStoreDyn,
1081                                   local_providers: ty::query::Providers<'tcx>,
1082                                   extern_providers: ty::query::Providers<'tcx>,
1083                                   arenas: &'tcx AllArenas<'tcx>,
1084                                   resolutions: ty::Resolutions,
1085                                   hir: hir_map::Map<'tcx>,
1086                                   on_disk_query_result_cache: query::OnDiskCache<'tcx>,
1087                                   crate_name: &str,
1088                                   tx: mpsc::Sender<Box<dyn Any + Send>>,
1089                                   output_filenames: &OutputFilenames,
1090                                   f: F) -> R
1091                                   where F: for<'b> FnOnce(TyCtxt<'b, 'tcx, 'tcx>) -> R
1092     {
1093         let data_layout = TargetDataLayout::parse(&s.target.target).unwrap_or_else(|err| {
1094             s.fatal(&err);
1095         });
1096         let interners = CtxtInterners::new(&arenas.interner);
1097         let common_types = CommonTypes::new(&interners);
1098         let dep_graph = hir.dep_graph.clone();
1099         let max_cnum = cstore.crates_untracked().iter().map(|c| c.as_usize()).max().unwrap_or(0);
1100         let mut providers = IndexVec::from_elem_n(extern_providers, max_cnum + 1);
1101         providers[LOCAL_CRATE] = local_providers;
1102
1103         let def_path_hash_to_def_id = if s.opts.build_dep_graph() {
1104             let upstream_def_path_tables: Vec<(CrateNum, Lrc<_>)> = cstore
1105                 .crates_untracked()
1106                 .iter()
1107                 .map(|&cnum| (cnum, cstore.def_path_table(cnum)))
1108                 .collect();
1109
1110             let def_path_tables = || {
1111                 upstream_def_path_tables
1112                     .iter()
1113                     .map(|&(cnum, ref rc)| (cnum, &**rc))
1114                     .chain(iter::once((LOCAL_CRATE, hir.definitions().def_path_table())))
1115             };
1116
1117             // Precompute the capacity of the hashmap so we don't have to
1118             // re-allocate when populating it.
1119             let capacity = def_path_tables().map(|(_, t)| t.size()).sum::<usize>();
1120
1121             let mut map: FxHashMap<_, _> = FxHashMap::with_capacity_and_hasher(
1122                 capacity,
1123                 ::std::default::Default::default()
1124             );
1125
1126             for (cnum, def_path_table) in def_path_tables() {
1127                 def_path_table.add_def_path_hashes_to(cnum, &mut map);
1128             }
1129
1130             Some(map)
1131         } else {
1132             None
1133         };
1134
1135         let mut trait_map = FxHashMap();
1136         for (k, v) in resolutions.trait_map {
1137             let hir_id = hir.node_to_hir_id(k);
1138             let map = trait_map.entry(hir_id.owner)
1139                 .or_insert_with(|| Lrc::new(FxHashMap()));
1140             Lrc::get_mut(map).unwrap()
1141                             .insert(hir_id.local_id,
1142                                     Lrc::new(StableVec::new(v)));
1143         }
1144
1145         let gcx = &GlobalCtxt {
1146             sess: s,
1147             cstore,
1148             global_arenas: &arenas.global,
1149             global_interners: interners,
1150             dep_graph: dep_graph.clone(),
1151             types: common_types,
1152             trait_map,
1153             export_map: resolutions.export_map.into_iter().map(|(k, v)| {
1154                 (k, Lrc::new(v))
1155             }).collect(),
1156             freevars: resolutions.freevars.into_iter().map(|(k, v)| {
1157                 (hir.local_def_id(k), Lrc::new(v))
1158             }).collect(),
1159             maybe_unused_trait_imports:
1160                 resolutions.maybe_unused_trait_imports
1161                     .into_iter()
1162                     .map(|id| hir.local_def_id(id))
1163                     .collect(),
1164             maybe_unused_extern_crates:
1165                 resolutions.maybe_unused_extern_crates
1166                     .into_iter()
1167                     .map(|(id, sp)| (hir.local_def_id(id), sp))
1168                     .collect(),
1169             hir,
1170             def_path_hash_to_def_id,
1171             queries: query::Queries::new(providers, on_disk_query_result_cache),
1172             rcache: Lock::new(FxHashMap()),
1173             selection_cache: traits::SelectionCache::new(),
1174             evaluation_cache: traits::EvaluationCache::new(),
1175             crate_name: Symbol::intern(crate_name),
1176             data_layout,
1177             layout_interner: Lock::new(FxHashSet()),
1178             stability_interner: Lock::new(FxHashSet()),
1179             allocation_interner: Lock::new(FxHashSet()),
1180             alloc_map: Lock::new(interpret::AllocMap::new()),
1181             tx_to_llvm_workers: Lock::new(tx),
1182             output_filenames: Arc::new(output_filenames.clone()),
1183         };
1184
1185         sync::assert_send_val(&gcx);
1186
1187         tls::enter_global(gcx, f)
1188     }
1189
1190     pub fn consider_optimizing<T: Fn() -> String>(&self, msg: T) -> bool {
1191         let cname = self.crate_name(LOCAL_CRATE).as_str();
1192         self.sess.consider_optimizing(&cname, msg)
1193     }
1194
1195     pub fn lang_items(self) -> Lrc<middle::lang_items::LanguageItems> {
1196         self.get_lang_items(LOCAL_CRATE)
1197     }
1198
1199     /// Due to missing llvm support for lowering 128 bit math to software emulation
1200     /// (on some targets), the lowering can be done in MIR.
1201     ///
1202     /// This function only exists until said support is implemented.
1203     pub fn is_binop_lang_item(&self, def_id: DefId) -> Option<(mir::BinOp, bool)> {
1204         let items = self.lang_items();
1205         let def_id = Some(def_id);
1206         if items.i128_add_fn() == def_id { Some((mir::BinOp::Add, false)) }
1207         else if items.u128_add_fn() == def_id { Some((mir::BinOp::Add, false)) }
1208         else if items.i128_sub_fn() == def_id { Some((mir::BinOp::Sub, false)) }
1209         else if items.u128_sub_fn() == def_id { Some((mir::BinOp::Sub, false)) }
1210         else if items.i128_mul_fn() == def_id { Some((mir::BinOp::Mul, false)) }
1211         else if items.u128_mul_fn() == def_id { Some((mir::BinOp::Mul, false)) }
1212         else if items.i128_div_fn() == def_id { Some((mir::BinOp::Div, false)) }
1213         else if items.u128_div_fn() == def_id { Some((mir::BinOp::Div, false)) }
1214         else if items.i128_rem_fn() == def_id { Some((mir::BinOp::Rem, false)) }
1215         else if items.u128_rem_fn() == def_id { Some((mir::BinOp::Rem, false)) }
1216         else if items.i128_shl_fn() == def_id { Some((mir::BinOp::Shl, false)) }
1217         else if items.u128_shl_fn() == def_id { Some((mir::BinOp::Shl, false)) }
1218         else if items.i128_shr_fn() == def_id { Some((mir::BinOp::Shr, false)) }
1219         else if items.u128_shr_fn() == def_id { Some((mir::BinOp::Shr, false)) }
1220         else if items.i128_addo_fn() == def_id { Some((mir::BinOp::Add, true)) }
1221         else if items.u128_addo_fn() == def_id { Some((mir::BinOp::Add, true)) }
1222         else if items.i128_subo_fn() == def_id { Some((mir::BinOp::Sub, true)) }
1223         else if items.u128_subo_fn() == def_id { Some((mir::BinOp::Sub, true)) }
1224         else if items.i128_mulo_fn() == def_id { Some((mir::BinOp::Mul, true)) }
1225         else if items.u128_mulo_fn() == def_id { Some((mir::BinOp::Mul, true)) }
1226         else if items.i128_shlo_fn() == def_id { Some((mir::BinOp::Shl, true)) }
1227         else if items.u128_shlo_fn() == def_id { Some((mir::BinOp::Shl, true)) }
1228         else if items.i128_shro_fn() == def_id { Some((mir::BinOp::Shr, true)) }
1229         else if items.u128_shro_fn() == def_id { Some((mir::BinOp::Shr, true)) }
1230         else { None }
1231     }
1232
1233     pub fn stability(self) -> Lrc<stability::Index<'tcx>> {
1234         self.stability_index(LOCAL_CRATE)
1235     }
1236
1237     pub fn crates(self) -> Lrc<Vec<CrateNum>> {
1238         self.all_crate_nums(LOCAL_CRATE)
1239     }
1240
1241     pub fn features(self) -> Lrc<feature_gate::Features> {
1242         self.features_query(LOCAL_CRATE)
1243     }
1244
1245     pub fn def_key(self, id: DefId) -> hir_map::DefKey {
1246         if id.is_local() {
1247             self.hir.def_key(id)
1248         } else {
1249             self.cstore.def_key(id)
1250         }
1251     }
1252
1253     /// Convert a `DefId` into its fully expanded `DefPath` (every
1254     /// `DefId` is really just an interned def-path).
1255     ///
1256     /// Note that if `id` is not local to this crate, the result will
1257     ///  be a non-local `DefPath`.
1258     pub fn def_path(self, id: DefId) -> hir_map::DefPath {
1259         if id.is_local() {
1260             self.hir.def_path(id)
1261         } else {
1262             self.cstore.def_path(id)
1263         }
1264     }
1265
1266     #[inline]
1267     pub fn def_path_hash(self, def_id: DefId) -> hir_map::DefPathHash {
1268         if def_id.is_local() {
1269             self.hir.definitions().def_path_hash(def_id.index)
1270         } else {
1271             self.cstore.def_path_hash(def_id)
1272         }
1273     }
1274
1275     pub fn def_path_debug_str(self, def_id: DefId) -> String {
1276         // We are explicitly not going through queries here in order to get
1277         // crate name and disambiguator since this code is called from debug!()
1278         // statements within the query system and we'd run into endless
1279         // recursion otherwise.
1280         let (crate_name, crate_disambiguator) = if def_id.is_local() {
1281             (self.crate_name.clone(),
1282              self.sess.local_crate_disambiguator())
1283         } else {
1284             (self.cstore.crate_name_untracked(def_id.krate),
1285              self.cstore.crate_disambiguator_untracked(def_id.krate))
1286         };
1287
1288         format!("{}[{}]{}",
1289                 crate_name,
1290                 // Don't print the whole crate disambiguator. That's just
1291                 // annoying in debug output.
1292                 &(crate_disambiguator.to_fingerprint().to_hex())[..4],
1293                 self.def_path(def_id).to_string_no_crate())
1294     }
1295
1296     pub fn metadata_encoding_version(self) -> Vec<u8> {
1297         self.cstore.metadata_encoding_version().to_vec()
1298     }
1299
1300     // Note that this is *untracked* and should only be used within the query
1301     // system if the result is otherwise tracked through queries
1302     pub fn crate_data_as_rc_any(self, cnum: CrateNum) -> Lrc<dyn Any> {
1303         self.cstore.crate_data_as_rc_any(cnum)
1304     }
1305
1306     pub fn create_stable_hashing_context(self) -> StableHashingContext<'a> {
1307         let krate = self.dep_graph.with_ignore(|| self.gcx.hir.krate());
1308
1309         StableHashingContext::new(self.sess,
1310                                   krate,
1311                                   self.hir.definitions(),
1312                                   self.cstore)
1313     }
1314
1315     // This method makes sure that we have a DepNode and a Fingerprint for
1316     // every upstream crate. It needs to be called once right after the tcx is
1317     // created.
1318     // With full-fledged red/green, the method will probably become unnecessary
1319     // as this will be done on-demand.
1320     pub fn allocate_metadata_dep_nodes(self) {
1321         // We cannot use the query versions of crates() and crate_hash(), since
1322         // those would need the DepNodes that we are allocating here.
1323         for cnum in self.cstore.crates_untracked() {
1324             let dep_node = DepNode::new(self, DepConstructor::CrateMetadata(cnum));
1325             let crate_hash = self.cstore.crate_hash_untracked(cnum);
1326             self.dep_graph.with_task(dep_node,
1327                                      self,
1328                                      crate_hash,
1329                                      |_, x| x // No transformation needed
1330             );
1331         }
1332     }
1333
1334     // This method exercises the `in_scope_traits_map` query for all possible
1335     // values so that we have their fingerprints available in the DepGraph.
1336     // This is only required as long as we still use the old dependency tracking
1337     // which needs to have the fingerprints of all input nodes beforehand.
1338     pub fn precompute_in_scope_traits_hashes(self) {
1339         for &def_index in self.trait_map.keys() {
1340             self.in_scope_traits_map(def_index);
1341         }
1342     }
1343
1344     pub fn serialize_query_result_cache<E>(self,
1345                                            encoder: &mut E)
1346                                            -> Result<(), E::Error>
1347         where E: ty::codec::TyEncoder
1348     {
1349         self.queries.on_disk_cache.serialize(self.global_tcx(), encoder)
1350     }
1351
1352     /// If true, we should use a naive AST walk to determine if match
1353     /// guard could perform bad mutations (or mutable-borrows).
1354     pub fn check_for_mutation_in_guard_via_ast_walk(self) -> bool {
1355         !self.sess.opts.debugging_opts.disable_ast_check_for_mutation_in_guard
1356     }
1357
1358     /// If true, we should use the AST-based borrowck (we may *also* use
1359     /// the MIR-based borrowck).
1360     pub fn use_ast_borrowck(self) -> bool {
1361         self.borrowck_mode().use_ast()
1362     }
1363
1364     /// If true, we should use the MIR-based borrowck (we may *also* use
1365     /// the AST-based borrowck).
1366     pub fn use_mir_borrowck(self) -> bool {
1367         self.borrowck_mode().use_mir()
1368     }
1369
1370     /// If true, we should use the MIR-based borrow check, but also
1371     /// fall back on the AST borrow check if the MIR-based one errors.
1372     pub fn migrate_borrowck(self) -> bool {
1373         self.borrowck_mode().migrate()
1374     }
1375
1376     /// If true, make MIR codegen for `match` emit a temp that holds a
1377     /// borrow of the input to the match expression.
1378     pub fn generate_borrow_of_any_match_input(&self) -> bool {
1379         self.emit_read_for_match()
1380     }
1381
1382     /// If true, make MIR codegen for `match` emit ReadForMatch
1383     /// statements (which simulate the maximal effect of executing the
1384     /// patterns in a match arm).
1385     pub fn emit_read_for_match(&self) -> bool {
1386         self.use_mir_borrowck() && !self.sess.opts.debugging_opts.nll_dont_emit_read_for_match
1387     }
1388
1389     /// If true, pattern variables for use in guards on match arms
1390     /// will be bound as references to the data, and occurrences of
1391     /// those variables in the guard expression will implicitly
1392     /// dereference those bindings. (See rust-lang/rust#27282.)
1393     pub fn all_pat_vars_are_implicit_refs_within_guards(self) -> bool {
1394         self.borrowck_mode().use_mir()
1395     }
1396
1397     /// If true, we should enable two-phase borrows checks. This is
1398     /// done with either: `-Ztwo-phase-borrows`, `#![feature(nll)]`,
1399     /// or by opting into an edition after 2015.
1400     pub fn two_phase_borrows(self) -> bool {
1401         if self.features().nll || self.sess.opts.debugging_opts.two_phase_borrows {
1402             return true;
1403         }
1404
1405         match self.sess.edition() {
1406             Edition::Edition2015 => false,
1407             Edition::Edition2018 => true,
1408             _ => true,
1409         }
1410     }
1411
1412     /// What mode(s) of borrowck should we run? AST? MIR? both?
1413     /// (Also considers the `#![feature(nll)]` setting.)
1414     pub fn borrowck_mode(&self) -> BorrowckMode {
1415         // Here are the main constraints we need to deal with:
1416         //
1417         // 1. An opts.borrowck_mode of `BorrowckMode::Ast` is
1418         //    synonymous with no `-Z borrowck=...` flag at all.
1419         //    (This is arguably a historical accident.)
1420         //
1421         // 2. `BorrowckMode::Migrate` is the limited migration to
1422         //    NLL that we are deploying with the 2018 edition.
1423         //
1424         // 3. We want to allow developers on the Nightly channel
1425         //    to opt back into the "hard error" mode for NLL,
1426         //    (which they can do via specifying `#![feature(nll)]`
1427         //    explicitly in their crate).
1428         //
1429         // So, this precedence list is how pnkfelix chose to work with
1430         // the above constraints:
1431         //
1432         // * `#![feature(nll)]` *always* means use NLL with hard
1433         //   errors. (To simplify the code here, it now even overrides
1434         //   a user's attempt to specify `-Z borrowck=compare`, which
1435         //   we arguably do not need anymore and should remove.)
1436         //
1437         // * Otherwise, if no `-Z borrowck=...` flag was given (or
1438         //   if `borrowck=ast` was specified), then use the default
1439         //   as required by the edition.
1440         //
1441         // * Otherwise, use the behavior requested via `-Z borrowck=...`
1442
1443         if self.features().nll { return BorrowckMode::Mir; }
1444
1445         match self.sess.opts.borrowck_mode {
1446             mode @ BorrowckMode::Mir |
1447             mode @ BorrowckMode::Compare |
1448             mode @ BorrowckMode::Migrate => mode,
1449
1450             BorrowckMode::Ast => match self.sess.edition() {
1451                 Edition::Edition2015 => BorrowckMode::Ast,
1452                 Edition::Edition2018 => BorrowckMode::Migrate,
1453
1454                 // For now, future editions mean Migrate. (But it
1455                 // would make a lot of sense for it to be changed to
1456                 // `BorrowckMode::Mir`, depending on how we plan to
1457                 // time the forcing of full migration to NLL.)
1458                 _ => BorrowckMode::Migrate,
1459             },
1460         }
1461     }
1462
1463     /// Should we emit EndRegion MIR statements? These are consumed by
1464     /// MIR borrowck, but not when NLL is used. They are also consumed
1465     /// by the validation stuff.
1466     pub fn emit_end_regions(self) -> bool {
1467         self.sess.opts.debugging_opts.emit_end_regions ||
1468             self.sess.opts.debugging_opts.mir_emit_validate > 0 ||
1469             self.use_mir_borrowck()
1470     }
1471
1472     #[inline]
1473     pub fn local_crate_exports_generics(self) -> bool {
1474         debug_assert!(self.sess.opts.share_generics());
1475
1476         self.sess.crate_types.borrow().iter().any(|crate_type| {
1477             match crate_type {
1478                 CrateType::Executable |
1479                 CrateType::Staticlib  |
1480                 CrateType::ProcMacro  |
1481                 CrateType::Cdylib     => false,
1482                 CrateType::Rlib       |
1483                 CrateType::Dylib      => true,
1484             }
1485         })
1486     }
1487 }
1488
1489 impl<'a, 'tcx> TyCtxt<'a, 'tcx, 'tcx> {
1490     pub fn encode_metadata(self, link_meta: &LinkMeta)
1491         -> EncodedMetadata
1492     {
1493         self.cstore.encode_metadata(self, link_meta)
1494     }
1495 }
1496
1497 impl<'gcx: 'tcx, 'tcx> GlobalCtxt<'gcx> {
1498     /// Call the closure with a local `TyCtxt` using the given arena.
1499     pub fn enter_local<F, R>(
1500         &self,
1501         arena: &'tcx SyncDroplessArena,
1502         f: F
1503     ) -> R
1504     where
1505         F: for<'a> FnOnce(TyCtxt<'a, 'gcx, 'tcx>) -> R
1506     {
1507         let interners = CtxtInterners::new(arena);
1508         let tcx = TyCtxt {
1509             gcx: self,
1510             interners: &interners,
1511         };
1512         ty::tls::with_related_context(tcx.global_tcx(), |icx| {
1513             let new_icx = ty::tls::ImplicitCtxt {
1514                 tcx,
1515                 query: icx.query.clone(),
1516                 layout_depth: icx.layout_depth,
1517                 task: icx.task,
1518             };
1519             ty::tls::enter_context(&new_icx, |new_icx| {
1520                 f(new_icx.tcx)
1521             })
1522         })
1523     }
1524 }
1525
1526 /// A trait implemented for all X<'a> types which can be safely and
1527 /// efficiently converted to X<'tcx> as long as they are part of the
1528 /// provided TyCtxt<'tcx>.
1529 /// This can be done, for example, for Ty<'tcx> or &'tcx Substs<'tcx>
1530 /// by looking them up in their respective interners.
1531 ///
1532 /// However, this is still not the best implementation as it does
1533 /// need to compare the components, even for interned values.
1534 /// It would be more efficient if TypedArena provided a way to
1535 /// determine whether the address is in the allocated range.
1536 ///
1537 /// None is returned if the value or one of the components is not part
1538 /// of the provided context.
1539 /// For Ty, None can be returned if either the type interner doesn't
1540 /// contain the TypeVariants key or if the address of the interned
1541 /// pointer differs. The latter case is possible if a primitive type,
1542 /// e.g. `()` or `u8`, was interned in a different context.
1543 pub trait Lift<'tcx>: fmt::Debug {
1544     type Lifted: fmt::Debug + 'tcx;
1545     fn lift_to_tcx<'a, 'gcx>(&self, tcx: TyCtxt<'a, 'gcx, 'tcx>) -> Option<Self::Lifted>;
1546 }
1547
1548 impl<'a, 'tcx> Lift<'tcx> for Ty<'a> {
1549     type Lifted = Ty<'tcx>;
1550     fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>) -> Option<Ty<'tcx>> {
1551         if tcx.interners.arena.in_arena(*self as *const _) {
1552             return Some(unsafe { mem::transmute(*self) });
1553         }
1554         // Also try in the global tcx if we're not that.
1555         if !tcx.is_global() {
1556             self.lift_to_tcx(tcx.global_tcx())
1557         } else {
1558             None
1559         }
1560     }
1561 }
1562
1563 impl<'a, 'tcx> Lift<'tcx> for Region<'a> {
1564     type Lifted = Region<'tcx>;
1565     fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>) -> Option<Region<'tcx>> {
1566         if tcx.interners.arena.in_arena(*self as *const _) {
1567             return Some(unsafe { mem::transmute(*self) });
1568         }
1569         // Also try in the global tcx if we're not that.
1570         if !tcx.is_global() {
1571             self.lift_to_tcx(tcx.global_tcx())
1572         } else {
1573             None
1574         }
1575     }
1576 }
1577
1578 impl<'a, 'tcx> Lift<'tcx> for &'a Goal<'a> {
1579     type Lifted = &'tcx Goal<'tcx>;
1580     fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>) -> Option<&'tcx Goal<'tcx>> {
1581         if tcx.interners.arena.in_arena(*self as *const _) {
1582             return Some(unsafe { mem::transmute(*self) });
1583         }
1584         // Also try in the global tcx if we're not that.
1585         if !tcx.is_global() {
1586             self.lift_to_tcx(tcx.global_tcx())
1587         } else {
1588             None
1589         }
1590     }
1591 }
1592
1593 impl<'a, 'tcx> Lift<'tcx> for &'a Slice<Goal<'a>> {
1594     type Lifted = &'tcx Slice<Goal<'tcx>>;
1595     fn lift_to_tcx<'b, 'gcx>(
1596         &self,
1597         tcx: TyCtxt<'b, 'gcx, 'tcx>,
1598     ) -> Option<&'tcx Slice<Goal<'tcx>>> {
1599         if tcx.interners.arena.in_arena(*self as *const _) {
1600             return Some(unsafe { mem::transmute(*self) });
1601         }
1602         // Also try in the global tcx if we're not that.
1603         if !tcx.is_global() {
1604             self.lift_to_tcx(tcx.global_tcx())
1605         } else {
1606             None
1607         }
1608     }
1609 }
1610
1611 impl<'a, 'tcx> Lift<'tcx> for &'a Slice<Clause<'a>> {
1612     type Lifted = &'tcx Slice<Clause<'tcx>>;
1613     fn lift_to_tcx<'b, 'gcx>(
1614         &self,
1615         tcx: TyCtxt<'b, 'gcx, 'tcx>,
1616     ) -> Option<&'tcx Slice<Clause<'tcx>>> {
1617         if tcx.interners.arena.in_arena(*self as *const _) {
1618             return Some(unsafe { mem::transmute(*self) });
1619         }
1620         // Also try in the global tcx if we're not that.
1621         if !tcx.is_global() {
1622             self.lift_to_tcx(tcx.global_tcx())
1623         } else {
1624             None
1625         }
1626     }
1627 }
1628
1629 impl<'a, 'tcx> Lift<'tcx> for &'a Const<'a> {
1630     type Lifted = &'tcx Const<'tcx>;
1631     fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>) -> Option<&'tcx Const<'tcx>> {
1632         if tcx.interners.arena.in_arena(*self as *const _) {
1633             return Some(unsafe { mem::transmute(*self) });
1634         }
1635         // Also try in the global tcx if we're not that.
1636         if !tcx.is_global() {
1637             self.lift_to_tcx(tcx.global_tcx())
1638         } else {
1639             None
1640         }
1641     }
1642 }
1643
1644 impl<'a, 'tcx> Lift<'tcx> for &'a Substs<'a> {
1645     type Lifted = &'tcx Substs<'tcx>;
1646     fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>) -> Option<&'tcx Substs<'tcx>> {
1647         if self.len() == 0 {
1648             return Some(Slice::empty());
1649         }
1650         if tcx.interners.arena.in_arena(&self[..] as *const _) {
1651             return Some(unsafe { mem::transmute(*self) });
1652         }
1653         // Also try in the global tcx if we're not that.
1654         if !tcx.is_global() {
1655             self.lift_to_tcx(tcx.global_tcx())
1656         } else {
1657             None
1658         }
1659     }
1660 }
1661
1662 impl<'a, 'tcx> Lift<'tcx> for &'a Slice<Ty<'a>> {
1663     type Lifted = &'tcx Slice<Ty<'tcx>>;
1664     fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>)
1665                              -> Option<&'tcx Slice<Ty<'tcx>>> {
1666         if self.len() == 0 {
1667             return Some(Slice::empty());
1668         }
1669         if tcx.interners.arena.in_arena(*self as *const _) {
1670             return Some(unsafe { mem::transmute(*self) });
1671         }
1672         // Also try in the global tcx if we're not that.
1673         if !tcx.is_global() {
1674             self.lift_to_tcx(tcx.global_tcx())
1675         } else {
1676             None
1677         }
1678     }
1679 }
1680
1681 impl<'a, 'tcx> Lift<'tcx> for &'a Slice<ExistentialPredicate<'a>> {
1682     type Lifted = &'tcx Slice<ExistentialPredicate<'tcx>>;
1683     fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>)
1684         -> Option<&'tcx Slice<ExistentialPredicate<'tcx>>> {
1685         if self.is_empty() {
1686             return Some(Slice::empty());
1687         }
1688         if tcx.interners.arena.in_arena(*self as *const _) {
1689             return Some(unsafe { mem::transmute(*self) });
1690         }
1691         // Also try in the global tcx if we're not that.
1692         if !tcx.is_global() {
1693             self.lift_to_tcx(tcx.global_tcx())
1694         } else {
1695             None
1696         }
1697     }
1698 }
1699
1700 impl<'a, 'tcx> Lift<'tcx> for &'a Slice<Predicate<'a>> {
1701     type Lifted = &'tcx Slice<Predicate<'tcx>>;
1702     fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>)
1703         -> Option<&'tcx Slice<Predicate<'tcx>>> {
1704         if self.is_empty() {
1705             return Some(Slice::empty());
1706         }
1707         if tcx.interners.arena.in_arena(*self as *const _) {
1708             return Some(unsafe { mem::transmute(*self) });
1709         }
1710         // Also try in the global tcx if we're not that.
1711         if !tcx.is_global() {
1712             self.lift_to_tcx(tcx.global_tcx())
1713         } else {
1714             None
1715         }
1716     }
1717 }
1718
1719 impl<'a, 'tcx> Lift<'tcx> for &'a Slice<CanonicalVarInfo> {
1720     type Lifted = &'tcx Slice<CanonicalVarInfo>;
1721     fn lift_to_tcx<'b, 'gcx>(&self, tcx: TyCtxt<'b, 'gcx, 'tcx>) -> Option<Self::Lifted> {
1722         if self.len() == 0 {
1723             return Some(Slice::empty());
1724         }
1725         if tcx.interners.arena.in_arena(*self as *const _) {
1726             return Some(unsafe { mem::transmute(*self) });
1727         }
1728         // Also try in the global tcx if we're not that.
1729         if !tcx.is_global() {
1730             self.lift_to_tcx(tcx.global_tcx())
1731         } else {
1732             None
1733         }
1734     }
1735 }
1736
1737 pub mod tls {
1738     use super::{GlobalCtxt, TyCtxt};
1739
1740     use std::fmt;
1741     use std::mem;
1742     use syntax_pos;
1743     use ty::query;
1744     use errors::{Diagnostic, TRACK_DIAGNOSTICS};
1745     use rustc_data_structures::OnDrop;
1746     use rustc_data_structures::sync::{self, Lrc, Lock};
1747     use dep_graph::OpenTask;
1748
1749     #[cfg(not(parallel_queries))]
1750     use std::cell::Cell;
1751
1752     #[cfg(parallel_queries)]
1753     use rayon_core;
1754
1755     /// This is the implicit state of rustc. It contains the current
1756     /// TyCtxt and query. It is updated when creating a local interner or
1757     /// executing a new query. Whenever there's a TyCtxt value available
1758     /// you should also have access to an ImplicitCtxt through the functions
1759     /// in this module.
1760     #[derive(Clone)]
1761     pub struct ImplicitCtxt<'a, 'gcx: 'a+'tcx, 'tcx: 'a> {
1762         /// The current TyCtxt. Initially created by `enter_global` and updated
1763         /// by `enter_local` with a new local interner
1764         pub tcx: TyCtxt<'a, 'gcx, 'tcx>,
1765
1766         /// The current query job, if any. This is updated by start_job in
1767         /// ty::query::plumbing when executing a query
1768         pub query: Option<Lrc<query::QueryJob<'gcx>>>,
1769
1770         /// Used to prevent layout from recursing too deeply.
1771         pub layout_depth: usize,
1772
1773         /// The current dep graph task. This is used to add dependencies to queries
1774         /// when executing them
1775         pub task: &'a OpenTask,
1776     }
1777
1778     /// Sets Rayon's thread local variable which is preserved for Rayon jobs
1779     /// to `value` during the call to `f`. It is restored to its previous value after.
1780     /// This is used to set the pointer to the new ImplicitCtxt.
1781     #[cfg(parallel_queries)]
1782     fn set_tlv<F: FnOnce() -> R, R>(value: usize, f: F) -> R {
1783         rayon_core::tlv::with(value, f)
1784     }
1785
1786     /// Gets Rayon's thread local variable which is preserved for Rayon jobs.
1787     /// This is used to get the pointer to the current ImplicitCtxt.
1788     #[cfg(parallel_queries)]
1789     fn get_tlv() -> usize {
1790         rayon_core::tlv::get()
1791     }
1792
1793     /// A thread local variable which stores a pointer to the current ImplicitCtxt
1794     #[cfg(not(parallel_queries))]
1795     thread_local!(static TLV: Cell<usize> = Cell::new(0));
1796
1797     /// Sets TLV to `value` during the call to `f`.
1798     /// It is restored to its previous value after.
1799     /// This is used to set the pointer to the new ImplicitCtxt.
1800     #[cfg(not(parallel_queries))]
1801     fn set_tlv<F: FnOnce() -> R, R>(value: usize, f: F) -> R {
1802         let old = get_tlv();
1803         let _reset = OnDrop(move || TLV.with(|tlv| tlv.set(old)));
1804         TLV.with(|tlv| tlv.set(value));
1805         f()
1806     }
1807
1808     /// This is used to get the pointer to the current ImplicitCtxt.
1809     #[cfg(not(parallel_queries))]
1810     fn get_tlv() -> usize {
1811         TLV.with(|tlv| tlv.get())
1812     }
1813
1814     /// This is a callback from libsyntax as it cannot access the implicit state
1815     /// in librustc otherwise
1816     fn span_debug(span: syntax_pos::Span, f: &mut fmt::Formatter) -> fmt::Result {
1817         with(|tcx| {
1818             write!(f, "{}", tcx.sess.codemap().span_to_string(span))
1819         })
1820     }
1821
1822     /// This is a callback from libsyntax as it cannot access the implicit state
1823     /// in librustc otherwise. It is used to when diagnostic messages are
1824     /// emitted and stores them in the current query, if there is one.
1825     fn track_diagnostic(diagnostic: &Diagnostic) {
1826         with_context_opt(|icx| {
1827             if let Some(icx) = icx {
1828                 if let Some(ref query) = icx.query {
1829                     query.diagnostics.lock().push(diagnostic.clone());
1830                 }
1831             }
1832         })
1833     }
1834
1835     /// Sets up the callbacks from libsyntax on the current thread
1836     pub fn with_thread_locals<F, R>(f: F) -> R
1837         where F: FnOnce() -> R
1838     {
1839         syntax_pos::SPAN_DEBUG.with(|span_dbg| {
1840             let original_span_debug = span_dbg.get();
1841             span_dbg.set(span_debug);
1842
1843             let _on_drop = OnDrop(move || {
1844                 span_dbg.set(original_span_debug);
1845             });
1846
1847             TRACK_DIAGNOSTICS.with(|current| {
1848                 let original = current.get();
1849                 current.set(track_diagnostic);
1850
1851                 let _on_drop = OnDrop(move || {
1852                     current.set(original);
1853                 });
1854
1855                 f()
1856             })
1857         })
1858     }
1859
1860     /// Sets `context` as the new current ImplicitCtxt for the duration of the function `f`
1861     pub fn enter_context<'a, 'gcx: 'tcx, 'tcx, F, R>(context: &ImplicitCtxt<'a, 'gcx, 'tcx>,
1862                                                      f: F) -> R
1863         where F: FnOnce(&ImplicitCtxt<'a, 'gcx, 'tcx>) -> R
1864     {
1865         set_tlv(context as *const _ as usize, || {
1866             f(&context)
1867         })
1868     }
1869
1870     /// Enters GlobalCtxt by setting up libsyntax callbacks and
1871     /// creating a initial TyCtxt and ImplicitCtxt.
1872     /// This happens once per rustc session and TyCtxts only exists
1873     /// inside the `f` function.
1874     pub fn enter_global<'gcx, F, R>(gcx: &GlobalCtxt<'gcx>, f: F) -> R
1875         where F: for<'a> FnOnce(TyCtxt<'a, 'gcx, 'gcx>) -> R
1876     {
1877         with_thread_locals(|| {
1878             // Update GCX_PTR to indicate there's a GlobalCtxt available
1879             GCX_PTR.with(|lock| {
1880                 *lock.lock() = gcx as *const _ as usize;
1881             });
1882             // Set GCX_PTR back to 0 when we exit
1883             let _on_drop = OnDrop(move || {
1884                 GCX_PTR.with(|lock| *lock.lock() = 0);
1885             });
1886
1887             let tcx = TyCtxt {
1888                 gcx,
1889                 interners: &gcx.global_interners,
1890             };
1891             let icx = ImplicitCtxt {
1892                 tcx,
1893                 query: None,
1894                 layout_depth: 0,
1895                 task: &OpenTask::Ignore,
1896             };
1897             enter_context(&icx, |_| {
1898                 f(tcx)
1899             })
1900         })
1901     }
1902
1903     /// Stores a pointer to the GlobalCtxt if one is available.
1904     /// This is used to access the GlobalCtxt in the deadlock handler
1905     /// given to Rayon.
1906     scoped_thread_local!(pub static GCX_PTR: Lock<usize>);
1907
1908     /// Creates a TyCtxt and ImplicitCtxt based on the GCX_PTR thread local.
1909     /// This is used in the deadlock handler.
1910     pub unsafe fn with_global<F, R>(f: F) -> R
1911         where F: for<'a, 'gcx, 'tcx> FnOnce(TyCtxt<'a, 'gcx, 'tcx>) -> R
1912     {
1913         let gcx = GCX_PTR.with(|lock| *lock.lock());
1914         assert!(gcx != 0);
1915         let gcx = &*(gcx as *const GlobalCtxt<'_>);
1916         let tcx = TyCtxt {
1917             gcx,
1918             interners: &gcx.global_interners,
1919         };
1920         let icx = ImplicitCtxt {
1921             query: None,
1922             tcx,
1923             layout_depth: 0,
1924             task: &OpenTask::Ignore,
1925         };
1926         enter_context(&icx, |_| f(tcx))
1927     }
1928
1929     /// Allows access to the current ImplicitCtxt in a closure if one is available
1930     pub fn with_context_opt<F, R>(f: F) -> R
1931         where F: for<'a, 'gcx, 'tcx> FnOnce(Option<&ImplicitCtxt<'a, 'gcx, 'tcx>>) -> R
1932     {
1933         let context = get_tlv();
1934         if context == 0 {
1935             f(None)
1936         } else {
1937             // We could get a ImplicitCtxt pointer from another thread.
1938             // Ensure that ImplicitCtxt is Sync
1939             sync::assert_sync::<ImplicitCtxt>();
1940
1941             unsafe { f(Some(&*(context as *const ImplicitCtxt))) }
1942         }
1943     }
1944
1945     /// Allows access to the current ImplicitCtxt.
1946     /// Panics if there is no ImplicitCtxt available
1947     pub fn with_context<F, R>(f: F) -> R
1948         where F: for<'a, 'gcx, 'tcx> FnOnce(&ImplicitCtxt<'a, 'gcx, 'tcx>) -> R
1949     {
1950         with_context_opt(|opt_context| f(opt_context.expect("no ImplicitCtxt stored in tls")))
1951     }
1952
1953     /// Allows access to the current ImplicitCtxt whose tcx field has the same global
1954     /// interner as the tcx argument passed in. This means the closure is given an ImplicitCtxt
1955     /// with the same 'gcx lifetime as the TyCtxt passed in.
1956     /// This will panic if you pass it a TyCtxt which has a different global interner from
1957     /// the current ImplicitCtxt's tcx field.
1958     pub fn with_related_context<'a, 'gcx, 'tcx1, F, R>(tcx: TyCtxt<'a, 'gcx, 'tcx1>, f: F) -> R
1959         where F: for<'b, 'tcx2> FnOnce(&ImplicitCtxt<'b, 'gcx, 'tcx2>) -> R
1960     {
1961         with_context(|context| {
1962             unsafe {
1963                 let gcx = tcx.gcx as *const _ as usize;
1964                 assert!(context.tcx.gcx as *const _ as usize == gcx);
1965                 let context: &ImplicitCtxt = mem::transmute(context);
1966                 f(context)
1967             }
1968         })
1969     }
1970
1971     /// Allows access to the current ImplicitCtxt whose tcx field has the same global
1972     /// interner and local interner as the tcx argument passed in. This means the closure
1973     /// is given an ImplicitCtxt with the same 'tcx and 'gcx lifetimes as the TyCtxt passed in.
1974     /// This will panic if you pass it a TyCtxt which has a different global interner or
1975     /// a different local interner from the current ImplicitCtxt's tcx field.
1976     pub fn with_fully_related_context<'a, 'gcx, 'tcx, F, R>(tcx: TyCtxt<'a, 'gcx, 'tcx>, f: F) -> R
1977         where F: for<'b> FnOnce(&ImplicitCtxt<'b, 'gcx, 'tcx>) -> R
1978     {
1979         with_context(|context| {
1980             unsafe {
1981                 let gcx = tcx.gcx as *const _ as usize;
1982                 let interners = tcx.interners as *const _ as usize;
1983                 assert!(context.tcx.gcx as *const _ as usize == gcx);
1984                 assert!(context.tcx.interners as *const _ as usize == interners);
1985                 let context: &ImplicitCtxt = mem::transmute(context);
1986                 f(context)
1987             }
1988         })
1989     }
1990
1991     /// Allows access to the TyCtxt in the current ImplicitCtxt.
1992     /// Panics if there is no ImplicitCtxt available
1993     pub fn with<F, R>(f: F) -> R
1994         where F: for<'a, 'gcx, 'tcx> FnOnce(TyCtxt<'a, 'gcx, 'tcx>) -> R
1995     {
1996         with_context(|context| f(context.tcx))
1997     }
1998
1999     /// Allows access to the TyCtxt in the current ImplicitCtxt.
2000     /// The closure is passed None if there is no ImplicitCtxt available
2001     pub fn with_opt<F, R>(f: F) -> R
2002         where F: for<'a, 'gcx, 'tcx> FnOnce(Option<TyCtxt<'a, 'gcx, 'tcx>>) -> R
2003     {
2004         with_context_opt(|opt_context| f(opt_context.map(|context| context.tcx)))
2005     }
2006 }
2007
2008 macro_rules! sty_debug_print {
2009     ($ctxt: expr, $($variant: ident),*) => {{
2010         // curious inner module to allow variant names to be used as
2011         // variable names.
2012         #[allow(non_snake_case)]
2013         mod inner {
2014             use ty::{self, TyCtxt};
2015             use ty::context::Interned;
2016
2017             #[derive(Copy, Clone)]
2018             struct DebugStat {
2019                 total: usize,
2020                 region_infer: usize,
2021                 ty_infer: usize,
2022                 both_infer: usize,
2023             }
2024
2025             pub fn go(tcx: TyCtxt) {
2026                 let mut total = DebugStat {
2027                     total: 0,
2028                     region_infer: 0, ty_infer: 0, both_infer: 0,
2029                 };
2030                 $(let mut $variant = total;)*
2031
2032
2033                 for &Interned(t) in tcx.interners.type_.borrow().iter() {
2034                     let variant = match t.sty {
2035                         ty::TyBool | ty::TyChar | ty::TyInt(..) | ty::TyUint(..) |
2036                             ty::TyFloat(..) | ty::TyStr | ty::TyNever => continue,
2037                         ty::TyError => /* unimportant */ continue,
2038                         $(ty::$variant(..) => &mut $variant,)*
2039                     };
2040                     let region = t.flags.intersects(ty::TypeFlags::HAS_RE_INFER);
2041                     let ty = t.flags.intersects(ty::TypeFlags::HAS_TY_INFER);
2042
2043                     variant.total += 1;
2044                     total.total += 1;
2045                     if region { total.region_infer += 1; variant.region_infer += 1 }
2046                     if ty { total.ty_infer += 1; variant.ty_infer += 1 }
2047                     if region && ty { total.both_infer += 1; variant.both_infer += 1 }
2048                 }
2049                 println!("Ty interner             total           ty region  both");
2050                 $(println!("    {:18}: {uses:6} {usespc:4.1}%, \
2051 {ty:4.1}% {region:5.1}% {both:4.1}%",
2052                            stringify!($variant),
2053                            uses = $variant.total,
2054                            usespc = $variant.total as f64 * 100.0 / total.total as f64,
2055                            ty = $variant.ty_infer as f64 * 100.0  / total.total as f64,
2056                            region = $variant.region_infer as f64 * 100.0  / total.total as f64,
2057                            both = $variant.both_infer as f64 * 100.0  / total.total as f64);
2058                   )*
2059                 println!("                  total {uses:6}        \
2060 {ty:4.1}% {region:5.1}% {both:4.1}%",
2061                          uses = total.total,
2062                          ty = total.ty_infer as f64 * 100.0  / total.total as f64,
2063                          region = total.region_infer as f64 * 100.0  / total.total as f64,
2064                          both = total.both_infer as f64 * 100.0  / total.total as f64)
2065             }
2066         }
2067
2068         inner::go($ctxt)
2069     }}
2070 }
2071
2072 impl<'a, 'tcx> TyCtxt<'a, 'tcx, 'tcx> {
2073     pub fn print_debug_stats(self) {
2074         sty_debug_print!(
2075             self,
2076             TyAdt, TyArray, TySlice, TyRawPtr, TyRef, TyFnDef, TyFnPtr,
2077             TyGenerator, TyGeneratorWitness, TyDynamic, TyClosure, TyTuple,
2078             TyParam, TyInfer, TyProjection, TyAnon, TyForeign);
2079
2080         println!("Substs interner: #{}", self.interners.substs.borrow().len());
2081         println!("Region interner: #{}", self.interners.region.borrow().len());
2082         println!("Stability interner: #{}", self.stability_interner.borrow().len());
2083         println!("Allocation interner: #{}", self.allocation_interner.borrow().len());
2084         println!("Layout interner: #{}", self.layout_interner.borrow().len());
2085     }
2086 }
2087
2088
2089 /// An entry in an interner.
2090 struct Interned<'tcx, T: 'tcx+?Sized>(&'tcx T);
2091
2092 // NB: An Interned<Ty> compares and hashes as a sty.
2093 impl<'tcx> PartialEq for Interned<'tcx, TyS<'tcx>> {
2094     fn eq(&self, other: &Interned<'tcx, TyS<'tcx>>) -> bool {
2095         self.0.sty == other.0.sty
2096     }
2097 }
2098
2099 impl<'tcx> Eq for Interned<'tcx, TyS<'tcx>> {}
2100
2101 impl<'tcx> Hash for Interned<'tcx, TyS<'tcx>> {
2102     fn hash<H: Hasher>(&self, s: &mut H) {
2103         self.0.sty.hash(s)
2104     }
2105 }
2106
2107 impl<'tcx: 'lcx, 'lcx> Borrow<TypeVariants<'lcx>> for Interned<'tcx, TyS<'tcx>> {
2108     fn borrow<'a>(&'a self) -> &'a TypeVariants<'lcx> {
2109         &self.0.sty
2110     }
2111 }
2112
2113 // NB: An Interned<Slice<T>> compares and hashes as its elements.
2114 impl<'tcx, T: PartialEq> PartialEq for Interned<'tcx, Slice<T>> {
2115     fn eq(&self, other: &Interned<'tcx, Slice<T>>) -> bool {
2116         self.0[..] == other.0[..]
2117     }
2118 }
2119
2120 impl<'tcx, T: Eq> Eq for Interned<'tcx, Slice<T>> {}
2121
2122 impl<'tcx, T: Hash> Hash for Interned<'tcx, Slice<T>> {
2123     fn hash<H: Hasher>(&self, s: &mut H) {
2124         self.0[..].hash(s)
2125     }
2126 }
2127
2128 impl<'tcx: 'lcx, 'lcx> Borrow<[Ty<'lcx>]> for Interned<'tcx, Slice<Ty<'tcx>>> {
2129     fn borrow<'a>(&'a self) -> &'a [Ty<'lcx>] {
2130         &self.0[..]
2131     }
2132 }
2133
2134 impl<'tcx: 'lcx, 'lcx> Borrow<[CanonicalVarInfo]> for Interned<'tcx, Slice<CanonicalVarInfo>> {
2135     fn borrow<'a>(&'a self) -> &'a [CanonicalVarInfo] {
2136         &self.0[..]
2137     }
2138 }
2139
2140 impl<'tcx: 'lcx, 'lcx> Borrow<[Kind<'lcx>]> for Interned<'tcx, Substs<'tcx>> {
2141     fn borrow<'a>(&'a self) -> &'a [Kind<'lcx>] {
2142         &self.0[..]
2143     }
2144 }
2145
2146 impl<'tcx> Borrow<RegionKind> for Interned<'tcx, RegionKind> {
2147     fn borrow<'a>(&'a self) -> &'a RegionKind {
2148         &self.0
2149     }
2150 }
2151
2152 impl<'tcx: 'lcx, 'lcx> Borrow<[ExistentialPredicate<'lcx>]>
2153     for Interned<'tcx, Slice<ExistentialPredicate<'tcx>>> {
2154     fn borrow<'a>(&'a self) -> &'a [ExistentialPredicate<'lcx>] {
2155         &self.0[..]
2156     }
2157 }
2158
2159 impl<'tcx: 'lcx, 'lcx> Borrow<[Predicate<'lcx>]>
2160     for Interned<'tcx, Slice<Predicate<'tcx>>> {
2161     fn borrow<'a>(&'a self) -> &'a [Predicate<'lcx>] {
2162         &self.0[..]
2163     }
2164 }
2165
2166 impl<'tcx: 'lcx, 'lcx> Borrow<Const<'lcx>> for Interned<'tcx, Const<'tcx>> {
2167     fn borrow<'a>(&'a self) -> &'a Const<'lcx> {
2168         &self.0
2169     }
2170 }
2171
2172 impl<'tcx: 'lcx, 'lcx> Borrow<[Clause<'lcx>]>
2173 for Interned<'tcx, Slice<Clause<'tcx>>> {
2174     fn borrow<'a>(&'a self) -> &'a [Clause<'lcx>] {
2175         &self.0[..]
2176     }
2177 }
2178
2179 impl<'tcx: 'lcx, 'lcx> Borrow<[Goal<'lcx>]>
2180 for Interned<'tcx, Slice<Goal<'tcx>>> {
2181     fn borrow<'a>(&'a self) -> &'a [Goal<'lcx>] {
2182         &self.0[..]
2183     }
2184 }
2185
2186 macro_rules! intern_method {
2187     ($lt_tcx:tt, $name:ident: $method:ident($alloc:ty,
2188                                             $alloc_method:expr,
2189                                             $alloc_to_key:expr,
2190                                             $keep_in_local_tcx:expr) -> $ty:ty) => {
2191         impl<'a, 'gcx, $lt_tcx> TyCtxt<'a, 'gcx, $lt_tcx> {
2192             pub fn $method(self, v: $alloc) -> &$lt_tcx $ty {
2193                 let key = ($alloc_to_key)(&v);
2194
2195                 // HACK(eddyb) Depend on flags being accurate to
2196                 // determine that all contents are in the global tcx.
2197                 // See comments on Lift for why we can't use that.
2198                 if ($keep_in_local_tcx)(&v) {
2199                     let mut interner = self.interners.$name.borrow_mut();
2200                     if let Some(&Interned(v)) = interner.get(key) {
2201                         return v;
2202                     }
2203
2204                     // Make sure we don't end up with inference
2205                     // types/regions in the global tcx.
2206                     if self.is_global() {
2207                         bug!("Attempted to intern `{:?}` which contains \
2208                               inference types/regions in the global type context",
2209                              v);
2210                     }
2211
2212                     let i = $alloc_method(&self.interners.arena, v);
2213                     interner.insert(Interned(i));
2214                     i
2215                 } else {
2216                     let mut interner = self.global_interners.$name.borrow_mut();
2217                     if let Some(&Interned(v)) = interner.get(key) {
2218                         return v;
2219                     }
2220
2221                     // This transmutes $alloc<'tcx> to $alloc<'gcx>
2222                     let v = unsafe {
2223                         mem::transmute(v)
2224                     };
2225                     let i: &$lt_tcx $ty = $alloc_method(&self.global_interners.arena, v);
2226                     // Cast to 'gcx
2227                     let i = unsafe { mem::transmute(i) };
2228                     interner.insert(Interned(i));
2229                     i
2230                 }
2231             }
2232         }
2233     }
2234 }
2235
2236 macro_rules! direct_interners {
2237     ($lt_tcx:tt, $($name:ident: $method:ident($keep_in_local_tcx:expr) -> $ty:ty),+) => {
2238         $(impl<$lt_tcx> PartialEq for Interned<$lt_tcx, $ty> {
2239             fn eq(&self, other: &Self) -> bool {
2240                 self.0 == other.0
2241             }
2242         }
2243
2244         impl<$lt_tcx> Eq for Interned<$lt_tcx, $ty> {}
2245
2246         impl<$lt_tcx> Hash for Interned<$lt_tcx, $ty> {
2247             fn hash<H: Hasher>(&self, s: &mut H) {
2248                 self.0.hash(s)
2249             }
2250         }
2251
2252         intern_method!(
2253             $lt_tcx,
2254             $name: $method($ty,
2255                            |a: &$lt_tcx SyncDroplessArena, v| -> &$lt_tcx $ty { a.alloc(v) },
2256                            |x| x,
2257                            $keep_in_local_tcx) -> $ty);)+
2258     }
2259 }
2260
2261 pub fn keep_local<'tcx, T: ty::TypeFoldable<'tcx>>(x: &T) -> bool {
2262     x.has_type_flags(ty::TypeFlags::KEEP_IN_LOCAL_TCX)
2263 }
2264
2265 direct_interners!('tcx,
2266     region: mk_region(|r: &RegionKind| r.keep_in_local_tcx()) -> RegionKind,
2267     const_: mk_const(|c: &Const| keep_local(&c.ty) || keep_local(&c.val)) -> Const<'tcx>
2268 );
2269
2270 macro_rules! slice_interners {
2271     ($($field:ident: $method:ident($ty:ident)),+) => (
2272         $(intern_method!( 'tcx, $field: $method(
2273             &[$ty<'tcx>],
2274             |a, v| Slice::from_arena(a, v),
2275             Deref::deref,
2276             |xs: &[$ty]| xs.iter().any(keep_local)) -> Slice<$ty<'tcx>>);)+
2277     )
2278 }
2279
2280 slice_interners!(
2281     existential_predicates: _intern_existential_predicates(ExistentialPredicate),
2282     predicates: _intern_predicates(Predicate),
2283     type_list: _intern_type_list(Ty),
2284     substs: _intern_substs(Kind),
2285     clauses: _intern_clauses(Clause),
2286     goals: _intern_goals(Goal)
2287 );
2288
2289 // This isn't a perfect fit: CanonicalVarInfo slices are always
2290 // allocated in the global arena, so this `intern_method!` macro is
2291 // overly general.  But we just return false for the code that checks
2292 // whether they belong in the thread-local arena, so no harm done, and
2293 // seems better than open-coding the rest.
2294 intern_method! {
2295     'tcx,
2296     canonical_var_infos: _intern_canonical_var_infos(
2297         &[CanonicalVarInfo],
2298         |a, v| Slice::from_arena(a, v),
2299         Deref::deref,
2300         |_xs: &[CanonicalVarInfo]| -> bool { false }
2301     ) -> Slice<CanonicalVarInfo>
2302 }
2303
2304 impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
2305     /// Given a `fn` type, returns an equivalent `unsafe fn` type;
2306     /// that is, a `fn` type that is equivalent in every way for being
2307     /// unsafe.
2308     pub fn safe_to_unsafe_fn_ty(self, sig: PolyFnSig<'tcx>) -> Ty<'tcx> {
2309         assert_eq!(sig.unsafety(), hir::Unsafety::Normal);
2310         self.mk_fn_ptr(sig.map_bound(|sig| ty::FnSig {
2311             unsafety: hir::Unsafety::Unsafe,
2312             ..sig
2313         }))
2314     }
2315
2316     /// Given a closure signature `sig`, returns an equivalent `fn`
2317     /// type with the same signature. Detuples and so forth -- so
2318     /// e.g. if we have a sig with `Fn<(u32, i32)>` then you would get
2319     /// a `fn(u32, i32)`.
2320     pub fn coerce_closure_fn_ty(self, sig: PolyFnSig<'tcx>) -> Ty<'tcx> {
2321         let converted_sig = sig.map_bound(|s| {
2322             let params_iter = match s.inputs()[0].sty {
2323                 ty::TyTuple(params) => {
2324                     params.into_iter().cloned()
2325                 }
2326                 _ => bug!(),
2327             };
2328             self.mk_fn_sig(
2329                 params_iter,
2330                 s.output(),
2331                 s.variadic,
2332                 hir::Unsafety::Normal,
2333                 abi::Abi::Rust,
2334             )
2335         });
2336
2337         self.mk_fn_ptr(converted_sig)
2338     }
2339
2340     pub fn mk_ty(&self, st: TypeVariants<'tcx>) -> Ty<'tcx> {
2341         CtxtInterners::intern_ty(&self.interners, &self.global_interners, st)
2342     }
2343
2344     pub fn mk_mach_int(self, tm: ast::IntTy) -> Ty<'tcx> {
2345         match tm {
2346             ast::IntTy::Isize   => self.types.isize,
2347             ast::IntTy::I8   => self.types.i8,
2348             ast::IntTy::I16  => self.types.i16,
2349             ast::IntTy::I32  => self.types.i32,
2350             ast::IntTy::I64  => self.types.i64,
2351             ast::IntTy::I128  => self.types.i128,
2352         }
2353     }
2354
2355     pub fn mk_mach_uint(self, tm: ast::UintTy) -> Ty<'tcx> {
2356         match tm {
2357             ast::UintTy::Usize   => self.types.usize,
2358             ast::UintTy::U8   => self.types.u8,
2359             ast::UintTy::U16  => self.types.u16,
2360             ast::UintTy::U32  => self.types.u32,
2361             ast::UintTy::U64  => self.types.u64,
2362             ast::UintTy::U128  => self.types.u128,
2363         }
2364     }
2365
2366     pub fn mk_mach_float(self, tm: ast::FloatTy) -> Ty<'tcx> {
2367         match tm {
2368             ast::FloatTy::F32  => self.types.f32,
2369             ast::FloatTy::F64  => self.types.f64,
2370         }
2371     }
2372
2373     pub fn mk_str(self) -> Ty<'tcx> {
2374         self.mk_ty(TyStr)
2375     }
2376
2377     pub fn mk_static_str(self) -> Ty<'tcx> {
2378         self.mk_imm_ref(self.types.re_static, self.mk_str())
2379     }
2380
2381     pub fn mk_adt(self, def: &'tcx AdtDef, substs: &'tcx Substs<'tcx>) -> Ty<'tcx> {
2382         // take a copy of substs so that we own the vectors inside
2383         self.mk_ty(TyAdt(def, substs))
2384     }
2385
2386     pub fn mk_foreign(self, def_id: DefId) -> Ty<'tcx> {
2387         self.mk_ty(TyForeign(def_id))
2388     }
2389
2390     pub fn mk_box(self, ty: Ty<'tcx>) -> Ty<'tcx> {
2391         let def_id = self.require_lang_item(lang_items::OwnedBoxLangItem);
2392         let adt_def = self.adt_def(def_id);
2393         let substs = Substs::for_item(self, def_id, |param, substs| {
2394             match param.kind {
2395                 GenericParamDefKind::Lifetime => bug!(),
2396                 GenericParamDefKind::Type { has_default, .. } => {
2397                     if param.index == 0 {
2398                         ty.into()
2399                     } else {
2400                         assert!(has_default);
2401                         self.type_of(param.def_id).subst(self, substs).into()
2402                     }
2403                 }
2404             }
2405         });
2406         self.mk_ty(TyAdt(adt_def, substs))
2407     }
2408
2409     pub fn mk_ptr(self, tm: TypeAndMut<'tcx>) -> Ty<'tcx> {
2410         self.mk_ty(TyRawPtr(tm))
2411     }
2412
2413     pub fn mk_ref(self, r: Region<'tcx>, tm: TypeAndMut<'tcx>) -> Ty<'tcx> {
2414         self.mk_ty(TyRef(r, tm.ty, tm.mutbl))
2415     }
2416
2417     pub fn mk_mut_ref(self, r: Region<'tcx>, ty: Ty<'tcx>) -> Ty<'tcx> {
2418         self.mk_ref(r, TypeAndMut {ty: ty, mutbl: hir::MutMutable})
2419     }
2420
2421     pub fn mk_imm_ref(self, r: Region<'tcx>, ty: Ty<'tcx>) -> Ty<'tcx> {
2422         self.mk_ref(r, TypeAndMut {ty: ty, mutbl: hir::MutImmutable})
2423     }
2424
2425     pub fn mk_mut_ptr(self, ty: Ty<'tcx>) -> Ty<'tcx> {
2426         self.mk_ptr(TypeAndMut {ty: ty, mutbl: hir::MutMutable})
2427     }
2428
2429     pub fn mk_imm_ptr(self, ty: Ty<'tcx>) -> Ty<'tcx> {
2430         self.mk_ptr(TypeAndMut {ty: ty, mutbl: hir::MutImmutable})
2431     }
2432
2433     pub fn mk_nil_ptr(self) -> Ty<'tcx> {
2434         self.mk_imm_ptr(self.mk_nil())
2435     }
2436
2437     pub fn mk_array(self, ty: Ty<'tcx>, n: u64) -> Ty<'tcx> {
2438         self.mk_ty(TyArray(ty, ty::Const::from_usize(self, n)))
2439     }
2440
2441     pub fn mk_slice(self, ty: Ty<'tcx>) -> Ty<'tcx> {
2442         self.mk_ty(TySlice(ty))
2443     }
2444
2445     pub fn intern_tup(self, ts: &[Ty<'tcx>]) -> Ty<'tcx> {
2446         self.mk_ty(TyTuple(self.intern_type_list(ts)))
2447     }
2448
2449     pub fn mk_tup<I: InternAs<[Ty<'tcx>], Ty<'tcx>>>(self, iter: I) -> I::Output {
2450         iter.intern_with(|ts| self.mk_ty(TyTuple(self.intern_type_list(ts))))
2451     }
2452
2453     pub fn mk_nil(self) -> Ty<'tcx> {
2454         self.intern_tup(&[])
2455     }
2456
2457     pub fn mk_diverging_default(self) -> Ty<'tcx> {
2458         if self.features().never_type {
2459             self.types.never
2460         } else {
2461             self.intern_tup(&[])
2462         }
2463     }
2464
2465     pub fn mk_bool(self) -> Ty<'tcx> {
2466         self.mk_ty(TyBool)
2467     }
2468
2469     pub fn mk_fn_def(self, def_id: DefId,
2470                      substs: &'tcx Substs<'tcx>) -> Ty<'tcx> {
2471         self.mk_ty(TyFnDef(def_id, substs))
2472     }
2473
2474     pub fn mk_fn_ptr(self, fty: PolyFnSig<'tcx>) -> Ty<'tcx> {
2475         self.mk_ty(TyFnPtr(fty))
2476     }
2477
2478     pub fn mk_dynamic(
2479         self,
2480         obj: ty::Binder<&'tcx Slice<ExistentialPredicate<'tcx>>>,
2481         reg: ty::Region<'tcx>
2482     ) -> Ty<'tcx> {
2483         self.mk_ty(TyDynamic(obj, reg))
2484     }
2485
2486     pub fn mk_projection(self,
2487                          item_def_id: DefId,
2488                          substs: &'tcx Substs<'tcx>)
2489         -> Ty<'tcx> {
2490             self.mk_ty(TyProjection(ProjectionTy {
2491                 item_def_id,
2492                 substs,
2493             }))
2494         }
2495
2496     pub fn mk_closure(self, closure_id: DefId, closure_substs: ClosureSubsts<'tcx>)
2497                                           -> Ty<'tcx> {
2498         self.mk_ty(TyClosure(closure_id, closure_substs))
2499     }
2500
2501     pub fn mk_generator(self,
2502                         id: DefId,
2503                         generator_substs: GeneratorSubsts<'tcx>,
2504                         movability: hir::GeneratorMovability)
2505                         -> Ty<'tcx> {
2506         self.mk_ty(TyGenerator(id, generator_substs, movability))
2507     }
2508
2509     pub fn mk_generator_witness(self, types: ty::Binder<&'tcx Slice<Ty<'tcx>>>) -> Ty<'tcx> {
2510         self.mk_ty(TyGeneratorWitness(types))
2511     }
2512
2513     pub fn mk_var(self, v: TyVid) -> Ty<'tcx> {
2514         self.mk_infer(TyVar(v))
2515     }
2516
2517     pub fn mk_int_var(self, v: IntVid) -> Ty<'tcx> {
2518         self.mk_infer(IntVar(v))
2519     }
2520
2521     pub fn mk_float_var(self, v: FloatVid) -> Ty<'tcx> {
2522         self.mk_infer(FloatVar(v))
2523     }
2524
2525     pub fn mk_infer(self, it: InferTy) -> Ty<'tcx> {
2526         self.mk_ty(TyInfer(it))
2527     }
2528
2529     pub fn mk_ty_param(self,
2530                     index: u32,
2531                     name: InternedString) -> Ty<'tcx> {
2532         self.mk_ty(TyParam(ParamTy { idx: index, name: name }))
2533     }
2534
2535     pub fn mk_self_type(self) -> Ty<'tcx> {
2536         self.mk_ty_param(0, keywords::SelfType.name().as_interned_str())
2537     }
2538
2539     pub fn mk_param_from_def(self, param: &ty::GenericParamDef) -> Kind<'tcx> {
2540         match param.kind {
2541             GenericParamDefKind::Lifetime => {
2542                 self.mk_region(ty::ReEarlyBound(param.to_early_bound_region_data())).into()
2543             }
2544             GenericParamDefKind::Type {..} => self.mk_ty_param(param.index, param.name).into(),
2545         }
2546     }
2547
2548     pub fn mk_anon(self, def_id: DefId, substs: &'tcx Substs<'tcx>) -> Ty<'tcx> {
2549         self.mk_ty(TyAnon(def_id, substs))
2550     }
2551
2552     pub fn intern_existential_predicates(self, eps: &[ExistentialPredicate<'tcx>])
2553         -> &'tcx Slice<ExistentialPredicate<'tcx>> {
2554         assert!(!eps.is_empty());
2555         assert!(eps.windows(2).all(|w| w[0].stable_cmp(self, &w[1]) != Ordering::Greater));
2556         self._intern_existential_predicates(eps)
2557     }
2558
2559     pub fn intern_predicates(self, preds: &[Predicate<'tcx>])
2560         -> &'tcx Slice<Predicate<'tcx>> {
2561         // FIXME consider asking the input slice to be sorted to avoid
2562         // re-interning permutations, in which case that would be asserted
2563         // here.
2564         if preds.len() == 0 {
2565             // The macro-generated method below asserts we don't intern an empty slice.
2566             Slice::empty()
2567         } else {
2568             self._intern_predicates(preds)
2569         }
2570     }
2571
2572     pub fn intern_type_list(self, ts: &[Ty<'tcx>]) -> &'tcx Slice<Ty<'tcx>> {
2573         if ts.len() == 0 {
2574             Slice::empty()
2575         } else {
2576             self._intern_type_list(ts)
2577         }
2578     }
2579
2580     pub fn intern_substs(self, ts: &[Kind<'tcx>]) -> &'tcx Slice<Kind<'tcx>> {
2581         if ts.len() == 0 {
2582             Slice::empty()
2583         } else {
2584             self._intern_substs(ts)
2585         }
2586     }
2587
2588     pub fn intern_canonical_var_infos(self, ts: &[CanonicalVarInfo]) -> CanonicalVarInfos<'gcx> {
2589         if ts.len() == 0 {
2590             Slice::empty()
2591         } else {
2592             self.global_tcx()._intern_canonical_var_infos(ts)
2593         }
2594     }
2595
2596     pub fn intern_clauses(self, ts: &[Clause<'tcx>]) -> Clauses<'tcx> {
2597         if ts.len() == 0 {
2598             Slice::empty()
2599         } else {
2600             self._intern_clauses(ts)
2601         }
2602     }
2603
2604     pub fn intern_goals(self, ts: &[Goal<'tcx>]) -> Goals<'tcx> {
2605         if ts.len() == 0 {
2606             Slice::empty()
2607         } else {
2608             self._intern_goals(ts)
2609         }
2610     }
2611
2612     pub fn mk_fn_sig<I>(self,
2613                         inputs: I,
2614                         output: I::Item,
2615                         variadic: bool,
2616                         unsafety: hir::Unsafety,
2617                         abi: abi::Abi)
2618         -> <I::Item as InternIteratorElement<Ty<'tcx>, ty::FnSig<'tcx>>>::Output
2619         where I: Iterator,
2620               I::Item: InternIteratorElement<Ty<'tcx>, ty::FnSig<'tcx>>
2621     {
2622         inputs.chain(iter::once(output)).intern_with(|xs| ty::FnSig {
2623             inputs_and_output: self.intern_type_list(xs),
2624             variadic, unsafety, abi
2625         })
2626     }
2627
2628     pub fn mk_existential_predicates<I: InternAs<[ExistentialPredicate<'tcx>],
2629                                      &'tcx Slice<ExistentialPredicate<'tcx>>>>(self, iter: I)
2630                                      -> I::Output {
2631         iter.intern_with(|xs| self.intern_existential_predicates(xs))
2632     }
2633
2634     pub fn mk_predicates<I: InternAs<[Predicate<'tcx>],
2635                                      &'tcx Slice<Predicate<'tcx>>>>(self, iter: I)
2636                                      -> I::Output {
2637         iter.intern_with(|xs| self.intern_predicates(xs))
2638     }
2639
2640     pub fn mk_type_list<I: InternAs<[Ty<'tcx>],
2641                         &'tcx Slice<Ty<'tcx>>>>(self, iter: I) -> I::Output {
2642         iter.intern_with(|xs| self.intern_type_list(xs))
2643     }
2644
2645     pub fn mk_substs<I: InternAs<[Kind<'tcx>],
2646                      &'tcx Slice<Kind<'tcx>>>>(self, iter: I) -> I::Output {
2647         iter.intern_with(|xs| self.intern_substs(xs))
2648     }
2649
2650     pub fn mk_substs_trait(self,
2651                      self_ty: Ty<'tcx>,
2652                      rest: &[Kind<'tcx>])
2653                     -> &'tcx Substs<'tcx>
2654     {
2655         self.mk_substs(iter::once(self_ty.into()).chain(rest.iter().cloned()))
2656     }
2657
2658     pub fn mk_clauses<I: InternAs<[Clause<'tcx>], Clauses<'tcx>>>(self, iter: I) -> I::Output {
2659         iter.intern_with(|xs| self.intern_clauses(xs))
2660     }
2661
2662     pub fn mk_goals<I: InternAs<[Goal<'tcx>], Goals<'tcx>>>(self, iter: I) -> I::Output {
2663         iter.intern_with(|xs| self.intern_goals(xs))
2664     }
2665
2666     pub fn mk_goal(self, goal: Goal<'tcx>) -> &'tcx Goal {
2667         &self.intern_goals(&[goal])[0]
2668     }
2669
2670     pub fn lint_hir<S: Into<MultiSpan>>(self,
2671                                         lint: &'static Lint,
2672                                         hir_id: HirId,
2673                                         span: S,
2674                                         msg: &str) {
2675         self.struct_span_lint_hir(lint, hir_id, span.into(), msg).emit()
2676     }
2677
2678     pub fn lint_node<S: Into<MultiSpan>>(self,
2679                                          lint: &'static Lint,
2680                                          id: NodeId,
2681                                          span: S,
2682                                          msg: &str) {
2683         self.struct_span_lint_node(lint, id, span.into(), msg).emit()
2684     }
2685
2686     pub fn lint_hir_note<S: Into<MultiSpan>>(self,
2687                                               lint: &'static Lint,
2688                                               hir_id: HirId,
2689                                               span: S,
2690                                               msg: &str,
2691                                               note: &str) {
2692         let mut err = self.struct_span_lint_hir(lint, hir_id, span.into(), msg);
2693         err.note(note);
2694         err.emit()
2695     }
2696
2697     pub fn lint_node_note<S: Into<MultiSpan>>(self,
2698                                               lint: &'static Lint,
2699                                               id: NodeId,
2700                                               span: S,
2701                                               msg: &str,
2702                                               note: &str) {
2703         let mut err = self.struct_span_lint_node(lint, id, span.into(), msg);
2704         err.note(note);
2705         err.emit()
2706     }
2707
2708     pub fn lint_level_at_node(self, lint: &'static Lint, mut id: NodeId)
2709         -> (lint::Level, lint::LintSource)
2710     {
2711         // Right now we insert a `with_ignore` node in the dep graph here to
2712         // ignore the fact that `lint_levels` below depends on the entire crate.
2713         // For now this'll prevent false positives of recompiling too much when
2714         // anything changes.
2715         //
2716         // Once red/green incremental compilation lands we should be able to
2717         // remove this because while the crate changes often the lint level map
2718         // will change rarely.
2719         self.dep_graph.with_ignore(|| {
2720             let sets = self.lint_levels(LOCAL_CRATE);
2721             loop {
2722                 let hir_id = self.hir.definitions().node_to_hir_id(id);
2723                 if let Some(pair) = sets.level_and_source(lint, hir_id, self.sess) {
2724                     return pair
2725                 }
2726                 let next = self.hir.get_parent_node(id);
2727                 if next == id {
2728                     bug!("lint traversal reached the root of the crate");
2729                 }
2730                 id = next;
2731             }
2732         })
2733     }
2734
2735     pub fn struct_span_lint_hir<S: Into<MultiSpan>>(self,
2736                                                     lint: &'static Lint,
2737                                                     hir_id: HirId,
2738                                                     span: S,
2739                                                     msg: &str)
2740         -> DiagnosticBuilder<'tcx>
2741     {
2742         let node_id = self.hir.hir_to_node_id(hir_id);
2743         let (level, src) = self.lint_level_at_node(lint, node_id);
2744         lint::struct_lint_level(self.sess, lint, level, src, Some(span.into()), msg)
2745     }
2746
2747     pub fn struct_span_lint_node<S: Into<MultiSpan>>(self,
2748                                                      lint: &'static Lint,
2749                                                      id: NodeId,
2750                                                      span: S,
2751                                                      msg: &str)
2752         -> DiagnosticBuilder<'tcx>
2753     {
2754         let (level, src) = self.lint_level_at_node(lint, id);
2755         lint::struct_lint_level(self.sess, lint, level, src, Some(span.into()), msg)
2756     }
2757
2758     pub fn struct_lint_node(self, lint: &'static Lint, id: NodeId, msg: &str)
2759         -> DiagnosticBuilder<'tcx>
2760     {
2761         let (level, src) = self.lint_level_at_node(lint, id);
2762         lint::struct_lint_level(self.sess, lint, level, src, None, msg)
2763     }
2764
2765     pub fn in_scope_traits(self, id: HirId) -> Option<Lrc<StableVec<TraitCandidate>>> {
2766         self.in_scope_traits_map(id.owner)
2767             .and_then(|map| map.get(&id.local_id).cloned())
2768     }
2769
2770     pub fn named_region(self, id: HirId) -> Option<resolve_lifetime::Region> {
2771         self.named_region_map(id.owner)
2772             .and_then(|map| map.get(&id.local_id).cloned())
2773     }
2774
2775     pub fn is_late_bound(self, id: HirId) -> bool {
2776         self.is_late_bound_map(id.owner)
2777             .map(|set| set.contains(&id.local_id))
2778             .unwrap_or(false)
2779     }
2780
2781     pub fn object_lifetime_defaults(self, id: HirId)
2782         -> Option<Lrc<Vec<ObjectLifetimeDefault>>>
2783     {
2784         self.object_lifetime_defaults_map(id.owner)
2785             .and_then(|map| map.get(&id.local_id).cloned())
2786     }
2787 }
2788
2789 pub trait InternAs<T: ?Sized, R> {
2790     type Output;
2791     fn intern_with<F>(self, f: F) -> Self::Output
2792         where F: FnOnce(&T) -> R;
2793 }
2794
2795 impl<I, T, R, E> InternAs<[T], R> for I
2796     where E: InternIteratorElement<T, R>,
2797           I: Iterator<Item=E> {
2798     type Output = E::Output;
2799     fn intern_with<F>(self, f: F) -> Self::Output
2800         where F: FnOnce(&[T]) -> R {
2801         E::intern_with(self, f)
2802     }
2803 }
2804
2805 pub trait InternIteratorElement<T, R>: Sized {
2806     type Output;
2807     fn intern_with<I: Iterator<Item=Self>, F: FnOnce(&[T]) -> R>(iter: I, f: F) -> Self::Output;
2808 }
2809
2810 impl<T, R> InternIteratorElement<T, R> for T {
2811     type Output = R;
2812     fn intern_with<I: Iterator<Item=Self>, F: FnOnce(&[T]) -> R>(iter: I, f: F) -> Self::Output {
2813         f(&iter.collect::<AccumulateVec<[_; 8]>>())
2814     }
2815 }
2816
2817 impl<'a, T, R> InternIteratorElement<T, R> for &'a T
2818     where T: Clone + 'a
2819 {
2820     type Output = R;
2821     fn intern_with<I: Iterator<Item=Self>, F: FnOnce(&[T]) -> R>(iter: I, f: F) -> Self::Output {
2822         f(&iter.cloned().collect::<AccumulateVec<[_; 8]>>())
2823     }
2824 }
2825
2826 impl<T, R, E> InternIteratorElement<T, R> for Result<T, E> {
2827     type Output = Result<R, E>;
2828     fn intern_with<I: Iterator<Item=Self>, F: FnOnce(&[T]) -> R>(iter: I, f: F) -> Self::Output {
2829         Ok(f(&iter.collect::<Result<AccumulateVec<[_; 8]>, _>>()?))
2830     }
2831 }
2832
2833 pub fn provide(providers: &mut ty::query::Providers) {
2834     // FIXME(#44234) - almost all of these queries have no sub-queries and
2835     // therefore no actual inputs, they're just reading tables calculated in
2836     // resolve! Does this work? Unsure! That's what the issue is about
2837     providers.in_scope_traits_map = |tcx, id| tcx.gcx.trait_map.get(&id).cloned();
2838     providers.module_exports = |tcx, id| tcx.gcx.export_map.get(&id).cloned();
2839     providers.crate_name = |tcx, id| {
2840         assert_eq!(id, LOCAL_CRATE);
2841         tcx.crate_name
2842     };
2843     providers.get_lang_items = |tcx, id| {
2844         assert_eq!(id, LOCAL_CRATE);
2845         // FIXME(#42293) Right now we insert a `with_ignore` node in the dep
2846         // graph here to ignore the fact that `get_lang_items` below depends on
2847         // the entire crate.  For now this'll prevent false positives of
2848         // recompiling too much when anything changes.
2849         //
2850         // Once red/green incremental compilation lands we should be able to
2851         // remove this because while the crate changes often the lint level map
2852         // will change rarely.
2853         tcx.dep_graph.with_ignore(|| Lrc::new(middle::lang_items::collect(tcx)))
2854     };
2855     providers.freevars = |tcx, id| tcx.gcx.freevars.get(&id).cloned();
2856     providers.maybe_unused_trait_import = |tcx, id| {
2857         tcx.maybe_unused_trait_imports.contains(&id)
2858     };
2859     providers.maybe_unused_extern_crates = |tcx, cnum| {
2860         assert_eq!(cnum, LOCAL_CRATE);
2861         Lrc::new(tcx.maybe_unused_extern_crates.clone())
2862     };
2863
2864     providers.stability_index = |tcx, cnum| {
2865         assert_eq!(cnum, LOCAL_CRATE);
2866         Lrc::new(stability::Index::new(tcx))
2867     };
2868     providers.lookup_stability = |tcx, id| {
2869         assert_eq!(id.krate, LOCAL_CRATE);
2870         let id = tcx.hir.definitions().def_index_to_hir_id(id.index);
2871         tcx.stability().local_stability(id)
2872     };
2873     providers.lookup_deprecation_entry = |tcx, id| {
2874         assert_eq!(id.krate, LOCAL_CRATE);
2875         let id = tcx.hir.definitions().def_index_to_hir_id(id.index);
2876         tcx.stability().local_deprecation_entry(id)
2877     };
2878     providers.extern_mod_stmt_cnum = |tcx, id| {
2879         let id = tcx.hir.as_local_node_id(id).unwrap();
2880         tcx.cstore.extern_mod_stmt_cnum_untracked(id)
2881     };
2882     providers.all_crate_nums = |tcx, cnum| {
2883         assert_eq!(cnum, LOCAL_CRATE);
2884         Lrc::new(tcx.cstore.crates_untracked())
2885     };
2886     providers.postorder_cnums = |tcx, cnum| {
2887         assert_eq!(cnum, LOCAL_CRATE);
2888         Lrc::new(tcx.cstore.postorder_cnums_untracked())
2889     };
2890     providers.output_filenames = |tcx, cnum| {
2891         assert_eq!(cnum, LOCAL_CRATE);
2892         tcx.output_filenames.clone()
2893     };
2894     providers.features_query = |tcx, cnum| {
2895         assert_eq!(cnum, LOCAL_CRATE);
2896         Lrc::new(tcx.sess.features_untracked().clone())
2897     };
2898     providers.is_panic_runtime = |tcx, cnum| {
2899         assert_eq!(cnum, LOCAL_CRATE);
2900         attr::contains_name(tcx.hir.krate_attrs(), "panic_runtime")
2901     };
2902     providers.is_compiler_builtins = |tcx, cnum| {
2903         assert_eq!(cnum, LOCAL_CRATE);
2904         attr::contains_name(tcx.hir.krate_attrs(), "compiler_builtins")
2905     };
2906 }