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_crate_store::{CrateStore, ExternCrate};
6use rustc_data_structures::fx::FxHashMap;
7use rustc_hir::attrs::Deprecation;
8use rustc_hir::def::{CtorKind, DefKind};
9use rustc_hir::def_id::{CrateNum, DefId, DefIdMap, LOCAL_CRATE};
10use rustc_hir::definitions::{DefKey, DefPath, DefPathHash};
11use rustc_middle::arena::ArenaAllocatable;
12use rustc_middle::bug;
13use rustc_middle::metadata::{AmbigModChild, ModChild};
14use rustc_middle::middle::exported_symbols::ExportedSymbol;
15use rustc_middle::middle::stability::DeprecationEntry;
16use rustc_middle::queries::ExternProviders;
17use rustc_middle::query::LocalCrate;
18use rustc_middle::ty::fast_reject::SimplifiedType;
19use rustc_middle::ty::{self, TyCtxt, TypeVisitable};
20use rustc_middle::util::Providers;
21use rustc_serialize::Decoder;
22use rustc_session::StableCrateId;
23use rustc_span::def_id::ModId;
24use rustc_span::hygiene::ExpnId;
25use rustc_span::{Span, Symbol, kw};
26
27use super::{Decodable, DecodeIterator};
28use crate::creader::{CStore, LoadedMacro};
29use crate::rmeta::AttrFlags;
30use crate::rmeta::table::IsDefault;
31use crate::{eii, foreign_modules, native_libs};
32
33trait ProcessQueryValue<'tcx, T> {
34    fn process_decoded(self, _tcx: TyCtxt<'tcx>, _err: impl Fn() -> !) -> T;
35}
36
37impl<T> ProcessQueryValue<'_, T> for T {
38    #[inline(always)]
39    fn process_decoded(self, _tcx: TyCtxt<'_>, _err: impl Fn() -> !) -> T {
40        self
41    }
42}
43
44// The `TypeVisitable` bound here is merely for `EarlyBinder`'s rigidness check.
45impl<'tcx, T: TypeVisitable<TyCtxt<'tcx>>> ProcessQueryValue<'tcx, ty::EarlyBinder<'tcx, T>> for T {
46    #[inline(always)]
47    fn process_decoded(self, _tcx: TyCtxt<'_>, _err: impl Fn() -> !) -> ty::EarlyBinder<'tcx, T> {
48        ty::EarlyBinder::bind_no_rigid_aliases(self)
49    }
50}
51
52impl<T> ProcessQueryValue<'_, T> for Option<T> {
53    #[inline(always)]
54    fn process_decoded(self, _tcx: TyCtxt<'_>, err: impl Fn() -> !) -> T {
55        if let Some(value) = self { value } else { err() }
56    }
57}
58
59impl<'tcx, T: ArenaAllocatable<'tcx>> ProcessQueryValue<'tcx, &'tcx T> for Option<T> {
60    #[inline(always)]
61    fn process_decoded(self, tcx: TyCtxt<'tcx>, err: impl Fn() -> !) -> &'tcx T {
62        if let Some(value) = self { tcx.arena.alloc(value) } else { err() }
63    }
64}
65
66impl<T, E> ProcessQueryValue<'_, Result<Option<T>, E>> for Option<T> {
67    #[inline(always)]
68    fn process_decoded(self, _tcx: TyCtxt<'_>, _err: impl Fn() -> !) -> Result<Option<T>, E> {
69        Ok(self)
70    }
71}
72
73impl<'tcx, D: Decoder, T: Copy + Decodable<D>> ProcessQueryValue<'tcx, &'tcx [T]>
74    for Option<DecodeIterator<T, D>>
75{
76    #[inline(always)]
77    fn process_decoded(self, tcx: TyCtxt<'tcx>, err: impl Fn() -> !) -> &'tcx [T] {
78        if let Some(iter) = self { tcx.arena.alloc_from_iter(iter) } else { err() }
79    }
80}
81
82impl<'tcx, D: Decoder, T: Copy + Decodable<D>> ProcessQueryValue<'tcx, Option<&'tcx [T]>>
83    for Option<DecodeIterator<T, D>>
84{
85    #[inline(always)]
86    fn process_decoded(self, tcx: TyCtxt<'tcx>, _err: impl Fn() -> !) -> Option<&'tcx [T]> {
87        if let Some(iter) = self { Some(&*tcx.arena.alloc_from_iter(iter)) } else { None }
88    }
89}
90
91impl ProcessQueryValue<'_, Option<DeprecationEntry>> for Option<Deprecation> {
92    #[inline(always)]
93    fn process_decoded(self, _tcx: TyCtxt<'_>, _err: impl Fn() -> !) -> Option<DeprecationEntry> {
94        self.map(DeprecationEntry::external)
95    }
96}
97
98macro_rules! provide_one {
99    ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident, $name:ident => { table }) => {
100        provide_one! {
101            $tcx, $def_id, $other, $cdata, $name => {
102                $cdata
103                    .root
104                    .tables
105                    .$name
106                    .get($cdata, $def_id.index)
107                    .map(|lazy| lazy.decode(($cdata, $tcx)))
108                    .process_decoded($tcx, || panic!("{:?} does not have a {:?}", $def_id, stringify!($name)))
109            }
110        }
111    };
112    ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident, $name:ident => { table_defaulted_array }) => {
113        provide_one! {
114            $tcx, $def_id, $other, $cdata, $name => {
115                let lazy = $cdata.root.tables.$name.get($cdata, $def_id.index);
116                let value = if lazy.is_default() {
117                    &[] as &[_]
118                } else {
119                    $tcx.arena.alloc_from_iter(lazy.decode(($cdata, $tcx)))
120                };
121                value.process_decoded($tcx, || panic!("{:?} does not have a {:?}", $def_id, stringify!($name)))
122            }
123        }
124    };
125    ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident, $name:ident => { table_direct }) => {
126        provide_one! {
127            $tcx, $def_id, $other, $cdata, $name => {
128                // We don't decode `table_direct`, since it's not a Lazy, but an actual value
129                $cdata
130                    .root
131                    .tables
132                    .$name
133                    .get($cdata, $def_id.index)
134                    .process_decoded($tcx, || panic!("{:?} does not have a {:?}", $def_id, stringify!($name)))
135            }
136        }
137    };
138    ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident, $name:ident => $compute:block) => {
139        fn $name<'tcx>(
140            $tcx: TyCtxt<'tcx>,
141            def_id_arg: rustc_middle::queries::$name::Key<'tcx>,
142        ) -> rustc_middle::queries::$name::ProvidedValue<'tcx> {
143            let _prof_timer =
144                $tcx.prof.generic_activity(concat!("metadata_decode_entry_", stringify!($name)));
145
146            #[allow(unused_variables)]
147            let ($def_id, $other) = def_id_arg.into_args();
148            assert!(!$def_id.is_local());
149
150            // External query providers call `crate_hash` in order to register a dependency
151            // on the crate metadata. The exception is `crate_hash` itself, which obviously
152            // doesn't need to do this (and can't, as it would cause a query cycle).
153            use rustc_middle::dep_graph::DepKind;
154            if DepKind::$name != DepKind::crate_hash && $tcx.dep_graph.is_fully_enabled() {
155                $tcx.ensure_ok().crate_hash($def_id.krate);
156            }
157
158            let cstore = CStore::from_tcx($tcx);
159            let $cdata = cstore.get_crate_data($def_id.krate);
160
161            $compute
162        }
163    };
164}
165
166macro_rules! provide {
167    ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident,
168      $($name:ident => { $($compute:tt)* })*) => {
169        fn provide_extern(providers: &mut ExternProviders) {
170            $(provide_one! {
171                $tcx, $def_id, $other, $cdata, $name => { $($compute)* }
172            })*
173
174            *providers = ExternProviders {
175                $($name,)*
176                ..*providers
177            };
178        }
179    }
180}
181
182// small trait to work around different signature queries all being defined via
183// the macro above.
184trait IntoArgs {
185    type Other;
186    fn into_args(self) -> (DefId, Self::Other);
187}
188
189impl IntoArgs for DefId {
190    type Other = ();
191    fn into_args(self) -> (DefId, ()) {
192        (self, ())
193    }
194}
195
196impl IntoArgs for ModId {
197    type Other = ();
198    fn into_args(self) -> (DefId, ()) {
199        (self.to_def_id(), ())
200    }
201}
202
203impl IntoArgs for CrateNum {
204    type Other = ();
205    fn into_args(self) -> (DefId, ()) {
206        (self.as_def_id(), ())
207    }
208}
209
210impl IntoArgs for (CrateNum, DefId) {
211    type Other = DefId;
212    fn into_args(self) -> (DefId, DefId) {
213        (self.0.as_def_id(), self.1)
214    }
215}
216
217impl<'tcx> IntoArgs for ty::InstanceKind<'tcx> {
218    type Other = ();
219    fn into_args(self) -> (DefId, ()) {
220        (self.def_id(), ())
221    }
222}
223
224impl IntoArgs for (CrateNum, SimplifiedType) {
225    type Other = SimplifiedType;
226    fn into_args(self) -> (DefId, SimplifiedType) {
227        (self.0.as_def_id(), self.1)
228    }
229}
230
231fn 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_clauses_of<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::explicit_clauses_of::Key<'tcx>)
        -> rustc_middle::queries::explicit_clauses_of::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_explicit_clauses_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_clauses_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_clauses_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_clauses_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_clauses_of<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::explicit_super_clauses_of::Key<'tcx>)
        ->
            rustc_middle::queries::explicit_super_clauses_of::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_explicit_super_clauses_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_clauses_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_clauses_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_clauses_of"));
                    })
        }
    }
    fn explicit_implied_clauses_of<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::explicit_implied_clauses_of::Key<'tcx>)
        ->
            rustc_middle::queries::explicit_implied_clauses_of::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_explicit_implied_clauses_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_clauses_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_clauses_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_clauses_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_checked<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::type_alias_is_checked::Key<'tcx>)
        -> rustc_middle::queries::type_alias_is_checked::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_type_alias_is_checked");
        #[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_checked != 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_checked.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_checked"));
                    })
        }
    }
    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 impl_is_fully_generic_for_reflection<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::impl_is_fully_generic_for_reflection::Key<'tcx>)
        ->
            rustc_middle::queries::impl_is_fully_generic_for_reflection::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_impl_is_fully_generic_for_reflection");
        #[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_is_fully_generic_for_reflection !=
                    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_is_fully_generic_for_reflection.get(cdata,
                    def_id.index).process_decoded(tcx,
                ||
                    {
                        ::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
                                def_id, "impl_is_fully_generic_for_reflection"));
                    })
        }
    }
    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.collect_return_position_impl_trait_in_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 collect_return_position_impl_trait_in_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 canonical_symbols<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg: rustc_middle::queries::canonical_symbols::Key<'tcx>)
        -> rustc_middle::queries::canonical_symbols::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_canonical_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::canonical_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.get_canonical_symbols(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"));
                    })
        }
    }
    fn args_known_to_outlive_alias_params<'tcx>(tcx: TyCtxt<'tcx>,
        def_id_arg:
            rustc_middle::queries::args_known_to_outlive_alias_params::Key<'tcx>)
        ->
            rustc_middle::queries::args_known_to_outlive_alias_params::ProvidedValue<'tcx> {
        let _prof_timer =
            tcx.prof.generic_activity("metadata_decode_entry_args_known_to_outlive_alias_params");
        #[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::args_known_to_outlive_alias_params != 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.args_known_to_outlive_alias_params.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, "args_known_to_outlive_alias_params"));
                    })
        }
    }
    *providers =
        ExternProviders {
            explicit_item_bounds,
            explicit_item_self_bounds,
            explicit_clauses_of,
            generics_of,
            inferred_outlives_of,
            explicit_super_clauses_of,
            explicit_implied_clauses_of,
            type_of,
            type_alias_is_checked,
            variances_of,
            fn_sig,
            codegen_fn_attrs,
            impl_trait_header,
            impl_is_fully_generic_for_reflection,
            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,
            canonical_symbols,
            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,
            args_known_to_outlive_alias_params,
            ..*providers
        };
}provide! { tcx, def_id, other, cdata,
232    explicit_item_bounds => { table_defaulted_array }
233    explicit_item_self_bounds => { table_defaulted_array }
234    explicit_clauses_of => { table }
235    generics_of => { table }
236    inferred_outlives_of => { table_defaulted_array }
237    explicit_super_clauses_of => { table_defaulted_array }
238    explicit_implied_clauses_of => { table_defaulted_array }
239    type_of => { table }
240    type_alias_is_checked => { table_direct }
241    variances_of => { table }
242    fn_sig => { table }
243    codegen_fn_attrs => { table }
244    impl_trait_header => { table }
245    impl_is_fully_generic_for_reflection => { table_direct }
246    const_param_default => { table }
247    object_lifetime_default => { table }
248    thir_abstract_const => { table }
249    optimized_mir => { table }
250    mir_for_ctfe => { table }
251    trivial_const => { table }
252    closure_saved_names_of_captured_variables => { table }
253    mir_coroutine_witnesses => { table }
254    promoted_mir => { table }
255    def_span => { table }
256    def_ident_span => { table }
257    lookup_stability => { table }
258    lookup_const_stability => { table }
259    lookup_default_body_stability => { table }
260    lookup_deprecation_entry => { table }
261    params_in_repr => { table }
262    def_kind => { cdata.def_kind(def_id.index) }
263    impl_parent => { table }
264    defaultness => { table_direct }
265    constness => { table_direct }
266    const_conditions => { table }
267    explicit_implied_const_bounds => { table_defaulted_array }
268    coerce_unsized_info => {
269        Ok(cdata
270            .root
271            .tables
272            .coerce_unsized_info
273            .get(cdata, def_id.index)
274            .map(|lazy| lazy.decode((cdata, tcx)))
275            .process_decoded(tcx, || panic!("{def_id:?} does not have coerce_unsized_info")))
276    }
277    mir_const_qualif => { table }
278    rendered_const => { table }
279    rendered_precise_capturing_args => { table }
280    asyncness => { table_direct }
281    fn_arg_idents => { table }
282    coroutine_kind => { table_direct }
283    coroutine_for_closure => { table }
284    coroutine_by_move_body_def_id => { table }
285    eval_static_initializer => {
286        Ok(cdata
287            .root
288            .tables
289            .eval_static_initializer
290            .get(cdata, def_id.index)
291            .map(|lazy| lazy.decode((cdata, tcx)))
292            .unwrap_or_else(|| panic!("{def_id:?} does not have eval_static_initializer")))
293    }
294    trait_def => { table }
295    deduced_param_attrs => {
296        // FIXME: `deduced_param_attrs` has some sketchy encoding settings,
297        // where we don't encode unless we're optimizing, doing codegen,
298        // and not incremental (see `encoder.rs`). I don't think this is right!
299        cdata
300            .root
301            .tables
302            .deduced_param_attrs
303            .get(cdata, def_id.index)
304            .map(|lazy| {
305                &*tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
306            })
307            .unwrap_or_default()
308    }
309    opaque_ty_origin => { table }
310    assumed_wf_types_for_rpitit => { table }
311    collect_return_position_impl_trait_in_trait_tys => {
312        Ok(cdata
313            .root
314            .tables
315            .collect_return_position_impl_trait_in_trait_tys
316            .get(cdata, def_id.index)
317            .map(|lazy| lazy.decode((cdata, tcx)))
318            .process_decoded(tcx, || panic!("{def_id:?} does not have collect_return_position_impl_trait_in_trait_tys")))
319    }
320
321    associated_types_for_impl_traits_in_trait_or_impl => { table }
322
323    visibility => { cdata.get_visibility(tcx, def_id.index) }
324    adt_def => { cdata.get_adt_def(tcx, def_id.index) }
325    adt_destructor => { table }
326    adt_async_destructor => { table }
327    associated_item_def_ids => {
328        tcx.arena.alloc_from_iter(cdata.get_associated_item_or_field_def_ids(tcx, def_id.index))
329    }
330    associated_item => { cdata.get_associated_item(tcx, def_id.index) }
331    inherent_impls => { cdata.get_inherent_implementations_for_type(tcx, def_id.index) }
332    attrs_for_def => { tcx.arena.alloc_from_iter(cdata.get_item_attrs(tcx, def_id.index)) }
333    is_mir_available => { cdata.is_item_mir_available(def_id.index) }
334    cross_crate_inlinable => { table_direct }
335
336    dylib_dependency_formats => { cdata.get_dylib_dependency_formats(tcx) }
337    is_private_dep => { cdata.private_dep }
338    is_panic_runtime => { cdata.root.panic_runtime }
339    is_compiler_builtins => { cdata.root.compiler_builtins }
340
341    // FIXME: to be replaced with externally_implementable_items below
342    has_global_allocator => { cdata.root.has_global_allocator }
343    // FIXME: to be replaced with externally_implementable_items below
344    has_alloc_error_handler => { cdata.root.has_alloc_error_handler }
345    // FIXME: to be replaced with externally_implementable_items below
346    has_panic_handler => { cdata.root.has_panic_handler }
347
348    externally_implementable_items => {
349        cdata.get_externally_implementable_items(tcx)
350            .map(|(decl_did, (decl, impls))| (
351                decl_did,
352                (decl, impls.into_iter().collect())
353            )).collect()
354    }
355
356    is_profiler_runtime => { cdata.root.profiler_runtime }
357    required_panic_strategy => { cdata.root.required_panic_strategy }
358    panic_in_drop_strategy => { cdata.root.panic_in_drop_strategy }
359    extern_crate => { cdata.extern_crate.map(|c| &*tcx.arena.alloc(c)) }
360    is_no_builtins => { cdata.root.no_builtins }
361    symbol_mangling_version => { cdata.root.symbol_mangling_version }
362    specialization_enabled_in => { cdata.root.specialization_enabled_in }
363    reachable_non_generics => {
364        let reachable_non_generics = tcx
365            .exported_non_generic_symbols(cdata.cnum)
366            .iter()
367            .filter_map(|&(exported_symbol, export_info)| {
368                if let ExportedSymbol::NonGeneric(def_id) = exported_symbol {
369                    Some((def_id, export_info))
370                } else {
371                    None
372                }
373            })
374            .collect();
375
376        reachable_non_generics
377    }
378    native_libraries => { cdata.get_native_libraries(tcx).collect() }
379    foreign_modules => { cdata.get_foreign_modules(tcx).map(|m| (m.def_id, m)).collect() }
380    crate_hash => { cdata.root.header.hash }
381    crate_host_hash => { cdata.host_hash }
382    crate_name => { cdata.root.header.name }
383    num_extern_def_ids => { cdata.num_def_ids() }
384
385    extra_filename => { cdata.root.extra_filename.clone() }
386
387    traits => { tcx.arena.alloc_from_iter(cdata.get_traits(tcx)) }
388    trait_impls_in_crate => { tcx.arena.alloc_from_iter(cdata.get_trait_impls(tcx)) }
389    implementations_of_trait => { cdata.get_implementations_of_trait(tcx, other) }
390    crate_incoherent_impls => { cdata.get_incoherent_impls(tcx, other) }
391
392    crate_dep_kind => { cdata.dep_kind }
393    module_children => {
394        tcx.arena.alloc_from_iter(cdata.get_module_children(tcx, def_id.index))
395    }
396    lib_features => { cdata.get_lib_features(tcx) }
397    stability_implications => {
398        cdata.get_stability_implications(tcx).iter().copied().collect()
399    }
400    stripped_cfg_items => { cdata.get_stripped_cfg_items(tcx, cdata.cnum) }
401    intrinsic_raw => { cdata.get_intrinsic(tcx, def_id.index) }
402    defined_lang_items => { cdata.get_lang_items(tcx) }
403    diagnostic_items => { cdata.get_diagnostic_items(tcx) }
404    canonical_symbols => { cdata.get_canonical_symbols(tcx) }
405    missing_lang_items => { cdata.get_missing_lang_items(tcx) }
406
407    missing_extern_crate_item => {
408        matches!(cdata.extern_crate, Some(extern_crate) if !extern_crate.is_direct())
409    }
410
411    used_crate_source => { Arc::clone(&cdata.source) }
412    debugger_visualizers => { cdata.get_debugger_visualizers(tcx) }
413
414    exportable_items => { tcx.arena.alloc_from_iter(cdata.get_exportable_items(tcx)) }
415    stable_order_of_exportable_impls => {
416        tcx.arena.alloc(cdata.get_stable_order_of_exportable_impls(tcx).collect())
417    }
418    exported_non_generic_symbols => { cdata.exported_non_generic_symbols(tcx) }
419    exported_generic_symbols => { cdata.exported_generic_symbols(tcx) }
420
421    crate_extern_paths => { cdata.source().paths().cloned().collect() }
422    expn_that_defined => { cdata.get_expn_that_defined(tcx, def_id.index) }
423    default_field => { cdata.get_default_field(tcx, def_id.index) }
424    is_doc_hidden => { cdata.get_attr_flags(def_id.index).contains(AttrFlags::IS_DOC_HIDDEN) }
425    doc_link_resolutions => { tcx.arena.alloc(cdata.get_doc_link_resolutions(tcx, def_id.index)) }
426    doc_link_traits_in_scope => {
427        tcx.arena.alloc_from_iter(cdata.get_doc_link_traits_in_scope(tcx, def_id.index))
428    }
429    anon_const_kind => { table }
430    const_of_item => { table }
431    args_known_to_outlive_alias_params => { table }
432}
433
434pub(in crate::rmeta) fn provide(providers: &mut Providers) {
435    provide_cstore_hooks(providers);
436    providers.queries = rustc_middle::query::Providers {
437        allocator_kind: |tcx, ()| CStore::from_tcx(tcx).allocator_kind(),
438        alloc_error_handler_kind: |tcx, ()| CStore::from_tcx(tcx).alloc_error_handler_kind(),
439        is_private_dep: |_tcx, LocalCrate| false,
440        native_library: |tcx, id| {
441            tcx.native_libraries(id.krate)
442                .iter()
443                .filter(|lib| native_libs::relevant_lib(tcx.sess, lib))
444                .find(|lib| {
445                    let Some(fm_id) = lib.foreign_module else {
446                        return false;
447                    };
448                    let map = tcx.foreign_modules(id.krate);
449                    map.get(&fm_id)
450                        .expect("failed to find foreign module")
451                        .foreign_items
452                        .contains(&id)
453                })
454        },
455        native_libraries: native_libs::collect,
456        foreign_modules: foreign_modules::collect,
457        externally_implementable_items: eii::collect,
458
459        // Returns a map from a sufficiently visible external item (i.e., an
460        // external item that is visible from at least one local module) to a
461        // sufficiently visible parent (considering modules that re-export the
462        // external item to be parents).
463        visible_parent_map: |tcx, ()| {
464            use std::collections::hash_map::Entry;
465            use std::collections::vec_deque::VecDeque;
466
467            let mut visible_parent_map: DefIdMap<DefId> = Default::default();
468            // This is a secondary visible_parent_map, storing the DefId of
469            // parents that re-export the child as `_`, module parents
470            // which are `#[doc(hidden)]`, or `use` items that are themselves
471            // `#[doc(hidden)]`. Since we prefer paths that don't do this,
472            // merge this map at the end, only if we're missing keys from
473            // the former.
474            // This is a rudimentary check that does not catch all cases,
475            // just the easiest.
476            let mut fallback_map: FxHashMap<DefId, DefId> = Default::default();
477
478            // Issue 46112: We want the map to prefer the shortest
479            // paths when reporting the path to an item. Therefore we
480            // build up the map via a breadth-first search (BFS),
481            // which naturally yields minimal-length paths.
482            //
483            // Note that it needs to be a BFS over the whole forest of
484            // crates, not just each individual crate; otherwise you
485            // only get paths that are locally minimal with respect to
486            // whatever crate we happened to encounter first in this
487            // traversal, but not globally minimal across all crates.
488            let bfs_queue = &mut VecDeque::new();
489
490            for &cnum in tcx.crates(()) {
491                // Ignore crates without a corresponding local `extern crate` item.
492                if tcx.missing_extern_crate_item(cnum) {
493                    continue;
494                }
495
496                bfs_queue.push_back(cnum.as_def_id());
497            }
498
499            let mut add_child = |bfs_queue: &mut VecDeque<_>, child: &ModChild, parent: DefId| {
500                if !child.vis.is_public() {
501                    return;
502                }
503
504                if let Some(def_id) = child.res.opt_def_id() {
505                    let mut fallback = false;
506
507                    if child.ident.name == kw::Underscore {
508                        fallback = true;
509                    }
510
511                    if tcx.is_doc_hidden(parent) {
512                        fallback = true;
513                    }
514
515                    // If the re-export itself is `#[doc(hidden)]`, deprioritize it.
516                    // See PR #99698 for the case where the *parent* is doc-hidden.
517                    if child
518                        .reexport_chain
519                        .first()
520                        .and_then(|r| r.id())
521                        .is_some_and(|id| tcx.is_doc_hidden(id))
522                    {
523                        fallback = true;
524                    }
525
526                    match visible_parent_map.entry(def_id) {
527                        Entry::Occupied(mut entry) => {
528                            if !fallback {
529                                // If `child` is defined in crate `cnum`, ensure
530                                // that it is mapped to a parent in `cnum`.
531                                if def_id.is_local() && entry.get().is_local() {
532                                    entry.insert(parent);
533                                }
534                            }
535                        }
536                        Entry::Vacant(entry) => {
537                            if !fallback {
538                                entry.insert(parent);
539                            }
540
541                            // Make sure that we have not already explored this child
542                            // through a previous fallback entry further up the BFS,
543                            // in which case we do not want to put it back into the BFS queue,
544                            // nor record a new fallback parent.
545                            if fallback_map.contains_key(&def_id) {
546                                return;
547                            }
548
549                            if fallback {
550                                // We do all of the same steps to fallback entries as to
551                                // preferred entries, except for recording them in a separate map.
552                                // It is important to not return early in the fallback cases to
553                                // ensure that we extend the BFS to the children of fallback items.
554                                fallback_map.insert(def_id, parent);
555                            }
556
557                            if child.res.module_like_def_id().is_some() {
558                                bfs_queue.push_back(def_id);
559                            }
560                        }
561                    }
562                }
563            };
564
565            while let Some(def) = bfs_queue.pop_front() {
566                for child in tcx.module_children(def).iter() {
567                    add_child(bfs_queue, child, def);
568                }
569            }
570
571            // Fill in any missing entries with the less preferable path.
572            // If this path re-exports the child as `_`, we still use this
573            // path in a diagnostic that suggests importing `::*`.
574            // We must extend the fallback map with items from the visible parent map
575            // as the extend call overrides existing entries from the latter map,
576            // which we prefer over fallback entries.
577            // FIXME: The Unord* APIs lack an efficient way of merging
578            //        the values of one map for only the missing keys of the other map,
579            //        which is required to merge the fallback map into the visible parent map.
580            //        In the meantime, use an "ordered" map internally for fallback entries.
581            #[allow(rustc::potential_query_instability)]
582            for (child, parent) in fallback_map {
583                visible_parent_map.entry(child).or_insert(parent);
584            }
585
586            visible_parent_map
587        },
588
589        dependency_formats: |tcx, ()| Arc::new(crate::dependency_format::calculate(tcx)),
590        has_global_allocator: |tcx, LocalCrate| CStore::from_tcx(tcx).has_global_allocator(),
591        has_alloc_error_handler: |tcx, LocalCrate| CStore::from_tcx(tcx).has_alloc_error_handler(),
592        postorder_cnums: |tcx, ()| {
593            tcx.arena.alloc_from_iter(
594                CStore::from_tcx(tcx).crate_dependencies_in_postorder(LOCAL_CRATE).into_iter(),
595            )
596        },
597        crates: |tcx, ()| {
598            // The loaded-crate list is now frozen in the query cache; stop
599            // mutating the cstore and stable crate id map from here on.
600            tcx.untracked().freeze_cstore();
601            tcx.arena.alloc_from_iter(CStore::from_tcx(tcx).iter_crate_data().map(|(cnum, _)| cnum))
602        },
603        used_crates: |tcx, ()| {
604            // The loaded-crate list is now frozen in the query cache; stop
605            // mutating the cstore and stable crate id map from here on.
606            tcx.untracked().freeze_cstore();
607            tcx.arena.alloc_from_iter(
608                CStore::from_tcx(tcx)
609                    .iter_crate_data()
610                    .filter_map(|(cnum, data)| data.used().then_some(cnum)),
611            )
612        },
613        duplicate_crate_names: |tcx, c: CrateNum| {
614            let name = tcx.crate_name(c);
615            tcx.arena.alloc_from_iter(
616                tcx.crates(())
617                    .into_iter()
618                    .filter(|k| tcx.crate_name(**k) == name && **k != c)
619                    .map(|c| *c),
620            )
621        },
622        ..providers.queries
623    };
624    provide_extern(&mut providers.extern_queries);
625}
626
627impl CStore {
628    pub fn ctor_untracked(&self, tcx: TyCtxt<'_>, def: DefId) -> Option<(CtorKind, DefId)> {
629        self.get_crate_data(def.krate).get_ctor(tcx, def.index)
630    }
631
632    pub fn load_macro_untracked(&self, tcx: TyCtxt<'_>, id: DefId) -> LoadedMacro {
633        let sess = tcx.sess;
634        let _prof_timer = sess.prof.generic_activity("metadata_load_macro");
635
636        let cdata = self.get_crate_data(id.krate);
637        if cdata.root.is_proc_macro_crate() {
638            LoadedMacro::ProcMacro(cdata.load_proc_macro(tcx, id.index))
639        } else {
640            LoadedMacro::MacroDef {
641                def: cdata.get_macro(tcx, id.index),
642                ident: cdata.item_ident(tcx, id.index),
643                attrs: cdata.get_item_attrs(tcx, id.index).collect(),
644                span: cdata.get_span(tcx, id.index),
645                edition: cdata.root.edition,
646            }
647        }
648    }
649
650    pub fn def_span_untracked(&self, tcx: TyCtxt<'_>, def_id: DefId) -> Span {
651        self.get_crate_data(def_id.krate).get_span(tcx, def_id.index)
652    }
653
654    pub fn def_kind_untracked(&self, def: DefId) -> DefKind {
655        self.get_crate_data(def.krate).def_kind(def.index)
656    }
657
658    pub fn expn_that_defined_untracked(&self, tcx: TyCtxt<'_>, def_id: DefId) -> ExpnId {
659        self.get_crate_data(def_id.krate).get_expn_that_defined(tcx, def_id.index)
660    }
661
662    pub fn ambig_module_children_untracked(
663        &self,
664        tcx: TyCtxt<'_>,
665        def_id: DefId,
666    ) -> impl Iterator<Item = AmbigModChild> {
667        self.get_crate_data(def_id.krate).get_ambig_module_children(tcx, def_id.index)
668    }
669
670    /// Only public-facing way to traverse all the definitions in a non-local crate.
671    /// Critically useful for this third-party project: <https://github.com/hacspec/hacspec>.
672    /// See <https://github.com/rust-lang/rust/pull/85889> for context.
673    pub fn num_def_ids_untracked(&self, cnum: CrateNum) -> usize {
674        self.get_crate_data(cnum).num_def_ids()
675    }
676
677    pub fn get_proc_macro_quoted_span_untracked(
678        &self,
679        tcx: TyCtxt<'_>,
680        cnum: CrateNum,
681        id: usize,
682    ) -> Span {
683        self.get_crate_data(cnum).get_proc_macro_quoted_span(tcx, id)
684    }
685
686    pub fn set_used_recursively(&mut self, cnum: CrateNum) {
687        let cdata = self.get_crate_data_mut(cnum);
688        if !cdata.used {
689            cdata.used = true;
690            let cnum_map = mem::take(&mut cdata.cnum_map);
691            for &dep_cnum in cnum_map.iter() {
692                self.set_used_recursively(dep_cnum);
693            }
694            self.get_crate_data_mut(cnum).cnum_map = cnum_map;
695        }
696    }
697
698    /// Track how an extern crate has been loaded. Called after resolving an import in the local crate.
699    ///
700    /// * the `name` is for [`Self::set_resolved_extern_crate_name`] saving `--extern name=`
701    /// * `extern_crate` is for diagnostics
702    pub(crate) fn update_extern_crate(
703        &mut self,
704        cnum: CrateNum,
705        name: Symbol,
706        extern_crate: ExternCrate,
707    ) {
708        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!(
709            extern_crate.dependency_of, LOCAL_CRATE,
710            "this function should not be called on transitive dependencies"
711        );
712        self.set_resolved_extern_crate_name(name, cnum);
713        self.update_transitive_extern_crate_diagnostics(cnum, extern_crate);
714    }
715
716    /// `CrateMetadata` uses `ExternCrate` only for diagnostics
717    fn update_transitive_extern_crate_diagnostics(
718        &mut self,
719        cnum: CrateNum,
720        extern_crate: ExternCrate,
721    ) {
722        let cdata = self.get_crate_data_mut(cnum);
723        if cdata.update_extern_crate_diagnostics(extern_crate) {
724            // Propagate the extern crate info to dependencies if it was updated.
725            let extern_crate = ExternCrate { dependency_of: cnum, ..extern_crate };
726            let cnum_map = mem::take(&mut cdata.cnum_map);
727            for &dep_cnum in cnum_map.iter() {
728                self.update_transitive_extern_crate_diagnostics(dep_cnum, extern_crate);
729            }
730            self.get_crate_data_mut(cnum).cnum_map = cnum_map;
731        }
732    }
733}
734
735impl CrateStore for CStore {
736    fn as_any(&self) -> &dyn Any {
737        self
738    }
739
740    fn untracked_as_any(&mut self) -> &mut dyn Any {
741        self
742    }
743
744    fn crate_name(&self, cnum: CrateNum) -> Symbol {
745        self.get_crate_data(cnum).root.header.name
746    }
747
748    fn stable_crate_id(&self, cnum: CrateNum) -> StableCrateId {
749        self.get_crate_data(cnum).root.stable_crate_id
750    }
751
752    /// Returns the `DefKey` for a given `DefId`. This indicates the
753    /// parent `DefId` as well as some idea of what kind of data the
754    /// `DefId` refers to.
755    fn def_key(&self, def: DefId) -> DefKey {
756        self.get_crate_data(def.krate).def_key(def.index)
757    }
758
759    fn def_path(&self, def: DefId) -> DefPath {
760        self.get_crate_data(def.krate).def_path(def.index)
761    }
762
763    fn def_path_hash(&self, def: DefId) -> DefPathHash {
764        self.get_crate_data(def.krate).def_path_hash(def.index)
765    }
766}
767
768fn provide_cstore_hooks(providers: &mut Providers) {
769    providers.hooks.def_path_hash_to_def_id_extern = |tcx, hash, stable_crate_id| {
770        // If this is a DefPathHash from an upstream crate, let the CrateStore map
771        // it to a DefId.
772        let cstore = CStore::from_tcx(tcx);
773        let cnum = *tcx
774            .untracked()
775            .stable_crate_ids
776            .read()
777            .get(&stable_crate_id)
778            .unwrap_or_else(|| ::rustc_middle::util::bug::bug_fmt(format_args!("uninterned StableCrateId: {0:?}",
        stable_crate_id))bug!("uninterned StableCrateId: {stable_crate_id:?}"));
779        {
    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);
780        let def_index = cstore.get_crate_data(cnum).def_path_hash_to_def_index(hash)?;
781        Some(DefId { krate: cnum, index: def_index })
782    };
783
784    providers.hooks.expn_hash_to_expn_id = |tcx, cnum, index_guess, hash| {
785        let cstore = CStore::from_tcx(tcx);
786        cstore.get_crate_data(cnum).expn_hash_to_expn_id(tcx, index_guess, hash)
787    };
788    providers.hooks.import_source_files = |tcx, cnum| {
789        let cstore = CStore::from_tcx(tcx);
790        let cdata = cstore.get_crate_data(cnum);
791        for file_index in 0..cdata.root.source_map.size() {
792            cdata.imported_source_file(tcx, file_index as u32);
793        }
794    };
795}