]> git.lizzy.rs Git - rust.git/blob - src/librustc/ty/context.rs
Rollup merge of #60376 - lzutao:stabilize-option_xor, r=SimonSapin
[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<'gcx: 'tcx, '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<'gcx>,
141         global: &CtxtInterners<'gcx>,
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<'gcx> = 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<'gcx> = 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, 'gcx> HashStable<StableHashingContext<'a>> for TypeckTables<'gcx> {
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
861 /// Canonicalized user type annotation.
862 pub type CanonicalUserType<'gcx> = Canonical<'gcx, UserType<'gcx>>;
863
864 impl CanonicalUserType<'gcx> {
865     /// Returns `true` if this represents a substitution of the form `[?0, ?1, ?2]`,
866     /// i.e., each thing is mapped to a canonical variable with the same index.
867     pub fn is_identity(&self) -> bool {
868         match self.value {
869             UserType::Ty(_) => false,
870             UserType::TypeOf(_, user_substs) => {
871                 if user_substs.user_self_ty.is_some() {
872                     return false;
873                 }
874
875                 user_substs.substs.iter().zip(BoundVar::new(0)..).all(|(kind, cvar)| {
876                     match kind.unpack() {
877                         UnpackedKind::Type(ty) => match ty.sty {
878                             ty::Bound(debruijn, b) => {
879                                 // We only allow a `ty::INNERMOST` index in substitutions.
880                                 assert_eq!(debruijn, ty::INNERMOST);
881                                 cvar == b.var
882                             }
883                             _ => false,
884                         },
885
886                         UnpackedKind::Lifetime(r) => match r {
887                             ty::ReLateBound(debruijn, br) => {
888                                 // We only allow a `ty::INNERMOST` index in substitutions.
889                                 assert_eq!(*debruijn, ty::INNERMOST);
890                                 cvar == br.assert_bound_var()
891                             }
892                             _ => false,
893                         },
894
895                         UnpackedKind::Const(ct) => match ct.val {
896                             ConstValue::Infer(InferConst::Canonical(debruijn, b)) => {
897                                 // We only allow a `ty::INNERMOST` index in substitutions.
898                                 assert_eq!(debruijn, ty::INNERMOST);
899                                 cvar == b
900                             }
901                             _ => false,
902                         },
903                     }
904                 })
905             },
906         }
907     }
908 }
909
910 /// A user-given type annotation attached to a constant. These arise
911 /// from constants that are named via paths, like `Foo::<A>::new` and
912 /// so forth.
913 #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable, HashStable)]
914 pub enum UserType<'tcx> {
915     Ty(Ty<'tcx>),
916
917     /// The canonical type is the result of `type_of(def_id)` with the
918     /// given substitutions applied.
919     TypeOf(DefId, UserSubsts<'tcx>),
920 }
921
922 EnumTypeFoldableImpl! {
923     impl<'tcx> TypeFoldable<'tcx> for UserType<'tcx> {
924         (UserType::Ty)(ty),
925         (UserType::TypeOf)(def, substs),
926     }
927 }
928
929 EnumLiftImpl! {
930     impl<'a, 'tcx> Lift<'tcx> for UserType<'a> {
931         type Lifted = UserType<'tcx>;
932         (UserType::Ty)(ty),
933         (UserType::TypeOf)(def, substs),
934     }
935 }
936
937 impl<'tcx> CommonTypes<'tcx> {
938     fn new(interners: &CtxtInterners<'tcx>) -> CommonTypes<'tcx> {
939         let mk = |sty| CtxtInterners::intern_ty(interners, interners, sty);
940
941         CommonTypes {
942             unit: mk(Tuple(List::empty())),
943             bool: mk(Bool),
944             char: mk(Char),
945             never: mk(Never),
946             err: mk(Error),
947             isize: mk(Int(ast::IntTy::Isize)),
948             i8: mk(Int(ast::IntTy::I8)),
949             i16: mk(Int(ast::IntTy::I16)),
950             i32: mk(Int(ast::IntTy::I32)),
951             i64: mk(Int(ast::IntTy::I64)),
952             i128: mk(Int(ast::IntTy::I128)),
953             usize: mk(Uint(ast::UintTy::Usize)),
954             u8: mk(Uint(ast::UintTy::U8)),
955             u16: mk(Uint(ast::UintTy::U16)),
956             u32: mk(Uint(ast::UintTy::U32)),
957             u64: mk(Uint(ast::UintTy::U64)),
958             u128: mk(Uint(ast::UintTy::U128)),
959             f32: mk(Float(ast::FloatTy::F32)),
960             f64: mk(Float(ast::FloatTy::F64)),
961
962             trait_object_dummy_self: mk(Infer(ty::FreshTy(0))),
963         }
964     }
965 }
966
967 impl<'tcx> CommonLifetimes<'tcx> {
968     fn new(interners: &CtxtInterners<'tcx>) -> CommonLifetimes<'tcx> {
969         let mk = |r| {
970             interners.region.borrow_mut().intern(r, |r| {
971                 Interned(interners.arena.alloc(r))
972             }).0
973         };
974
975         CommonLifetimes {
976             re_empty: mk(RegionKind::ReEmpty),
977             re_static: mk(RegionKind::ReStatic),
978             re_erased: mk(RegionKind::ReErased),
979         }
980     }
981 }
982
983 impl<'tcx> CommonConsts<'tcx> {
984     fn new(interners: &CtxtInterners<'tcx>, types: &CommonTypes<'tcx>) -> CommonConsts<'tcx> {
985         let mk_const = |c| {
986             interners.const_.borrow_mut().intern(c, |c| {
987                 Interned(interners.arena.alloc(c))
988             }).0
989         };
990
991         CommonConsts {
992             err: mk_const(ty::Const {
993                 val: ConstValue::Scalar(Scalar::zst()),
994                 ty: types.err,
995             }),
996         }
997     }
998 }
999
1000 // This struct contains information regarding the `ReFree(FreeRegion)` corresponding to a lifetime
1001 // conflict.
1002 #[derive(Debug)]
1003 pub struct FreeRegionInfo {
1004     // def id corresponding to FreeRegion
1005     pub def_id: DefId,
1006     // the bound region corresponding to FreeRegion
1007     pub boundregion: ty::BoundRegion,
1008     // checks if bound region is in Impl Item
1009     pub is_impl_item: bool,
1010 }
1011
1012 /// The central data structure of the compiler. It stores references
1013 /// to the various **arenas** and also houses the results of the
1014 /// various **compiler queries** that have been performed. See the
1015 /// [rustc guide] for more details.
1016 ///
1017 /// [rustc guide]: https://rust-lang.github.io/rustc-guide/ty.html
1018 #[derive(Copy, Clone)]
1019 pub struct TyCtxt<'gcx: 'tcx, 'tcx> {
1020     gcx: &'gcx GlobalCtxt<'gcx>,
1021     interners: &'gcx CtxtInterners<'gcx>,
1022     dummy: PhantomData<&'tcx ()>,
1023 }
1024
1025 impl<'gcx> Deref for TyCtxt<'gcx, '_> {
1026     type Target = &'gcx GlobalCtxt<'gcx>;
1027     #[inline(always)]
1028     fn deref(&self) -> &Self::Target {
1029         &self.gcx
1030     }
1031 }
1032
1033 pub struct GlobalCtxt<'tcx> {
1034     pub arena: WorkerLocal<Arena<'tcx>>,
1035
1036     global_interners: CtxtInterners<'tcx>,
1037     local_interners: CtxtInterners<'tcx>,
1038
1039     cstore: &'tcx CrateStoreDyn,
1040
1041     pub sess: &'tcx Session,
1042
1043     pub dep_graph: DepGraph,
1044
1045     /// Common objects.
1046     pub common: Common<'tcx>,
1047
1048     /// Common types, pre-interned for your convenience.
1049     pub types: CommonTypes<'tcx>,
1050
1051     /// Common lifetimes, pre-interned for your convenience.
1052     pub lifetimes: CommonLifetimes<'tcx>,
1053
1054     /// Common consts, pre-interned for your convenience.
1055     pub consts: CommonConsts<'tcx>,
1056
1057     /// Map indicating what traits are in scope for places where this
1058     /// is relevant; generated by resolve.
1059     trait_map: FxHashMap<DefIndex,
1060                          FxHashMap<ItemLocalId,
1061                                    StableVec<TraitCandidate>>>,
1062
1063     /// Export map produced by name resolution.
1064     export_map: FxHashMap<DefId, Vec<Export<hir::HirId>>>,
1065
1066     hir_map: hir_map::Map<'tcx>,
1067
1068     /// A map from DefPathHash -> DefId. Includes DefIds from the local crate
1069     /// as well as all upstream crates. Only populated in incremental mode.
1070     pub def_path_hash_to_def_id: Option<FxHashMap<DefPathHash, DefId>>,
1071
1072     pub queries: query::Queries<'tcx>,
1073
1074     maybe_unused_trait_imports: FxHashSet<DefId>,
1075     maybe_unused_extern_crates: Vec<(DefId, Span)>,
1076     /// A map of glob use to a set of names it actually imports. Currently only
1077     /// used in save-analysis.
1078     glob_map: FxHashMap<DefId, FxHashSet<ast::Name>>,
1079     /// Extern prelude entries. The value is `true` if the entry was introduced
1080     /// via `extern crate` item and not `--extern` option or compiler built-in.
1081     pub extern_prelude: FxHashMap<ast::Name, bool>,
1082
1083     // Internal cache for metadata decoding. No need to track deps on this.
1084     pub rcache: Lock<FxHashMap<ty::CReaderCacheKey, Ty<'tcx>>>,
1085
1086     /// Caches the results of trait selection. This cache is used
1087     /// for things that do not have to do with the parameters in scope.
1088     pub selection_cache: traits::SelectionCache<'tcx>,
1089
1090     /// Caches the results of trait evaluation. This cache is used
1091     /// for things that do not have to do with the parameters in scope.
1092     /// Merge this with `selection_cache`?
1093     pub evaluation_cache: traits::EvaluationCache<'tcx>,
1094
1095     /// The definite name of the current crate after taking into account
1096     /// attributes, commandline parameters, etc.
1097     pub crate_name: Symbol,
1098
1099     /// Data layout specification for the current target.
1100     pub data_layout: TargetDataLayout,
1101
1102     stability_interner: Lock<FxHashMap<&'tcx attr::Stability, ()>>,
1103
1104     /// Stores the value of constants (and deduplicates the actual memory)
1105     allocation_interner: Lock<FxHashMap<&'tcx Allocation, ()>>,
1106
1107     pub alloc_map: Lock<interpret::AllocMap<'tcx>>,
1108
1109     layout_interner: Lock<FxHashMap<&'tcx LayoutDetails, ()>>,
1110
1111     /// A general purpose channel to throw data out the back towards LLVM worker
1112     /// threads.
1113     ///
1114     /// This is intended to only get used during the codegen phase of the compiler
1115     /// when satisfying the query for a particular codegen unit. Internally in
1116     /// the query it'll send data along this channel to get processed later.
1117     pub tx_to_llvm_workers: Lock<mpsc::Sender<Box<dyn Any + Send>>>,
1118
1119     output_filenames: Arc<OutputFilenames>,
1120 }
1121
1122 impl<'gcx, 'tcx> TyCtxt<'gcx, 'tcx> {
1123     /// Gets the global `TyCtxt`.
1124     #[inline]
1125     pub fn global_tcx(self) -> TyCtxt<'gcx, 'gcx> {
1126         TyCtxt {
1127             gcx: self.gcx,
1128             interners: &self.gcx.global_interners,
1129             dummy: PhantomData,
1130         }
1131     }
1132
1133     #[inline(always)]
1134     pub fn hir(self) -> &'tcx hir_map::Map<'gcx> {
1135         &self.hir_map
1136     }
1137
1138     pub fn alloc_steal_mir(self, mir: Body<'gcx>) -> &'gcx Steal<Body<'gcx>> {
1139         self.arena.alloc(Steal::new(mir))
1140     }
1141
1142     pub fn alloc_adt_def(self,
1143                          did: DefId,
1144                          kind: AdtKind,
1145                          variants: IndexVec<VariantIdx, ty::VariantDef>,
1146                          repr: ReprOptions)
1147                          -> &'gcx 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) -> &'gcx 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) -> &'gcx 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) -> &'gcx 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<'gcx>>(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) -> &'gcx middle::lib_features::LibFeatures {
1347         self.get_lib_features(LOCAL_CRATE)
1348     }
1349
1350     pub fn lang_items(self) -> &'gcx 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) -> &'gcx stability::Index<'gcx> {
1389         self.stability_index(LOCAL_CRATE)
1390     }
1391
1392     pub fn crates(self) -> &'gcx [CrateNum] {
1393         self.all_crate_nums(LOCAL_CRATE)
1394     }
1395
1396     pub fn features(self) -> &'gcx 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, 'tcx> {
1670     pub fn encode_metadata(self)
1671         -> EncodedMetadata
1672     {
1673         self.cstore.encode_metadata(self)
1674     }
1675 }
1676
1677 impl<'gcx> GlobalCtxt<'gcx> {
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<'tcx, F, R>(&'gcx self, f: F) -> R
1682     where
1683         F: FnOnce(TyCtxt<'gcx, 'tcx>) -> R,
1684         'gcx: 'tcx,
1685     {
1686         let tcx = TyCtxt {
1687             gcx: self,
1688             interners: &self.local_interners,
1689             dummy: PhantomData,
1690         };
1691         ty::tls::with_related_context(tcx.global_tcx(), |icx| {
1692             let new_icx = ty::tls::ImplicitCtxt {
1693                 tcx,
1694                 query: icx.query.clone(),
1695                 diagnostics: icx.diagnostics,
1696                 layout_depth: icx.layout_depth,
1697                 task_deps: icx.task_deps,
1698             };
1699             ty::tls::enter_context(&new_icx, |_| {
1700                 f(tcx)
1701             })
1702         })
1703     }
1704 }
1705
1706 /// A trait implemented for all `X<'a>` types that can be safely and
1707 /// efficiently converted to `X<'tcx>` as long as they are part of the
1708 /// provided `TyCtxt<'tcx>`.
1709 /// This can be done, for example, for `Ty<'tcx>` or `SubstsRef<'tcx>`
1710 /// by looking them up in their respective interners.
1711 ///
1712 /// However, this is still not the best implementation as it does
1713 /// need to compare the components, even for interned values.
1714 /// It would be more efficient if `TypedArena` provided a way to
1715 /// determine whether the address is in the allocated range.
1716 ///
1717 /// None is returned if the value or one of the components is not part
1718 /// of the provided context.
1719 /// For `Ty`, `None` can be returned if either the type interner doesn't
1720 /// contain the `TyKind` key or if the address of the interned
1721 /// pointer differs. The latter case is possible if a primitive type,
1722 /// e.g., `()` or `u8`, was interned in a different context.
1723 pub trait Lift<'tcx>: fmt::Debug {
1724     type Lifted: fmt::Debug + 'tcx;
1725     fn lift_to_tcx<'gcx>(&self, tcx: TyCtxt<'gcx, 'tcx>) -> Option<Self::Lifted>;
1726 }
1727
1728
1729 macro_rules! nop_lift {
1730     ($ty:ty => $lifted:ty) => {
1731         impl<'a, 'tcx> Lift<'tcx> for $ty {
1732                     type Lifted = $lifted;
1733                     fn lift_to_tcx<'gcx>(&self, tcx: TyCtxt<'gcx, 'tcx>) -> Option<Self::Lifted> {
1734                         if tcx.interners.arena.in_arena(*self as *const _) {
1735                             return Some(unsafe { mem::transmute(*self) });
1736                         }
1737                         // Also try in the global tcx if we're not that.
1738                         if !tcx.is_global() {
1739                             self.lift_to_tcx(tcx.global_tcx())
1740                         } else {
1741                             None
1742                         }
1743                     }
1744                 }
1745     };
1746 }
1747
1748 macro_rules! nop_list_lift {
1749     ($ty:ty => $lifted:ty) => {
1750         impl<'a, 'tcx> Lift<'tcx> for &'a List<$ty> {
1751                     type Lifted = &'tcx List<$lifted>;
1752                     fn lift_to_tcx<'gcx>(&self, tcx: TyCtxt<'gcx, 'tcx>) -> Option<Self::Lifted> {
1753                         if self.is_empty() {
1754                             return Some(List::empty());
1755                         }
1756                         if tcx.interners.arena.in_arena(*self as *const _) {
1757                             return Some(unsafe { mem::transmute(*self) });
1758                         }
1759                         // Also try in the global tcx if we're not that.
1760                         if !tcx.is_global() {
1761                             self.lift_to_tcx(tcx.global_tcx())
1762                         } else {
1763                             None
1764                         }
1765                     }
1766                 }
1767     };
1768 }
1769
1770 nop_lift!{Ty<'a> => Ty<'tcx>}
1771 nop_lift!{Region<'a> => Region<'tcx>}
1772 nop_lift!{Goal<'a> => Goal<'tcx>}
1773 nop_lift!{&'a Const<'a> => &'tcx Const<'tcx>}
1774
1775 nop_list_lift!{Goal<'a> => Goal<'tcx>}
1776 nop_list_lift!{Clause<'a> => Clause<'tcx>}
1777 nop_list_lift!{Ty<'a> => Ty<'tcx>}
1778 nop_list_lift!{ExistentialPredicate<'a> => ExistentialPredicate<'tcx>}
1779 nop_list_lift!{Predicate<'a> => Predicate<'tcx>}
1780 nop_list_lift!{CanonicalVarInfo => CanonicalVarInfo}
1781 nop_list_lift!{ProjectionKind => ProjectionKind}
1782
1783 // this is the impl for `&'a InternalSubsts<'a>`
1784 nop_list_lift!{Kind<'a> => Kind<'tcx>}
1785
1786 pub mod tls {
1787     use super::{GlobalCtxt, TyCtxt, ptr_eq};
1788
1789     use std::fmt;
1790     use std::mem;
1791     use std::marker::PhantomData;
1792     use syntax_pos;
1793     use crate::ty::query;
1794     use errors::{Diagnostic, TRACK_DIAGNOSTICS};
1795     use rustc_data_structures::OnDrop;
1796     use rustc_data_structures::sync::{self, Lrc, Lock};
1797     use rustc_data_structures::thin_vec::ThinVec;
1798     use crate::dep_graph::TaskDeps;
1799
1800     #[cfg(not(parallel_compiler))]
1801     use std::cell::Cell;
1802
1803     #[cfg(parallel_compiler)]
1804     use rustc_rayon_core as rayon_core;
1805
1806     /// This is the implicit state of rustc. It contains the current
1807     /// TyCtxt and query. It is updated when creating a local interner or
1808     /// executing a new query. Whenever there's a TyCtxt value available
1809     /// you should also have access to an ImplicitCtxt through the functions
1810     /// in this module.
1811     #[derive(Clone)]
1812     pub struct ImplicitCtxt<'a, 'gcx: 'tcx, 'tcx> {
1813         /// The current TyCtxt. Initially created by `enter_global` and updated
1814         /// by `enter_local` with a new local interner
1815         pub tcx: TyCtxt<'gcx, 'tcx>,
1816
1817         /// The current query job, if any. This is updated by JobOwner::start in
1818         /// ty::query::plumbing when executing a query
1819         pub query: Option<Lrc<query::QueryJob<'gcx>>>,
1820
1821         /// Where to store diagnostics for the current query job, if any.
1822         /// This is updated by JobOwner::start in ty::query::plumbing when executing a query
1823         pub diagnostics: Option<&'a Lock<ThinVec<Diagnostic>>>,
1824
1825         /// Used to prevent layout from recursing too deeply.
1826         pub layout_depth: usize,
1827
1828         /// The current dep graph task. This is used to add dependencies to queries
1829         /// when executing them
1830         pub task_deps: Option<&'a Lock<TaskDeps>>,
1831     }
1832
1833     /// Sets Rayon's thread local variable which is preserved for Rayon jobs
1834     /// to `value` during the call to `f`. It is restored to its previous value after.
1835     /// This is used to set the pointer to the new ImplicitCtxt.
1836     #[cfg(parallel_compiler)]
1837     #[inline]
1838     fn set_tlv<F: FnOnce() -> R, R>(value: usize, f: F) -> R {
1839         rayon_core::tlv::with(value, f)
1840     }
1841
1842     /// Gets Rayon's thread local variable which is preserved for Rayon jobs.
1843     /// This is used to get the pointer to the current ImplicitCtxt.
1844     #[cfg(parallel_compiler)]
1845     #[inline]
1846     fn get_tlv() -> usize {
1847         rayon_core::tlv::get()
1848     }
1849
1850     #[cfg(not(parallel_compiler))]
1851     thread_local! {
1852         /// A thread local variable which stores a pointer to the current ImplicitCtxt.
1853         static TLV: Cell<usize> = Cell::new(0);
1854     }
1855
1856     /// Sets TLV to `value` during the call to `f`.
1857     /// It is restored to its previous value after.
1858     /// This is used to set the pointer to the new ImplicitCtxt.
1859     #[cfg(not(parallel_compiler))]
1860     #[inline]
1861     fn set_tlv<F: FnOnce() -> R, R>(value: usize, f: F) -> R {
1862         let old = get_tlv();
1863         let _reset = OnDrop(move || TLV.with(|tlv| tlv.set(old)));
1864         TLV.with(|tlv| tlv.set(value));
1865         f()
1866     }
1867
1868     /// This is used to get the pointer to the current ImplicitCtxt.
1869     #[cfg(not(parallel_compiler))]
1870     fn get_tlv() -> usize {
1871         TLV.with(|tlv| tlv.get())
1872     }
1873
1874     /// This is a callback from libsyntax as it cannot access the implicit state
1875     /// in librustc otherwise
1876     fn span_debug(span: syntax_pos::Span, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1877         with_opt(|tcx| {
1878             if let Some(tcx) = tcx {
1879                 write!(f, "{}", tcx.sess.source_map().span_to_string(span))
1880             } else {
1881                 syntax_pos::default_span_debug(span, f)
1882             }
1883         })
1884     }
1885
1886     /// This is a callback from libsyntax as it cannot access the implicit state
1887     /// in librustc otherwise. It is used to when diagnostic messages are
1888     /// emitted and stores them in the current query, if there is one.
1889     fn track_diagnostic(diagnostic: &Diagnostic) {
1890         with_context_opt(|icx| {
1891             if let Some(icx) = icx {
1892                 if let Some(ref diagnostics) = icx.diagnostics {
1893                     let mut diagnostics = diagnostics.lock();
1894                     diagnostics.extend(Some(diagnostic.clone()));
1895                 }
1896             }
1897         })
1898     }
1899
1900     /// Sets up the callbacks from libsyntax on the current thread
1901     pub fn with_thread_locals<F, R>(f: F) -> R
1902         where F: FnOnce() -> R
1903     {
1904         syntax_pos::SPAN_DEBUG.with(|span_dbg| {
1905             let original_span_debug = span_dbg.get();
1906             span_dbg.set(span_debug);
1907
1908             let _on_drop = OnDrop(move || {
1909                 span_dbg.set(original_span_debug);
1910             });
1911
1912             TRACK_DIAGNOSTICS.with(|current| {
1913                 let original = current.get();
1914                 current.set(track_diagnostic);
1915
1916                 let _on_drop = OnDrop(move || {
1917                     current.set(original);
1918                 });
1919
1920                 f()
1921             })
1922         })
1923     }
1924
1925     /// Sets `context` as the new current ImplicitCtxt for the duration of the function `f`
1926     #[inline]
1927     pub fn enter_context<'a, 'gcx: 'tcx, 'tcx, F, R>(context: &ImplicitCtxt<'a, 'gcx, 'tcx>,
1928                                                      f: F) -> R
1929         where F: FnOnce(&ImplicitCtxt<'a, 'gcx, 'tcx>) -> R
1930     {
1931         set_tlv(context as *const _ as usize, || {
1932             f(&context)
1933         })
1934     }
1935
1936     /// Enters GlobalCtxt by setting up libsyntax callbacks and
1937     /// creating a initial TyCtxt and ImplicitCtxt.
1938     /// This happens once per rustc session and TyCtxts only exists
1939     /// inside the `f` function.
1940     pub fn enter_global<'gcx, F, R>(gcx: &'gcx GlobalCtxt<'gcx>, f: F) -> R
1941     where
1942         F: FnOnce(TyCtxt<'gcx, 'gcx>) -> R,
1943     {
1944         // Update GCX_PTR to indicate there's a GlobalCtxt available
1945         GCX_PTR.with(|lock| {
1946             *lock.lock() = gcx as *const _ as usize;
1947         });
1948         // Set GCX_PTR back to 0 when we exit
1949         let _on_drop = OnDrop(move || {
1950             GCX_PTR.with(|lock| *lock.lock() = 0);
1951         });
1952
1953         let tcx = TyCtxt {
1954             gcx,
1955             interners: &gcx.global_interners,
1956             dummy: PhantomData,
1957         };
1958         let icx = ImplicitCtxt {
1959             tcx,
1960             query: None,
1961             diagnostics: None,
1962             layout_depth: 0,
1963             task_deps: None,
1964         };
1965         enter_context(&icx, |_| {
1966             f(tcx)
1967         })
1968     }
1969
1970     scoped_thread_local! {
1971         /// Stores a pointer to the GlobalCtxt if one is available.
1972         /// This is used to access the GlobalCtxt in the deadlock handler given to Rayon.
1973         pub static GCX_PTR: Lock<usize>
1974     }
1975
1976     /// Creates a TyCtxt and ImplicitCtxt based on the GCX_PTR thread local.
1977     /// This is used in the deadlock handler.
1978     pub unsafe fn with_global<F, R>(f: F) -> R
1979     where
1980         F: for<'gcx, 'tcx> FnOnce(TyCtxt<'gcx, 'tcx>) -> R,
1981     {
1982         let gcx = GCX_PTR.with(|lock| *lock.lock());
1983         assert!(gcx != 0);
1984         let gcx = &*(gcx as *const GlobalCtxt<'_>);
1985         let tcx = TyCtxt {
1986             gcx,
1987             interners: &gcx.global_interners,
1988             dummy: PhantomData,
1989         };
1990         let icx = ImplicitCtxt {
1991             query: None,
1992             diagnostics: None,
1993             tcx,
1994             layout_depth: 0,
1995             task_deps: None,
1996         };
1997         enter_context(&icx, |_| f(tcx))
1998     }
1999
2000     /// Allows access to the current ImplicitCtxt in a closure if one is available
2001     #[inline]
2002     pub fn with_context_opt<F, R>(f: F) -> R
2003         where F: for<'a, 'gcx, 'tcx> FnOnce(Option<&ImplicitCtxt<'a, 'gcx, '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 F: for<'a, 'gcx, 'tcx> FnOnce(&ImplicitCtxt<'a, 'gcx, 'tcx>) -> R
2022     {
2023         with_context_opt(|opt_context| f(opt_context.expect("no ImplicitCtxt stored in tls")))
2024     }
2025
2026     /// Allows access to the current ImplicitCtxt whose tcx field has the same global
2027     /// interner as the tcx argument passed in. This means the closure is given an ImplicitCtxt
2028     /// with the same 'gcx lifetime as the TyCtxt passed in.
2029     /// This will panic if you pass it a TyCtxt which has a different global interner from
2030     /// the current ImplicitCtxt's tcx field.
2031     #[inline]
2032     pub fn with_related_context<'gcx, 'tcx1, F, R>(tcx: TyCtxt<'gcx, 'tcx1>, f: F) -> R
2033     where
2034         F: for<'b, 'tcx2> FnOnce(&ImplicitCtxt<'b, 'gcx, 'tcx2>) -> R,
2035     {
2036         with_context(|context| {
2037             unsafe {
2038                 assert!(ptr_eq(context.tcx.gcx, tcx.gcx));
2039                 let context: &ImplicitCtxt<'_, '_, '_> = mem::transmute(context);
2040                 f(context)
2041             }
2042         })
2043     }
2044
2045     /// Allows access to the current ImplicitCtxt whose tcx field has the same global
2046     /// interner and local interner as the tcx argument passed in. This means the closure
2047     /// is given an ImplicitCtxt with the same 'tcx and 'gcx lifetimes as the TyCtxt passed in.
2048     /// This will panic if you pass it a TyCtxt which has a different global interner or
2049     /// a different local interner from the current ImplicitCtxt's tcx field.
2050     #[inline]
2051     pub fn with_fully_related_context<'gcx, 'tcx, F, R>(tcx: TyCtxt<'gcx, 'tcx>, f: F) -> R
2052     where
2053         F: for<'b> FnOnce(&ImplicitCtxt<'b, 'gcx, 'tcx>) -> R,
2054     {
2055         with_context(|context| {
2056             unsafe {
2057                 assert!(ptr_eq(context.tcx.gcx, tcx.gcx));
2058                 assert!(ptr_eq(context.tcx.interners, tcx.interners));
2059                 let context: &ImplicitCtxt<'_, '_, '_> = mem::transmute(context);
2060                 f(context)
2061             }
2062         })
2063     }
2064
2065     /// Allows access to the TyCtxt in the current ImplicitCtxt.
2066     /// Panics if there is no ImplicitCtxt available
2067     #[inline]
2068     pub fn with<F, R>(f: F) -> R
2069     where
2070         F: for<'gcx, 'tcx> FnOnce(TyCtxt<'gcx, 'tcx>) -> R,
2071     {
2072         with_context(|context| f(context.tcx))
2073     }
2074
2075     /// Allows access to the TyCtxt in the current ImplicitCtxt.
2076     /// The closure is passed None if there is no ImplicitCtxt available
2077     #[inline]
2078     pub fn with_opt<F, R>(f: F) -> R
2079     where
2080         F: for<'gcx, 'tcx> FnOnce(Option<TyCtxt<'gcx, 'tcx>>) -> R,
2081     {
2082         with_context_opt(|opt_context| f(opt_context.map(|context| context.tcx)))
2083     }
2084 }
2085
2086 macro_rules! sty_debug_print {
2087     ($ctxt: expr, $($variant: ident),*) => {{
2088         // curious inner module to allow variant names to be used as
2089         // variable names.
2090         #[allow(non_snake_case)]
2091         mod inner {
2092             use crate::ty::{self, TyCtxt};
2093             use crate::ty::context::Interned;
2094
2095             #[derive(Copy, Clone)]
2096             struct DebugStat {
2097                 total: usize,
2098                 lt_infer: usize,
2099                 ty_infer: usize,
2100                 ct_infer: usize,
2101                 all_infer: usize,
2102             }
2103
2104             pub fn go(tcx: TyCtxt<'_, '_>) {
2105                 let mut total = DebugStat {
2106                     total: 0,
2107                     lt_infer: 0,
2108                     ty_infer: 0,
2109                     ct_infer: 0,
2110                     all_infer: 0,
2111                 };
2112                 $(let mut $variant = total;)*
2113
2114                 for &Interned(t) in tcx.interners.type_.borrow().keys() {
2115                     let variant = match t.sty {
2116                         ty::Bool | ty::Char | ty::Int(..) | ty::Uint(..) |
2117                             ty::Float(..) | ty::Str | ty::Never => continue,
2118                         ty::Error => /* unimportant */ continue,
2119                         $(ty::$variant(..) => &mut $variant,)*
2120                     };
2121                     let lt = t.flags.intersects(ty::TypeFlags::HAS_RE_INFER);
2122                     let ty = t.flags.intersects(ty::TypeFlags::HAS_TY_INFER);
2123                     let ct = t.flags.intersects(ty::TypeFlags::HAS_CT_INFER);
2124
2125                     variant.total += 1;
2126                     total.total += 1;
2127                     if lt { total.lt_infer += 1; variant.lt_infer += 1 }
2128                     if ty { total.ty_infer += 1; variant.ty_infer += 1 }
2129                     if ct { total.ct_infer += 1; variant.ct_infer += 1 }
2130                     if lt && ty && ct { total.all_infer += 1; variant.all_infer += 1 }
2131                 }
2132                 println!("Ty interner             total           ty lt ct all");
2133                 $(println!("    {:18}: {uses:6} {usespc:4.1}%, \
2134                             {ty:4.1}% {lt:5.1}% {ct:4.1}% {all:4.1}%",
2135                     stringify!($variant),
2136                     uses = $variant.total,
2137                     usespc = $variant.total as f64 * 100.0 / total.total as f64,
2138                     ty = $variant.ty_infer as f64 * 100.0  / total.total as f64,
2139                     lt = $variant.lt_infer as f64 * 100.0  / total.total as f64,
2140                     ct = $variant.ct_infer as f64 * 100.0  / total.total as f64,
2141                     all = $variant.all_infer as f64 * 100.0  / total.total as f64);
2142                 )*
2143                 println!("                  total {uses:6}        \
2144                           {ty:4.1}% {lt:5.1}% {ct:4.1}% {all:4.1}%",
2145                     uses = total.total,
2146                     ty = total.ty_infer as f64 * 100.0  / total.total as f64,
2147                     lt = total.lt_infer as f64 * 100.0  / total.total as f64,
2148                     ct = total.ct_infer as f64 * 100.0  / total.total as f64,
2149                     all = total.all_infer as f64 * 100.0  / total.total as f64)
2150             }
2151         }
2152
2153         inner::go($ctxt)
2154     }}
2155 }
2156
2157 impl<'tcx> TyCtxt<'tcx, 'tcx> {
2158     pub fn print_debug_stats(self) {
2159         sty_debug_print!(
2160             self,
2161             Adt, Array, Slice, RawPtr, Ref, FnDef, FnPtr, Placeholder,
2162             Generator, GeneratorWitness, Dynamic, Closure, Tuple, Bound,
2163             Param, Infer, UnnormalizedProjection, Projection, Opaque, Foreign);
2164
2165         println!("InternalSubsts interner: #{}", self.interners.substs.borrow().len());
2166         println!("Region interner: #{}", self.interners.region.borrow().len());
2167         println!("Stability interner: #{}", self.stability_interner.borrow().len());
2168         println!("Allocation interner: #{}", self.allocation_interner.borrow().len());
2169         println!("Layout interner: #{}", self.layout_interner.borrow().len());
2170     }
2171 }
2172
2173
2174 /// An entry in an interner.
2175 struct Interned<'tcx, T: 'tcx+?Sized>(&'tcx T);
2176
2177 impl<'tcx, T: 'tcx+?Sized> Clone for Interned<'tcx, T> {
2178     fn clone(&self) -> Self {
2179         Interned(self.0)
2180     }
2181 }
2182 impl<'tcx, T: 'tcx+?Sized> Copy for Interned<'tcx, T> {}
2183
2184 // N.B., an `Interned<Ty>` compares and hashes as a sty.
2185 impl<'tcx> PartialEq for Interned<'tcx, TyS<'tcx>> {
2186     fn eq(&self, other: &Interned<'tcx, TyS<'tcx>>) -> bool {
2187         self.0.sty == other.0.sty
2188     }
2189 }
2190
2191 impl<'tcx> Eq for Interned<'tcx, TyS<'tcx>> {}
2192
2193 impl<'tcx> Hash for Interned<'tcx, TyS<'tcx>> {
2194     fn hash<H: Hasher>(&self, s: &mut H) {
2195         self.0.sty.hash(s)
2196     }
2197 }
2198
2199 impl<'tcx: 'lcx, 'lcx> Borrow<TyKind<'lcx>> for Interned<'tcx, TyS<'tcx>> {
2200     fn borrow<'a>(&'a self) -> &'a TyKind<'lcx> {
2201         &self.0.sty
2202     }
2203 }
2204
2205 // N.B., an `Interned<List<T>>` compares and hashes as its elements.
2206 impl<'tcx, T: PartialEq> PartialEq for Interned<'tcx, List<T>> {
2207     fn eq(&self, other: &Interned<'tcx, List<T>>) -> bool {
2208         self.0[..] == other.0[..]
2209     }
2210 }
2211
2212 impl<'tcx, T: Eq> Eq for Interned<'tcx, List<T>> {}
2213
2214 impl<'tcx, T: Hash> Hash for Interned<'tcx, List<T>> {
2215     fn hash<H: Hasher>(&self, s: &mut H) {
2216         self.0[..].hash(s)
2217     }
2218 }
2219
2220 impl<'tcx: 'lcx, 'lcx> Borrow<[Ty<'lcx>]> for Interned<'tcx, List<Ty<'tcx>>> {
2221     fn borrow<'a>(&'a self) -> &'a [Ty<'lcx>] {
2222         &self.0[..]
2223     }
2224 }
2225
2226 impl<'tcx: 'lcx, 'lcx> Borrow<[CanonicalVarInfo]> for Interned<'tcx, List<CanonicalVarInfo>> {
2227     fn borrow<'a>(&'a self) -> &'a [CanonicalVarInfo] {
2228         &self.0[..]
2229     }
2230 }
2231
2232 impl<'tcx: 'lcx, 'lcx> Borrow<[Kind<'lcx>]> for Interned<'tcx, InternalSubsts<'tcx>> {
2233     fn borrow<'a>(&'a self) -> &'a [Kind<'lcx>] {
2234         &self.0[..]
2235     }
2236 }
2237
2238 impl<'tcx> Borrow<[ProjectionKind]>
2239     for Interned<'tcx, List<ProjectionKind>> {
2240     fn borrow<'a>(&'a self) -> &'a [ProjectionKind] {
2241         &self.0[..]
2242     }
2243 }
2244
2245 impl<'tcx> Borrow<RegionKind> for Interned<'tcx, RegionKind> {
2246     fn borrow<'a>(&'a self) -> &'a RegionKind {
2247         &self.0
2248     }
2249 }
2250
2251 impl<'tcx: 'lcx, 'lcx> Borrow<GoalKind<'lcx>> for Interned<'tcx, GoalKind<'tcx>> {
2252     fn borrow<'a>(&'a self) -> &'a GoalKind<'lcx> {
2253         &self.0
2254     }
2255 }
2256
2257 impl<'tcx: 'lcx, 'lcx> Borrow<[ExistentialPredicate<'lcx>]>
2258     for Interned<'tcx, List<ExistentialPredicate<'tcx>>> {
2259     fn borrow<'a>(&'a self) -> &'a [ExistentialPredicate<'lcx>] {
2260         &self.0[..]
2261     }
2262 }
2263
2264 impl<'tcx: 'lcx, 'lcx> Borrow<[Predicate<'lcx>]>
2265     for Interned<'tcx, List<Predicate<'tcx>>> {
2266     fn borrow<'a>(&'a self) -> &'a [Predicate<'lcx>] {
2267         &self.0[..]
2268     }
2269 }
2270
2271 impl<'tcx: 'lcx, 'lcx> Borrow<Const<'lcx>> for Interned<'tcx, Const<'tcx>> {
2272     fn borrow<'a>(&'a self) -> &'a Const<'lcx> {
2273         &self.0
2274     }
2275 }
2276
2277 impl<'tcx: 'lcx, 'lcx> Borrow<[Clause<'lcx>]>
2278 for Interned<'tcx, List<Clause<'tcx>>> {
2279     fn borrow<'a>(&'a self) -> &'a [Clause<'lcx>] {
2280         &self.0[..]
2281     }
2282 }
2283
2284 impl<'tcx: 'lcx, 'lcx> Borrow<[Goal<'lcx>]>
2285 for Interned<'tcx, List<Goal<'tcx>>> {
2286     fn borrow<'a>(&'a self) -> &'a [Goal<'lcx>] {
2287         &self.0[..]
2288     }
2289 }
2290
2291 macro_rules! intern_method {
2292     ($lt_tcx:tt, $name:ident: $method:ident($alloc:ty,
2293                                             $alloc_method:expr,
2294                                             $alloc_to_key:expr,
2295                                             $keep_in_local_tcx:expr) -> $ty:ty) => {
2296         impl<'gcx, $lt_tcx> TyCtxt<'gcx, $lt_tcx> {
2297             pub fn $method(self, v: $alloc) -> &$lt_tcx $ty {
2298                 let key = ($alloc_to_key)(&v);
2299
2300                 let alloc = |v, interners: &'gcx CtxtInterners<'gcx>| {
2301                     // This transmutes $alloc<'tcx> to $alloc<'gcx>
2302                     let v = unsafe {
2303                         mem::transmute(v)
2304                     };
2305                     let i: &$lt_tcx $ty = $alloc_method(&interners.arena, v);
2306                     // Cast to 'gcx
2307                     let i = unsafe { mem::transmute(i) };
2308                     Interned(i)
2309                 };
2310
2311                 // HACK(eddyb) Depend on flags being accurate to
2312                 // determine that all contents are in the global tcx.
2313                 // See comments on Lift for why we can't use that.
2314                 if ($keep_in_local_tcx)(&v) {
2315                     self.interners.$name.borrow_mut().intern_ref(key, || {
2316                         // Make sure we don't end up with inference
2317                         // types/regions in the global tcx.
2318                         if self.is_global() {
2319                             bug!("Attempted to intern `{:?}` which contains \
2320                                 inference types/regions in the global type context",
2321                                 v);
2322                         }
2323
2324                         alloc(v, &self.interners)
2325                     }).0
2326                 } else {
2327                     self.global_interners.$name.borrow_mut().intern_ref(key, || {
2328                         alloc(v, &self.global_interners)
2329                     }).0
2330                 }
2331             }
2332         }
2333     }
2334 }
2335
2336 macro_rules! direct_interners {
2337     ($lt_tcx:tt, $($name:ident: $method:ident($keep_in_local_tcx:expr) -> $ty:ty),+) => {
2338         $(impl<$lt_tcx> PartialEq for Interned<$lt_tcx, $ty> {
2339             fn eq(&self, other: &Self) -> bool {
2340                 self.0 == other.0
2341             }
2342         }
2343
2344         impl<$lt_tcx> Eq for Interned<$lt_tcx, $ty> {}
2345
2346         impl<$lt_tcx> Hash for Interned<$lt_tcx, $ty> {
2347             fn hash<H: Hasher>(&self, s: &mut H) {
2348                 self.0.hash(s)
2349             }
2350         }
2351
2352         intern_method!(
2353             $lt_tcx,
2354             $name: $method($ty,
2355                            |a: &$lt_tcx SyncDroplessArena, v| -> &$lt_tcx $ty { a.alloc(v) },
2356                            |x| x,
2357                            $keep_in_local_tcx) -> $ty);)+
2358     }
2359 }
2360
2361 pub fn keep_local<'tcx, T: ty::TypeFoldable<'tcx>>(x: &T) -> bool {
2362     x.has_type_flags(ty::TypeFlags::KEEP_IN_LOCAL_TCX)
2363 }
2364
2365 direct_interners!('tcx,
2366     region: mk_region(|r: &RegionKind| r.keep_in_local_tcx()) -> RegionKind,
2367     goal: mk_goal(|c: &GoalKind<'_>| keep_local(c)) -> GoalKind<'tcx>,
2368     const_: mk_const(|c: &Const<'_>| keep_local(&c)) -> Const<'tcx>
2369 );
2370
2371 macro_rules! slice_interners {
2372     ($($field:ident: $method:ident($ty:ty)),+) => (
2373         $(intern_method!( 'tcx, $field: $method(
2374             &[$ty],
2375             |a, v| List::from_arena(a, v),
2376             Deref::deref,
2377             |xs: &[$ty]| xs.iter().any(keep_local)) -> List<$ty>);)+
2378     );
2379 }
2380
2381 slice_interners!(
2382     existential_predicates: _intern_existential_predicates(ExistentialPredicate<'tcx>),
2383     predicates: _intern_predicates(Predicate<'tcx>),
2384     type_list: _intern_type_list(Ty<'tcx>),
2385     substs: _intern_substs(Kind<'tcx>),
2386     clauses: _intern_clauses(Clause<'tcx>),
2387     goal_list: _intern_goals(Goal<'tcx>),
2388     projs: _intern_projs(ProjectionKind)
2389 );
2390
2391 // This isn't a perfect fit: CanonicalVarInfo slices are always
2392 // allocated in the global arena, so this `intern_method!` macro is
2393 // overly general.  But we just return false for the code that checks
2394 // whether they belong in the thread-local arena, so no harm done, and
2395 // seems better than open-coding the rest.
2396 intern_method! {
2397     'tcx,
2398     canonical_var_infos: _intern_canonical_var_infos(
2399         &[CanonicalVarInfo],
2400         |a, v| List::from_arena(a, v),
2401         Deref::deref,
2402         |_xs: &[CanonicalVarInfo]| -> bool { false }
2403     ) -> List<CanonicalVarInfo>
2404 }
2405
2406 impl<'gcx, 'tcx> TyCtxt<'gcx, 'tcx> {
2407     /// Given a `fn` type, returns an equivalent `unsafe fn` type;
2408     /// that is, a `fn` type that is equivalent in every way for being
2409     /// unsafe.
2410     pub fn safe_to_unsafe_fn_ty(self, sig: PolyFnSig<'tcx>) -> Ty<'tcx> {
2411         assert_eq!(sig.unsafety(), hir::Unsafety::Normal);
2412         self.mk_fn_ptr(sig.map_bound(|sig| ty::FnSig {
2413             unsafety: hir::Unsafety::Unsafe,
2414             ..sig
2415         }))
2416     }
2417
2418     /// Given a closure signature `sig`, returns an equivalent `fn`
2419     /// type with the same signature. Detuples and so forth -- so
2420     /// e.g., if we have a sig with `Fn<(u32, i32)>` then you would get
2421     /// a `fn(u32, i32)`.
2422     /// `unsafety` determines the unsafety of the `fn` type. If you pass
2423     /// `hir::Unsafety::Unsafe` in the previous example, then you would get
2424     /// an `unsafe fn (u32, i32)`.
2425     /// It cannot convert a closure that requires unsafe.
2426     pub fn coerce_closure_fn_ty(self, sig: PolyFnSig<'tcx>, unsafety: hir::Unsafety) -> Ty<'tcx> {
2427         let converted_sig = sig.map_bound(|s| {
2428             let params_iter = match s.inputs()[0].sty {
2429                 ty::Tuple(params) => {
2430                     params.into_iter().map(|k| k.expect_ty())
2431                 }
2432                 _ => bug!(),
2433             };
2434             self.mk_fn_sig(
2435                 params_iter,
2436                 s.output(),
2437                 s.c_variadic,
2438                 unsafety,
2439                 abi::Abi::Rust,
2440             )
2441         });
2442
2443         self.mk_fn_ptr(converted_sig)
2444     }
2445
2446     #[inline]
2447     pub fn mk_ty(&self, st: TyKind<'tcx>) -> Ty<'tcx> {
2448         CtxtInterners::intern_ty(&self.interners, &self.global_interners, st)
2449     }
2450
2451     pub fn mk_mach_int(self, tm: ast::IntTy) -> Ty<'tcx> {
2452         match tm {
2453             ast::IntTy::Isize   => self.types.isize,
2454             ast::IntTy::I8   => self.types.i8,
2455             ast::IntTy::I16  => self.types.i16,
2456             ast::IntTy::I32  => self.types.i32,
2457             ast::IntTy::I64  => self.types.i64,
2458             ast::IntTy::I128  => self.types.i128,
2459         }
2460     }
2461
2462     pub fn mk_mach_uint(self, tm: ast::UintTy) -> Ty<'tcx> {
2463         match tm {
2464             ast::UintTy::Usize   => self.types.usize,
2465             ast::UintTy::U8   => self.types.u8,
2466             ast::UintTy::U16  => self.types.u16,
2467             ast::UintTy::U32  => self.types.u32,
2468             ast::UintTy::U64  => self.types.u64,
2469             ast::UintTy::U128  => self.types.u128,
2470         }
2471     }
2472
2473     pub fn mk_mach_float(self, tm: ast::FloatTy) -> Ty<'tcx> {
2474         match tm {
2475             ast::FloatTy::F32  => self.types.f32,
2476             ast::FloatTy::F64  => self.types.f64,
2477         }
2478     }
2479
2480     #[inline]
2481     pub fn mk_str(self) -> Ty<'tcx> {
2482         self.mk_ty(Str)
2483     }
2484
2485     #[inline]
2486     pub fn mk_static_str(self) -> Ty<'tcx> {
2487         self.mk_imm_ref(self.lifetimes.re_static, self.mk_str())
2488     }
2489
2490     #[inline]
2491     pub fn mk_adt(self, def: &'tcx AdtDef, substs: SubstsRef<'tcx>) -> Ty<'tcx> {
2492         // take a copy of substs so that we own the vectors inside
2493         self.mk_ty(Adt(def, substs))
2494     }
2495
2496     #[inline]
2497     pub fn mk_foreign(self, def_id: DefId) -> Ty<'tcx> {
2498         self.mk_ty(Foreign(def_id))
2499     }
2500
2501     pub fn mk_box(self, ty: Ty<'tcx>) -> Ty<'tcx> {
2502         let def_id = self.require_lang_item(lang_items::OwnedBoxLangItem);
2503         let adt_def = self.adt_def(def_id);
2504         let substs = InternalSubsts::for_item(self, def_id, |param, substs| {
2505             match param.kind {
2506                 GenericParamDefKind::Lifetime |
2507                 GenericParamDefKind::Const => {
2508                     bug!()
2509                 }
2510                 GenericParamDefKind::Type { has_default, .. } => {
2511                     if param.index == 0 {
2512                         ty.into()
2513                     } else {
2514                         assert!(has_default);
2515                         self.type_of(param.def_id).subst(self, substs).into()
2516                     }
2517                 }
2518             }
2519         });
2520         self.mk_ty(Adt(adt_def, substs))
2521     }
2522
2523     #[inline]
2524     pub fn mk_ptr(self, tm: TypeAndMut<'tcx>) -> Ty<'tcx> {
2525         self.mk_ty(RawPtr(tm))
2526     }
2527
2528     #[inline]
2529     pub fn mk_ref(self, r: Region<'tcx>, tm: TypeAndMut<'tcx>) -> Ty<'tcx> {
2530         self.mk_ty(Ref(r, tm.ty, tm.mutbl))
2531     }
2532
2533     #[inline]
2534     pub fn mk_mut_ref(self, r: Region<'tcx>, ty: Ty<'tcx>) -> Ty<'tcx> {
2535         self.mk_ref(r, TypeAndMut {ty: ty, mutbl: hir::MutMutable})
2536     }
2537
2538     #[inline]
2539     pub fn mk_imm_ref(self, r: Region<'tcx>, ty: Ty<'tcx>) -> Ty<'tcx> {
2540         self.mk_ref(r, TypeAndMut {ty: ty, mutbl: hir::MutImmutable})
2541     }
2542
2543     #[inline]
2544     pub fn mk_mut_ptr(self, ty: Ty<'tcx>) -> Ty<'tcx> {
2545         self.mk_ptr(TypeAndMut {ty: ty, mutbl: hir::MutMutable})
2546     }
2547
2548     #[inline]
2549     pub fn mk_imm_ptr(self, ty: Ty<'tcx>) -> Ty<'tcx> {
2550         self.mk_ptr(TypeAndMut {ty: ty, mutbl: hir::MutImmutable})
2551     }
2552
2553     #[inline]
2554     pub fn mk_nil_ptr(self) -> Ty<'tcx> {
2555         self.mk_imm_ptr(self.mk_unit())
2556     }
2557
2558     #[inline]
2559     pub fn mk_array(self, ty: Ty<'tcx>, n: u64) -> Ty<'tcx> {
2560         self.mk_ty(Array(ty, ty::Const::from_usize(self.global_tcx(), n)))
2561     }
2562
2563     #[inline]
2564     pub fn mk_slice(self, ty: Ty<'tcx>) -> Ty<'tcx> {
2565         self.mk_ty(Slice(ty))
2566     }
2567
2568     #[inline]
2569     pub fn intern_tup(self, ts: &[Ty<'tcx>]) -> Ty<'tcx> {
2570         let kinds: Vec<_> = ts.into_iter().map(|&t| Kind::from(t)).collect();
2571         self.mk_ty(Tuple(self.intern_substs(&kinds)))
2572     }
2573
2574     pub fn mk_tup<I: InternAs<[Ty<'tcx>], Ty<'tcx>>>(self, iter: I) -> I::Output {
2575         iter.intern_with(|ts| {
2576             let kinds: Vec<_> = ts.into_iter().map(|&t| Kind::from(t)).collect();
2577             self.mk_ty(Tuple(self.intern_substs(&kinds)))
2578         })
2579     }
2580
2581     #[inline]
2582     pub fn mk_unit(self) -> Ty<'tcx> {
2583         self.types.unit
2584     }
2585
2586     #[inline]
2587     pub fn mk_diverging_default(self) -> Ty<'tcx> {
2588         if self.features().never_type {
2589             self.types.never
2590         } else {
2591             self.intern_tup(&[])
2592         }
2593     }
2594
2595     #[inline]
2596     pub fn mk_bool(self) -> Ty<'tcx> {
2597         self.mk_ty(Bool)
2598     }
2599
2600     #[inline]
2601     pub fn mk_fn_def(self, def_id: DefId,
2602                      substs: SubstsRef<'tcx>) -> Ty<'tcx> {
2603         self.mk_ty(FnDef(def_id, substs))
2604     }
2605
2606     #[inline]
2607     pub fn mk_fn_ptr(self, fty: PolyFnSig<'tcx>) -> Ty<'tcx> {
2608         self.mk_ty(FnPtr(fty))
2609     }
2610
2611     #[inline]
2612     pub fn mk_dynamic(
2613         self,
2614         obj: ty::Binder<&'tcx List<ExistentialPredicate<'tcx>>>,
2615         reg: ty::Region<'tcx>
2616     ) -> Ty<'tcx> {
2617         self.mk_ty(Dynamic(obj, reg))
2618     }
2619
2620     #[inline]
2621     pub fn mk_projection(self,
2622                          item_def_id: DefId,
2623                          substs: SubstsRef<'tcx>)
2624         -> Ty<'tcx> {
2625             self.mk_ty(Projection(ProjectionTy {
2626                 item_def_id,
2627                 substs,
2628             }))
2629         }
2630
2631     #[inline]
2632     pub fn mk_closure(self, closure_id: DefId, closure_substs: ClosureSubsts<'tcx>)
2633                       -> Ty<'tcx> {
2634         self.mk_ty(Closure(closure_id, closure_substs))
2635     }
2636
2637     #[inline]
2638     pub fn mk_generator(self,
2639                         id: DefId,
2640                         generator_substs: GeneratorSubsts<'tcx>,
2641                         movability: hir::GeneratorMovability)
2642                         -> Ty<'tcx> {
2643         self.mk_ty(Generator(id, generator_substs, movability))
2644     }
2645
2646     #[inline]
2647     pub fn mk_generator_witness(self, types: ty::Binder<&'tcx List<Ty<'tcx>>>) -> Ty<'tcx> {
2648         self.mk_ty(GeneratorWitness(types))
2649     }
2650
2651     #[inline]
2652     pub fn mk_ty_var(self, v: TyVid) -> Ty<'tcx> {
2653         self.mk_ty_infer(TyVar(v))
2654     }
2655
2656     #[inline]
2657     pub fn mk_const_var(self, v: ConstVid<'tcx>, ty: Ty<'tcx>) -> &'tcx Const<'tcx> {
2658         self.mk_const(ty::Const {
2659             val: ConstValue::Infer(InferConst::Var(v)),
2660             ty,
2661         })
2662     }
2663
2664     #[inline]
2665     pub fn mk_int_var(self, v: IntVid) -> Ty<'tcx> {
2666         self.mk_ty_infer(IntVar(v))
2667     }
2668
2669     #[inline]
2670     pub fn mk_float_var(self, v: FloatVid) -> Ty<'tcx> {
2671         self.mk_ty_infer(FloatVar(v))
2672     }
2673
2674     #[inline]
2675     pub fn mk_ty_infer(self, it: InferTy) -> Ty<'tcx> {
2676         self.mk_ty(Infer(it))
2677     }
2678
2679     #[inline]
2680     pub fn mk_const_infer(
2681         self,
2682         ic: InferConst<'tcx>,
2683         ty: Ty<'tcx>,
2684     ) -> &'tcx ty::Const<'tcx> {
2685         self.mk_const(ty::Const {
2686             val: ConstValue::Infer(ic),
2687             ty,
2688         })
2689     }
2690
2691     #[inline]
2692     pub fn mk_ty_param(self, index: u32, name: InternedString) -> Ty<'tcx> {
2693         self.mk_ty(Param(ParamTy { index, name: name }))
2694     }
2695
2696     #[inline]
2697     pub fn mk_const_param(
2698         self,
2699         index: u32,
2700         name: InternedString,
2701         ty: Ty<'tcx>
2702     ) -> &'tcx Const<'tcx> {
2703         self.mk_const(ty::Const {
2704             val: ConstValue::Param(ParamConst { index, name }),
2705             ty,
2706         })
2707     }
2708
2709     #[inline]
2710     pub fn mk_self_type(self) -> Ty<'tcx> {
2711         self.mk_ty_param(0, kw::SelfUpper.as_interned_str())
2712     }
2713
2714     pub fn mk_param_from_def(self, param: &ty::GenericParamDef) -> Kind<'tcx> {
2715         match param.kind {
2716             GenericParamDefKind::Lifetime => {
2717                 self.mk_region(ty::ReEarlyBound(param.to_early_bound_region_data())).into()
2718             }
2719             GenericParamDefKind::Type { .. } => self.mk_ty_param(param.index, param.name).into(),
2720             GenericParamDefKind::Const => {
2721                 self.mk_const_param(param.index, param.name, self.type_of(param.def_id)).into()
2722             }
2723         }
2724     }
2725
2726     #[inline]
2727     pub fn mk_opaque(self, def_id: DefId, substs: SubstsRef<'tcx>) -> Ty<'tcx> {
2728         self.mk_ty(Opaque(def_id, substs))
2729     }
2730
2731     pub fn intern_existential_predicates(self, eps: &[ExistentialPredicate<'tcx>])
2732         -> &'tcx List<ExistentialPredicate<'tcx>> {
2733         assert!(!eps.is_empty());
2734         assert!(eps.windows(2).all(|w| w[0].stable_cmp(self, &w[1]) != Ordering::Greater));
2735         self._intern_existential_predicates(eps)
2736     }
2737
2738     pub fn intern_predicates(self, preds: &[Predicate<'tcx>])
2739         -> &'tcx List<Predicate<'tcx>> {
2740         // FIXME consider asking the input slice to be sorted to avoid
2741         // re-interning permutations, in which case that would be asserted
2742         // here.
2743         if preds.len() == 0 {
2744             // The macro-generated method below asserts we don't intern an empty slice.
2745             List::empty()
2746         } else {
2747             self._intern_predicates(preds)
2748         }
2749     }
2750
2751     pub fn intern_type_list(self, ts: &[Ty<'tcx>]) -> &'tcx List<Ty<'tcx>> {
2752         if ts.len() == 0 {
2753             List::empty()
2754         } else {
2755             self._intern_type_list(ts)
2756         }
2757     }
2758
2759     pub fn intern_substs(self, ts: &[Kind<'tcx>]) -> &'tcx List<Kind<'tcx>> {
2760         if ts.len() == 0 {
2761             List::empty()
2762         } else {
2763             self._intern_substs(ts)
2764         }
2765     }
2766
2767     pub fn intern_projs(self, ps: &[ProjectionKind]) -> &'tcx List<ProjectionKind> {
2768         if ps.len() == 0 {
2769             List::empty()
2770         } else {
2771             self._intern_projs(ps)
2772         }
2773     }
2774
2775     pub fn intern_canonical_var_infos(self, ts: &[CanonicalVarInfo]) -> CanonicalVarInfos<'gcx> {
2776         if ts.len() == 0 {
2777             List::empty()
2778         } else {
2779             self.global_tcx()._intern_canonical_var_infos(ts)
2780         }
2781     }
2782
2783     pub fn intern_clauses(self, ts: &[Clause<'tcx>]) -> Clauses<'tcx> {
2784         if ts.len() == 0 {
2785             List::empty()
2786         } else {
2787             self._intern_clauses(ts)
2788         }
2789     }
2790
2791     pub fn intern_goals(self, ts: &[Goal<'tcx>]) -> Goals<'tcx> {
2792         if ts.len() == 0 {
2793             List::empty()
2794         } else {
2795             self._intern_goals(ts)
2796         }
2797     }
2798
2799     pub fn mk_fn_sig<I>(self,
2800                         inputs: I,
2801                         output: I::Item,
2802                         c_variadic: bool,
2803                         unsafety: hir::Unsafety,
2804                         abi: abi::Abi)
2805         -> <I::Item as InternIteratorElement<Ty<'tcx>, ty::FnSig<'tcx>>>::Output
2806         where I: Iterator,
2807               I::Item: InternIteratorElement<Ty<'tcx>, ty::FnSig<'tcx>>
2808     {
2809         inputs.chain(iter::once(output)).intern_with(|xs| ty::FnSig {
2810             inputs_and_output: self.intern_type_list(xs),
2811             c_variadic, unsafety, abi
2812         })
2813     }
2814
2815     pub fn mk_existential_predicates<I: InternAs<[ExistentialPredicate<'tcx>],
2816                                      &'tcx List<ExistentialPredicate<'tcx>>>>(self, iter: I)
2817                                      -> I::Output {
2818         iter.intern_with(|xs| self.intern_existential_predicates(xs))
2819     }
2820
2821     pub fn mk_predicates<I: InternAs<[Predicate<'tcx>],
2822                                      &'tcx List<Predicate<'tcx>>>>(self, iter: I)
2823                                      -> I::Output {
2824         iter.intern_with(|xs| self.intern_predicates(xs))
2825     }
2826
2827     pub fn mk_type_list<I: InternAs<[Ty<'tcx>],
2828                         &'tcx List<Ty<'tcx>>>>(self, iter: I) -> I::Output {
2829         iter.intern_with(|xs| self.intern_type_list(xs))
2830     }
2831
2832     pub fn mk_substs<I: InternAs<[Kind<'tcx>],
2833                      &'tcx List<Kind<'tcx>>>>(self, iter: I) -> I::Output {
2834         iter.intern_with(|xs| self.intern_substs(xs))
2835     }
2836
2837     pub fn mk_substs_trait(self,
2838                      self_ty: Ty<'tcx>,
2839                      rest: &[Kind<'tcx>])
2840                     -> SubstsRef<'tcx>
2841     {
2842         self.mk_substs(iter::once(self_ty.into()).chain(rest.iter().cloned()))
2843     }
2844
2845     pub fn mk_clauses<I: InternAs<[Clause<'tcx>], Clauses<'tcx>>>(self, iter: I) -> I::Output {
2846         iter.intern_with(|xs| self.intern_clauses(xs))
2847     }
2848
2849     pub fn mk_goals<I: InternAs<[Goal<'tcx>], Goals<'tcx>>>(self, iter: I) -> I::Output {
2850         iter.intern_with(|xs| self.intern_goals(xs))
2851     }
2852
2853     pub fn lint_hir<S: Into<MultiSpan>>(self,
2854                                         lint: &'static Lint,
2855                                         hir_id: HirId,
2856                                         span: S,
2857                                         msg: &str) {
2858         self.struct_span_lint_hir(lint, hir_id, span.into(), msg).emit()
2859     }
2860
2861     pub fn lint_hir_note<S: Into<MultiSpan>>(self,
2862                                              lint: &'static Lint,
2863                                              hir_id: HirId,
2864                                              span: S,
2865                                              msg: &str,
2866                                              note: &str) {
2867         let mut err = self.struct_span_lint_hir(lint, hir_id, span.into(), msg);
2868         err.note(note);
2869         err.emit()
2870     }
2871
2872     pub fn lint_node_note<S: Into<MultiSpan>>(self,
2873                                               lint: &'static Lint,
2874                                               id: hir::HirId,
2875                                               span: S,
2876                                               msg: &str,
2877                                               note: &str) {
2878         let mut err = self.struct_span_lint_hir(lint, id, span.into(), msg);
2879         err.note(note);
2880         err.emit()
2881     }
2882
2883     /// Walks upwards from `id` to find a node which might change lint levels with attributes.
2884     /// It stops at `bound` and just returns it if reached.
2885     pub fn maybe_lint_level_root_bounded(
2886         self,
2887         mut id: hir::HirId,
2888         bound: hir::HirId,
2889     ) -> hir::HirId {
2890         loop {
2891             if id == bound {
2892                 return bound;
2893             }
2894             if lint::maybe_lint_level_root(self, id) {
2895                 return id;
2896             }
2897             let next = self.hir().get_parent_node_by_hir_id(id);
2898             if next == id {
2899                 bug!("lint traversal reached the root of the crate");
2900             }
2901             id = next;
2902         }
2903     }
2904
2905     pub fn lint_level_at_node(
2906         self,
2907         lint: &'static Lint,
2908         mut id: hir::HirId
2909     ) -> (lint::Level, lint::LintSource) {
2910         let sets = self.lint_levels(LOCAL_CRATE);
2911         loop {
2912             if let Some(pair) = sets.level_and_source(lint, id, self.sess) {
2913                 return pair
2914             }
2915             let next = self.hir().get_parent_node_by_hir_id(id);
2916             if next == id {
2917                 bug!("lint traversal reached the root of the crate");
2918             }
2919             id = next;
2920         }
2921     }
2922
2923     pub fn struct_span_lint_hir<S: Into<MultiSpan>>(self,
2924                                                     lint: &'static Lint,
2925                                                     hir_id: HirId,
2926                                                     span: S,
2927                                                     msg: &str)
2928         -> DiagnosticBuilder<'tcx>
2929     {
2930         let (level, src) = self.lint_level_at_node(lint, hir_id);
2931         lint::struct_lint_level(self.sess, lint, level, src, Some(span.into()), msg)
2932     }
2933
2934     pub fn struct_lint_node(self, lint: &'static Lint, id: HirId, msg: &str)
2935         -> DiagnosticBuilder<'tcx>
2936     {
2937         let (level, src) = self.lint_level_at_node(lint, id);
2938         lint::struct_lint_level(self.sess, lint, level, src, None, msg)
2939     }
2940
2941     pub fn in_scope_traits(self, id: HirId) -> Option<&'gcx StableVec<TraitCandidate>> {
2942         self.in_scope_traits_map(id.owner)
2943             .and_then(|map| map.get(&id.local_id))
2944     }
2945
2946     pub fn named_region(self, id: HirId) -> Option<resolve_lifetime::Region> {
2947         self.named_region_map(id.owner)
2948             .and_then(|map| map.get(&id.local_id).cloned())
2949     }
2950
2951     pub fn is_late_bound(self, id: HirId) -> bool {
2952         self.is_late_bound_map(id.owner)
2953             .map(|set| set.contains(&id.local_id))
2954             .unwrap_or(false)
2955     }
2956
2957     pub fn object_lifetime_defaults(self, id: HirId)
2958         -> Option<&'gcx [ObjectLifetimeDefault]>
2959     {
2960         self.object_lifetime_defaults_map(id.owner)
2961             .and_then(|map| map.get(&id.local_id).map(|v| &**v))
2962     }
2963 }
2964
2965 pub trait InternAs<T: ?Sized, R> {
2966     type Output;
2967     fn intern_with<F>(self, f: F) -> Self::Output
2968         where F: FnOnce(&T) -> R;
2969 }
2970
2971 impl<I, T, R, E> InternAs<[T], R> for I
2972     where E: InternIteratorElement<T, R>,
2973           I: Iterator<Item=E> {
2974     type Output = E::Output;
2975     fn intern_with<F>(self, f: F) -> Self::Output
2976         where F: FnOnce(&[T]) -> R {
2977         E::intern_with(self, f)
2978     }
2979 }
2980
2981 pub trait InternIteratorElement<T, R>: Sized {
2982     type Output;
2983     fn intern_with<I: Iterator<Item=Self>, F: FnOnce(&[T]) -> R>(iter: I, f: F) -> Self::Output;
2984 }
2985
2986 impl<T, R> InternIteratorElement<T, R> for T {
2987     type Output = R;
2988     fn intern_with<I: Iterator<Item=Self>, F: FnOnce(&[T]) -> R>(iter: I, f: F) -> Self::Output {
2989         f(&iter.collect::<SmallVec<[_; 8]>>())
2990     }
2991 }
2992
2993 impl<'a, T, R> InternIteratorElement<T, R> for &'a T
2994     where T: Clone + 'a
2995 {
2996     type Output = R;
2997     fn intern_with<I: Iterator<Item=Self>, F: FnOnce(&[T]) -> R>(iter: I, f: F) -> Self::Output {
2998         f(&iter.cloned().collect::<SmallVec<[_; 8]>>())
2999     }
3000 }
3001
3002 impl<T, R, E> InternIteratorElement<T, R> for Result<T, E> {
3003     type Output = Result<R, E>;
3004     fn intern_with<I: Iterator<Item=Self>, F: FnOnce(&[T]) -> R>(iter: I, f: F) -> Self::Output {
3005         Ok(f(&iter.collect::<Result<SmallVec<[_; 8]>, _>>()?))
3006     }
3007 }
3008
3009 // We are comparing types with different invariant lifetimes, so `ptr::eq`
3010 // won't work for us.
3011 fn ptr_eq<T, U>(t: *const T, u: *const U) -> bool {
3012     t as *const () == u as *const ()
3013 }
3014
3015 pub fn provide(providers: &mut ty::query::Providers<'_>) {
3016     providers.in_scope_traits_map = |tcx, id| tcx.gcx.trait_map.get(&id);
3017     providers.module_exports = |tcx, id| tcx.gcx.export_map.get(&id).map(|v| &v[..]);
3018     providers.crate_name = |tcx, id| {
3019         assert_eq!(id, LOCAL_CRATE);
3020         tcx.crate_name
3021     };
3022     providers.get_lib_features = |tcx, id| {
3023         assert_eq!(id, LOCAL_CRATE);
3024         tcx.arena.alloc(middle::lib_features::collect(tcx))
3025     };
3026     providers.get_lang_items = |tcx, id| {
3027         assert_eq!(id, LOCAL_CRATE);
3028         tcx.arena.alloc(middle::lang_items::collect(tcx))
3029     };
3030     providers.maybe_unused_trait_import = |tcx, id| {
3031         tcx.maybe_unused_trait_imports.contains(&id)
3032     };
3033     providers.maybe_unused_extern_crates = |tcx, cnum| {
3034         assert_eq!(cnum, LOCAL_CRATE);
3035         &tcx.maybe_unused_extern_crates[..]
3036     };
3037     providers.names_imported_by_glob_use = |tcx, id| {
3038         assert_eq!(id.krate, LOCAL_CRATE);
3039         Lrc::new(tcx.glob_map.get(&id).cloned().unwrap_or_default())
3040     };
3041
3042     providers.stability_index = |tcx, cnum| {
3043         assert_eq!(cnum, LOCAL_CRATE);
3044         tcx.arena.alloc(stability::Index::new(tcx))
3045     };
3046     providers.lookup_stability = |tcx, id| {
3047         assert_eq!(id.krate, LOCAL_CRATE);
3048         let id = tcx.hir().definitions().def_index_to_hir_id(id.index);
3049         tcx.stability().local_stability(id)
3050     };
3051     providers.lookup_deprecation_entry = |tcx, id| {
3052         assert_eq!(id.krate, LOCAL_CRATE);
3053         let id = tcx.hir().definitions().def_index_to_hir_id(id.index);
3054         tcx.stability().local_deprecation_entry(id)
3055     };
3056     providers.extern_mod_stmt_cnum = |tcx, id| {
3057         let id = tcx.hir().as_local_node_id(id).unwrap();
3058         tcx.cstore.extern_mod_stmt_cnum_untracked(id)
3059     };
3060     providers.all_crate_nums = |tcx, cnum| {
3061         assert_eq!(cnum, LOCAL_CRATE);
3062         tcx.arena.alloc_slice(&tcx.cstore.crates_untracked())
3063     };
3064     providers.postorder_cnums = |tcx, cnum| {
3065         assert_eq!(cnum, LOCAL_CRATE);
3066         tcx.arena.alloc_slice(&tcx.cstore.postorder_cnums_untracked())
3067     };
3068     providers.output_filenames = |tcx, cnum| {
3069         assert_eq!(cnum, LOCAL_CRATE);
3070         tcx.output_filenames.clone()
3071     };
3072     providers.features_query = |tcx, cnum| {
3073         assert_eq!(cnum, LOCAL_CRATE);
3074         tcx.arena.alloc(tcx.sess.features_untracked().clone())
3075     };
3076     providers.is_panic_runtime = |tcx, cnum| {
3077         assert_eq!(cnum, LOCAL_CRATE);
3078         attr::contains_name(tcx.hir().krate_attrs(), sym::panic_runtime)
3079     };
3080     providers.is_compiler_builtins = |tcx, cnum| {
3081         assert_eq!(cnum, LOCAL_CRATE);
3082         attr::contains_name(tcx.hir().krate_attrs(), sym::compiler_builtins)
3083     };
3084 }