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