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