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