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