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