Skip to main content

rustc_middle/ty/
adt.rs

1use std::cell::RefCell;
2use std::hash::{Hash, Hasher};
3use std::ops::Range;
4use std::str;
5
6use rustc_abi::{FIRST_VARIANT, FieldIdx, ReprOptions, VariantIdx};
7use rustc_data_structures::fingerprint::Fingerprint;
8use rustc_data_structures::fx::FxHashMap;
9use rustc_data_structures::intern::Interned;
10use rustc_data_structures::stable_hasher::{
11    HashingControls, StableHash, StableHashCtxt, StableHasher,
12};
13use rustc_errors::ErrorGuaranteed;
14use rustc_hir::def::{CtorKind, DefKind, Res};
15use rustc_hir::def_id::DefId;
16use rustc_hir::{self as hir, LangItem, find_attr};
17use rustc_index::{IndexSlice, IndexVec};
18use rustc_macros::{StableHash, TyDecodable, TyEncodable};
19use rustc_session::DataTypeKind;
20use rustc_span::sym;
21use rustc_type_ir::FieldInfo;
22use rustc_type_ir::solve::AdtDestructorKind;
23use tracing::{debug, info, trace};
24
25use super::{
26    AsyncDestructor, Destructor, FieldDef, GenericPredicates, Ty, TyCtxt, VariantDef, VariantDiscr,
27};
28use crate::mir::interpret::ErrorHandled;
29use crate::ty::util::{Discr, IntTypeExt};
30use crate::ty::{self, ConstKind};
31
32#[derive(#[automatically_derived]
impl ::core::clone::Clone for AdtFlags {
    #[inline]
    fn clone(&self) -> AdtFlags {
        let _: ::core::clone::AssertParamIsClone<u16>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::marker::Copy for AdtFlags { }Copy, #[automatically_derived]
impl ::core::cmp::PartialEq for AdtFlags {
    #[inline]
    fn eq(&self, other: &AdtFlags) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for AdtFlags {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<u16>;
    }
}Eq, #[automatically_derived]
impl ::core::hash::Hash for AdtFlags {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.0, state)
    }
}Hash, const _: () =
    {
        impl ::rustc_data_structures::stable_hasher::StableHash for AdtFlags {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hasher::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    AdtFlags(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for AdtFlags {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    AdtFlags(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 AdtFlags {
            fn decode(__decoder: &mut __D) -> Self {
                AdtFlags(::rustc_serialize::Decodable::decode(__decoder))
            }
        }
    };TyDecodable)]
33pub struct AdtFlags(u16);
34impl AdtFlags {
    #[allow(deprecated, non_upper_case_globals,)]
    pub const NO_ADT_FLAGS: Self = Self::from_bits_retain(0);
    #[doc = r" Indicates whether the ADT is an enum."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_ENUM: Self = Self::from_bits_retain(1 << 0);
    #[doc = r" Indicates whether the ADT is a union."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_UNION: Self = Self::from_bits_retain(1 << 1);
    #[doc = r" Indicates whether the ADT is a struct."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_STRUCT: Self = Self::from_bits_retain(1 << 2);
    #[doc = r" Indicates whether the ADT is a struct and has a constructor."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const HAS_CTOR: Self = Self::from_bits_retain(1 << 3);
    #[doc = r" Indicates whether the type is `PhantomData`."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_PHANTOM_DATA: Self = Self::from_bits_retain(1 << 4);
    #[doc = r" Indicates whether the type has a `#[fundamental]` attribute."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_FUNDAMENTAL: Self = Self::from_bits_retain(1 << 5);
    #[doc = r" Indicates whether the type is `Box`."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_BOX: Self = Self::from_bits_retain(1 << 6);
    #[doc = r" Indicates whether the type is `ManuallyDrop`."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_MANUALLY_DROP: Self = Self::from_bits_retain(1 << 7);
    #[doc =
    r" Indicates whether the variant list of this ADT is `#[non_exhaustive]`."]
    #[doc = r" (i.e., this flag is never set unless this ADT is an enum)."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_VARIANT_LIST_NON_EXHAUSTIVE: Self =
        Self::from_bits_retain(1 << 8);
    #[doc = r" Indicates whether the type is `UnsafeCell`."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_UNSAFE_CELL: Self = Self::from_bits_retain(1 << 9);
    #[doc = r" Indicates whether the type is `UnsafePinned`."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_UNSAFE_PINNED: Self = Self::from_bits_retain(1 << 10);
    #[doc = r" Indicates whether the type is `Pin`."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_PIN: Self = Self::from_bits_retain(1 << 11);
    #[doc = r" Indicates whether the type is `#[pin_project]`."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_PIN_PROJECT: Self = Self::from_bits_retain(1 << 12);
    #[doc = r" Indicates whether the type is `FieldRepresentingType`."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_FIELD_REPRESENTING_TYPE: Self =
        Self::from_bits_retain(1 << 13);
    #[doc = r" Indicates whether the type is `MaybeDangling<_>`."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_MAYBE_DANGLING: Self = Self::from_bits_retain(1 << 14);
}
impl ::bitflags::Flags for AdtFlags {
    const FLAGS: &'static [::bitflags::Flag<AdtFlags>] =
        &[{

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                        #[allow(deprecated, non_upper_case_globals,)]
                        ::bitflags::Flag::new("IS_MAYBE_DANGLING",
                            AdtFlags::IS_MAYBE_DANGLING)
                    }];
    type Bits = u16;
    fn bits(&self) -> u16 { AdtFlags::bits(self) }
    fn from_bits_retain(bits: u16) -> AdtFlags {
        AdtFlags::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 AdtFlags {
            /// Get a flags value with all bits unset.
            #[inline]
            pub const fn empty() -> Self {
                Self(<u16 as ::bitflags::Bits>::EMPTY)
            }
            /// Get a flags value with all known bits set.
            #[inline]
            pub const fn all() -> Self {
                let mut truncated = <u16 as ::bitflags::Bits>::EMPTY;
                let mut i = 0;
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <AdtFlags 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) -> u16 { 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: u16)
                -> ::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: u16) -> Self {
                Self(bits & Self::all().0)
            }
            /// Convert from a bits value exactly.
            #[inline]
            pub const fn from_bits_retain(bits: u16) -> 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_ADT_FLAGS" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::NO_ADT_FLAGS.bits()));
                    }
                };
                ;
                {
                    if name == "IS_ENUM" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_ENUM.bits()));
                    }
                };
                ;
                {
                    if name == "IS_UNION" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_UNION.bits()));
                    }
                };
                ;
                {
                    if name == "IS_STRUCT" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_STRUCT.bits()));
                    }
                };
                ;
                {
                    if name == "HAS_CTOR" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::HAS_CTOR.bits()));
                    }
                };
                ;
                {
                    if name == "IS_PHANTOM_DATA" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_PHANTOM_DATA.bits()));
                    }
                };
                ;
                {
                    if name == "IS_FUNDAMENTAL" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_FUNDAMENTAL.bits()));
                    }
                };
                ;
                {
                    if name == "IS_BOX" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_BOX.bits()));
                    }
                };
                ;
                {
                    if name == "IS_MANUALLY_DROP" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_MANUALLY_DROP.bits()));
                    }
                };
                ;
                {
                    if name == "IS_VARIANT_LIST_NON_EXHAUSTIVE" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_VARIANT_LIST_NON_EXHAUSTIVE.bits()));
                    }
                };
                ;
                {
                    if name == "IS_UNSAFE_CELL" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_UNSAFE_CELL.bits()));
                    }
                };
                ;
                {
                    if name == "IS_UNSAFE_PINNED" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_UNSAFE_PINNED.bits()));
                    }
                };
                ;
                {
                    if name == "IS_PIN" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_PIN.bits()));
                    }
                };
                ;
                {
                    if name == "IS_PIN_PROJECT" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_PIN_PROJECT.bits()));
                    }
                };
                ;
                {
                    if name == "IS_FIELD_REPRESENTING_TYPE" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_FIELD_REPRESENTING_TYPE.bits()));
                    }
                };
                ;
                {
                    if name == "IS_MAYBE_DANGLING" {
                        return ::bitflags::__private::core::option::Option::Some(Self(AdtFlags::IS_MAYBE_DANGLING.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 == <u16 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 != <u16 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 AdtFlags {
            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 AdtFlags {
            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 AdtFlags {
            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 AdtFlags {
            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 AdtFlags {
            type Output = Self;
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            fn bitor(self, other: AdtFlags) -> Self { self.union(other) }
        }
        impl ::bitflags::__private::core::ops::BitOrAssign for AdtFlags {
            /// 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 AdtFlags {
            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 AdtFlags {
            /// 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 AdtFlags {
            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 AdtFlags {
            /// 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 AdtFlags {
            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 AdtFlags {
            /// 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 AdtFlags {
            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<AdtFlags> for AdtFlags
            {
            /// 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<AdtFlags> for
            AdtFlags {
            /// 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 AdtFlags {
            /// 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<AdtFlags> {
                ::bitflags::iter::Iter::__private_const_new(<AdtFlags as
                        ::bitflags::Flags>::FLAGS,
                    AdtFlags::from_bits_retain(self.bits()),
                    AdtFlags::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<AdtFlags> {
                ::bitflags::iter::IterNames::__private_const_new(<AdtFlags as
                        ::bitflags::Flags>::FLAGS,
                    AdtFlags::from_bits_retain(self.bits()),
                    AdtFlags::from_bits_retain(self.bits()))
            }
        }
        impl ::bitflags::__private::core::iter::IntoIterator for AdtFlags {
            type Item = AdtFlags;
            type IntoIter = ::bitflags::iter::Iter<AdtFlags>;
            fn into_iter(self) -> Self::IntoIter { self.iter() }
        }
    };bitflags::bitflags! {
35    impl AdtFlags: u16 {
36        const NO_ADT_FLAGS        = 0;
37        /// Indicates whether the ADT is an enum.
38        const IS_ENUM             = 1 << 0;
39        /// Indicates whether the ADT is a union.
40        const IS_UNION            = 1 << 1;
41        /// Indicates whether the ADT is a struct.
42        const IS_STRUCT           = 1 << 2;
43        /// Indicates whether the ADT is a struct and has a constructor.
44        const HAS_CTOR            = 1 << 3;
45        /// Indicates whether the type is `PhantomData`.
46        const IS_PHANTOM_DATA     = 1 << 4;
47        /// Indicates whether the type has a `#[fundamental]` attribute.
48        const IS_FUNDAMENTAL      = 1 << 5;
49        /// Indicates whether the type is `Box`.
50        const IS_BOX              = 1 << 6;
51        /// Indicates whether the type is `ManuallyDrop`.
52        const IS_MANUALLY_DROP    = 1 << 7;
53        /// Indicates whether the variant list of this ADT is `#[non_exhaustive]`.
54        /// (i.e., this flag is never set unless this ADT is an enum).
55        const IS_VARIANT_LIST_NON_EXHAUSTIVE = 1 << 8;
56        /// Indicates whether the type is `UnsafeCell`.
57        const IS_UNSAFE_CELL              = 1 << 9;
58        /// Indicates whether the type is `UnsafePinned`.
59        const IS_UNSAFE_PINNED              = 1 << 10;
60        /// Indicates whether the type is `Pin`.
61        const IS_PIN                        = 1 << 11;
62        /// Indicates whether the type is `#[pin_project]`.
63        const IS_PIN_PROJECT                = 1 << 12;
64        /// Indicates whether the type is `FieldRepresentingType`.
65        const IS_FIELD_REPRESENTING_TYPE    = 1 << 13;
66        /// Indicates whether the type is `MaybeDangling<_>`.
67        const IS_MAYBE_DANGLING             = 1 << 14;
68    }
69}
70impl ::std::fmt::Debug for AdtFlags {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        ::bitflags::parser::to_writer(self, f)
    }
}rustc_data_structures::external_bitflags_debug! { AdtFlags }
71
72/// The definition of a user-defined type, e.g., a `struct`, `enum`, or `union`.
73///
74/// These are all interned (by `mk_adt_def`) into the global arena.
75///
76/// The initialism *ADT* stands for an [*algebraic data type (ADT)*][adt].
77/// This is slightly wrong because `union`s are not ADTs.
78/// Moreover, Rust only allows recursive data types through indirection.
79///
80/// [adt]: https://en.wikipedia.org/wiki/Algebraic_data_type
81///
82/// # Recursive types
83///
84/// It may seem impossible to represent recursive types using [`Ty`],
85/// since [`TyKind::Adt`] includes [`AdtDef`], which includes its fields,
86/// creating a cycle. However, `AdtDef` does not actually include the *types*
87/// of its fields; it includes just their [`DefId`]s.
88///
89/// [`TyKind::Adt`]: ty::TyKind::Adt
90///
91/// For example, the following type:
92///
93/// ```
94/// struct S { x: Box<S> }
95/// ```
96///
97/// is essentially represented with [`Ty`] as the following pseudocode:
98///
99/// ```ignore (illustrative)
100/// struct S { x }
101/// ```
102///
103/// where `x` here represents the `DefId` of `S.x`. Then, the `DefId`
104/// can be used with [`TyCtxt::type_of()`] to get the type of the field.
105#[derive(const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for AdtDefData {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    AdtDefData {
                        did: ref __binding_0,
                        variants: ref __binding_1,
                        flags: ref __binding_2,
                        repr: 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 AdtDefData {
            fn decode(__decoder: &mut __D) -> Self {
                AdtDefData {
                    did: ::rustc_serialize::Decodable::decode(__decoder),
                    variants: ::rustc_serialize::Decodable::decode(__decoder),
                    flags: ::rustc_serialize::Decodable::decode(__decoder),
                    repr: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };TyDecodable)]
106pub struct AdtDefData {
107    /// The `DefId` of the struct, enum or union item.
108    pub did: DefId,
109    /// Variants of the ADT. If this is a struct or union, then there will be a single variant.
110    variants: IndexVec<VariantIdx, VariantDef>,
111    /// Flags of the ADT (e.g., is this a struct? is this non-exhaustive?).
112    flags: AdtFlags,
113    /// Repr options provided by the user.
114    repr: ReprOptions,
115}
116
117impl PartialEq for AdtDefData {
118    #[inline]
119    fn eq(&self, other: &Self) -> bool {
120        // There should be only one `AdtDefData` for each `def_id`, therefore
121        // it is fine to implement `PartialEq` only based on `def_id`.
122        //
123        // Below, we exhaustively destructure `self` and `other` so that if the
124        // definition of `AdtDefData` changes, a compile-error will be produced,
125        // reminding us to revisit this assumption.
126
127        let Self { did: self_def_id, variants: _, flags: _, repr: _ } = self;
128        let Self { did: other_def_id, variants: _, flags: _, repr: _ } = other;
129
130        let res = self_def_id == other_def_id;
131
132        // Double check that implicit assumption detailed above.
133        if truecfg!(debug_assertions) && res {
134            let deep = self.flags == other.flags
135                && self.repr == other.repr
136                && self.variants == other.variants;
137            if !deep {
    {
        ::core::panicking::panic_fmt(format_args!("AdtDefData for the same def-id has differing data"));
    }
};assert!(deep, "AdtDefData for the same def-id has differing data");
138        }
139
140        res
141    }
142}
143
144impl Eq for AdtDefData {}
145
146/// There should be only one AdtDef for each `did`, therefore
147/// it is fine to implement `Hash` only based on `did`.
148impl Hash for AdtDefData {
149    #[inline]
150    fn hash<H: Hasher>(&self, s: &mut H) {
151        self.did.hash(s)
152    }
153}
154
155impl StableHash for AdtDefData {
156    fn stable_hash<Hcx: StableHashCtxt>(&self, hcx: &mut Hcx, hasher: &mut StableHasher) {
157        const CACHE:
    ::std::thread::LocalKey<RefCell<FxHashMap<(usize, HashingControls),
    Fingerprint>>> =
    {
        #[inline]
        fn __rust_std_internal_init_fn()
            -> RefCell<FxHashMap<(usize, HashingControls), Fingerprint>> {
            Default::default()
        }
        unsafe {
            ::std::thread::LocalKey::new(const {
                        if ::std::mem::needs_drop::<RefCell<FxHashMap<(usize,
                                    HashingControls), Fingerprint>>>() {
                            |__rust_std_internal_init|
                                {
                                    #[thread_local]
                                    static __RUST_STD_INTERNAL_VAL:
                                        ::std::thread::local_impl::LazyStorage<RefCell<FxHashMap<(usize,
                                        HashingControls), Fingerprint>>, ()> =
                                        ::std::thread::local_impl::LazyStorage::new();
                                    __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                        __rust_std_internal_init_fn)
                                }
                        } else {
                            |__rust_std_internal_init|
                                {
                                    #[thread_local]
                                    static __RUST_STD_INTERNAL_VAL:
                                        ::std::thread::local_impl::LazyStorage<RefCell<FxHashMap<(usize,
                                        HashingControls), Fingerprint>>, !> =
                                        ::std::thread::local_impl::LazyStorage::new();
                                    __RUST_STD_INTERNAL_VAL.get_or_init(__rust_std_internal_init,
                                        __rust_std_internal_init_fn)
                                }
                        }
                    })
        }
    };thread_local! {
158            static CACHE: RefCell<FxHashMap<(usize, HashingControls), Fingerprint>> = Default::default();
159        }
160
161        let hash: Fingerprint = CACHE.with(|cache| {
162            let addr = self as *const AdtDefData as usize;
163            let hashing_controls = hcx.hashing_controls();
164            *cache.borrow_mut().entry((addr, hashing_controls)).or_insert_with(|| {
165                let ty::AdtDefData { did, ref variants, ref flags, ref repr } = *self;
166
167                let mut hasher = StableHasher::new();
168                did.stable_hash(hcx, &mut hasher);
169                variants.stable_hash(hcx, &mut hasher);
170                flags.stable_hash(hcx, &mut hasher);
171                repr.stable_hash(hcx, &mut hasher);
172
173                hasher.finish()
174            })
175        });
176
177        hash.stable_hash(hcx, hasher);
178    }
179}
180
181#[derive(#[automatically_derived]
impl<'tcx> ::core::marker::Copy for AdtDef<'tcx> { }Copy, #[automatically_derived]
impl<'tcx> ::core::clone::Clone for AdtDef<'tcx> {
    #[inline]
    fn clone(&self) -> AdtDef<'tcx> {
        let _: ::core::clone::AssertParamIsClone<Interned<'tcx, AdtDefData>>;
        *self
    }
}Clone, #[automatically_derived]
impl<'tcx> ::core::cmp::PartialEq for AdtDef<'tcx> {
    #[inline]
    fn eq(&self, other: &AdtDef<'tcx>) -> bool { self.0 == other.0 }
}PartialEq, #[automatically_derived]
impl<'tcx> ::core::cmp::Eq for AdtDef<'tcx> {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _: ::core::cmp::AssertParamIsEq<Interned<'tcx, AdtDefData>>;
    }
}Eq, #[automatically_derived]
impl<'tcx> ::core::hash::Hash for AdtDef<'tcx> {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.0, state)
    }
}Hash, const _: () =
    {
        impl<'tcx> ::rustc_data_structures::stable_hasher::StableHash for
            AdtDef<'tcx> {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hasher::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    AdtDef(ref __binding_0) => {
                        { __binding_0.stable_hash(__hcx, __hasher); }
                    }
                }
            }
        }
    };StableHash)]
182#[rustc_pass_by_value]
183pub struct AdtDef<'tcx>(pub Interned<'tcx, AdtDefData>);
184
185impl<'tcx> AdtDef<'tcx> {
186    #[inline]
187    pub fn did(self) -> DefId {
188        self.0.0.did
189    }
190
191    #[inline]
192    pub fn variants(self) -> &'tcx IndexSlice<VariantIdx, VariantDef> {
193        &self.0.0.variants
194    }
195
196    #[inline]
197    pub fn variant(self, idx: VariantIdx) -> &'tcx VariantDef {
198        &self.0.0.variants[idx]
199    }
200
201    #[inline]
202    pub fn flags(self) -> AdtFlags {
203        self.0.0.flags
204    }
205
206    #[inline]
207    pub fn repr(self) -> ReprOptions {
208        self.0.0.repr
209    }
210
211    pub fn field_representing_type_info(
212        self,
213        tcx: TyCtxt<'tcx>,
214        args: ty::GenericArgsRef<'tcx>,
215    ) -> Option<FieldInfo<TyCtxt<'tcx>>> {
216        if !self.is_field_representing_type() {
217            return None;
218        }
219        let base = args.type_at(0);
220        let variant_idx = match args.const_at(1).kind() {
221            ConstKind::Value(v) => VariantIdx::from_u32(v.to_leaf().to_u32()),
222            _ => return None,
223        };
224        let field_idx = match args.const_at(2).kind() {
225            ConstKind::Value(v) => FieldIdx::from_u32(v.to_leaf().to_u32()),
226            _ => return None,
227        };
228        let (ty, variant, name) = match base.kind() {
229            ty::Adt(base_def, base_args) => {
230                let variant = base_def.variant(variant_idx);
231                let field = &variant.fields[field_idx];
232                (field.ty(tcx, base_args), base_def.is_enum().then_some(variant.name), field.name)
233            }
234            ty::Tuple(tys) => {
235                if variant_idx != FIRST_VARIANT {
236                    crate::util::bug::bug_fmt(format_args!("expected variant of tuple to be FIRST_VARIANT, but found {0:?}",
        variant_idx))bug!("expected variant of tuple to be FIRST_VARIANT, but found {variant_idx:?}")
237                }
238                (
239                    if let Some(ty) = tys.get(field_idx.index()) {
240                        *ty
241                    } else {
242                        crate::util::bug::bug_fmt(format_args!("expected valid tuple index, but got {1:?}, tuple length: {0}",
        tys.len(), field_idx))bug!(
243                            "expected valid tuple index, but got {field_idx:?}, tuple length: {}",
244                            tys.len()
245                        )
246                    },
247                    None,
248                    sym::integer(field_idx.index()),
249                )
250            }
251            _ => ::core::panicking::panic("explicit panic")panic!(),
252        };
253        Some(FieldInfo { base, ty, variant, variant_idx, name, field_idx })
254    }
255}
256
257impl<'tcx> rustc_type_ir::inherent::AdtDef<TyCtxt<'tcx>> for AdtDef<'tcx> {
258    fn def_id(self) -> DefId {
259        self.did()
260    }
261
262    fn is_struct(self) -> bool {
263        self.is_struct()
264    }
265
266    fn is_packed(self) -> bool {
267        self.repr().packed()
268    }
269
270    fn struct_tail_ty(self, interner: TyCtxt<'tcx>) -> Option<ty::EarlyBinder<'tcx, Ty<'tcx>>> {
271        Some(interner.type_of(self.non_enum_variant().tail_opt()?.did))
272    }
273
274    fn is_phantom_data(self) -> bool {
275        self.is_phantom_data()
276    }
277
278    fn is_manually_drop(self) -> bool {
279        self.is_manually_drop()
280    }
281
282    fn field_representing_type_info(
283        self,
284        tcx: TyCtxt<'tcx>,
285        args: ty::GenericArgsRef<'tcx>,
286    ) -> Option<FieldInfo<TyCtxt<'tcx>>> {
287        self.field_representing_type_info(tcx, args)
288    }
289
290    fn all_field_tys(
291        self,
292        tcx: TyCtxt<'tcx>,
293    ) -> ty::EarlyBinder<'tcx, impl IntoIterator<Item = Ty<'tcx>>> {
294        ty::EarlyBinder::bind(
295            self.all_fields().map(move |field| tcx.type_of(field.did).skip_binder()),
296        )
297    }
298
299    fn sizedness_constraint(
300        self,
301        tcx: TyCtxt<'tcx>,
302        sizedness: ty::SizedTraitKind,
303    ) -> Option<ty::EarlyBinder<'tcx, Ty<'tcx>>> {
304        self.sizedness_constraint(tcx, sizedness)
305    }
306
307    fn is_fundamental(self) -> bool {
308        self.is_fundamental()
309    }
310
311    fn destructor(self, tcx: TyCtxt<'tcx>) -> Option<AdtDestructorKind> {
312        Some(match tcx.constness(self.destructor(tcx)?.did) {
313            hir::Constness::Const => AdtDestructorKind::Const,
314            hir::Constness::NotConst => AdtDestructorKind::NotConst,
315        })
316    }
317}
318
319#[derive(#[automatically_derived]
impl ::core::marker::Copy for AdtKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for AdtKind {
    #[inline]
    fn clone(&self) -> AdtKind { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for AdtKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                AdtKind::Struct => "Struct",
                AdtKind::Union => "Union",
                AdtKind::Enum => "Enum",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::Eq for AdtKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialEq for AdtKind {
    #[inline]
    fn eq(&self, other: &AdtKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, const _: () =
    {
        impl ::rustc_data_structures::stable_hasher::StableHash for AdtKind {
            #[inline]
            fn stable_hash<__Hcx: ::rustc_data_structures::stable_hasher::StableHashCtxt>(&self,
                __hcx: &mut __Hcx,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).stable_hash(__hcx, __hasher);
                match *self {
                    AdtKind::Struct => {}
                    AdtKind::Union => {}
                    AdtKind::Enum => {}
                }
            }
        }
    };StableHash, const _: () =
    {
        impl<'tcx, __E: ::rustc_middle::ty::codec::TyEncoder<'tcx>>
            ::rustc_serialize::Encodable<__E> for AdtKind {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        AdtKind::Struct => { 0usize }
                        AdtKind::Union => { 1usize }
                        AdtKind::Enum => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    AdtKind::Struct => {}
                    AdtKind::Union => {}
                    AdtKind::Enum => {}
                }
            }
        }
    };TyEncodable, const _: () =
    {
        impl<'tcx, __D: ::rustc_middle::ty::codec::TyDecoder<'tcx>>
            ::rustc_serialize::Decodable<__D> for AdtKind {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { AdtKind::Struct }
                    1usize => { AdtKind::Union }
                    2usize => { AdtKind::Enum }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `AdtKind`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };TyDecodable)]
320pub enum AdtKind {
321    Struct,
322    Union,
323    Enum,
324}
325
326impl From<AdtKind> for DataTypeKind {
327    fn from(val: AdtKind) -> Self {
328        match val {
329            AdtKind::Struct => DataTypeKind::Struct,
330            AdtKind::Union => DataTypeKind::Union,
331            AdtKind::Enum => DataTypeKind::Enum,
332        }
333    }
334}
335
336impl AdtDefData {
337    /// Creates a new `AdtDefData`.
338    pub(super) fn new(
339        tcx: TyCtxt<'_>,
340        did: DefId,
341        kind: AdtKind,
342        variants: IndexVec<VariantIdx, VariantDef>,
343        repr: ReprOptions,
344    ) -> Self {
345        {
    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/adt.rs:345",
                        "rustc_middle::ty::adt", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/ty/adt.rs"),
                        ::tracing_core::__macro_support::Option::Some(345u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_middle::ty::adt"),
                        ::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!("AdtDef::new({0:?}, {1:?}, {2:?}, {3:?})",
                                                    did, kind, variants, repr) as &dyn Value))])
            });
    } else { ; }
};debug!("AdtDef::new({:?}, {:?}, {:?}, {:?})", did, kind, variants, repr);
346        let mut flags = AdtFlags::NO_ADT_FLAGS;
347
348        if kind == AdtKind::Enum && {
        {
            'done:
                {
                for i in ::rustc_hir::attrs::HasAttrs::get_attrs(did, &tcx) {
                    #[allow(unused_imports)]
                    use rustc_hir::attrs::AttributeKind::*;
                    let i: &rustc_hir::Attribute = i;
                    match i {
                        rustc_hir::Attribute::Parsed(NonExhaustive(..)) => {
                            break 'done Some(());
                        }
                        rustc_hir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }
    }.is_some()find_attr!(tcx, did, NonExhaustive(..)) {
349            {
    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/adt.rs:349",
                        "rustc_middle::ty::adt", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/ty/adt.rs"),
                        ::tracing_core::__macro_support::Option::Some(349u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_middle::ty::adt"),
                        ::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!("found non-exhaustive variant list for {0:?}",
                                                    did) as &dyn Value))])
            });
    } else { ; }
};debug!("found non-exhaustive variant list for {:?}", did);
350            flags = flags | AdtFlags::IS_VARIANT_LIST_NON_EXHAUSTIVE;
351        }
352        if {
        {
            'done:
                {
                for i in ::rustc_hir::attrs::HasAttrs::get_attrs(did, &tcx) {
                    #[allow(unused_imports)]
                    use rustc_hir::attrs::AttributeKind::*;
                    let i: &rustc_hir::Attribute = i;
                    match i {
                        rustc_hir::Attribute::Parsed(PinV2) => {
                            break 'done Some(());
                        }
                        rustc_hir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }
    }.is_some()find_attr!(tcx, did, PinV2) {
353            {
    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/adt.rs:353",
                        "rustc_middle::ty::adt", ::tracing::Level::DEBUG,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/ty/adt.rs"),
                        ::tracing_core::__macro_support::Option::Some(353u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_middle::ty::adt"),
                        ::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!("found pin-project type {0:?}",
                                                    did) as &dyn Value))])
            });
    } else { ; }
};debug!("found pin-project type {:?}", did);
354            flags |= AdtFlags::IS_PIN_PROJECT;
355        }
356
357        flags |= match kind {
358            AdtKind::Enum => AdtFlags::IS_ENUM,
359            AdtKind::Union => AdtFlags::IS_UNION,
360            AdtKind::Struct => AdtFlags::IS_STRUCT,
361        };
362
363        if kind == AdtKind::Struct && variants[FIRST_VARIANT].ctor.is_some() {
364            flags |= AdtFlags::HAS_CTOR;
365        }
366
367        if {
        {
            'done:
                {
                for i in ::rustc_hir::attrs::HasAttrs::get_attrs(did, &tcx) {
                    #[allow(unused_imports)]
                    use rustc_hir::attrs::AttributeKind::*;
                    let i: &rustc_hir::Attribute = i;
                    match i {
                        rustc_hir::Attribute::Parsed(Fundamental) => {
                            break 'done Some(());
                        }
                        rustc_hir::Attribute::Unparsed(..) =>
                            {}
                            #[deny(unreachable_patterns)]
                            _ => {}
                    }
                }
                None
            }
        }
    }.is_some()find_attr!(tcx, did, Fundamental) {
368            flags |= AdtFlags::IS_FUNDAMENTAL;
369        }
370        if tcx.is_lang_item(did, LangItem::PhantomData) {
371            flags |= AdtFlags::IS_PHANTOM_DATA;
372        }
373        if tcx.is_lang_item(did, LangItem::OwnedBox) {
374            flags |= AdtFlags::IS_BOX;
375        }
376        if tcx.is_lang_item(did, LangItem::ManuallyDrop) {
377            flags |= AdtFlags::IS_MANUALLY_DROP;
378        }
379        if tcx.is_lang_item(did, LangItem::MaybeDangling) {
380            flags |= AdtFlags::IS_MAYBE_DANGLING;
381        }
382        if tcx.is_lang_item(did, LangItem::UnsafeCell) {
383            flags |= AdtFlags::IS_UNSAFE_CELL;
384        }
385        if tcx.is_lang_item(did, LangItem::UnsafePinned) {
386            flags |= AdtFlags::IS_UNSAFE_PINNED;
387        }
388        if tcx.is_lang_item(did, LangItem::Pin) {
389            flags |= AdtFlags::IS_PIN;
390        }
391        if tcx.is_lang_item(did, LangItem::FieldRepresentingType) {
392            flags |= AdtFlags::IS_FIELD_REPRESENTING_TYPE;
393        }
394
395        AdtDefData { did, variants, flags, repr }
396    }
397}
398
399impl<'tcx> AdtDef<'tcx> {
400    /// Returns `true` if this is a struct.
401    #[inline]
402    pub fn is_struct(self) -> bool {
403        self.flags().contains(AdtFlags::IS_STRUCT)
404    }
405
406    /// Returns `true` if this is a union.
407    #[inline]
408    pub fn is_union(self) -> bool {
409        self.flags().contains(AdtFlags::IS_UNION)
410    }
411
412    /// Returns `true` if this is an enum.
413    #[inline]
414    pub fn is_enum(self) -> bool {
415        self.flags().contains(AdtFlags::IS_ENUM)
416    }
417
418    /// Returns `true` if the variant list of this ADT is `#[non_exhaustive]`.
419    ///
420    /// Note that this function will return `true` even if the ADT has been
421    /// defined in the crate currently being compiled. If that's not what you
422    /// want, see [`Self::variant_list_has_applicable_non_exhaustive`].
423    #[inline]
424    pub fn is_variant_list_non_exhaustive(self) -> bool {
425        self.flags().contains(AdtFlags::IS_VARIANT_LIST_NON_EXHAUSTIVE)
426    }
427
428    /// Returns `true` if the variant list of this ADT is `#[non_exhaustive]`
429    /// and has been defined in another crate.
430    #[inline]
431    pub fn variant_list_has_applicable_non_exhaustive(self) -> bool {
432        self.is_variant_list_non_exhaustive() && !self.did().is_local()
433    }
434
435    /// Returns the kind of the ADT.
436    #[inline]
437    pub fn adt_kind(self) -> AdtKind {
438        if self.is_enum() {
439            AdtKind::Enum
440        } else if self.is_union() {
441            AdtKind::Union
442        } else {
443            AdtKind::Struct
444        }
445    }
446
447    /// Returns a description of this abstract data type.
448    pub fn descr(self) -> &'static str {
449        match self.adt_kind() {
450            AdtKind::Struct => "struct",
451            AdtKind::Union => "union",
452            AdtKind::Enum => "enum",
453        }
454    }
455
456    /// Returns a description of a variant of this abstract data type.
457    #[inline]
458    pub fn variant_descr(self) -> &'static str {
459        match self.adt_kind() {
460            AdtKind::Struct => "struct",
461            AdtKind::Union => "union",
462            AdtKind::Enum => "variant",
463        }
464    }
465
466    /// If this function returns `true`, it implies that `is_struct` must return `true`.
467    #[inline]
468    pub fn has_ctor(self) -> bool {
469        self.flags().contains(AdtFlags::HAS_CTOR)
470    }
471
472    /// Returns `true` if this type is `#[fundamental]` for the purposes
473    /// of coherence checking.
474    #[inline]
475    pub fn is_fundamental(self) -> bool {
476        self.flags().contains(AdtFlags::IS_FUNDAMENTAL)
477    }
478
479    /// Returns `true` if this is `PhantomData<T>`.
480    #[inline]
481    pub fn is_phantom_data(self) -> bool {
482        self.flags().contains(AdtFlags::IS_PHANTOM_DATA)
483    }
484
485    /// Returns `true` if this is `Box<T>`.
486    #[inline]
487    pub fn is_box(self) -> bool {
488        self.flags().contains(AdtFlags::IS_BOX)
489    }
490
491    /// Returns `true` if this is `UnsafeCell<T>`.
492    #[inline]
493    pub fn is_unsafe_cell(self) -> bool {
494        self.flags().contains(AdtFlags::IS_UNSAFE_CELL)
495    }
496
497    /// Returns `true` if this is `UnsafePinned<T>`.
498    #[inline]
499    pub fn is_unsafe_pinned(self) -> bool {
500        self.flags().contains(AdtFlags::IS_UNSAFE_PINNED)
501    }
502
503    /// Returns `true` if this is `ManuallyDrop<T>`.
504    #[inline]
505    pub fn is_manually_drop(self) -> bool {
506        self.flags().contains(AdtFlags::IS_MANUALLY_DROP)
507    }
508
509    /// Returns `true` if this is `MaybeDangling<T>`.
510    #[inline]
511    pub fn is_maybe_dangling(self) -> bool {
512        self.flags().contains(AdtFlags::IS_MAYBE_DANGLING)
513    }
514
515    /// Returns `true` if this is `Pin<T>`.
516    #[inline]
517    pub fn is_pin(self) -> bool {
518        self.flags().contains(AdtFlags::IS_PIN)
519    }
520
521    /// Returns `true` is this is `#[pin_v2]` for the purposes
522    /// of structural pinning.
523    #[inline]
524    pub fn is_pin_project(self) -> bool {
525        self.flags().contains(AdtFlags::IS_PIN_PROJECT)
526    }
527
528    pub fn is_field_representing_type(self) -> bool {
529        self.flags().contains(AdtFlags::IS_FIELD_REPRESENTING_TYPE)
530    }
531
532    /// Returns `true` if this type has a destructor.
533    pub fn has_dtor(self, tcx: TyCtxt<'tcx>) -> bool {
534        self.destructor(tcx).is_some()
535    }
536
537    /// Asserts this is a struct or union and returns its unique variant.
538    pub fn non_enum_variant(self) -> &'tcx VariantDef {
539        if !(self.is_struct() || self.is_union()) {
    ::core::panicking::panic("assertion failed: self.is_struct() || self.is_union()")
};assert!(self.is_struct() || self.is_union());
540        self.variant(FIRST_VARIANT)
541    }
542
543    #[inline]
544    pub fn predicates(self, tcx: TyCtxt<'tcx>) -> GenericPredicates<'tcx> {
545        tcx.predicates_of(self.did())
546    }
547
548    /// Returns an iterator over all fields contained
549    /// by this ADT (nested unnamed fields are not expanded).
550    #[inline]
551    pub fn all_fields(self) -> impl Iterator<Item = &'tcx FieldDef> + Clone {
552        self.variants().iter().flat_map(|v| v.fields.iter())
553    }
554
555    /// Whether the ADT lacks fields. Note that this includes uninhabited enums,
556    /// e.g., `enum Void {}` is considered payload free as well.
557    pub fn is_payloadfree(self) -> bool {
558        // Treat the ADT as not payload-free if arbitrary_enum_discriminant is used (#88621).
559        // This would disallow the following kind of enum from being casted into integer.
560        // ```
561        // enum Enum {
562        //    Foo() = 1,
563        //    Bar{} = 2,
564        //    Baz = 3,
565        // }
566        // ```
567        if self.variants().iter().any(|v| {
568            #[allow(non_exhaustive_omitted_patterns)] match v.discr {
    VariantDiscr::Explicit(_) => true,
    _ => false,
}matches!(v.discr, VariantDiscr::Explicit(_)) && v.ctor_kind() != Some(CtorKind::Const)
569        }) {
570            return false;
571        }
572        self.variants().iter().all(|v| v.fields.is_empty())
573    }
574
575    /// Return a `VariantDef` given a variant id.
576    pub fn variant_with_id(self, vid: DefId) -> &'tcx VariantDef {
577        self.variants().iter().find(|v| v.def_id == vid).expect("variant_with_id: unknown variant")
578    }
579
580    /// Return a `VariantDef` given a constructor id.
581    pub fn variant_with_ctor_id(self, cid: DefId) -> &'tcx VariantDef {
582        self.variants()
583            .iter()
584            .find(|v| v.ctor_def_id() == Some(cid))
585            .expect("variant_with_ctor_id: unknown variant")
586    }
587
588    /// Return the index of `VariantDef` given a variant id.
589    #[inline]
590    pub fn variant_index_with_id(self, vid: DefId) -> VariantIdx {
591        self.variants()
592            .iter_enumerated()
593            .find(|(_, v)| v.def_id == vid)
594            .expect("variant_index_with_id: unknown variant")
595            .0
596    }
597
598    /// Return the index of `VariantDef` given a constructor id.
599    pub fn variant_index_with_ctor_id(self, cid: DefId) -> VariantIdx {
600        self.variants()
601            .iter_enumerated()
602            .find(|(_, v)| v.ctor_def_id() == Some(cid))
603            .expect("variant_index_with_ctor_id: unknown variant")
604            .0
605    }
606
607    pub fn variant_of_res(self, res: Res) -> &'tcx VariantDef {
608        match res {
609            Res::Def(DefKind::Variant, vid) => self.variant_with_id(vid),
610            Res::Def(DefKind::Ctor(..), cid) => self.variant_with_ctor_id(cid),
611            Res::Def(DefKind::Struct, _)
612            | Res::Def(DefKind::Union, _)
613            | Res::Def(DefKind::TyAlias, _)
614            | Res::Def(DefKind::AssocTy, _)
615            | Res::SelfTyParam { .. }
616            | Res::SelfTyAlias { .. }
617            | Res::SelfCtor(..) => self.non_enum_variant(),
618            _ => crate::util::bug::bug_fmt(format_args!("unexpected res {0:?} in variant_of_res",
        res))bug!("unexpected res {:?} in variant_of_res", res),
619        }
620    }
621
622    #[inline]
623    pub fn eval_explicit_discr(
624        self,
625        tcx: TyCtxt<'tcx>,
626        expr_did: DefId,
627    ) -> Result<Discr<'tcx>, ErrorGuaranteed> {
628        if !self.is_enum() {
    ::core::panicking::panic("assertion failed: self.is_enum()")
};assert!(self.is_enum());
629
630        let repr_type = self.repr().discr_type();
631        match tcx.const_eval_poly(expr_did) {
632            Ok(val) => {
633                let typing_env = ty::TypingEnv::post_analysis(tcx, expr_did);
634                let ty = repr_type.to_ty(tcx);
635                if let Some(b) = val.try_to_bits_for_ty(tcx, typing_env, ty) {
636                    {
    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/adt.rs:636",
                        "rustc_middle::ty::adt", ::tracing::Level::TRACE,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/ty/adt.rs"),
                        ::tracing_core::__macro_support::Option::Some(636u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_middle::ty::adt"),
                        ::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!("discriminants: {0} ({1:?})",
                                                    b, repr_type) as &dyn Value))])
            });
    } else { ; }
};trace!("discriminants: {} ({:?})", b, repr_type);
637                    Ok(Discr { val: b, ty })
638                } else {
639                    {
    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/adt.rs:639",
                        "rustc_middle::ty::adt", ::tracing::Level::INFO,
                        ::tracing_core::__macro_support::Option::Some("compiler/rustc_middle/src/ty/adt.rs"),
                        ::tracing_core::__macro_support::Option::Some(639u32),
                        ::tracing_core::__macro_support::Option::Some("rustc_middle::ty::adt"),
                        ::tracing_core::field::FieldSet::new(&["message"],
                            ::tracing_core::callsite::Identifier(&__CALLSITE)),
                        ::tracing::metadata::Kind::EVENT)
                };
            ::tracing::callsite::DefaultCallsite::new(&META)
        };
    let enabled =
        ::tracing::Level::INFO <= ::tracing::level_filters::STATIC_MAX_LEVEL
                &&
                ::tracing::Level::INFO <=
                    ::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!("invalid enum discriminant: {0:#?}",
                                                    val) as &dyn Value))])
            });
    } else { ; }
};info!("invalid enum discriminant: {:#?}", val);
640                    let guar = tcx.dcx().emit_err(crate::error::ConstEvalNonIntError {
641                        span: tcx.def_span(expr_did),
642                    });
643                    Err(guar)
644                }
645            }
646            Err(err) => {
647                let guar = match err {
648                    ErrorHandled::Reported(info, _) => info.into(),
649                    ErrorHandled::TooGeneric(..) => tcx.dcx().span_delayed_bug(
650                        tcx.def_span(expr_did),
651                        "enum discriminant depends on generics",
652                    ),
653                };
654                Err(guar)
655            }
656        }
657    }
658
659    #[inline]
660    pub fn discriminants(
661        self,
662        tcx: TyCtxt<'tcx>,
663    ) -> impl Iterator<Item = (VariantIdx, Discr<'tcx>)> {
664        if !self.is_enum() {
    ::core::panicking::panic("assertion failed: self.is_enum()")
};assert!(self.is_enum());
665        let repr_type = self.repr().discr_type();
666        let initial = repr_type.initial_discriminant(tcx);
667        let mut prev_discr = None::<Discr<'tcx>>;
668        self.variants().iter_enumerated().map(move |(i, v)| {
669            let mut discr = prev_discr.map_or(initial, |d| d.wrap_incr(tcx));
670            if let VariantDiscr::Explicit(expr_did) = v.discr
671                && let Ok(new_discr) = self.eval_explicit_discr(tcx, expr_did)
672            {
673                discr = new_discr;
674            }
675            prev_discr = Some(discr);
676
677            (i, discr)
678        })
679    }
680
681    #[inline]
682    pub fn variant_range(self) -> Range<VariantIdx> {
683        FIRST_VARIANT..self.variants().next_index()
684    }
685
686    /// Computes the discriminant value used by a specific variant.
687    /// Unlike `discriminants`, this is (amortized) constant-time,
688    /// only doing at most one query for evaluating an explicit
689    /// discriminant (the last one before the requested variant),
690    /// assuming there are no constant-evaluation errors there.
691    #[inline]
692    pub fn discriminant_for_variant(
693        self,
694        tcx: TyCtxt<'tcx>,
695        variant_index: VariantIdx,
696    ) -> Discr<'tcx> {
697        if !self.is_enum() {
    ::core::panicking::panic("assertion failed: self.is_enum()")
};assert!(self.is_enum());
698        let (val, offset) = self.discriminant_def_for_variant(variant_index);
699        let explicit_value = if let Some(expr_did) = val
700            && let Ok(val) = self.eval_explicit_discr(tcx, expr_did)
701        {
702            val
703        } else {
704            self.repr().discr_type().initial_discriminant(tcx)
705        };
706        explicit_value.checked_add(tcx, offset as u128).0
707    }
708
709    /// Yields a `DefId` for the discriminant and an offset to add to it
710    /// Alternatively, if there is no explicit discriminant, returns the
711    /// inferred discriminant directly.
712    pub fn discriminant_def_for_variant(self, variant_index: VariantIdx) -> (Option<DefId>, u32) {
713        if !!self.variants().is_empty() {
    ::core::panicking::panic("assertion failed: !self.variants().is_empty()")
};assert!(!self.variants().is_empty());
714        let mut explicit_index = variant_index.as_u32();
715        let expr_did;
716        loop {
717            match self.variant(VariantIdx::from_u32(explicit_index)).discr {
718                ty::VariantDiscr::Relative(0) => {
719                    expr_did = None;
720                    break;
721                }
722                ty::VariantDiscr::Relative(distance) => {
723                    explicit_index -= distance;
724                }
725                ty::VariantDiscr::Explicit(did) => {
726                    expr_did = Some(did);
727                    break;
728                }
729            }
730        }
731        (expr_did, variant_index.as_u32() - explicit_index)
732    }
733
734    pub fn destructor(self, tcx: TyCtxt<'tcx>) -> Option<Destructor> {
735        tcx.adt_destructor(self.did())
736    }
737
738    // FIXME: consider combining this method with `AdtDef::destructor` and removing
739    // this version
740    pub fn async_destructor(self, tcx: TyCtxt<'tcx>) -> Option<AsyncDestructor> {
741        tcx.adt_async_destructor(self.did())
742    }
743
744    /// If this ADT is a struct, returns a type such that `Self: {Meta,Pointee,}Sized` if and only
745    /// if that type is `{Meta,Pointee,}Sized`, or `None` if this ADT is always
746    /// `{Meta,Pointee,}Sized`.
747    pub fn sizedness_constraint(
748        self,
749        tcx: TyCtxt<'tcx>,
750        sizedness: ty::SizedTraitKind,
751    ) -> Option<ty::EarlyBinder<'tcx, Ty<'tcx>>> {
752        if self.is_struct() { tcx.adt_sizedness_constraint((self.did(), sizedness)) } else { None }
753    }
754}