Skip to main content

rustc_session/
cstore.rs

1//! the rustc crate store interface. This also includes types that
2//! are *mostly* used as a part of that interface, but these should
3//! probably get a better home if someone can find one.
4
5use std::any::Any;
6use std::path::PathBuf;
7
8use rustc_abi::ExternAbi;
9use rustc_data_structures::sync::{self, AppendOnlyIndexVec, FreezeLock};
10use rustc_hir::attrs::{CfgEntry, NativeLibKind, PeImportNameType};
11use rustc_hir::def_id::{
12    CrateNum, DefId, LOCAL_CRATE, LocalDefId, StableCrateId, StableCrateIdMap,
13};
14use rustc_hir::definitions::{DefKey, DefPath, DefPathHash, Definitions};
15use rustc_macros::{BlobDecodable, Decodable, Encodable, HashStable_Generic};
16use rustc_span::{Span, Symbol};
17
18// lonely orphan structs and enums looking for a better home
19
20/// Where a crate came from on the local filesystem. One of these three options
21/// must be non-None.
22#[derive(#[automatically_derived]
impl ::core::cmp::PartialEq for CrateSource {
    #[inline]
    fn eq(&self, other: &CrateSource) -> bool {
        self.dylib == other.dylib && self.rlib == other.rlib &&
                self.rmeta == other.rmeta &&
            self.sdylib_interface == other.sdylib_interface
    }
}PartialEq, #[automatically_derived]
impl ::core::clone::Clone for CrateSource {
    #[inline]
    fn clone(&self) -> CrateSource {
        CrateSource {
            dylib: ::core::clone::Clone::clone(&self.dylib),
            rlib: ::core::clone::Clone::clone(&self.rlib),
            rmeta: ::core::clone::Clone::clone(&self.rmeta),
            sdylib_interface: ::core::clone::Clone::clone(&self.sdylib_interface),
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for CrateSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f, "CrateSource",
            "dylib", &self.dylib, "rlib", &self.rlib, "rmeta", &self.rmeta,
            "sdylib_interface", &&self.sdylib_interface)
    }
}Debug, const _: () =
    {
        impl<__CTX> ::rustc_data_structures::stable_hasher::HashStable<__CTX>
            for CrateSource where __CTX: crate::HashStableContext {
            #[inline]
            fn hash_stable(&self, __hcx: &mut __CTX,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    CrateSource {
                        dylib: ref __binding_0,
                        rlib: ref __binding_1,
                        rmeta: ref __binding_2,
                        sdylib_interface: ref __binding_3 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable_Generic, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for CrateSource {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    CrateSource {
                        dylib: ref __binding_0,
                        rlib: ref __binding_1,
                        rmeta: ref __binding_2,
                        sdylib_interface: ref __binding_3 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for CrateSource {
            fn decode(__decoder: &mut __D) -> Self {
                CrateSource {
                    dylib: ::rustc_serialize::Decodable::decode(__decoder),
                    rlib: ::rustc_serialize::Decodable::decode(__decoder),
                    rmeta: ::rustc_serialize::Decodable::decode(__decoder),
                    sdylib_interface: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable)]
23pub struct CrateSource {
24    pub dylib: Option<PathBuf>,
25    pub rlib: Option<PathBuf>,
26    pub rmeta: Option<PathBuf>,
27    pub sdylib_interface: Option<PathBuf>,
28}
29
30impl CrateSource {
31    #[inline]
32    pub fn paths(&self) -> impl Iterator<Item = &PathBuf> {
33        self.dylib.iter().chain(self.rlib.iter()).chain(self.rmeta.iter())
34    }
35}
36
37#[derive(const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for CrateDepKind {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        CrateDepKind::MacrosOnly => { 0usize }
                        CrateDepKind::Conditional => { 1usize }
                        CrateDepKind::Unconditional => { 2usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    CrateDepKind::MacrosOnly => {}
                    CrateDepKind::Conditional => {}
                    CrateDepKind::Unconditional => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::BlobDecoder> ::rustc_serialize::Decodable<__D>
            for CrateDepKind {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { CrateDepKind::MacrosOnly }
                    1usize => { CrateDepKind::Conditional }
                    2usize => { CrateDepKind::Unconditional }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `CrateDepKind`, expected 0..3, actual {0}",
                                n));
                    }
                }
            }
        }
    };BlobDecodable, #[automatically_derived]
impl ::core::marker::Copy for CrateDepKind { }Copy, #[automatically_derived]
impl ::core::clone::Clone for CrateDepKind {
    #[inline]
    fn clone(&self) -> CrateDepKind { *self }
}Clone, #[automatically_derived]
impl ::core::cmp::Ord for CrateDepKind {
    #[inline]
    fn cmp(&self, other: &CrateDepKind) -> ::core::cmp::Ordering {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::Ord::cmp(&__self_discr, &__arg1_discr)
    }
}Ord, #[automatically_derived]
impl ::core::cmp::PartialOrd for CrateDepKind {
    #[inline]
    fn partial_cmp(&self, other: &CrateDepKind)
        -> ::core::option::Option<::core::cmp::Ordering> {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        ::core::cmp::PartialOrd::partial_cmp(&__self_discr, &__arg1_discr)
    }
}PartialOrd, #[automatically_derived]
impl ::core::cmp::Eq for CrateDepKind {
    #[inline]
    #[doc(hidden)]
    #[coverage(off)]
    fn assert_receiver_is_total_eq(&self) {}
}Eq, #[automatically_derived]
impl ::core::cmp::PartialEq for CrateDepKind {
    #[inline]
    fn eq(&self, other: &CrateDepKind) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::fmt::Debug for CrateDepKind {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                CrateDepKind::MacrosOnly => "MacrosOnly",
                CrateDepKind::Conditional => "Conditional",
                CrateDepKind::Unconditional => "Unconditional",
            })
    }
}Debug)]
38#[derive(const _: () =
    {
        impl<__CTX> ::rustc_data_structures::stable_hasher::HashStable<__CTX>
            for CrateDepKind where __CTX: crate::HashStableContext {
            #[inline]
            fn hash_stable(&self, __hcx: &mut __CTX,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    CrateDepKind::MacrosOnly => {}
                    CrateDepKind::Conditional => {}
                    CrateDepKind::Unconditional => {}
                }
            }
        }
    };HashStable_Generic)]
39pub enum CrateDepKind {
40    /// A dependency that is only used for its macros.
41    MacrosOnly,
42    /// A dependency that is injected into the crate graph but which only
43    /// sometimes needs to actually be linked in, e.g., the injected panic runtime.
44    Conditional,
45    /// A dependency that is required by an rlib version of this crate.
46    /// Ordinary `extern crate`s as well as most injected dependencies result
47    /// in `Unconditional` dependencies.
48    Unconditional,
49}
50
51impl CrateDepKind {
52    #[inline]
53    pub fn macros_only(self) -> bool {
54        match self {
55            CrateDepKind::MacrosOnly => true,
56            CrateDepKind::Conditional | CrateDepKind::Unconditional => false,
57        }
58    }
59}
60
61#[derive(#[automatically_derived]
impl ::core::marker::Copy for LinkagePreference { }Copy, #[automatically_derived]
impl ::core::fmt::Debug for LinkagePreference {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::write_str(f,
            match self {
                LinkagePreference::RequireDynamic => "RequireDynamic",
                LinkagePreference::RequireStatic => "RequireStatic",
            })
    }
}Debug, #[automatically_derived]
impl ::core::cmp::PartialEq for LinkagePreference {
    #[inline]
    fn eq(&self, other: &LinkagePreference) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr
    }
}PartialEq, #[automatically_derived]
impl ::core::clone::Clone for LinkagePreference {
    #[inline]
    fn clone(&self) -> LinkagePreference { *self }
}Clone, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for LinkagePreference {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        LinkagePreference::RequireDynamic => { 0usize }
                        LinkagePreference::RequireStatic => { 1usize }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    LinkagePreference::RequireDynamic => {}
                    LinkagePreference::RequireStatic => {}
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::BlobDecoder> ::rustc_serialize::Decodable<__D>
            for LinkagePreference {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { LinkagePreference::RequireDynamic }
                    1usize => { LinkagePreference::RequireStatic }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `LinkagePreference`, expected 0..2, actual {0}",
                                n));
                    }
                }
            }
        }
    };BlobDecodable, const _: () =
    {
        impl<__CTX> ::rustc_data_structures::stable_hasher::HashStable<__CTX>
            for LinkagePreference where __CTX: crate::HashStableContext {
            #[inline]
            fn hash_stable(&self, __hcx: &mut __CTX,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    LinkagePreference::RequireDynamic => {}
                    LinkagePreference::RequireStatic => {}
                }
            }
        }
    };HashStable_Generic)]
62pub enum LinkagePreference {
63    RequireDynamic,
64    RequireStatic,
65}
66
67#[derive(#[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", "foreign_module", "verbatim",
                        "dll_imports"];
        let values: &[&dyn ::core::fmt::Debug] =
            &[&self.kind, &self.name, &self.filename, &self.cfg,
                        &self.foreign_module, &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,
                        foreign_module: ref __binding_4,
                        verbatim: ref __binding_5,
                        dll_imports: ref __binding_6 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_4,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_5,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_6,
                            __encoder);
                    }
                }
            }
        }
    };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),
                    foreign_module: ::rustc_serialize::Decodable::decode(__decoder),
                    verbatim: ::rustc_serialize::Decodable::decode(__decoder),
                    dll_imports: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable, const _: () =
    {
        impl<__CTX> ::rustc_data_structures::stable_hasher::HashStable<__CTX>
            for NativeLib where __CTX: crate::HashStableContext {
            #[inline]
            fn hash_stable(&self, __hcx: &mut __CTX,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    NativeLib {
                        kind: ref __binding_0,
                        name: ref __binding_1,
                        filename: ref __binding_2,
                        cfg: ref __binding_3,
                        foreign_module: ref __binding_4,
                        verbatim: ref __binding_5,
                        dll_imports: ref __binding_6 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                        { __binding_4.hash_stable(__hcx, __hasher); }
                        { __binding_5.hash_stable(__hcx, __hasher); }
                        { __binding_6.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable_Generic)]
68pub struct NativeLib {
69    pub kind: NativeLibKind,
70    pub name: Symbol,
71    /// If packed_bundled_libs enabled, actual filename of library is stored.
72    pub filename: Option<Symbol>,
73    pub cfg: Option<CfgEntry>,
74    pub foreign_module: Option<DefId>,
75    pub verbatim: Option<bool>,
76    pub dll_imports: Vec<DllImport>,
77}
78
79impl NativeLib {
80    pub fn has_modifiers(&self) -> bool {
81        self.verbatim.is_some() || self.kind.has_modifiers()
82    }
83
84    pub fn wasm_import_module(&self) -> Option<Symbol> {
85        if self.kind == NativeLibKind::WasmImportModule { Some(self.name) } else { None }
86    }
87}
88
89#[derive(#[automatically_derived]
impl ::core::clone::Clone for DllImport {
    #[inline]
    fn clone(&self) -> DllImport {
        DllImport {
            name: ::core::clone::Clone::clone(&self.name),
            import_name_type: ::core::clone::Clone::clone(&self.import_name_type),
            calling_convention: ::core::clone::Clone::clone(&self.calling_convention),
            span: ::core::clone::Clone::clone(&self.span),
            is_fn: ::core::clone::Clone::clone(&self.is_fn),
        }
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for DllImport {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field5_finish(f, "DllImport",
            "name", &self.name, "import_name_type", &self.import_name_type,
            "calling_convention", &self.calling_convention, "span",
            &self.span, "is_fn", &&self.is_fn)
    }
}Debug, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for DllImport {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    DllImport {
                        name: ref __binding_0,
                        import_name_type: ref __binding_1,
                        calling_convention: ref __binding_2,
                        span: ref __binding_3,
                        is_fn: ref __binding_4 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_3,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_4,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for DllImport {
            fn decode(__decoder: &mut __D) -> Self {
                DllImport {
                    name: ::rustc_serialize::Decodable::decode(__decoder),
                    import_name_type: ::rustc_serialize::Decodable::decode(__decoder),
                    calling_convention: ::rustc_serialize::Decodable::decode(__decoder),
                    span: ::rustc_serialize::Decodable::decode(__decoder),
                    is_fn: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable, const _: () =
    {
        impl<__CTX> ::rustc_data_structures::stable_hasher::HashStable<__CTX>
            for DllImport where __CTX: crate::HashStableContext {
            #[inline]
            fn hash_stable(&self, __hcx: &mut __CTX,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    DllImport {
                        name: ref __binding_0,
                        import_name_type: ref __binding_1,
                        calling_convention: ref __binding_2,
                        span: ref __binding_3,
                        is_fn: ref __binding_4 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                        { __binding_4.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable_Generic)]
90pub struct DllImport {
91    pub name: Symbol,
92    pub import_name_type: Option<PeImportNameType>,
93    /// Calling convention for the function.
94    ///
95    /// On x86_64, this is always `DllCallingConvention::C`; on i686, it can be any
96    /// of the values, and we use `DllCallingConvention::C` to represent `"cdecl"`.
97    pub calling_convention: DllCallingConvention,
98    /// Span of import's "extern" declaration; used for diagnostics.
99    pub span: Span,
100    /// Is this for a function (rather than a static variable).
101    pub is_fn: bool,
102}
103
104impl DllImport {
105    pub fn ordinal(&self) -> Option<u16> {
106        if let Some(PeImportNameType::Ordinal(ordinal)) = self.import_name_type {
107            Some(ordinal)
108        } else {
109            None
110        }
111    }
112
113    pub fn is_missing_decorations(&self) -> bool {
114        self.import_name_type == Some(PeImportNameType::Undecorated)
115            || self.import_name_type == Some(PeImportNameType::NoPrefix)
116    }
117}
118
119/// Calling convention for a function defined in an external library.
120///
121/// The usize value, where present, indicates the size of the function's argument list
122/// in bytes.
123#[derive(#[automatically_derived]
impl ::core::clone::Clone for DllCallingConvention {
    #[inline]
    fn clone(&self) -> DllCallingConvention {
        match self {
            DllCallingConvention::C => DllCallingConvention::C,
            DllCallingConvention::Stdcall(__self_0) =>
                DllCallingConvention::Stdcall(::core::clone::Clone::clone(__self_0)),
            DllCallingConvention::Fastcall(__self_0) =>
                DllCallingConvention::Fastcall(::core::clone::Clone::clone(__self_0)),
            DllCallingConvention::Vectorcall(__self_0) =>
                DllCallingConvention::Vectorcall(::core::clone::Clone::clone(__self_0)),
        }
    }
}Clone, #[automatically_derived]
impl ::core::cmp::PartialEq for DllCallingConvention {
    #[inline]
    fn eq(&self, other: &DllCallingConvention) -> bool {
        let __self_discr = ::core::intrinsics::discriminant_value(self);
        let __arg1_discr = ::core::intrinsics::discriminant_value(other);
        __self_discr == __arg1_discr &&
            match (self, other) {
                (DllCallingConvention::Stdcall(__self_0),
                    DllCallingConvention::Stdcall(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (DllCallingConvention::Fastcall(__self_0),
                    DllCallingConvention::Fastcall(__arg1_0)) =>
                    __self_0 == __arg1_0,
                (DllCallingConvention::Vectorcall(__self_0),
                    DllCallingConvention::Vectorcall(__arg1_0)) =>
                    __self_0 == __arg1_0,
                _ => true,
            }
    }
}PartialEq, #[automatically_derived]
impl ::core::fmt::Debug for DllCallingConvention {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            DllCallingConvention::C =>
                ::core::fmt::Formatter::write_str(f, "C"),
            DllCallingConvention::Stdcall(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Stdcall", &__self_0),
            DllCallingConvention::Fastcall(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Fastcall", &__self_0),
            DllCallingConvention::Vectorcall(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f,
                    "Vectorcall", &__self_0),
        }
    }
}Debug, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for DllCallingConvention {
            fn encode(&self, __encoder: &mut __E) {
                let disc =
                    match *self {
                        DllCallingConvention::C => { 0usize }
                        DllCallingConvention::Stdcall(ref __binding_0) => { 1usize }
                        DllCallingConvention::Fastcall(ref __binding_0) => {
                            2usize
                        }
                        DllCallingConvention::Vectorcall(ref __binding_0) => {
                            3usize
                        }
                    };
                ::rustc_serialize::Encoder::emit_u8(__encoder, disc as u8);
                match *self {
                    DllCallingConvention::C => {}
                    DllCallingConvention::Stdcall(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    DllCallingConvention::Fastcall(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                    DllCallingConvention::Vectorcall(ref __binding_0) => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for DllCallingConvention {
            fn decode(__decoder: &mut __D) -> Self {
                match ::rustc_serialize::Decoder::read_u8(__decoder) as usize
                    {
                    0usize => { DllCallingConvention::C }
                    1usize => {
                        DllCallingConvention::Stdcall(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    2usize => {
                        DllCallingConvention::Fastcall(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    3usize => {
                        DllCallingConvention::Vectorcall(::rustc_serialize::Decodable::decode(__decoder))
                    }
                    n => {
                        ::core::panicking::panic_fmt(format_args!("invalid enum variant tag while decoding `DllCallingConvention`, expected 0..4, actual {0}",
                                n));
                    }
                }
            }
        }
    };Decodable, const _: () =
    {
        impl<__CTX> ::rustc_data_structures::stable_hasher::HashStable<__CTX>
            for DllCallingConvention where __CTX: crate::HashStableContext {
            #[inline]
            fn hash_stable(&self, __hcx: &mut __CTX,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    DllCallingConvention::C => {}
                    DllCallingConvention::Stdcall(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    DllCallingConvention::Fastcall(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    DllCallingConvention::Vectorcall(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable_Generic)]
124pub enum DllCallingConvention {
125    C,
126    Stdcall(usize),
127    Fastcall(usize),
128    Vectorcall(usize),
129}
130
131#[derive(#[automatically_derived]
impl ::core::clone::Clone for ForeignModule {
    #[inline]
    fn clone(&self) -> ForeignModule {
        ForeignModule {
            foreign_items: ::core::clone::Clone::clone(&self.foreign_items),
            def_id: ::core::clone::Clone::clone(&self.def_id),
            abi: ::core::clone::Clone::clone(&self.abi),
        }
    }
}Clone, const _: () =
    {
        impl<__E: ::rustc_span::SpanEncoder> ::rustc_serialize::Encodable<__E>
            for ForeignModule {
            fn encode(&self, __encoder: &mut __E) {
                match *self {
                    ForeignModule {
                        foreign_items: ref __binding_0,
                        def_id: ref __binding_1,
                        abi: ref __binding_2 } => {
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_0,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_1,
                            __encoder);
                        ::rustc_serialize::Encodable::<__E>::encode(__binding_2,
                            __encoder);
                    }
                }
            }
        }
    };Encodable, const _: () =
    {
        impl<__D: ::rustc_span::SpanDecoder> ::rustc_serialize::Decodable<__D>
            for ForeignModule {
            fn decode(__decoder: &mut __D) -> Self {
                ForeignModule {
                    foreign_items: ::rustc_serialize::Decodable::decode(__decoder),
                    def_id: ::rustc_serialize::Decodable::decode(__decoder),
                    abi: ::rustc_serialize::Decodable::decode(__decoder),
                }
            }
        }
    };Decodable, const _: () =
    {
        impl<__CTX> ::rustc_data_structures::stable_hasher::HashStable<__CTX>
            for ForeignModule where __CTX: crate::HashStableContext {
            #[inline]
            fn hash_stable(&self, __hcx: &mut __CTX,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    ForeignModule {
                        foreign_items: ref __binding_0,
                        def_id: ref __binding_1,
                        abi: ref __binding_2 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable_Generic, #[automatically_derived]
impl ::core::fmt::Debug for ForeignModule {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field3_finish(f, "ForeignModule",
            "foreign_items", &self.foreign_items, "def_id", &self.def_id,
            "abi", &&self.abi)
    }
}Debug)]
132pub struct ForeignModule {
133    pub foreign_items: Vec<DefId>,
134    pub def_id: DefId,
135    pub abi: ExternAbi,
136}
137
138#[derive(#[automatically_derived]
impl ::core::marker::Copy for ExternCrate { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ExternCrate {
    #[inline]
    fn clone(&self) -> ExternCrate {
        let _: ::core::clone::AssertParamIsClone<ExternCrateSource>;
        let _: ::core::clone::AssertParamIsClone<Span>;
        let _: ::core::clone::AssertParamIsClone<usize>;
        let _: ::core::clone::AssertParamIsClone<CrateNum>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ExternCrate {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        ::core::fmt::Formatter::debug_struct_field4_finish(f, "ExternCrate",
            "src", &self.src, "span", &self.span, "path_len", &self.path_len,
            "dependency_of", &&self.dependency_of)
    }
}Debug, const _: () =
    {
        impl<__CTX> ::rustc_data_structures::stable_hasher::HashStable<__CTX>
            for ExternCrate where __CTX: crate::HashStableContext {
            #[inline]
            fn hash_stable(&self, __hcx: &mut __CTX,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                match *self {
                    ExternCrate {
                        src: ref __binding_0,
                        span: ref __binding_1,
                        path_len: ref __binding_2,
                        dependency_of: ref __binding_3 } => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                        { __binding_1.hash_stable(__hcx, __hasher); }
                        { __binding_2.hash_stable(__hcx, __hasher); }
                        { __binding_3.hash_stable(__hcx, __hasher); }
                    }
                }
            }
        }
    };HashStable_Generic)]
139pub struct ExternCrate {
140    pub src: ExternCrateSource,
141
142    /// span of the extern crate that caused this to be loaded
143    pub span: Span,
144
145    /// Number of links to reach the extern;
146    /// used to select the extern with the shortest path
147    pub path_len: usize,
148
149    /// Crate that depends on this crate
150    pub dependency_of: CrateNum,
151}
152
153impl ExternCrate {
154    /// If true, then this crate is the crate named by the extern
155    /// crate referenced above. If false, then this crate is a dep
156    /// of the crate.
157    #[inline]
158    pub fn is_direct(&self) -> bool {
159        self.dependency_of == LOCAL_CRATE
160    }
161
162    #[inline]
163    pub fn rank(&self) -> impl PartialOrd {
164        // Prefer:
165        // - direct extern crate to indirect
166        // - shorter paths to longer
167        (self.is_direct(), !self.path_len)
168    }
169}
170
171#[derive(#[automatically_derived]
impl ::core::marker::Copy for ExternCrateSource { }Copy, #[automatically_derived]
impl ::core::clone::Clone for ExternCrateSource {
    #[inline]
    fn clone(&self) -> ExternCrateSource {
        let _: ::core::clone::AssertParamIsClone<DefId>;
        *self
    }
}Clone, #[automatically_derived]
impl ::core::fmt::Debug for ExternCrateSource {
    #[inline]
    fn fmt(&self, f: &mut ::core::fmt::Formatter) -> ::core::fmt::Result {
        match self {
            ExternCrateSource::Extern(__self_0) =>
                ::core::fmt::Formatter::debug_tuple_field1_finish(f, "Extern",
                    &__self_0),
            ExternCrateSource::Path =>
                ::core::fmt::Formatter::write_str(f, "Path"),
        }
    }
}Debug, const _: () =
    {
        impl<__CTX> ::rustc_data_structures::stable_hasher::HashStable<__CTX>
            for ExternCrateSource where __CTX: crate::HashStableContext {
            #[inline]
            fn hash_stable(&self, __hcx: &mut __CTX,
                __hasher:
                    &mut ::rustc_data_structures::stable_hasher::StableHasher) {
                ::std::mem::discriminant(self).hash_stable(__hcx, __hasher);
                match *self {
                    ExternCrateSource::Extern(ref __binding_0) => {
                        { __binding_0.hash_stable(__hcx, __hasher); }
                    }
                    ExternCrateSource::Path => {}
                }
            }
        }
    };HashStable_Generic)]
172pub enum ExternCrateSource {
173    /// Crate is loaded by `extern crate`.
174    Extern(
175        /// def_id of the item in the current crate that caused
176        /// this crate to be loaded; note that there could be multiple
177        /// such ids
178        DefId,
179    ),
180    /// Crate is implicitly loaded by a path resolving through extern prelude.
181    Path,
182}
183
184/// A store of Rust crates, through which their metadata can be accessed.
185///
186/// Note that this trait should probably not be expanding today. All new
187/// functionality should be driven through queries instead!
188///
189/// If you find a method on this trait named `{name}_untracked` it signifies
190/// that it's *not* tracked for dependency information throughout compilation
191/// (it'd break incremental compilation) and should only be called pre-HIR (e.g.
192/// during resolve)
193pub trait CrateStore: std::fmt::Debug {
194    fn as_any(&self) -> &dyn Any;
195    fn untracked_as_any(&mut self) -> &mut dyn Any;
196
197    // Foreign definitions.
198    // This information is safe to access, since it's hashed as part of the DefPathHash, which incr.
199    // comp. uses to identify a DefId.
200    fn def_key(&self, def: DefId) -> DefKey;
201    fn def_path(&self, def: DefId) -> DefPath;
202    fn def_path_hash(&self, def: DefId) -> DefPathHash;
203
204    // This information is safe to access, since it's hashed as part of the StableCrateId, which
205    // incr. comp. uses to identify a CrateNum.
206    fn crate_name(&self, cnum: CrateNum) -> Symbol;
207    fn stable_crate_id(&self, cnum: CrateNum) -> StableCrateId;
208}
209
210pub type CrateStoreDyn = dyn CrateStore + sync::DynSync + sync::DynSend;
211
212pub struct Untracked {
213    pub cstore: FreezeLock<Box<CrateStoreDyn>>,
214    /// Reference span for definitions.
215    pub source_span: AppendOnlyIndexVec<LocalDefId, Span>,
216    pub definitions: FreezeLock<Definitions>,
217    /// The interned [StableCrateId]s.
218    pub stable_crate_ids: FreezeLock<StableCrateIdMap>,
219}