]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/src/ty/mod.rs
Auto merge of #95173 - m-ou-se:sys-locks-module, r=dtolnay
[rust.git] / compiler / rustc_middle / src / ty / mod.rs
1 //! Defines how the compiler represents types internally.
2 //!
3 //! Two important entities in this module are:
4 //!
5 //! - [`rustc_middle::ty::Ty`], used to represent the semantics of a type.
6 //! - [`rustc_middle::ty::TyCtxt`], the central data structure in the compiler.
7 //!
8 //! For more information, see ["The `ty` module: representing types"] in the ructc-dev-guide.
9 //!
10 //! ["The `ty` module: representing types"]: https://rustc-dev-guide.rust-lang.org/ty.html
11
12 pub use self::fold::{FallibleTypeFolder, TypeFoldable, TypeFolder, TypeVisitor};
13 pub use self::AssocItemContainer::*;
14 pub use self::BorrowKind::*;
15 pub use self::IntVarValue::*;
16 pub use self::Variance::*;
17 pub use adt::*;
18 pub use assoc::*;
19 pub use generics::*;
20 use rustc_data_structures::fingerprint::Fingerprint;
21 pub use vtable::*;
22
23 use crate::metadata::ModChild;
24 use crate::middle::privacy::AccessLevels;
25 use crate::mir::{Body, GeneratorLayout};
26 use crate::traits::{self, Reveal};
27 use crate::ty;
28 use crate::ty::subst::{GenericArg, InternalSubsts, Subst, SubstsRef};
29 use crate::ty::util::Discr;
30 use rustc_ast as ast;
31 use rustc_attr as attr;
32 use rustc_data_structures::fx::{FxHashMap, FxHashSet, FxIndexMap};
33 use rustc_data_structures::intern::Interned;
34 use rustc_data_structures::stable_hasher::{HashStable, NodeIdHashingMode, StableHasher};
35 use rustc_data_structures::tagged_ptr::CopyTaggedPtr;
36 use rustc_hir as hir;
37 use rustc_hir::def::{CtorKind, CtorOf, DefKind, Res};
38 use rustc_hir::def_id::{CrateNum, DefId, LocalDefId, LocalDefIdMap, CRATE_DEF_INDEX};
39 use rustc_hir::Node;
40 use rustc_macros::HashStable;
41 use rustc_query_system::ich::StableHashingContext;
42 use rustc_session::cstore::CrateStoreDyn;
43 use rustc_span::symbol::{kw, Ident, Symbol};
44 use rustc_span::Span;
45 use rustc_target::abi::Align;
46
47 use std::hash::Hash;
48 use std::ops::ControlFlow;
49 use std::{fmt, str};
50
51 pub use crate::ty::diagnostics::*;
52 pub use rustc_type_ir::InferTy::*;
53 pub use rustc_type_ir::*;
54
55 pub use self::binding::BindingMode;
56 pub use self::binding::BindingMode::*;
57 pub use self::closure::{
58     is_ancestor_or_same_capture, place_to_string_for_capture, BorrowKind, CaptureInfo,
59     CapturedPlace, ClosureKind, MinCaptureInformationMap, MinCaptureList,
60     RootVariableMinCaptureList, UpvarCapture, UpvarCaptureMap, UpvarId, UpvarListMap, UpvarPath,
61     CAPTURE_STRUCT_LOCAL,
62 };
63 pub use self::consts::{
64     Const, ConstInt, ConstKind, ConstS, InferConst, ScalarInt, Unevaluated, ValTree,
65 };
66 pub use self::context::{
67     tls, CanonicalUserType, CanonicalUserTypeAnnotation, CanonicalUserTypeAnnotations,
68     CtxtInterners, DelaySpanBugEmitted, FreeRegionInfo, GeneratorInteriorTypeCause, GlobalCtxt,
69     Lift, OnDiskCache, TyCtxt, TypeckResults, UserType, UserTypeAnnotationIndex,
70 };
71 pub use self::instance::{Instance, InstanceDef};
72 pub use self::list::List;
73 pub use self::sty::BoundRegionKind::*;
74 pub use self::sty::RegionKind::*;
75 pub use self::sty::TyKind::*;
76 pub use self::sty::{
77     Binder, BoundRegion, BoundRegionKind, BoundTy, BoundTyKind, BoundVar, BoundVariableKind,
78     CanonicalPolyFnSig, ClosureSubsts, ClosureSubstsParts, ConstVid, EarlyBoundRegion,
79     ExistentialPredicate, ExistentialProjection, ExistentialTraitRef, FnSig, FreeRegion, GenSig,
80     GeneratorSubsts, GeneratorSubstsParts, InlineConstSubsts, InlineConstSubstsParts, ParamConst,
81     ParamTy, PolyExistentialProjection, PolyExistentialTraitRef, PolyFnSig, PolyGenSig,
82     PolyTraitRef, ProjectionTy, Region, RegionKind, RegionVid, TraitRef, TyKind, TypeAndMut,
83     UpvarSubsts, VarianceDiagInfo,
84 };
85 pub use self::trait_def::TraitDef;
86
87 pub mod _match;
88 pub mod adjustment;
89 pub mod binding;
90 pub mod cast;
91 pub mod codec;
92 pub mod error;
93 pub mod fast_reject;
94 pub mod flags;
95 pub mod fold;
96 pub mod inhabitedness;
97 pub mod layout;
98 pub mod normalize_erasing_regions;
99 pub mod print;
100 pub mod query;
101 pub mod relate;
102 pub mod subst;
103 pub mod trait_def;
104 pub mod util;
105 pub mod vtable;
106 pub mod walk;
107
108 mod adt;
109 mod assoc;
110 mod closure;
111 mod consts;
112 mod context;
113 mod diagnostics;
114 mod erase_regions;
115 mod generics;
116 mod impls_ty;
117 mod instance;
118 mod list;
119 mod structural_impls;
120 mod sty;
121
122 // Data types
123
124 pub type RegisteredTools = FxHashSet<Ident>;
125
126 #[derive(Debug)]
127 pub struct ResolverOutputs {
128     pub definitions: rustc_hir::definitions::Definitions,
129     pub cstore: Box<CrateStoreDyn>,
130     pub visibilities: FxHashMap<LocalDefId, Visibility>,
131     pub access_levels: AccessLevels,
132     pub extern_crate_map: FxHashMap<LocalDefId, CrateNum>,
133     pub maybe_unused_trait_imports: FxHashSet<LocalDefId>,
134     pub maybe_unused_extern_crates: Vec<(LocalDefId, Span)>,
135     pub reexport_map: FxHashMap<LocalDefId, Vec<ModChild>>,
136     pub glob_map: FxHashMap<LocalDefId, FxHashSet<Symbol>>,
137     /// Extern prelude entries. The value is `true` if the entry was introduced
138     /// via `extern crate` item and not `--extern` option or compiler built-in.
139     pub extern_prelude: FxHashMap<Symbol, bool>,
140     pub main_def: Option<MainDefinition>,
141     pub trait_impls: FxIndexMap<DefId, Vec<LocalDefId>>,
142     /// A list of proc macro LocalDefIds, written out in the order in which
143     /// they are declared in the static array generated by proc_macro_harness.
144     pub proc_macros: Vec<LocalDefId>,
145     /// Mapping from ident span to path span for paths that don't exist as written, but that
146     /// exist under `std`. For example, wrote `str::from_utf8` instead of `std::str::from_utf8`.
147     pub confused_type_with_std_module: FxHashMap<Span, Span>,
148     pub registered_tools: RegisteredTools,
149 }
150
151 #[derive(Clone, Copy, Debug)]
152 pub struct MainDefinition {
153     pub res: Res<ast::NodeId>,
154     pub is_import: bool,
155     pub span: Span,
156 }
157
158 impl MainDefinition {
159     pub fn opt_fn_def_id(self) -> Option<DefId> {
160         if let Res::Def(DefKind::Fn, def_id) = self.res { Some(def_id) } else { None }
161     }
162 }
163
164 /// The "header" of an impl is everything outside the body: a Self type, a trait
165 /// ref (in the case of a trait impl), and a set of predicates (from the
166 /// bounds / where-clauses).
167 #[derive(Clone, Debug, TypeFoldable)]
168 pub struct ImplHeader<'tcx> {
169     pub impl_def_id: DefId,
170     pub self_ty: Ty<'tcx>,
171     pub trait_ref: Option<TraitRef<'tcx>>,
172     pub predicates: Vec<Predicate<'tcx>>,
173 }
174
175 #[derive(
176     Copy,
177     Clone,
178     PartialEq,
179     Eq,
180     Hash,
181     TyEncodable,
182     TyDecodable,
183     HashStable,
184     Debug,
185     TypeFoldable
186 )]
187 pub enum ImplPolarity {
188     /// `impl Trait for Type`
189     Positive,
190     /// `impl !Trait for Type`
191     Negative,
192     /// `#[rustc_reservation_impl] impl Trait for Type`
193     ///
194     /// This is a "stability hack", not a real Rust feature.
195     /// See #64631 for details.
196     Reservation,
197 }
198
199 impl ImplPolarity {
200     /// Flips polarity by turning `Positive` into `Negative` and `Negative` into `Positive`.
201     pub fn flip(&self) -> Option<ImplPolarity> {
202         match self {
203             ImplPolarity::Positive => Some(ImplPolarity::Negative),
204             ImplPolarity::Negative => Some(ImplPolarity::Positive),
205             ImplPolarity::Reservation => None,
206         }
207     }
208 }
209
210 impl fmt::Display for ImplPolarity {
211     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
212         match self {
213             Self::Positive => f.write_str("positive"),
214             Self::Negative => f.write_str("negative"),
215             Self::Reservation => f.write_str("reservation"),
216         }
217     }
218 }
219
220 #[derive(Clone, Debug, PartialEq, Eq, Copy, Hash, TyEncodable, TyDecodable, HashStable)]
221 pub enum Visibility {
222     /// Visible everywhere (including in other crates).
223     Public,
224     /// Visible only in the given crate-local module.
225     Restricted(DefId),
226     /// Not visible anywhere in the local crate. This is the visibility of private external items.
227     Invisible,
228 }
229
230 #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, HashStable, TyEncodable, TyDecodable)]
231 pub enum BoundConstness {
232     /// `T: Trait`
233     NotConst,
234     /// `T: ~const Trait`
235     ///
236     /// Requires resolving to const only when we are in a const context.
237     ConstIfConst,
238 }
239
240 impl BoundConstness {
241     /// Reduce `self` and `constness` to two possible combined states instead of four.
242     pub fn and(&mut self, constness: hir::Constness) -> hir::Constness {
243         match (constness, self) {
244             (hir::Constness::Const, BoundConstness::ConstIfConst) => hir::Constness::Const,
245             (_, this) => {
246                 *this = BoundConstness::NotConst;
247                 hir::Constness::NotConst
248             }
249         }
250     }
251 }
252
253 impl fmt::Display for BoundConstness {
254     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
255         match self {
256             Self::NotConst => f.write_str("normal"),
257             Self::ConstIfConst => f.write_str("`~const`"),
258         }
259     }
260 }
261
262 #[derive(
263     Clone,
264     Debug,
265     PartialEq,
266     Eq,
267     Copy,
268     Hash,
269     TyEncodable,
270     TyDecodable,
271     HashStable,
272     TypeFoldable
273 )]
274 pub struct ClosureSizeProfileData<'tcx> {
275     /// Tuple containing the types of closure captures before the feature `capture_disjoint_fields`
276     pub before_feature_tys: Ty<'tcx>,
277     /// Tuple containing the types of closure captures after the feature `capture_disjoint_fields`
278     pub after_feature_tys: Ty<'tcx>,
279 }
280
281 pub trait DefIdTree: Copy {
282     fn parent(self, id: DefId) -> Option<DefId>;
283
284     fn is_descendant_of(self, mut descendant: DefId, ancestor: DefId) -> bool {
285         if descendant.krate != ancestor.krate {
286             return false;
287         }
288
289         while descendant != ancestor {
290             match self.parent(descendant) {
291                 Some(parent) => descendant = parent,
292                 None => return false,
293             }
294         }
295         true
296     }
297 }
298
299 impl<'tcx> DefIdTree for TyCtxt<'tcx> {
300     fn parent(self, id: DefId) -> Option<DefId> {
301         self.def_key(id).parent.map(|index| DefId { index, ..id })
302     }
303 }
304
305 impl Visibility {
306     pub fn from_hir(visibility: &hir::Visibility<'_>, id: hir::HirId, tcx: TyCtxt<'_>) -> Self {
307         match visibility.node {
308             hir::VisibilityKind::Public => Visibility::Public,
309             hir::VisibilityKind::Crate(_) => Visibility::Restricted(DefId::local(CRATE_DEF_INDEX)),
310             hir::VisibilityKind::Restricted { ref path, .. } => match path.res {
311                 // If there is no resolution, `resolve` will have already reported an error, so
312                 // assume that the visibility is public to avoid reporting more privacy errors.
313                 Res::Err => Visibility::Public,
314                 def => Visibility::Restricted(def.def_id()),
315             },
316             hir::VisibilityKind::Inherited => {
317                 Visibility::Restricted(tcx.parent_module(id).to_def_id())
318             }
319         }
320     }
321
322     /// Returns `true` if an item with this visibility is accessible from the given block.
323     pub fn is_accessible_from<T: DefIdTree>(self, module: DefId, tree: T) -> bool {
324         let restriction = match self {
325             // Public items are visible everywhere.
326             Visibility::Public => return true,
327             // Private items from other crates are visible nowhere.
328             Visibility::Invisible => return false,
329             // Restricted items are visible in an arbitrary local module.
330             Visibility::Restricted(other) if other.krate != module.krate => return false,
331             Visibility::Restricted(module) => module,
332         };
333
334         tree.is_descendant_of(module, restriction)
335     }
336
337     /// Returns `true` if this visibility is at least as accessible as the given visibility
338     pub fn is_at_least<T: DefIdTree>(self, vis: Visibility, tree: T) -> bool {
339         let vis_restriction = match vis {
340             Visibility::Public => return self == Visibility::Public,
341             Visibility::Invisible => return true,
342             Visibility::Restricted(module) => module,
343         };
344
345         self.is_accessible_from(vis_restriction, tree)
346     }
347
348     // Returns `true` if this item is visible anywhere in the local crate.
349     pub fn is_visible_locally(self) -> bool {
350         match self {
351             Visibility::Public => true,
352             Visibility::Restricted(def_id) => def_id.is_local(),
353             Visibility::Invisible => false,
354         }
355     }
356
357     pub fn is_public(self) -> bool {
358         matches!(self, Visibility::Public)
359     }
360 }
361
362 /// The crate variances map is computed during typeck and contains the
363 /// variance of every item in the local crate. You should not use it
364 /// directly, because to do so will make your pass dependent on the
365 /// HIR of every item in the local crate. Instead, use
366 /// `tcx.variances_of()` to get the variance for a *particular*
367 /// item.
368 #[derive(HashStable, Debug)]
369 pub struct CrateVariancesMap<'tcx> {
370     /// For each item with generics, maps to a vector of the variance
371     /// of its generics. If an item has no generics, it will have no
372     /// entry.
373     pub variances: FxHashMap<DefId, &'tcx [ty::Variance]>,
374 }
375
376 // Contains information needed to resolve types and (in the future) look up
377 // the types of AST nodes.
378 #[derive(Copy, Clone, PartialEq, Eq, Hash)]
379 pub struct CReaderCacheKey {
380     pub cnum: Option<CrateNum>,
381     pub pos: usize,
382 }
383
384 /// Represents a type.
385 ///
386 /// IMPORTANT:
387 /// - This is a very "dumb" struct (with no derives and no `impls`).
388 /// - Values of this type are always interned and thus unique, and are stored
389 ///   as an `Interned<TyS>`.
390 /// - `Ty` (which contains a reference to a `Interned<TyS>`) or `Interned<TyS>`
391 ///   should be used everywhere instead of `TyS`. In particular, `Ty` has most
392 ///   of the relevant methods.
393 #[derive(PartialEq, Eq, PartialOrd, Ord)]
394 #[allow(rustc::usage_of_ty_tykind)]
395 crate struct TyS<'tcx> {
396     /// This field shouldn't be used directly and may be removed in the future.
397     /// Use `Ty::kind()` instead.
398     kind: TyKind<'tcx>,
399
400     /// This field provides fast access to information that is also contained
401     /// in `kind`.
402     ///
403     /// This field shouldn't be used directly and may be removed in the future.
404     /// Use `Ty::flags()` instead.
405     flags: TypeFlags,
406
407     /// This field provides fast access to information that is also contained
408     /// in `kind`.
409     ///
410     /// This is a kind of confusing thing: it stores the smallest
411     /// binder such that
412     ///
413     /// (a) the binder itself captures nothing but
414     /// (b) all the late-bound things within the type are captured
415     ///     by some sub-binder.
416     ///
417     /// So, for a type without any late-bound things, like `u32`, this
418     /// will be *innermost*, because that is the innermost binder that
419     /// captures nothing. But for a type `&'D u32`, where `'D` is a
420     /// late-bound region with De Bruijn index `D`, this would be `D + 1`
421     /// -- the binder itself does not capture `D`, but `D` is captured
422     /// by an inner binder.
423     ///
424     /// We call this concept an "exclusive" binder `D` because all
425     /// De Bruijn indices within the type are contained within `0..D`
426     /// (exclusive).
427     outer_exclusive_binder: ty::DebruijnIndex,
428
429     /// The stable hash of the type. This way hashing of types will not have to work
430     /// on the address of the type anymore, but can instead just read this field
431     stable_hash: Fingerprint,
432 }
433
434 // `TyS` is used a lot. Make sure it doesn't unintentionally get bigger.
435 #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
436 static_assert_size!(TyS<'_>, 56);
437
438 /// Use this rather than `TyS`, whenever possible.
439 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
440 #[rustc_diagnostic_item = "Ty"]
441 #[rustc_pass_by_value]
442 pub struct Ty<'tcx>(Interned<'tcx, TyS<'tcx>>);
443
444 // Statics only used for internal testing.
445 pub static BOOL_TY: Ty<'static> = Ty(Interned::new_unchecked(&BOOL_TYS));
446 static BOOL_TYS: TyS<'static> = TyS {
447     kind: ty::Bool,
448     flags: TypeFlags::empty(),
449     outer_exclusive_binder: DebruijnIndex::from_usize(0),
450     stable_hash: Fingerprint::ZERO,
451 };
452
453 impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for Ty<'tcx> {
454     fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
455         let TyS {
456             kind,
457
458             // The other fields just provide fast access to information that is
459             // also contained in `kind`, so no need to hash them.
460             flags: _,
461
462             outer_exclusive_binder: _,
463
464             stable_hash,
465         } = self.0.0;
466
467         if *stable_hash == Fingerprint::ZERO {
468             // No cached hash available. This can only mean that incremental is disabled.
469             // We don't cache stable hashes in non-incremental mode, because they are used
470             // so rarely that the performance actually suffers.
471
472             let stable_hash: Fingerprint = {
473                 let mut hasher = StableHasher::new();
474                 hcx.while_hashing_spans(false, |hcx| {
475                     hcx.with_node_id_hashing_mode(NodeIdHashingMode::HashDefPath, |hcx| {
476                         kind.hash_stable(hcx, &mut hasher)
477                     })
478                 });
479                 hasher.finish()
480             };
481             stable_hash.hash_stable(hcx, hasher);
482         } else {
483             stable_hash.hash_stable(hcx, hasher);
484         }
485     }
486 }
487
488 impl ty::EarlyBoundRegion {
489     /// Does this early bound region have a name? Early bound regions normally
490     /// always have names except when using anonymous lifetimes (`'_`).
491     pub fn has_name(&self) -> bool {
492         self.name != kw::UnderscoreLifetime
493     }
494 }
495
496 /// Represents a predicate.
497 ///
498 /// See comments on `TyS`, which apply here too (albeit for
499 /// `PredicateS`/`Predicate` rather than `TyS`/`Ty`).
500 #[derive(Debug)]
501 crate struct PredicateS<'tcx> {
502     kind: Binder<'tcx, PredicateKind<'tcx>>,
503     flags: TypeFlags,
504     /// See the comment for the corresponding field of [TyS].
505     outer_exclusive_binder: ty::DebruijnIndex,
506 }
507
508 // This type is used a lot. Make sure it doesn't unintentionally get bigger.
509 #[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
510 static_assert_size!(PredicateS<'_>, 56);
511
512 /// Use this rather than `PredicateS`, whenever possible.
513 #[derive(Clone, Copy, PartialEq, Eq, Hash)]
514 #[rustc_pass_by_value]
515 pub struct Predicate<'tcx>(Interned<'tcx, PredicateS<'tcx>>);
516
517 impl<'tcx> Predicate<'tcx> {
518     /// Gets the inner `Binder<'tcx, PredicateKind<'tcx>>`.
519     #[inline]
520     pub fn kind(self) -> Binder<'tcx, PredicateKind<'tcx>> {
521         self.0.kind
522     }
523
524     #[inline(always)]
525     pub fn flags(self) -> TypeFlags {
526         self.0.flags
527     }
528
529     #[inline(always)]
530     pub fn outer_exclusive_binder(self) -> DebruijnIndex {
531         self.0.outer_exclusive_binder
532     }
533
534     /// Flips the polarity of a Predicate.
535     ///
536     /// Given `T: Trait` predicate it returns `T: !Trait` and given `T: !Trait` returns `T: Trait`.
537     pub fn flip_polarity(self, tcx: TyCtxt<'tcx>) -> Option<Predicate<'tcx>> {
538         let kind = self
539             .kind()
540             .map_bound(|kind| match kind {
541                 PredicateKind::Trait(TraitPredicate { trait_ref, constness, polarity }) => {
542                     Some(PredicateKind::Trait(TraitPredicate {
543                         trait_ref,
544                         constness,
545                         polarity: polarity.flip()?,
546                     }))
547                 }
548
549                 _ => None,
550             })
551             .transpose()?;
552
553         Some(tcx.mk_predicate(kind))
554     }
555 }
556
557 impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for Predicate<'tcx> {
558     fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
559         let PredicateS {
560             ref kind,
561
562             // The other fields just provide fast access to information that is
563             // also contained in `kind`, so no need to hash them.
564             flags: _,
565             outer_exclusive_binder: _,
566         } = self.0.0;
567
568         kind.hash_stable(hcx, hasher);
569     }
570 }
571
572 #[derive(Clone, Copy, PartialEq, Eq, Hash, TyEncodable, TyDecodable)]
573 #[derive(HashStable, TypeFoldable)]
574 pub enum PredicateKind<'tcx> {
575     /// Corresponds to `where Foo: Bar<A, B, C>`. `Foo` here would be
576     /// the `Self` type of the trait reference and `A`, `B`, and `C`
577     /// would be the type parameters.
578     Trait(TraitPredicate<'tcx>),
579
580     /// `where 'a: 'b`
581     RegionOutlives(RegionOutlivesPredicate<'tcx>),
582
583     /// `where T: 'a`
584     TypeOutlives(TypeOutlivesPredicate<'tcx>),
585
586     /// `where <T as TraitRef>::Name == X`, approximately.
587     /// See the `ProjectionPredicate` struct for details.
588     Projection(ProjectionPredicate<'tcx>),
589
590     /// No syntax: `T` well-formed.
591     WellFormed(GenericArg<'tcx>),
592
593     /// Trait must be object-safe.
594     ObjectSafe(DefId),
595
596     /// No direct syntax. May be thought of as `where T: FnFoo<...>`
597     /// for some substitutions `...` and `T` being a closure type.
598     /// Satisfied (or refuted) once we know the closure's kind.
599     ClosureKind(DefId, SubstsRef<'tcx>, ClosureKind),
600
601     /// `T1 <: T2`
602     ///
603     /// This obligation is created most often when we have two
604     /// unresolved type variables and hence don't have enough
605     /// information to process the subtyping obligation yet.
606     Subtype(SubtypePredicate<'tcx>),
607
608     /// `T1` coerced to `T2`
609     ///
610     /// Like a subtyping obligation, this is created most often
611     /// when we have two unresolved type variables and hence
612     /// don't have enough information to process the coercion
613     /// obligation yet. At the moment, we actually process coercions
614     /// very much like subtyping and don't handle the full coercion
615     /// logic.
616     Coerce(CoercePredicate<'tcx>),
617
618     /// Constant initializer must evaluate successfully.
619     ConstEvaluatable(ty::Unevaluated<'tcx, ()>),
620
621     /// Constants must be equal. The first component is the const that is expected.
622     ConstEquate(Const<'tcx>, Const<'tcx>),
623
624     /// Represents a type found in the environment that we can use for implied bounds.
625     ///
626     /// Only used for Chalk.
627     TypeWellFormedFromEnv(Ty<'tcx>),
628 }
629
630 /// The crate outlives map is computed during typeck and contains the
631 /// outlives of every item in the local crate. You should not use it
632 /// directly, because to do so will make your pass dependent on the
633 /// HIR of every item in the local crate. Instead, use
634 /// `tcx.inferred_outlives_of()` to get the outlives for a *particular*
635 /// item.
636 #[derive(HashStable, Debug)]
637 pub struct CratePredicatesMap<'tcx> {
638     /// For each struct with outlive bounds, maps to a vector of the
639     /// predicate of its outlive bounds. If an item has no outlives
640     /// bounds, it will have no entry.
641     pub predicates: FxHashMap<DefId, &'tcx [(Predicate<'tcx>, Span)]>,
642 }
643
644 impl<'tcx> Predicate<'tcx> {
645     /// Performs a substitution suitable for going from a
646     /// poly-trait-ref to supertraits that must hold if that
647     /// poly-trait-ref holds. This is slightly different from a normal
648     /// substitution in terms of what happens with bound regions. See
649     /// lengthy comment below for details.
650     pub fn subst_supertrait(
651         self,
652         tcx: TyCtxt<'tcx>,
653         trait_ref: &ty::PolyTraitRef<'tcx>,
654     ) -> Predicate<'tcx> {
655         // The interaction between HRTB and supertraits is not entirely
656         // obvious. Let me walk you (and myself) through an example.
657         //
658         // Let's start with an easy case. Consider two traits:
659         //
660         //     trait Foo<'a>: Bar<'a,'a> { }
661         //     trait Bar<'b,'c> { }
662         //
663         // Now, if we have a trait reference `for<'x> T: Foo<'x>`, then
664         // we can deduce that `for<'x> T: Bar<'x,'x>`. Basically, if we
665         // knew that `Foo<'x>` (for any 'x) then we also know that
666         // `Bar<'x,'x>` (for any 'x). This more-or-less falls out from
667         // normal substitution.
668         //
669         // In terms of why this is sound, the idea is that whenever there
670         // is an impl of `T:Foo<'a>`, it must show that `T:Bar<'a,'a>`
671         // holds.  So if there is an impl of `T:Foo<'a>` that applies to
672         // all `'a`, then we must know that `T:Bar<'a,'a>` holds for all
673         // `'a`.
674         //
675         // Another example to be careful of is this:
676         //
677         //     trait Foo1<'a>: for<'b> Bar1<'a,'b> { }
678         //     trait Bar1<'b,'c> { }
679         //
680         // Here, if we have `for<'x> T: Foo1<'x>`, then what do we know?
681         // The answer is that we know `for<'x,'b> T: Bar1<'x,'b>`. The
682         // reason is similar to the previous example: any impl of
683         // `T:Foo1<'x>` must show that `for<'b> T: Bar1<'x, 'b>`.  So
684         // basically we would want to collapse the bound lifetimes from
685         // the input (`trait_ref`) and the supertraits.
686         //
687         // To achieve this in practice is fairly straightforward. Let's
688         // consider the more complicated scenario:
689         //
690         // - We start out with `for<'x> T: Foo1<'x>`. In this case, `'x`
691         //   has a De Bruijn index of 1. We want to produce `for<'x,'b> T: Bar1<'x,'b>`,
692         //   where both `'x` and `'b` would have a DB index of 1.
693         //   The substitution from the input trait-ref is therefore going to be
694         //   `'a => 'x` (where `'x` has a DB index of 1).
695         // - The supertrait-ref is `for<'b> Bar1<'a,'b>`, where `'a` is an
696         //   early-bound parameter and `'b' is a late-bound parameter with a
697         //   DB index of 1.
698         // - If we replace `'a` with `'x` from the input, it too will have
699         //   a DB index of 1, and thus we'll have `for<'x,'b> Bar1<'x,'b>`
700         //   just as we wanted.
701         //
702         // There is only one catch. If we just apply the substitution `'a
703         // => 'x` to `for<'b> Bar1<'a,'b>`, the substitution code will
704         // adjust the DB index because we substituting into a binder (it
705         // tries to be so smart...) resulting in `for<'x> for<'b>
706         // Bar1<'x,'b>` (we have no syntax for this, so use your
707         // imagination). Basically the 'x will have DB index of 2 and 'b
708         // will have DB index of 1. Not quite what we want. So we apply
709         // the substitution to the *contents* of the trait reference,
710         // rather than the trait reference itself (put another way, the
711         // substitution code expects equal binding levels in the values
712         // from the substitution and the value being substituted into, and
713         // this trick achieves that).
714
715         // Working through the second example:
716         // trait_ref: for<'x> T: Foo1<'^0.0>; substs: [T, '^0.0]
717         // predicate: for<'b> Self: Bar1<'a, '^0.0>; substs: [Self, 'a, '^0.0]
718         // We want to end up with:
719         //     for<'x, 'b> T: Bar1<'^0.0, '^0.1>
720         // To do this:
721         // 1) We must shift all bound vars in predicate by the length
722         //    of trait ref's bound vars. So, we would end up with predicate like
723         //    Self: Bar1<'a, '^0.1>
724         // 2) We can then apply the trait substs to this, ending up with
725         //    T: Bar1<'^0.0, '^0.1>
726         // 3) Finally, to create the final bound vars, we concatenate the bound
727         //    vars of the trait ref with those of the predicate:
728         //    ['x, 'b]
729         let bound_pred = self.kind();
730         let pred_bound_vars = bound_pred.bound_vars();
731         let trait_bound_vars = trait_ref.bound_vars();
732         // 1) Self: Bar1<'a, '^0.0> -> Self: Bar1<'a, '^0.1>
733         let shifted_pred =
734             tcx.shift_bound_var_indices(trait_bound_vars.len(), bound_pred.skip_binder());
735         // 2) Self: Bar1<'a, '^0.1> -> T: Bar1<'^0.0, '^0.1>
736         let new = shifted_pred.subst(tcx, trait_ref.skip_binder().substs);
737         // 3) ['x] + ['b] -> ['x, 'b]
738         let bound_vars =
739             tcx.mk_bound_variable_kinds(trait_bound_vars.iter().chain(pred_bound_vars));
740         tcx.reuse_or_mk_predicate(self, ty::Binder::bind_with_vars(new, bound_vars))
741     }
742 }
743
744 #[derive(Clone, Copy, PartialEq, Eq, Hash, TyEncodable, TyDecodable)]
745 #[derive(HashStable, TypeFoldable)]
746 pub struct TraitPredicate<'tcx> {
747     pub trait_ref: TraitRef<'tcx>,
748
749     pub constness: BoundConstness,
750
751     /// If polarity is Positive: we are proving that the trait is implemented.
752     ///
753     /// If polarity is Negative: we are proving that a negative impl of this trait
754     /// exists. (Note that coherence also checks whether negative impls of supertraits
755     /// exist via a series of predicates.)
756     ///
757     /// If polarity is Reserved: that's a bug.
758     pub polarity: ImplPolarity,
759 }
760
761 pub type PolyTraitPredicate<'tcx> = ty::Binder<'tcx, TraitPredicate<'tcx>>;
762
763 impl<'tcx> TraitPredicate<'tcx> {
764     pub fn remap_constness(&mut self, tcx: TyCtxt<'tcx>, param_env: &mut ParamEnv<'tcx>) {
765         if unlikely!(Some(self.trait_ref.def_id) == tcx.lang_items().drop_trait()) {
766             // remap without changing constness of this predicate.
767             // this is because `T: ~const Drop` has a different meaning to `T: Drop`
768             param_env.remap_constness_with(self.constness)
769         } else {
770             *param_env = param_env.with_constness(self.constness.and(param_env.constness()))
771         }
772     }
773
774     /// Remap the constness of this predicate before emitting it for diagnostics.
775     pub fn remap_constness_diag(&mut self, param_env: ParamEnv<'tcx>) {
776         // this is different to `remap_constness` that callees want to print this predicate
777         // in case of selection errors. `T: ~const Drop` bounds cannot end up here when the
778         // param_env is not const because we it is always satisfied in non-const contexts.
779         if let hir::Constness::NotConst = param_env.constness() {
780             self.constness = ty::BoundConstness::NotConst;
781         }
782     }
783
784     pub fn def_id(self) -> DefId {
785         self.trait_ref.def_id
786     }
787
788     pub fn self_ty(self) -> Ty<'tcx> {
789         self.trait_ref.self_ty()
790     }
791
792     #[inline]
793     pub fn is_const_if_const(self) -> bool {
794         self.constness == BoundConstness::ConstIfConst
795     }
796 }
797
798 impl<'tcx> PolyTraitPredicate<'tcx> {
799     pub fn def_id(self) -> DefId {
800         // Ok to skip binder since trait `DefId` does not care about regions.
801         self.skip_binder().def_id()
802     }
803
804     pub fn self_ty(self) -> ty::Binder<'tcx, Ty<'tcx>> {
805         self.map_bound(|trait_ref| trait_ref.self_ty())
806     }
807
808     /// Remap the constness of this predicate before emitting it for diagnostics.
809     pub fn remap_constness_diag(&mut self, param_env: ParamEnv<'tcx>) {
810         *self = self.map_bound(|mut p| {
811             p.remap_constness_diag(param_env);
812             p
813         });
814     }
815
816     #[inline]
817     pub fn is_const_if_const(self) -> bool {
818         self.skip_binder().is_const_if_const()
819     }
820 }
821
822 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, TyEncodable, TyDecodable)]
823 #[derive(HashStable, TypeFoldable)]
824 pub struct OutlivesPredicate<A, B>(pub A, pub B); // `A: B`
825 pub type RegionOutlivesPredicate<'tcx> = OutlivesPredicate<ty::Region<'tcx>, ty::Region<'tcx>>;
826 pub type TypeOutlivesPredicate<'tcx> = OutlivesPredicate<Ty<'tcx>, ty::Region<'tcx>>;
827 pub type PolyRegionOutlivesPredicate<'tcx> = ty::Binder<'tcx, RegionOutlivesPredicate<'tcx>>;
828 pub type PolyTypeOutlivesPredicate<'tcx> = ty::Binder<'tcx, TypeOutlivesPredicate<'tcx>>;
829
830 /// Encodes that `a` must be a subtype of `b`. The `a_is_expected` flag indicates
831 /// whether the `a` type is the type that we should label as "expected" when
832 /// presenting user diagnostics.
833 #[derive(Clone, Copy, PartialEq, Eq, Hash, Debug, TyEncodable, TyDecodable)]
834 #[derive(HashStable, TypeFoldable)]
835 pub struct SubtypePredicate<'tcx> {
836     pub a_is_expected: bool,
837     pub a: Ty<'tcx>,
838     pub b: Ty<'tcx>,
839 }
840 pub type PolySubtypePredicate<'tcx> = ty::Binder<'tcx, SubtypePredicate<'tcx>>;
841
842 /// Encodes that we have to coerce *from* the `a` type to the `b` type.
843 #[derive(Clone, Copy, PartialEq, Eq, Hash, Debug, TyEncodable, TyDecodable)]
844 #[derive(HashStable, TypeFoldable)]
845 pub struct CoercePredicate<'tcx> {
846     pub a: Ty<'tcx>,
847     pub b: Ty<'tcx>,
848 }
849 pub type PolyCoercePredicate<'tcx> = ty::Binder<'tcx, CoercePredicate<'tcx>>;
850
851 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, TyEncodable, TyDecodable)]
852 #[derive(HashStable, TypeFoldable)]
853 pub enum Term<'tcx> {
854     Ty(Ty<'tcx>),
855     Const(Const<'tcx>),
856 }
857
858 impl<'tcx> From<Ty<'tcx>> for Term<'tcx> {
859     fn from(ty: Ty<'tcx>) -> Self {
860         Term::Ty(ty)
861     }
862 }
863
864 impl<'tcx> From<Const<'tcx>> for Term<'tcx> {
865     fn from(c: Const<'tcx>) -> Self {
866         Term::Const(c)
867     }
868 }
869
870 impl<'tcx> Term<'tcx> {
871     pub fn ty(&self) -> Option<Ty<'tcx>> {
872         if let Term::Ty(ty) = self { Some(*ty) } else { None }
873     }
874     pub fn ct(&self) -> Option<Const<'tcx>> {
875         if let Term::Const(c) = self { Some(*c) } else { None }
876     }
877 }
878
879 /// This kind of predicate has no *direct* correspondent in the
880 /// syntax, but it roughly corresponds to the syntactic forms:
881 ///
882 /// 1. `T: TraitRef<..., Item = Type>`
883 /// 2. `<T as TraitRef<...>>::Item == Type` (NYI)
884 ///
885 /// In particular, form #1 is "desugared" to the combination of a
886 /// normal trait predicate (`T: TraitRef<...>`) and one of these
887 /// predicates. Form #2 is a broader form in that it also permits
888 /// equality between arbitrary types. Processing an instance of
889 /// Form #2 eventually yields one of these `ProjectionPredicate`
890 /// instances to normalize the LHS.
891 #[derive(Copy, Clone, PartialEq, Eq, Hash, TyEncodable, TyDecodable)]
892 #[derive(HashStable, TypeFoldable)]
893 pub struct ProjectionPredicate<'tcx> {
894     pub projection_ty: ProjectionTy<'tcx>,
895     pub term: Term<'tcx>,
896 }
897
898 pub type PolyProjectionPredicate<'tcx> = Binder<'tcx, ProjectionPredicate<'tcx>>;
899
900 impl<'tcx> PolyProjectionPredicate<'tcx> {
901     /// Returns the `DefId` of the trait of the associated item being projected.
902     #[inline]
903     pub fn trait_def_id(&self, tcx: TyCtxt<'tcx>) -> DefId {
904         self.skip_binder().projection_ty.trait_def_id(tcx)
905     }
906
907     /// Get the [PolyTraitRef] required for this projection to be well formed.
908     /// Note that for generic associated types the predicates of the associated
909     /// type also need to be checked.
910     #[inline]
911     pub fn required_poly_trait_ref(&self, tcx: TyCtxt<'tcx>) -> PolyTraitRef<'tcx> {
912         // Note: unlike with `TraitRef::to_poly_trait_ref()`,
913         // `self.0.trait_ref` is permitted to have escaping regions.
914         // This is because here `self` has a `Binder` and so does our
915         // return value, so we are preserving the number of binding
916         // levels.
917         self.map_bound(|predicate| predicate.projection_ty.trait_ref(tcx))
918     }
919
920     pub fn term(&self) -> Binder<'tcx, Term<'tcx>> {
921         self.map_bound(|predicate| predicate.term)
922     }
923
924     /// The `DefId` of the `TraitItem` for the associated type.
925     ///
926     /// Note that this is not the `DefId` of the `TraitRef` containing this
927     /// associated type, which is in `tcx.associated_item(projection_def_id()).container`.
928     pub fn projection_def_id(&self) -> DefId {
929         // Ok to skip binder since trait `DefId` does not care about regions.
930         self.skip_binder().projection_ty.item_def_id
931     }
932 }
933
934 pub trait ToPolyTraitRef<'tcx> {
935     fn to_poly_trait_ref(&self) -> PolyTraitRef<'tcx>;
936 }
937
938 impl<'tcx> ToPolyTraitRef<'tcx> for PolyTraitPredicate<'tcx> {
939     fn to_poly_trait_ref(&self) -> PolyTraitRef<'tcx> {
940         self.map_bound_ref(|trait_pred| trait_pred.trait_ref)
941     }
942 }
943
944 pub trait ToPredicate<'tcx> {
945     fn to_predicate(self, tcx: TyCtxt<'tcx>) -> Predicate<'tcx>;
946 }
947
948 impl<'tcx> ToPredicate<'tcx> for Binder<'tcx, PredicateKind<'tcx>> {
949     #[inline(always)]
950     fn to_predicate(self, tcx: TyCtxt<'tcx>) -> Predicate<'tcx> {
951         tcx.mk_predicate(self)
952     }
953 }
954
955 impl<'tcx> ToPredicate<'tcx> for PolyTraitPredicate<'tcx> {
956     fn to_predicate(self, tcx: TyCtxt<'tcx>) -> Predicate<'tcx> {
957         self.map_bound(PredicateKind::Trait).to_predicate(tcx)
958     }
959 }
960
961 impl<'tcx> ToPredicate<'tcx> for PolyRegionOutlivesPredicate<'tcx> {
962     fn to_predicate(self, tcx: TyCtxt<'tcx>) -> Predicate<'tcx> {
963         self.map_bound(PredicateKind::RegionOutlives).to_predicate(tcx)
964     }
965 }
966
967 impl<'tcx> ToPredicate<'tcx> for PolyTypeOutlivesPredicate<'tcx> {
968     fn to_predicate(self, tcx: TyCtxt<'tcx>) -> Predicate<'tcx> {
969         self.map_bound(PredicateKind::TypeOutlives).to_predicate(tcx)
970     }
971 }
972
973 impl<'tcx> ToPredicate<'tcx> for PolyProjectionPredicate<'tcx> {
974     fn to_predicate(self, tcx: TyCtxt<'tcx>) -> Predicate<'tcx> {
975         self.map_bound(PredicateKind::Projection).to_predicate(tcx)
976     }
977 }
978
979 impl<'tcx> Predicate<'tcx> {
980     pub fn to_opt_poly_trait_pred(self) -> Option<PolyTraitPredicate<'tcx>> {
981         let predicate = self.kind();
982         match predicate.skip_binder() {
983             PredicateKind::Trait(t) => Some(predicate.rebind(t)),
984             PredicateKind::Projection(..)
985             | PredicateKind::Subtype(..)
986             | PredicateKind::Coerce(..)
987             | PredicateKind::RegionOutlives(..)
988             | PredicateKind::WellFormed(..)
989             | PredicateKind::ObjectSafe(..)
990             | PredicateKind::ClosureKind(..)
991             | PredicateKind::TypeOutlives(..)
992             | PredicateKind::ConstEvaluatable(..)
993             | PredicateKind::ConstEquate(..)
994             | PredicateKind::TypeWellFormedFromEnv(..) => None,
995         }
996     }
997
998     pub fn to_opt_type_outlives(self) -> Option<PolyTypeOutlivesPredicate<'tcx>> {
999         let predicate = self.kind();
1000         match predicate.skip_binder() {
1001             PredicateKind::TypeOutlives(data) => Some(predicate.rebind(data)),
1002             PredicateKind::Trait(..)
1003             | PredicateKind::Projection(..)
1004             | PredicateKind::Subtype(..)
1005             | PredicateKind::Coerce(..)
1006             | PredicateKind::RegionOutlives(..)
1007             | PredicateKind::WellFormed(..)
1008             | PredicateKind::ObjectSafe(..)
1009             | PredicateKind::ClosureKind(..)
1010             | PredicateKind::ConstEvaluatable(..)
1011             | PredicateKind::ConstEquate(..)
1012             | PredicateKind::TypeWellFormedFromEnv(..) => None,
1013         }
1014     }
1015 }
1016
1017 /// Represents the bounds declared on a particular set of type
1018 /// parameters. Should eventually be generalized into a flag list of
1019 /// where-clauses. You can obtain an `InstantiatedPredicates` list from a
1020 /// `GenericPredicates` by using the `instantiate` method. Note that this method
1021 /// reflects an important semantic invariant of `InstantiatedPredicates`: while
1022 /// the `GenericPredicates` are expressed in terms of the bound type
1023 /// parameters of the impl/trait/whatever, an `InstantiatedPredicates` instance
1024 /// represented a set of bounds for some particular instantiation,
1025 /// meaning that the generic parameters have been substituted with
1026 /// their values.
1027 ///
1028 /// Example:
1029 ///
1030 ///     struct Foo<T, U: Bar<T>> { ... }
1031 ///
1032 /// Here, the `GenericPredicates` for `Foo` would contain a list of bounds like
1033 /// `[[], [U:Bar<T>]]`. Now if there were some particular reference
1034 /// like `Foo<isize,usize>`, then the `InstantiatedPredicates` would be `[[],
1035 /// [usize:Bar<isize>]]`.
1036 #[derive(Clone, Debug, TypeFoldable)]
1037 pub struct InstantiatedPredicates<'tcx> {
1038     pub predicates: Vec<Predicate<'tcx>>,
1039     pub spans: Vec<Span>,
1040 }
1041
1042 impl<'tcx> InstantiatedPredicates<'tcx> {
1043     pub fn empty() -> InstantiatedPredicates<'tcx> {
1044         InstantiatedPredicates { predicates: vec![], spans: vec![] }
1045     }
1046
1047     pub fn is_empty(&self) -> bool {
1048         self.predicates.is_empty()
1049     }
1050 }
1051
1052 #[derive(Copy, Clone, Debug, PartialEq, Eq, HashStable, TyEncodable, TyDecodable, TypeFoldable)]
1053 pub struct OpaqueTypeKey<'tcx> {
1054     pub def_id: DefId,
1055     pub substs: SubstsRef<'tcx>,
1056 }
1057
1058 rustc_index::newtype_index! {
1059     /// "Universes" are used during type- and trait-checking in the
1060     /// presence of `for<..>` binders to control what sets of names are
1061     /// visible. Universes are arranged into a tree: the root universe
1062     /// contains names that are always visible. Each child then adds a new
1063     /// set of names that are visible, in addition to those of its parent.
1064     /// We say that the child universe "extends" the parent universe with
1065     /// new names.
1066     ///
1067     /// To make this more concrete, consider this program:
1068     ///
1069     /// ```
1070     /// struct Foo { }
1071     /// fn bar<T>(x: T) {
1072     ///   let y: for<'a> fn(&'a u8, Foo) = ...;
1073     /// }
1074     /// ```
1075     ///
1076     /// The struct name `Foo` is in the root universe U0. But the type
1077     /// parameter `T`, introduced on `bar`, is in an extended universe U1
1078     /// -- i.e., within `bar`, we can name both `T` and `Foo`, but outside
1079     /// of `bar`, we cannot name `T`. Then, within the type of `y`, the
1080     /// region `'a` is in a universe U2 that extends U1, because we can
1081     /// name it inside the fn type but not outside.
1082     ///
1083     /// Universes are used to do type- and trait-checking around these
1084     /// "forall" binders (also called **universal quantification**). The
1085     /// idea is that when, in the body of `bar`, we refer to `T` as a
1086     /// type, we aren't referring to any type in particular, but rather a
1087     /// kind of "fresh" type that is distinct from all other types we have
1088     /// actually declared. This is called a **placeholder** type, and we
1089     /// use universes to talk about this. In other words, a type name in
1090     /// universe 0 always corresponds to some "ground" type that the user
1091     /// declared, but a type name in a non-zero universe is a placeholder
1092     /// type -- an idealized representative of "types in general" that we
1093     /// use for checking generic functions.
1094     pub struct UniverseIndex {
1095         derive [HashStable]
1096         DEBUG_FORMAT = "U{}",
1097     }
1098 }
1099
1100 impl UniverseIndex {
1101     pub const ROOT: UniverseIndex = UniverseIndex::from_u32(0);
1102
1103     /// Returns the "next" universe index in order -- this new index
1104     /// is considered to extend all previous universes. This
1105     /// corresponds to entering a `forall` quantifier. So, for
1106     /// example, suppose we have this type in universe `U`:
1107     ///
1108     /// ```
1109     /// for<'a> fn(&'a u32)
1110     /// ```
1111     ///
1112     /// Once we "enter" into this `for<'a>` quantifier, we are in a
1113     /// new universe that extends `U` -- in this new universe, we can
1114     /// name the region `'a`, but that region was not nameable from
1115     /// `U` because it was not in scope there.
1116     pub fn next_universe(self) -> UniverseIndex {
1117         UniverseIndex::from_u32(self.private.checked_add(1).unwrap())
1118     }
1119
1120     /// Returns `true` if `self` can name a name from `other` -- in other words,
1121     /// if the set of names in `self` is a superset of those in
1122     /// `other` (`self >= other`).
1123     pub fn can_name(self, other: UniverseIndex) -> bool {
1124         self.private >= other.private
1125     }
1126
1127     /// Returns `true` if `self` cannot name some names from `other` -- in other
1128     /// words, if the set of names in `self` is a strict subset of
1129     /// those in `other` (`self < other`).
1130     pub fn cannot_name(self, other: UniverseIndex) -> bool {
1131         self.private < other.private
1132     }
1133 }
1134
1135 /// The "placeholder index" fully defines a placeholder region, type, or const. Placeholders are
1136 /// identified by both a universe, as well as a name residing within that universe. Distinct bound
1137 /// regions/types/consts within the same universe simply have an unknown relationship to one
1138 /// another.
1139 #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, TyEncodable, TyDecodable, PartialOrd, Ord)]
1140 pub struct Placeholder<T> {
1141     pub universe: UniverseIndex,
1142     pub name: T,
1143 }
1144
1145 impl<'a, T> HashStable<StableHashingContext<'a>> for Placeholder<T>
1146 where
1147     T: HashStable<StableHashingContext<'a>>,
1148 {
1149     fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
1150         self.universe.hash_stable(hcx, hasher);
1151         self.name.hash_stable(hcx, hasher);
1152     }
1153 }
1154
1155 pub type PlaceholderRegion = Placeholder<BoundRegionKind>;
1156
1157 pub type PlaceholderType = Placeholder<BoundVar>;
1158
1159 #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, HashStable)]
1160 #[derive(TyEncodable, TyDecodable, PartialOrd, Ord)]
1161 pub struct BoundConst<'tcx> {
1162     pub var: BoundVar,
1163     pub ty: Ty<'tcx>,
1164 }
1165
1166 pub type PlaceholderConst<'tcx> = Placeholder<BoundConst<'tcx>>;
1167
1168 /// A `DefId` which, in case it is a const argument, is potentially bundled with
1169 /// the `DefId` of the generic parameter it instantiates.
1170 ///
1171 /// This is used to avoid calls to `type_of` for const arguments during typeck
1172 /// which cause cycle errors.
1173 ///
1174 /// ```rust
1175 /// struct A;
1176 /// impl A {
1177 ///     fn foo<const N: usize>(&self) -> [u8; N] { [0; N] }
1178 ///     //           ^ const parameter
1179 /// }
1180 /// struct B;
1181 /// impl B {
1182 ///     fn foo<const M: u8>(&self) -> usize { 42 }
1183 ///     //           ^ const parameter
1184 /// }
1185 ///
1186 /// fn main() {
1187 ///     let a = A;
1188 ///     let _b = a.foo::<{ 3 + 7 }>();
1189 ///     //               ^^^^^^^^^ const argument
1190 /// }
1191 /// ```
1192 ///
1193 /// Let's look at the call `a.foo::<{ 3 + 7 }>()` here. We do not know
1194 /// which `foo` is used until we know the type of `a`.
1195 ///
1196 /// We only know the type of `a` once we are inside of `typeck(main)`.
1197 /// We also end up normalizing the type of `_b` during `typeck(main)` which
1198 /// requires us to evaluate the const argument.
1199 ///
1200 /// To evaluate that const argument we need to know its type,
1201 /// which we would get using `type_of(const_arg)`. This requires us to
1202 /// resolve `foo` as it can be either `usize` or `u8` in this example.
1203 /// However, resolving `foo` once again requires `typeck(main)` to get the type of `a`,
1204 /// which results in a cycle.
1205 ///
1206 /// In short we must not call `type_of(const_arg)` during `typeck(main)`.
1207 ///
1208 /// When first creating the `ty::Const` of the const argument inside of `typeck` we have
1209 /// already resolved `foo` so we know which const parameter this argument instantiates.
1210 /// This means that we also know the expected result of `type_of(const_arg)` even if we
1211 /// aren't allowed to call that query: it is equal to `type_of(const_param)` which is
1212 /// trivial to compute.
1213 ///
1214 /// If we now want to use that constant in a place which potentionally needs its type
1215 /// we also pass the type of its `const_param`. This is the point of `WithOptConstParam`,
1216 /// except that instead of a `Ty` we bundle the `DefId` of the const parameter.
1217 /// Meaning that we need to use `type_of(const_param_did)` if `const_param_did` is `Some`
1218 /// to get the type of `did`.
1219 #[derive(Copy, Clone, Debug, TypeFoldable, Lift, TyEncodable, TyDecodable)]
1220 #[derive(PartialEq, Eq, PartialOrd, Ord)]
1221 #[derive(Hash, HashStable)]
1222 pub struct WithOptConstParam<T> {
1223     pub did: T,
1224     /// The `DefId` of the corresponding generic parameter in case `did` is
1225     /// a const argument.
1226     ///
1227     /// Note that even if `did` is a const argument, this may still be `None`.
1228     /// All queries taking `WithOptConstParam` start by calling `tcx.opt_const_param_of(def.did)`
1229     /// to potentially update `param_did` in the case it is `None`.
1230     pub const_param_did: Option<DefId>,
1231 }
1232
1233 impl<T> WithOptConstParam<T> {
1234     /// Creates a new `WithOptConstParam` setting `const_param_did` to `None`.
1235     #[inline(always)]
1236     pub fn unknown(did: T) -> WithOptConstParam<T> {
1237         WithOptConstParam { did, const_param_did: None }
1238     }
1239 }
1240
1241 impl WithOptConstParam<LocalDefId> {
1242     /// Returns `Some((did, param_did))` if `def_id` is a const argument,
1243     /// `None` otherwise.
1244     #[inline(always)]
1245     pub fn try_lookup(did: LocalDefId, tcx: TyCtxt<'_>) -> Option<(LocalDefId, DefId)> {
1246         tcx.opt_const_param_of(did).map(|param_did| (did, param_did))
1247     }
1248
1249     /// In case `self` is unknown but `self.did` is a const argument, this returns
1250     /// a `WithOptConstParam` with the correct `const_param_did`.
1251     #[inline(always)]
1252     pub fn try_upgrade(self, tcx: TyCtxt<'_>) -> Option<WithOptConstParam<LocalDefId>> {
1253         if self.const_param_did.is_none() {
1254             if let const_param_did @ Some(_) = tcx.opt_const_param_of(self.did) {
1255                 return Some(WithOptConstParam { did: self.did, const_param_did });
1256             }
1257         }
1258
1259         None
1260     }
1261
1262     pub fn to_global(self) -> WithOptConstParam<DefId> {
1263         WithOptConstParam { did: self.did.to_def_id(), const_param_did: self.const_param_did }
1264     }
1265
1266     pub fn def_id_for_type_of(self) -> DefId {
1267         if let Some(did) = self.const_param_did { did } else { self.did.to_def_id() }
1268     }
1269 }
1270
1271 impl WithOptConstParam<DefId> {
1272     pub fn as_local(self) -> Option<WithOptConstParam<LocalDefId>> {
1273         self.did
1274             .as_local()
1275             .map(|did| WithOptConstParam { did, const_param_did: self.const_param_did })
1276     }
1277
1278     pub fn as_const_arg(self) -> Option<(LocalDefId, DefId)> {
1279         if let Some(param_did) = self.const_param_did {
1280             if let Some(did) = self.did.as_local() {
1281                 return Some((did, param_did));
1282             }
1283         }
1284
1285         None
1286     }
1287
1288     pub fn is_local(self) -> bool {
1289         self.did.is_local()
1290     }
1291
1292     pub fn def_id_for_type_of(self) -> DefId {
1293         self.const_param_did.unwrap_or(self.did)
1294     }
1295 }
1296
1297 /// When type checking, we use the `ParamEnv` to track
1298 /// details about the set of where-clauses that are in scope at this
1299 /// particular point.
1300 #[derive(Copy, Clone, Hash, PartialEq, Eq)]
1301 pub struct ParamEnv<'tcx> {
1302     /// This packs both caller bounds and the reveal enum into one pointer.
1303     ///
1304     /// Caller bounds are `Obligation`s that the caller must satisfy. This is
1305     /// basically the set of bounds on the in-scope type parameters, translated
1306     /// into `Obligation`s, and elaborated and normalized.
1307     ///
1308     /// Use the `caller_bounds()` method to access.
1309     ///
1310     /// Typically, this is `Reveal::UserFacing`, but during codegen we
1311     /// want `Reveal::All`.
1312     ///
1313     /// Note: This is packed, use the reveal() method to access it.
1314     packed: CopyTaggedPtr<&'tcx List<Predicate<'tcx>>, ParamTag, true>,
1315 }
1316
1317 #[derive(Copy, Clone)]
1318 struct ParamTag {
1319     reveal: traits::Reveal,
1320     constness: hir::Constness,
1321 }
1322
1323 unsafe impl rustc_data_structures::tagged_ptr::Tag for ParamTag {
1324     const BITS: usize = 2;
1325     #[inline]
1326     fn into_usize(self) -> usize {
1327         match self {
1328             Self { reveal: traits::Reveal::UserFacing, constness: hir::Constness::NotConst } => 0,
1329             Self { reveal: traits::Reveal::All, constness: hir::Constness::NotConst } => 1,
1330             Self { reveal: traits::Reveal::UserFacing, constness: hir::Constness::Const } => 2,
1331             Self { reveal: traits::Reveal::All, constness: hir::Constness::Const } => 3,
1332         }
1333     }
1334     #[inline]
1335     unsafe fn from_usize(ptr: usize) -> Self {
1336         match ptr {
1337             0 => Self { reveal: traits::Reveal::UserFacing, constness: hir::Constness::NotConst },
1338             1 => Self { reveal: traits::Reveal::All, constness: hir::Constness::NotConst },
1339             2 => Self { reveal: traits::Reveal::UserFacing, constness: hir::Constness::Const },
1340             3 => Self { reveal: traits::Reveal::All, constness: hir::Constness::Const },
1341             _ => std::hint::unreachable_unchecked(),
1342         }
1343     }
1344 }
1345
1346 impl<'tcx> fmt::Debug for ParamEnv<'tcx> {
1347     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1348         f.debug_struct("ParamEnv")
1349             .field("caller_bounds", &self.caller_bounds())
1350             .field("reveal", &self.reveal())
1351             .field("constness", &self.constness())
1352             .finish()
1353     }
1354 }
1355
1356 impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for ParamEnv<'tcx> {
1357     fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
1358         self.caller_bounds().hash_stable(hcx, hasher);
1359         self.reveal().hash_stable(hcx, hasher);
1360         self.constness().hash_stable(hcx, hasher);
1361     }
1362 }
1363
1364 impl<'tcx> TypeFoldable<'tcx> for ParamEnv<'tcx> {
1365     fn try_super_fold_with<F: ty::fold::FallibleTypeFolder<'tcx>>(
1366         self,
1367         folder: &mut F,
1368     ) -> Result<Self, F::Error> {
1369         Ok(ParamEnv::new(
1370             self.caller_bounds().try_fold_with(folder)?,
1371             self.reveal().try_fold_with(folder)?,
1372             self.constness().try_fold_with(folder)?,
1373         ))
1374     }
1375
1376     fn super_visit_with<V: TypeVisitor<'tcx>>(&self, visitor: &mut V) -> ControlFlow<V::BreakTy> {
1377         self.caller_bounds().visit_with(visitor)?;
1378         self.reveal().visit_with(visitor)?;
1379         self.constness().visit_with(visitor)
1380     }
1381 }
1382
1383 impl<'tcx> ParamEnv<'tcx> {
1384     /// Construct a trait environment suitable for contexts where
1385     /// there are no where-clauses in scope. Hidden types (like `impl
1386     /// Trait`) are left hidden, so this is suitable for ordinary
1387     /// type-checking.
1388     #[inline]
1389     pub fn empty() -> Self {
1390         Self::new(List::empty(), Reveal::UserFacing, hir::Constness::NotConst)
1391     }
1392
1393     #[inline]
1394     pub fn caller_bounds(self) -> &'tcx List<Predicate<'tcx>> {
1395         self.packed.pointer()
1396     }
1397
1398     #[inline]
1399     pub fn reveal(self) -> traits::Reveal {
1400         self.packed.tag().reveal
1401     }
1402
1403     #[inline]
1404     pub fn constness(self) -> hir::Constness {
1405         self.packed.tag().constness
1406     }
1407
1408     #[inline]
1409     pub fn is_const(self) -> bool {
1410         self.packed.tag().constness == hir::Constness::Const
1411     }
1412
1413     /// Construct a trait environment with no where-clauses in scope
1414     /// where the values of all `impl Trait` and other hidden types
1415     /// are revealed. This is suitable for monomorphized, post-typeck
1416     /// environments like codegen or doing optimizations.
1417     ///
1418     /// N.B., if you want to have predicates in scope, use `ParamEnv::new`,
1419     /// or invoke `param_env.with_reveal_all()`.
1420     #[inline]
1421     pub fn reveal_all() -> Self {
1422         Self::new(List::empty(), Reveal::All, hir::Constness::NotConst)
1423     }
1424
1425     /// Construct a trait environment with the given set of predicates.
1426     #[inline]
1427     pub fn new(
1428         caller_bounds: &'tcx List<Predicate<'tcx>>,
1429         reveal: Reveal,
1430         constness: hir::Constness,
1431     ) -> Self {
1432         ty::ParamEnv { packed: CopyTaggedPtr::new(caller_bounds, ParamTag { reveal, constness }) }
1433     }
1434
1435     pub fn with_user_facing(mut self) -> Self {
1436         self.packed.set_tag(ParamTag { reveal: Reveal::UserFacing, ..self.packed.tag() });
1437         self
1438     }
1439
1440     #[inline]
1441     pub fn with_constness(mut self, constness: hir::Constness) -> Self {
1442         self.packed.set_tag(ParamTag { constness, ..self.packed.tag() });
1443         self
1444     }
1445
1446     #[inline]
1447     pub fn with_const(mut self) -> Self {
1448         self.packed.set_tag(ParamTag { constness: hir::Constness::Const, ..self.packed.tag() });
1449         self
1450     }
1451
1452     #[inline]
1453     pub fn without_const(mut self) -> Self {
1454         self.packed.set_tag(ParamTag { constness: hir::Constness::NotConst, ..self.packed.tag() });
1455         self
1456     }
1457
1458     #[inline]
1459     pub fn remap_constness_with(&mut self, mut constness: ty::BoundConstness) {
1460         *self = self.with_constness(constness.and(self.constness()))
1461     }
1462
1463     /// Returns a new parameter environment with the same clauses, but
1464     /// which "reveals" the true results of projections in all cases
1465     /// (even for associated types that are specializable). This is
1466     /// the desired behavior during codegen and certain other special
1467     /// contexts; normally though we want to use `Reveal::UserFacing`,
1468     /// which is the default.
1469     /// All opaque types in the caller_bounds of the `ParamEnv`
1470     /// will be normalized to their underlying types.
1471     /// See PR #65989 and issue #65918 for more details
1472     pub fn with_reveal_all_normalized(self, tcx: TyCtxt<'tcx>) -> Self {
1473         if self.packed.tag().reveal == traits::Reveal::All {
1474             return self;
1475         }
1476
1477         ParamEnv::new(
1478             tcx.normalize_opaque_types(self.caller_bounds()),
1479             Reveal::All,
1480             self.constness(),
1481         )
1482     }
1483
1484     /// Returns this same environment but with no caller bounds.
1485     #[inline]
1486     pub fn without_caller_bounds(self) -> Self {
1487         Self::new(List::empty(), self.reveal(), self.constness())
1488     }
1489
1490     /// Creates a suitable environment in which to perform trait
1491     /// queries on the given value. When type-checking, this is simply
1492     /// the pair of the environment plus value. But when reveal is set to
1493     /// All, then if `value` does not reference any type parameters, we will
1494     /// pair it with the empty environment. This improves caching and is generally
1495     /// invisible.
1496     ///
1497     /// N.B., we preserve the environment when type-checking because it
1498     /// is possible for the user to have wacky where-clauses like
1499     /// `where Box<u32>: Copy`, which are clearly never
1500     /// satisfiable. We generally want to behave as if they were true,
1501     /// although the surrounding function is never reachable.
1502     pub fn and<T: TypeFoldable<'tcx>>(self, value: T) -> ParamEnvAnd<'tcx, T> {
1503         match self.reveal() {
1504             Reveal::UserFacing => ParamEnvAnd { param_env: self, value },
1505
1506             Reveal::All => {
1507                 if value.is_global() {
1508                     ParamEnvAnd { param_env: self.without_caller_bounds(), value }
1509                 } else {
1510                     ParamEnvAnd { param_env: self, value }
1511                 }
1512             }
1513         }
1514     }
1515 }
1516
1517 // FIXME(ecstaticmorse): Audit all occurrences of `without_const().to_predicate(tcx)` to ensure that
1518 // the constness of trait bounds is being propagated correctly.
1519 impl<'tcx> PolyTraitRef<'tcx> {
1520     #[inline]
1521     pub fn with_constness(self, constness: BoundConstness) -> PolyTraitPredicate<'tcx> {
1522         self.map_bound(|trait_ref| ty::TraitPredicate {
1523             trait_ref,
1524             constness,
1525             polarity: ty::ImplPolarity::Positive,
1526         })
1527     }
1528
1529     #[inline]
1530     pub fn without_const(self) -> PolyTraitPredicate<'tcx> {
1531         self.with_constness(BoundConstness::NotConst)
1532     }
1533 }
1534
1535 #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, TypeFoldable)]
1536 pub struct ParamEnvAnd<'tcx, T> {
1537     pub param_env: ParamEnv<'tcx>,
1538     pub value: T,
1539 }
1540
1541 impl<'tcx, T> ParamEnvAnd<'tcx, T> {
1542     pub fn into_parts(self) -> (ParamEnv<'tcx>, T) {
1543         (self.param_env, self.value)
1544     }
1545
1546     #[inline]
1547     pub fn without_const(mut self) -> Self {
1548         self.param_env = self.param_env.without_const();
1549         self
1550     }
1551 }
1552
1553 impl<'a, 'tcx, T> HashStable<StableHashingContext<'a>> for ParamEnvAnd<'tcx, T>
1554 where
1555     T: HashStable<StableHashingContext<'a>>,
1556 {
1557     fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
1558         let ParamEnvAnd { ref param_env, ref value } = *self;
1559
1560         param_env.hash_stable(hcx, hasher);
1561         value.hash_stable(hcx, hasher);
1562     }
1563 }
1564
1565 #[derive(Copy, Clone, Debug, HashStable)]
1566 pub struct Destructor {
1567     /// The `DefId` of the destructor method
1568     pub did: DefId,
1569     /// The constness of the destructor method
1570     pub constness: hir::Constness,
1571 }
1572
1573 bitflags! {
1574     #[derive(HashStable, TyEncodable, TyDecodable)]
1575     pub struct VariantFlags: u32 {
1576         const NO_VARIANT_FLAGS        = 0;
1577         /// Indicates whether the field list of this variant is `#[non_exhaustive]`.
1578         const IS_FIELD_LIST_NON_EXHAUSTIVE = 1 << 0;
1579         /// Indicates whether this variant was obtained as part of recovering from
1580         /// a syntactic error. May be incomplete or bogus.
1581         const IS_RECOVERED = 1 << 1;
1582     }
1583 }
1584
1585 /// Definition of a variant -- a struct's fields or an enum variant.
1586 #[derive(Debug, HashStable, TyEncodable, TyDecodable)]
1587 pub struct VariantDef {
1588     /// `DefId` that identifies the variant itself.
1589     /// If this variant belongs to a struct or union, then this is a copy of its `DefId`.
1590     pub def_id: DefId,
1591     /// `DefId` that identifies the variant's constructor.
1592     /// If this variant is a struct variant, then this is `None`.
1593     pub ctor_def_id: Option<DefId>,
1594     /// Variant or struct name.
1595     pub name: Symbol,
1596     /// Discriminant of this variant.
1597     pub discr: VariantDiscr,
1598     /// Fields of this variant.
1599     pub fields: Vec<FieldDef>,
1600     /// Type of constructor of variant.
1601     pub ctor_kind: CtorKind,
1602     /// Flags of the variant (e.g. is field list non-exhaustive)?
1603     flags: VariantFlags,
1604 }
1605
1606 impl VariantDef {
1607     /// Creates a new `VariantDef`.
1608     ///
1609     /// `variant_did` is the `DefId` that identifies the enum variant (if this `VariantDef`
1610     /// represents an enum variant).
1611     ///
1612     /// `ctor_did` is the `DefId` that identifies the constructor of unit or
1613     /// tuple-variants/structs. If this is a `struct`-variant then this should be `None`.
1614     ///
1615     /// `parent_did` is the `DefId` of the `AdtDef` representing the enum or struct that
1616     /// owns this variant. It is used for checking if a struct has `#[non_exhaustive]` w/out having
1617     /// to go through the redirect of checking the ctor's attributes - but compiling a small crate
1618     /// requires loading the `AdtDef`s for all the structs in the universe (e.g., coherence for any
1619     /// built-in trait), and we do not want to load attributes twice.
1620     ///
1621     /// If someone speeds up attribute loading to not be a performance concern, they can
1622     /// remove this hack and use the constructor `DefId` everywhere.
1623     pub fn new(
1624         name: Symbol,
1625         variant_did: Option<DefId>,
1626         ctor_def_id: Option<DefId>,
1627         discr: VariantDiscr,
1628         fields: Vec<FieldDef>,
1629         ctor_kind: CtorKind,
1630         adt_kind: AdtKind,
1631         parent_did: DefId,
1632         recovered: bool,
1633         is_field_list_non_exhaustive: bool,
1634     ) -> Self {
1635         debug!(
1636             "VariantDef::new(name = {:?}, variant_did = {:?}, ctor_def_id = {:?}, discr = {:?},
1637              fields = {:?}, ctor_kind = {:?}, adt_kind = {:?}, parent_did = {:?})",
1638             name, variant_did, ctor_def_id, discr, fields, ctor_kind, adt_kind, parent_did,
1639         );
1640
1641         let mut flags = VariantFlags::NO_VARIANT_FLAGS;
1642         if is_field_list_non_exhaustive {
1643             flags |= VariantFlags::IS_FIELD_LIST_NON_EXHAUSTIVE;
1644         }
1645
1646         if recovered {
1647             flags |= VariantFlags::IS_RECOVERED;
1648         }
1649
1650         VariantDef {
1651             def_id: variant_did.unwrap_or(parent_did),
1652             ctor_def_id,
1653             name,
1654             discr,
1655             fields,
1656             ctor_kind,
1657             flags,
1658         }
1659     }
1660
1661     /// Is this field list non-exhaustive?
1662     #[inline]
1663     pub fn is_field_list_non_exhaustive(&self) -> bool {
1664         self.flags.intersects(VariantFlags::IS_FIELD_LIST_NON_EXHAUSTIVE)
1665     }
1666
1667     /// Was this variant obtained as part of recovering from a syntactic error?
1668     #[inline]
1669     pub fn is_recovered(&self) -> bool {
1670         self.flags.intersects(VariantFlags::IS_RECOVERED)
1671     }
1672
1673     /// Computes the `Ident` of this variant by looking up the `Span`
1674     pub fn ident(&self, tcx: TyCtxt<'_>) -> Ident {
1675         Ident::new(self.name, tcx.def_ident_span(self.def_id).unwrap())
1676     }
1677 }
1678
1679 #[derive(Copy, Clone, Debug, PartialEq, Eq, TyEncodable, TyDecodable, HashStable)]
1680 pub enum VariantDiscr {
1681     /// Explicit value for this variant, i.e., `X = 123`.
1682     /// The `DefId` corresponds to the embedded constant.
1683     Explicit(DefId),
1684
1685     /// The previous variant's discriminant plus one.
1686     /// For efficiency reasons, the distance from the
1687     /// last `Explicit` discriminant is being stored,
1688     /// or `0` for the first variant, if it has none.
1689     Relative(u32),
1690 }
1691
1692 #[derive(Debug, HashStable, TyEncodable, TyDecodable)]
1693 pub struct FieldDef {
1694     pub did: DefId,
1695     pub name: Symbol,
1696     pub vis: Visibility,
1697 }
1698
1699 bitflags! {
1700     #[derive(TyEncodable, TyDecodable, Default, HashStable)]
1701     pub struct ReprFlags: u8 {
1702         const IS_C               = 1 << 0;
1703         const IS_SIMD            = 1 << 1;
1704         const IS_TRANSPARENT     = 1 << 2;
1705         // Internal only for now. If true, don't reorder fields.
1706         const IS_LINEAR          = 1 << 3;
1707         // If true, don't expose any niche to type's context.
1708         const HIDE_NICHE         = 1 << 4;
1709         // If true, the type's layout can be randomized using
1710         // the seed stored in `ReprOptions.layout_seed`
1711         const RANDOMIZE_LAYOUT   = 1 << 5;
1712         // Any of these flags being set prevent field reordering optimisation.
1713         const IS_UNOPTIMISABLE   = ReprFlags::IS_C.bits
1714                                  | ReprFlags::IS_SIMD.bits
1715                                  | ReprFlags::IS_LINEAR.bits;
1716     }
1717 }
1718
1719 /// Represents the repr options provided by the user,
1720 #[derive(Copy, Clone, Debug, Eq, PartialEq, TyEncodable, TyDecodable, Default, HashStable)]
1721 pub struct ReprOptions {
1722     pub int: Option<attr::IntType>,
1723     pub align: Option<Align>,
1724     pub pack: Option<Align>,
1725     pub flags: ReprFlags,
1726     /// The seed to be used for randomizing a type's layout
1727     ///
1728     /// Note: This could technically be a `[u8; 16]` (a `u128`) which would
1729     /// be the "most accurate" hash as it'd encompass the item and crate
1730     /// hash without loss, but it does pay the price of being larger.
1731     /// Everything's a tradeoff, a `u64` seed should be sufficient for our
1732     /// purposes (primarily `-Z randomize-layout`)
1733     pub field_shuffle_seed: u64,
1734 }
1735
1736 impl ReprOptions {
1737     pub fn new(tcx: TyCtxt<'_>, did: DefId) -> ReprOptions {
1738         let mut flags = ReprFlags::empty();
1739         let mut size = None;
1740         let mut max_align: Option<Align> = None;
1741         let mut min_pack: Option<Align> = None;
1742
1743         // Generate a deterministically-derived seed from the item's path hash
1744         // to allow for cross-crate compilation to actually work
1745         let mut field_shuffle_seed = tcx.def_path_hash(did).0.to_smaller_hash();
1746
1747         // If the user defined a custom seed for layout randomization, xor the item's
1748         // path hash with the user defined seed, this will allowing determinism while
1749         // still allowing users to further randomize layout generation for e.g. fuzzing
1750         if let Some(user_seed) = tcx.sess.opts.debugging_opts.layout_seed {
1751             field_shuffle_seed ^= user_seed;
1752         }
1753
1754         for attr in tcx.get_attrs(did).iter() {
1755             for r in attr::find_repr_attrs(&tcx.sess, attr) {
1756                 flags.insert(match r {
1757                     attr::ReprC => ReprFlags::IS_C,
1758                     attr::ReprPacked(pack) => {
1759                         let pack = Align::from_bytes(pack as u64).unwrap();
1760                         min_pack = Some(if let Some(min_pack) = min_pack {
1761                             min_pack.min(pack)
1762                         } else {
1763                             pack
1764                         });
1765                         ReprFlags::empty()
1766                     }
1767                     attr::ReprTransparent => ReprFlags::IS_TRANSPARENT,
1768                     attr::ReprNoNiche => ReprFlags::HIDE_NICHE,
1769                     attr::ReprSimd => ReprFlags::IS_SIMD,
1770                     attr::ReprInt(i) => {
1771                         size = Some(i);
1772                         ReprFlags::empty()
1773                     }
1774                     attr::ReprAlign(align) => {
1775                         max_align = max_align.max(Some(Align::from_bytes(align as u64).unwrap()));
1776                         ReprFlags::empty()
1777                     }
1778                 });
1779             }
1780         }
1781
1782         // If `-Z randomize-layout` was enabled for the type definition then we can
1783         // consider performing layout randomization
1784         if tcx.sess.opts.debugging_opts.randomize_layout {
1785             flags.insert(ReprFlags::RANDOMIZE_LAYOUT);
1786         }
1787
1788         // This is here instead of layout because the choice must make it into metadata.
1789         if !tcx.consider_optimizing(|| format!("Reorder fields of {:?}", tcx.def_path_str(did))) {
1790             flags.insert(ReprFlags::IS_LINEAR);
1791         }
1792
1793         Self { int: size, align: max_align, pack: min_pack, flags, field_shuffle_seed }
1794     }
1795
1796     #[inline]
1797     pub fn simd(&self) -> bool {
1798         self.flags.contains(ReprFlags::IS_SIMD)
1799     }
1800
1801     #[inline]
1802     pub fn c(&self) -> bool {
1803         self.flags.contains(ReprFlags::IS_C)
1804     }
1805
1806     #[inline]
1807     pub fn packed(&self) -> bool {
1808         self.pack.is_some()
1809     }
1810
1811     #[inline]
1812     pub fn transparent(&self) -> bool {
1813         self.flags.contains(ReprFlags::IS_TRANSPARENT)
1814     }
1815
1816     #[inline]
1817     pub fn linear(&self) -> bool {
1818         self.flags.contains(ReprFlags::IS_LINEAR)
1819     }
1820
1821     #[inline]
1822     pub fn hide_niche(&self) -> bool {
1823         self.flags.contains(ReprFlags::HIDE_NICHE)
1824     }
1825
1826     /// Returns the discriminant type, given these `repr` options.
1827     /// This must only be called on enums!
1828     pub fn discr_type(&self) -> attr::IntType {
1829         self.int.unwrap_or(attr::SignedInt(ast::IntTy::Isize))
1830     }
1831
1832     /// Returns `true` if this `#[repr()]` should inhabit "smart enum
1833     /// layout" optimizations, such as representing `Foo<&T>` as a
1834     /// single pointer.
1835     pub fn inhibit_enum_layout_opt(&self) -> bool {
1836         self.c() || self.int.is_some()
1837     }
1838
1839     /// Returns `true` if this `#[repr()]` should inhibit struct field reordering
1840     /// optimizations, such as with `repr(C)`, `repr(packed(1))`, or `repr(<int>)`.
1841     pub fn inhibit_struct_field_reordering_opt(&self) -> bool {
1842         if let Some(pack) = self.pack {
1843             if pack.bytes() == 1 {
1844                 return true;
1845             }
1846         }
1847
1848         self.flags.intersects(ReprFlags::IS_UNOPTIMISABLE) || self.int.is_some()
1849     }
1850
1851     /// Returns `true` if this type is valid for reordering and `-Z randomize-layout`
1852     /// was enabled for its declaration crate
1853     pub fn can_randomize_type_layout(&self) -> bool {
1854         !self.inhibit_struct_field_reordering_opt()
1855             && self.flags.contains(ReprFlags::RANDOMIZE_LAYOUT)
1856     }
1857
1858     /// Returns `true` if this `#[repr()]` should inhibit union ABI optimisations.
1859     pub fn inhibit_union_abi_opt(&self) -> bool {
1860         self.c()
1861     }
1862 }
1863
1864 impl<'tcx> FieldDef {
1865     /// Returns the type of this field. The resulting type is not normalized. The `subst` is
1866     /// typically obtained via the second field of [`TyKind::Adt`].
1867     pub fn ty(&self, tcx: TyCtxt<'tcx>, subst: SubstsRef<'tcx>) -> Ty<'tcx> {
1868         tcx.type_of(self.did).subst(tcx, subst)
1869     }
1870
1871     /// Computes the `Ident` of this variant by looking up the `Span`
1872     pub fn ident(&self, tcx: TyCtxt<'_>) -> Ident {
1873         Ident::new(self.name, tcx.def_ident_span(self.did).unwrap())
1874     }
1875 }
1876
1877 pub type Attributes<'tcx> = &'tcx [ast::Attribute];
1878
1879 #[derive(Debug, PartialEq, Eq)]
1880 pub enum ImplOverlapKind {
1881     /// These impls are always allowed to overlap.
1882     Permitted {
1883         /// Whether or not the impl is permitted due to the trait being a `#[marker]` trait
1884         marker: bool,
1885     },
1886     /// These impls are allowed to overlap, but that raises
1887     /// an issue #33140 future-compatibility warning.
1888     ///
1889     /// Some background: in Rust 1.0, the trait-object types `Send + Sync` (today's
1890     /// `dyn Send + Sync`) and `Sync + Send` (now `dyn Sync + Send`) were different.
1891     ///
1892     /// The widely-used version 0.1.0 of the crate `traitobject` had accidentally relied
1893     /// that difference, making what reduces to the following set of impls:
1894     ///
1895     /// ```
1896     /// trait Trait {}
1897     /// impl Trait for dyn Send + Sync {}
1898     /// impl Trait for dyn Sync + Send {}
1899     /// ```
1900     ///
1901     /// Obviously, once we made these types be identical, that code causes a coherence
1902     /// error and a fairly big headache for us. However, luckily for us, the trait
1903     /// `Trait` used in this case is basically a marker trait, and therefore having
1904     /// overlapping impls for it is sound.
1905     ///
1906     /// To handle this, we basically regard the trait as a marker trait, with an additional
1907     /// future-compatibility warning. To avoid accidentally "stabilizing" this feature,
1908     /// it has the following restrictions:
1909     ///
1910     /// 1. The trait must indeed be a marker-like trait (i.e., no items), and must be
1911     /// positive impls.
1912     /// 2. The trait-ref of both impls must be equal.
1913     /// 3. The trait-ref of both impls must be a trait object type consisting only of
1914     /// marker traits.
1915     /// 4. Neither of the impls can have any where-clauses.
1916     ///
1917     /// Once `traitobject` 0.1.0 is no longer an active concern, this hack can be removed.
1918     Issue33140,
1919 }
1920
1921 impl<'tcx> TyCtxt<'tcx> {
1922     pub fn typeck_body(self, body: hir::BodyId) -> &'tcx TypeckResults<'tcx> {
1923         self.typeck(self.hir().body_owner_def_id(body))
1924     }
1925
1926     pub fn provided_trait_methods(self, id: DefId) -> impl 'tcx + Iterator<Item = &'tcx AssocItem> {
1927         self.associated_items(id)
1928             .in_definition_order()
1929             .filter(|item| item.kind == AssocKind::Fn && item.defaultness.has_value())
1930     }
1931
1932     fn item_name_from_hir(self, def_id: DefId) -> Option<Ident> {
1933         self.hir().get_if_local(def_id).and_then(|node| node.ident())
1934     }
1935
1936     fn item_name_from_def_id(self, def_id: DefId) -> Option<Symbol> {
1937         if def_id.index == CRATE_DEF_INDEX {
1938             Some(self.crate_name(def_id.krate))
1939         } else {
1940             let def_key = self.def_key(def_id);
1941             match def_key.disambiguated_data.data {
1942                 // The name of a constructor is that of its parent.
1943                 rustc_hir::definitions::DefPathData::Ctor => self.item_name_from_def_id(DefId {
1944                     krate: def_id.krate,
1945                     index: def_key.parent.unwrap(),
1946                 }),
1947                 _ => def_key.disambiguated_data.data.get_opt_name(),
1948             }
1949         }
1950     }
1951
1952     /// Look up the name of an item across crates. This does not look at HIR.
1953     ///
1954     /// When possible, this function should be used for cross-crate lookups over
1955     /// [`opt_item_name`] to avoid invalidating the incremental cache. If you
1956     /// need to handle items without a name, or HIR items that will not be
1957     /// serialized cross-crate, or if you need the span of the item, use
1958     /// [`opt_item_name`] instead.
1959     ///
1960     /// [`opt_item_name`]: Self::opt_item_name
1961     pub fn item_name(self, id: DefId) -> Symbol {
1962         // Look at cross-crate items first to avoid invalidating the incremental cache
1963         // unless we have to.
1964         self.item_name_from_def_id(id).unwrap_or_else(|| {
1965             bug!("item_name: no name for {:?}", self.def_path(id));
1966         })
1967     }
1968
1969     /// Look up the name and span of an item or [`Node`].
1970     ///
1971     /// See [`item_name`][Self::item_name] for more information.
1972     pub fn opt_item_name(self, def_id: DefId) -> Option<Ident> {
1973         // Look at the HIR first so the span will be correct if this is a local item.
1974         self.item_name_from_hir(def_id)
1975             .or_else(|| self.item_name_from_def_id(def_id).map(Ident::with_dummy_span))
1976     }
1977
1978     pub fn opt_associated_item(self, def_id: DefId) -> Option<&'tcx AssocItem> {
1979         if let DefKind::AssocConst | DefKind::AssocFn | DefKind::AssocTy = self.def_kind(def_id) {
1980             Some(self.associated_item(def_id))
1981         } else {
1982             None
1983         }
1984     }
1985
1986     pub fn field_index(self, hir_id: hir::HirId, typeck_results: &TypeckResults<'_>) -> usize {
1987         typeck_results.field_indices().get(hir_id).cloned().expect("no index for a field")
1988     }
1989
1990     pub fn find_field_index(self, ident: Ident, variant: &VariantDef) -> Option<usize> {
1991         variant
1992             .fields
1993             .iter()
1994             .position(|field| self.hygienic_eq(ident, field.ident(self), variant.def_id))
1995     }
1996
1997     /// Returns `true` if the impls are the same polarity and the trait either
1998     /// has no items or is annotated `#[marker]` and prevents item overrides.
1999     pub fn impls_are_allowed_to_overlap(
2000         self,
2001         def_id1: DefId,
2002         def_id2: DefId,
2003     ) -> Option<ImplOverlapKind> {
2004         // If either trait impl references an error, they're allowed to overlap,
2005         // as one of them essentially doesn't exist.
2006         if self.impl_trait_ref(def_id1).map_or(false, |tr| tr.references_error())
2007             || self.impl_trait_ref(def_id2).map_or(false, |tr| tr.references_error())
2008         {
2009             return Some(ImplOverlapKind::Permitted { marker: false });
2010         }
2011
2012         match (self.impl_polarity(def_id1), self.impl_polarity(def_id2)) {
2013             (ImplPolarity::Reservation, _) | (_, ImplPolarity::Reservation) => {
2014                 // `#[rustc_reservation_impl]` impls don't overlap with anything
2015                 debug!(
2016                     "impls_are_allowed_to_overlap({:?}, {:?}) = Some(Permitted) (reservations)",
2017                     def_id1, def_id2
2018                 );
2019                 return Some(ImplOverlapKind::Permitted { marker: false });
2020             }
2021             (ImplPolarity::Positive, ImplPolarity::Negative)
2022             | (ImplPolarity::Negative, ImplPolarity::Positive) => {
2023                 // `impl AutoTrait for Type` + `impl !AutoTrait for Type`
2024                 debug!(
2025                     "impls_are_allowed_to_overlap({:?}, {:?}) - None (differing polarities)",
2026                     def_id1, def_id2
2027                 );
2028                 return None;
2029             }
2030             (ImplPolarity::Positive, ImplPolarity::Positive)
2031             | (ImplPolarity::Negative, ImplPolarity::Negative) => {}
2032         };
2033
2034         let is_marker_overlap = {
2035             let is_marker_impl = |def_id: DefId| -> bool {
2036                 let trait_ref = self.impl_trait_ref(def_id);
2037                 trait_ref.map_or(false, |tr| self.trait_def(tr.def_id).is_marker)
2038             };
2039             is_marker_impl(def_id1) && is_marker_impl(def_id2)
2040         };
2041
2042         if is_marker_overlap {
2043             debug!(
2044                 "impls_are_allowed_to_overlap({:?}, {:?}) = Some(Permitted) (marker overlap)",
2045                 def_id1, def_id2
2046             );
2047             Some(ImplOverlapKind::Permitted { marker: true })
2048         } else {
2049             if let Some(self_ty1) = self.issue33140_self_ty(def_id1) {
2050                 if let Some(self_ty2) = self.issue33140_self_ty(def_id2) {
2051                     if self_ty1 == self_ty2 {
2052                         debug!(
2053                             "impls_are_allowed_to_overlap({:?}, {:?}) - issue #33140 HACK",
2054                             def_id1, def_id2
2055                         );
2056                         return Some(ImplOverlapKind::Issue33140);
2057                     } else {
2058                         debug!(
2059                             "impls_are_allowed_to_overlap({:?}, {:?}) - found {:?} != {:?}",
2060                             def_id1, def_id2, self_ty1, self_ty2
2061                         );
2062                     }
2063                 }
2064             }
2065
2066             debug!("impls_are_allowed_to_overlap({:?}, {:?}) = None", def_id1, def_id2);
2067             None
2068         }
2069     }
2070
2071     /// Returns `ty::VariantDef` if `res` refers to a struct,
2072     /// or variant or their constructors, panics otherwise.
2073     pub fn expect_variant_res(self, res: Res) -> &'tcx VariantDef {
2074         match res {
2075             Res::Def(DefKind::Variant, did) => {
2076                 let enum_did = self.parent(did).unwrap();
2077                 self.adt_def(enum_did).variant_with_id(did)
2078             }
2079             Res::Def(DefKind::Struct | DefKind::Union, did) => self.adt_def(did).non_enum_variant(),
2080             Res::Def(DefKind::Ctor(CtorOf::Variant, ..), variant_ctor_did) => {
2081                 let variant_did = self.parent(variant_ctor_did).unwrap();
2082                 let enum_did = self.parent(variant_did).unwrap();
2083                 self.adt_def(enum_did).variant_with_ctor_id(variant_ctor_did)
2084             }
2085             Res::Def(DefKind::Ctor(CtorOf::Struct, ..), ctor_did) => {
2086                 let struct_did = self.parent(ctor_did).expect("struct ctor has no parent");
2087                 self.adt_def(struct_did).non_enum_variant()
2088             }
2089             _ => bug!("expect_variant_res used with unexpected res {:?}", res),
2090         }
2091     }
2092
2093     /// Returns the possibly-auto-generated MIR of a `(DefId, Subst)` pair.
2094     pub fn instance_mir(self, instance: ty::InstanceDef<'tcx>) -> &'tcx Body<'tcx> {
2095         match instance {
2096             ty::InstanceDef::Item(def) => match self.def_kind(def.did) {
2097                 DefKind::Const
2098                 | DefKind::Static
2099                 | DefKind::AssocConst
2100                 | DefKind::Ctor(..)
2101                 | DefKind::AnonConst
2102                 | DefKind::InlineConst => self.mir_for_ctfe_opt_const_arg(def),
2103                 // If the caller wants `mir_for_ctfe` of a function they should not be using
2104                 // `instance_mir`, so we'll assume const fn also wants the optimized version.
2105                 _ => {
2106                     assert_eq!(def.const_param_did, None);
2107                     self.optimized_mir(def.did)
2108                 }
2109             },
2110             ty::InstanceDef::VtableShim(..)
2111             | ty::InstanceDef::ReifyShim(..)
2112             | ty::InstanceDef::Intrinsic(..)
2113             | ty::InstanceDef::FnPtrShim(..)
2114             | ty::InstanceDef::Virtual(..)
2115             | ty::InstanceDef::ClosureOnceShim { .. }
2116             | ty::InstanceDef::DropGlue(..)
2117             | ty::InstanceDef::CloneShim(..) => self.mir_shims(instance),
2118         }
2119     }
2120
2121     /// Gets the attributes of a definition.
2122     pub fn get_attrs(self, did: DefId) -> Attributes<'tcx> {
2123         if let Some(did) = did.as_local() {
2124             self.hir().attrs(self.hir().local_def_id_to_hir_id(did))
2125         } else {
2126             self.item_attrs(did)
2127         }
2128     }
2129
2130     /// Determines whether an item is annotated with an attribute.
2131     pub fn has_attr(self, did: DefId, attr: Symbol) -> bool {
2132         self.sess.contains_name(&self.get_attrs(did), attr)
2133     }
2134
2135     /// Returns `true` if this is an `auto trait`.
2136     pub fn trait_is_auto(self, trait_def_id: DefId) -> bool {
2137         self.trait_def(trait_def_id).has_auto_impl
2138     }
2139
2140     /// Returns layout of a generator. Layout might be unavailable if the
2141     /// generator is tainted by errors.
2142     pub fn generator_layout(self, def_id: DefId) -> Option<&'tcx GeneratorLayout<'tcx>> {
2143         self.optimized_mir(def_id).generator_layout()
2144     }
2145
2146     /// Given the `DefId` of an impl, returns the `DefId` of the trait it implements.
2147     /// If it implements no trait, returns `None`.
2148     pub fn trait_id_of_impl(self, def_id: DefId) -> Option<DefId> {
2149         self.impl_trait_ref(def_id).map(|tr| tr.def_id)
2150     }
2151
2152     /// If the given defid describes a method belonging to an impl, returns the
2153     /// `DefId` of the impl that the method belongs to; otherwise, returns `None`.
2154     pub fn impl_of_method(self, def_id: DefId) -> Option<DefId> {
2155         self.opt_associated_item(def_id).and_then(|trait_item| match trait_item.container {
2156             TraitContainer(_) => None,
2157             ImplContainer(def_id) => Some(def_id),
2158         })
2159     }
2160
2161     /// Looks up the span of `impl_did` if the impl is local; otherwise returns `Err`
2162     /// with the name of the crate containing the impl.
2163     pub fn span_of_impl(self, impl_did: DefId) -> Result<Span, Symbol> {
2164         if let Some(impl_did) = impl_did.as_local() {
2165             Ok(self.def_span(impl_did))
2166         } else {
2167             Err(self.crate_name(impl_did.krate))
2168         }
2169     }
2170
2171     /// Hygienically compares a use-site name (`use_name`) for a field or an associated item with
2172     /// its supposed definition name (`def_name`). The method also needs `DefId` of the supposed
2173     /// definition's parent/scope to perform comparison.
2174     pub fn hygienic_eq(self, use_name: Ident, def_name: Ident, def_parent_def_id: DefId) -> bool {
2175         // We could use `Ident::eq` here, but we deliberately don't. The name
2176         // comparison fails frequently, and we want to avoid the expensive
2177         // `normalize_to_macros_2_0()` calls required for the span comparison whenever possible.
2178         use_name.name == def_name.name
2179             && use_name
2180                 .span
2181                 .ctxt()
2182                 .hygienic_eq(def_name.span.ctxt(), self.expn_that_defined(def_parent_def_id))
2183     }
2184
2185     pub fn adjust_ident(self, mut ident: Ident, scope: DefId) -> Ident {
2186         ident.span.normalize_to_macros_2_0_and_adjust(self.expn_that_defined(scope));
2187         ident
2188     }
2189
2190     pub fn adjust_ident_and_get_scope(
2191         self,
2192         mut ident: Ident,
2193         scope: DefId,
2194         block: hir::HirId,
2195     ) -> (Ident, DefId) {
2196         let scope = ident
2197             .span
2198             .normalize_to_macros_2_0_and_adjust(self.expn_that_defined(scope))
2199             .and_then(|actual_expansion| actual_expansion.expn_data().parent_module)
2200             .unwrap_or_else(|| self.parent_module(block).to_def_id());
2201         (ident, scope)
2202     }
2203
2204     pub fn is_object_safe(self, key: DefId) -> bool {
2205         self.object_safety_violations(key).is_empty()
2206     }
2207 }
2208
2209 /// Yields the parent function's `LocalDefId` if `def_id` is an `impl Trait` definition.
2210 pub fn is_impl_trait_defn(tcx: TyCtxt<'_>, def_id: DefId) -> Option<LocalDefId> {
2211     let def_id = def_id.as_local()?;
2212     if let Node::Item(item) = tcx.hir().get_by_def_id(def_id) {
2213         if let hir::ItemKind::OpaqueTy(ref opaque_ty) = item.kind {
2214             return match opaque_ty.origin {
2215                 hir::OpaqueTyOrigin::FnReturn(parent) | hir::OpaqueTyOrigin::AsyncFn(parent) => {
2216                     Some(parent)
2217                 }
2218                 hir::OpaqueTyOrigin::TyAlias => None,
2219             };
2220         }
2221     }
2222     None
2223 }
2224
2225 pub fn int_ty(ity: ast::IntTy) -> IntTy {
2226     match ity {
2227         ast::IntTy::Isize => IntTy::Isize,
2228         ast::IntTy::I8 => IntTy::I8,
2229         ast::IntTy::I16 => IntTy::I16,
2230         ast::IntTy::I32 => IntTy::I32,
2231         ast::IntTy::I64 => IntTy::I64,
2232         ast::IntTy::I128 => IntTy::I128,
2233     }
2234 }
2235
2236 pub fn uint_ty(uty: ast::UintTy) -> UintTy {
2237     match uty {
2238         ast::UintTy::Usize => UintTy::Usize,
2239         ast::UintTy::U8 => UintTy::U8,
2240         ast::UintTy::U16 => UintTy::U16,
2241         ast::UintTy::U32 => UintTy::U32,
2242         ast::UintTy::U64 => UintTy::U64,
2243         ast::UintTy::U128 => UintTy::U128,
2244     }
2245 }
2246
2247 pub fn float_ty(fty: ast::FloatTy) -> FloatTy {
2248     match fty {
2249         ast::FloatTy::F32 => FloatTy::F32,
2250         ast::FloatTy::F64 => FloatTy::F64,
2251     }
2252 }
2253
2254 pub fn ast_int_ty(ity: IntTy) -> ast::IntTy {
2255     match ity {
2256         IntTy::Isize => ast::IntTy::Isize,
2257         IntTy::I8 => ast::IntTy::I8,
2258         IntTy::I16 => ast::IntTy::I16,
2259         IntTy::I32 => ast::IntTy::I32,
2260         IntTy::I64 => ast::IntTy::I64,
2261         IntTy::I128 => ast::IntTy::I128,
2262     }
2263 }
2264
2265 pub fn ast_uint_ty(uty: UintTy) -> ast::UintTy {
2266     match uty {
2267         UintTy::Usize => ast::UintTy::Usize,
2268         UintTy::U8 => ast::UintTy::U8,
2269         UintTy::U16 => ast::UintTy::U16,
2270         UintTy::U32 => ast::UintTy::U32,
2271         UintTy::U64 => ast::UintTy::U64,
2272         UintTy::U128 => ast::UintTy::U128,
2273     }
2274 }
2275
2276 pub fn provide(providers: &mut ty::query::Providers) {
2277     closure::provide(providers);
2278     context::provide(providers);
2279     erase_regions::provide(providers);
2280     layout::provide(providers);
2281     util::provide(providers);
2282     print::provide(providers);
2283     super::util::bug::provide(providers);
2284     super::middle::provide(providers);
2285     *providers = ty::query::Providers {
2286         trait_impls_of: trait_def::trait_impls_of_provider,
2287         type_uninhabited_from: inhabitedness::type_uninhabited_from,
2288         const_param_default: consts::const_param_default,
2289         vtable_allocation: vtable::vtable_allocation_provider,
2290         ..*providers
2291     };
2292 }
2293
2294 /// A map for the local crate mapping each type to a vector of its
2295 /// inherent impls. This is not meant to be used outside of coherence;
2296 /// rather, you should request the vector for a specific type via
2297 /// `tcx.inherent_impls(def_id)` so as to minimize your dependencies
2298 /// (constructing this map requires touching the entire crate).
2299 #[derive(Clone, Debug, Default, HashStable)]
2300 pub struct CrateInherentImpls {
2301     pub inherent_impls: LocalDefIdMap<Vec<DefId>>,
2302 }
2303
2304 #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, TyEncodable, HashStable)]
2305 pub struct SymbolName<'tcx> {
2306     /// `&str` gives a consistent ordering, which ensures reproducible builds.
2307     pub name: &'tcx str,
2308 }
2309
2310 impl<'tcx> SymbolName<'tcx> {
2311     pub fn new(tcx: TyCtxt<'tcx>, name: &str) -> SymbolName<'tcx> {
2312         SymbolName {
2313             name: unsafe { str::from_utf8_unchecked(tcx.arena.alloc_slice(name.as_bytes())) },
2314         }
2315     }
2316 }
2317
2318 impl<'tcx> fmt::Display for SymbolName<'tcx> {
2319     fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2320         fmt::Display::fmt(&self.name, fmt)
2321     }
2322 }
2323
2324 impl<'tcx> fmt::Debug for SymbolName<'tcx> {
2325     fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2326         fmt::Display::fmt(&self.name, fmt)
2327     }
2328 }
2329
2330 #[derive(Debug, Default, Copy, Clone)]
2331 pub struct FoundRelationships {
2332     /// This is true if we identified that this Ty (`?T`) is found in a `?T: Foo`
2333     /// obligation, where:
2334     ///
2335     ///  * `Foo` is not `Sized`
2336     ///  * `(): Foo` may be satisfied
2337     pub self_in_trait: bool,
2338     /// This is true if we identified that this Ty (`?T`) is found in a `<_ as
2339     /// _>::AssocType = ?T`
2340     pub output: bool,
2341 }