Skip to main content

rustc_middle/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#![allow(rustc::usage_of_ty_tykind)]
13
14use std::fmt::Debug;
15use std::hash::{Hash, Hasher};
16use std::marker::PhantomData;
17use std::num::NonZero;
18use std::ptr::NonNull;
19use std::{assert_matches, fmt, iter, str};
20
21pub use adt::*;
22pub use assoc::*;
23pub use generic_args::{GenericArgKind, TermKind, *};
24pub use generics::*;
25pub use intrinsic::IntrinsicDef;
26use rustc_abi::{
27    Align, FieldIdx, Integer, IntegerType, ReprFlags, ReprOptions, ScalableElt, VariantIdx,
28};
29use rustc_ast as ast;
30use rustc_ast::AttrVec;
31use rustc_ast::expand::typetree::{FncTree, Kind, Type, TypeTree};
32use rustc_ast::node_id::NodeMap;
33pub use rustc_ast_ir::{Movability, Mutability, try_visit};
34use rustc_data_structures::fx::{FxHashSet, FxIndexMap, FxIndexSet};
35use rustc_data_structures::intern::Interned;
36use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
37use rustc_data_structures::steal::Steal;
38use rustc_data_structures::unord::{UnordMap, UnordSet};
39use rustc_errors::{Diag, ErrorGuaranteed, LintBuffer};
40use rustc_hir as hir;
41use rustc_hir::attrs::StrippedCfgItem;
42use rustc_hir::def::{CtorKind, CtorOf, DefKind, DocLinkResMap, LifetimeRes, Res};
43use rustc_hir::def_id::{CrateNum, DefId, DefIdMap, LocalDefId, LocalDefIdMap};
44use rustc_hir::{LangItem, attrs as attr, find_attr};
45use rustc_index::IndexVec;
46use rustc_index::bit_set::BitMatrix;
47use rustc_macros::{
48    BlobDecodable, Decodable, Encodable, HashStable, TyDecodable, TyEncodable, TypeFoldable,
49    TypeVisitable, extension,
50};
51use rustc_serialize::{Decodable, Encodable};
52use rustc_session::config::OptLevel;
53pub use rustc_session::lint::RegisteredTools;
54use rustc_span::hygiene::MacroKind;
55use rustc_span::{DUMMY_SP, ExpnId, ExpnKind, Ident, Span, Symbol};
56use rustc_target::callconv::FnAbi;
57pub use rustc_type_ir::data_structures::{DelayedMap, DelayedSet};
58pub use rustc_type_ir::fast_reject::DeepRejectCtxt;
59#[allow(
60    hidden_glob_reexports,
61    rustc::usage_of_type_ir_inherent,
62    rustc::non_glob_import_of_type_ir_inherent
63)]
64use rustc_type_ir::inherent;
65pub use rustc_type_ir::relate::VarianceDiagInfo;
66pub use rustc_type_ir::solve::{CandidatePreferenceMode, SizedTraitKind};
67pub use rustc_type_ir::*;
68#[allow(hidden_glob_reexports, unused_imports)]
69use rustc_type_ir::{InferCtxtLike, Interner};
70use tracing::{debug, instrument, trace};
71pub use vtable::*;
72
73pub use self::closure::{
74    BorrowKind, CAPTURE_STRUCT_LOCAL, CaptureInfo, CapturedPlace, ClosureTypeInfo,
75    MinCaptureInformationMap, MinCaptureList, RootVariableMinCaptureList, UpvarCapture, UpvarId,
76    UpvarPath, analyze_coroutine_closure_captures, is_ancestor_or_same_capture,
77    place_to_string_for_capture,
78};
79pub use self::consts::{
80    AtomicOrdering, Const, ConstInt, ConstKind, ConstToValTreeResult, Expr, ExprKind,
81    LitToConstInput, ScalarInt, SimdAlign, UnevaluatedConst, ValTree, ValTreeKindExt, Value,
82    const_lit_matches_ty,
83};
84pub use self::context::{
85    CtxtInterners, CurrentGcx, Feed, FreeRegionInfo, GlobalCtxt, Lift, TyCtxt, TyCtxtFeed, tls,
86};
87pub use self::fold::*;
88pub use self::instance::{Instance, InstanceKind, ReifyReason, UnusedGenericParams};
89pub use self::list::{List, ListWithCachedTypeInfo};
90pub use self::opaque_types::OpaqueTypeKey;
91pub use self::pattern::{Pattern, PatternKind};
92pub use self::predicate::{
93    AliasTerm, ArgOutlivesPredicate, Clause, ClauseKind, CoercePredicate, ExistentialPredicate,
94    ExistentialPredicateStableCmpExt, ExistentialProjection, ExistentialTraitRef,
95    HostEffectPredicate, NormalizesTo, OutlivesPredicate, PolyCoercePredicate,
96    PolyExistentialPredicate, PolyExistentialProjection, PolyExistentialTraitRef,
97    PolyProjectionPredicate, PolyRegionOutlivesPredicate, PolySubtypePredicate, PolyTraitPredicate,
98    PolyTraitRef, PolyTypeOutlivesPredicate, Predicate, PredicateKind, ProjectionPredicate,
99    RegionOutlivesPredicate, SubtypePredicate, TraitPredicate, TraitRef, TypeOutlivesPredicate,
100};
101pub use self::region::{
102    EarlyParamRegion, LateParamRegion, LateParamRegionKind, Region, RegionKind, RegionVid,
103};
104pub use self::sty::{
105    AliasTy, Article, Binder, BoundConst, BoundRegion, BoundRegionKind, BoundTy, BoundTyKind,
106    BoundVariableKind, CanonicalPolyFnSig, CoroutineArgsExt, EarlyBinder, FnSig, InlineConstArgs,
107    InlineConstArgsParts, ParamConst, ParamTy, PlaceholderConst, PlaceholderRegion,
108    PlaceholderType, PolyFnSig, TyKind, TypeAndMut, TypingMode, UpvarArgs,
109};
110pub use self::trait_def::TraitDef;
111pub use self::typeck_results::{
112    CanonicalUserType, CanonicalUserTypeAnnotation, CanonicalUserTypeAnnotations, IsIdentity,
113    Rust2024IncompatiblePatInfo, TypeckResults, UserType, UserTypeAnnotationIndex, UserTypeKind,
114};
115use crate::error::{OpaqueHiddenTypeMismatch, TypeMismatchReason};
116use crate::ich::StableHashingContext;
117use crate::metadata::{AmbigModChild, ModChild};
118use crate::middle::privacy::EffectiveVisibilities;
119use crate::mir::{Body, CoroutineLayout, CoroutineSavedLocal, SourceInfo};
120use crate::query::{IntoQueryParam, Providers};
121use crate::ty;
122use crate::ty::codec::{TyDecoder, TyEncoder};
123pub use crate::ty::diagnostics::*;
124use crate::ty::fast_reject::SimplifiedType;
125use crate::ty::layout::{FnAbiError, LayoutError};
126use crate::ty::util::Discr;
127use crate::ty::walk::TypeWalker;
128
129pub mod abstract_const;
130pub mod adjustment;
131pub mod cast;
132pub mod codec;
133pub mod error;
134pub mod fast_reject;
135pub mod inhabitedness;
136pub mod layout;
137pub mod normalize_erasing_regions;
138pub mod offload_meta;
139pub mod pattern;
140pub mod print;
141pub mod relate;
142pub mod significant_drop_order;
143pub mod trait_def;
144pub mod util;
145pub mod vtable;
146
147mod adt;
148mod assoc;
149mod closure;
150mod consts;
151mod context;
152mod diagnostics;
153mod elaborate_impl;
154mod erase_regions;
155mod fold;
156mod generic_args;
157mod generics;
158mod impls_ty;
159mod instance;
160mod intrinsic;
161mod list;
162mod opaque_types;
163mod predicate;
164mod region;
165mod structural_impls;
166#[allow(hidden_glob_reexports)]
167mod sty;
168mod typeck_results;
169mod visit;
170
171// Data types
172
173#[derive(#[automatically_derived]
impl ::core::fmt::Debug for ResolverGlobalCtxt {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["visibilities_for_hashing", "expn_that_defined",
                        "effective_visibilities", "extern_crate_map",
                        "maybe_unused_trait_imports", "module_children",
                        "ambig_module_children", "glob_map", "main_def",
                        "trait_impls", "proc_macros",
                        "confused_type_with_std_module", "doc_link_resolutions",
                        "doc_link_traits_in_scope", "all_macro_rules",
                        "stripped_cfg_items"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.visibilities_for_hashing, &self.expn_that_defined,
                        &self.effective_visibilities, &self.extern_crate_map,
                        &self.maybe_unused_trait_imports, &self.module_children,
                        &self.ambig_module_children, &self.glob_map, &self.main_def,
                        &self.trait_impls, &self.proc_macros,
                        &self.confused_type_with_std_module,
                        &self.doc_link_resolutions, &self.doc_link_traits_in_scope,
                        &self.all_macro_rules, &&self.stripped_cfg_items];
        ::core::fmt::Formatter::debug_struct_fields_finish(f,
            "ResolverGlobalCtxt", names, values)
    }
}Debug, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for ResolverGlobalCtxt {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    ResolverGlobalCtxt {
                        visibilities_for_hashing: ref __binding_0,
                        expn_that_defined: ref __binding_1,
                        effective_visibilities: ref __binding_2,
                        extern_crate_map: ref __binding_3,
                        maybe_unused_trait_imports: ref __binding_4,
                        module_children: ref __binding_5,
                        ambig_module_children: ref __binding_6,
                        glob_map: ref __binding_7,
                        main_def: ref __binding_8,
                        trait_impls: ref __binding_9,
                        proc_macros: ref __binding_10,
                        confused_type_with_std_module: ref __binding_11,
                        doc_link_resolutions: ref __binding_12,
                        doc_link_traits_in_scope: ref __binding_13,
                        all_macro_rules: ref __binding_14,
                        stripped_cfg_items: ref __binding_15 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                        { __binding_4.hash_stable(__hcx, __hasher); }
                        { __binding_5.hash_stable(__hcx, __hasher); }
                        { __binding_6.hash_stable(__hcx, __hasher); }
                        { __binding_7.hash_stable(__hcx, __hasher); }
                        { __binding_8.hash_stable(__hcx, __hasher); }
                        { __binding_9.hash_stable(__hcx, __hasher); }
                        { __binding_10.hash_stable(__hcx, __hasher); }
                        { __binding_11.hash_stable(__hcx, __hasher); }
                        { __binding_12.hash_stable(__hcx, __hasher); }
                        { __binding_13.hash_stable(__hcx, __hasher); }
                        { __binding_14.hash_stable(__hcx, __hasher); }
                        { __binding_15.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
174pub struct ResolverGlobalCtxt {
175    pub visibilities_for_hashing: Vec<(LocalDefId, Visibility)>,
176    /// Item with a given `LocalDefId` was defined during macro expansion with ID `ExpnId`.
177    pub expn_that_defined: UnordMap<LocalDefId, ExpnId>,
178    pub effective_visibilities: EffectiveVisibilities,
179    pub extern_crate_map: UnordMap<LocalDefId, CrateNum>,
180    pub maybe_unused_trait_imports: FxIndexSet<LocalDefId>,
181    pub module_children: LocalDefIdMap<Vec<ModChild>>,
182    pub ambig_module_children: LocalDefIdMap<Vec<AmbigModChild>>,
183    pub glob_map: FxIndexMap<LocalDefId, FxIndexSet<Symbol>>,
184    pub main_def: Option<MainDefinition>,
185    pub trait_impls: FxIndexMap<DefId, Vec<LocalDefId>>,
186    /// A list of proc macro LocalDefIds, written out in the order in which
187    /// they are declared in the static array generated by proc_macro_harness.
188    pub proc_macros: Vec<LocalDefId>,
189    /// Mapping from ident span to path span for paths that don't exist as written, but that
190    /// exist under `std`. For example, wrote `str::from_utf8` instead of `std::str::from_utf8`.
191    pub confused_type_with_std_module: FxIndexMap<Span, Span>,
192    pub doc_link_resolutions: FxIndexMap<LocalDefId, DocLinkResMap>,
193    pub doc_link_traits_in_scope: FxIndexMap<LocalDefId, Vec<DefId>>,
194    pub all_macro_rules: UnordSet<Symbol>,
195    pub stripped_cfg_items: Vec<StrippedCfgItem>,
196}
197
198/// Resolutions that should only be used for lowering.
199/// This struct is meant to be consumed by lowering.
200#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for ResolverAstLowering<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["partial_res_map", "import_res_map", "label_res_map",
                        "lifetimes_res_map", "extra_lifetime_params_map",
                        "next_node_id", "node_id_to_def_id", "trait_map",
                        "lifetime_elision_allowed", "lint_buffer",
                        "delegation_fn_sigs", "delegation_infos"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.partial_res_map, &self.import_res_map,
                        &self.label_res_map, &self.lifetimes_res_map,
                        &self.extra_lifetime_params_map, &self.next_node_id,
                        &self.node_id_to_def_id, &self.trait_map,
                        &self.lifetime_elision_allowed, &self.lint_buffer,
                        &self.delegation_fn_sigs, &&self.delegation_infos];
        ::core::fmt::Formatter::debug_struct_fields_finish(f,
            "ResolverAstLowering", names, values)
    }
}Debug)]
201pub struct ResolverAstLowering<'tcx> {
202    /// Resolutions for nodes that have a single resolution.
203    pub partial_res_map: NodeMap<hir::def::PartialRes>,
204    /// Resolutions for import nodes, which have multiple resolutions in different namespaces.
205    pub import_res_map: NodeMap<hir::def::PerNS<Option<Res<ast::NodeId>>>>,
206    /// Resolutions for labels (node IDs of their corresponding blocks or loops).
207    pub label_res_map: NodeMap<ast::NodeId>,
208    /// Resolutions for lifetimes.
209    pub lifetimes_res_map: NodeMap<LifetimeRes>,
210    /// Lifetime parameters that lowering will have to introduce.
211    pub extra_lifetime_params_map: NodeMap<Vec<(Ident, ast::NodeId, LifetimeRes)>>,
212
213    pub next_node_id: ast::NodeId,
214
215    pub node_id_to_def_id: NodeMap<LocalDefId>,
216
217    pub trait_map: NodeMap<&'tcx [hir::TraitCandidate<'tcx>]>,
218    /// List functions and methods for which lifetime elision was successful.
219    pub lifetime_elision_allowed: FxHashSet<ast::NodeId>,
220
221    /// Lints that were emitted by the resolver and early lints.
222    pub lint_buffer: Steal<LintBuffer>,
223
224    /// Information about functions signatures for delegation items expansion
225    pub delegation_fn_sigs: LocalDefIdMap<DelegationFnSig>,
226    // Information about delegations which is used when handling recursive delegations
227    pub delegation_infos: LocalDefIdMap<DelegationInfo>,
228}
229
230bitflags::bitflags! {
231    #[derive(#[automatically_derived]
impl ::core::clone::Clone for DelegationFnSigAttrs {
    #[inline]
    fn clone(&self) -> DelegationFnSigAttrs {
        let _:
                ::core::clone::AssertParamIsClone<<DelegationFnSigAttrs as
                ::bitflags::__private::PublicFlags>::Internal>;
        *self
    }
}
impl DelegationFnSigAttrs {
    #[allow(deprecated, non_upper_case_globals,)]
    pub const TARGET_FEATURE: Self = Self::from_bits_retain(1 << 0);
    #[allow(deprecated, non_upper_case_globals,)]
    pub const MUST_USE: Self = Self::from_bits_retain(1 << 1);
}
impl ::bitflags::Flags for DelegationFnSigAttrs {
    const FLAGS: &'static [::bitflags::Flag<DelegationFnSigAttrs>] =
        &[{

                        #[allow(deprecated, non_upper_case_globals,)]
                        ::bitflags::Flag::new("TARGET_FEATURE",
                            DelegationFnSigAttrs::TARGET_FEATURE)
                    },
                    {

                        #[allow(deprecated, non_upper_case_globals,)]
                        ::bitflags::Flag::new("MUST_USE",
                            DelegationFnSigAttrs::MUST_USE)
                    }];
    type Bits = u8;
    fn bits(&self) -> u8 { DelegationFnSigAttrs::bits(self) }
    fn from_bits_retain(bits: u8) -> DelegationFnSigAttrs {
        DelegationFnSigAttrs::from_bits_retain(bits)
    }
}
#[allow(dead_code, deprecated, unused_doc_comments, unused_attributes,
unused_mut, unused_imports, non_upper_case_globals, clippy ::
assign_op_pattern, clippy :: indexing_slicing, clippy :: same_name_method,
clippy :: iter_without_into_iter,)]
const _: () =
    {
        #[repr(transparent)]
        pub struct InternalBitFlags(u8);
        #[automatically_derived]
        #[doc(hidden)]
        unsafe impl ::core::clone::TrivialClone for InternalBitFlags { }
        #[automatically_derived]
        impl ::core::clone::Clone for InternalBitFlags {
            #[inline]
            fn clone(&self) -> InternalBitFlags {
                let _: ::core::clone::AssertParamIsClone<u8>;
                *self
            }
        }
        #[automatically_derived]
        impl ::core::marker::Copy for InternalBitFlags { }
        #[automatically_derived]
        impl ::core::marker::StructuralPartialEq for InternalBitFlags { }
        #[automatically_derived]
        impl ::core::cmp::PartialEq for InternalBitFlags {
            #[inline]
            fn eq(&self, other: &InternalBitFlags) -> bool {
                self.0 == other.0
            }
        }
        #[automatically_derived]
        impl ::core::cmp::Eq for InternalBitFlags {
            #[inline]
            #[doc(hidden)]
            #[coverage(off)]
            fn assert_fields_are_eq(&self) {
                let _: ::core::cmp::AssertParamIsEq<u8>;
            }
        }
        #[automatically_derived]
        impl ::core::cmp::PartialOrd for InternalBitFlags {
            #[inline]
            fn partial_cmp(&self, other: &InternalBitFlags)
                -> ::core::option::Option<::core::cmp::Ordering> {
                ::core::cmp::PartialOrd::partial_cmp(&self.0, &other.0)
            }
        }
        #[automatically_derived]
        impl ::core::cmp::Ord for InternalBitFlags {
            #[inline]
            fn cmp(&self, other: &InternalBitFlags) -> ::core::cmp::Ordering {
                ::core::cmp::Ord::cmp(&self.0, &other.0)
            }
        }
        #[automatically_derived]
        impl ::core::hash::Hash for InternalBitFlags {
            #[inline]
            fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
                ::core::hash::Hash::hash(&self.0, state)
            }
        }
        impl ::bitflags::__private::PublicFlags for DelegationFnSigAttrs {
            type Primitive = u8;
            type Internal = InternalBitFlags;
        }
        impl ::bitflags::__private::core::default::Default for
            InternalBitFlags {
            #[inline]
            fn default() -> Self { InternalBitFlags::empty() }
        }
        impl ::bitflags::__private::core::fmt::Debug for InternalBitFlags {
            fn fmt(&self,
                f: &mut ::bitflags::__private::core::fmt::Formatter<'_>)
                -> ::bitflags::__private::core::fmt::Result {
                if self.is_empty() {
                    f.write_fmt(format_args!("{0:#x}",
                            <u8 as ::bitflags::Bits>::EMPTY))
                } else {
                    ::bitflags::__private::core::fmt::Display::fmt(self, f)
                }
            }
        }
        impl ::bitflags::__private::core::fmt::Display for InternalBitFlags {
            fn fmt(&self,
                f: &mut ::bitflags::__private::core::fmt::Formatter<'_>)
                -> ::bitflags::__private::core::fmt::Result {
                ::bitflags::parser::to_writer(&DelegationFnSigAttrs(*self), f)
            }
        }
        impl ::bitflags::__private::core::str::FromStr for InternalBitFlags {
            type Err = ::bitflags::parser::ParseError;
            fn from_str(s: &str)
                ->
                    ::bitflags::__private::core::result::Result<Self,
                    Self::Err> {
                ::bitflags::parser::from_str::<DelegationFnSigAttrs>(s).map(|flags|
                        flags.0)
            }
        }
        impl ::bitflags::__private::core::convert::AsRef<u8> for
            InternalBitFlags {
            fn as_ref(&self) -> &u8 { &self.0 }
        }
        impl ::bitflags::__private::core::convert::From<u8> for
            InternalBitFlags {
            fn from(bits: u8) -> Self { Self::from_bits_retain(bits) }
        }
        #[allow(dead_code, deprecated, unused_attributes)]
        impl InternalBitFlags {
            /// Get a flags value with all bits unset.
            #[inline]
            pub const fn empty() -> Self {
                Self(<u8 as ::bitflags::Bits>::EMPTY)
            }
            /// Get a flags value with all known bits set.
            #[inline]
            pub const fn all() -> Self {
                let mut truncated = <u8 as ::bitflags::Bits>::EMPTY;
                let mut i = 0;
                {
                    {
                        let flag =
                            <DelegationFnSigAttrs as
                                            ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <DelegationFnSigAttrs as
                                            ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                let _ = i;
                Self(truncated)
            }
            /// Get the underlying bits value.
            ///
            /// The returned value is exactly the bits set in this flags value.
            #[inline]
            pub const fn bits(&self) -> u8 { self.0 }
            /// Convert from a bits value.
            ///
            /// This method will return `None` if any unknown bits are set.
            #[inline]
            pub const fn from_bits(bits: u8)
                -> ::bitflags::__private::core::option::Option<Self> {
                let truncated = Self::from_bits_truncate(bits).0;
                if truncated == bits {
                    ::bitflags::__private::core::option::Option::Some(Self(bits))
                } else { ::bitflags::__private::core::option::Option::None }
            }
            /// Convert from a bits value, unsetting any unknown bits.
            #[inline]
            pub const fn from_bits_truncate(bits: u8) -> Self {
                Self(bits & Self::all().0)
            }
            /// Convert from a bits value exactly.
            #[inline]
            pub const fn from_bits_retain(bits: u8) -> Self { Self(bits) }
            /// Get a flags value with the bits of a flag with the given name set.
            ///
            /// This method will return `None` if `name` is empty or doesn't
            /// correspond to any named flag.
            #[inline]
            pub fn from_name(name: &str)
                -> ::bitflags::__private::core::option::Option<Self> {
                {
                    if name == "TARGET_FEATURE" {
                        return ::bitflags::__private::core::option::Option::Some(Self(DelegationFnSigAttrs::TARGET_FEATURE.bits()));
                    }
                };
                ;
                {
                    if name == "MUST_USE" {
                        return ::bitflags::__private::core::option::Option::Some(Self(DelegationFnSigAttrs::MUST_USE.bits()));
                    }
                };
                ;
                let _ = name;
                ::bitflags::__private::core::option::Option::None
            }
            /// Whether all bits in this flags value are unset.
            #[inline]
            pub const fn is_empty(&self) -> bool {
                self.0 == <u8 as ::bitflags::Bits>::EMPTY
            }
            /// Whether all known bits in this flags value are set.
            #[inline]
            pub const fn is_all(&self) -> bool {
                Self::all().0 | self.0 == self.0
            }
            /// Whether any set bits in a source flags value are also set in a target flags value.
            #[inline]
            pub const fn intersects(&self, other: Self) -> bool {
                self.0 & other.0 != <u8 as ::bitflags::Bits>::EMPTY
            }
            /// Whether all set bits in a source flags value are also set in a target flags value.
            #[inline]
            pub const fn contains(&self, other: Self) -> bool {
                self.0 & other.0 == other.0
            }
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            pub fn insert(&mut self, other: Self) {
                *self = Self(self.0).union(other);
            }
            /// The intersection of a source flags value with the complement of a target flags
            /// value (`&!`).
            ///
            /// This method is not equivalent to `self & !other` when `other` has unknown bits set.
            /// `remove` won't truncate `other`, but the `!` operator will.
            #[inline]
            pub fn remove(&mut self, other: Self) {
                *self = Self(self.0).difference(other);
            }
            /// The bitwise exclusive-or (`^`) of the bits in two flags values.
            #[inline]
            pub fn toggle(&mut self, other: Self) {
                *self = Self(self.0).symmetric_difference(other);
            }
            /// Call `insert` when `value` is `true` or `remove` when `value` is `false`.
            #[inline]
            pub fn set(&mut self, other: Self, value: bool) {
                if value { self.insert(other); } else { self.remove(other); }
            }
            /// The bitwise and (`&`) of the bits in two flags values.
            #[inline]
            #[must_use]
            pub const fn intersection(self, other: Self) -> Self {
                Self(self.0 & other.0)
            }
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            #[must_use]
            pub const fn union(self, other: Self) -> Self {
                Self(self.0 | other.0)
            }
            /// The intersection of a source flags value with the complement of a target flags
            /// value (`&!`).
            ///
            /// This method is not equivalent to `self & !other` when `other` has unknown bits set.
            /// `difference` won't truncate `other`, but the `!` operator will.
            #[inline]
            #[must_use]
            pub const fn difference(self, other: Self) -> Self {
                Self(self.0 & !other.0)
            }
            /// The bitwise exclusive-or (`^`) of the bits in two flags values.
            #[inline]
            #[must_use]
            pub const fn symmetric_difference(self, other: Self) -> Self {
                Self(self.0 ^ other.0)
            }
            /// The bitwise negation (`!`) of the bits in a flags value, truncating the result.
            #[inline]
            #[must_use]
            pub const fn complement(self) -> Self {
                Self::from_bits_truncate(!self.0)
            }
        }
        impl ::bitflags::__private::core::fmt::Binary for InternalBitFlags {
            fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
                -> ::bitflags::__private::core::fmt::Result {
                let inner = self.0;
                ::bitflags::__private::core::fmt::Binary::fmt(&inner, f)
            }
        }
        impl ::bitflags::__private::core::fmt::Octal for InternalBitFlags {
            fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
                -> ::bitflags::__private::core::fmt::Result {
                let inner = self.0;
                ::bitflags::__private::core::fmt::Octal::fmt(&inner, f)
            }
        }
        impl ::bitflags::__private::core::fmt::LowerHex for InternalBitFlags {
            fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
                -> ::bitflags::__private::core::fmt::Result {
                let inner = self.0;
                ::bitflags::__private::core::fmt::LowerHex::fmt(&inner, f)
            }
        }
        impl ::bitflags::__private::core::fmt::UpperHex for InternalBitFlags {
            fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
                -> ::bitflags::__private::core::fmt::Result {
                let inner = self.0;
                ::bitflags::__private::core::fmt::UpperHex::fmt(&inner, f)
            }
        }
        impl ::bitflags::__private::core::ops::BitOr for InternalBitFlags {
            type Output = Self;
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            fn bitor(self, other: InternalBitFlags) -> Self {
                self.union(other)
            }
        }
        impl ::bitflags::__private::core::ops::BitOrAssign for
            InternalBitFlags {
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            fn bitor_assign(&mut self, other: Self) { self.insert(other); }
        }
        impl ::bitflags::__private::core::ops::BitXor for InternalBitFlags {
            type Output = Self;
            /// The bitwise exclusive-or (`^`) of the bits in two flags values.
            #[inline]
            fn bitxor(self, other: Self) -> Self {
                self.symmetric_difference(other)
            }
        }
        impl ::bitflags::__private::core::ops::BitXorAssign for
            InternalBitFlags {
            /// The bitwise exclusive-or (`^`) of the bits in two flags values.
            #[inline]
            fn bitxor_assign(&mut self, other: Self) { self.toggle(other); }
        }
        impl ::bitflags::__private::core::ops::BitAnd for InternalBitFlags {
            type Output = Self;
            /// The bitwise and (`&`) of the bits in two flags values.
            #[inline]
            fn bitand(self, other: Self) -> Self { self.intersection(other) }
        }
        impl ::bitflags::__private::core::ops::BitAndAssign for
            InternalBitFlags {
            /// The bitwise and (`&`) of the bits in two flags values.
            #[inline]
            fn bitand_assign(&mut self, other: Self) {
                *self =
                    Self::from_bits_retain(self.bits()).intersection(other);
            }
        }
        impl ::bitflags::__private::core::ops::Sub for InternalBitFlags {
            type Output = Self;
            /// The intersection of a source flags value with the complement of a target flags value (`&!`).
            ///
            /// This method is not equivalent to `self & !other` when `other` has unknown bits set.
            /// `difference` won't truncate `other`, but the `!` operator will.
            #[inline]
            fn sub(self, other: Self) -> Self { self.difference(other) }
        }
        impl ::bitflags::__private::core::ops::SubAssign for InternalBitFlags
            {
            /// The intersection of a source flags value with the complement of a target flags value (`&!`).
            ///
            /// This method is not equivalent to `self & !other` when `other` has unknown bits set.
            /// `difference` won't truncate `other`, but the `!` operator will.
            #[inline]
            fn sub_assign(&mut self, other: Self) { self.remove(other); }
        }
        impl ::bitflags::__private::core::ops::Not for InternalBitFlags {
            type Output = Self;
            /// The bitwise negation (`!`) of the bits in a flags value, truncating the result.
            #[inline]
            fn not(self) -> Self { self.complement() }
        }
        impl ::bitflags::__private::core::iter::Extend<InternalBitFlags> for
            InternalBitFlags {
            /// The bitwise or (`|`) of the bits in each flags value.
            fn extend<T: ::bitflags::__private::core::iter::IntoIterator<Item
                = Self>>(&mut self, iterator: T) {
                for item in iterator { self.insert(item) }
            }
        }
        impl ::bitflags::__private::core::iter::FromIterator<InternalBitFlags>
            for InternalBitFlags {
            /// The bitwise or (`|`) of the bits in each flags value.
            fn from_iter<T: ::bitflags::__private::core::iter::IntoIterator<Item
                = Self>>(iterator: T) -> Self {
                use ::bitflags::__private::core::iter::Extend;
                let mut result = Self::empty();
                result.extend(iterator);
                result
            }
        }
        impl InternalBitFlags {
            /// Yield a set of contained flags values.
            ///
            /// Each yielded flags value will correspond to a defined named flag. Any unknown bits
            /// will be yielded together as a final flags value.
            #[inline]
            pub const fn iter(&self)
                -> ::bitflags::iter::Iter<DelegationFnSigAttrs> {
                ::bitflags::iter::Iter::__private_const_new(<DelegationFnSigAttrs
                        as ::bitflags::Flags>::FLAGS,
                    DelegationFnSigAttrs::from_bits_retain(self.bits()),
                    DelegationFnSigAttrs::from_bits_retain(self.bits()))
            }
            /// Yield a set of contained named flags values.
            ///
            /// This method is like [`iter`](#method.iter), except only yields bits in contained named flags.
            /// Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
            #[inline]
            pub const fn iter_names(&self)
                -> ::bitflags::iter::IterNames<DelegationFnSigAttrs> {
                ::bitflags::iter::IterNames::__private_const_new(<DelegationFnSigAttrs
                        as ::bitflags::Flags>::FLAGS,
                    DelegationFnSigAttrs::from_bits_retain(self.bits()),
                    DelegationFnSigAttrs::from_bits_retain(self.bits()))
            }
        }
        impl ::bitflags::__private::core::iter::IntoIterator for
            InternalBitFlags {
            type Item = DelegationFnSigAttrs;
            type IntoIter = ::bitflags::iter::Iter<DelegationFnSigAttrs>;
            fn into_iter(self) -> Self::IntoIter { self.iter() }
        }
        impl InternalBitFlags {
            /// Returns a mutable reference to the raw value of the flags currently stored.
            #[inline]
            pub fn bits_mut(&mut self) -> &mut u8 { &mut self.0 }
        }
        #[allow(dead_code, deprecated, unused_attributes)]
        impl DelegationFnSigAttrs {
            /// Get a flags value with all bits unset.
            #[inline]
            pub const fn empty() -> Self { Self(InternalBitFlags::empty()) }
            /// Get a flags value with all known bits set.
            #[inline]
            pub const fn all() -> Self { Self(InternalBitFlags::all()) }
            /// Get the underlying bits value.
            ///
            /// The returned value is exactly the bits set in this flags value.
            #[inline]
            pub const fn bits(&self) -> u8 { self.0.bits() }
            /// Convert from a bits value.
            ///
            /// This method will return `None` if any unknown bits are set.
            #[inline]
            pub const fn from_bits(bits: u8)
                -> ::bitflags::__private::core::option::Option<Self> {
                match InternalBitFlags::from_bits(bits) {
                    ::bitflags::__private::core::option::Option::Some(bits) =>
                        ::bitflags::__private::core::option::Option::Some(Self(bits)),
                    ::bitflags::__private::core::option::Option::None =>
                        ::bitflags::__private::core::option::Option::None,
                }
            }
            /// Convert from a bits value, unsetting any unknown bits.
            #[inline]
            pub const fn from_bits_truncate(bits: u8) -> Self {
                Self(InternalBitFlags::from_bits_truncate(bits))
            }
            /// Convert from a bits value exactly.
            #[inline]
            pub const fn from_bits_retain(bits: u8) -> Self {
                Self(InternalBitFlags::from_bits_retain(bits))
            }
            /// Get a flags value with the bits of a flag with the given name set.
            ///
            /// This method will return `None` if `name` is empty or doesn't
            /// correspond to any named flag.
            #[inline]
            pub fn from_name(name: &str)
                -> ::bitflags::__private::core::option::Option<Self> {
                match InternalBitFlags::from_name(name) {
                    ::bitflags::__private::core::option::Option::Some(bits) =>
                        ::bitflags::__private::core::option::Option::Some(Self(bits)),
                    ::bitflags::__private::core::option::Option::None =>
                        ::bitflags::__private::core::option::Option::None,
                }
            }
            /// Whether all bits in this flags value are unset.
            #[inline]
            pub const fn is_empty(&self) -> bool { self.0.is_empty() }
            /// Whether all known bits in this flags value are set.
            #[inline]
            pub const fn is_all(&self) -> bool { self.0.is_all() }
            /// Whether any set bits in a source flags value are also set in a target flags value.
            #[inline]
            pub const fn intersects(&self, other: Self) -> bool {
                self.0.intersects(other.0)
            }
            /// Whether all set bits in a source flags value are also set in a target flags value.
            #[inline]
            pub const fn contains(&self, other: Self) -> bool {
                self.0.contains(other.0)
            }
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            pub fn insert(&mut self, other: Self) { self.0.insert(other.0) }
            /// The intersection of a source flags value with the complement of a target flags
            /// value (`&!`).
            ///
            /// This method is not equivalent to `self & !other` when `other` has unknown bits set.
            /// `remove` won't truncate `other`, but the `!` operator will.
            #[inline]
            pub fn remove(&mut self, other: Self) { self.0.remove(other.0) }
            /// The bitwise exclusive-or (`^`) of the bits in two flags values.
            #[inline]
            pub fn toggle(&mut self, other: Self) { self.0.toggle(other.0) }
            /// Call `insert` when `value` is `true` or `remove` when `value` is `false`.
            #[inline]
            pub fn set(&mut self, other: Self, value: bool) {
                self.0.set(other.0, value)
            }
            /// The bitwise and (`&`) of the bits in two flags values.
            #[inline]
            #[must_use]
            pub const fn intersection(self, other: Self) -> Self {
                Self(self.0.intersection(other.0))
            }
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            #[must_use]
            pub const fn union(self, other: Self) -> Self {
                Self(self.0.union(other.0))
            }
            /// The intersection of a source flags value with the complement of a target flags
            /// value (`&!`).
            ///
            /// This method is not equivalent to `self & !other` when `other` has unknown bits set.
            /// `difference` won't truncate `other`, but the `!` operator will.
            #[inline]
            #[must_use]
            pub const fn difference(self, other: Self) -> Self {
                Self(self.0.difference(other.0))
            }
            /// The bitwise exclusive-or (`^`) of the bits in two flags values.
            #[inline]
            #[must_use]
            pub const fn symmetric_difference(self, other: Self) -> Self {
                Self(self.0.symmetric_difference(other.0))
            }
            /// The bitwise negation (`!`) of the bits in a flags value, truncating the result.
            #[inline]
            #[must_use]
            pub const fn complement(self) -> Self {
                Self(self.0.complement())
            }
        }
        impl ::bitflags::__private::core::fmt::Binary for DelegationFnSigAttrs
            {
            fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
                -> ::bitflags::__private::core::fmt::Result {
                let inner = self.0;
                ::bitflags::__private::core::fmt::Binary::fmt(&inner, f)
            }
        }
        impl ::bitflags::__private::core::fmt::Octal for DelegationFnSigAttrs
            {
            fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
                -> ::bitflags::__private::core::fmt::Result {
                let inner = self.0;
                ::bitflags::__private::core::fmt::Octal::fmt(&inner, f)
            }
        }
        impl ::bitflags::__private::core::fmt::LowerHex for
            DelegationFnSigAttrs {
            fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
                -> ::bitflags::__private::core::fmt::Result {
                let inner = self.0;
                ::bitflags::__private::core::fmt::LowerHex::fmt(&inner, f)
            }
        }
        impl ::bitflags::__private::core::fmt::UpperHex for
            DelegationFnSigAttrs {
            fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
                -> ::bitflags::__private::core::fmt::Result {
                let inner = self.0;
                ::bitflags::__private::core::fmt::UpperHex::fmt(&inner, f)
            }
        }
        impl ::bitflags::__private::core::ops::BitOr for DelegationFnSigAttrs
            {
            type Output = Self;
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            fn bitor(self, other: DelegationFnSigAttrs) -> Self {
                self.union(other)
            }
        }
        impl ::bitflags::__private::core::ops::BitOrAssign for
            DelegationFnSigAttrs {
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            fn bitor_assign(&mut self, other: Self) { self.insert(other); }
        }
        impl ::bitflags::__private::core::ops::BitXor for DelegationFnSigAttrs
            {
            type Output = Self;
            /// The bitwise exclusive-or (`^`) of the bits in two flags values.
            #[inline]
            fn bitxor(self, other: Self) -> Self {
                self.symmetric_difference(other)
            }
        }
        impl ::bitflags::__private::core::ops::BitXorAssign for
            DelegationFnSigAttrs {
            /// The bitwise exclusive-or (`^`) of the bits in two flags values.
            #[inline]
            fn bitxor_assign(&mut self, other: Self) { self.toggle(other); }
        }
        impl ::bitflags::__private::core::ops::BitAnd for DelegationFnSigAttrs
            {
            type Output = Self;
            /// The bitwise and (`&`) of the bits in two flags values.
            #[inline]
            fn bitand(self, other: Self) -> Self { self.intersection(other) }
        }
        impl ::bitflags::__private::core::ops::BitAndAssign for
            DelegationFnSigAttrs {
            /// The bitwise and (`&`) of the bits in two flags values.
            #[inline]
            fn bitand_assign(&mut self, other: Self) {
                *self =
                    Self::from_bits_retain(self.bits()).intersection(other);
            }
        }
        impl ::bitflags::__private::core::ops::Sub for DelegationFnSigAttrs {
            type Output = Self;
            /// The intersection of a source flags value with the complement of a target flags value (`&!`).
            ///
            /// This method is not equivalent to `self & !other` when `other` has unknown bits set.
            /// `difference` won't truncate `other`, but the `!` operator will.
            #[inline]
            fn sub(self, other: Self) -> Self { self.difference(other) }
        }
        impl ::bitflags::__private::core::ops::SubAssign for
            DelegationFnSigAttrs {
            /// The intersection of a source flags value with the complement of a target flags value (`&!`).
            ///
            /// This method is not equivalent to `self & !other` when `other` has unknown bits set.
            /// `difference` won't truncate `other`, but the `!` operator will.
            #[inline]
            fn sub_assign(&mut self, other: Self) { self.remove(other); }
        }
        impl ::bitflags::__private::core::ops::Not for DelegationFnSigAttrs {
            type Output = Self;
            /// The bitwise negation (`!`) of the bits in a flags value, truncating the result.
            #[inline]
            fn not(self) -> Self { self.complement() }
        }
        impl ::bitflags::__private::core::iter::Extend<DelegationFnSigAttrs>
            for DelegationFnSigAttrs {
            /// The bitwise or (`|`) of the bits in each flags value.
            fn extend<T: ::bitflags::__private::core::iter::IntoIterator<Item
                = Self>>(&mut self, iterator: T) {
                for item in iterator { self.insert(item) }
            }
        }
        impl ::bitflags::__private::core::iter::FromIterator<DelegationFnSigAttrs>
            for DelegationFnSigAttrs {
            /// The bitwise or (`|`) of the bits in each flags value.
            fn from_iter<T: ::bitflags::__private::core::iter::IntoIterator<Item
                = Self>>(iterator: T) -> Self {
                use ::bitflags::__private::core::iter::Extend;
                let mut result = Self::empty();
                result.extend(iterator);
                result
            }
        }
        impl DelegationFnSigAttrs {
            /// Yield a set of contained flags values.
            ///
            /// Each yielded flags value will correspond to a defined named flag. Any unknown bits
            /// will be yielded together as a final flags value.
            #[inline]
            pub const fn iter(&self)
                -> ::bitflags::iter::Iter<DelegationFnSigAttrs> {
                ::bitflags::iter::Iter::__private_const_new(<DelegationFnSigAttrs
                        as ::bitflags::Flags>::FLAGS,
                    DelegationFnSigAttrs::from_bits_retain(self.bits()),
                    DelegationFnSigAttrs::from_bits_retain(self.bits()))
            }
            /// Yield a set of contained named flags values.
            ///
            /// This method is like [`iter`](#method.iter), except only yields bits in contained named flags.
            /// Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
            #[inline]
            pub const fn iter_names(&self)
                -> ::bitflags::iter::IterNames<DelegationFnSigAttrs> {
                ::bitflags::iter::IterNames::__private_const_new(<DelegationFnSigAttrs
                        as ::bitflags::Flags>::FLAGS,
                    DelegationFnSigAttrs::from_bits_retain(self.bits()),
                    DelegationFnSigAttrs::from_bits_retain(self.bits()))
            }
        }
        impl ::bitflags::__private::core::iter::IntoIterator for
            DelegationFnSigAttrs {
            type Item = DelegationFnSigAttrs;
            type IntoIter = ::bitflags::iter::Iter<DelegationFnSigAttrs>;
            fn into_iter(self) -> Self::IntoIter { self.iter() }
        }
    };Clone, #[automatically_derived]
impl ::core::marker::Copy for DelegationFnSigAttrs { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for DelegationFnSigAttrs {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_tuple_field1_finish(f,
            "DelegationFnSigAttrs", &&self.0)
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for DelegationFnSigAttrs {
    #[inline]
    fn eq(&self, other: &DelegationFnSigAttrs) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for DelegationFnSigAttrs {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _:
                ::core::cmp::AssertParamIsEq<<DelegationFnSigAttrs as
                ::bitflags::__private::PublicFlags>::Internal>;
    }
}Eq, #[automatically_derived]
impl ::core::hash::Hash for DelegationFnSigAttrs {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.0, state)
    }
}Hash)]
232    pub struct DelegationFnSigAttrs: u8 {
233        const TARGET_FEATURE = 1 << 0;
234        const MUST_USE = 1 << 1;
235    }
236}
237
238pub const DELEGATION_INHERIT_ATTRS_START: DelegationFnSigAttrs = DelegationFnSigAttrs::MUST_USE;
239
240#[derive(#[automatically_derived]
impl ::core::fmt::Debug for DelegationInfo {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "DelegationInfo", "resolution_node", &self.resolution_node,
            "attrs", &&self.attrs)
    }
}Debug)]
241pub struct DelegationInfo {
242    // NodeId (either delegation.id or item_id in case of a trait impl) for signature resolution,
243    // for details see https://github.com/rust-lang/rust/issues/118212#issuecomment-2160686914
244    pub resolution_node: ast::NodeId,
245    pub attrs: DelegationAttrs,
246}
247
248#[derive(#[automatically_derived]
impl ::core::fmt::Debug for DelegationAttrs {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "DelegationAttrs", "flags", &self.flags, "to_inherit",
            &&self.to_inherit)
    }
}Debug)]
249pub struct DelegationAttrs {
250    pub flags: DelegationFnSigAttrs,
251    pub to_inherit: AttrVec,
252}
253
254#[derive(#[automatically_derived]
impl ::core::fmt::Debug for DelegationFnSig {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f,
            "DelegationFnSig", "header", &self.header, "param_count",
            &self.param_count, "has_self", &self.has_self, "c_variadic",
            &self.c_variadic, "attrs", &&self.attrs)
    }
}Debug)]
255pub struct DelegationFnSig {
256    pub header: ast::FnHeader,
257    pub param_count: usize,
258    pub has_self: bool,
259    pub c_variadic: bool,
260    pub attrs: DelegationAttrs,
261}
262
263#[derive(#[automatically_derived]
impl ::core::clone::Clone for MainDefinition {
    #[inline]
    fn clone(&self) -> MainDefinition {
        let _: ::core::clone::AssertParamIsClone<Res<ast::NodeId>>;
        let _: ::core::clone::AssertParamIsClone<bool>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for MainDefinition { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for MainDefinition {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f,
            "MainDefinition", "res", &self.res, "is_import", &self.is_import,
            "span", &&self.span)
    }
}Debug, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for MainDefinition {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    MainDefinition {
                        res: ref __binding_0,
                        is_import: ref __binding_1,
                        span: ref __binding_2 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
264pub struct MainDefinition {
265    pub res: Res<ast::NodeId>,
266    pub is_import: bool,
267    pub span: Span,
268}
269
270impl MainDefinition {
271    pub fn opt_fn_def_id(self) -> Option<DefId> {
272        if let Res::Def(DefKind::Fn, def_id) = self.res { Some(def_id) } else { None }
273    }
274}
275
276#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for ImplTraitHeader<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for ImplTraitHeader<'tcx> {
    #[inline]
    fn clone(&self) -> ImplTraitHeader<'tcx> {
        let _:
                ::core::clone::AssertParamIsClone<ty::EarlyBinder<'tcx,
                ty::TraitRef<'tcx>>>;
        let _: ::core::clone::AssertParamIsClone<ImplPolarity>;
        let _: ::core::clone::AssertParamIsClone<hir::Safety>;
        let _: ::core::clone::AssertParamIsClone<hir::Constness>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for ImplTraitHeader<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f,
            "ImplTraitHeader", "trait_ref", &self.trait_ref, "polarity",
            &self.polarity, "safety", &self.safety, "constness",
            &&self.constness)
    }
}Debug, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for ImplTraitHeader<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    ImplTraitHeader {
                        trait_ref: ref __binding_0,
                        polarity: ref __binding_1,
                        safety: ref __binding_2,
                        constness: ref __binding_3 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for ImplTraitHeader<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                ImplTraitHeader {
                    trait_ref: ::rustc_serialize::Decodable::decode(__decoder),
                    polarity: ::rustc_serialize::Decodable::decode(__decoder),
                    safety: ::rustc_serialize::Decodable::decode(__decoder),
                    constness: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for ImplTraitHeader<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    ImplTraitHeader {
                        trait_ref: ref __binding_0,
                        polarity: ref __binding_1,
                        safety: ref __binding_2,
                        constness: ref __binding_3 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
277pub struct ImplTraitHeader<'tcx> {
278    pub trait_ref: ty::EarlyBinder<'tcx, ty::TraitRef<'tcx>>,
279    pub polarity: ImplPolarity,
280    pub safety: hir::Safety,
281    pub constness: hir::Constness,
282}
283
284#[derive(#[automatically_derived]
impl ::core::marker::Copy for Asyncness { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Asyncness {
    #[inline]
    fn clone(&self) -> Asyncness { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for Asyncness {
    #[inline]
    fn eq(&self, other: &Asyncness) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Asyncness {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::hash::Hash for Asyncness {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state)
    }
}Hash, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for Asyncness {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        Asyncness::Yes => { 0usize }
                        Asyncness::No => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self { Asyncness::Yes => {} Asyncness::No => {} }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for Asyncness {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { Asyncness::Yes }
                    1usize => { Asyncness::No }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `Asyncness`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for Asyncness {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self { Asyncness::Yes => {} Asyncness::No => {} }
            }
        }
    };HashStable, #[automatically_derived]
impl ::core::fmt::Debug for Asyncness {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self { Asyncness::Yes => "Yes", Asyncness::No => "No", })
    }
}Debug)]
285#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for Asyncness {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        Asyncness::Yes => { Asyncness::Yes }
                        Asyncness::No => { Asyncness::No }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    Asyncness::Yes => { Asyncness::Yes }
                    Asyncness::No => { Asyncness::No }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for Asyncness {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self { Asyncness::Yes => {} Asyncness::No => {} }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable, #[automatically_derived]
impl ::core::default::Default for Asyncness {
    #[inline]
    fn default() -> Asyncness { Self::No }
}Default)]
286pub enum Asyncness {
287    Yes,
288    #[default]
289    No,
290}
291
292impl Asyncness {
293    pub fn is_async(self) -> bool {
294        #[allow(non_exhaustive_omitted_patterns)] match self {
    Asyncness::Yes => true,
    _ => false,
}matches!(self, Asyncness::Yes)
295    }
296}
297
298#[derive(#[automatically_derived]
impl<Id: ::core::clone::Clone> ::core::clone::Clone for Visibility<Id> {
    #[inline]
    fn clone(&self) -> Visibility<Id> {
        match self {
            Visibility::Public => Visibility::Public,
            Visibility::Restricted(__self_0) =>
                Visibility::Restricted(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, #[automatically_derived]
impl<Id: ::core::fmt::Debug> ::core::fmt::Debug for Visibility<Id> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            Visibility::Public =>
                ::core::fmt::Formatter::write_str(f, "Public"),
            Visibility::Restricted(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Restricted", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl<Id: ::core::cmp::PartialEq> ::core::cmp::PartialEq for Visibility<Id> {
    #[inline]
    fn eq(&self, other: &Visibility<Id>) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (Visibility::Restricted(__self_0),
                    Visibility::Restricted(__arg1_0)) => __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl<Id: ::core::cmp::Eq> ::core::cmp::Eq for Visibility<Id> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<Id>;
    }
}Eq, #[automatically_derived]
impl<Id: ::core::marker::Copy> ::core::marker::Copy for Visibility<Id> { }Copy, #[automatically_derived]
impl<Id: ::core::hash::Hash> ::core::hash::Hash for Visibility<Id> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state);
        match self {
            Visibility::Restricted(__self_0) =>
                ::core::hash::Hash::hash(__self_0, state),
            _ => {}
        }
    }
}Hash, const _: () =
    {
        impl<Id, __E: ::rustc_span::SpanEncoder>
            ::rustc_serialize::Encodable<__E> for Visibility<Id> where
            Id: ::rustc_serialize::Encodable<__E> {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        Visibility::Public => { 0usize }
                        Visibility::Restricted(ref __binding_0) => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    Visibility::Public => {}
                    Visibility::Restricted(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<Id, __D: ::rustc_span::BlobDecoder>
            ::rustc_serialize::Decodable<__D> for Visibility<Id> where
            Id: ::rustc_serialize::Decodable<__D> {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { Visibility::Public }
                    1usize => {
                        Visibility::Restricted(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `Visibility`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };BlobDecodable, const _: () =
    {
        impl<'__ctx, Id>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for Visibility<Id> where
            Id: ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    Visibility::Public => {}
                    Visibility::Restricted(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
299pub enum Visibility<Id = LocalDefId> {
300    /// Visible everywhere (including in other crates).
301    Public,
302    /// Visible only in the given crate-local module.
303    Restricted(Id),
304}
305
306impl Visibility {
307    pub fn to_string(self, def_id: LocalDefId, tcx: TyCtxt<'_>) -> String {
308        match self {
309            ty::Visibility::Restricted(restricted_id) => {
310                if restricted_id.is_top_level_module() {
311                    "pub(crate)".to_string()
312                } else if restricted_id == tcx.parent_module_from_def_id(def_id).to_local_def_id() {
313                    "pub(self)".to_string()
314                } else {
315                    ::alloc::__export::must_use({
        ::alloc::fmt::format(format_args!("pub(in crate{0})",
                tcx.def_path(restricted_id.to_def_id()).to_string_no_crate_verbose()))
    })format!(
316                        "pub(in crate{})",
317                        tcx.def_path(restricted_id.to_def_id()).to_string_no_crate_verbose()
318                    )
319                }
320            }
321            ty::Visibility::Public => "pub".to_string(),
322        }
323    }
324}
325
326#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for ClosureSizeProfileData<'tcx> {
    #[inline]
    fn clone(&self) -> ClosureSizeProfileData<'tcx> {
        let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
        let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for ClosureSizeProfileData<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "ClosureSizeProfileData", "before_feature_tys",
            &self.before_feature_tys, "after_feature_tys",
            &&self.after_feature_tys)
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for ClosureSizeProfileData<'tcx> {
    #[inline]
    fn eq(&self, other: &ClosureSizeProfileData<'tcx>) -> bool {
        self.before_feature_tys == other.before_feature_tys &&
            self.after_feature_tys == other.after_feature_tys
    }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for ClosureSizeProfileData<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<Ty<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<Ty<'tcx>>;
    }
}Eq, #[automatically_derived]
impl<'tcx> ::core::marker::Copy for ClosureSizeProfileData<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for ClosureSizeProfileData<'tcx> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.before_feature_tys, state);
        ::core::hash::Hash::hash(&self.after_feature_tys, state)
    }
}Hash, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for ClosureSizeProfileData<'tcx>
            {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    ClosureSizeProfileData {
                        before_feature_tys: ref __binding_0,
                        after_feature_tys: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for ClosureSizeProfileData<'tcx>
            {
            fn decode(__decoder: &mut __D) -> Self {
                ClosureSizeProfileData {
                    before_feature_tys: ::rustc_serialize::Decodable::decode(__decoder),
                    after_feature_tys: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for ClosureSizeProfileData<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    ClosureSizeProfileData {
                        before_feature_tys: ref __binding_0,
                        after_feature_tys: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
327#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ClosureSizeProfileData<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        ClosureSizeProfileData {
                            before_feature_tys: __binding_0,
                            after_feature_tys: __binding_1 } => {
                            ClosureSizeProfileData {
                                before_feature_tys: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                after_feature_tys: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    ClosureSizeProfileData {
                        before_feature_tys: __binding_0,
                        after_feature_tys: __binding_1 } => {
                        ClosureSizeProfileData {
                            before_feature_tys: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            after_feature_tys: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ClosureSizeProfileData<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    ClosureSizeProfileData {
                        before_feature_tys: ref __binding_0,
                        after_feature_tys: ref __binding_1 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
328pub struct ClosureSizeProfileData<'tcx> {
329    /// Tuple containing the types of closure captures before the feature `capture_disjoint_fields`
330    pub before_feature_tys: Ty<'tcx>,
331    /// Tuple containing the types of closure captures after the feature `capture_disjoint_fields`
332    pub after_feature_tys: Ty<'tcx>,
333}
334
335impl TyCtxt<'_> {
336    #[inline]
337    pub fn opt_parent(self, id: DefId) -> Option<DefId> {
338        self.def_key(id).parent.map(|index| DefId { index, ..id })
339    }
340
341    #[inline]
342    #[track_caller]
343    pub fn parent(self, id: DefId) -> DefId {
344        match self.opt_parent(id) {
345            Some(id) => id,
346            // not `unwrap_or_else` to avoid breaking caller tracking
347            None => crate::util::bug::bug_fmt(format_args!("{0:?} doesn\'t have a parent", id))bug!("{id:?} doesn't have a parent"),
348        }
349    }
350
351    #[inline]
352    #[track_caller]
353    pub fn opt_local_parent(self, id: LocalDefId) -> Option<LocalDefId> {
354        self.opt_parent(id.to_def_id()).map(DefId::expect_local)
355    }
356
357    #[inline]
358    #[track_caller]
359    pub fn local_parent(self, id: impl Into<LocalDefId>) -> LocalDefId {
360        self.parent(id.into().to_def_id()).expect_local()
361    }
362
363    pub fn is_descendant_of(self, mut descendant: DefId, ancestor: DefId) -> bool {
364        if descendant.krate != ancestor.krate {
365            return false;
366        }
367
368        while descendant != ancestor {
369            match self.opt_parent(descendant) {
370                Some(parent) => descendant = parent,
371                None => return false,
372            }
373        }
374        true
375    }
376}
377
378impl<Id> Visibility<Id> {
379    pub fn is_public(self) -> bool {
380        #[allow(non_exhaustive_omitted_patterns)] match self {
    Visibility::Public => true,
    _ => false,
}matches!(self, Visibility::Public)
381    }
382
383    pub fn map_id<OutId>(self, f: impl FnOnce(Id) -> OutId) -> Visibility<OutId> {
384        match self {
385            Visibility::Public => Visibility::Public,
386            Visibility::Restricted(id) => Visibility::Restricted(f(id)),
387        }
388    }
389}
390
391impl<Id: Into<DefId>> Visibility<Id> {
392    pub fn to_def_id(self) -> Visibility<DefId> {
393        self.map_id(Into::into)
394    }
395
396    /// Returns `true` if an item with this visibility is accessible from the given module.
397    pub fn is_accessible_from(self, module: impl Into<DefId>, tcx: TyCtxt<'_>) -> bool {
398        match self {
399            // Public items are visible everywhere.
400            Visibility::Public => true,
401            Visibility::Restricted(id) => tcx.is_descendant_of(module.into(), id.into()),
402        }
403    }
404
405    /// Returns `true` if this visibility is at least as accessible as the given visibility
406    pub fn is_at_least(self, vis: Visibility<impl Into<DefId>>, tcx: TyCtxt<'_>) -> bool {
407        match vis {
408            Visibility::Public => self.is_public(),
409            Visibility::Restricted(id) => self.is_accessible_from(id, tcx),
410        }
411    }
412}
413
414impl<Id: Into<DefId> + Copy> Visibility<Id> {
415    pub fn min(self, vis: Visibility<Id>, tcx: TyCtxt<'_>) -> Visibility<Id> {
416        if self.is_at_least(vis, tcx) { vis } else { self }
417    }
418}
419
420impl Visibility<DefId> {
421    pub fn expect_local(self) -> Visibility {
422        self.map_id(|id| id.expect_local())
423    }
424
425    /// Returns `true` if this item is visible anywhere in the local crate.
426    pub fn is_visible_locally(self) -> bool {
427        match self {
428            Visibility::Public => true,
429            Visibility::Restricted(def_id) => def_id.is_local(),
430        }
431    }
432}
433
434/// The crate variances map is computed during typeck and contains the
435/// variance of every item in the local crate. You should not use it
436/// directly, because to do so will make your pass dependent on the
437/// HIR of every item in the local crate. Instead, use
438/// `tcx.variances_of()` to get the variance for a *particular*
439/// item.
440#[derive(const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for CrateVariancesMap<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    CrateVariancesMap { variances: ref __binding_0 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for CrateVariancesMap<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f,
            "CrateVariancesMap", "variances", &&self.variances)
    }
}Debug)]
441pub struct CrateVariancesMap<'tcx> {
442    /// For each item with generics, maps to a vector of the variance
443    /// of its generics. If an item has no generics, it will have no
444    /// entry.
445    pub variances: DefIdMap<&'tcx [ty::Variance]>,
446}
447
448// Contains information needed to resolve types and (in the future) look up
449// the types of AST nodes.
450#[derive(#[automatically_derived]
impl ::core::marker::Copy for CReaderCacheKey { }Copy, #[automatically_derived]
impl ::core::clone::Clone for CReaderCacheKey {
    #[inline]
    fn clone(&self) -> CReaderCacheKey {
        let _: ::core::clone::AssertParamIsClone<Option<CrateNum>>;
        let _: ::core::clone::AssertParamIsClone<usize>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for CReaderCacheKey {
    #[inline]
    fn eq(&self, other: &CReaderCacheKey) -> bool {
        self.cnum == other.cnum && self.pos == other.pos
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for CReaderCacheKey {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<Option<CrateNum>>;
        let _: ::core::cmp::AssertParamIsEq<usize>;
    }
}Eq, #[automatically_derived]
impl ::core::hash::Hash for CReaderCacheKey {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.cnum, state);
        ::core::hash::Hash::hash(&self.pos, state)
    }
}Hash)]
451pub struct CReaderCacheKey {
452    pub cnum: Option<CrateNum>,
453    pub pos: usize,
454}
455
456/// Use this rather than `TyKind`, whenever possible.
457#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for Ty<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for Ty<'tcx> {
    #[inline]
    fn clone(&self) -> Ty<'tcx> {
        let _:
                ::core::clone::AssertParamIsClone<Interned<'tcx,
                WithCachedTypeInfo<TyKind<'tcx>>>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for Ty<'tcx> {
    #[inline]
    fn eq(&self, other: &Ty<'tcx>) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for Ty<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _:
                ::core::cmp::AssertParamIsEq<Interned<'tcx,
                WithCachedTypeInfo<TyKind<'tcx>>>>;
    }
}Eq, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for Ty<'tcx> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.0, state)
    }
}Hash, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for Ty<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    Ty(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
458#[rustc_diagnostic_item = "Ty"]
459#[rustc_pass_by_value]
460pub struct Ty<'tcx>(Interned<'tcx, WithCachedTypeInfo<TyKind<'tcx>>>);
461
462impl<'tcx> rustc_type_ir::inherent::IntoKind for Ty<'tcx> {
463    type Kind = TyKind<'tcx>;
464
465    fn kind(self) -> TyKind<'tcx> {
466        *self.kind()
467    }
468}
469
470impl<'tcx> rustc_type_ir::Flags for Ty<'tcx> {
471    fn flags(&self) -> TypeFlags {
472        self.0.flags
473    }
474
475    fn outer_exclusive_binder(&self) -> DebruijnIndex {
476        self.0.outer_exclusive_binder
477    }
478}
479
480/// The crate outlives map is computed during typeck and contains the
481/// outlives of every item in the local crate. You should not use it
482/// directly, because to do so will make your pass dependent on the
483/// HIR of every item in the local crate. Instead, use
484/// `tcx.inferred_outlives_of()` to get the outlives for a *particular*
485/// item.
486#[derive(const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for CratePredicatesMap<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    CratePredicatesMap { predicates: ref __binding_0 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for CratePredicatesMap<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f,
            "CratePredicatesMap", "predicates", &&self.predicates)
    }
}Debug)]
487pub struct CratePredicatesMap<'tcx> {
488    /// For each struct with outlive bounds, maps to a vector of the
489    /// predicate of its outlive bounds. If an item has no outlives
490    /// bounds, it will have no entry.
491    pub predicates: DefIdMap<&'tcx [(Clause<'tcx>, Span)]>,
492}
493
494#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for Term<'tcx> {
    #[inline]
    fn clone(&self) -> Term<'tcx> {
        let _: ::core::clone::AssertParamIsClone<NonNull<()>>;
        let _:
                ::core::clone::AssertParamIsClone<PhantomData<(Ty<'tcx>,
                Const<'tcx>)>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::marker::Copy for Term<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for Term<'tcx> {
    #[inline]
    fn eq(&self, other: &Term<'tcx>) -> bool {
        self.ptr == other.ptr && self.marker == other.marker
    }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for Term<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<NonNull<()>>;
        let _:
                ::core::cmp::AssertParamIsEq<PhantomData<(Ty<'tcx>,
                Const<'tcx>)>>;
    }
}Eq, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialOrd for Term<'tcx> {
    #[inline]
    fn partial_cmp(&self, other: &Term<'tcx>)
        -> ::core::option::Option<::core::cmp::Ordering> {
        match ::core::cmp::PartialOrd::partial_cmp(&self.ptr, &other.ptr) {
            ::core::option::Option::Some(::core::cmp::Ordering::Equal) =>
                ::core::cmp::PartialOrd::partial_cmp(&self.marker,
                    &other.marker),
            cmp => cmp,
        }
    }
}PartialOrd, #[automatically_derived]
impl<'tcx> ::core::cmp::Ord for Term<'tcx> {
    #[inline]
    fn cmp(&self, other: &Term<'tcx>) -> ::core::cmp::Ordering {
        match ::core::cmp::Ord::cmp(&self.ptr, &other.ptr) {
            ::core::cmp::Ordering::Equal =>
                ::core::cmp::Ord::cmp(&self.marker, &other.marker),
            cmp => cmp,
        }
    }
}Ord, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for Term<'tcx> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.ptr, state);
        ::core::hash::Hash::hash(&self.marker, state)
    }
}Hash)]
495pub struct Term<'tcx> {
496    ptr: NonNull<()>,
497    marker: PhantomData<(Ty<'tcx>, Const<'tcx>)>,
498}
499
500impl<'tcx> rustc_type_ir::inherent::Term<TyCtxt<'tcx>> for Term<'tcx> {}
501
502impl<'tcx> rustc_type_ir::inherent::IntoKind for Term<'tcx> {
503    type Kind = TermKind<'tcx>;
504
505    fn kind(self) -> Self::Kind {
506        self.kind()
507    }
508}
509
510unsafe impl<'tcx> rustc_data_structures::sync::DynSend for Term<'tcx> where
511    &'tcx (Ty<'tcx>, Const<'tcx>): rustc_data_structures::sync::DynSend
512{
513}
514unsafe impl<'tcx> rustc_data_structures::sync::DynSync for Term<'tcx> where
515    &'tcx (Ty<'tcx>, Const<'tcx>): rustc_data_structures::sync::DynSync
516{
517}
518unsafe impl<'tcx> Send for Term<'tcx> where &'tcx (Ty<'tcx>, Const<'tcx>): Send {}
519unsafe impl<'tcx> Sync for Term<'tcx> where &'tcx (Ty<'tcx>, Const<'tcx>): Sync {}
520
521impl Debug for Term<'_> {
522    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
523        match self.kind() {
524            TermKind::Ty(ty) => f.write_fmt(format_args!("Term::Ty({0:?})", ty))write!(f, "Term::Ty({ty:?})"),
525            TermKind::Const(ct) => f.write_fmt(format_args!("Term::Const({0:?})", ct))write!(f, "Term::Const({ct:?})"),
526        }
527    }
528}
529
530impl<'tcx> From<Ty<'tcx>> for Term<'tcx> {
531    fn from(ty: Ty<'tcx>) -> Self {
532        TermKind::Ty(ty).pack()
533    }
534}
535
536impl<'tcx> From<Const<'tcx>> for Term<'tcx> {
537    fn from(c: Const<'tcx>) -> Self {
538        TermKind::Const(c).pack()
539    }
540}
541
542impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for Term<'tcx> {
543    fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
544        self.kind().hash_stable(hcx, hasher);
545    }
546}
547
548impl<'tcx> TypeFoldable<TyCtxt<'tcx>> for Term<'tcx> {
549    fn try_fold_with<F: FallibleTypeFolder<TyCtxt<'tcx>>>(
550        self,
551        folder: &mut F,
552    ) -> Result<Self, F::Error> {
553        match self.kind() {
554            ty::TermKind::Ty(ty) => ty.try_fold_with(folder).map(Into::into),
555            ty::TermKind::Const(ct) => ct.try_fold_with(folder).map(Into::into),
556        }
557    }
558
559    fn fold_with<F: TypeFolder<TyCtxt<'tcx>>>(self, folder: &mut F) -> Self {
560        match self.kind() {
561            ty::TermKind::Ty(ty) => ty.fold_with(folder).into(),
562            ty::TermKind::Const(ct) => ct.fold_with(folder).into(),
563        }
564    }
565}
566
567impl<'tcx> TypeVisitable<TyCtxt<'tcx>> for Term<'tcx> {
568    fn visit_with<V: TypeVisitor<TyCtxt<'tcx>>>(&self, visitor: &mut V) -> V::Result {
569        match self.kind() {
570            ty::TermKind::Ty(ty) => ty.visit_with(visitor),
571            ty::TermKind::Const(ct) => ct.visit_with(visitor),
572        }
573    }
574}
575
576impl<'tcx, E: TyEncoder<'tcx>> Encodable<E> for Term<'tcx> {
577    fn encode(&self, e: &mut E) {
578        self.kind().encode(e)
579    }
580}
581
582impl<'tcx, D: TyDecoder<'tcx>> Decodable<D> for Term<'tcx> {
583    fn decode(d: &mut D) -> Self {
584        let res: TermKind<'tcx> = Decodable::decode(d);
585        res.pack()
586    }
587}
588
589impl<'tcx> Term<'tcx> {
590    #[inline]
591    pub fn kind(self) -> TermKind<'tcx> {
592        let ptr =
593            unsafe { self.ptr.map_addr(|addr| NonZero::new_unchecked(addr.get() & !TAG_MASK)) };
594        // SAFETY: use of `Interned::new_unchecked` here is ok because these
595        // pointers were originally created from `Interned` types in `pack()`,
596        // and this is just going in the other direction.
597        unsafe {
598            match self.ptr.addr().get() & TAG_MASK {
599                TYPE_TAG => TermKind::Ty(Ty(Interned::new_unchecked(
600                    ptr.cast::<WithCachedTypeInfo<ty::TyKind<'tcx>>>().as_ref(),
601                ))),
602                CONST_TAG => TermKind::Const(ty::Const(Interned::new_unchecked(
603                    ptr.cast::<WithCachedTypeInfo<ty::ConstKind<'tcx>>>().as_ref(),
604                ))),
605                _ => core::intrinsics::unreachable(),
606            }
607        }
608    }
609
610    pub fn as_type(&self) -> Option<Ty<'tcx>> {
611        if let TermKind::Ty(ty) = self.kind() { Some(ty) } else { None }
612    }
613
614    pub fn expect_type(&self) -> Ty<'tcx> {
615        self.as_type().expect("expected a type, but found a const")
616    }
617
618    pub fn as_const(&self) -> Option<Const<'tcx>> {
619        if let TermKind::Const(c) = self.kind() { Some(c) } else { None }
620    }
621
622    pub fn expect_const(&self) -> Const<'tcx> {
623        self.as_const().expect("expected a const, but found a type")
624    }
625
626    pub fn into_arg(self) -> GenericArg<'tcx> {
627        match self.kind() {
628            TermKind::Ty(ty) => ty.into(),
629            TermKind::Const(c) => c.into(),
630        }
631    }
632
633    pub fn to_alias_term(self) -> Option<AliasTerm<'tcx>> {
634        match self.kind() {
635            TermKind::Ty(ty) => match *ty.kind() {
636                ty::Alias(_kind, alias_ty) => Some(alias_ty.into()),
637                _ => None,
638            },
639            TermKind::Const(ct) => match ct.kind() {
640                ConstKind::Unevaluated(uv) => Some(uv.into()),
641                _ => None,
642            },
643        }
644    }
645
646    pub fn is_infer(&self) -> bool {
647        match self.kind() {
648            TermKind::Ty(ty) => ty.is_ty_var(),
649            TermKind::Const(ct) => ct.is_ct_infer(),
650        }
651    }
652
653    pub fn is_trivially_wf(&self, tcx: TyCtxt<'tcx>) -> bool {
654        match self.kind() {
655            TermKind::Ty(ty) => ty.is_trivially_wf(tcx),
656            TermKind::Const(ct) => ct.is_trivially_wf(),
657        }
658    }
659
660    /// Iterator that walks `self` and any types reachable from
661    /// `self`, in depth-first order. Note that just walks the types
662    /// that appear in `self`, it does not descend into the fields of
663    /// structs or variants. For example:
664    ///
665    /// ```text
666    /// isize => { isize }
667    /// Foo<Bar<isize>> => { Foo<Bar<isize>>, Bar<isize>, isize }
668    /// [isize] => { [isize], isize }
669    /// ```
670    pub fn walk(self) -> TypeWalker<TyCtxt<'tcx>> {
671        TypeWalker::new(self.into())
672    }
673}
674
675const TAG_MASK: usize = 0b11;
676const TYPE_TAG: usize = 0b00;
677const CONST_TAG: usize = 0b01;
678
679impl<'tcx> TermKindPackExt<'tcx> for TermKind<'tcx> {
    #[inline]
    fn pack(self) -> Term<'tcx> {
        let (tag, ptr) =
            match self {
                TermKind::Ty(ty) => {
                    match (&(align_of_val(&*ty.0.0) & TAG_MASK), &0) {
                        (left_val, right_val) => {
                            if !(*left_val == *right_val) {
                                let kind = ::core::panicking::AssertKind::Eq;
                                ::core::panicking::assert_failed(kind, &*left_val,
                                    &*right_val, ::core::option::Option::None);
                            }
                        }
                    };
                    (TYPE_TAG, NonNull::from(ty.0.0).cast())
                }
                TermKind::Const(ct) => {
                    match (&(align_of_val(&*ct.0.0) & TAG_MASK), &0) {
                        (left_val, right_val) => {
                            if !(*left_val == *right_val) {
                                let kind = ::core::panicking::AssertKind::Eq;
                                ::core::panicking::assert_failed(kind, &*left_val,
                                    &*right_val, ::core::option::Option::None);
                            }
                        }
                    };
                    (CONST_TAG, NonNull::from(ct.0.0).cast())
                }
            };
        Term { ptr: ptr.map_addr(|addr| addr | tag), marker: PhantomData }
    }
}#[extension(pub trait TermKindPackExt<'tcx>)]
680impl<'tcx> TermKind<'tcx> {
681    #[inline]
682    fn pack(self) -> Term<'tcx> {
683        let (tag, ptr) = match self {
684            TermKind::Ty(ty) => {
685                // Ensure we can use the tag bits.
686                assert_eq!(align_of_val(&*ty.0.0) & TAG_MASK, 0);
687                (TYPE_TAG, NonNull::from(ty.0.0).cast())
688            }
689            TermKind::Const(ct) => {
690                // Ensure we can use the tag bits.
691                assert_eq!(align_of_val(&*ct.0.0) & TAG_MASK, 0);
692                (CONST_TAG, NonNull::from(ct.0.0).cast())
693            }
694        };
695
696        Term { ptr: ptr.map_addr(|addr| addr | tag), marker: PhantomData }
697    }
698}
699
700/// Represents the bounds declared on a particular set of type
701/// parameters. Should eventually be generalized into a flag list of
702/// where-clauses. You can obtain an `InstantiatedPredicates` list from a
703/// `GenericPredicates` by using the `instantiate` method. Note that this method
704/// reflects an important semantic invariant of `InstantiatedPredicates`: while
705/// the `GenericPredicates` are expressed in terms of the bound type
706/// parameters of the impl/trait/whatever, an `InstantiatedPredicates` instance
707/// represented a set of bounds for some particular instantiation,
708/// meaning that the generic parameters have been instantiated with
709/// their values.
710///
711/// Example:
712/// ```ignore (illustrative)
713/// struct Foo<T, U: Bar<T>> { ... }
714/// ```
715/// Here, the `GenericPredicates` for `Foo` would contain a list of bounds like
716/// `[[], [U:Bar<T>]]`. Now if there were some particular reference
717/// like `Foo<isize,usize>`, then the `InstantiatedPredicates` would be `[[],
718/// [usize:Bar<isize>]]`.
719#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for InstantiatedPredicates<'tcx> {
    #[inline]
    fn clone(&self) -> InstantiatedPredicates<'tcx> {
        InstantiatedPredicates {
            predicates: ::core::clone::Clone::clone(&self.predicates),
            spans: ::core::clone::Clone::clone(&self.spans),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for InstantiatedPredicates<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "InstantiatedPredicates", "predicates", &self.predicates, "spans",
            &&self.spans)
    }
}Debug, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for InstantiatedPredicates<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        InstantiatedPredicates {
                            predicates: __binding_0, spans: __binding_1 } => {
                            InstantiatedPredicates {
                                predicates: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                spans: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    InstantiatedPredicates {
                        predicates: __binding_0, spans: __binding_1 } => {
                        InstantiatedPredicates {
                            predicates: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            spans: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for InstantiatedPredicates<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    InstantiatedPredicates {
                        predicates: ref __binding_0, spans: ref __binding_1 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
720pub struct InstantiatedPredicates<'tcx> {
721    pub predicates: Vec<Clause<'tcx>>,
722    pub spans: Vec<Span>,
723}
724
725impl<'tcx> InstantiatedPredicates<'tcx> {
726    pub fn empty() -> InstantiatedPredicates<'tcx> {
727        InstantiatedPredicates { predicates: ::alloc::vec::Vec::new()vec![], spans: ::alloc::vec::Vec::new()vec![] }
728    }
729
730    pub fn is_empty(&self) -> bool {
731        self.predicates.is_empty()
732    }
733
734    pub fn iter(&self) -> <&Self as IntoIterator>::IntoIter {
735        self.into_iter()
736    }
737}
738
739impl<'tcx> IntoIterator for InstantiatedPredicates<'tcx> {
740    type Item = (Clause<'tcx>, Span);
741
742    type IntoIter = std::iter::Zip<std::vec::IntoIter<Clause<'tcx>>, std::vec::IntoIter<Span>>;
743
744    fn into_iter(self) -> Self::IntoIter {
745        if true {
    match (&self.predicates.len(), &self.spans.len()) {
        (left_val, right_val) => {
            if !(*left_val == *right_val) {
                let kind = ::core::panicking::AssertKind::Eq;
                ::core::panicking::assert_failed(kind, &*left_val,
                    &*right_val, ::core::option::Option::None);
            }
        }
    };
};debug_assert_eq!(self.predicates.len(), self.spans.len());
746        std::iter::zip(self.predicates, self.spans)
747    }
748}
749
750impl<'a, 'tcx> IntoIterator for &'a InstantiatedPredicates<'tcx> {
751    type Item = (Clause<'tcx>, Span);
752
753    type IntoIter = std::iter::Zip<
754        std::iter::Copied<std::slice::Iter<'a, Clause<'tcx>>>,
755        std::iter::Copied<std::slice::Iter<'a, Span>>,
756    >;
757
758    fn into_iter(self) -> Self::IntoIter {
759        if true {
    match (&self.predicates.len(), &self.spans.len()) {
        (left_val, right_val) => {
            if !(*left_val == *right_val) {
                let kind = ::core::panicking::AssertKind::Eq;
                ::core::panicking::assert_failed(kind, &*left_val,
                    &*right_val, ::core::option::Option::None);
            }
        }
    };
};debug_assert_eq!(self.predicates.len(), self.spans.len());
760        std::iter::zip(self.predicates.iter().copied(), self.spans.iter().copied())
761    }
762}
763
764#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for ProvisionalHiddenType<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for ProvisionalHiddenType<'tcx> {
    #[inline]
    fn clone(&self) -> ProvisionalHiddenType<'tcx> {
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<Ty<'tcx>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for ProvisionalHiddenType<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "ProvisionalHiddenType", "span", &self.span, "ty", &&self.ty)
    }
}Debug, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ProvisionalHiddenType<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        ProvisionalHiddenType { span: __binding_0, ty: __binding_1 }
                            => {
                            ProvisionalHiddenType {
                                span: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                ty: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    ProvisionalHiddenType { span: __binding_0, ty: __binding_1 }
                        => {
                        ProvisionalHiddenType {
                            span: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            ty: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ProvisionalHiddenType<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    ProvisionalHiddenType {
                        span: ref __binding_0, ty: ref __binding_1 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for ProvisionalHiddenType<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    ProvisionalHiddenType {
                        span: ref __binding_0, ty: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for ProvisionalHiddenType<'tcx>
            {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    ProvisionalHiddenType {
                        span: ref __binding_0, ty: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for ProvisionalHiddenType<'tcx>
            {
            fn decode(__decoder: &mut __D) -> Self {
                ProvisionalHiddenType {
                    span: ::rustc_serialize::Decodable::decode(__decoder),
                    ty: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable)]
765pub struct ProvisionalHiddenType<'tcx> {
766    /// The span of this particular definition of the opaque type. So
767    /// for example:
768    ///
769    /// ```ignore (incomplete snippet)
770    /// type Foo = impl Baz;
771    /// fn bar() -> Foo {
772    /// //          ^^^ This is the span we are looking for!
773    /// }
774    /// ```
775    ///
776    /// In cases where the fn returns `(impl Trait, impl Trait)` or
777    /// other such combinations, the result is currently
778    /// over-approximated, but better than nothing.
779    pub span: Span,
780
781    /// The type variable that represents the value of the opaque type
782    /// that we require. In other words, after we compile this function,
783    /// we will be created a constraint like:
784    /// ```ignore (pseudo-rust)
785    /// Foo<'a, T> = ?C
786    /// ```
787    /// where `?C` is the value of this type variable. =) It may
788    /// naturally refer to the type and lifetime parameters in scope
789    /// in this function, though ultimately it should only reference
790    /// those that are arguments to `Foo` in the constraint above. (In
791    /// other words, `?C` should not include `'b`, even though it's a
792    /// lifetime parameter on `foo`.)
793    pub ty: Ty<'tcx>,
794}
795
796/// Whether we're currently in HIR typeck or MIR borrowck.
797#[derive(#[automatically_derived]
impl ::core::fmt::Debug for DefiningScopeKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                DefiningScopeKind::HirTypeck => "HirTypeck",
                DefiningScopeKind::MirBorrowck => "MirBorrowck",
            })
    }
}Debug, #[automatically_derived]
impl ::core::clone::Clone for DefiningScopeKind {
    #[inline]
    fn clone(&self) -> DefiningScopeKind { *self }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for DefiningScopeKind { }Copy)]
798pub enum DefiningScopeKind {
799    /// During writeback in typeck, we don't care about regions and simply
800    /// erase them. This means we also don't check whether regions are
801    /// universal in the opaque type key. This will only be checked in
802    /// MIR borrowck.
803    HirTypeck,
804    MirBorrowck,
805}
806
807impl<'tcx> ProvisionalHiddenType<'tcx> {
808    pub fn new_error(tcx: TyCtxt<'tcx>, guar: ErrorGuaranteed) -> ProvisionalHiddenType<'tcx> {
809        ProvisionalHiddenType { span: DUMMY_SP, ty: Ty::new_error(tcx, guar) }
810    }
811
812    pub fn build_mismatch_error(
813        &self,
814        other: &Self,
815        tcx: TyCtxt<'tcx>,
816    ) -> Result<Diag<'tcx>, ErrorGuaranteed> {
817        (self.ty, other.ty).error_reported()?;
818        // Found different concrete types for the opaque type.
819        let sub_diag = if self.span == other.span {
820            TypeMismatchReason::ConflictType { span: self.span }
821        } else {
822            TypeMismatchReason::PreviousUse { span: self.span }
823        };
824        Ok(tcx.dcx().create_err(OpaqueHiddenTypeMismatch {
825            self_ty: self.ty,
826            other_ty: other.ty,
827            other_span: other.span,
828            sub: sub_diag,
829        }))
830    }
831
832    x;#[instrument(level = "debug", skip(tcx), ret)]
833    pub fn remap_generic_params_to_declaration_params(
834        self,
835        opaque_type_key: OpaqueTypeKey<'tcx>,
836        tcx: TyCtxt<'tcx>,
837        defining_scope_kind: DefiningScopeKind,
838    ) -> DefinitionSiteHiddenType<'tcx> {
839        let OpaqueTypeKey { def_id, args } = opaque_type_key;
840
841        // Use args to build up a reverse map from regions to their
842        // identity mappings. This is necessary because of `impl
843        // Trait` lifetimes are computed by replacing existing
844        // lifetimes with 'static and remapping only those used in the
845        // `impl Trait` return type, resulting in the parameters
846        // shifting.
847        let id_args = GenericArgs::identity_for_item(tcx, def_id);
848        debug!(?id_args);
849
850        // This zip may have several times the same lifetime in `args` paired with a different
851        // lifetime from `id_args`. Simply `collect`ing the iterator is the correct behaviour:
852        // it will pick the last one, which is the one we introduced in the impl-trait desugaring.
853        let map = args.iter().zip(id_args).collect();
854        debug!("map = {:#?}", map);
855
856        // Convert the type from the function into a type valid outside by mapping generic
857        // parameters to into the context of the opaque.
858        //
859        // We erase regions when doing this during HIR typeck. We manually use `fold_regions`
860        // here as we do not want to anonymize bound variables.
861        let ty = match defining_scope_kind {
862            DefiningScopeKind::HirTypeck => {
863                fold_regions(tcx, self.ty, |_, _| tcx.lifetimes.re_erased)
864            }
865            DefiningScopeKind::MirBorrowck => self.ty,
866        };
867        let result_ty = ty.fold_with(&mut opaque_types::ReverseMapper::new(tcx, map, self.span));
868        if cfg!(debug_assertions) && matches!(defining_scope_kind, DefiningScopeKind::HirTypeck) {
869            assert_eq!(result_ty, fold_regions(tcx, result_ty, |_, _| tcx.lifetimes.re_erased));
870        }
871        DefinitionSiteHiddenType { span: self.span, ty: ty::EarlyBinder::bind(result_ty) }
872    }
873}
874
875#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for DefinitionSiteHiddenType<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for DefinitionSiteHiddenType<'tcx> {
    #[inline]
    fn clone(&self) -> DefinitionSiteHiddenType<'tcx> {
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _:
                ::core::clone::AssertParamIsClone<ty::EarlyBinder<'tcx,
                Ty<'tcx>>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for DefinitionSiteHiddenType<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "DefinitionSiteHiddenType", "span", &self.span, "ty", &&self.ty)
    }
}Debug, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for DefinitionSiteHiddenType<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    DefinitionSiteHiddenType {
                        span: ref __binding_0, ty: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for
            DefinitionSiteHiddenType<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    DefinitionSiteHiddenType {
                        span: ref __binding_0, ty: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for
            DefinitionSiteHiddenType<'tcx> {
            fn decode(__decoder: &mut __D) -> Self {
                DefinitionSiteHiddenType {
                    span: ::rustc_serialize::Decodable::decode(__decoder),
                    ty: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable)]
876pub struct DefinitionSiteHiddenType<'tcx> {
877    /// The span of the definition of the opaque type. So for example:
878    ///
879    /// ```ignore (incomplete snippet)
880    /// type Foo = impl Baz;
881    /// fn bar() -> Foo {
882    /// //          ^^^ This is the span we are looking for!
883    /// }
884    /// ```
885    ///
886    /// In cases where the fn returns `(impl Trait, impl Trait)` or
887    /// other such combinations, the result is currently
888    /// over-approximated, but better than nothing.
889    pub span: Span,
890
891    /// The final type of the opaque.
892    pub ty: ty::EarlyBinder<'tcx, Ty<'tcx>>,
893}
894
895impl<'tcx> DefinitionSiteHiddenType<'tcx> {
896    pub fn new_error(tcx: TyCtxt<'tcx>, guar: ErrorGuaranteed) -> DefinitionSiteHiddenType<'tcx> {
897        DefinitionSiteHiddenType {
898            span: DUMMY_SP,
899            ty: ty::EarlyBinder::bind(Ty::new_error(tcx, guar)),
900        }
901    }
902
903    pub fn build_mismatch_error(
904        &self,
905        other: &Self,
906        tcx: TyCtxt<'tcx>,
907    ) -> Result<Diag<'tcx>, ErrorGuaranteed> {
908        let self_ty = self.ty.instantiate_identity();
909        let other_ty = other.ty.instantiate_identity();
910        (self_ty, other_ty).error_reported()?;
911        // Found different concrete types for the opaque type.
912        let sub_diag = if self.span == other.span {
913            TypeMismatchReason::ConflictType { span: self.span }
914        } else {
915            TypeMismatchReason::PreviousUse { span: self.span }
916        };
917        Ok(tcx.dcx().create_err(OpaqueHiddenTypeMismatch {
918            self_ty,
919            other_ty,
920            other_span: other.span,
921            sub: sub_diag,
922        }))
923    }
924}
925
926pub type Clauses<'tcx> = &'tcx ListWithCachedTypeInfo<Clause<'tcx>>;
927
928impl<'tcx> rustc_type_ir::Flags for Clauses<'tcx> {
929    fn flags(&self) -> TypeFlags {
930        (**self).flags()
931    }
932
933    fn outer_exclusive_binder(&self) -> DebruijnIndex {
934        (**self).outer_exclusive_binder()
935    }
936}
937
938/// When interacting with the type system we must provide information about the
939/// environment. `ParamEnv` is the type that represents this information. See the
940/// [dev guide chapter][param_env_guide] for more information.
941///
942/// [param_env_guide]: https://rustc-dev-guide.rust-lang.org/typing_parameter_envs.html
943#[derive(#[automatically_derived]
impl<'tcx> ::core::fmt::Debug for ParamEnv<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f, "ParamEnv",
            "caller_bounds", &&self.caller_bounds)
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::marker::Copy for ParamEnv<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for ParamEnv<'tcx> {
    #[inline]
    fn clone(&self) -> ParamEnv<'tcx> {
        let _: ::core::clone::AssertParamIsClone<Clauses<'tcx>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for ParamEnv<'tcx> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.caller_bounds, state)
    }
}Hash, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for ParamEnv<'tcx> {
    #[inline]
    fn eq(&self, other: &ParamEnv<'tcx>) -> bool {
        self.caller_bounds == other.caller_bounds
    }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for ParamEnv<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<Clauses<'tcx>>;
    }
}Eq)]
944#[derive(const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for ParamEnv<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    ParamEnv { caller_bounds: ref __binding_0 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ParamEnv<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    ParamEnv { caller_bounds: ref __binding_0 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ParamEnv<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        ParamEnv { caller_bounds: __binding_0 } => {
                            ParamEnv {
                                caller_bounds: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    ParamEnv { caller_bounds: __binding_0 } => {
                        ParamEnv {
                            caller_bounds: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable)]
945pub struct ParamEnv<'tcx> {
946    /// Caller bounds are `Obligation`s that the caller must satisfy. This is
947    /// basically the set of bounds on the in-scope type parameters, translated
948    /// into `Obligation`s, and elaborated and normalized.
949    ///
950    /// Use the `caller_bounds()` method to access.
951    caller_bounds: Clauses<'tcx>,
952}
953
954impl<'tcx> rustc_type_ir::inherent::ParamEnv<TyCtxt<'tcx>> for ParamEnv<'tcx> {
955    fn caller_bounds(self) -> impl inherent::SliceLike<Item = ty::Clause<'tcx>> {
956        self.caller_bounds()
957    }
958}
959
960impl<'tcx> ParamEnv<'tcx> {
961    /// Construct a trait environment suitable for contexts where there are
962    /// no where-clauses in scope. In the majority of cases it is incorrect
963    /// to use an empty environment. See the [dev guide section][param_env_guide]
964    /// for information on what a `ParamEnv` is and how to acquire one.
965    ///
966    /// [param_env_guide]: https://rustc-dev-guide.rust-lang.org/typing_parameter_envs.html
967    #[inline]
968    pub fn empty() -> Self {
969        Self::new(ListWithCachedTypeInfo::empty())
970    }
971
972    #[inline]
973    pub fn caller_bounds(self) -> Clauses<'tcx> {
974        self.caller_bounds
975    }
976
977    /// Construct a trait environment with the given set of predicates.
978    #[inline]
979    pub fn new(caller_bounds: Clauses<'tcx>) -> Self {
980        ParamEnv { caller_bounds }
981    }
982
983    /// Creates a pair of param-env and value for use in queries.
984    pub fn and<T: TypeVisitable<TyCtxt<'tcx>>>(self, value: T) -> ParamEnvAnd<'tcx, T> {
985        ParamEnvAnd { param_env: self, value }
986    }
987}
988
989#[derive(#[automatically_derived]
impl<'tcx, T: ::core::marker::Copy> ::core::marker::Copy for
    ParamEnvAnd<'tcx, T> {
}Copy, #[automatically_derived]
impl<'tcx, T: ::core::clone::Clone> ::core::clone::Clone for
    ParamEnvAnd<'tcx, T> {
    #[inline]
    fn clone(&self) -> ParamEnvAnd<'tcx, T> {
        ParamEnvAnd {
            param_env: ::core::clone::Clone::clone(&self.param_env),
            value: ::core::clone::Clone::clone(&self.value),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx, T: ::core::fmt::Debug> ::core::fmt::Debug for ParamEnvAnd<'tcx, T>
    {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "ParamEnvAnd",
            "param_env", &self.param_env, "value", &&self.value)
    }
}Debug, #[automatically_derived]
impl<'tcx, T: ::core::cmp::PartialEq> ::core::cmp::PartialEq for
    ParamEnvAnd<'tcx, T> {
    #[inline]
    fn eq(&self, other: &ParamEnvAnd<'tcx, T>) -> bool {
        self.param_env == other.param_env && self.value == other.value
    }
}PartialEq, #[automatically_derived]
impl<'tcx, T: ::core::cmp::Eq> ::core::cmp::Eq for ParamEnvAnd<'tcx, T> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<ParamEnv<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<T>;
    }
}Eq, #[automatically_derived]
impl<'tcx, T: ::core::hash::Hash> ::core::hash::Hash for ParamEnvAnd<'tcx, T>
    {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.param_env, state);
        ::core::hash::Hash::hash(&self.value, state)
    }
}Hash, const _: () =
    {
        impl<'tcx, T>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ParamEnvAnd<'tcx, T> where
            T: ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        ParamEnvAnd { param_env: __binding_0, value: __binding_1 }
                            => {
                            ParamEnvAnd {
                                param_env: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                value: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    ParamEnvAnd { param_env: __binding_0, value: __binding_1 }
                        => {
                        ParamEnvAnd {
                            param_env: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            value: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable, const _: () =
    {
        impl<'tcx, T>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for ParamEnvAnd<'tcx, T> where
            T: ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    ParamEnvAnd {
                        param_env: ref __binding_0, value: ref __binding_1 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable)]
990#[derive(const _: () =
    {
        impl<'tcx, '__ctx, T>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for ParamEnvAnd<'tcx, T> where
            T: ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    ParamEnvAnd {
                        param_env: ref __binding_0, value: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
991pub struct ParamEnvAnd<'tcx, T> {
992    pub param_env: ParamEnv<'tcx>,
993    pub value: T,
994}
995
996/// The environment in which to do trait solving.
997///
998/// Most of the time you only need to care about the `ParamEnv`
999/// as the `TypingMode` is simply stored in the `InferCtxt`.
1000///
1001/// However, there are some places which rely on trait solving
1002/// without using an `InferCtxt` themselves. For these to be
1003/// able to use the trait system they have to be able to initialize
1004/// such an `InferCtxt` with the right `typing_mode`, so they need
1005/// to track both.
1006#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for TypingEnv<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for TypingEnv<'tcx> {
    #[inline]
    fn clone(&self) -> TypingEnv<'tcx> {
        let _: ::core::clone::AssertParamIsClone<TypingMode<'tcx>>;
        let _: ::core::clone::AssertParamIsClone<ParamEnv<'tcx>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for TypingEnv<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f, "TypingEnv",
            "typing_mode", &self.typing_mode, "param_env", &&self.param_env)
    }
}Debug, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for TypingEnv<'tcx> {
    #[inline]
    fn eq(&self, other: &TypingEnv<'tcx>) -> bool {
        self.typing_mode == other.typing_mode &&
            self.param_env == other.param_env
    }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for TypingEnv<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<TypingMode<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<ParamEnv<'tcx>>;
    }
}Eq, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for TypingEnv<'tcx> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.typing_mode, state);
        ::core::hash::Hash::hash(&self.param_env, state)
    }
}Hash, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for TypingEnv<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    TypingEnv {
                        typing_mode: ref __binding_0, param_env: ref __binding_1 }
                        => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
1007#[derive(const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for TypingEnv<'tcx> {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    TypingEnv { param_env: ref __binding_1, .. } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable, const _: () =
    {
        impl<'tcx>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for TypingEnv<'tcx> {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        TypingEnv { typing_mode: __binding_0, param_env: __binding_1
                            } => {
                            TypingEnv {
                                typing_mode: __binding_0,
                                param_env: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    TypingEnv { typing_mode: __binding_0, param_env: __binding_1
                        } => {
                        TypingEnv {
                            typing_mode: __binding_0,
                            param_env: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable)]
1008pub struct TypingEnv<'tcx> {
1009    #[type_foldable(identity)]
1010    #[type_visitable(ignore)]
1011    pub typing_mode: TypingMode<'tcx>,
1012    pub param_env: ParamEnv<'tcx>,
1013}
1014
1015impl<'tcx> TypingEnv<'tcx> {
1016    /// Create a typing environment with no where-clauses in scope
1017    /// where all opaque types and default associated items are revealed.
1018    ///
1019    /// This is only suitable for monomorphized, post-typeck environments.
1020    /// Do not use this for MIR optimizations, as even though they also
1021    /// use `TypingMode::PostAnalysis`, they may still have where-clauses
1022    /// in scope.
1023    pub fn fully_monomorphized() -> TypingEnv<'tcx> {
1024        TypingEnv { typing_mode: TypingMode::PostAnalysis, param_env: ParamEnv::empty() }
1025    }
1026
1027    /// Create a typing environment for use during analysis outside of a body.
1028    ///
1029    /// Using a typing environment inside of bodies is not supported as the body
1030    /// may define opaque types. In this case the used functions have to be
1031    /// converted to use proper canonical inputs instead.
1032    pub fn non_body_analysis(
1033        tcx: TyCtxt<'tcx>,
1034        def_id: impl IntoQueryParam<DefId>,
1035    ) -> TypingEnv<'tcx> {
1036        TypingEnv { typing_mode: TypingMode::non_body_analysis(), param_env: tcx.param_env(def_id) }
1037    }
1038
1039    pub fn post_analysis(tcx: TyCtxt<'tcx>, def_id: impl IntoQueryParam<DefId>) -> TypingEnv<'tcx> {
1040        tcx.typing_env_normalized_for_post_analysis(def_id)
1041    }
1042
1043    /// Modify the `typing_mode` to `PostAnalysis` and eagerly reveal all
1044    /// opaque types in the `param_env`.
1045    pub fn with_post_analysis_normalized(self, tcx: TyCtxt<'tcx>) -> TypingEnv<'tcx> {
1046        let TypingEnv { typing_mode, param_env } = self;
1047        if let TypingMode::PostAnalysis = typing_mode {
1048            return self;
1049        }
1050
1051        // No need to reveal opaques with the new solver enabled,
1052        // since we have lazy norm.
1053        let param_env = if tcx.next_trait_solver_globally() {
1054            param_env
1055        } else {
1056            ParamEnv::new(tcx.reveal_opaque_types_in_bounds(param_env.caller_bounds()))
1057        };
1058        TypingEnv { typing_mode: TypingMode::PostAnalysis, param_env }
1059    }
1060
1061    /// Combine this typing environment with the given `value` to be used by
1062    /// not (yet) canonicalized queries. This only works if the value does not
1063    /// contain anything local to some `InferCtxt`, i.e. inference variables or
1064    /// placeholders.
1065    pub fn as_query_input<T>(self, value: T) -> PseudoCanonicalInput<'tcx, T>
1066    where
1067        T: TypeVisitable<TyCtxt<'tcx>>,
1068    {
1069        // FIXME(#132279): We should assert that the value does not contain any placeholders
1070        // as these placeholders are also local to the current inference context. However, we
1071        // currently use pseudo-canonical queries in the trait solver, which replaces params
1072        // with placeholders during canonicalization. We should also simply not use pseudo-
1073        // canonical queries in the trait solver, at which point we can readd this assert.
1074        //
1075        // As of writing this comment, this is only used when normalizing consts that mention
1076        // params.
1077        /* debug_assert!(
1078            !value.has_placeholders(),
1079            "{value:?} which has placeholder shouldn't be pseudo-canonicalized"
1080        ); */
1081        PseudoCanonicalInput { typing_env: self, value }
1082    }
1083}
1084
1085/// Similar to `CanonicalInput`, this carries the `typing_mode` and the environment
1086/// necessary to do any kind of trait solving inside of nested queries.
1087///
1088/// Unlike proper canonicalization, this requires the `param_env` and the `value` to not
1089/// contain anything local to the `infcx` of the caller, so we don't actually canonicalize
1090/// anything.
1091///
1092/// This should be created by using `infcx.pseudo_canonicalize_query(param_env, value)`
1093/// or by using `typing_env.as_query_input(value)`.
1094#[derive(#[automatically_derived]
impl<'tcx, T: ::core::marker::Copy> ::core::marker::Copy for
    PseudoCanonicalInput<'tcx, T> {
}Copy, #[automatically_derived]
impl<'tcx, T: ::core::clone::Clone> ::core::clone::Clone for
    PseudoCanonicalInput<'tcx, T> {
    #[inline]
    fn clone(&self) -> PseudoCanonicalInput<'tcx, T> {
        PseudoCanonicalInput {
            typing_env: ::core::clone::Clone::clone(&self.typing_env),
            value: ::core::clone::Clone::clone(&self.value),
        }
    }
}Clone, #[automatically_derived]
impl<'tcx, T: ::core::fmt::Debug> ::core::fmt::Debug for
    PseudoCanonicalInput<'tcx, T> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "PseudoCanonicalInput", "typing_env", &self.typing_env, "value",
            &&self.value)
    }
}Debug, #[automatically_derived]
impl<'tcx, T: ::core::cmp::PartialEq> ::core::cmp::PartialEq for
    PseudoCanonicalInput<'tcx, T> {
    #[inline]
    fn eq(&self, other: &PseudoCanonicalInput<'tcx, T>) -> bool {
        self.typing_env == other.typing_env && self.value == other.value
    }
}PartialEq, #[automatically_derived]
impl<'tcx, T: ::core::cmp::Eq> ::core::cmp::Eq for
    PseudoCanonicalInput<'tcx, T> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<TypingEnv<'tcx>>;
        let _: ::core::cmp::AssertParamIsEq<T>;
    }
}Eq, #[automatically_derived]
impl<'tcx, T: ::core::hash::Hash> ::core::hash::Hash for
    PseudoCanonicalInput<'tcx, T> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.typing_env, state);
        ::core::hash::Hash::hash(&self.value, state)
    }
}Hash)]
1095#[derive(const _: () =
    {
        impl<'tcx, '__ctx, T>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for PseudoCanonicalInput<'tcx, T> where
            T: ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    PseudoCanonicalInput {
                        typing_env: ref __binding_0, value: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<'tcx, T>
            ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            for PseudoCanonicalInput<'tcx, T> where
            T: ::rustc_middle::ty::TypeVisitable<::rustc_middle::ty::TyCtxt<'tcx>>
            {
            fn visit_with<__V: ::rustc_middle::ty::TypeVisitor<::rustc_middle::ty::TyCtxt<'tcx>>>(&self,
                __visitor: &mut __V) -> __V::Result {
                match *self {
                    PseudoCanonicalInput {
                        typing_env: ref __binding_0, value: ref __binding_1 } => {
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_0,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                        {
                            match ::rustc_middle::ty::VisitorResult::branch(::rustc_middle::ty::TypeVisitable::visit_with(__binding_1,
                                        __visitor)) {
                                ::core::ops::ControlFlow::Continue(()) => {}
                                ::core::ops::ControlFlow::Break(r) => {
                                    return ::rustc_middle::ty::VisitorResult::from_residual(r);
                                }
                            }
                        }
                    }
                }
                <__V::Result as ::rustc_middle::ty::VisitorResult>::output()
            }
        }
    };TypeVisitable, const _: () =
    {
        impl<'tcx, T>
            ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            for PseudoCanonicalInput<'tcx, T> where
            T: ::rustc_middle::ty::TypeFoldable<::rustc_middle::ty::TyCtxt<'tcx>>
            {
            fn try_fold_with<__F: ::rustc_middle::ty::FallibleTypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Result<Self, __F::Error> {
                Ok(match self {
                        PseudoCanonicalInput {
                            typing_env: __binding_0, value: __binding_1 } => {
                            PseudoCanonicalInput {
                                typing_env: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_0,
                                        __folder)?,
                                value: ::rustc_middle::ty::TypeFoldable::try_fold_with(__binding_1,
                                        __folder)?,
                            }
                        }
                    })
            }
            fn fold_with<__F: ::rustc_middle::ty::TypeFolder<::rustc_middle::ty::TyCtxt<'tcx>>>(self,
                __folder: &mut __F) -> Self {
                match self {
                    PseudoCanonicalInput {
                        typing_env: __binding_0, value: __binding_1 } => {
                        PseudoCanonicalInput {
                            typing_env: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_0,
                                __folder),
                            value: ::rustc_middle::ty::TypeFoldable::fold_with(__binding_1,
                                __folder),
                        }
                    }
                }
            }
        }
    };TypeFoldable)]
1096pub struct PseudoCanonicalInput<'tcx, T> {
1097    pub typing_env: TypingEnv<'tcx>,
1098    pub value: T,
1099}
1100
1101#[derive(#[automatically_derived]
impl ::core::marker::Copy for Destructor { }Copy, #[automatically_derived]
impl ::core::clone::Clone for Destructor {
    #[inline]
    fn clone(&self) -> Destructor {
        let _: ::core::clone::AssertParamIsClone<DefId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for Destructor {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f, "Destructor",
            "did", &&self.did)
    }
}Debug, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for Destructor {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    Destructor { did: ref __binding_0 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for Destructor {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    Destructor { did: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for Destructor {
            fn decode(__decoder: &mut __D) -> Self {
                Destructor {
                    did: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable)]
1102pub struct Destructor {
1103    /// The `DefId` of the destructor method
1104    pub did: DefId,
1105}
1106
1107// FIXME: consider combining this definition with regular `Destructor`
1108#[derive(#[automatically_derived]
impl ::core::marker::Copy for AsyncDestructor { }Copy, #[automatically_derived]
impl ::core::clone::Clone for AsyncDestructor {
    #[inline]
    fn clone(&self) -> AsyncDestructor {
        let _: ::core::clone::AssertParamIsClone<DefId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for AsyncDestructor {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field1_finish(f,
            "AsyncDestructor", "impl_did", &&self.impl_did)
    }
}Debug, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for AsyncDestructor {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    AsyncDestructor { impl_did: ref __binding_0 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for AsyncDestructor {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    AsyncDestructor { impl_did: ref __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for AsyncDestructor {
            fn decode(__decoder: &mut __D) -> Self {
                AsyncDestructor {
                    impl_did: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable)]
1109pub struct AsyncDestructor {
1110    /// The `DefId` of the `impl AsyncDrop`
1111    pub impl_did: DefId,
1112}
1113
1114#[derive(#[automatically_derived]
impl ::core::clone::Clone for VariantFlags {
    #[inline]
    fn clone(&self) -> VariantFlags {
        let _: ::core::clone::AssertParamIsClone<u8>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for VariantFlags { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for VariantFlags {
    #[inline]
    fn eq(&self, other: &VariantFlags) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for VariantFlags {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<u8>;
    }
}Eq, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for VariantFlags {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    VariantFlags(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for VariantFlags {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    VariantFlags(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for VariantFlags {
            fn decode(__decoder: &mut __D) -> Self {
                VariantFlags(::rustc_serialize::Decodable::decode(__decoder))
            }
        }
    };TyDecodable)]
1115pub struct VariantFlags(u8);
1116impl VariantFlags {
    #[allow(deprecated, non_upper_case_globals,)]
    pub const NO_VARIANT_FLAGS: Self = Self::from_bits_retain(0);
    #[doc =
    r" Indicates whether the field list of this variant is `#[non_exhaustive]`."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_FIELD_LIST_NON_EXHAUSTIVE: Self =
        Self::from_bits_retain(1 << 0);
}
impl ::bitflags::Flags for VariantFlags {
    const FLAGS: &'static [::bitflags::Flag<VariantFlags>] =
        &[{

                        #[allow(deprecated, non_upper_case_globals,)]
                        ::bitflags::Flag::new("NO_VARIANT_FLAGS",
                            VariantFlags::NO_VARIANT_FLAGS)
                    },
                    {

                        #[allow(deprecated, non_upper_case_globals,)]
                        ::bitflags::Flag::new("IS_FIELD_LIST_NON_EXHAUSTIVE",
                            VariantFlags::IS_FIELD_LIST_NON_EXHAUSTIVE)
                    }];
    type Bits = u8;
    fn bits(&self) -> u8 { VariantFlags::bits(self) }
    fn from_bits_retain(bits: u8) -> VariantFlags {
        VariantFlags::from_bits_retain(bits)
    }
}
#[allow(dead_code, deprecated, unused_doc_comments, unused_attributes,
unused_mut, unused_imports, non_upper_case_globals, clippy ::
assign_op_pattern, clippy :: iter_without_into_iter,)]
const _: () =
    {
        #[allow(dead_code, deprecated, unused_attributes)]
        impl VariantFlags {
            /// Get a flags value with all bits unset.
            #[inline]
            pub const fn empty() -> Self {
                Self(<u8 as ::bitflags::Bits>::EMPTY)
            }
            /// Get a flags value with all known bits set.
            #[inline]
            pub const fn all() -> Self {
                let mut truncated = <u8 as ::bitflags::Bits>::EMPTY;
                let mut i = 0;
                {
                    {
                        let flag =
                            <VariantFlags as
                                            ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <VariantFlags as
                                            ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                let _ = i;
                Self(truncated)
            }
            /// Get the underlying bits value.
            ///
            /// The returned value is exactly the bits set in this flags value.
            #[inline]
            pub const fn bits(&self) -> u8 { self.0 }
            /// Convert from a bits value.
            ///
            /// This method will return `None` if any unknown bits are set.
            #[inline]
            pub const fn from_bits(bits: u8)
                -> ::bitflags::__private::core::option::Option<Self> {
                let truncated = Self::from_bits_truncate(bits).0;
                if truncated == bits {
                    ::bitflags::__private::core::option::Option::Some(Self(bits))
                } else { ::bitflags::__private::core::option::Option::None }
            }
            /// Convert from a bits value, unsetting any unknown bits.
            #[inline]
            pub const fn from_bits_truncate(bits: u8) -> Self {
                Self(bits & Self::all().0)
            }
            /// Convert from a bits value exactly.
            #[inline]
            pub const fn from_bits_retain(bits: u8) -> Self { Self(bits) }
            /// Get a flags value with the bits of a flag with the given name set.
            ///
            /// This method will return `None` if `name` is empty or doesn't
            /// correspond to any named flag.
            #[inline]
            pub fn from_name(name: &str)
                -> ::bitflags::__private::core::option::Option<Self> {
                {
                    if name == "NO_VARIANT_FLAGS" {
                        return ::bitflags::__private::core::option::Option::Some(Self(VariantFlags::NO_VARIANT_FLAGS.bits()));
                    }
                };
                ;
                {
                    if name == "IS_FIELD_LIST_NON_EXHAUSTIVE" {
                        return ::bitflags::__private::core::option::Option::Some(Self(VariantFlags::IS_FIELD_LIST_NON_EXHAUSTIVE.bits()));
                    }
                };
                ;
                let _ = name;
                ::bitflags::__private::core::option::Option::None
            }
            /// Whether all bits in this flags value are unset.
            #[inline]
            pub const fn is_empty(&self) -> bool {
                self.0 == <u8 as ::bitflags::Bits>::EMPTY
            }
            /// Whether all known bits in this flags value are set.
            #[inline]
            pub const fn is_all(&self) -> bool {
                Self::all().0 | self.0 == self.0
            }
            /// Whether any set bits in a source flags value are also set in a target flags value.
            #[inline]
            pub const fn intersects(&self, other: Self) -> bool {
                self.0 & other.0 != <u8 as ::bitflags::Bits>::EMPTY
            }
            /// Whether all set bits in a source flags value are also set in a target flags value.
            #[inline]
            pub const fn contains(&self, other: Self) -> bool {
                self.0 & other.0 == other.0
            }
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            pub fn insert(&mut self, other: Self) {
                *self = Self(self.0).union(other);
            }
            /// The intersection of a source flags value with the complement of a target flags
            /// value (`&!`).
            ///
            /// This method is not equivalent to `self & !other` when `other` has unknown bits set.
            /// `remove` won't truncate `other`, but the `!` operator will.
            #[inline]
            pub fn remove(&mut self, other: Self) {
                *self = Self(self.0).difference(other);
            }
            /// The bitwise exclusive-or (`^`) of the bits in two flags values.
            #[inline]
            pub fn toggle(&mut self, other: Self) {
                *self = Self(self.0).symmetric_difference(other);
            }
            /// Call `insert` when `value` is `true` or `remove` when `value` is `false`.
            #[inline]
            pub fn set(&mut self, other: Self, value: bool) {
                if value { self.insert(other); } else { self.remove(other); }
            }
            /// The bitwise and (`&`) of the bits in two flags values.
            #[inline]
            #[must_use]
            pub const fn intersection(self, other: Self) -> Self {
                Self(self.0 & other.0)
            }
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            #[must_use]
            pub const fn union(self, other: Self) -> Self {
                Self(self.0 | other.0)
            }
            /// The intersection of a source flags value with the complement of a target flags
            /// value (`&!`).
            ///
            /// This method is not equivalent to `self & !other` when `other` has unknown bits set.
            /// `difference` won't truncate `other`, but the `!` operator will.
            #[inline]
            #[must_use]
            pub const fn difference(self, other: Self) -> Self {
                Self(self.0 & !other.0)
            }
            /// The bitwise exclusive-or (`^`) of the bits in two flags values.
            #[inline]
            #[must_use]
            pub const fn symmetric_difference(self, other: Self) -> Self {
                Self(self.0 ^ other.0)
            }
            /// The bitwise negation (`!`) of the bits in a flags value, truncating the result.
            #[inline]
            #[must_use]
            pub const fn complement(self) -> Self {
                Self::from_bits_truncate(!self.0)
            }
        }
        impl ::bitflags::__private::core::fmt::Binary for VariantFlags {
            fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
                -> ::bitflags::__private::core::fmt::Result {
                let inner = self.0;
                ::bitflags::__private::core::fmt::Binary::fmt(&inner, f)
            }
        }
        impl ::bitflags::__private::core::fmt::Octal for VariantFlags {
            fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
                -> ::bitflags::__private::core::fmt::Result {
                let inner = self.0;
                ::bitflags::__private::core::fmt::Octal::fmt(&inner, f)
            }
        }
        impl ::bitflags::__private::core::fmt::LowerHex for VariantFlags {
            fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
                -> ::bitflags::__private::core::fmt::Result {
                let inner = self.0;
                ::bitflags::__private::core::fmt::LowerHex::fmt(&inner, f)
            }
        }
        impl ::bitflags::__private::core::fmt::UpperHex for VariantFlags {
            fn fmt(&self, f: &mut ::bitflags::__private::core::fmt::Formatter)
                -> ::bitflags::__private::core::fmt::Result {
                let inner = self.0;
                ::bitflags::__private::core::fmt::UpperHex::fmt(&inner, f)
            }
        }
        impl ::bitflags::__private::core::ops::BitOr for VariantFlags {
            type Output = Self;
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            fn bitor(self, other: VariantFlags) -> Self { self.union(other) }
        }
        impl ::bitflags::__private::core::ops::BitOrAssign for VariantFlags {
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            fn bitor_assign(&mut self, other: Self) { self.insert(other); }
        }
        impl ::bitflags::__private::core::ops::BitXor for VariantFlags {
            type Output = Self;
            /// The bitwise exclusive-or (`^`) of the bits in two flags values.
            #[inline]
            fn bitxor(self, other: Self) -> Self {
                self.symmetric_difference(other)
            }
        }
        impl ::bitflags::__private::core::ops::BitXorAssign for VariantFlags {
            /// The bitwise exclusive-or (`^`) of the bits in two flags values.
            #[inline]
            fn bitxor_assign(&mut self, other: Self) { self.toggle(other); }
        }
        impl ::bitflags::__private::core::ops::BitAnd for VariantFlags {
            type Output = Self;
            /// The bitwise and (`&`) of the bits in two flags values.
            #[inline]
            fn bitand(self, other: Self) -> Self { self.intersection(other) }
        }
        impl ::bitflags::__private::core::ops::BitAndAssign for VariantFlags {
            /// The bitwise and (`&`) of the bits in two flags values.
            #[inline]
            fn bitand_assign(&mut self, other: Self) {
                *self =
                    Self::from_bits_retain(self.bits()).intersection(other);
            }
        }
        impl ::bitflags::__private::core::ops::Sub for VariantFlags {
            type Output = Self;
            /// The intersection of a source flags value with the complement of a target flags value (`&!`).
            ///
            /// This method is not equivalent to `self & !other` when `other` has unknown bits set.
            /// `difference` won't truncate `other`, but the `!` operator will.
            #[inline]
            fn sub(self, other: Self) -> Self { self.difference(other) }
        }
        impl ::bitflags::__private::core::ops::SubAssign for VariantFlags {
            /// The intersection of a source flags value with the complement of a target flags value (`&!`).
            ///
            /// This method is not equivalent to `self & !other` when `other` has unknown bits set.
            /// `difference` won't truncate `other`, but the `!` operator will.
            #[inline]
            fn sub_assign(&mut self, other: Self) { self.remove(other); }
        }
        impl ::bitflags::__private::core::ops::Not for VariantFlags {
            type Output = Self;
            /// The bitwise negation (`!`) of the bits in a flags value, truncating the result.
            #[inline]
            fn not(self) -> Self { self.complement() }
        }
        impl ::bitflags::__private::core::iter::Extend<VariantFlags> for
            VariantFlags {
            /// The bitwise or (`|`) of the bits in each flags value.
            fn extend<T: ::bitflags::__private::core::iter::IntoIterator<Item
                = Self>>(&mut self, iterator: T) {
                for item in iterator { self.insert(item) }
            }
        }
        impl ::bitflags::__private::core::iter::FromIterator<VariantFlags> for
            VariantFlags {
            /// The bitwise or (`|`) of the bits in each flags value.
            fn from_iter<T: ::bitflags::__private::core::iter::IntoIterator<Item
                = Self>>(iterator: T) -> Self {
                use ::bitflags::__private::core::iter::Extend;
                let mut result = Self::empty();
                result.extend(iterator);
                result
            }
        }
        impl VariantFlags {
            /// Yield a set of contained flags values.
            ///
            /// Each yielded flags value will correspond to a defined named flag. Any unknown bits
            /// will be yielded together as a final flags value.
            #[inline]
            pub const fn iter(&self) -> ::bitflags::iter::Iter<VariantFlags> {
                ::bitflags::iter::Iter::__private_const_new(<VariantFlags as
                        ::bitflags::Flags>::FLAGS,
                    VariantFlags::from_bits_retain(self.bits()),
                    VariantFlags::from_bits_retain(self.bits()))
            }
            /// Yield a set of contained named flags values.
            ///
            /// This method is like [`iter`](#method.iter), except only yields bits in contained named flags.
            /// Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
            #[inline]
            pub const fn iter_names(&self)
                -> ::bitflags::iter::IterNames<VariantFlags> {
                ::bitflags::iter::IterNames::__private_const_new(<VariantFlags
                        as ::bitflags::Flags>::FLAGS,
                    VariantFlags::from_bits_retain(self.bits()),
                    VariantFlags::from_bits_retain(self.bits()))
            }
        }
        impl ::bitflags::__private::core::iter::IntoIterator for VariantFlags
            {
            type Item = VariantFlags;
            type IntoIter = ::bitflags::iter::Iter<VariantFlags>;
            fn into_iter(self) -> Self::IntoIter { self.iter() }
        }
    };bitflags::bitflags! {
1117    impl VariantFlags: u8 {
1118        const NO_VARIANT_FLAGS        = 0;
1119        /// Indicates whether the field list of this variant is `#[non_exhaustive]`.
1120        const IS_FIELD_LIST_NON_EXHAUSTIVE = 1 << 0;
1121    }
1122}
1123impl ::std::fmt::Debug for VariantFlags {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        ::bitflags::parser::to_writer(self, f)
    }
}rustc_data_structures::external_bitflags_debug! { VariantFlags }
1124
1125/// Definition of a variant -- a struct's fields or an enum variant.
1126#[derive(#[automatically_derived]
impl ::core::fmt::Debug for VariantDef {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["def_id", "ctor", "name", "discr", "fields", "tainted",
                        "flags"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.def_id, &self.ctor, &self.name, &self.discr, &self.fields,
                        &self.tainted, &&self.flags];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "VariantDef",
            names, values)
    }
}Debug, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for VariantDef {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    VariantDef {
                        def_id: ref __binding_0,
                        ctor: ref __binding_1,
                        name: ref __binding_2,
                        discr: ref __binding_3,
                        fields: ref __binding_4,
                        tainted: ref __binding_5,
                        flags: ref __binding_6 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                        { __binding_4.hash_stable(__hcx, __hasher); }
                        { __binding_5.hash_stable(__hcx, __hasher); }
                        { __binding_6.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for VariantDef {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    VariantDef {
                        def_id: ref __binding_0,
                        ctor: ref __binding_1,
                        name: ref __binding_2,
                        discr: ref __binding_3,
                        fields: ref __binding_4,
                        tainted: ref __binding_5,
                        flags: ref __binding_6 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_4,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_5,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_6,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for VariantDef {
            fn decode(__decoder: &mut __D) -> Self {
                VariantDef {
                    def_id: ::rustc_serialize::Decodable::decode(__decoder),
                    ctor: ::rustc_serialize::Decodable::decode(__decoder),
                    name: ::rustc_serialize::Decodable::decode(__decoder),
                    discr: ::rustc_serialize::Decodable::decode(__decoder),
                    fields: ::rustc_serialize::Decodable::decode(__decoder),
                    tainted: ::rustc_serialize::Decodable::decode(__decoder),
                    flags: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable)]
1127pub struct VariantDef {
1128    /// `DefId` that identifies the variant itself.
1129    /// If this variant belongs to a struct or union, then this is a copy of its `DefId`.
1130    pub def_id: DefId,
1131    /// `DefId` that identifies the variant's constructor.
1132    /// If this variant is a struct variant, then this is `None`.
1133    pub ctor: Option<(CtorKind, DefId)>,
1134    /// Variant or struct name.
1135    pub name: Symbol,
1136    /// Discriminant of this variant.
1137    pub discr: VariantDiscr,
1138    /// Fields of this variant.
1139    pub fields: IndexVec<FieldIdx, FieldDef>,
1140    /// The error guarantees from parser, if any.
1141    tainted: Option<ErrorGuaranteed>,
1142    /// Flags of the variant (e.g. is field list non-exhaustive)?
1143    flags: VariantFlags,
1144}
1145
1146impl VariantDef {
1147    /// Creates a new `VariantDef`.
1148    ///
1149    /// `variant_did` is the `DefId` that identifies the enum variant (if this `VariantDef`
1150    /// represents an enum variant).
1151    ///
1152    /// `ctor_did` is the `DefId` that identifies the constructor of unit or
1153    /// tuple-variants/structs. If this is a `struct`-variant then this should be `None`.
1154    ///
1155    /// `parent_did` is the `DefId` of the `AdtDef` representing the enum or struct that
1156    /// owns this variant. It is used for checking if a struct has `#[non_exhaustive]` w/out having
1157    /// to go through the redirect of checking the ctor's attributes - but compiling a small crate
1158    /// requires loading the `AdtDef`s for all the structs in the universe (e.g., coherence for any
1159    /// built-in trait), and we do not want to load attributes twice.
1160    ///
1161    /// If someone speeds up attribute loading to not be a performance concern, they can
1162    /// remove this hack and use the constructor `DefId` everywhere.
1163    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("new",
                                    "rustc_middle::ty", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/ty/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(1163u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_middle::ty"),
                                    ::tracing_core::field::FieldSet::new(&["name",
                                                    "variant_did", "ctor", "discr", "fields", "parent_did",
                                                    "recover_tainted", "is_field_list_non_exhaustive"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&name)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&variant_did)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&ctor)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&discr)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&fields)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&parent_did)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&recover_tainted)
                                                            as &dyn Value)),
                                                (&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&is_field_list_non_exhaustive
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: Self = loop {};
            return __tracing_attr_fake_return;
        }
        {
            let mut flags = VariantFlags::NO_VARIANT_FLAGS;
            if is_field_list_non_exhaustive {
                flags |= VariantFlags::IS_FIELD_LIST_NON_EXHAUSTIVE;
            }
            VariantDef {
                def_id: variant_did.unwrap_or(parent_did),
                ctor,
                name,
                discr,
                fields,
                flags,
                tainted: recover_tainted,
            }
        }
    }
}#[instrument(level = "debug")]
1164    pub fn new(
1165        name: Symbol,
1166        variant_did: Option<DefId>,
1167        ctor: Option<(CtorKind, DefId)>,
1168        discr: VariantDiscr,
1169        fields: IndexVec<FieldIdx, FieldDef>,
1170        parent_did: DefId,
1171        recover_tainted: Option<ErrorGuaranteed>,
1172        is_field_list_non_exhaustive: bool,
1173    ) -> Self {
1174        let mut flags = VariantFlags::NO_VARIANT_FLAGS;
1175        if is_field_list_non_exhaustive {
1176            flags |= VariantFlags::IS_FIELD_LIST_NON_EXHAUSTIVE;
1177        }
1178
1179        VariantDef {
1180            def_id: variant_did.unwrap_or(parent_did),
1181            ctor,
1182            name,
1183            discr,
1184            fields,
1185            flags,
1186            tainted: recover_tainted,
1187        }
1188    }
1189
1190    /// Returns `true` if the field list of this variant is `#[non_exhaustive]`.
1191    ///
1192    /// Note that this function will return `true` even if the type has been
1193    /// defined in the crate currently being compiled. If that's not what you
1194    /// want, see [`Self::field_list_has_applicable_non_exhaustive`].
1195    #[inline]
1196    pub fn is_field_list_non_exhaustive(&self) -> bool {
1197        self.flags.intersects(VariantFlags::IS_FIELD_LIST_NON_EXHAUSTIVE)
1198    }
1199
1200    /// Returns `true` if the field list of this variant is `#[non_exhaustive]`
1201    /// and the type has been defined in another crate.
1202    #[inline]
1203    pub fn field_list_has_applicable_non_exhaustive(&self) -> bool {
1204        self.is_field_list_non_exhaustive() && !self.def_id.is_local()
1205    }
1206
1207    /// Computes the `Ident` of this variant by looking up the `Span`
1208    pub fn ident(&self, tcx: TyCtxt<'_>) -> Ident {
1209        Ident::new(self.name, tcx.def_ident_span(self.def_id).unwrap())
1210    }
1211
1212    /// Was this variant obtained as part of recovering from a syntactic error?
1213    #[inline]
1214    pub fn has_errors(&self) -> Result<(), ErrorGuaranteed> {
1215        self.tainted.map_or(Ok(()), Err)
1216    }
1217
1218    #[inline]
1219    pub fn ctor_kind(&self) -> Option<CtorKind> {
1220        self.ctor.map(|(kind, _)| kind)
1221    }
1222
1223    #[inline]
1224    pub fn ctor_def_id(&self) -> Option<DefId> {
1225        self.ctor.map(|(_, def_id)| def_id)
1226    }
1227
1228    /// Returns the one field in this variant.
1229    ///
1230    /// `panic!`s if there are no fields or multiple fields.
1231    #[inline]
1232    pub fn single_field(&self) -> &FieldDef {
1233        if !(self.fields.len() == 1) {
    ::core::panicking::panic("assertion failed: self.fields.len() == 1")
};assert!(self.fields.len() == 1);
1234
1235        &self.fields[FieldIdx::ZERO]
1236    }
1237
1238    /// Returns the last field in this variant, if present.
1239    #[inline]
1240    pub fn tail_opt(&self) -> Option<&FieldDef> {
1241        self.fields.raw.last()
1242    }
1243
1244    /// Returns the last field in this variant.
1245    ///
1246    /// # Panics
1247    ///
1248    /// Panics, if the variant has no fields.
1249    #[inline]
1250    pub fn tail(&self) -> &FieldDef {
1251        self.tail_opt().expect("expected unsized ADT to have a tail field")
1252    }
1253
1254    /// Returns whether this variant has unsafe fields.
1255    pub fn has_unsafe_fields(&self) -> bool {
1256        self.fields.iter().any(|x| x.safety.is_unsafe())
1257    }
1258}
1259
1260impl PartialEq for VariantDef {
1261    #[inline]
1262    fn eq(&self, other: &Self) -> bool {
1263        // There should be only one `VariantDef` for each `def_id`, therefore
1264        // it is fine to implement `PartialEq` only based on `def_id`.
1265        //
1266        // Below, we exhaustively destructure `self` and `other` so that if the
1267        // definition of `VariantDef` changes, a compile-error will be produced,
1268        // reminding us to revisit this assumption.
1269
1270        let Self {
1271            def_id: lhs_def_id,
1272            ctor: _,
1273            name: _,
1274            discr: _,
1275            fields: _,
1276            flags: _,
1277            tainted: _,
1278        } = &self;
1279        let Self {
1280            def_id: rhs_def_id,
1281            ctor: _,
1282            name: _,
1283            discr: _,
1284            fields: _,
1285            flags: _,
1286            tainted: _,
1287        } = other;
1288
1289        let res = lhs_def_id == rhs_def_id;
1290
1291        // Double check that implicit assumption detailed above.
1292        if truecfg!(debug_assertions) && res {
1293            let deep = self.ctor == other.ctor
1294                && self.name == other.name
1295                && self.discr == other.discr
1296                && self.fields == other.fields
1297                && self.flags == other.flags;
1298            if !deep {
    {
        ::core::panicking::panic_fmt(format_args!("VariantDef for the same def-id has differing data"));
    }
};assert!(deep, "VariantDef for the same def-id has differing data");
1299        }
1300
1301        res
1302    }
1303}
1304
1305impl Eq for VariantDef {}
1306
1307impl Hash for VariantDef {
1308    #[inline]
1309    fn hash<H: Hasher>(&self, s: &mut H) {
1310        // There should be only one `VariantDef` for each `def_id`, therefore
1311        // it is fine to implement `Hash` only based on `def_id`.
1312        //
1313        // Below, we exhaustively destructure `self` so that if the definition
1314        // of `VariantDef` changes, a compile-error will be produced, reminding
1315        // us to revisit this assumption.
1316
1317        let Self { def_id, ctor: _, name: _, discr: _, fields: _, flags: _, tainted: _ } = &self;
1318        def_id.hash(s)
1319    }
1320}
1321
1322#[derive(#[automatically_derived]
impl ::core::marker::Copy for VariantDiscr { }Copy, #[automatically_derived]
impl ::core::clone::Clone for VariantDiscr {
    #[inline]
    fn clone(&self) -> VariantDiscr {
        let _: ::core::clone::AssertParamIsClone<DefId>;
        let _: ::core::clone::AssertParamIsClone<u32>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for VariantDiscr {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            VariantDiscr::Explicit(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Explicit", &__self_0),
            VariantDiscr::Relative(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Relative", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for VariantDiscr {
    #[inline]
    fn eq(&self, other: &VariantDiscr) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (VariantDiscr::Explicit(__self_0),
                    VariantDiscr::Explicit(__arg1_0)) => __self_0 == __arg1_0,
                (VariantDiscr::Relative(__self_0),
                    VariantDiscr::Relative(__arg1_0)) => __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for VariantDiscr {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<DefId>;
        let _: ::core::cmp::AssertParamIsEq<u32>;
    }
}Eq, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for VariantDiscr {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        VariantDiscr::Explicit(ref __binding_0) => { 0usize }
                        VariantDiscr::Relative(ref __binding_0) => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    VariantDiscr::Explicit(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    VariantDiscr::Relative(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for VariantDiscr {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        VariantDiscr::Explicit(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    1usize => {
                        VariantDiscr::Relative(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `VariantDiscr`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for VariantDiscr {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    VariantDiscr::Explicit(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    VariantDiscr::Relative(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
1323pub enum VariantDiscr {
1324    /// Explicit value for this variant, i.e., `X = 123`.
1325    /// The `DefId` corresponds to the embedded constant.
1326    Explicit(DefId),
1327
1328    /// The previous variant's discriminant plus one.
1329    /// For efficiency reasons, the distance from the
1330    /// last `Explicit` discriminant is being stored,
1331    /// or `0` for the first variant, if it has none.
1332    Relative(u32),
1333}
1334
1335#[derive(#[automatically_derived]
impl ::core::fmt::Debug for FieldDef {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "FieldDef",
            "did", &self.did, "name", &self.name, "vis", &self.vis, "safety",
            &self.safety, "value", &&self.value)
    }
}Debug, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for FieldDef {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    FieldDef {
                        did: ref __binding_0,
                        name: ref __binding_1,
                        vis: ref __binding_2,
                        safety: ref __binding_3,
                        value: ref __binding_4 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                        { __binding_4.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for FieldDef {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    FieldDef {
                        did: ref __binding_0,
                        name: ref __binding_1,
                        vis: ref __binding_2,
                        safety: ref __binding_3,
                        value: ref __binding_4 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_4,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for FieldDef {
            fn decode(__decoder: &mut __D) -> Self {
                FieldDef {
                    did: ::rustc_serialize::Decodable::decode(__decoder),
                    name: ::rustc_serialize::Decodable::decode(__decoder),
                    vis: ::rustc_serialize::Decodable::decode(__decoder),
                    safety: ::rustc_serialize::Decodable::decode(__decoder),
                    value: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable)]
1336pub struct FieldDef {
1337    pub did: DefId,
1338    pub name: Symbol,
1339    pub vis: Visibility<DefId>,
1340    pub safety: hir::Safety,
1341    pub value: Option<DefId>,
1342}
1343
1344impl PartialEq for FieldDef {
1345    #[inline]
1346    fn eq(&self, other: &Self) -> bool {
1347        // There should be only one `FieldDef` for each `did`, therefore it is
1348        // fine to implement `PartialEq` only based on `did`.
1349        //
1350        // Below, we exhaustively destructure `self` so that if the definition
1351        // of `FieldDef` changes, a compile-error will be produced, reminding
1352        // us to revisit this assumption.
1353
1354        let Self { did: lhs_did, name: _, vis: _, safety: _, value: _ } = &self;
1355
1356        let Self { did: rhs_did, name: _, vis: _, safety: _, value: _ } = other;
1357
1358        let res = lhs_did == rhs_did;
1359
1360        // Double check that implicit assumption detailed above.
1361        if truecfg!(debug_assertions) && res {
1362            let deep =
1363                self.name == other.name && self.vis == other.vis && self.safety == other.safety;
1364            if !deep {
    {
        ::core::panicking::panic_fmt(format_args!("FieldDef for the same def-id has differing data"));
    }
};assert!(deep, "FieldDef for the same def-id has differing data");
1365        }
1366
1367        res
1368    }
1369}
1370
1371impl Eq for FieldDef {}
1372
1373impl Hash for FieldDef {
1374    #[inline]
1375    fn hash<H: Hasher>(&self, s: &mut H) {
1376        // There should be only one `FieldDef` for each `did`, therefore it is
1377        // fine to implement `Hash` only based on `did`.
1378        //
1379        // Below, we exhaustively destructure `self` so that if the definition
1380        // of `FieldDef` changes, a compile-error will be produced, reminding
1381        // us to revisit this assumption.
1382
1383        let Self { did, name: _, vis: _, safety: _, value: _ } = &self;
1384
1385        did.hash(s)
1386    }
1387}
1388
1389impl<'tcx> FieldDef {
1390    /// Returns the type of this field. The resulting type is not normalized. The `arg` is
1391    /// typically obtained via the second field of [`TyKind::Adt`].
1392    pub fn ty(&self, tcx: TyCtxt<'tcx>, args: GenericArgsRef<'tcx>) -> Ty<'tcx> {
1393        tcx.type_of(self.did).instantiate(tcx, args)
1394    }
1395
1396    /// Computes the `Ident` of this variant by looking up the `Span`
1397    pub fn ident(&self, tcx: TyCtxt<'_>) -> Ident {
1398        Ident::new(self.name, tcx.def_ident_span(self.did).unwrap())
1399    }
1400}
1401
1402#[derive(#[automatically_derived]
impl ::core::fmt::Debug for ImplOverlapKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ImplOverlapKind::Permitted { marker: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f,
                    "Permitted", "marker", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for ImplOverlapKind {
    #[inline]
    fn eq(&self, other: &ImplOverlapKind) -> bool {
        match (self, other) {
            (ImplOverlapKind::Permitted { marker: __self_0 },
                ImplOverlapKind::Permitted { marker: __arg1_0 }) =>
                __self_0 == __arg1_0,
        }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for ImplOverlapKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<bool>;
    }
}Eq)]
1403pub enum ImplOverlapKind {
1404    /// These impls are always allowed to overlap.
1405    Permitted {
1406        /// Whether or not the impl is permitted due to the trait being a `#[marker]` trait
1407        marker: bool,
1408    },
1409}
1410
1411/// Useful source information about where a desugared associated type for an
1412/// RPITIT originated from.
1413#[derive(#[automatically_derived]
impl ::core::clone::Clone for ImplTraitInTraitData {
    #[inline]
    fn clone(&self) -> ImplTraitInTraitData {
        let _: ::core::clone::AssertParamIsClone<DefId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for ImplTraitInTraitData { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for ImplTraitInTraitData {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ImplTraitInTraitData::Trait {
                fn_def_id: __self_0, opaque_def_id: __self_1 } =>
                ::core::fmt::Formatter::debug_struct_field2_finish(f, "Trait",
                    "fn_def_id", __self_0, "opaque_def_id", &__self_1),
            ImplTraitInTraitData::Impl { fn_def_id: __self_0 } =>
                ::core::fmt::Formatter::debug_struct_field1_finish(f, "Impl",
                    "fn_def_id", &__self_0),
        }
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for ImplTraitInTraitData {
    #[inline]
    fn eq(&self, other: &ImplTraitInTraitData) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (ImplTraitInTraitData::Trait {
                    fn_def_id: __self_0, opaque_def_id: __self_1 },
                    ImplTraitInTraitData::Trait {
                    fn_def_id: __arg1_0, opaque_def_id: __arg1_1 }) =>
                    __self_0 == __arg1_0 && __self_1 == __arg1_1,
                (ImplTraitInTraitData::Impl { fn_def_id: __self_0 },
                    ImplTraitInTraitData::Impl { fn_def_id: __arg1_0 }) =>
                    __self_0 == __arg1_0,
                _ => unsafe { ::core::intrinsics::unreachable() }
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for ImplTraitInTraitData {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<DefId>;
    }
}Eq, #[automatically_derived]
impl ::core::hash::Hash for ImplTraitInTraitData {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        ::core::hash::Hash::hash(&__self_discr, state);
        match self {
            ImplTraitInTraitData::Trait {
                fn_def_id: __self_0, opaque_def_id: __self_1 } => {
                ::core::hash::Hash::hash(__self_0, state);
                ::core::hash::Hash::hash(__self_1, state)
            }
            ImplTraitInTraitData::Impl { fn_def_id: __self_0 } =>
                ::core::hash::Hash::hash(__self_0, state),
        }
    }
}Hash, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for ImplTraitInTraitData {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        ImplTraitInTraitData::Trait {
                            fn_def_id: ref __binding_0, opaque_def_id: ref __binding_1 }
                            => {
                            0usize
                        }
                        ImplTraitInTraitData::Impl { fn_def_id: ref __binding_0 } =>
                            {
                            1usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    ImplTraitInTraitData::Trait {
                        fn_def_id: ref __binding_0, opaque_def_id: ref __binding_1 }
                        => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                    ImplTraitInTraitData::Impl { fn_def_id: ref __binding_0 } =>
                        {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for ImplTraitInTraitData {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => {
                        ImplTraitInTraitData::Trait {
                            fn_def_id: ::rustc_serialize::Decodable::decode(__decoder),
                            opaque_def_id: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    1usize => {
                        ImplTraitInTraitData::Impl {
                            fn_def_id: ::rustc_serialize::Decodable::decode(__decoder),
                        }
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `ImplTraitInTraitData`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for ImplTraitInTraitData {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    ImplTraitInTraitData::Trait {
                        fn_def_id: ref __binding_0, opaque_def_id: ref __binding_1 }
                        => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                    ImplTraitInTraitData::Impl { fn_def_id: ref __binding_0 } =>
                        {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
1414pub enum ImplTraitInTraitData {
1415    Trait { fn_def_id: DefId, opaque_def_id: DefId },
1416    Impl { fn_def_id: DefId },
1417}
1418
1419impl<'tcx> TyCtxt<'tcx> {
1420    pub fn typeck_body(self, body: hir::BodyId) -> &'tcx TypeckResults<'tcx> {
1421        self.typeck(self.hir_body_owner_def_id(body))
1422    }
1423
1424    pub fn provided_trait_methods(self, id: DefId) -> impl 'tcx + Iterator<Item = &'tcx AssocItem> {
1425        self.associated_items(id)
1426            .in_definition_order()
1427            .filter(move |item| item.is_fn() && item.defaultness(self).has_value())
1428    }
1429
1430    pub fn repr_options_of_def(self, did: LocalDefId) -> ReprOptions {
1431        let mut flags = ReprFlags::empty();
1432        let mut size = None;
1433        let mut max_align: Option<Align> = None;
1434        let mut min_pack: Option<Align> = None;
1435
1436        // Generate a deterministically-derived seed from the item's path hash
1437        // to allow for cross-crate compilation to actually work
1438        let mut field_shuffle_seed = self.def_path_hash(did.to_def_id()).0.to_smaller_hash();
1439
1440        // If the user defined a custom seed for layout randomization, xor the item's
1441        // path hash with the user defined seed, this will allowing determinism while
1442        // still allowing users to further randomize layout generation for e.g. fuzzing
1443        if let Some(user_seed) = self.sess.opts.unstable_opts.layout_seed {
1444            field_shuffle_seed ^= user_seed;
1445        }
1446
1447        let elt = {

    #[allow(deprecated)]
    {
        {
            'done:
                {
                for i in self.get_all_attrs(did) {
                    #[allow(unused_imports)]
                    use rustc_hir::attrs::AttributeKind::*;
                    let i: &rustc_hir::Attribute = i;
                    match i {
                        rustc_hir::Attribute::Parsed(RustcScalableVector {
                            element_count, .. }) => {
                            break 'done Some(element_count);
                        }
                        rustc_hir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }
    }
}find_attr!(self, did, RustcScalableVector { element_count, .. } => element_count
1448        )
1449        .map(|elt| match elt {
1450            Some(n) => ScalableElt::ElementCount(*n),
1451            None => ScalableElt::Container,
1452        });
1453        if elt.is_some() {
1454            flags.insert(ReprFlags::IS_SCALABLE);
1455        }
1456        if let Some(reprs) = {

    #[allow(deprecated)]
    {
        {
            'done:
                {
                for i in self.get_all_attrs(did) {
                    #[allow(unused_imports)]
                    use rustc_hir::attrs::AttributeKind::*;
                    let i: &rustc_hir::Attribute = i;
                    match i {
                        rustc_hir::Attribute::Parsed(Repr { reprs, .. }) => {
                            break 'done Some(reprs);
                        }
                        rustc_hir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }
    }
}find_attr!(self, did, Repr { reprs, .. } => reprs) {
1457            for (r, _) in reprs {
1458                flags.insert(match *r {
1459                    attr::ReprRust => ReprFlags::empty(),
1460                    attr::ReprC => ReprFlags::IS_C,
1461                    attr::ReprPacked(pack) => {
1462                        min_pack = Some(if let Some(min_pack) = min_pack {
1463                            min_pack.min(pack)
1464                        } else {
1465                            pack
1466                        });
1467                        ReprFlags::empty()
1468                    }
1469                    attr::ReprTransparent => ReprFlags::IS_TRANSPARENT,
1470                    attr::ReprSimd => ReprFlags::IS_SIMD,
1471                    attr::ReprInt(i) => {
1472                        size = Some(match i {
1473                            attr::IntType::SignedInt(x) => match x {
1474                                ast::IntTy::Isize => IntegerType::Pointer(true),
1475                                ast::IntTy::I8 => IntegerType::Fixed(Integer::I8, true),
1476                                ast::IntTy::I16 => IntegerType::Fixed(Integer::I16, true),
1477                                ast::IntTy::I32 => IntegerType::Fixed(Integer::I32, true),
1478                                ast::IntTy::I64 => IntegerType::Fixed(Integer::I64, true),
1479                                ast::IntTy::I128 => IntegerType::Fixed(Integer::I128, true),
1480                            },
1481                            attr::IntType::UnsignedInt(x) => match x {
1482                                ast::UintTy::Usize => IntegerType::Pointer(false),
1483                                ast::UintTy::U8 => IntegerType::Fixed(Integer::I8, false),
1484                                ast::UintTy::U16 => IntegerType::Fixed(Integer::I16, false),
1485                                ast::UintTy::U32 => IntegerType::Fixed(Integer::I32, false),
1486                                ast::UintTy::U64 => IntegerType::Fixed(Integer::I64, false),
1487                                ast::UintTy::U128 => IntegerType::Fixed(Integer::I128, false),
1488                            },
1489                        });
1490                        ReprFlags::empty()
1491                    }
1492                    attr::ReprAlign(align) => {
1493                        max_align = max_align.max(Some(align));
1494                        ReprFlags::empty()
1495                    }
1496                });
1497            }
1498        }
1499
1500        // If `-Z randomize-layout` was enabled for the type definition then we can
1501        // consider performing layout randomization
1502        if self.sess.opts.unstable_opts.randomize_layout {
1503            flags.insert(ReprFlags::RANDOMIZE_LAYOUT);
1504        }
1505
1506        // box is special, on the one hand the compiler assumes an ordered layout, with the pointer
1507        // always at offset zero. On the other hand we want scalar abi optimizations.
1508        let is_box = self.is_lang_item(did.to_def_id(), LangItem::OwnedBox);
1509
1510        // This is here instead of layout because the choice must make it into metadata.
1511        if is_box {
1512            flags.insert(ReprFlags::IS_LINEAR);
1513        }
1514
1515        // See `TyAndLayout::pass_indirectly_in_non_rustic_abis` for details.
1516        if {

        #[allow(deprecated)]
        {
            {
                'done:
                    {
                    for i in self.get_all_attrs(did) {
                        #[allow(unused_imports)]
                        use rustc_hir::attrs::AttributeKind::*;
                        let i: &rustc_hir::Attribute = i;
                        match i {
                            rustc_hir::Attribute::Parsed(RustcPassIndirectlyInNonRusticAbis(..))
                                => {
                                break 'done Some(());
                            }
                            rustc_hir::Attribute::Unparsed(..) =>
                                {}
                                #[deny(unreachable_patterns)]
                                _ => {}
                        }
                    }
                    None
                }
            }
        }
    }.is_some()find_attr!(self, did, RustcPassIndirectlyInNonRusticAbis(..)) {
1517            flags.insert(ReprFlags::PASS_INDIRECTLY_IN_NON_RUSTIC_ABIS);
1518        }
1519
1520        ReprOptions {
1521            int: size,
1522            align: max_align,
1523            pack: min_pack,
1524            flags,
1525            field_shuffle_seed,
1526            scalable: elt,
1527        }
1528    }
1529
1530    /// Look up the name of a definition across crates. This does not look at HIR.
1531    pub fn opt_item_name(self, def_id: impl IntoQueryParam<DefId>) -> Option<Symbol> {
1532        let def_id = def_id.into_query_param();
1533        if let Some(cnum) = def_id.as_crate_root() {
1534            Some(self.crate_name(cnum))
1535        } else {
1536            let def_key = self.def_key(def_id);
1537            match def_key.disambiguated_data.data {
1538                // The name of a constructor is that of its parent.
1539                rustc_hir::definitions::DefPathData::Ctor => self
1540                    .opt_item_name(DefId { krate: def_id.krate, index: def_key.parent.unwrap() }),
1541                _ => def_key.get_opt_name(),
1542            }
1543        }
1544    }
1545
1546    /// Look up the name of a definition across crates. This does not look at HIR.
1547    ///
1548    /// This method will ICE if the corresponding item does not have a name. In these cases, use
1549    /// [`opt_item_name`] instead.
1550    ///
1551    /// [`opt_item_name`]: Self::opt_item_name
1552    pub fn item_name(self, id: impl IntoQueryParam<DefId>) -> Symbol {
1553        let id = id.into_query_param();
1554        self.opt_item_name(id).unwrap_or_else(|| {
1555            crate::util::bug::bug_fmt(format_args!("item_name: no name for {0:?}",
        self.def_path(id)));bug!("item_name: no name for {:?}", self.def_path(id));
1556        })
1557    }
1558
1559    /// Look up the name and span of a definition.
1560    ///
1561    /// See [`item_name`][Self::item_name] for more information.
1562    pub fn opt_item_ident(self, def_id: impl IntoQueryParam<DefId>) -> Option<Ident> {
1563        let def_id = def_id.into_query_param();
1564        let def = self.opt_item_name(def_id)?;
1565        let span = self
1566            .def_ident_span(def_id)
1567            .unwrap_or_else(|| crate::util::bug::bug_fmt(format_args!("missing ident span for {0:?}",
        def_id))bug!("missing ident span for {def_id:?}"));
1568        Some(Ident::new(def, span))
1569    }
1570
1571    /// Look up the name and span of a definition.
1572    ///
1573    /// See [`item_name`][Self::item_name] for more information.
1574    pub fn item_ident(self, def_id: impl IntoQueryParam<DefId>) -> Ident {
1575        let def_id = def_id.into_query_param();
1576        self.opt_item_ident(def_id).unwrap_or_else(|| {
1577            crate::util::bug::bug_fmt(format_args!("item_ident: no name for {0:?}",
        self.def_path(def_id)));bug!("item_ident: no name for {:?}", self.def_path(def_id));
1578        })
1579    }
1580
1581    pub fn opt_associated_item(self, def_id: DefId) -> Option<AssocItem> {
1582        if let DefKind::AssocConst { .. } | DefKind::AssocFn | DefKind::AssocTy =
1583            self.def_kind(def_id)
1584        {
1585            Some(self.associated_item(def_id))
1586        } else {
1587            None
1588        }
1589    }
1590
1591    /// If the `def_id` is an associated type that was desugared from a
1592    /// return-position `impl Trait` from a trait, then provide the source info
1593    /// about where that RPITIT came from.
1594    pub fn opt_rpitit_info(self, def_id: DefId) -> Option<ImplTraitInTraitData> {
1595        if let DefKind::AssocTy = self.def_kind(def_id)
1596            && let AssocKind::Type { data: AssocTypeData::Rpitit(rpitit_info) } =
1597                self.associated_item(def_id).kind
1598        {
1599            Some(rpitit_info)
1600        } else {
1601            None
1602        }
1603    }
1604
1605    pub fn find_field_index(self, ident: Ident, variant: &VariantDef) -> Option<FieldIdx> {
1606        variant.fields.iter_enumerated().find_map(|(i, field)| {
1607            self.hygienic_eq(ident, field.ident(self), variant.def_id).then_some(i)
1608        })
1609    }
1610
1611    /// Returns `Some` if the impls are the same polarity and the trait either
1612    /// has no items or is annotated `#[marker]` and prevents item overrides.
1613    x;#[instrument(level = "debug", skip(self), ret)]
1614    pub fn impls_are_allowed_to_overlap(
1615        self,
1616        def_id1: DefId,
1617        def_id2: DefId,
1618    ) -> Option<ImplOverlapKind> {
1619        let impl1 = self.impl_trait_header(def_id1);
1620        let impl2 = self.impl_trait_header(def_id2);
1621
1622        let trait_ref1 = impl1.trait_ref.skip_binder();
1623        let trait_ref2 = impl2.trait_ref.skip_binder();
1624
1625        // If either trait impl references an error, they're allowed to overlap,
1626        // as one of them essentially doesn't exist.
1627        if trait_ref1.references_error() || trait_ref2.references_error() {
1628            return Some(ImplOverlapKind::Permitted { marker: false });
1629        }
1630
1631        match (impl1.polarity, impl2.polarity) {
1632            (ImplPolarity::Reservation, _) | (_, ImplPolarity::Reservation) => {
1633                // `#[rustc_reservation_impl]` impls don't overlap with anything
1634                return Some(ImplOverlapKind::Permitted { marker: false });
1635            }
1636            (ImplPolarity::Positive, ImplPolarity::Negative)
1637            | (ImplPolarity::Negative, ImplPolarity::Positive) => {
1638                // `impl AutoTrait for Type` + `impl !AutoTrait for Type`
1639                return None;
1640            }
1641            (ImplPolarity::Positive, ImplPolarity::Positive)
1642            | (ImplPolarity::Negative, ImplPolarity::Negative) => {}
1643        };
1644
1645        let is_marker_impl = |trait_ref: TraitRef<'_>| self.trait_def(trait_ref.def_id).is_marker;
1646        let is_marker_overlap = is_marker_impl(trait_ref1) && is_marker_impl(trait_ref2);
1647
1648        if is_marker_overlap {
1649            return Some(ImplOverlapKind::Permitted { marker: true });
1650        }
1651
1652        None
1653    }
1654
1655    /// Returns `ty::VariantDef` if `res` refers to a struct,
1656    /// or variant or their constructors, panics otherwise.
1657    pub fn expect_variant_res(self, res: Res) -> &'tcx VariantDef {
1658        match res {
1659            Res::Def(DefKind::Variant, did) => {
1660                let enum_did = self.parent(did);
1661                self.adt_def(enum_did).variant_with_id(did)
1662            }
1663            Res::Def(DefKind::Struct | DefKind::Union, did) => self.adt_def(did).non_enum_variant(),
1664            Res::Def(DefKind::Ctor(CtorOf::Variant, ..), variant_ctor_did) => {
1665                let variant_did = self.parent(variant_ctor_did);
1666                let enum_did = self.parent(variant_did);
1667                self.adt_def(enum_did).variant_with_ctor_id(variant_ctor_did)
1668            }
1669            Res::Def(DefKind::Ctor(CtorOf::Struct, ..), ctor_did) => {
1670                let struct_did = self.parent(ctor_did);
1671                self.adt_def(struct_did).non_enum_variant()
1672            }
1673            _ => crate::util::bug::bug_fmt(format_args!("expect_variant_res used with unexpected res {0:?}",
        res))bug!("expect_variant_res used with unexpected res {:?}", res),
1674        }
1675    }
1676
1677    /// Returns the possibly-auto-generated MIR of a [`ty::InstanceKind`].
1678    #[allow(clippy :: suspicious_else_formatting)]
{
    let __tracing_attr_span;
    let __tracing_attr_guard;
    if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::DEBUG <=
                    ::tracing::level_filters::LevelFilter::current() ||
            { false } {
        __tracing_attr_span =
            {
                use ::tracing::__macro_support::Callsite as _;
                static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                    {
                        static META: ::tracing::Metadata<'static> =
                            {
                                ::tracing_core::metadata::Metadata::new("instance_mir",
                                    "rustc_middle::ty", ::tracing::Level::DEBUG,
                                    ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/ty/mod.rs"),
                                    ::tracing_core::__macro_support::Option::Some(1678u32),
                                    ::tracing_core::__macro_support::Option::Some("rustc_middle::ty"),
                                    ::tracing_core::field::FieldSet::new(&["instance"],
                                        ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                    ::tracing::metadata::Kind::SPAN)
                            };
                        ::tracing::callsite::DefaultCallsite::new(&META)
                    };
                let mut interest = ::tracing::subscriber::Interest::never();
                if ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                ::tracing::Level::DEBUG <=
                                    ::tracing::level_filters::LevelFilter::current() &&
                            { interest = __CALLSITE.interest(); !interest.is_never() }
                        &&
                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                            interest) {
                    let meta = __CALLSITE.metadata();
                    ::tracing::Span::new(meta,
                        &{
                                #[allow(unused_imports)]
                                use ::tracing::field::{debug, display, Value};
                                let mut iter = meta.fields().iter();
                                meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                    ::tracing::__macro_support::Option::Some(&::tracing::field::debug(&instance)
                                                            as &dyn Value))])
                            })
                } else {
                    let span =
                        ::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
                    {};
                    span
                }
            };
        __tracing_attr_guard = __tracing_attr_span.enter();
    }

    #[warn(clippy :: suspicious_else_formatting)]
    {

        #[allow(unknown_lints, unreachable_code, clippy ::
        diverging_sub_expression, clippy :: empty_loop, clippy ::
        let_unit_value, clippy :: let_with_type_underscore, clippy ::
        needless_return, clippy :: unreachable)]
        if false {
            let __tracing_attr_fake_return: &'tcx Body<'tcx> = loop {};
            return __tracing_attr_fake_return;
        }
        {
            match instance {
                ty::InstanceKind::Item(def) => {
                    {
                        use ::tracing::__macro_support::Callsite as _;
                        static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                            {
                                static META: ::tracing::Metadata<'static> =
                                    {
                                        ::tracing_core::metadata::Metadata::new("event compiler/rustc_middle/src/ty/mod.rs:1682",
                                            "rustc_middle::ty", ::tracing::Level::DEBUG,
                                            ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/ty/mod.rs"),
                                            ::tracing_core::__macro_support::Option::Some(1682u32),
                                            ::tracing_core::__macro_support::Option::Some("rustc_middle::ty"),
                                            ::tracing_core::field::FieldSet::new(&["message"],
                                                ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                            ::tracing::metadata::Kind::EVENT)
                                    };
                                ::tracing::callsite::DefaultCallsite::new(&META)
                            };
                        let enabled =
                            ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                    ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::LevelFilter::current() &&
                                {
                                    let interest = __CALLSITE.interest();
                                    !interest.is_never() &&
                                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                            interest)
                                };
                        if enabled {
                            (|value_set: ::tracing::field::ValueSet|
                                        {
                                            let meta = __CALLSITE.metadata();
                                            ::tracing::Event::dispatch(meta, &value_set);
                                            ;
                                        })({
                                    #[allow(unused_imports)]
                                    use ::tracing::field::{debug, display, Value};
                                    let mut iter = __CALLSITE.metadata().fields().iter();
                                    __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                        ::tracing::__macro_support::Option::Some(&format_args!("calling def_kind on def: {0:?}",
                                                                        def) as &dyn Value))])
                                });
                        } else { ; }
                    };
                    let def_kind = self.def_kind(def);
                    {
                        use ::tracing::__macro_support::Callsite as _;
                        static __CALLSITE: ::tracing::callsite::DefaultCallsite =
                            {
                                static META: ::tracing::Metadata<'static> =
                                    {
                                        ::tracing_core::metadata::Metadata::new("event compiler/rustc_middle/src/ty/mod.rs:1684",
                                            "rustc_middle::ty", ::tracing::Level::DEBUG,
                                            ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/ty/mod.rs"),
                                            ::tracing_core::__macro_support::Option::Some(1684u32),
                                            ::tracing_core::__macro_support::Option::Some("rustc_middle::ty"),
                                            ::tracing_core::field::FieldSet::new(&["message"],
                                                ::tracing_core::callsite::Identifier(&__CALLSITE)),
                                            ::tracing::metadata::Kind::EVENT)
                                    };
                                ::tracing::callsite::DefaultCallsite::new(&META)
                            };
                        let enabled =
                            ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::STATIC_MAX_LEVEL &&
                                    ::tracing::Level::DEBUG <=
                                        ::tracing::level_filters::LevelFilter::current() &&
                                {
                                    let interest = __CALLSITE.interest();
                                    !interest.is_never() &&
                                        ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                                            interest)
                                };
                        if enabled {
                            (|value_set: ::tracing::field::ValueSet|
                                        {
                                            let meta = __CALLSITE.metadata();
                                            ::tracing::Event::dispatch(meta, &value_set);
                                            ;
                                        })({
                                    #[allow(unused_imports)]
                                    use ::tracing::field::{debug, display, Value};
                                    let mut iter = __CALLSITE.metadata().fields().iter();
                                    __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                                        ::tracing::__macro_support::Option::Some(&format_args!("returned from def_kind: {0:?}",
                                                                        def_kind) as &dyn Value))])
                                });
                        } else { ; }
                    };
                    match def_kind {
                        DefKind::Const { .. } | DefKind::Static { .. } |
                            DefKind::AssocConst { .. } | DefKind::Ctor(..) |
                            DefKind::AnonConst | DefKind::InlineConst =>
                            self.mir_for_ctfe(def),
                        _ => self.optimized_mir(def),
                    }
                }
                ty::InstanceKind::VTableShim(..) |
                    ty::InstanceKind::ReifyShim(..) |
                    ty::InstanceKind::Intrinsic(..) |
                    ty::InstanceKind::FnPtrShim(..) |
                    ty::InstanceKind::Virtual(..) |
                    ty::InstanceKind::ClosureOnceShim { .. } |
                    ty::InstanceKind::ConstructCoroutineInClosureShim { .. } |
                    ty::InstanceKind::FutureDropPollShim(..) |
                    ty::InstanceKind::DropGlue(..) |
                    ty::InstanceKind::CloneShim(..) |
                    ty::InstanceKind::ThreadLocalShim(..) |
                    ty::InstanceKind::FnPtrAddrShim(..) |
                    ty::InstanceKind::AsyncDropGlueCtorShim(..) |
                    ty::InstanceKind::AsyncDropGlue(..) =>
                    self.mir_shims(instance),
            }
        }
    }
}#[instrument(skip(self), level = "debug")]
1679    pub fn instance_mir(self, instance: ty::InstanceKind<'tcx>) -> &'tcx Body<'tcx> {
1680        match instance {
1681            ty::InstanceKind::Item(def) => {
1682                debug!("calling def_kind on def: {:?}", def);
1683                let def_kind = self.def_kind(def);
1684                debug!("returned from def_kind: {:?}", def_kind);
1685                match def_kind {
1686                    DefKind::Const { .. }
1687                    | DefKind::Static { .. }
1688                    | DefKind::AssocConst { .. }
1689                    | DefKind::Ctor(..)
1690                    | DefKind::AnonConst
1691                    | DefKind::InlineConst => self.mir_for_ctfe(def),
1692                    // If the caller wants `mir_for_ctfe` of a function they should not be using
1693                    // `instance_mir`, so we'll assume const fn also wants the optimized version.
1694                    _ => self.optimized_mir(def),
1695                }
1696            }
1697            ty::InstanceKind::VTableShim(..)
1698            | ty::InstanceKind::ReifyShim(..)
1699            | ty::InstanceKind::Intrinsic(..)
1700            | ty::InstanceKind::FnPtrShim(..)
1701            | ty::InstanceKind::Virtual(..)
1702            | ty::InstanceKind::ClosureOnceShim { .. }
1703            | ty::InstanceKind::ConstructCoroutineInClosureShim { .. }
1704            | ty::InstanceKind::FutureDropPollShim(..)
1705            | ty::InstanceKind::DropGlue(..)
1706            | ty::InstanceKind::CloneShim(..)
1707            | ty::InstanceKind::ThreadLocalShim(..)
1708            | ty::InstanceKind::FnPtrAddrShim(..)
1709            | ty::InstanceKind::AsyncDropGlueCtorShim(..)
1710            | ty::InstanceKind::AsyncDropGlue(..) => self.mir_shims(instance),
1711        }
1712    }
1713
1714    /// Gets all attributes with the given name.
1715    #[deprecated = "Though there are valid usecases for this method, especially when your attribute is not a parsed attribute, usually you want to call rustc_hir::find_attr! instead."]
1716    pub fn get_attrs(
1717        self,
1718        did: impl Into<DefId>,
1719        attr: Symbol,
1720    ) -> impl Iterator<Item = &'tcx hir::Attribute> {
1721        #[allow(deprecated)]
1722        self.get_all_attrs(did).iter().filter(move |a: &&hir::Attribute| a.has_name(attr))
1723    }
1724
1725    /// Gets all attributes.
1726    ///
1727    /// To see if an item has a specific attribute, you should use
1728    /// [`rustc_hir::find_attr!`] so you can use matching.
1729    #[deprecated = "Though there are valid usecases for this method, especially when your attribute is not a parsed attribute, usually you want to call rustc_hir::find_attr! instead."]
1730    pub fn get_all_attrs(self, did: impl Into<DefId>) -> &'tcx [hir::Attribute] {
1731        let did: DefId = did.into();
1732        if let Some(did) = did.as_local() {
1733            self.hir_attrs(self.local_def_id_to_hir_id(did))
1734        } else {
1735            self.attrs_for_def(did)
1736        }
1737    }
1738
1739    pub fn get_attrs_by_path(
1740        self,
1741        did: DefId,
1742        attr: &[Symbol],
1743    ) -> impl Iterator<Item = &'tcx hir::Attribute> {
1744        let filter_fn = move |a: &&hir::Attribute| a.path_matches(attr);
1745        if let Some(did) = did.as_local() {
1746            self.hir_attrs(self.local_def_id_to_hir_id(did)).iter().filter(filter_fn)
1747        } else {
1748            self.attrs_for_def(did).iter().filter(filter_fn)
1749        }
1750    }
1751
1752    #[deprecated = "Though there are valid usecases for this method, especially when your attribute is not a parsed attribute, usually you want to call rustc_hir::find_attr! instead."]
1753    pub fn get_attr(self, did: impl Into<DefId>, attr: Symbol) -> Option<&'tcx hir::Attribute> {
1754        if truecfg!(debug_assertions) && !rustc_feature::is_valid_for_get_attr(attr) {
1755            let did: DefId = did.into();
1756            crate::util::bug::bug_fmt(format_args!("get_attr: unexpected called with DefId `{0:?}`, attr `{1:?}`",
        did, attr));bug!("get_attr: unexpected called with DefId `{:?}`, attr `{:?}`", did, attr);
1757        } else {
1758            #[allow(deprecated)]
1759            self.get_attrs(did, attr).next()
1760        }
1761    }
1762
1763    /// Determines whether an item is annotated with an attribute.
1764    #[deprecated = "Though there are valid usecases for this method, especially when your attribute is not a parsed attribute, usually you want to call rustc_hir::find_attr! instead."]
1765    pub fn has_attr(self, did: impl Into<DefId>, attr: Symbol) -> bool {
1766        #[allow(deprecated)]
1767        self.get_attrs(did, attr).next().is_some()
1768    }
1769
1770    /// Determines whether an item is annotated with a multi-segment attribute
1771    pub fn has_attrs_with_path(self, did: impl Into<DefId>, attrs: &[Symbol]) -> bool {
1772        self.get_attrs_by_path(did.into(), attrs).next().is_some()
1773    }
1774
1775    /// Returns `true` if this is an `auto trait`.
1776    pub fn trait_is_auto(self, trait_def_id: DefId) -> bool {
1777        self.trait_def(trait_def_id).has_auto_impl
1778    }
1779
1780    /// Returns `true` if this is coinductive, either because it is
1781    /// an auto trait or because it has the `#[rustc_coinductive]` attribute.
1782    pub fn trait_is_coinductive(self, trait_def_id: DefId) -> bool {
1783        self.trait_def(trait_def_id).is_coinductive
1784    }
1785
1786    /// Returns `true` if this is a trait alias.
1787    pub fn trait_is_alias(self, trait_def_id: DefId) -> bool {
1788        self.def_kind(trait_def_id) == DefKind::TraitAlias
1789    }
1790
1791    /// Arena-alloc of LayoutError for coroutine layout
1792    fn layout_error(self, err: LayoutError<'tcx>) -> &'tcx LayoutError<'tcx> {
1793        self.arena.alloc(err)
1794    }
1795
1796    /// Returns layout of a non-async-drop coroutine. Layout might be unavailable if the
1797    /// coroutine is tainted by errors.
1798    ///
1799    /// Takes `coroutine_kind` which can be acquired from the `CoroutineArgs::kind_ty`,
1800    /// e.g. `args.as_coroutine().kind_ty()`.
1801    fn ordinary_coroutine_layout(
1802        self,
1803        def_id: DefId,
1804        args: GenericArgsRef<'tcx>,
1805    ) -> Result<&'tcx CoroutineLayout<'tcx>, &'tcx LayoutError<'tcx>> {
1806        let coroutine_kind_ty = args.as_coroutine().kind_ty();
1807        let mir = self.optimized_mir(def_id);
1808        let ty = || Ty::new_coroutine(self, def_id, args);
1809        // Regular coroutine
1810        if coroutine_kind_ty.is_unit() {
1811            mir.coroutine_layout_raw().ok_or_else(|| self.layout_error(LayoutError::Unknown(ty())))
1812        } else {
1813            // If we have a `Coroutine` that comes from an coroutine-closure,
1814            // then it may be a by-move or by-ref body.
1815            let ty::Coroutine(_, identity_args) =
1816                *self.type_of(def_id).instantiate_identity().kind()
1817            else {
1818                ::core::panicking::panic("internal error: entered unreachable code");unreachable!();
1819            };
1820            let identity_kind_ty = identity_args.as_coroutine().kind_ty();
1821            // If the types differ, then we must be getting the by-move body of
1822            // a by-ref coroutine.
1823            if identity_kind_ty == coroutine_kind_ty {
1824                mir.coroutine_layout_raw()
1825                    .ok_or_else(|| self.layout_error(LayoutError::Unknown(ty())))
1826            } else {
1827                match coroutine_kind_ty.to_opt_closure_kind() {
    Some(ClosureKind::FnOnce) => {}
    ref left_val => {
        ::core::panicking::assert_matches_failed(left_val,
            "Some(ClosureKind::FnOnce)", ::core::option::Option::None);
    }
};assert_matches!(coroutine_kind_ty.to_opt_closure_kind(), Some(ClosureKind::FnOnce));
1828                match identity_kind_ty.to_opt_closure_kind() {
    Some(ClosureKind::Fn | ClosureKind::FnMut) => {}
    ref left_val => {
        ::core::panicking::assert_matches_failed(left_val,
            "Some(ClosureKind::Fn | ClosureKind::FnMut)",
            ::core::option::Option::None);
    }
};assert_matches!(
1829                    identity_kind_ty.to_opt_closure_kind(),
1830                    Some(ClosureKind::Fn | ClosureKind::FnMut)
1831                );
1832                self.optimized_mir(self.coroutine_by_move_body_def_id(def_id))
1833                    .coroutine_layout_raw()
1834                    .ok_or_else(|| self.layout_error(LayoutError::Unknown(ty())))
1835            }
1836        }
1837    }
1838
1839    /// Returns layout of a `async_drop_in_place::{closure}` coroutine
1840    ///   (returned from `async fn async_drop_in_place<T>(..)`).
1841    /// Layout might be unavailable if the coroutine is tainted by errors.
1842    fn async_drop_coroutine_layout(
1843        self,
1844        def_id: DefId,
1845        args: GenericArgsRef<'tcx>,
1846    ) -> Result<&'tcx CoroutineLayout<'tcx>, &'tcx LayoutError<'tcx>> {
1847        let ty = || Ty::new_coroutine(self, def_id, args);
1848        if args[0].has_placeholders() || args[0].has_non_region_param() {
1849            return Err(self.layout_error(LayoutError::TooGeneric(ty())));
1850        }
1851        let instance = InstanceKind::AsyncDropGlue(def_id, Ty::new_coroutine(self, def_id, args));
1852        self.mir_shims(instance)
1853            .coroutine_layout_raw()
1854            .ok_or_else(|| self.layout_error(LayoutError::Unknown(ty())))
1855    }
1856
1857    /// Returns layout of a coroutine. Layout might be unavailable if the
1858    /// coroutine is tainted by errors.
1859    pub fn coroutine_layout(
1860        self,
1861        def_id: DefId,
1862        args: GenericArgsRef<'tcx>,
1863    ) -> Result<&'tcx CoroutineLayout<'tcx>, &'tcx LayoutError<'tcx>> {
1864        if self.is_async_drop_in_place_coroutine(def_id) {
1865            // layout of `async_drop_in_place<T>::{closure}` in case,
1866            // when T is a coroutine, contains this internal coroutine's ptr in upvars
1867            // and doesn't require any locals. Here is an `empty coroutine's layout`
1868            let arg_cor_ty = args.first().unwrap().expect_ty();
1869            if arg_cor_ty.is_coroutine() {
1870                let span = self.def_span(def_id);
1871                let source_info = SourceInfo::outermost(span);
1872                // Even minimal, empty coroutine has 3 states (RESERVED_VARIANTS),
1873                // so variant_fields and variant_source_info should have 3 elements.
1874                let variant_fields: IndexVec<VariantIdx, IndexVec<FieldIdx, CoroutineSavedLocal>> =
1875                    iter::repeat(IndexVec::new()).take(CoroutineArgs::RESERVED_VARIANTS).collect();
1876                let variant_source_info: IndexVec<VariantIdx, SourceInfo> =
1877                    iter::repeat(source_info).take(CoroutineArgs::RESERVED_VARIANTS).collect();
1878                let proxy_layout = CoroutineLayout {
1879                    field_tys: [].into(),
1880                    field_names: [].into(),
1881                    variant_fields,
1882                    variant_source_info,
1883                    storage_conflicts: BitMatrix::new(0, 0),
1884                };
1885                return Ok(self.arena.alloc(proxy_layout));
1886            } else {
1887                self.async_drop_coroutine_layout(def_id, args)
1888            }
1889        } else {
1890            self.ordinary_coroutine_layout(def_id, args)
1891        }
1892    }
1893
1894    /// If the given `DefId` is an associated item, returns the `DefId` and `DefKind` of the parent trait or impl.
1895    pub fn assoc_parent(self, def_id: DefId) -> Option<(DefId, DefKind)> {
1896        if !self.def_kind(def_id).is_assoc() {
1897            return None;
1898        }
1899        let parent = self.parent(def_id);
1900        let def_kind = self.def_kind(parent);
1901        Some((parent, def_kind))
1902    }
1903
1904    /// Returns the trait item that is implemented by the given item `DefId`.
1905    pub fn trait_item_of(self, def_id: impl IntoQueryParam<DefId>) -> Option<DefId> {
1906        self.opt_associated_item(def_id.into_query_param())?.trait_item_def_id()
1907    }
1908
1909    /// If the given `DefId` is an associated item of a trait,
1910    /// returns the `DefId` of the trait; otherwise, returns `None`.
1911    pub fn trait_of_assoc(self, def_id: DefId) -> Option<DefId> {
1912        match self.assoc_parent(def_id) {
1913            Some((id, DefKind::Trait)) => Some(id),
1914            _ => None,
1915        }
1916    }
1917
1918    pub fn impl_is_of_trait(self, def_id: impl IntoQueryParam<DefId>) -> bool {
1919        let def_id = def_id.into_query_param();
1920        let DefKind::Impl { of_trait } = self.def_kind(def_id) else {
1921            {
    ::core::panicking::panic_fmt(format_args!("expected Impl for {0:?}",
            def_id));
};panic!("expected Impl for {def_id:?}");
1922        };
1923        of_trait
1924    }
1925
1926    /// If the given `DefId` is an associated item of an impl,
1927    /// returns the `DefId` of the impl; otherwise returns `None`.
1928    pub fn impl_of_assoc(self, def_id: DefId) -> Option<DefId> {
1929        match self.assoc_parent(def_id) {
1930            Some((id, DefKind::Impl { .. })) => Some(id),
1931            _ => None,
1932        }
1933    }
1934
1935    /// If the given `DefId` is an associated item of an inherent impl,
1936    /// returns the `DefId` of the impl; otherwise, returns `None`.
1937    pub fn inherent_impl_of_assoc(self, def_id: DefId) -> Option<DefId> {
1938        match self.assoc_parent(def_id) {
1939            Some((id, DefKind::Impl { of_trait: false })) => Some(id),
1940            _ => None,
1941        }
1942    }
1943
1944    /// If the given `DefId` is an associated item of a trait impl,
1945    /// returns the `DefId` of the impl; otherwise, returns `None`.
1946    pub fn trait_impl_of_assoc(self, def_id: DefId) -> Option<DefId> {
1947        match self.assoc_parent(def_id) {
1948            Some((id, DefKind::Impl { of_trait: true })) => Some(id),
1949            _ => None,
1950        }
1951    }
1952
1953    pub fn impl_polarity(self, def_id: impl IntoQueryParam<DefId>) -> ty::ImplPolarity {
1954        self.impl_trait_header(def_id).polarity
1955    }
1956
1957    /// Given an `impl_id`, return the trait it implements.
1958    pub fn impl_trait_ref(
1959        self,
1960        def_id: impl IntoQueryParam<DefId>,
1961    ) -> ty::EarlyBinder<'tcx, ty::TraitRef<'tcx>> {
1962        self.impl_trait_header(def_id).trait_ref
1963    }
1964
1965    /// Given an `impl_id`, return the trait it implements.
1966    /// Returns `None` if it is an inherent impl.
1967    pub fn impl_opt_trait_ref(
1968        self,
1969        def_id: impl IntoQueryParam<DefId>,
1970    ) -> Option<ty::EarlyBinder<'tcx, ty::TraitRef<'tcx>>> {
1971        let def_id = def_id.into_query_param();
1972        self.impl_is_of_trait(def_id).then(|| self.impl_trait_ref(def_id))
1973    }
1974
1975    /// Given the `DefId` of an impl, returns the `DefId` of the trait it implements.
1976    pub fn impl_trait_id(self, def_id: impl IntoQueryParam<DefId>) -> DefId {
1977        self.impl_trait_ref(def_id).skip_binder().def_id
1978    }
1979
1980    /// Given the `DefId` of an impl, returns the `DefId` of the trait it implements.
1981    /// Returns `None` if it is an inherent impl.
1982    pub fn impl_opt_trait_id(self, def_id: impl IntoQueryParam<DefId>) -> Option<DefId> {
1983        let def_id = def_id.into_query_param();
1984        self.impl_is_of_trait(def_id).then(|| self.impl_trait_id(def_id))
1985    }
1986
1987    pub fn is_exportable(self, def_id: DefId) -> bool {
1988        self.exportable_items(def_id.krate).contains(&def_id)
1989    }
1990
1991    /// Check if the given `DefId` is `#\[automatically_derived\]`, *and*
1992    /// whether it was produced by expanding a builtin derive macro.
1993    pub fn is_builtin_derived(self, def_id: DefId) -> bool {
1994        if self.is_automatically_derived(def_id)
1995            && let Some(def_id) = def_id.as_local()
1996            && let outer = self.def_span(def_id).ctxt().outer_expn_data()
1997            && #[allow(non_exhaustive_omitted_patterns)] match outer.kind {
    ExpnKind::Macro(MacroKind::Derive, _) => true,
    _ => false,
}matches!(outer.kind, ExpnKind::Macro(MacroKind::Derive, _))
1998            && {

        #[allow(deprecated)]
        {
            {
                'done:
                    {
                    for i in self.get_all_attrs(outer.macro_def_id.unwrap()) {
                        #[allow(unused_imports)]
                        use rustc_hir::attrs::AttributeKind::*;
                        let i: &rustc_hir::Attribute = i;
                        match i {
                            rustc_hir::Attribute::Parsed(RustcBuiltinMacro { .. }) => {
                                break 'done Some(());
                            }
                            rustc_hir::Attribute::Unparsed(..) =>
                                {}
                                #[deny(unreachable_patterns)]
                                _ => {}
                        }
                    }
                    None
                }
            }
        }
    }.is_some()find_attr!(self, outer.macro_def_id.unwrap(), RustcBuiltinMacro { .. })
1999        {
2000            true
2001        } else {
2002            false
2003        }
2004    }
2005
2006    /// Check if the given `DefId` is `#\[automatically_derived\]`.
2007    pub fn is_automatically_derived(self, def_id: DefId) -> bool {
2008        {

        #[allow(deprecated)]
        {
            {
                'done:
                    {
                    for i in self.get_all_attrs(def_id) {
                        #[allow(unused_imports)]
                        use rustc_hir::attrs::AttributeKind::*;
                        let i: &rustc_hir::Attribute = i;
                        match i {
                            rustc_hir::Attribute::Parsed(AutomaticallyDerived(..)) => {
                                break 'done Some(());
                            }
                            rustc_hir::Attribute::Unparsed(..) =>
                                {}
                                #[deny(unreachable_patterns)]
                                _ => {}
                        }
                    }
                    None
                }
            }
        }
    }.is_some()find_attr!(self, def_id, AutomaticallyDerived(..))
2009    }
2010
2011    /// Looks up the span of `impl_did` if the impl is local; otherwise returns `Err`
2012    /// with the name of the crate containing the impl.
2013    pub fn span_of_impl(self, impl_def_id: DefId) -> Result<Span, Symbol> {
2014        if let Some(impl_def_id) = impl_def_id.as_local() {
2015            Ok(self.def_span(impl_def_id))
2016        } else {
2017            Err(self.crate_name(impl_def_id.krate))
2018        }
2019    }
2020
2021    /// Hygienically compares a use-site name (`use_name`) for a field or an associated item with
2022    /// its supposed definition name (`def_name`). The method also needs `DefId` of the supposed
2023    /// definition's parent/scope to perform comparison.
2024    pub fn hygienic_eq(self, use_ident: Ident, def_ident: Ident, def_parent_def_id: DefId) -> bool {
2025        // We could use `Ident::eq` here, but we deliberately don't. The identifier
2026        // comparison fails frequently, and we want to avoid the expensive
2027        // `normalize_to_macros_2_0()` calls required for the span comparison whenever possible.
2028        use_ident.name == def_ident.name
2029            && use_ident
2030                .span
2031                .ctxt()
2032                .hygienic_eq(def_ident.span.ctxt(), self.expn_that_defined(def_parent_def_id))
2033    }
2034
2035    pub fn adjust_ident(self, mut ident: Ident, scope: DefId) -> Ident {
2036        ident.span.normalize_to_macros_2_0_and_adjust(self.expn_that_defined(scope));
2037        ident
2038    }
2039
2040    // FIXME(vincenzopalazzo): move the HirId to a LocalDefId
2041    pub fn adjust_ident_and_get_scope(
2042        self,
2043        mut ident: Ident,
2044        scope: DefId,
2045        block: hir::HirId,
2046    ) -> (Ident, DefId) {
2047        let scope = ident
2048            .span
2049            .normalize_to_macros_2_0_and_adjust(self.expn_that_defined(scope))
2050            .and_then(|actual_expansion| actual_expansion.expn_data().parent_module)
2051            .unwrap_or_else(|| self.parent_module(block).to_def_id());
2052        (ident, scope)
2053    }
2054
2055    /// Checks whether this is a `const fn`. Returns `false` for non-functions.
2056    ///
2057    /// Even if this returns `true`, constness may still be unstable!
2058    #[inline]
2059    pub fn is_const_fn(self, def_id: DefId) -> bool {
2060        #[allow(non_exhaustive_omitted_patterns)] match self.def_kind(def_id) {
    DefKind::Fn | DefKind::AssocFn | DefKind::Ctor(_, CtorKind::Fn) |
        DefKind::Closure => true,
    _ => false,
}matches!(
2061            self.def_kind(def_id),
2062            DefKind::Fn | DefKind::AssocFn | DefKind::Ctor(_, CtorKind::Fn) | DefKind::Closure
2063        ) && self.constness(def_id) == hir::Constness::Const
2064    }
2065
2066    /// Whether this item is conditionally constant for the purposes of the
2067    /// effects implementation.
2068    ///
2069    /// This roughly corresponds to all const functions and other callable
2070    /// items, along with const impls and traits, and associated types within
2071    /// those impls and traits.
2072    pub fn is_conditionally_const(self, def_id: impl Into<DefId>) -> bool {
2073        let def_id: DefId = def_id.into();
2074        match self.def_kind(def_id) {
2075            DefKind::Impl { of_trait: true } => {
2076                let header = self.impl_trait_header(def_id);
2077                header.constness == hir::Constness::Const
2078                    && self.is_const_trait(header.trait_ref.skip_binder().def_id)
2079            }
2080            DefKind::Impl { of_trait: false } => self.constness(def_id) == hir::Constness::Const,
2081            DefKind::Fn | DefKind::Ctor(_, CtorKind::Fn) => {
2082                self.constness(def_id) == hir::Constness::Const
2083            }
2084            DefKind::TraitAlias | DefKind::Trait => self.is_const_trait(def_id),
2085            DefKind::AssocTy => {
2086                let parent_def_id = self.parent(def_id);
2087                match self.def_kind(parent_def_id) {
2088                    DefKind::Impl { of_trait: false } => false,
2089                    DefKind::Impl { of_trait: true } | DefKind::Trait => {
2090                        self.is_conditionally_const(parent_def_id)
2091                    }
2092                    _ => crate::util::bug::bug_fmt(format_args!("unexpected parent item of associated type: {0:?}",
        parent_def_id))bug!("unexpected parent item of associated type: {parent_def_id:?}"),
2093                }
2094            }
2095            DefKind::AssocFn => {
2096                let parent_def_id = self.parent(def_id);
2097                match self.def_kind(parent_def_id) {
2098                    DefKind::Impl { of_trait: false } => {
2099                        self.constness(def_id) == hir::Constness::Const
2100                    }
2101                    DefKind::Impl { of_trait: true } => {
2102                        let Some(trait_method_did) = self.trait_item_of(def_id) else {
2103                            return false;
2104                        };
2105                        self.constness(trait_method_did) == hir::Constness::Const
2106                            && self.is_conditionally_const(parent_def_id)
2107                    }
2108                    DefKind::Trait => {
2109                        self.constness(def_id) == hir::Constness::Const
2110                            && self.is_conditionally_const(parent_def_id)
2111                    }
2112                    _ => crate::util::bug::bug_fmt(format_args!("unexpected parent item of associated fn: {0:?}",
        parent_def_id))bug!("unexpected parent item of associated fn: {parent_def_id:?}"),
2113                }
2114            }
2115            DefKind::OpaqueTy => match self.opaque_ty_origin(def_id) {
2116                hir::OpaqueTyOrigin::FnReturn { parent, .. } => self.is_conditionally_const(parent),
2117                hir::OpaqueTyOrigin::AsyncFn { .. } => false,
2118                // FIXME(const_trait_impl): ATPITs could be conditionally const?
2119                hir::OpaqueTyOrigin::TyAlias { .. } => false,
2120            },
2121            DefKind::Closure => {
2122                // Closures and RPITs will eventually have const conditions
2123                // for `[const]` bounds.
2124                false
2125            }
2126            DefKind::Ctor(_, CtorKind::Const)
2127            | DefKind::Mod
2128            | DefKind::Struct
2129            | DefKind::Union
2130            | DefKind::Enum
2131            | DefKind::Variant
2132            | DefKind::TyAlias
2133            | DefKind::ForeignTy
2134            | DefKind::TyParam
2135            | DefKind::Const { .. }
2136            | DefKind::ConstParam
2137            | DefKind::Static { .. }
2138            | DefKind::AssocConst { .. }
2139            | DefKind::Macro(_)
2140            | DefKind::ExternCrate
2141            | DefKind::Use
2142            | DefKind::ForeignMod
2143            | DefKind::AnonConst
2144            | DefKind::InlineConst
2145            | DefKind::Field
2146            | DefKind::LifetimeParam
2147            | DefKind::GlobalAsm
2148            | DefKind::SyntheticCoroutineBody => false,
2149        }
2150    }
2151
2152    #[inline]
2153    pub fn is_const_trait(self, def_id: DefId) -> bool {
2154        self.trait_def(def_id).constness == hir::Constness::Const
2155    }
2156
2157    pub fn impl_method_has_trait_impl_trait_tys(self, def_id: DefId) -> bool {
2158        if self.def_kind(def_id) != DefKind::AssocFn {
2159            return false;
2160        }
2161
2162        let Some(item) = self.opt_associated_item(def_id) else {
2163            return false;
2164        };
2165
2166        let AssocContainer::TraitImpl(Ok(trait_item_def_id)) = item.container else {
2167            return false;
2168        };
2169
2170        !self.associated_types_for_impl_traits_in_associated_fn(trait_item_def_id).is_empty()
2171    }
2172
2173    /// Compute a `FnAbi` suitable for declaring/defining an `fn` instance, and for direct calls*
2174    /// to an `fn`. Indirectly-passed parameters in the returned ABI will include applicable
2175    /// codegen optimization attributes, including `ReadOnly` and `CapturesNone` -- deduction of
2176    /// which requires inspection of function bodies that can lead to cycles when performed during
2177    /// typeck. During typeck, you should therefore use instead the unoptimized ABI returned by
2178    /// `fn_abi_of_instance_no_deduced_attrs`.
2179    ///
2180    /// For performance reasons, you should prefer to call this inherent method rather than invoke
2181    /// the `fn_abi_of_instance_raw` query: it delegates to that query if necessary, but where
2182    /// possible delegates instead to the `fn_abi_of_instance_no_deduced_attrs` query (thus avoiding
2183    /// unnecessary query system overhead).
2184    ///
2185    /// * that includes virtual calls, which are represented by "direct calls" to an
2186    ///   `InstanceKind::Virtual` instance (of `<dyn Trait as Trait>::fn`).
2187    #[inline]
2188    pub fn fn_abi_of_instance(
2189        self,
2190        query: ty::PseudoCanonicalInput<'tcx, (ty::Instance<'tcx>, &'tcx ty::List<Ty<'tcx>>)>,
2191    ) -> Result<&'tcx FnAbi<'tcx, Ty<'tcx>>, &'tcx FnAbiError<'tcx>> {
2192        // Only deduce attrs in full, optimized builds. Otherwise, avoid the query system overhead
2193        // of ever invoking the `fn_abi_of_instance_raw` query.
2194        if self.sess.opts.optimize != OptLevel::No && self.sess.opts.incremental.is_none() {
2195            self.fn_abi_of_instance_raw(query)
2196        } else {
2197            self.fn_abi_of_instance_no_deduced_attrs(query)
2198        }
2199    }
2200}
2201
2202pub fn provide(providers: &mut Providers) {
2203    closure::provide(providers);
2204    context::provide(providers);
2205    erase_regions::provide(providers);
2206    inhabitedness::provide(providers);
2207    util::provide(providers);
2208    print::provide(providers);
2209    super::util::bug::provide(providers);
2210    *providers = Providers {
2211        trait_impls_of: trait_def::trait_impls_of_provider,
2212        incoherent_impls: trait_def::incoherent_impls_provider,
2213        trait_impls_in_crate: trait_def::trait_impls_in_crate_provider,
2214        traits: trait_def::traits_provider,
2215        vtable_allocation: vtable::vtable_allocation_provider,
2216        ..*providers
2217    };
2218}
2219
2220/// A map for the local crate mapping each type to a vector of its
2221/// inherent impls. This is not meant to be used outside of coherence;
2222/// rather, you should request the vector for a specific type via
2223/// `tcx.inherent_impls(def_id)` so as to minimize your dependencies
2224/// (constructing this map requires touching the entire crate).
2225#[derive(#[automatically_derived]
impl ::core::clone::Clone for CrateInherentImpls {
    #[inline]
    fn clone(&self) -> CrateInherentImpls {
        CrateInherentImpls {
            inherent_impls: ::core::clone::Clone::clone(&self.inherent_impls),
            incoherent_impls: ::core::clone::Clone::clone(&self.incoherent_impls),
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for CrateInherentImpls {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "CrateInherentImpls", "inherent_impls", &self.inherent_impls,
            "incoherent_impls", &&self.incoherent_impls)
    }
}Debug, #[automatically_derived]
impl ::core::default::Default for CrateInherentImpls {
    #[inline]
    fn default() -> CrateInherentImpls {
        CrateInherentImpls {
            inherent_impls: ::core::default::Default::default(),
            incoherent_impls: ::core::default::Default::default(),
        }
    }
}Default, const _: () =
    {
        impl<'__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for CrateInherentImpls {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    CrateInherentImpls {
                        inherent_impls: ref __binding_0,
                        incoherent_impls: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
2226pub struct CrateInherentImpls {
2227    pub inherent_impls: FxIndexMap<LocalDefId, Vec<DefId>>,
2228    pub incoherent_impls: FxIndexMap<SimplifiedType, Vec<LocalDefId>>,
2229}
2230
2231#[derive(#[automatically_derived]
impl<'tcx> ::core::clone::Clone for SymbolName<'tcx> {
    #[inline]
    fn clone(&self) -> SymbolName<'tcx> {
        let _: ::core::clone::AssertParamIsClone<&'tcx str>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::marker::Copy for SymbolName<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for SymbolName<'tcx> {
    #[inline]
    fn eq(&self, other: &SymbolName<'tcx>) -> bool { self.name == other.name }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for SymbolName<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<&'tcx str>;
    }
}Eq, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialOrd for SymbolName<'tcx> {
    #[inline]
    fn partial_cmp(&self, other: &SymbolName<'tcx>)
        -> ::core::option::Option<::core::cmp::Ordering> {
        ::core::cmp::PartialOrd::partial_cmp(&self.name, &other.name)
    }
}PartialOrd, #[automatically_derived]
impl<'tcx> ::core::cmp::Ord for SymbolName<'tcx> {
    #[inline]
    fn cmp(&self, other: &SymbolName<'tcx>) -> ::core::cmp::Ordering {
        ::core::cmp::Ord::cmp(&self.name, &other.name)
    }
}Ord, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for SymbolName<'tcx> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.name, state)
    }
}Hash, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for SymbolName<'tcx> {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    SymbolName { name: __binding_0 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for SymbolName<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    SymbolName { name: ref __binding_0 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
2232pub struct SymbolName<'tcx> {
2233    /// `&str` gives a consistent ordering, which ensures reproducible builds.
2234    pub name: &'tcx str,
2235}
2236
2237impl<'tcx> SymbolName<'tcx> {
2238    pub fn new(tcx: TyCtxt<'tcx>, name: &str) -> SymbolName<'tcx> {
2239        SymbolName { name: tcx.arena.alloc_str(name) }
2240    }
2241}
2242
2243impl<'tcx> fmt::Display for SymbolName<'tcx> {
2244    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2245        fmt::Display::fmt(&self.name, fmt)
2246    }
2247}
2248
2249impl<'tcx> fmt::Debug for SymbolName<'tcx> {
2250    fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
2251        fmt::Display::fmt(&self.name, fmt)
2252    }
2253}
2254
2255/// The constituent parts of a type level constant of kind ADT or array.
2256#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for DestructuredAdtConst<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for DestructuredAdtConst<'tcx> {
    #[inline]
    fn clone(&self) -> DestructuredAdtConst<'tcx> {
        let _: ::core::clone::AssertParamIsClone<VariantIdx>;
        let _: ::core::clone::AssertParamIsClone<&'tcx [ty::Const<'tcx>]>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::fmt::Debug for DestructuredAdtConst<'tcx> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "DestructuredAdtConst", "variant", &self.variant, "fields",
            &&self.fields)
    }
}Debug, const _: () =
    {
        impl<'tcx, '__ctx>
            ::rustc_data_structures::stable_hasher::HashStable<::rustc_middle::ich::StableHashingContext<'__ctx>>
            for DestructuredAdtConst<'tcx> {
            #[inline]
            fn hash_stable(&self,
                __hcx: &mut ::rustc_middle::ich::StableHashingContext<'__ctx>,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    DestructuredAdtConst {
                        variant: ref __binding_0, fields: ref __binding_1 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable)]
2257pub struct DestructuredAdtConst<'tcx> {
2258    pub variant: VariantIdx,
2259    pub fields: &'tcx [ty::Const<'tcx>],
2260}
2261
2262/// Generate TypeTree information for autodiff.
2263/// This function creates TypeTree metadata that describes the memory layout
2264/// of function parameters and return types for Enzyme autodiff.
2265pub fn fnc_typetrees<'tcx>(tcx: TyCtxt<'tcx>, fn_ty: Ty<'tcx>) -> FncTree {
2266    // Check if TypeTrees are disabled via NoTT flag
2267    if tcx.sess.opts.unstable_opts.autodiff.contains(&rustc_session::config::AutoDiff::NoTT) {
2268        return FncTree { args: ::alloc::vec::Vec::new()vec![], ret: TypeTree::new() };
2269    }
2270
2271    // Check if this is actually a function type
2272    if !fn_ty.is_fn() {
2273        return FncTree { args: ::alloc::vec::Vec::new()vec![], ret: TypeTree::new() };
2274    }
2275
2276    // Get the function signature
2277    let fn_sig = fn_ty.fn_sig(tcx);
2278    let sig = tcx.instantiate_bound_regions_with_erased(fn_sig);
2279
2280    // Create TypeTrees for each input parameter
2281    let mut args = ::alloc::vec::Vec::new()vec![];
2282    for ty in sig.inputs().iter() {
2283        let type_tree = typetree_from_ty(tcx, *ty);
2284        args.push(type_tree);
2285    }
2286
2287    // Create TypeTree for return type
2288    let ret = typetree_from_ty(tcx, sig.output());
2289
2290    FncTree { args, ret }
2291}
2292
2293/// Generate TypeTree for a specific type.
2294/// This function analyzes a Rust type and creates appropriate TypeTree metadata.
2295pub fn typetree_from_ty<'tcx>(tcx: TyCtxt<'tcx>, ty: Ty<'tcx>) -> TypeTree {
2296    let mut visited = Vec::new();
2297    typetree_from_ty_inner(tcx, ty, 0, &mut visited)
2298}
2299
2300/// Maximum recursion depth for TypeTree generation to prevent stack overflow
2301/// from pathological deeply nested types. Combined with cycle detection.
2302const MAX_TYPETREE_DEPTH: usize = 6;
2303
2304/// Internal recursive function for TypeTree generation with cycle detection and depth limiting.
2305fn typetree_from_ty_inner<'tcx>(
2306    tcx: TyCtxt<'tcx>,
2307    ty: Ty<'tcx>,
2308    depth: usize,
2309    visited: &mut Vec<Ty<'tcx>>,
2310) -> TypeTree {
2311    if depth >= MAX_TYPETREE_DEPTH {
2312        {
    use ::tracing::__macro_support::Callsite as _;
    static __CALLSITE: ::tracing::callsite::DefaultCallsite =
        {
            static META: ::tracing::Metadata<'static> =
                {
                    ::tracing_core::metadata::Metadata::new("event compiler/rustc_middle/src/ty/mod.rs:2312",
                        "rustc_middle::ty", ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/ty/mod.rs"),
                        ::tracing_core::__macro_support::Option::Some(2312u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_middle::ty"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::TRACE <=
                    ::tracing::level_filters::LevelFilter::current() &&
            {
                let interest = __CALLSITE.interest();
                !interest.is_never() &&
                    ::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
                        interest)
            };
    if enabled {
        (|value_set: ::tracing::field::ValueSet|
                    {
                        let meta = __CALLSITE.metadata();
                        ::tracing::Event::dispatch(meta, &value_set);
                        ;
                    })({
                #[allow(unused_imports)]
                use ::tracing::field::{debug, display, Value};
                let mut iter = __CALLSITE.metadata().fields().iter();
                __CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
                                    ::tracing::__macro_support::Option::Some(&format_args!("typetree depth limit {0} reached for type: {1}",
                                                    MAX_TYPETREE_DEPTH, ty) as &dyn Value))])
            });
    } else { ; }
};trace!("typetree depth limit {} reached for type: {}", MAX_TYPETREE_DEPTH, ty);
2313        return TypeTree::new();
2314    }
2315
2316    if visited.contains(&ty) {
2317        return TypeTree::new();
2318    }
2319
2320    visited.push(ty);
2321    let result = typetree_from_ty_impl(tcx, ty, depth, visited);
2322    visited.pop();
2323    result
2324}
2325
2326/// Implementation of TypeTree generation logic.
2327fn typetree_from_ty_impl<'tcx>(
2328    tcx: TyCtxt<'tcx>,
2329    ty: Ty<'tcx>,
2330    depth: usize,
2331    visited: &mut Vec<Ty<'tcx>>,
2332) -> TypeTree {
2333    typetree_from_ty_impl_inner(tcx, ty, depth, visited, false)
2334}
2335
2336/// Internal implementation with context about whether this is for a reference target.
2337fn typetree_from_ty_impl_inner<'tcx>(
2338    tcx: TyCtxt<'tcx>,
2339    ty: Ty<'tcx>,
2340    depth: usize,
2341    visited: &mut Vec<Ty<'tcx>>,
2342    is_reference_target: bool,
2343) -> TypeTree {
2344    if ty.is_scalar() {
2345        let (kind, size) = if ty.is_integral() || ty.is_char() || ty.is_bool() {
2346            (Kind::Integer, ty.primitive_size(tcx).bytes_usize())
2347        } else if ty.is_floating_point() {
2348            match ty {
2349                x if x == tcx.types.f16 => (Kind::Half, 2),
2350                x if x == tcx.types.f32 => (Kind::Float, 4),
2351                x if x == tcx.types.f64 => (Kind::Double, 8),
2352                x if x == tcx.types.f128 => (Kind::F128, 16),
2353                _ => (Kind::Integer, 0),
2354            }
2355        } else {
2356            (Kind::Integer, 0)
2357        };
2358
2359        // Use offset 0 for scalars that are direct targets of references (like &f64)
2360        // Use offset -1 for scalars used directly (like function return types)
2361        let offset = if is_reference_target && !ty.is_array() { 0 } else { -1 };
2362        return TypeTree(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [Type { offset, size, kind, child: TypeTree::new() }]))vec![Type { offset, size, kind, child: TypeTree::new() }]);
2363    }
2364
2365    if ty.is_ref() || ty.is_raw_ptr() || ty.is_box() {
2366        let Some(inner_ty) = ty.builtin_deref(true) else {
2367            return TypeTree::new();
2368        };
2369
2370        let child = typetree_from_ty_impl_inner(tcx, inner_ty, depth + 1, visited, true);
2371        return TypeTree(::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
        [Type {
                    offset: -1,
                    size: tcx.data_layout.pointer_size().bytes_usize(),
                    kind: Kind::Pointer,
                    child,
                }]))vec![Type {
2372            offset: -1,
2373            size: tcx.data_layout.pointer_size().bytes_usize(),
2374            kind: Kind::Pointer,
2375            child,
2376        }]);
2377    }
2378
2379    if ty.is_array() {
2380        if let ty::Array(element_ty, len_const) = ty.kind() {
2381            let len = len_const.try_to_target_usize(tcx).unwrap_or(0);
2382            if len == 0 {
2383                return TypeTree::new();
2384            }
2385            let element_tree =
2386                typetree_from_ty_impl_inner(tcx, *element_ty, depth + 1, visited, false);
2387            let mut types = Vec::new();
2388            for elem_type in &element_tree.0 {
2389                types.push(Type {
2390                    offset: -1,
2391                    size: elem_type.size,
2392                    kind: elem_type.kind,
2393                    child: elem_type.child.clone(),
2394                });
2395            }
2396
2397            return TypeTree(types);
2398        }
2399    }
2400
2401    if ty.is_slice() {
2402        if let ty::Slice(element_ty) = ty.kind() {
2403            let element_tree =
2404                typetree_from_ty_impl_inner(tcx, *element_ty, depth + 1, visited, false);
2405            return element_tree;
2406        }
2407    }
2408
2409    if let ty::Tuple(tuple_types) = ty.kind() {
2410        if tuple_types.is_empty() {
2411            return TypeTree::new();
2412        }
2413
2414        let mut types = Vec::new();
2415        let mut current_offset = 0;
2416
2417        for tuple_ty in tuple_types.iter() {
2418            let element_tree =
2419                typetree_from_ty_impl_inner(tcx, tuple_ty, depth + 1, visited, false);
2420
2421            let element_layout = tcx
2422                .layout_of(ty::TypingEnv::fully_monomorphized().as_query_input(tuple_ty))
2423                .ok()
2424                .map(|layout| layout.size.bytes_usize())
2425                .unwrap_or(0);
2426
2427            for elem_type in &element_tree.0 {
2428                types.push(Type {
2429                    offset: if elem_type.offset == -1 {
2430                        current_offset as isize
2431                    } else {
2432                        current_offset as isize + elem_type.offset
2433                    },
2434                    size: elem_type.size,
2435                    kind: elem_type.kind,
2436                    child: elem_type.child.clone(),
2437                });
2438            }
2439
2440            current_offset += element_layout;
2441        }
2442
2443        return TypeTree(types);
2444    }
2445
2446    if let ty::Adt(adt_def, args) = ty.kind() {
2447        if adt_def.is_struct() {
2448            let struct_layout =
2449                tcx.layout_of(ty::TypingEnv::fully_monomorphized().as_query_input(ty));
2450            if let Ok(layout) = struct_layout {
2451                let mut types = Vec::new();
2452
2453                for (field_idx, field_def) in adt_def.all_fields().enumerate() {
2454                    let field_ty = field_def.ty(tcx, args);
2455                    let field_tree =
2456                        typetree_from_ty_impl_inner(tcx, field_ty, depth + 1, visited, false);
2457
2458                    let field_offset = layout.fields.offset(field_idx).bytes_usize();
2459
2460                    for elem_type in &field_tree.0 {
2461                        types.push(Type {
2462                            offset: if elem_type.offset == -1 {
2463                                field_offset as isize
2464                            } else {
2465                                field_offset as isize + elem_type.offset
2466                            },
2467                            size: elem_type.size,
2468                            kind: elem_type.kind,
2469                            child: elem_type.child.clone(),
2470                        });
2471                    }
2472                }
2473
2474                return TypeTree(types);
2475            }
2476        }
2477    }
2478
2479    TypeTree::new()
2480}