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