Skip to main content

rustc_metadata/rmeta/decoder/
cstore_impl.rs

1use std::any::Any;
2use std::mem;
3use std::sync::Arc;
4
5use rustc_hir::attrs::Deprecation;
6use rustc_hir::def::{CtorKind, DefKind};
7use rustc_hir::def_id::{CrateNum, DefId, DefIdMap, LOCAL_CRATE};
8use rustc_hir::definitions::{DefKey, DefPath, DefPathHash};
9use rustc_middle::arena::ArenaAllocatable;
10use rustc_middle::bug;
11use rustc_middle::metadata::{AmbigModChild, ModChild};
12use rustc_middle::middle::exported_symbols::ExportedSymbol;
13use rustc_middle::middle::stability::DeprecationEntry;
14use rustc_middle::queries::ExternProviders;
15use rustc_middle::query::LocalCrate;
16use rustc_middle::ty::fast_reject::SimplifiedType;
17use rustc_middle::ty::{self, TyCtxt};
18use rustc_middle::util::Providers;
19use rustc_serialize::Decoder;
20use rustc_session::StableCrateId;
21use rustc_session::cstore::{CrateStore, ExternCrate};
22use rustc_span::hygiene::ExpnId;
23use rustc_span::{Span, Symbol, kw};
24
25use super::{Decodable, DecodeIterator};
26use crate::creader::{CStore, LoadedMacro};
27use crate::rmeta::AttrFlags;
28use crate::rmeta::table::IsDefault;
29use crate::{eii, foreign_modules, native_libs};
30
31trait ProcessQueryValue<'tcx, T> {
32    fn process_decoded(self, _tcx: TyCtxt<'tcx>, _err: impl Fn() -> !) -> T;
33}
34
35impl<T> ProcessQueryValue<'_, T> for T {
36    #[inline(always)]
37    fn process_decoded(self, _tcx: TyCtxt<'_>, _err: impl Fn() -> !) -> T {
38        self
39    }
40}
41
42impl<'tcx, T> ProcessQueryValue<'tcx, ty::EarlyBinder<'tcx, T>> for T {
43    #[inline(always)]
44    fn process_decoded(self, _tcx: TyCtxt<'_>, _err: impl Fn() -> !) -> ty::EarlyBinder<'tcx, T> {
45        ty::EarlyBinder::bind(self)
46    }
47}
48
49impl<T> ProcessQueryValue<'_, T> for Option<T> {
50    #[inline(always)]
51    fn process_decoded(self, _tcx: TyCtxt<'_>, err: impl Fn() -> !) -> T {
52        if let Some(value) = self { value } else { err() }
53    }
54}
55
56impl<'tcx, T: ArenaAllocatable<'tcx>> ProcessQueryValue<'tcx, &'tcx T> for Option<T> {
57    #[inline(always)]
58    fn process_decoded(self, tcx: TyCtxt<'tcx>, err: impl Fn() -> !) -> &'tcx T {
59        if let Some(value) = self { tcx.arena.alloc(value) } else { err() }
60    }
61}
62
63impl<T, E> ProcessQueryValue<'_, Result<Option<T>, E>> for Option<T> {
64    #[inline(always)]
65    fn process_decoded(self, _tcx: TyCtxt<'_>, _err: impl Fn() -> !) -> Result<Option<T>, E> {
66        Ok(self)
67    }
68}
69
70impl<'tcx, D: Decoder, T: Copy + Decodable<D>> ProcessQueryValue<'tcx, &'tcx [T]>
71    for Option<DecodeIterator<T, D>>
72{
73    #[inline(always)]
74    fn process_decoded(self, tcx: TyCtxt<'tcx>, err: impl Fn() -> !) -> &'tcx [T] {
75        if let Some(iter) = self { tcx.arena.alloc_from_iter(iter) } else { err() }
76    }
77}
78
79impl<'tcx, D: Decoder, T: Copy + Decodable<D>> ProcessQueryValue<'tcx, Option<&'tcx [T]>>
80    for Option<DecodeIterator<T, D>>
81{
82    #[inline(always)]
83    fn process_decoded(self, tcx: TyCtxt<'tcx>, _err: impl Fn() -> !) -> Option<&'tcx [T]> {
84        if let Some(iter) = self { Some(&*tcx.arena.alloc_from_iter(iter)) } else { None }
85    }
86}
87
88impl ProcessQueryValue<'_, Option<DeprecationEntry>> for Option<Deprecation> {
89    #[inline(always)]
90    fn process_decoded(self, _tcx: TyCtxt<'_>, _err: impl Fn() -> !) -> Option<DeprecationEntry> {
91        self.map(DeprecationEntry::external)
92    }
93}
94
95macro_rules! provide_one {
96    ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident, $name:ident => { table }) => {
97        provide_one! {
98            $tcx, $def_id, $other, $cdata, $name => {
99                $cdata
100                    .root
101                    .tables
102                    .$name
103                    .get($cdata, $def_id.index)
104                    .map(|lazy| lazy.decode(($cdata, $tcx)))
105                    .process_decoded($tcx, || panic!("{:?} does not have a {:?}", $def_id, stringify!($name)))
106            }
107        }
108    };
109    ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident, $name:ident => { table_defaulted_array }) => {
110        provide_one! {
111            $tcx, $def_id, $other, $cdata, $name => {
112                let lazy = $cdata.root.tables.$name.get($cdata, $def_id.index);
113                let value = if lazy.is_default() {
114                    &[] as &[_]
115                } else {
116                    $tcx.arena.alloc_from_iter(lazy.decode(($cdata, $tcx)))
117                };
118                value.process_decoded($tcx, || panic!("{:?} does not have a {:?}", $def_id, stringify!($name)))
119            }
120        }
121    };
122    ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident, $name:ident => { table_direct }) => {
123        provide_one! {
124            $tcx, $def_id, $other, $cdata, $name => {
125                // We don't decode `table_direct`, since it's not a Lazy, but an actual value
126                $cdata
127                    .root
128                    .tables
129                    .$name
130                    .get($cdata, $def_id.index)
131                    .process_decoded($tcx, || panic!("{:?} does not have a {:?}", $def_id, stringify!($name)))
132            }
133        }
134    };
135    ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident, $name:ident => $compute:block) => {
136        fn $name<'tcx>(
137            $tcx: TyCtxt<'tcx>,
138            def_id_arg: rustc_middle::queries::$name::Key<'tcx>,
139        ) -> rustc_middle::queries::$name::ProvidedValue<'tcx> {
140            let _prof_timer =
141                $tcx.prof.generic_activity(concat!("metadata_decode_entry_", stringify!($name)));
142
143            #[allow(unused_variables)]
144            let ($def_id, $other) = def_id_arg.into_args();
145            assert!(!$def_id.is_local());
146
147            // External query providers call `crate_hash` in order to register a dependency
148            // on the crate metadata. The exception is `crate_hash` itself, which obviously
149            // doesn't need to do this (and can't, as it would cause a query cycle).
150            use rustc_middle::dep_graph::DepKind;
151            if DepKind::$name != DepKind::crate_hash && $tcx.dep_graph.is_fully_enabled() {
152                $tcx.ensure_ok().crate_hash($def_id.krate);
153            }
154
155            let cstore = CStore::from_tcx($tcx);
156            let $cdata = cstore.get_crate_data($def_id.krate);
157
158            $compute
159        }
160    };
161}
162
163macro_rules! provide {
164    ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident,
165      $($name:ident => { $($compute:tt)* })*) => {
166        fn provide_extern(providers: &mut ExternProviders) {
167            $(provide_one! {
168                $tcx, $def_id, $other, $cdata, $name => { $($compute)* }
169            })*
170
171            *providers = ExternProviders {
172                $($name,)*
173                ..*providers
174            };
175        }
176    }
177}
178
179// small trait to work around different signature queries all being defined via
180// the macro above.
181trait IntoArgs {
182    type Other;
183    fn into_args(self) -> (DefId, Self::Other);
184}
185
186impl IntoArgs for DefId {
187    type Other = ();
188    fn into_args(self) -> (DefId, ()) {
189        (self, ())
190    }
191}
192
193impl IntoArgs for CrateNum {
194    type Other = ();
195    fn into_args(self) -> (DefId, ()) {
196        (self.as_def_id(), ())
197    }
198}
199
200impl IntoArgs for (CrateNum, DefId) {
201    type Other = DefId;
202    fn into_args(self) -> (DefId, DefId) {
203        (self.0.as_def_id(), self.1)
204    }
205}
206
207impl<'tcx> IntoArgs for ty::InstanceKind<'tcx> {
208    type Other = ();
209    fn into_args(self) -> (DefId, ()) {
210        (self.def_id(), ())
211    }
212}
213
214impl IntoArgs for (CrateNum, SimplifiedType) {
215    type Other = SimplifiedType;
216    fn into_args(self) -> (DefId, SimplifiedType) {
217        (self.0.as_def_id(), self.1)
218    }
219}
220
221fn provide_extern(providers: &mut ExternProviders) {
    fn explicit_item_bounds<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::explicit_item_bounds::Key<'tcx>)
        -> rustc_middle::queries::explicit_item_bounds::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_explicit_item_bounds");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::explicit_item_bounds != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            let lazy =
                cdata.root.tables.explicit_item_bounds.get(cdata,
                    def_id.index);
            let value =
                if lazy.is_default() {
                    &[] as &[_]
                } else {
                    tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
                };
            value.process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "explicit_item_bounds"));
                    })
        }
    }
    fn explicit_item_self_bounds<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::explicit_item_self_bounds::Key<'tcx>)
        ->
            rustc_middle::queries::explicit_item_self_bounds::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_explicit_item_self_bounds");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::explicit_item_self_bounds != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            let lazy =
                cdata.root.tables.explicit_item_self_bounds.get(cdata,
                    def_id.index);
            let value =
                if lazy.is_default() {
                    &[] as &[_]
                } else {
                    tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
                };
            value.process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "explicit_item_self_bounds"));
                    })
        }
    }
    fn explicit_predicates_of<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::explicit_predicates_of::Key<'tcx>)
        ->
            rustc_middle::queries::explicit_predicates_of::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_explicit_predicates_of");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::explicit_predicates_of != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.explicit_predicates_of.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "explicit_predicates_of"));
                    })
        }
    }
    fn generics_of<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::generics_of::Key<'tcx>)
        -> rustc_middle::queries::generics_of::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_generics_of");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::generics_of != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.generics_of.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "generics_of"));
                    })
        }
    }
    fn inferred_outlives_of<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::inferred_outlives_of::Key<'tcx>)
        -> rustc_middle::queries::inferred_outlives_of::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_inferred_outlives_of");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::inferred_outlives_of != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            let lazy =
                cdata.root.tables.inferred_outlives_of.get(cdata,
                    def_id.index);
            let value =
                if lazy.is_default() {
                    &[] as &[_]
                } else {
                    tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
                };
            value.process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "inferred_outlives_of"));
                    })
        }
    }
    fn explicit_super_predicates_of<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::explicit_super_predicates_of::Key<'tcx>)
        ->
            rustc_middle::queries::explicit_super_predicates_of::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_explicit_super_predicates_of");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::explicit_super_predicates_of != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            let lazy =
                cdata.root.tables.explicit_super_predicates_of.get(cdata,
                    def_id.index);
            let value =
                if lazy.is_default() {
                    &[] as &[_]
                } else {
                    tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
                };
            value.process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "explicit_super_predicates_of"));
                    })
        }
    }
    fn explicit_implied_predicates_of<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::explicit_implied_predicates_of::Key<'tcx>)
        ->
            rustc_middle::queries::explicit_implied_predicates_of::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_explicit_implied_predicates_of");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::explicit_implied_predicates_of != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            let lazy =
                cdata.root.tables.explicit_implied_predicates_of.get(cdata,
                    def_id.index);
            let value =
                if lazy.is_default() {
                    &[] as &[_]
                } else {
                    tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
                };
            value.process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "explicit_implied_predicates_of"));
                    })
        }
    }
    fn type_of<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::type_of::Key<'tcx>)
        -> rustc_middle::queries::type_of::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_type_of");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::type_of != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.type_of.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "type_of"));
                    })
        }
    }
    fn type_alias_is_lazy<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::type_alias_is_lazy::Key<'tcx>)
        -> rustc_middle::queries::type_alias_is_lazy::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_type_alias_is_lazy");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::type_alias_is_lazy != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.type_alias_is_lazy.get(cdata,
                    def_id.index).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "type_alias_is_lazy"));
                    })
        }
    }
    fn variances_of<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::variances_of::Key<'tcx>)
        -> rustc_middle::queries::variances_of::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_variances_of");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::variances_of != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.variances_of.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "variances_of"));
                    })
        }
    }
    fn fn_sig<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::fn_sig::Key<'tcx>)
        -> rustc_middle::queries::fn_sig::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_fn_sig");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::fn_sig != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.fn_sig.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "fn_sig"));
                    })
        }
    }
    fn codegen_fn_attrs<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::codegen_fn_attrs::Key<'tcx>)
        -> rustc_middle::queries::codegen_fn_attrs::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_codegen_fn_attrs");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::codegen_fn_attrs != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.codegen_fn_attrs.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "codegen_fn_attrs"));
                    })
        }
    }
    fn impl_trait_header<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::impl_trait_header::Key<'tcx>)
        -> rustc_middle::queries::impl_trait_header::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_impl_trait_header");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::impl_trait_header != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.impl_trait_header.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "impl_trait_header"));
                    })
        }
    }
    fn const_param_default<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::const_param_default::Key<'tcx>)
        -> rustc_middle::queries::const_param_default::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_const_param_default");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::const_param_default != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.const_param_default.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "const_param_default"));
                    })
        }
    }
    fn object_lifetime_default<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::object_lifetime_default::Key<'tcx>)
        ->
            rustc_middle::queries::object_lifetime_default::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_object_lifetime_default");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::object_lifetime_default != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.object_lifetime_default.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "object_lifetime_default"));
                    })
        }
    }
    fn thir_abstract_const<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::thir_abstract_const::Key<'tcx>)
        -> rustc_middle::queries::thir_abstract_const::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_thir_abstract_const");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::thir_abstract_const != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.thir_abstract_const.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "thir_abstract_const"));
                    })
        }
    }
    fn optimized_mir<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::optimized_mir::Key<'tcx>)
        -> rustc_middle::queries::optimized_mir::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_optimized_mir");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::optimized_mir != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.optimized_mir.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "optimized_mir"));
                    })
        }
    }
    fn mir_for_ctfe<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::mir_for_ctfe::Key<'tcx>)
        -> rustc_middle::queries::mir_for_ctfe::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_mir_for_ctfe");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::mir_for_ctfe != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.mir_for_ctfe.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "mir_for_ctfe"));
                    })
        }
    }
    fn trivial_const<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::trivial_const::Key<'tcx>)
        -> rustc_middle::queries::trivial_const::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_trivial_const");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::trivial_const != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.trivial_const.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "trivial_const"));
                    })
        }
    }
    fn closure_saved_names_of_captured_variables<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::closure_saved_names_of_captured_variables::Key<'tcx>)
        ->
            rustc_middle::queries::closure_saved_names_of_captured_variables::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_closure_saved_names_of_captured_variables");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::closure_saved_names_of_captured_variables !=
                    DepKind::crate_hash && tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.closure_saved_names_of_captured_variables.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "closure_saved_names_of_captured_variables"));
                    })
        }
    }
    fn mir_coroutine_witnesses<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::mir_coroutine_witnesses::Key<'tcx>)
        ->
            rustc_middle::queries::mir_coroutine_witnesses::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_mir_coroutine_witnesses");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::mir_coroutine_witnesses != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.mir_coroutine_witnesses.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "mir_coroutine_witnesses"));
                    })
        }
    }
    fn promoted_mir<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::promoted_mir::Key<'tcx>)
        -> rustc_middle::queries::promoted_mir::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_promoted_mir");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::promoted_mir != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.promoted_mir.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "promoted_mir"));
                    })
        }
    }
    fn def_span<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::def_span::Key<'tcx>)
        -> rustc_middle::queries::def_span::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_def_span");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::def_span != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.def_span.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "def_span"));
                    })
        }
    }
    fn def_ident_span<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::def_ident_span::Key<'tcx>)
        -> rustc_middle::queries::def_ident_span::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_def_ident_span");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::def_ident_span != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.def_ident_span.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "def_ident_span"));
                    })
        }
    }
    fn lookup_stability<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::lookup_stability::Key<'tcx>)
        -> rustc_middle::queries::lookup_stability::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_lookup_stability");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::lookup_stability != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.lookup_stability.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "lookup_stability"));
                    })
        }
    }
    fn lookup_const_stability<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::lookup_const_stability::Key<'tcx>)
        ->
            rustc_middle::queries::lookup_const_stability::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_lookup_const_stability");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::lookup_const_stability != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.lookup_const_stability.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "lookup_const_stability"));
                    })
        }
    }
    fn lookup_default_body_stability<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::lookup_default_body_stability::Key<'tcx>)
        ->
            rustc_middle::queries::lookup_default_body_stability::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_lookup_default_body_stability");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::lookup_default_body_stability != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.lookup_default_body_stability.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "lookup_default_body_stability"));
                    })
        }
    }
    fn lookup_deprecation_entry<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::lookup_deprecation_entry::Key<'tcx>)
        ->
            rustc_middle::queries::lookup_deprecation_entry::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_lookup_deprecation_entry");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::lookup_deprecation_entry != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.lookup_deprecation_entry.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "lookup_deprecation_entry"));
                    })
        }
    }
    fn params_in_repr<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::params_in_repr::Key<'tcx>)
        -> rustc_middle::queries::params_in_repr::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_params_in_repr");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::params_in_repr != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.params_in_repr.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "params_in_repr"));
                    })
        }
    }
    fn def_kind<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::def_kind::Key<'tcx>)
        -> rustc_middle::queries::def_kind::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_def_kind");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::def_kind != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.def_kind(def_id.index) }
    }
    fn impl_parent<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::impl_parent::Key<'tcx>)
        -> rustc_middle::queries::impl_parent::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_impl_parent");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::impl_parent != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.impl_parent.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "impl_parent"));
                    })
        }
    }
    fn defaultness<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::defaultness::Key<'tcx>)
        -> rustc_middle::queries::defaultness::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_defaultness");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::defaultness != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.defaultness.get(cdata,
                    def_id.index).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "defaultness"));
                    })
        }
    }
    fn constness<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::constness::Key<'tcx>)
        -> rustc_middle::queries::constness::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_constness");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::constness != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.constness.get(cdata,
                    def_id.index).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "constness"));
                    })
        }
    }
    fn const_conditions<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::const_conditions::Key<'tcx>)
        -> rustc_middle::queries::const_conditions::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_const_conditions");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::const_conditions != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.const_conditions.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "const_conditions"));
                    })
        }
    }
    fn explicit_implied_const_bounds<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::explicit_implied_const_bounds::Key<'tcx>)
        ->
            rustc_middle::queries::explicit_implied_const_bounds::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_explicit_implied_const_bounds");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::explicit_implied_const_bounds != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            let lazy =
                cdata.root.tables.explicit_implied_const_bounds.get(cdata,
                    def_id.index);
            let value =
                if lazy.is_default() {
                    &[] as &[_]
                } else {
                    tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
                };
            value.process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "explicit_implied_const_bounds"));
                    })
        }
    }
    fn coerce_unsized_info<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::coerce_unsized_info::Key<'tcx>)
        -> rustc_middle::queries::coerce_unsized_info::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_coerce_unsized_info");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::coerce_unsized_info != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            Ok(cdata.root.tables.coerce_unsized_info.get(cdata,
                            def_id.index).map(|lazy|
                            lazy.decode((cdata,
                                    tcx))).process_decoded(tcx,
                    ||
                        {
                            ::core::panicking::panic_fmt(format_args!("{0:?} does not have coerce_unsized_info",
                                    def_id));
                        }))
        }
    }
    fn mir_const_qualif<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::mir_const_qualif::Key<'tcx>)
        -> rustc_middle::queries::mir_const_qualif::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_mir_const_qualif");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::mir_const_qualif != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.mir_const_qualif.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "mir_const_qualif"));
                    })
        }
    }
    fn rendered_const<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::rendered_const::Key<'tcx>)
        -> rustc_middle::queries::rendered_const::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_rendered_const");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::rendered_const != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.rendered_const.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "rendered_const"));
                    })
        }
    }
    fn rendered_precise_capturing_args<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::rendered_precise_capturing_args::Key<'tcx>)
        ->
            rustc_middle::queries::rendered_precise_capturing_args::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_rendered_precise_capturing_args");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::rendered_precise_capturing_args != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.rendered_precise_capturing_args.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "rendered_precise_capturing_args"));
                    })
        }
    }
    fn asyncness<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::asyncness::Key<'tcx>)
        -> rustc_middle::queries::asyncness::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_asyncness");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::asyncness != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.asyncness.get(cdata,
                    def_id.index).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "asyncness"));
                    })
        }
    }
    fn fn_arg_idents<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::fn_arg_idents::Key<'tcx>)
        -> rustc_middle::queries::fn_arg_idents::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_fn_arg_idents");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::fn_arg_idents != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.fn_arg_idents.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "fn_arg_idents"));
                    })
        }
    }
    fn coroutine_kind<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::coroutine_kind::Key<'tcx>)
        -> rustc_middle::queries::coroutine_kind::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_coroutine_kind");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::coroutine_kind != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.coroutine_kind.get(cdata,
                    def_id.index).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "coroutine_kind"));
                    })
        }
    }
    fn coroutine_for_closure<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::coroutine_for_closure::Key<'tcx>)
        -> rustc_middle::queries::coroutine_for_closure::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_coroutine_for_closure");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::coroutine_for_closure != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.coroutine_for_closure.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "coroutine_for_closure"));
                    })
        }
    }
    fn coroutine_by_move_body_def_id<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::coroutine_by_move_body_def_id::Key<'tcx>)
        ->
            rustc_middle::queries::coroutine_by_move_body_def_id::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_coroutine_by_move_body_def_id");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::coroutine_by_move_body_def_id != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.coroutine_by_move_body_def_id.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "coroutine_by_move_body_def_id"));
                    })
        }
    }
    fn eval_static_initializer<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::eval_static_initializer::Key<'tcx>)
        ->
            rustc_middle::queries::eval_static_initializer::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_eval_static_initializer");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::eval_static_initializer != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            Ok(cdata.root.tables.eval_static_initializer.get(cdata,
                            def_id.index).map(|lazy|
                            lazy.decode((cdata,
                                    tcx))).unwrap_or_else(||
                        {
                            ::core::panicking::panic_fmt(format_args!("{0:?} does not have eval_static_initializer",
                                    def_id));
                        }))
        }
    }
    fn trait_def<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::trait_def::Key<'tcx>)
        -> rustc_middle::queries::trait_def::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_trait_def");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::trait_def != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.trait_def.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "trait_def"));
                    })
        }
    }
    fn deduced_param_attrs<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::deduced_param_attrs::Key<'tcx>)
        -> rustc_middle::queries::deduced_param_attrs::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_deduced_param_attrs");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::deduced_param_attrs != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.deduced_param_attrs.get(cdata,
                        def_id.index).map(|lazy|
                        {
                            &*tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
                        }).unwrap_or_default()
        }
    }
    fn opaque_ty_origin<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::opaque_ty_origin::Key<'tcx>)
        -> rustc_middle::queries::opaque_ty_origin::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_opaque_ty_origin");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::opaque_ty_origin != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.opaque_ty_origin.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "opaque_ty_origin"));
                    })
        }
    }
    fn assumed_wf_types_for_rpitit<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::assumed_wf_types_for_rpitit::Key<'tcx>)
        ->
            rustc_middle::queries::assumed_wf_types_for_rpitit::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_assumed_wf_types_for_rpitit");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::assumed_wf_types_for_rpitit != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.assumed_wf_types_for_rpitit.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "assumed_wf_types_for_rpitit"));
                    })
        }
    }
    fn collect_return_position_impl_trait_in_trait_tys<'tcx>(tcx:
            TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::collect_return_position_impl_trait_in_trait_tys::Key<'tcx>)
        ->
            rustc_middle::queries::collect_return_position_impl_trait_in_trait_tys::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_collect_return_position_impl_trait_in_trait_tys");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::collect_return_position_impl_trait_in_trait_tys !=
                    DepKind::crate_hash && tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            Ok(cdata.root.tables.trait_impl_trait_tys.get(cdata,
                            def_id.index).map(|lazy|
                            lazy.decode((cdata,
                                    tcx))).process_decoded(tcx,
                    ||
                        {
                            ::core::panicking::panic_fmt(format_args!("{0:?} does not have trait_impl_trait_tys",
                                    def_id));
                        }))
        }
    }
    fn associated_types_for_impl_traits_in_trait_or_impl<'tcx>(tcx:
            TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::associated_types_for_impl_traits_in_trait_or_impl::Key<'tcx>)
        ->
            rustc_middle::queries::associated_types_for_impl_traits_in_trait_or_impl::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_associated_types_for_impl_traits_in_trait_or_impl");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::associated_types_for_impl_traits_in_trait_or_impl !=
                    DepKind::crate_hash && tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.associated_types_for_impl_traits_in_trait_or_impl.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id,
                                "associated_types_for_impl_traits_in_trait_or_impl"));
                    })
        }
    }
    fn visibility<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::visibility::Key<'tcx>)
        -> rustc_middle::queries::visibility::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_visibility");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::visibility != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_visibility(tcx, def_id.index) }
    }
    fn adt_def<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::adt_def::Key<'tcx>)
        -> rustc_middle::queries::adt_def::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_adt_def");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::adt_def != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_adt_def(tcx, def_id.index) }
    }
    fn adt_destructor<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::adt_destructor::Key<'tcx>)
        -> rustc_middle::queries::adt_destructor::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_adt_destructor");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::adt_destructor != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.adt_destructor.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "adt_destructor"));
                    })
        }
    }
    fn adt_async_destructor<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::adt_async_destructor::Key<'tcx>)
        -> rustc_middle::queries::adt_async_destructor::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_adt_async_destructor");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::adt_async_destructor != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.adt_async_destructor.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "adt_async_destructor"));
                    })
        }
    }
    fn associated_item_def_ids<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::associated_item_def_ids::Key<'tcx>)
        ->
            rustc_middle::queries::associated_item_def_ids::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_associated_item_def_ids");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::associated_item_def_ids != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            tcx.arena.alloc_from_iter(cdata.get_associated_item_or_field_def_ids(tcx,
                    def_id.index))
        }
    }
    fn associated_item<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::associated_item::Key<'tcx>)
        -> rustc_middle::queries::associated_item::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_associated_item");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::associated_item != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_associated_item(tcx, def_id.index) }
    }
    fn inherent_impls<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::inherent_impls::Key<'tcx>)
        -> rustc_middle::queries::inherent_impls::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_inherent_impls");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::inherent_impls != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_inherent_implementations_for_type(tcx, def_id.index) }
    }
    fn attrs_for_def<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::attrs_for_def::Key<'tcx>)
        -> rustc_middle::queries::attrs_for_def::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_attrs_for_def");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::attrs_for_def != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { tcx.arena.alloc_from_iter(cdata.get_item_attrs(tcx, def_id.index)) }
    }
    fn is_mir_available<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::is_mir_available::Key<'tcx>)
        -> rustc_middle::queries::is_mir_available::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_is_mir_available");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::is_mir_available != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.is_item_mir_available(def_id.index) }
    }
    fn cross_crate_inlinable<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::cross_crate_inlinable::Key<'tcx>)
        -> rustc_middle::queries::cross_crate_inlinable::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_cross_crate_inlinable");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::cross_crate_inlinable != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.cross_crate_inlinable.get(cdata,
                    def_id.index).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "cross_crate_inlinable"));
                    })
        }
    }
    fn dylib_dependency_formats<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::dylib_dependency_formats::Key<'tcx>)
        ->
            rustc_middle::queries::dylib_dependency_formats::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_dylib_dependency_formats");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::dylib_dependency_formats != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_dylib_dependency_formats(tcx) }
    }
    fn is_private_dep<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::is_private_dep::Key<'tcx>)
        -> rustc_middle::queries::is_private_dep::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_is_private_dep");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::is_private_dep != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.private_dep }
    }
    fn is_panic_runtime<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::is_panic_runtime::Key<'tcx>)
        -> rustc_middle::queries::is_panic_runtime::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_is_panic_runtime");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::is_panic_runtime != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.panic_runtime }
    }
    fn is_compiler_builtins<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::is_compiler_builtins::Key<'tcx>)
        -> rustc_middle::queries::is_compiler_builtins::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_is_compiler_builtins");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::is_compiler_builtins != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.compiler_builtins }
    }
    fn has_global_allocator<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::has_global_allocator::Key<'tcx>)
        -> rustc_middle::queries::has_global_allocator::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_has_global_allocator");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::has_global_allocator != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.has_global_allocator }
    }
    fn has_alloc_error_handler<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::has_alloc_error_handler::Key<'tcx>)
        ->
            rustc_middle::queries::has_alloc_error_handler::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_has_alloc_error_handler");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::has_alloc_error_handler != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.has_alloc_error_handler }
    }
    fn has_panic_handler<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::has_panic_handler::Key<'tcx>)
        -> rustc_middle::queries::has_panic_handler::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_has_panic_handler");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::has_panic_handler != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.has_panic_handler }
    }
    fn externally_implementable_items<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::externally_implementable_items::Key<'tcx>)
        ->
            rustc_middle::queries::externally_implementable_items::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_externally_implementable_items");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::externally_implementable_items != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.get_externally_implementable_items(tcx).map(|(decl_did,
                            (decl, impls))|
                        (decl_did, (decl, impls.into_iter().collect()))).collect()
        }
    }
    fn is_profiler_runtime<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::is_profiler_runtime::Key<'tcx>)
        -> rustc_middle::queries::is_profiler_runtime::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_is_profiler_runtime");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::is_profiler_runtime != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.profiler_runtime }
    }
    fn required_panic_strategy<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::required_panic_strategy::Key<'tcx>)
        ->
            rustc_middle::queries::required_panic_strategy::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_required_panic_strategy");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::required_panic_strategy != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.required_panic_strategy }
    }
    fn panic_in_drop_strategy<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::panic_in_drop_strategy::Key<'tcx>)
        ->
            rustc_middle::queries::panic_in_drop_strategy::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_panic_in_drop_strategy");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::panic_in_drop_strategy != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.panic_in_drop_strategy }
    }
    fn extern_crate<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::extern_crate::Key<'tcx>)
        -> rustc_middle::queries::extern_crate::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_extern_crate");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::extern_crate != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.extern_crate.map(|c| &*tcx.arena.alloc(c)) }
    }
    fn is_no_builtins<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::is_no_builtins::Key<'tcx>)
        -> rustc_middle::queries::is_no_builtins::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_is_no_builtins");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::is_no_builtins != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.no_builtins }
    }
    fn symbol_mangling_version<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::symbol_mangling_version::Key<'tcx>)
        ->
            rustc_middle::queries::symbol_mangling_version::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_symbol_mangling_version");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::symbol_mangling_version != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.symbol_mangling_version }
    }
    fn specialization_enabled_in<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::specialization_enabled_in::Key<'tcx>)
        ->
            rustc_middle::queries::specialization_enabled_in::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_specialization_enabled_in");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::specialization_enabled_in != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.specialization_enabled_in }
    }
    fn reachable_non_generics<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::reachable_non_generics::Key<'tcx>)
        ->
            rustc_middle::queries::reachable_non_generics::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_reachable_non_generics");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::reachable_non_generics != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            let reachable_non_generics =
                tcx.exported_non_generic_symbols(cdata.cnum).iter().filter_map(|&(exported_symbol,
                                export_info)|
                            {
                                if let ExportedSymbol::NonGeneric(def_id) = exported_symbol
                                    {
                                    Some((def_id, export_info))
                                } else { None }
                            }).collect();
            reachable_non_generics
        }
    }
    fn native_libraries<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::native_libraries::Key<'tcx>)
        -> rustc_middle::queries::native_libraries::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_native_libraries");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::native_libraries != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_native_libraries(tcx).collect() }
    }
    fn foreign_modules<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::foreign_modules::Key<'tcx>)
        -> rustc_middle::queries::foreign_modules::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_foreign_modules");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::foreign_modules != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_foreign_modules(tcx).map(|m| (m.def_id, m)).collect() }
    }
    fn crate_hash<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::crate_hash::Key<'tcx>)
        -> rustc_middle::queries::crate_hash::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_crate_hash");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::crate_hash != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.header.hash }
    }
    fn crate_host_hash<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::crate_host_hash::Key<'tcx>)
        -> rustc_middle::queries::crate_host_hash::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_crate_host_hash");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::crate_host_hash != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.host_hash }
    }
    fn crate_name<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::crate_name::Key<'tcx>)
        -> rustc_middle::queries::crate_name::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_crate_name");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::crate_name != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.header.name }
    }
    fn num_extern_def_ids<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::num_extern_def_ids::Key<'tcx>)
        -> rustc_middle::queries::num_extern_def_ids::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_num_extern_def_ids");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::num_extern_def_ids != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.num_def_ids() }
    }
    fn extra_filename<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::extra_filename::Key<'tcx>)
        -> rustc_middle::queries::extra_filename::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_extra_filename");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::extra_filename != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.root.extra_filename.clone() }
    }
    fn traits<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::traits::Key<'tcx>)
        -> rustc_middle::queries::traits::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_traits");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::traits != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { tcx.arena.alloc_from_iter(cdata.get_traits(tcx)) }
    }
    fn trait_impls_in_crate<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::trait_impls_in_crate::Key<'tcx>)
        -> rustc_middle::queries::trait_impls_in_crate::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_trait_impls_in_crate");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::trait_impls_in_crate != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { tcx.arena.alloc_from_iter(cdata.get_trait_impls(tcx)) }
    }
    fn implementations_of_trait<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::implementations_of_trait::Key<'tcx>)
        ->
            rustc_middle::queries::implementations_of_trait::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_implementations_of_trait");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::implementations_of_trait != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_implementations_of_trait(tcx, other) }
    }
    fn crate_incoherent_impls<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::crate_incoherent_impls::Key<'tcx>)
        ->
            rustc_middle::queries::crate_incoherent_impls::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_crate_incoherent_impls");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::crate_incoherent_impls != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_incoherent_impls(tcx, other) }
    }
    fn crate_dep_kind<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::crate_dep_kind::Key<'tcx>)
        -> rustc_middle::queries::crate_dep_kind::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_crate_dep_kind");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::crate_dep_kind != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.dep_kind }
    }
    fn module_children<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::module_children::Key<'tcx>)
        -> rustc_middle::queries::module_children::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_module_children");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::module_children != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            tcx.arena.alloc_from_iter(cdata.get_module_children(tcx,
                    def_id.index))
        }
    }
    fn lib_features<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::lib_features::Key<'tcx>)
        -> rustc_middle::queries::lib_features::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_lib_features");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::lib_features != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_lib_features(tcx) }
    }
    fn stability_implications<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::stability_implications::Key<'tcx>)
        ->
            rustc_middle::queries::stability_implications::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_stability_implications");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::stability_implications != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_stability_implications(tcx).iter().copied().collect() }
    }
    fn stripped_cfg_items<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::stripped_cfg_items::Key<'tcx>)
        -> rustc_middle::queries::stripped_cfg_items::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_stripped_cfg_items");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::stripped_cfg_items != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_stripped_cfg_items(tcx, cdata.cnum) }
    }
    fn intrinsic_raw<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::intrinsic_raw::Key<'tcx>)
        -> rustc_middle::queries::intrinsic_raw::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_intrinsic_raw");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::intrinsic_raw != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_intrinsic(tcx, def_id.index) }
    }
    fn defined_lang_items<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::defined_lang_items::Key<'tcx>)
        -> rustc_middle::queries::defined_lang_items::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_defined_lang_items");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::defined_lang_items != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_lang_items(tcx) }
    }
    fn diagnostic_items<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::diagnostic_items::Key<'tcx>)
        -> rustc_middle::queries::diagnostic_items::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_diagnostic_items");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::diagnostic_items != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_diagnostic_items(tcx) }
    }
    fn missing_lang_items<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::missing_lang_items::Key<'tcx>)
        -> rustc_middle::queries::missing_lang_items::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_missing_lang_items");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::missing_lang_items != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_missing_lang_items(tcx) }
    }
    fn missing_extern_crate_item<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::missing_extern_crate_item::Key<'tcx>)
        ->
            rustc_middle::queries::missing_extern_crate_item::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_missing_extern_crate_item");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::missing_extern_crate_item != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {

            #[allow(non_exhaustive_omitted_patterns)]
            match cdata.extern_crate {
                Some(extern_crate) if !extern_crate.is_direct() => true,
                _ => false,
            }
        }
    }
    fn used_crate_source<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::used_crate_source::Key<'tcx>)
        -> rustc_middle::queries::used_crate_source::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_used_crate_source");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::used_crate_source != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { Arc::clone(&cdata.source) }
    }
    fn debugger_visualizers<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::debugger_visualizers::Key<'tcx>)
        -> rustc_middle::queries::debugger_visualizers::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_debugger_visualizers");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::debugger_visualizers != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_debugger_visualizers(tcx) }
    }
    fn exportable_items<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::exportable_items::Key<'tcx>)
        -> rustc_middle::queries::exportable_items::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_exportable_items");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::exportable_items != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { tcx.arena.alloc_from_iter(cdata.get_exportable_items(tcx)) }
    }
    fn stable_order_of_exportable_impls<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::stable_order_of_exportable_impls::Key<'tcx>)
        ->
            rustc_middle::queries::stable_order_of_exportable_impls::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_stable_order_of_exportable_impls");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::stable_order_of_exportable_impls != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            tcx.arena.alloc(cdata.get_stable_order_of_exportable_impls(tcx).collect())
        }
    }
    fn exported_non_generic_symbols<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::exported_non_generic_symbols::Key<'tcx>)
        ->
            rustc_middle::queries::exported_non_generic_symbols::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_exported_non_generic_symbols");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::exported_non_generic_symbols != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.exported_non_generic_symbols(tcx) }
    }
    fn exported_generic_symbols<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::exported_generic_symbols::Key<'tcx>)
        ->
            rustc_middle::queries::exported_generic_symbols::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_exported_generic_symbols");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::exported_generic_symbols != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.exported_generic_symbols(tcx) }
    }
    fn crate_extern_paths<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::crate_extern_paths::Key<'tcx>)
        -> rustc_middle::queries::crate_extern_paths::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_crate_extern_paths");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::crate_extern_paths != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.source().paths().cloned().collect() }
    }
    fn expn_that_defined<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::expn_that_defined::Key<'tcx>)
        -> rustc_middle::queries::expn_that_defined::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_expn_that_defined");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::expn_that_defined != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_expn_that_defined(tcx, def_id.index) }
    }
    fn default_field<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::default_field::Key<'tcx>)
        -> rustc_middle::queries::default_field::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_default_field");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::default_field != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { cdata.get_default_field(tcx, def_id.index) }
    }
    fn is_doc_hidden<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::is_doc_hidden::Key<'tcx>)
        -> rustc_middle::queries::is_doc_hidden::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_is_doc_hidden");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::is_doc_hidden != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.get_attr_flags(def_id.index).contains(AttrFlags::IS_DOC_HIDDEN)
        }
    }
    fn doc_link_resolutions<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::doc_link_resolutions::Key<'tcx>)
        -> rustc_middle::queries::doc_link_resolutions::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_doc_link_resolutions");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::doc_link_resolutions != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        { tcx.arena.alloc(cdata.get_doc_link_resolutions(tcx, def_id.index)) }
    }
    fn doc_link_traits_in_scope<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::doc_link_traits_in_scope::Key<'tcx>)
        ->
            rustc_middle::queries::doc_link_traits_in_scope::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_doc_link_traits_in_scope");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::doc_link_traits_in_scope != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            tcx.arena.alloc_from_iter(cdata.get_doc_link_traits_in_scope(tcx,
                    def_id.index))
        }
    }
    fn anon_const_kind<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::anon_const_kind::Key<'tcx>)
        -> rustc_middle::queries::anon_const_kind::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_anon_const_kind");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::anon_const_kind != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.anon_const_kind.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "anon_const_kind"));
                    })
        }
    }
    fn const_of_item<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::const_of_item::Key<'tcx>)
        -> rustc_middle::queries::const_of_item::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_const_of_item");
        #[allow(unused_variables)]
        let (def_id, other) = def_id_arg.into_args();
        if !!def_id.is_local() {
            ::core::panicking::panic("assertion failed: !def_id.is_local()")
        };
        use rustc_middle::dep_graph::DepKind;
        if DepKind::const_of_item != DepKind::crate_hash &&
                tcx.dep_graph.is_fully_enabled() {
            tcx.ensure_ok().crate_hash(def_id.krate);
        }
        let cstore = CStore::from_tcx(tcx);
        let cdata = cstore.get_crate_data(def_id.krate);
        {
            cdata.root.tables.const_of_item.get(cdata,
                        def_id.index).map(|lazy|
                        lazy.decode((cdata,
                                tcx))).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "const_of_item"));
                    })
        }
    }
    *providers =
        ExternProviders {
            explicit_item_bounds,
            explicit_item_self_bounds,
            explicit_predicates_of,
            generics_of,
            inferred_outlives_of,
            explicit_super_predicates_of,
            explicit_implied_predicates_of,
            type_of,
            type_alias_is_lazy,
            variances_of,
            fn_sig,
            codegen_fn_attrs,
            impl_trait_header,
            const_param_default,
            object_lifetime_default,
            thir_abstract_const,
            optimized_mir,
            mir_for_ctfe,
            trivial_const,
            closure_saved_names_of_captured_variables,
            mir_coroutine_witnesses,
            promoted_mir,
            def_span,
            def_ident_span,
            lookup_stability,
            lookup_const_stability,
            lookup_default_body_stability,
            lookup_deprecation_entry,
            params_in_repr,
            def_kind,
            impl_parent,
            defaultness,
            constness,
            const_conditions,
            explicit_implied_const_bounds,
            coerce_unsized_info,
            mir_const_qualif,
            rendered_const,
            rendered_precise_capturing_args,
            asyncness,
            fn_arg_idents,
            coroutine_kind,
            coroutine_for_closure,
            coroutine_by_move_body_def_id,
            eval_static_initializer,
            trait_def,
            deduced_param_attrs,
            opaque_ty_origin,
            assumed_wf_types_for_rpitit,
            collect_return_position_impl_trait_in_trait_tys,
            associated_types_for_impl_traits_in_trait_or_impl,
            visibility,
            adt_def,
            adt_destructor,
            adt_async_destructor,
            associated_item_def_ids,
            associated_item,
            inherent_impls,
            attrs_for_def,
            is_mir_available,
            cross_crate_inlinable,
            dylib_dependency_formats,
            is_private_dep,
            is_panic_runtime,
            is_compiler_builtins,
            has_global_allocator,
            has_alloc_error_handler,
            has_panic_handler,
            externally_implementable_items,
            is_profiler_runtime,
            required_panic_strategy,
            panic_in_drop_strategy,
            extern_crate,
            is_no_builtins,
            symbol_mangling_version,
            specialization_enabled_in,
            reachable_non_generics,
            native_libraries,
            foreign_modules,
            crate_hash,
            crate_host_hash,
            crate_name,
            num_extern_def_ids,
            extra_filename,
            traits,
            trait_impls_in_crate,
            implementations_of_trait,
            crate_incoherent_impls,
            crate_dep_kind,
            module_children,
            lib_features,
            stability_implications,
            stripped_cfg_items,
            intrinsic_raw,
            defined_lang_items,
            diagnostic_items,
            missing_lang_items,
            missing_extern_crate_item,
            used_crate_source,
            debugger_visualizers,
            exportable_items,
            stable_order_of_exportable_impls,
            exported_non_generic_symbols,
            exported_generic_symbols,
            crate_extern_paths,
            expn_that_defined,
            default_field,
            is_doc_hidden,
            doc_link_resolutions,
            doc_link_traits_in_scope,
            anon_const_kind,
            const_of_item,
            ..*providers
        };
}provide! { tcx, def_id, other, cdata,
222    explicit_item_bounds => { table_defaulted_array }
223    explicit_item_self_bounds => { table_defaulted_array }
224    explicit_predicates_of => { table }
225    generics_of => { table }
226    inferred_outlives_of => { table_defaulted_array }
227    explicit_super_predicates_of => { table_defaulted_array }
228    explicit_implied_predicates_of => { table_defaulted_array }
229    type_of => { table }
230    type_alias_is_lazy => { table_direct }
231    variances_of => { table }
232    fn_sig => { table }
233    codegen_fn_attrs => { table }
234    impl_trait_header => { table }
235    const_param_default => { table }
236    object_lifetime_default => { table }
237    thir_abstract_const => { table }
238    optimized_mir => { table }
239    mir_for_ctfe => { table }
240    trivial_const => { table }
241    closure_saved_names_of_captured_variables => { table }
242    mir_coroutine_witnesses => { table }
243    promoted_mir => { table }
244    def_span => { table }
245    def_ident_span => { table }
246    lookup_stability => { table }
247    lookup_const_stability => { table }
248    lookup_default_body_stability => { table }
249    lookup_deprecation_entry => { table }
250    params_in_repr => { table }
251    def_kind => { cdata.def_kind(def_id.index) }
252    impl_parent => { table }
253    defaultness => { table_direct }
254    constness => { table_direct }
255    const_conditions => { table }
256    explicit_implied_const_bounds => { table_defaulted_array }
257    coerce_unsized_info => {
258        Ok(cdata
259            .root
260            .tables
261            .coerce_unsized_info
262            .get(cdata, def_id.index)
263            .map(|lazy| lazy.decode((cdata, tcx)))
264            .process_decoded(tcx, || panic!("{def_id:?} does not have coerce_unsized_info"))) }
265    mir_const_qualif => { table }
266    rendered_const => { table }
267    rendered_precise_capturing_args => { table }
268    asyncness => { table_direct }
269    fn_arg_idents => { table }
270    coroutine_kind => { table_direct }
271    coroutine_for_closure => { table }
272    coroutine_by_move_body_def_id => { table }
273    eval_static_initializer => {
274        Ok(cdata
275            .root
276            .tables
277            .eval_static_initializer
278            .get(cdata, def_id.index)
279            .map(|lazy| lazy.decode((cdata, tcx)))
280            .unwrap_or_else(|| panic!("{def_id:?} does not have eval_static_initializer")))
281    }
282    trait_def => { table }
283    deduced_param_attrs => {
284        // FIXME: `deduced_param_attrs` has some sketchy encoding settings,
285        // where we don't encode unless we're optimizing, doing codegen,
286        // and not incremental (see `encoder.rs`). I don't think this is right!
287        cdata
288            .root
289            .tables
290            .deduced_param_attrs
291            .get(cdata, def_id.index)
292            .map(|lazy| {
293                &*tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
294            })
295            .unwrap_or_default()
296    }
297    opaque_ty_origin => { table }
298    assumed_wf_types_for_rpitit => { table }
299    collect_return_position_impl_trait_in_trait_tys => {
300        Ok(cdata
301            .root
302            .tables
303            .trait_impl_trait_tys
304            .get(cdata, def_id.index)
305            .map(|lazy| lazy.decode((cdata, tcx)))
306            .process_decoded(tcx, || panic!("{def_id:?} does not have trait_impl_trait_tys")))
307    }
308
309    associated_types_for_impl_traits_in_trait_or_impl => { table }
310
311    visibility => { cdata.get_visibility(tcx, def_id.index) }
312    adt_def => { cdata.get_adt_def(tcx, def_id.index) }
313    adt_destructor => { table }
314    adt_async_destructor => { table }
315    associated_item_def_ids => {
316        tcx.arena.alloc_from_iter(cdata.get_associated_item_or_field_def_ids(tcx, def_id.index))
317    }
318    associated_item => { cdata.get_associated_item(tcx, def_id.index) }
319    inherent_impls => { cdata.get_inherent_implementations_for_type(tcx, def_id.index) }
320    attrs_for_def => { tcx.arena.alloc_from_iter(cdata.get_item_attrs(tcx, def_id.index)) }
321    is_mir_available => { cdata.is_item_mir_available(def_id.index) }
322    cross_crate_inlinable => { table_direct }
323
324    dylib_dependency_formats => { cdata.get_dylib_dependency_formats(tcx) }
325    is_private_dep => { cdata.private_dep }
326    is_panic_runtime => { cdata.root.panic_runtime }
327    is_compiler_builtins => { cdata.root.compiler_builtins }
328
329    // FIXME: to be replaced with externally_implementable_items below
330    has_global_allocator => { cdata.root.has_global_allocator }
331    // FIXME: to be replaced with externally_implementable_items below
332    has_alloc_error_handler => { cdata.root.has_alloc_error_handler }
333    // FIXME: to be replaced with externally_implementable_items below
334    has_panic_handler => { cdata.root.has_panic_handler }
335
336    externally_implementable_items => {
337        cdata.get_externally_implementable_items(tcx)
338            .map(|(decl_did, (decl, impls))| (
339                decl_did,
340                (decl, impls.into_iter().collect())
341            )).collect()
342    }
343
344    is_profiler_runtime => { cdata.root.profiler_runtime }
345    required_panic_strategy => { cdata.root.required_panic_strategy }
346    panic_in_drop_strategy => { cdata.root.panic_in_drop_strategy }
347    extern_crate => { cdata.extern_crate.map(|c| &*tcx.arena.alloc(c)) }
348    is_no_builtins => { cdata.root.no_builtins }
349    symbol_mangling_version => { cdata.root.symbol_mangling_version }
350    specialization_enabled_in => { cdata.root.specialization_enabled_in }
351    reachable_non_generics => {
352        let reachable_non_generics = tcx
353            .exported_non_generic_symbols(cdata.cnum)
354            .iter()
355            .filter_map(|&(exported_symbol, export_info)| {
356                if let ExportedSymbol::NonGeneric(def_id) = exported_symbol {
357                    Some((def_id, export_info))
358                } else {
359                    None
360                }
361            })
362            .collect();
363
364        reachable_non_generics
365    }
366    native_libraries => { cdata.get_native_libraries(tcx).collect() }
367    foreign_modules => { cdata.get_foreign_modules(tcx).map(|m| (m.def_id, m)).collect() }
368    crate_hash => { cdata.root.header.hash }
369    crate_host_hash => { cdata.host_hash }
370    crate_name => { cdata.root.header.name }
371    num_extern_def_ids => { cdata.num_def_ids() }
372
373    extra_filename => { cdata.root.extra_filename.clone() }
374
375    traits => { tcx.arena.alloc_from_iter(cdata.get_traits(tcx)) }
376    trait_impls_in_crate => { tcx.arena.alloc_from_iter(cdata.get_trait_impls(tcx)) }
377    implementations_of_trait => { cdata.get_implementations_of_trait(tcx, other) }
378    crate_incoherent_impls => { cdata.get_incoherent_impls(tcx, other) }
379
380    crate_dep_kind => { cdata.dep_kind }
381    module_children => {
382        tcx.arena.alloc_from_iter(cdata.get_module_children(tcx, def_id.index))
383    }
384    lib_features => { cdata.get_lib_features(tcx) }
385    stability_implications => {
386        cdata.get_stability_implications(tcx).iter().copied().collect()
387    }
388    stripped_cfg_items => { cdata.get_stripped_cfg_items(tcx, cdata.cnum) }
389    intrinsic_raw => { cdata.get_intrinsic(tcx, def_id.index) }
390    defined_lang_items => { cdata.get_lang_items(tcx) }
391    diagnostic_items => { cdata.get_diagnostic_items(tcx) }
392    missing_lang_items => { cdata.get_missing_lang_items(tcx) }
393
394    missing_extern_crate_item => {
395        matches!(cdata.extern_crate, Some(extern_crate) if !extern_crate.is_direct())
396    }
397
398    used_crate_source => { Arc::clone(&cdata.source) }
399    debugger_visualizers => { cdata.get_debugger_visualizers(tcx) }
400
401    exportable_items => { tcx.arena.alloc_from_iter(cdata.get_exportable_items(tcx)) }
402    stable_order_of_exportable_impls => {
403        tcx.arena.alloc(cdata.get_stable_order_of_exportable_impls(tcx).collect())
404    }
405    exported_non_generic_symbols => { cdata.exported_non_generic_symbols(tcx) }
406    exported_generic_symbols => { cdata.exported_generic_symbols(tcx) }
407
408    crate_extern_paths => { cdata.source().paths().cloned().collect() }
409    expn_that_defined => { cdata.get_expn_that_defined(tcx, def_id.index) }
410    default_field => { cdata.get_default_field(tcx, def_id.index) }
411    is_doc_hidden => { cdata.get_attr_flags(def_id.index).contains(AttrFlags::IS_DOC_HIDDEN) }
412    doc_link_resolutions => { tcx.arena.alloc(cdata.get_doc_link_resolutions(tcx, def_id.index)) }
413    doc_link_traits_in_scope => {
414        tcx.arena.alloc_from_iter(cdata.get_doc_link_traits_in_scope(tcx, def_id.index))
415    }
416    anon_const_kind => { table }
417    const_of_item => { table }
418}
419
420pub(in crate::rmeta) fn provide(providers: &mut Providers) {
421    provide_cstore_hooks(providers);
422    providers.queries = rustc_middle::query::Providers {
423        allocator_kind: |tcx, ()| CStore::from_tcx(tcx).allocator_kind(),
424        alloc_error_handler_kind: |tcx, ()| CStore::from_tcx(tcx).alloc_error_handler_kind(),
425        is_private_dep: |_tcx, LocalCrate| false,
426        native_library: |tcx, id| {
427            tcx.native_libraries(id.krate)
428                .iter()
429                .filter(|lib| native_libs::relevant_lib(tcx.sess, lib))
430                .find(|lib| {
431                    let Some(fm_id) = lib.foreign_module else {
432                        return false;
433                    };
434                    let map = tcx.foreign_modules(id.krate);
435                    map.get(&fm_id)
436                        .expect("failed to find foreign module")
437                        .foreign_items
438                        .contains(&id)
439                })
440        },
441        native_libraries: native_libs::collect,
442        foreign_modules: foreign_modules::collect,
443        externally_implementable_items: eii::collect,
444
445        // Returns a map from a sufficiently visible external item (i.e., an
446        // external item that is visible from at least one local module) to a
447        // sufficiently visible parent (considering modules that re-export the
448        // external item to be parents).
449        visible_parent_map: |tcx, ()| {
450            use std::collections::hash_map::Entry;
451            use std::collections::vec_deque::VecDeque;
452
453            let mut visible_parent_map: DefIdMap<DefId> = Default::default();
454            // This is a secondary visible_parent_map, storing the DefId of
455            // parents that re-export the child as `_`, module parents
456            // which are `#[doc(hidden)]`, or `use` items that are themselves
457            // `#[doc(hidden)]`. Since we prefer paths that don't do this,
458            // merge this map at the end, only if we're missing keys from
459            // the former.
460            // This is a rudimentary check that does not catch all cases,
461            // just the easiest.
462            let mut fallback_map: Vec<(DefId, DefId)> = Default::default();
463
464            // Issue 46112: We want the map to prefer the shortest
465            // paths when reporting the path to an item. Therefore we
466            // build up the map via a breadth-first search (BFS),
467            // which naturally yields minimal-length paths.
468            //
469            // Note that it needs to be a BFS over the whole forest of
470            // crates, not just each individual crate; otherwise you
471            // only get paths that are locally minimal with respect to
472            // whatever crate we happened to encounter first in this
473            // traversal, but not globally minimal across all crates.
474            let bfs_queue = &mut VecDeque::new();
475
476            for &cnum in tcx.crates(()) {
477                // Ignore crates without a corresponding local `extern crate` item.
478                if tcx.missing_extern_crate_item(cnum) {
479                    continue;
480                }
481
482                bfs_queue.push_back(cnum.as_def_id());
483            }
484
485            let mut add_child = |bfs_queue: &mut VecDeque<_>, child: &ModChild, parent: DefId| {
486                if !child.vis.is_public() {
487                    return;
488                }
489
490                if let Some(def_id) = child.res.opt_def_id() {
491                    if child.ident.name == kw::Underscore {
492                        fallback_map.push((def_id, parent));
493                        return;
494                    }
495
496                    if tcx.is_doc_hidden(parent) {
497                        fallback_map.push((def_id, parent));
498                        return;
499                    }
500
501                    // If the re-export itself is `#[doc(hidden)]`, deprioritize it.
502                    // See PR #99698 for the case where the *parent* is doc-hidden.
503                    if child
504                        .reexport_chain
505                        .first()
506                        .and_then(|r| r.id())
507                        .is_some_and(|id| tcx.is_doc_hidden(id))
508                    {
509                        fallback_map.push((def_id, parent));
510                        return;
511                    }
512
513                    match visible_parent_map.entry(def_id) {
514                        Entry::Occupied(mut entry) => {
515                            // If `child` is defined in crate `cnum`, ensure
516                            // that it is mapped to a parent in `cnum`.
517                            if def_id.is_local() && entry.get().is_local() {
518                                entry.insert(parent);
519                            }
520                        }
521                        Entry::Vacant(entry) => {
522                            entry.insert(parent);
523                            if child.res.module_like_def_id().is_some() {
524                                bfs_queue.push_back(def_id);
525                            }
526                        }
527                    }
528                }
529            };
530
531            while let Some(def) = bfs_queue.pop_front() {
532                for child in tcx.module_children(def).iter() {
533                    add_child(bfs_queue, child, def);
534                }
535            }
536
537            // Fill in any missing entries with the less preferable path.
538            // If this path re-exports the child as `_`, we still use this
539            // path in a diagnostic that suggests importing `::*`.
540
541            for (child, parent) in fallback_map {
542                visible_parent_map.entry(child).or_insert(parent);
543            }
544
545            visible_parent_map
546        },
547
548        dependency_formats: |tcx, ()| Arc::new(crate::dependency_format::calculate(tcx)),
549        has_global_allocator: |tcx, LocalCrate| CStore::from_tcx(tcx).has_global_allocator(),
550        has_alloc_error_handler: |tcx, LocalCrate| CStore::from_tcx(tcx).has_alloc_error_handler(),
551        postorder_cnums: |tcx, ()| {
552            tcx.arena.alloc_from_iter(
553                CStore::from_tcx(tcx).crate_dependencies_in_postorder(LOCAL_CRATE).into_iter(),
554            )
555        },
556        crates: |tcx, ()| {
557            // The list of loaded crates is now frozen in query cache,
558            // so make sure cstore is not mutably accessed from here on.
559            tcx.untracked().cstore.freeze();
560            tcx.arena.alloc_from_iter(CStore::from_tcx(tcx).iter_crate_data().map(|(cnum, _)| cnum))
561        },
562        used_crates: |tcx, ()| {
563            // The list of loaded crates is now frozen in query cache,
564            // so make sure cstore is not mutably accessed from here on.
565            tcx.untracked().cstore.freeze();
566            tcx.arena.alloc_from_iter(
567                CStore::from_tcx(tcx)
568                    .iter_crate_data()
569                    .filter_map(|(cnum, data)| data.used().then_some(cnum)),
570            )
571        },
572        duplicate_crate_names: |tcx, c: CrateNum| {
573            let name = tcx.crate_name(c);
574            tcx.arena.alloc_from_iter(
575                tcx.crates(())
576                    .into_iter()
577                    .filter(|k| tcx.crate_name(**k) == name && **k != c)
578                    .map(|c| *c),
579            )
580        },
581        ..providers.queries
582    };
583    provide_extern(&mut providers.extern_queries);
584}
585
586impl CStore {
587    pub fn ctor_untracked(&self, tcx: TyCtxt<'_>, def: DefId) -> Option<(CtorKind, DefId)> {
588        self.get_crate_data(def.krate).get_ctor(tcx, def.index)
589    }
590
591    pub fn load_macro_untracked(&self, tcx: TyCtxt<'_>, id: DefId) -> LoadedMacro {
592        let sess = tcx.sess;
593        let _prof_timer = sess.prof.generic_activity("metadata_load_macro");
594
595        let cdata = self.get_crate_data(id.krate);
596        if cdata.root.is_proc_macro_crate() {
597            LoadedMacro::ProcMacro(cdata.load_proc_macro(tcx, id.index))
598        } else {
599            LoadedMacro::MacroDef {
600                def: cdata.get_macro(tcx, id.index),
601                ident: cdata.item_ident(tcx, id.index),
602                attrs: cdata.get_item_attrs(tcx, id.index).collect(),
603                span: cdata.get_span(tcx, id.index),
604                edition: cdata.root.edition,
605            }
606        }
607    }
608
609    pub fn def_span_untracked(&self, tcx: TyCtxt<'_>, def_id: DefId) -> Span {
610        self.get_crate_data(def_id.krate).get_span(tcx, def_id.index)
611    }
612
613    pub fn def_kind_untracked(&self, def: DefId) -> DefKind {
614        self.get_crate_data(def.krate).def_kind(def.index)
615    }
616
617    pub fn expn_that_defined_untracked(&self, tcx: TyCtxt<'_>, def_id: DefId) -> ExpnId {
618        self.get_crate_data(def_id.krate).get_expn_that_defined(tcx, def_id.index)
619    }
620
621    pub fn ambig_module_children_untracked(
622        &self,
623        tcx: TyCtxt<'_>,
624        def_id: DefId,
625    ) -> impl Iterator<Item = AmbigModChild> {
626        self.get_crate_data(def_id.krate).get_ambig_module_children(tcx, def_id.index)
627    }
628
629    /// Only public-facing way to traverse all the definitions in a non-local crate.
630    /// Critically useful for this third-party project: <https://github.com/hacspec/hacspec>.
631    /// See <https://github.com/rust-lang/rust/pull/85889> for context.
632    pub fn num_def_ids_untracked(&self, cnum: CrateNum) -> usize {
633        self.get_crate_data(cnum).num_def_ids()
634    }
635
636    pub fn get_proc_macro_quoted_span_untracked(
637        &self,
638        tcx: TyCtxt<'_>,
639        cnum: CrateNum,
640        id: usize,
641    ) -> Span {
642        self.get_crate_data(cnum).get_proc_macro_quoted_span(tcx, id)
643    }
644
645    pub fn set_used_recursively(&mut self, cnum: CrateNum) {
646        let cdata = self.get_crate_data_mut(cnum);
647        if !cdata.used {
648            cdata.used = true;
649            let cnum_map = mem::take(&mut cdata.cnum_map);
650            for &dep_cnum in cnum_map.iter() {
651                self.set_used_recursively(dep_cnum);
652            }
653            self.get_crate_data_mut(cnum).cnum_map = cnum_map;
654        }
655    }
656
657    /// Track how an extern crate has been loaded. Called after resolving an import in the local crate.
658    ///
659    /// * the `name` is for [`Self::set_resolved_extern_crate_name`] saving `--extern name=`
660    /// * `extern_crate` is for diagnostics
661    pub(crate) fn update_extern_crate(
662        &mut self,
663        cnum: CrateNum,
664        name: Symbol,
665        extern_crate: ExternCrate,
666    ) {
667        if true {
    match (&extern_crate.dependency_of, &LOCAL_CRATE) {
        (left_val, right_val) => {
            if !(*left_val == *right_val) {
                let kind = ::core::panicking::AssertKind::Eq;
                ::core::panicking::assert_failed(kind, &*left_val,
                    &*right_val,
                    ::core::option::Option::Some(format_args!("this function should not be called on transitive dependencies")));
            }
        }
    };
};debug_assert_eq!(
668            extern_crate.dependency_of, LOCAL_CRATE,
669            "this function should not be called on transitive dependencies"
670        );
671        self.set_resolved_extern_crate_name(name, cnum);
672        self.update_transitive_extern_crate_diagnostics(cnum, extern_crate);
673    }
674
675    /// `CrateMetadata` uses `ExternCrate` only for diagnostics
676    fn update_transitive_extern_crate_diagnostics(
677        &mut self,
678        cnum: CrateNum,
679        extern_crate: ExternCrate,
680    ) {
681        let cdata = self.get_crate_data_mut(cnum);
682        if cdata.update_extern_crate_diagnostics(extern_crate) {
683            // Propagate the extern crate info to dependencies if it was updated.
684            let extern_crate = ExternCrate { dependency_of: cnum, ..extern_crate };
685            let cnum_map = mem::take(&mut cdata.cnum_map);
686            for &dep_cnum in cnum_map.iter() {
687                self.update_transitive_extern_crate_diagnostics(dep_cnum, extern_crate);
688            }
689            self.get_crate_data_mut(cnum).cnum_map = cnum_map;
690        }
691    }
692}
693
694impl CrateStore for CStore {
695    fn as_any(&self) -> &dyn Any {
696        self
697    }
698    fn untracked_as_any(&mut self) -> &mut dyn Any {
699        self
700    }
701
702    fn crate_name(&self, cnum: CrateNum) -> Symbol {
703        self.get_crate_data(cnum).root.header.name
704    }
705
706    fn stable_crate_id(&self, cnum: CrateNum) -> StableCrateId {
707        self.get_crate_data(cnum).root.stable_crate_id
708    }
709
710    /// Returns the `DefKey` for a given `DefId`. This indicates the
711    /// parent `DefId` as well as some idea of what kind of data the
712    /// `DefId` refers to.
713    fn def_key(&self, def: DefId) -> DefKey {
714        self.get_crate_data(def.krate).def_key(def.index)
715    }
716
717    fn def_path(&self, def: DefId) -> DefPath {
718        self.get_crate_data(def.krate).def_path(def.index)
719    }
720
721    fn def_path_hash(&self, def: DefId) -> DefPathHash {
722        self.get_crate_data(def.krate).def_path_hash(def.index)
723    }
724}
725
726fn provide_cstore_hooks(providers: &mut Providers) {
727    providers.hooks.def_path_hash_to_def_id_extern = |tcx, hash, stable_crate_id| {
728        // If this is a DefPathHash from an upstream crate, let the CrateStore map
729        // it to a DefId.
730        let cstore = CStore::from_tcx(tcx);
731        let cnum = *tcx
732            .untracked()
733            .stable_crate_ids
734            .read()
735            .get(&stable_crate_id)
736            .unwrap_or_else(|| ::rustc_middle::util::bug::bug_fmt(format_args!("uninterned StableCrateId: {0:?}",
        stable_crate_id))bug!("uninterned StableCrateId: {stable_crate_id:?}"));
737        match (&cnum, &LOCAL_CRATE) {
    (left_val, right_val) => {
        if *left_val == *right_val {
            let kind = ::core::panicking::AssertKind::Ne;
            ::core::panicking::assert_failed(kind, &*left_val, &*right_val,
                ::core::option::Option::None);
        }
    }
};assert_ne!(cnum, LOCAL_CRATE);
738        let def_index = cstore.get_crate_data(cnum).def_path_hash_to_def_index(hash)?;
739        Some(DefId { krate: cnum, index: def_index })
740    };
741
742    providers.hooks.expn_hash_to_expn_id = |tcx, cnum, index_guess, hash| {
743        let cstore = CStore::from_tcx(tcx);
744        cstore.get_crate_data(cnum).expn_hash_to_expn_id(tcx, index_guess, hash)
745    };
746    providers.hooks.import_source_files = |tcx, cnum| {
747        let cstore = CStore::from_tcx(tcx);
748        let cdata = cstore.get_crate_data(cnum);
749        for file_index in 0..cdata.root.source_map.size() {
750            cdata.imported_source_file(tcx, file_index as u32);
751        }
752    };
753}