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            global_asm_object: None,
113            dwarf_object,
114            bytecode,
115            assembly,
116            llvm_ir,
117            links_from_incr_cache: Vec::new(),
118        }
119    }
120}
121
122#[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", "global_asm_object", "dwarf_object",
                        "bytecode", "assembly", "llvm_ir", "links_from_incr_cache"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.name, &self.kind, &self.object, &self.global_asm_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,
                        global_asm_object: ref __binding_3,
                        dwarf_object: ref __binding_4,
                        bytecode: ref __binding_5,
                        assembly: ref __binding_6,
                        llvm_ir: ref __binding_7,
                        links_from_incr_cache: ref __binding_8 } => {
                        ::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);
                    }
                }
            }
        }
    };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),
                    global_asm_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)]
123pub struct CompiledModule {
124    pub name: String,
125    pub kind: ModuleKind,
126    pub object: Option<PathBuf>,
127    pub global_asm_object: Option<PathBuf>,
128    pub dwarf_object: Option<PathBuf>,
129    pub bytecode: Option<PathBuf>,
130    pub assembly: Option<PathBuf>, // --emit=asm
131    pub llvm_ir: Option<PathBuf>,  // --emit=llvm-ir, llvm-bc is in bytecode
132    pub links_from_incr_cache: Vec<PathBuf>,
133}
134
135impl CompiledModule {
136    /// Call `emit` function with every artifact type currently compiled
137    pub fn for_each_output(&self, mut emit: impl FnMut(&Path, OutputType)) {
138        if let Some(path) = self.object.as_deref() {
139            emit(path, OutputType::Object);
140        }
141        if let Some(path) = self.bytecode.as_deref() {
142            emit(path, OutputType::Bitcode);
143        }
144        if let Some(path) = self.llvm_ir.as_deref() {
145            emit(path, OutputType::LlvmAssembly);
146        }
147        if let Some(path) = self.assembly.as_deref() {
148            emit(path, OutputType::Assembly);
149        }
150    }
151}
152
153pub(crate) struct CachedModuleCodegen {
154    pub name: String,
155    pub source: WorkProduct,
156}
157
158#[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)]
159pub enum ModuleKind {
160    Regular,
161    Allocator,
162}
163
164pub 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);
    #[doc =
    r" Indicates that writing through the stored pointer is undefined behavior."]
    #[doc =
    r" Only valid on stores of pointers, or pairs where the first element is a pointer."]
    #[doc =
    r" In the latter case, the flag only applies to the first element of the pair."]
    #[allow(deprecated, non_upper_case_globals,)]
    pub const CAPTURES_READ_ONLY: Self = Self::from_bits_retain(1 << 3);
}
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)
                    },
                    {

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