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