Skip to main content

rustc_codegen_ssa/
lib.rs

1// tidy-alphabetical-start
2#![feature(deref_patterns)]
3#![feature(file_buffered)]
4#![feature(negative_impls)]
5#![feature(string_from_utf8_lossy_owned)]
6#![feature(trait_alias)]
7#![feature(try_blocks)]
8#![recursion_limit = "256"]
9// tidy-alphabetical-end
10
11//! This crate contains codegen code that is used by all codegen backends (LLVM and others).
12//! The backend-agnostic functions of this crate use functions defined in various traits that
13//! have to be implemented by each backend.
14
15use std::collections::BTreeSet;
16use std::io;
17use std::path::{Path, PathBuf};
18use std::sync::Arc;
19
20use rustc_abi::Size;
21use rustc_data_structures::fx::{FxHashSet, FxIndexMap};
22use rustc_data_structures::unord::UnordMap;
23use rustc_hir::CRATE_HIR_ID;
24use rustc_hir::attrs::{CfgEntry, NativeLibKind, WindowsSubsystemKind};
25use rustc_hir::def_id::CrateNum;
26use rustc_lint_defs::builtin::LINKER_INFO;
27use rustc_macros::{Decodable, Encodable};
28use rustc_metadata::EncodedMetadata;
29use rustc_middle::dep_graph::WorkProduct;
30use rustc_middle::lint::StableLevelSpec;
31use rustc_middle::middle::debugger_visualizer::DebuggerVisualizerFile;
32use rustc_middle::middle::dependency_format::Dependencies;
33use rustc_middle::middle::exported_symbols::SymbolExportKind;
34use rustc_middle::ty::TyCtxt;
35use rustc_middle::util::Providers;
36use rustc_serialize::opaque::{FileEncoder, MemDecoder};
37use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
38use rustc_session::Session;
39use rustc_session::config::{CrateType, OutputFilenames, OutputType};
40use rustc_session::cstore::{self, CrateSource};
41use rustc_session::lint::builtin::LINKER_MESSAGES;
42use rustc_span::Symbol;
43
44pub mod assert_module_sources;
45pub mod back;
46pub mod base;
47pub mod codegen_attrs;
48pub mod common;
49pub mod debuginfo;
50pub mod errors;
51pub mod meth;
52pub mod mir;
53pub mod mono_item;
54pub mod size_of_val;
55pub mod target_features;
56pub mod traits;
57
58pub struct ModuleCodegen<M> {
59    /// The name of the module. When the crate may be saved between
60    /// compilations, incremental compilation requires that name be
61    /// unique amongst **all** crates. Therefore, it should contain
62    /// something unique to this crate (e.g., a module path) as well
63    /// as the crate name and disambiguator.
64    /// We currently generate these names via CodegenUnit::build_cgu_name().
65    pub name: String,
66    pub module_llvm: M,
67    pub kind: ModuleKind,
68    /// Saving the ThinLTO buffer for embedding in the object file.
69    pub thin_lto_buffer: Option<Vec<u8>>,
70}
71
72impl<M> ModuleCodegen<M> {
73    pub fn new_regular(name: impl Into<String>, module: M) -> Self {
74        Self {
75            name: name.into(),
76            module_llvm: module,
77            kind: ModuleKind::Regular,
78            thin_lto_buffer: None,
79        }
80    }
81
82    pub fn new_allocator(name: impl Into<String>, module: M) -> Self {
83        Self {
84            name: name.into(),
85            module_llvm: module,
86            kind: ModuleKind::Allocator,
87            thin_lto_buffer: None,
88        }
89    }
90
91    pub fn into_compiled_module(
92        self,
93        emit_obj: bool,
94        emit_dwarf_obj: bool,
95        emit_bc: bool,
96        emit_asm: bool,
97        emit_ir: bool,
98        outputs: &OutputFilenames,
99    ) -> CompiledModule {
100        let object = emit_obj.then(|| outputs.temp_path_for_cgu(OutputType::Object, &self.name));
101        let dwarf_object = emit_dwarf_obj.then(|| outputs.temp_path_dwo_for_cgu(&self.name));
102        let bytecode = emit_bc.then(|| outputs.temp_path_for_cgu(OutputType::Bitcode, &self.name));
103        let assembly =
104            emit_asm.then(|| outputs.temp_path_for_cgu(OutputType::Assembly, &self.name));
105        let llvm_ir =
106            emit_ir.then(|| outputs.temp_path_for_cgu(OutputType::LlvmAssembly, &self.name));
107
108        CompiledModule {
109            name: self.name,
110            kind: self.kind,
111            object,
112            dwarf_object,
113            bytecode,
114            assembly,
115            llvm_ir,
116            links_from_incr_cache: Vec::new(),
117        }
118    }
119}
120
121#[derive(#[automatically_derived]
impl ::core::fmt::Debug for CompiledModule {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["name", "kind", "object", "dwarf_object", "bytecode",
                        "assembly", "llvm_ir", "links_from_incr_cache"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.name, &self.kind, &self.object, &self.dwarf_object,
                        &self.bytecode, &self.assembly, &self.llvm_ir,
                        &&self.links_from_incr_cache];
        ::core::fmt::Formatter::debug_struct_fields_finish(f,
            "CompiledModule", names, values)
    }
}Debug, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for CompiledModule {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    CompiledModule {
                        name: ref __binding_0,
                        kind: ref __binding_1,
                        object: ref __binding_2,
                        dwarf_object: ref __binding_3,
                        bytecode: ref __binding_4,
                        assembly: ref __binding_5,
                        llvm_ir: ref __binding_6,
                        links_from_incr_cache: ref __binding_7 } => {
                        ::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);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_7,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for CompiledModule {
            fn decode(__decoder: &mut __D) -> Self {
                CompiledModule {
                    name: ::rustc_serialize::Decodable::decode(__decoder),
                    kind: ::rustc_serialize::Decodable::decode(__decoder),
                    object: ::rustc_serialize::Decodable::decode(__decoder),
                    dwarf_object: ::rustc_serialize::Decodable::decode(__decoder),
                    bytecode: ::rustc_serialize::Decodable::decode(__decoder),
                    assembly: ::rustc_serialize::Decodable::decode(__decoder),
                    llvm_ir: ::rustc_serialize::Decodable::decode(__decoder),
                    links_from_incr_cache: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable)]
122pub struct CompiledModule {
123    pub name: String,
124    pub kind: ModuleKind,
125    pub object: Option<PathBuf>,
126    pub dwarf_object: Option<PathBuf>,
127    pub bytecode: Option<PathBuf>,
128    pub assembly: Option<PathBuf>, // --emit=asm
129    pub llvm_ir: Option<PathBuf>,  // --emit=llvm-ir, llvm-bc is in bytecode
130    pub links_from_incr_cache: Vec<PathBuf>,
131}
132
133impl CompiledModule {
134    /// Call `emit` function with every artifact type currently compiled
135    pub fn for_each_output(&self, mut emit: impl FnMut(&Path, OutputType)) {
136        if let Some(path) = self.object.as_deref() {
137            emit(path, OutputType::Object);
138        }
139        if let Some(path) = self.bytecode.as_deref() {
140            emit(path, OutputType::Bitcode);
141        }
142        if let Some(path) = self.llvm_ir.as_deref() {
143            emit(path, OutputType::LlvmAssembly);
144        }
145        if let Some(path) = self.assembly.as_deref() {
146            emit(path, OutputType::Assembly);
147        }
148    }
149}
150
151pub(crate) struct CachedModuleCodegen {
152    pub name: String,
153    pub source: WorkProduct,
154}
155
156#[derive(#[automatically_derived]
impl ::core::marker::Copy for ModuleKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ModuleKind {
    #[inline]
    fn clone(&self) -> ModuleKind { *self }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ModuleKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                ModuleKind::Regular => "Regular",
                ModuleKind::Allocator => "Allocator",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for ModuleKind {
    #[inline]
    fn eq(&self, other: &ModuleKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for ModuleKind {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        ModuleKind::Regular => { 0usize }
                        ModuleKind::Allocator => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    ModuleKind::Regular => {}
                    ModuleKind::Allocator => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for ModuleKind {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { ModuleKind::Regular }
                    1usize => { ModuleKind::Allocator }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `ModuleKind`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable)]
157pub enum ModuleKind {
158    Regular,
159    Allocator,
160}
161
162pub struct MemFlags(<MemFlags as
    ::bitflags::__private::PublicFlags>::Internal);
#[automatically_derived]
impl ::core::fmt::Debug for MemFlags {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_tuple_field1_finish(f, "MemFlags",
            &&self.0)
    }
}
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for MemFlags { }
#[automatically_derived]
impl ::core::clone::Clone for MemFlags {
    #[inline]
    fn clone(&self) -> MemFlags {
        let _:
                ::core::clone::AssertParamIsClone<<MemFlags as
                ::bitflags::__private::PublicFlags>::Internal>;
        *self
    }
}
#[automatically_derived]
impl ::core::marker::Copy for MemFlags { }
#[automatically_derived]
impl ::core::marker::StructuralPartialEq for MemFlags { }
#[automatically_derived]
impl ::core::cmp::PartialEq for MemFlags {
    #[inline]
    fn eq(&self, other: &MemFlags) -> bool { self.0 == other.0 }
}
#[automatically_derived]
impl ::core::cmp::Eq for MemFlags {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _:
                ::core::cmp::AssertParamIsEq<<MemFlags as
                ::bitflags::__private::PublicFlags>::Internal>;
    }
}
impl MemFlags {
    #[allow(deprecated, non_upper_case_globals,)]
    pub const VOLATILE: Self = Self::from_bits_retain(1 << 0);
    #[allow(deprecated, non_upper_case_globals,)]
    pub const NONTEMPORAL: Self = Self::from_bits_retain(1 << 1);
    #[allow(deprecated, non_upper_case_globals,)]
    pub const UNALIGNED: Self = Self::from_bits_retain(1 << 2);
}
impl ::bitflags::Flags for MemFlags {
    const FLAGS: &'static [::bitflags::Flag<MemFlags>] =
        &[{

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

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

                        #[allow(deprecated, non_upper_case_globals,)]
                        ::bitflags::Flag::new("UNALIGNED", MemFlags::UNALIGNED)
                    }];
    type Bits = u8;
    fn bits(&self) -> u8 { MemFlags::bits(self) }
    fn from_bits_retain(bits: u8) -> MemFlags {
        MemFlags::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 MemFlags {
            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(&MemFlags(*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::<MemFlags>(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 =
                            <MemFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <MemFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <MemFlags 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 == "VOLATILE" {
                        return ::bitflags::__private::core::option::Option::Some(Self(MemFlags::VOLATILE.bits()));
                    }
                };
                ;
                {
                    if name == "NONTEMPORAL" {
                        return ::bitflags::__private::core::option::Option::Some(Self(MemFlags::NONTEMPORAL.bits()));
                    }
                };
                ;
                {
                    if name == "UNALIGNED" {
                        return ::bitflags::__private::core::option::Option::Some(Self(MemFlags::UNALIGNED.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<MemFlags> {
                ::bitflags::iter::Iter::__private_const_new(<MemFlags as
                        ::bitflags::Flags>::FLAGS,
                    MemFlags::from_bits_retain(self.bits()),
                    MemFlags::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<MemFlags> {
                ::bitflags::iter::IterNames::__private_const_new(<MemFlags as
                        ::bitflags::Flags>::FLAGS,
                    MemFlags::from_bits_retain(self.bits()),
                    MemFlags::from_bits_retain(self.bits()))
            }
        }
        impl ::bitflags::__private::core::iter::IntoIterator for
            InternalBitFlags {
            type Item = MemFlags;
            type IntoIter = ::bitflags::iter::Iter<MemFlags>;
            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 MemFlags {
            /// 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 MemFlags {
            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 MemFlags {
            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 MemFlags {
            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 MemFlags {
            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 MemFlags {
            type Output = Self;
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            fn bitor(self, other: MemFlags) -> Self { self.union(other) }
        }
        impl ::bitflags::__private::core::ops::BitOrAssign for MemFlags {
            /// 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 MemFlags {
            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 MemFlags {
            /// 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 MemFlags {
            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 MemFlags {
            /// 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 MemFlags {
            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 MemFlags {
            /// 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 MemFlags {
            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<MemFlags> for MemFlags
            {
            /// 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<MemFlags> for
            MemFlags {
            /// 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 MemFlags {
            /// 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<MemFlags> {
                ::bitflags::iter::Iter::__private_const_new(<MemFlags as
                        ::bitflags::Flags>::FLAGS,
                    MemFlags::from_bits_retain(self.bits()),
                    MemFlags::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<MemFlags> {
                ::bitflags::iter::IterNames::__private_const_new(<MemFlags as
                        ::bitflags::Flags>::FLAGS,
                    MemFlags::from_bits_retain(self.bits()),
                    MemFlags::from_bits_retain(self.bits()))
            }
        }
        impl ::bitflags::__private::core::iter::IntoIterator for MemFlags {
            type Item = MemFlags;
            type IntoIter = ::bitflags::iter::Iter<MemFlags>;
            fn into_iter(self) -> Self::IntoIter { self.iter() }
        }
    };bitflags::bitflags! {
163    #[derive(Debug, Clone, Copy, PartialEq, Eq)]
164    pub struct MemFlags: u8 {
165        const VOLATILE = 1 << 0;
166        const NONTEMPORAL = 1 << 1;
167        const UNALIGNED = 1 << 2;
168    }
169}
170
171#[derive(#[automatically_derived]
impl<V: ::core::fmt::Debug> ::core::fmt::Debug for RetagInfo<V> {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f, "RetagInfo",
            "size", &self.size, "flags", &self.flags, "im_layout",
            &self.im_layout, "pin_layout", &&self.pin_layout)
    }
}Debug, #[automatically_derived]
impl<V: ::core::marker::Copy> ::core::marker::Copy for RetagInfo<V> { }Copy, #[automatically_derived]
impl<V: ::core::clone::Clone> ::core::clone::Clone for RetagInfo<V> {
    #[inline]
    fn clone(&self) -> RetagInfo<V> {
        RetagInfo {
            size: ::core::clone::Clone::clone(&self.size),
            flags: ::core::clone::Clone::clone(&self.flags),
            im_layout: ::core::clone::Clone::clone(&self.im_layout),
            pin_layout: ::core::clone::Clone::clone(&self.pin_layout),
        }
    }
}Clone)]
172pub struct RetagInfo<V> {
173    /// The size of the initial range within the allocation that is
174    /// associated with the permission created by the retag.
175    pub size: Size,
176    /// Encoded type information used to determine the kind of permission
177    /// created by the retag.
178    pub flags: RetagFlags,
179    /// A pointer to a constant array of (offset, size) pairs describing
180    /// the ranges covered by `UnsafeCell` within the pointee type.
181    pub im_layout: V,
182    /// A pointer to a constant array of (offset, size) pairs describing
183    /// the ranges covered by `UnsafePinned` within the pointee type.
184    pub pin_layout: V,
185}
186
187#[repr(C)]
pub struct RetagFlags(<RetagFlags as
    ::bitflags::__private::PublicFlags>::Internal);
#[automatically_derived]
impl ::core::fmt::Debug for RetagFlags {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_tuple_field1_finish(f, "RetagFlags",
            &&self.0)
    }
}
#[automatically_derived]
impl ::core::marker::Copy for RetagFlags { }
#[automatically_derived]
#[doc(hidden)]
unsafe impl ::core::clone::TrivialClone for RetagFlags { }
#[automatically_derived]
impl ::core::clone::Clone for RetagFlags {
    #[inline]
    fn clone(&self) -> RetagFlags {
        let _:
                ::core::clone::AssertParamIsClone<<RetagFlags as
                ::bitflags::__private::PublicFlags>::Internal>;
        *self
    }
}
#[automatically_derived]
impl ::core::marker::StructuralPartialEq for RetagFlags { }
#[automatically_derived]
impl ::core::cmp::PartialEq for RetagFlags {
    #[inline]
    fn eq(&self, other: &RetagFlags) -> bool { self.0 == other.0 }
}
#[automatically_derived]
impl ::core::cmp::Eq for RetagFlags {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_fields_are_eq(&self) {
        let _:
                ::core::cmp::AssertParamIsEq<<RetagFlags as
                ::bitflags::__private::PublicFlags>::Internal>;
    }
}
#[automatically_derived]
impl ::core::hash::Hash for RetagFlags {
    #[inline]
    fn hash<__H: ::core::hash::Hasher>(&self, state: &mut __H) {
        ::core::hash::Hash::hash(&self.0, state)
    }
}
impl RetagFlags {
    #[doc = r" If this is a function-entry retag."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_PROTECTED: Self = Self::from_bits_retain(1 << 0);
    #[doc = r" If this is a mutable reference or a `Box`."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_MUTABLE: Self = Self::from_bits_retain(1 << 1);
    #[doc = r" If this is a `Box`."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_BOX: Self = Self::from_bits_retain(1 << 2);
    #[doc = r" If the pointee type is `Freeze`"]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const IS_FREEZE: Self = Self::from_bits_retain(1 << 3);
}
impl ::bitflags::Flags for RetagFlags {
    const FLAGS: &'static [::bitflags::Flag<RetagFlags>] =
        &[{

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

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

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

                        #[allow(deprecated, non_upper_case_globals,)]
                        ::bitflags::Flag::new("IS_FREEZE", RetagFlags::IS_FREEZE)
                    }];
    type Bits = u8;
    fn bits(&self) -> u8 { RetagFlags::bits(self) }
    fn from_bits_retain(bits: u8) -> RetagFlags {
        RetagFlags::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 RetagFlags {
            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(&RetagFlags(*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::<RetagFlags>(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 =
                            <RetagFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <RetagFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <RetagFlags as ::bitflags::Flags>::FLAGS[i].value().bits();
                        truncated = truncated | flag;
                        i += 1;
                    }
                };
                {
                    {
                        let flag =
                            <RetagFlags 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 == "IS_PROTECTED" {
                        return ::bitflags::__private::core::option::Option::Some(Self(RetagFlags::IS_PROTECTED.bits()));
                    }
                };
                ;
                {
                    if name == "IS_MUTABLE" {
                        return ::bitflags::__private::core::option::Option::Some(Self(RetagFlags::IS_MUTABLE.bits()));
                    }
                };
                ;
                {
                    if name == "IS_BOX" {
                        return ::bitflags::__private::core::option::Option::Some(Self(RetagFlags::IS_BOX.bits()));
                    }
                };
                ;
                {
                    if name == "IS_FREEZE" {
                        return ::bitflags::__private::core::option::Option::Some(Self(RetagFlags::IS_FREEZE.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<RetagFlags> {
                ::bitflags::iter::Iter::__private_const_new(<RetagFlags as
                        ::bitflags::Flags>::FLAGS,
                    RetagFlags::from_bits_retain(self.bits()),
                    RetagFlags::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<RetagFlags> {
                ::bitflags::iter::IterNames::__private_const_new(<RetagFlags
                        as ::bitflags::Flags>::FLAGS,
                    RetagFlags::from_bits_retain(self.bits()),
                    RetagFlags::from_bits_retain(self.bits()))
            }
        }
        impl ::bitflags::__private::core::iter::IntoIterator for
            InternalBitFlags {
            type Item = RetagFlags;
            type IntoIter = ::bitflags::iter::Iter<RetagFlags>;
            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 RetagFlags {
            /// 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 RetagFlags {
            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 RetagFlags {
            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 RetagFlags {
            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 RetagFlags {
            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 RetagFlags {
            type Output = Self;
            /// The bitwise or (`|`) of the bits in two flags values.
            #[inline]
            fn bitor(self, other: RetagFlags) -> Self { self.union(other) }
        }
        impl ::bitflags::__private::core::ops::BitOrAssign for RetagFlags {
            /// 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 RetagFlags {
            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 RetagFlags {
            /// 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 RetagFlags {
            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 RetagFlags {
            /// 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 RetagFlags {
            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 RetagFlags {
            /// 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 RetagFlags {
            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<RetagFlags> for
            RetagFlags {
            /// 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<RetagFlags> for
            RetagFlags {
            /// 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 RetagFlags {
            /// 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<RetagFlags> {
                ::bitflags::iter::Iter::__private_const_new(<RetagFlags as
                        ::bitflags::Flags>::FLAGS,
                    RetagFlags::from_bits_retain(self.bits()),
                    RetagFlags::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<RetagFlags> {
                ::bitflags::iter::IterNames::__private_const_new(<RetagFlags
                        as ::bitflags::Flags>::FLAGS,
                    RetagFlags::from_bits_retain(self.bits()),
                    RetagFlags::from_bits_retain(self.bits()))
            }
        }
        impl ::bitflags::__private::core::iter::IntoIterator for RetagFlags {
            type Item = RetagFlags;
            type IntoIter = ::bitflags::iter::Iter<RetagFlags>;
            fn into_iter(self) -> Self::IntoIter { self.iter() }
        }
    };bitflags::bitflags! {
188    #[repr(C)]
189    #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
190    pub struct RetagFlags: u8 {
191        /// If this is a function-entry retag.
192        const IS_PROTECTED = 1 << 0;
193        /// If this is a mutable reference or a `Box`.
194        const IS_MUTABLE = 1 << 1;
195        /// If this is a `Box`.
196        const IS_BOX = 1 << 2;
197        /// If the pointee type is `Freeze`
198        const IS_FREEZE = 1 << 3;
199    }
200}
201
202// This is the same as `rustc_session::cstore::NativeLib`, except:
203// - (important) the `foreign_module` field is missing, because it contains a `DefId`, which can't
204//   be encoded with `FileEncoder`.
205// - (less important) the `verbatim` field is a `bool` rather than an `Option<bool>`, because here
206//   we can treat `false` and `absent` the same.
207#[derive(#[automatically_derived]
impl ::core::clone::Clone for NativeLib {
    #[inline]
    fn clone(&self) -> NativeLib {
        NativeLib {
            kind: ::core::clone::Clone::clone(&self.kind),
            name: ::core::clone::Clone::clone(&self.name),
            filename: ::core::clone::Clone::clone(&self.filename),
            cfg: ::core::clone::Clone::clone(&self.cfg),
            verbatim: ::core::clone::Clone::clone(&self.verbatim),
            dll_imports: ::core::clone::Clone::clone(&self.dll_imports),
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for NativeLib {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["kind", "name", "filename", "cfg", "verbatim", "dll_imports"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.kind, &self.name, &self.filename, &self.cfg,
                        &self.verbatim, &&self.dll_imports];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "NativeLib",
            names, values)
    }
}Debug, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for NativeLib {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    NativeLib {
                        kind: ref __binding_0,
                        name: ref __binding_1,
                        filename: ref __binding_2,
                        cfg: ref __binding_3,
                        verbatim: ref __binding_4,
                        dll_imports: ref __binding_5 } => {
                        ::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);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for NativeLib {
            fn decode(__decoder: &mut __D) -> Self {
                NativeLib {
                    kind: ::rustc_serialize::Decodable::decode(__decoder),
                    name: ::rustc_serialize::Decodable::decode(__decoder),
                    filename: ::rustc_serialize::Decodable::decode(__decoder),
                    cfg: ::rustc_serialize::Decodable::decode(__decoder),
                    verbatim: ::rustc_serialize::Decodable::decode(__decoder),
                    dll_imports: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable)]
208pub struct NativeLib {
209    pub kind: NativeLibKind,
210    pub name: Symbol,
211    pub filename: Option<Symbol>,
212    pub cfg: Option<CfgEntry>,
213    pub verbatim: bool,
214    pub dll_imports: Vec<cstore::DllImport>,
215}
216
217impl From<&cstore::NativeLib> for NativeLib {
218    fn from(lib: &cstore::NativeLib) -> Self {
219        NativeLib {
220            kind: lib.kind,
221            filename: lib.filename,
222            name: lib.name,
223            cfg: lib.cfg.clone(),
224            verbatim: lib.verbatim.unwrap_or(false),
225            dll_imports: lib.dll_imports.clone(),
226        }
227    }
228}
229
230/// Misc info we load from metadata to persist beyond the tcx.
231///
232/// Note: though `CrateNum` is only meaningful within the same tcx, information within `CrateInfo`
233/// is self-contained. `CrateNum` can be viewed as a unique identifier within a `CrateInfo`, where
234/// `used_crate_source` contains all `CrateSource` of the dependents, and maintains a mapping from
235/// identifiers (`CrateNum`) to `CrateSource`. The other fields map `CrateNum` to the crate's own
236/// additional properties, so that effectively we can retrieve each dependent crate's `CrateSource`
237/// and the corresponding properties without referencing information outside of a `CrateInfo`.
238// rustc_codegen_cranelift needs a Clone impl for its jit mode, which isn't tested in rust CI
239#[derive(#[automatically_derived]
impl ::core::clone::Clone for CrateInfo {
    #[inline]
    fn clone(&self) -> CrateInfo {
        CrateInfo {
            target_cpu: ::core::clone::Clone::clone(&self.target_cpu),
            target_features: ::core::clone::Clone::clone(&self.target_features),
            crate_types: ::core::clone::Clone::clone(&self.crate_types),
            exported_symbols: ::core::clone::Clone::clone(&self.exported_symbols),
            linked_symbols: ::core::clone::Clone::clone(&self.linked_symbols),
            local_crate_name: ::core::clone::Clone::clone(&self.local_crate_name),
            compiler_builtins: ::core::clone::Clone::clone(&self.compiler_builtins),
            profiler_runtime: ::core::clone::Clone::clone(&self.profiler_runtime),
            is_no_builtins: ::core::clone::Clone::clone(&self.is_no_builtins),
            native_libraries: ::core::clone::Clone::clone(&self.native_libraries),
            crate_name: ::core::clone::Clone::clone(&self.crate_name),
            used_libraries: ::core::clone::Clone::clone(&self.used_libraries),
            used_crate_source: ::core::clone::Clone::clone(&self.used_crate_source),
            used_crates: ::core::clone::Clone::clone(&self.used_crates),
            dependency_formats: ::core::clone::Clone::clone(&self.dependency_formats),
            windows_subsystem: ::core::clone::Clone::clone(&self.windows_subsystem),
            natvis_debugger_visualizers: ::core::clone::Clone::clone(&self.natvis_debugger_visualizers),
            lint_level_specs: ::core::clone::Clone::clone(&self.lint_level_specs),
            metadata_symbol: ::core::clone::Clone::clone(&self.metadata_symbol),
            each_linked_rlib_file_for_lto: ::core::clone::Clone::clone(&self.each_linked_rlib_file_for_lto),
            exported_symbols_for_lto: ::core::clone::Clone::clone(&self.exported_symbols_for_lto),
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for CrateInfo {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        let names: &'static _ =
            &["target_cpu", "target_features", "crate_types",
                        "exported_symbols", "linked_symbols", "local_crate_name",
                        "compiler_builtins", "profiler_runtime", "is_no_builtins",
                        "native_libraries", "crate_name", "used_libraries",
                        "used_crate_source", "used_crates", "dependency_formats",
                        "windows_subsystem", "natvis_debugger_visualizers",
                        "lint_level_specs", "metadata_symbol",
                        "each_linked_rlib_file_for_lto",
                        "exported_symbols_for_lto"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.target_cpu, &self.target_features, &self.crate_types,
                        &self.exported_symbols, &self.linked_symbols,
                        &self.local_crate_name, &self.compiler_builtins,
                        &self.profiler_runtime, &self.is_no_builtins,
                        &self.native_libraries, &self.crate_name,
                        &self.used_libraries, &self.used_crate_source,
                        &self.used_crates, &self.dependency_formats,
                        &self.windows_subsystem, &self.natvis_debugger_visualizers,
                        &self.lint_level_specs, &self.metadata_symbol,
                        &self.each_linked_rlib_file_for_lto,
                        &&self.exported_symbols_for_lto];
        ::core::fmt::Formatter::debug_struct_fields_finish(f, "CrateInfo",
            names, values)
    }
}Debug, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for CrateInfo {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    CrateInfo {
                        target_cpu: ref __binding_0,
                        target_features: ref __binding_1,
                        crate_types: ref __binding_2,
                        exported_symbols: ref __binding_3,
                        linked_symbols: ref __binding_4,
                        local_crate_name: ref __binding_5,
                        compiler_builtins: ref __binding_6,
                        profiler_runtime: ref __binding_7,
                        is_no_builtins: ref __binding_8,
                        native_libraries: ref __binding_9,
                        crate_name: ref __binding_10,
                        used_libraries: ref __binding_11,
                        used_crate_source: ref __binding_12,
                        used_crates: ref __binding_13,
                        dependency_formats: ref __binding_14,
                        windows_subsystem: ref __binding_15,
                        natvis_debugger_visualizers: ref __binding_16,
                        lint_level_specs: ref __binding_17,
                        metadata_symbol: ref __binding_18,
                        each_linked_rlib_file_for_lto: ref __binding_19,
                        exported_symbols_for_lto: ref __binding_20 } => {
                        ::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);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_7,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_8,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_9,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_10,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_11,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_12,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_13,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_14,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_15,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_16,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_17,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_18,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_19,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_20,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for CrateInfo {
            fn decode(__decoder: &mut __D) -> Self {
                CrateInfo {
                    target_cpu: ::rustc_serialize::Decodable::decode(__decoder),
                    target_features: ::rustc_serialize::Decodable::decode(__decoder),
                    crate_types: ::rustc_serialize::Decodable::decode(__decoder),
                    exported_symbols: ::rustc_serialize::Decodable::decode(__decoder),
                    linked_symbols: ::rustc_serialize::Decodable::decode(__decoder),
                    local_crate_name: ::rustc_serialize::Decodable::decode(__decoder),
                    compiler_builtins: ::rustc_serialize::Decodable::decode(__decoder),
                    profiler_runtime: ::rustc_serialize::Decodable::decode(__decoder),
                    is_no_builtins: ::rustc_serialize::Decodable::decode(__decoder),
                    native_libraries: ::rustc_serialize::Decodable::decode(__decoder),
                    crate_name: ::rustc_serialize::Decodable::decode(__decoder),
                    used_libraries: ::rustc_serialize::Decodable::decode(__decoder),
                    used_crate_source: ::rustc_serialize::Decodable::decode(__decoder),
                    used_crates: ::rustc_serialize::Decodable::decode(__decoder),
                    dependency_formats: ::rustc_serialize::Decodable::decode(__decoder),
                    windows_subsystem: ::rustc_serialize::Decodable::decode(__decoder),
                    natvis_debugger_visualizers: ::rustc_serialize::Decodable::decode(__decoder),
                    lint_level_specs: ::rustc_serialize::Decodable::decode(__decoder),
                    metadata_symbol: ::rustc_serialize::Decodable::decode(__decoder),
                    each_linked_rlib_file_for_lto: ::rustc_serialize::Decodable::decode(__decoder),
                    exported_symbols_for_lto: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable)]
240pub struct CrateInfo {
241    pub target_cpu: String,
242    pub target_features: Vec<String>,
243    pub crate_types: Vec<CrateType>,
244    pub exported_symbols: UnordMap<CrateType, Vec<(String, SymbolExportKind)>>,
245    pub linked_symbols: FxIndexMap<CrateType, Vec<(String, SymbolExportKind)>>,
246    pub local_crate_name: Symbol,
247    pub compiler_builtins: Option<CrateNum>,
248    pub profiler_runtime: Option<CrateNum>,
249    pub is_no_builtins: FxHashSet<CrateNum>,
250    pub native_libraries: FxIndexMap<CrateNum, Vec<NativeLib>>,
251    pub crate_name: UnordMap<CrateNum, Symbol>,
252    pub used_libraries: Vec<NativeLib>,
253    pub used_crate_source: UnordMap<CrateNum, Arc<CrateSource>>,
254    pub used_crates: Vec<CrateNum>,
255    pub dependency_formats: Arc<Dependencies>,
256    pub windows_subsystem: Option<WindowsSubsystemKind>,
257    pub natvis_debugger_visualizers: BTreeSet<DebuggerVisualizerFile>,
258    pub lint_level_specs: CodegenLintLevelSpecs,
259    pub metadata_symbol: String,
260    pub each_linked_rlib_file_for_lto: Vec<PathBuf>,
261    pub exported_symbols_for_lto: Vec<String>,
262}
263
264/// Target-specific options that get set in `cfg(...)`.
265///
266/// RUSTC_SPECIFIC_FEATURES should be skipped here, those are handled outside codegen.
267pub struct TargetConfig {
268    /// Options to be set in `cfg(target_features)`.
269    pub target_features: Vec<Symbol>,
270    /// Options to be set in `cfg(target_features)`, but including unstable features.
271    pub unstable_target_features: Vec<Symbol>,
272    /// Option for `cfg(target_has_reliable_f16)`, true if `f16` basic arithmetic works.
273    pub has_reliable_f16: bool,
274    /// Option for `cfg(target_has_reliable_f16_math)`, true if `f16` math calls work.
275    pub has_reliable_f16_math: bool,
276    /// Option for `cfg(target_has_reliable_f128)`, true if `f128` basic arithmetic works.
277    pub has_reliable_f128: bool,
278    /// Option for `cfg(target_has_reliable_f128_math)`, true if `f128` math calls work.
279    pub has_reliable_f128_math: bool,
280}
281
282#[derive(const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for CompiledModules {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    CompiledModules {
                        modules: ref __binding_0, allocator_module: ref __binding_1
                        } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for CompiledModules {
            fn decode(__decoder: &mut __D) -> Self {
                CompiledModules {
                    modules: ::rustc_serialize::Decodable::decode(__decoder),
                    allocator_module: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable)]
283pub struct CompiledModules {
284    pub modules: Vec<CompiledModule>,
285    pub allocator_module: Option<CompiledModule>,
286}
287
288pub enum CodegenError {
289    WrongFileType,
290    EmptyVersionNumber,
291    EncodingVersionMismatch { version_array: String, rlink_version: u32 },
292    RustcVersionMismatch { rustc_version: String },
293    CorruptFile,
294}
295
296pub fn provide(providers: &mut Providers) {
297    crate::back::symbol_export::provide(providers);
298    crate::base::provide(&mut providers.queries);
299    crate::target_features::provide(&mut providers.queries);
300    crate::codegen_attrs::provide(&mut providers.queries);
301    providers.queries.global_backend_features = |_tcx: TyCtxt<'_>, ()| ::alloc::vec::Vec::new()vec![];
302}
303
304const RLINK_VERSION: u32 = 1;
305const RLINK_MAGIC: &[u8] = b"rustlink";
306
307impl CompiledModules {
308    pub fn serialize_rlink(
309        sess: &Session,
310        rlink_file: &Path,
311        compiled_modules: &CompiledModules,
312        crate_info: &CrateInfo,
313        metadata: &EncodedMetadata,
314        outputs: &OutputFilenames,
315    ) -> Result<usize, io::Error> {
316        let mut encoder = FileEncoder::new(rlink_file)?;
317        encoder.emit_raw_bytes(RLINK_MAGIC);
318        // `emit_raw_bytes` is used to make sure that the version representation does not depend on
319        // Encoder's inner representation of `u32`.
320        encoder.emit_raw_bytes(&RLINK_VERSION.to_be_bytes());
321        encoder.emit_str(sess.cfg_version);
322        Encodable::encode(compiled_modules, &mut encoder);
323        Encodable::encode(crate_info, &mut encoder);
324        Encodable::encode(metadata, &mut encoder);
325        Encodable::encode(outputs, &mut encoder);
326        encoder.finish().map_err(|(_path, err)| err)
327    }
328
329    pub fn deserialize_rlink(
330        sess: &Session,
331        data: Vec<u8>,
332    ) -> Result<(Self, CrateInfo, EncodedMetadata, OutputFilenames), CodegenError> {
333        // The Decodable machinery is not used here because it panics if the input data is invalid
334        // and because its internal representation may change.
335        if !data.starts_with(RLINK_MAGIC) {
336            return Err(CodegenError::WrongFileType);
337        }
338        let data = &data[RLINK_MAGIC.len()..];
339        if data.len() < 4 {
340            return Err(CodegenError::EmptyVersionNumber);
341        }
342
343        let mut version_array: [u8; 4] = Default::default();
344        version_array.copy_from_slice(&data[..4]);
345        if u32::from_be_bytes(version_array) != RLINK_VERSION {
346            return Err(CodegenError::EncodingVersionMismatch {
347                version_array: String::from_utf8_lossy(&version_array).to_string(),
348                rlink_version: RLINK_VERSION,
349            });
350        }
351
352        let Ok(mut decoder) = MemDecoder::new(&data[4..], 0) else {
353            return Err(CodegenError::CorruptFile);
354        };
355        let rustc_version = decoder.read_str();
356        if rustc_version != sess.cfg_version {
357            return Err(CodegenError::RustcVersionMismatch {
358                rustc_version: rustc_version.to_string(),
359            });
360        }
361
362        let compiled_modules = CompiledModules::decode(&mut decoder);
363        let crate_info = CrateInfo::decode(&mut decoder);
364        let metadata = EncodedMetadata::decode(&mut decoder);
365        let outputs = OutputFilenames::decode(&mut decoder);
366        Ok((compiled_modules, crate_info, metadata, outputs))
367    }
368}
369
370/// A list of lint levels used in codegen.
371///
372/// When using `-Z link-only`, we don't have access to the tcx and must work
373/// solely from the `.rlink` file. `Lint`s are defined too early to be encodeable.
374/// Instead, encode exactly the information we need.
375#[derive(#[automatically_derived]
impl ::core::marker::Copy for CodegenLintLevelSpecs { }Copy, #[automatically_derived]
impl ::core::clone::Clone for CodegenLintLevelSpecs {
    #[inline]
    fn clone(&self) -> CodegenLintLevelSpecs {
        let _: ::core::clone::AssertParamIsClone<StableLevelSpec>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for CodegenLintLevelSpecs {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field2_finish(f,
            "CodegenLintLevelSpecs", "linker_messages", &self.linker_messages,
            "linker_info", &&self.linker_info)
    }
}Debug, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for CodegenLintLevelSpecs {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    CodegenLintLevelSpecs {
                        linker_messages: ref __binding_0,
                        linker_info: ref __binding_1 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for CodegenLintLevelSpecs {
            fn decode(__decoder: &mut __D) -> Self {
                CodegenLintLevelSpecs {
                    linker_messages: ::rustc_serialize::Decodable::decode(__decoder),
                    linker_info: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable)]
376pub struct CodegenLintLevelSpecs {
377    linker_messages: StableLevelSpec,
378    linker_info: StableLevelSpec,
379}
380
381impl CodegenLintLevelSpecs {
382    pub fn from_tcx(tcx: TyCtxt<'_>) -> Self {
383        Self {
384            linker_messages: tcx.lint_level_spec_at_node(LINKER_MESSAGES, CRATE_HIR_ID),
385            linker_info: tcx.lint_level_spec_at_node(LINKER_INFO, CRATE_HIR_ID),
386        }
387    }
388}