1use std::any::Any;
2use std::mem;
3use std::sync::Arc;
4
5use rustc_hir::attrs::Deprecation;
6use rustc_hir::def::{CtorKind, DefKind};
7use rustc_hir::def_id::{CrateNum, DefId, DefIdMap, LOCAL_CRATE};
8use rustc_hir::definitions::{DefKey, DefPath, DefPathHash};
9use rustc_middle::arena::ArenaAllocatable;
10use rustc_middle::bug;
11use rustc_middle::metadata::{AmbigModChild, ModChild};
12use rustc_middle::middle::exported_symbols::ExportedSymbol;
13use rustc_middle::middle::stability::DeprecationEntry;
14use rustc_middle::queries::ExternProviders;
15use rustc_middle::query::LocalCrate;
16use rustc_middle::ty::fast_reject::SimplifiedType;
17use rustc_middle::ty::{self, TyCtxt, TypeVisitable};
18use rustc_middle::util::Providers;
19use rustc_serialize::Decoder;
20use rustc_session::StableCrateId;
21use rustc_session::cstore::{CrateStore, ExternCrate};
22use rustc_span::hygiene::ExpnId;
23use rustc_span::{Span, Symbol, kw};
24
25use super::{Decodable, DecodeIterator};
26use crate::creader::{CStore, LoadedMacro};
27use crate::rmeta::AttrFlags;
28use crate::rmeta::table::IsDefault;
29use crate::{eii, foreign_modules, native_libs};
30
31trait ProcessQueryValue<'tcx, T> {
32 fn process_decoded(self, _tcx: TyCtxt<'tcx>, _err: impl Fn() -> !) -> T;
33}
34
35impl<T> ProcessQueryValue<'_, T> for T {
36 #[inline(always)]
37 fn process_decoded(self, _tcx: TyCtxt<'_>, _err: impl Fn() -> !) -> T {
38 self
39 }
40}
41
42impl<'tcx, T: TypeVisitable<TyCtxt<'tcx>>> ProcessQueryValue<'tcx, ty::EarlyBinder<'tcx, T>> for T {
44 #[inline(always)]
45 fn process_decoded(self, _tcx: TyCtxt<'_>, _err: impl Fn() -> !) -> ty::EarlyBinder<'tcx, T> {
46 ty::EarlyBinder::bind_no_rigid_aliases(self)
47 }
48}
49
50impl<T> ProcessQueryValue<'_, T> for Option<T> {
51 #[inline(always)]
52 fn process_decoded(self, _tcx: TyCtxt<'_>, err: impl Fn() -> !) -> T {
53 if let Some(value) = self { value } else { err() }
54 }
55}
56
57impl<'tcx, T: ArenaAllocatable<'tcx>> ProcessQueryValue<'tcx, &'tcx T> for Option<T> {
58 #[inline(always)]
59 fn process_decoded(self, tcx: TyCtxt<'tcx>, err: impl Fn() -> !) -> &'tcx T {
60 if let Some(value) = self { tcx.arena.alloc(value) } else { err() }
61 }
62}
63
64impl<T, E> ProcessQueryValue<'_, Result<Option<T>, E>> for Option<T> {
65 #[inline(always)]
66 fn process_decoded(self, _tcx: TyCtxt<'_>, _err: impl Fn() -> !) -> Result<Option<T>, E> {
67 Ok(self)
68 }
69}
70
71impl<'tcx, D: Decoder, T: Copy + Decodable<D>> ProcessQueryValue<'tcx, &'tcx [T]>
72 for Option<DecodeIterator<T, D>>
73{
74 #[inline(always)]
75 fn process_decoded(self, tcx: TyCtxt<'tcx>, err: impl Fn() -> !) -> &'tcx [T] {
76 if let Some(iter) = self { tcx.arena.alloc_from_iter(iter) } else { err() }
77 }
78}
79
80impl<'tcx, D: Decoder, T: Copy + Decodable<D>> ProcessQueryValue<'tcx, Option<&'tcx [T]>>
81 for Option<DecodeIterator<T, D>>
82{
83 #[inline(always)]
84 fn process_decoded(self, tcx: TyCtxt<'tcx>, _err: impl Fn() -> !) -> Option<&'tcx [T]> {
85 if let Some(iter) = self { Some(&*tcx.arena.alloc_from_iter(iter)) } else { None }
86 }
87}
88
89impl ProcessQueryValue<'_, Option<DeprecationEntry>> for Option<Deprecation> {
90 #[inline(always)]
91 fn process_decoded(self, _tcx: TyCtxt<'_>, _err: impl Fn() -> !) -> Option<DeprecationEntry> {
92 self.map(DeprecationEntry::external)
93 }
94}
95
96macro_rules! provide_one {
97 ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident, $name:ident => { table }) => {
98 provide_one! {
99 $tcx, $def_id, $other, $cdata, $name => {
100 $cdata
101 .root
102 .tables
103 .$name
104 .get($cdata, $def_id.index)
105 .map(|lazy| lazy.decode(($cdata, $tcx)))
106 .process_decoded($tcx, || panic!("{:?} does not have a {:?}", $def_id, stringify!($name)))
107 }
108 }
109 };
110 ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident, $name:ident => { table_defaulted_array }) => {
111 provide_one! {
112 $tcx, $def_id, $other, $cdata, $name => {
113 let lazy = $cdata.root.tables.$name.get($cdata, $def_id.index);
114 let value = if lazy.is_default() {
115 &[] as &[_]
116 } else {
117 $tcx.arena.alloc_from_iter(lazy.decode(($cdata, $tcx)))
118 };
119 value.process_decoded($tcx, || panic!("{:?} does not have a {:?}", $def_id, stringify!($name)))
120 }
121 }
122 };
123 ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident, $name:ident => { table_direct }) => {
124 provide_one! {
125 $tcx, $def_id, $other, $cdata, $name => {
126 $cdata
128 .root
129 .tables
130 .$name
131 .get($cdata, $def_id.index)
132 .process_decoded($tcx, || panic!("{:?} does not have a {:?}", $def_id, stringify!($name)))
133 }
134 }
135 };
136 ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident, $name:ident => $compute:block) => {
137 fn $name<'tcx>(
138 $tcx: TyCtxt<'tcx>,
139 def_id_arg: rustc_middle::queries::$name::Key<'tcx>,
140 ) -> rustc_middle::queries::$name::ProvidedValue<'tcx> {
141 let _prof_timer =
142 $tcx.prof.generic_activity(concat!("metadata_decode_entry_", stringify!($name)));
143
144 #[allow(unused_variables)]
145 let ($def_id, $other) = def_id_arg.into_args();
146 assert!(!$def_id.is_local());
147
148 use rustc_middle::dep_graph::DepKind;
152 if DepKind::$name != DepKind::crate_hash && $tcx.dep_graph.is_fully_enabled() {
153 $tcx.ensure_ok().crate_hash($def_id.krate);
154 }
155
156 let cstore = CStore::from_tcx($tcx);
157 let $cdata = cstore.get_crate_data($def_id.krate);
158
159 $compute
160 }
161 };
162}
163
164macro_rules! provide {
165 ($tcx:ident, $def_id:ident, $other:ident, $cdata:ident,
166 $($name:ident => { $($compute:tt)* })*) => {
167 fn provide_extern(providers: &mut ExternProviders) {
168 $(provide_one! {
169 $tcx, $def_id, $other, $cdata, $name => { $($compute)* }
170 })*
171
172 *providers = ExternProviders {
173 $($name,)*
174 ..*providers
175 };
176 }
177 }
178}
179
180trait IntoArgs {
183 type Other;
184 fn into_args(self) -> (DefId, Self::Other);
185}
186
187impl IntoArgs for DefId {
188 type Other = ();
189 fn into_args(self) -> (DefId, ()) {
190 (self, ())
191 }
192}
193
194impl IntoArgs for CrateNum {
195 type Other = ();
196 fn into_args(self) -> (DefId, ()) {
197 (self.as_def_id(), ())
198 }
199}
200
201impl IntoArgs for (CrateNum, DefId) {
202 type Other = DefId;
203 fn into_args(self) -> (DefId, DefId) {
204 (self.0.as_def_id(), self.1)
205 }
206}
207
208impl<'tcx> IntoArgs for ty::InstanceKind<'tcx> {
209 type Other = ();
210 fn into_args(self) -> (DefId, ()) {
211 (self.def_id(), ())
212 }
213}
214
215impl IntoArgs for (CrateNum, SimplifiedType) {
216 type Other = SimplifiedType;
217 fn into_args(self) -> (DefId, SimplifiedType) {
218 (self.0.as_def_id(), self.1)
219 }
220}
221
222fn provide_extern(providers: &mut ExternProviders) {
fn explicit_item_bounds<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::explicit_item_bounds::Key<'tcx>)
-> rustc_middle::queries::explicit_item_bounds::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_explicit_item_bounds");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::explicit_item_bounds != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
let lazy =
cdata.root.tables.explicit_item_bounds.get(cdata,
def_id.index);
let value =
if lazy.is_default() {
&[] as &[_]
} else {
tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
};
value.process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "explicit_item_bounds"));
})
}
}
fn explicit_item_self_bounds<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg:
rustc_middle::queries::explicit_item_self_bounds::Key<'tcx>)
->
rustc_middle::queries::explicit_item_self_bounds::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_explicit_item_self_bounds");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::explicit_item_self_bounds != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
let lazy =
cdata.root.tables.explicit_item_self_bounds.get(cdata,
def_id.index);
let value =
if lazy.is_default() {
&[] as &[_]
} else {
tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
};
value.process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "explicit_item_self_bounds"));
})
}
}
fn explicit_predicates_of<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::explicit_predicates_of::Key<'tcx>)
->
rustc_middle::queries::explicit_predicates_of::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_explicit_predicates_of");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::explicit_predicates_of != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.explicit_predicates_of.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "explicit_predicates_of"));
})
}
}
fn generics_of<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::generics_of::Key<'tcx>)
-> rustc_middle::queries::generics_of::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_generics_of");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::generics_of != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.generics_of.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "generics_of"));
})
}
}
fn inferred_outlives_of<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::inferred_outlives_of::Key<'tcx>)
-> rustc_middle::queries::inferred_outlives_of::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_inferred_outlives_of");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::inferred_outlives_of != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
let lazy =
cdata.root.tables.inferred_outlives_of.get(cdata,
def_id.index);
let value =
if lazy.is_default() {
&[] as &[_]
} else {
tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
};
value.process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "inferred_outlives_of"));
})
}
}
fn explicit_super_predicates_of<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg:
rustc_middle::queries::explicit_super_predicates_of::Key<'tcx>)
->
rustc_middle::queries::explicit_super_predicates_of::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_explicit_super_predicates_of");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::explicit_super_predicates_of != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
let lazy =
cdata.root.tables.explicit_super_predicates_of.get(cdata,
def_id.index);
let value =
if lazy.is_default() {
&[] as &[_]
} else {
tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
};
value.process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "explicit_super_predicates_of"));
})
}
}
fn explicit_implied_predicates_of<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg:
rustc_middle::queries::explicit_implied_predicates_of::Key<'tcx>)
->
rustc_middle::queries::explicit_implied_predicates_of::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_explicit_implied_predicates_of");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::explicit_implied_predicates_of != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
let lazy =
cdata.root.tables.explicit_implied_predicates_of.get(cdata,
def_id.index);
let value =
if lazy.is_default() {
&[] as &[_]
} else {
tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
};
value.process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "explicit_implied_predicates_of"));
})
}
}
fn type_of<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::type_of::Key<'tcx>)
-> rustc_middle::queries::type_of::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_type_of");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::type_of != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.type_of.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "type_of"));
})
}
}
fn type_alias_is_lazy<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::type_alias_is_lazy::Key<'tcx>)
-> rustc_middle::queries::type_alias_is_lazy::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_type_alias_is_lazy");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::type_alias_is_lazy != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.type_alias_is_lazy.get(cdata,
def_id.index).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "type_alias_is_lazy"));
})
}
}
fn variances_of<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::variances_of::Key<'tcx>)
-> rustc_middle::queries::variances_of::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_variances_of");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::variances_of != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.variances_of.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "variances_of"));
})
}
}
fn fn_sig<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::fn_sig::Key<'tcx>)
-> rustc_middle::queries::fn_sig::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_fn_sig");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::fn_sig != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.fn_sig.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "fn_sig"));
})
}
}
fn codegen_fn_attrs<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::codegen_fn_attrs::Key<'tcx>)
-> rustc_middle::queries::codegen_fn_attrs::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_codegen_fn_attrs");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::codegen_fn_attrs != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.codegen_fn_attrs.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "codegen_fn_attrs"));
})
}
}
fn impl_trait_header<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::impl_trait_header::Key<'tcx>)
-> rustc_middle::queries::impl_trait_header::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_impl_trait_header");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::impl_trait_header != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.impl_trait_header.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "impl_trait_header"));
})
}
}
fn const_param_default<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::const_param_default::Key<'tcx>)
-> rustc_middle::queries::const_param_default::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_const_param_default");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::const_param_default != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.const_param_default.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "const_param_default"));
})
}
}
fn object_lifetime_default<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::object_lifetime_default::Key<'tcx>)
->
rustc_middle::queries::object_lifetime_default::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_object_lifetime_default");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::object_lifetime_default != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.object_lifetime_default.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "object_lifetime_default"));
})
}
}
fn thir_abstract_const<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::thir_abstract_const::Key<'tcx>)
-> rustc_middle::queries::thir_abstract_const::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_thir_abstract_const");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::thir_abstract_const != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.thir_abstract_const.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "thir_abstract_const"));
})
}
}
fn optimized_mir<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::optimized_mir::Key<'tcx>)
-> rustc_middle::queries::optimized_mir::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_optimized_mir");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::optimized_mir != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.optimized_mir.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "optimized_mir"));
})
}
}
fn mir_for_ctfe<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::mir_for_ctfe::Key<'tcx>)
-> rustc_middle::queries::mir_for_ctfe::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_mir_for_ctfe");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::mir_for_ctfe != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.mir_for_ctfe.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "mir_for_ctfe"));
})
}
}
fn trivial_const<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::trivial_const::Key<'tcx>)
-> rustc_middle::queries::trivial_const::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_trivial_const");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::trivial_const != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.trivial_const.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "trivial_const"));
})
}
}
fn closure_saved_names_of_captured_variables<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg:
rustc_middle::queries::closure_saved_names_of_captured_variables::Key<'tcx>)
->
rustc_middle::queries::closure_saved_names_of_captured_variables::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_closure_saved_names_of_captured_variables");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::closure_saved_names_of_captured_variables !=
DepKind::crate_hash && tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.closure_saved_names_of_captured_variables.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "closure_saved_names_of_captured_variables"));
})
}
}
fn mir_coroutine_witnesses<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::mir_coroutine_witnesses::Key<'tcx>)
->
rustc_middle::queries::mir_coroutine_witnesses::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_mir_coroutine_witnesses");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::mir_coroutine_witnesses != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.mir_coroutine_witnesses.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "mir_coroutine_witnesses"));
})
}
}
fn promoted_mir<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::promoted_mir::Key<'tcx>)
-> rustc_middle::queries::promoted_mir::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_promoted_mir");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::promoted_mir != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.promoted_mir.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "promoted_mir"));
})
}
}
fn def_span<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::def_span::Key<'tcx>)
-> rustc_middle::queries::def_span::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_def_span");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::def_span != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.def_span.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "def_span"));
})
}
}
fn def_ident_span<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::def_ident_span::Key<'tcx>)
-> rustc_middle::queries::def_ident_span::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_def_ident_span");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::def_ident_span != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.def_ident_span.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "def_ident_span"));
})
}
}
fn lookup_stability<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::lookup_stability::Key<'tcx>)
-> rustc_middle::queries::lookup_stability::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_lookup_stability");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::lookup_stability != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.lookup_stability.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "lookup_stability"));
})
}
}
fn lookup_const_stability<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::lookup_const_stability::Key<'tcx>)
->
rustc_middle::queries::lookup_const_stability::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_lookup_const_stability");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::lookup_const_stability != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.lookup_const_stability.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "lookup_const_stability"));
})
}
}
fn lookup_default_body_stability<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg:
rustc_middle::queries::lookup_default_body_stability::Key<'tcx>)
->
rustc_middle::queries::lookup_default_body_stability::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_lookup_default_body_stability");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::lookup_default_body_stability != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.lookup_default_body_stability.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "lookup_default_body_stability"));
})
}
}
fn lookup_deprecation_entry<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg:
rustc_middle::queries::lookup_deprecation_entry::Key<'tcx>)
->
rustc_middle::queries::lookup_deprecation_entry::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_lookup_deprecation_entry");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::lookup_deprecation_entry != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.lookup_deprecation_entry.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "lookup_deprecation_entry"));
})
}
}
fn params_in_repr<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::params_in_repr::Key<'tcx>)
-> rustc_middle::queries::params_in_repr::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_params_in_repr");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::params_in_repr != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.params_in_repr.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "params_in_repr"));
})
}
}
fn def_kind<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::def_kind::Key<'tcx>)
-> rustc_middle::queries::def_kind::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_def_kind");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::def_kind != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{ cdata.def_kind(def_id.index) }
}
fn impl_parent<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::impl_parent::Key<'tcx>)
-> rustc_middle::queries::impl_parent::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_impl_parent");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::impl_parent != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.impl_parent.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "impl_parent"));
})
}
}
fn defaultness<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::defaultness::Key<'tcx>)
-> rustc_middle::queries::defaultness::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_defaultness");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::defaultness != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.defaultness.get(cdata,
def_id.index).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "defaultness"));
})
}
}
fn constness<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::constness::Key<'tcx>)
-> rustc_middle::queries::constness::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_constness");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::constness != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.constness.get(cdata,
def_id.index).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "constness"));
})
}
}
fn const_conditions<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::const_conditions::Key<'tcx>)
-> rustc_middle::queries::const_conditions::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_const_conditions");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::const_conditions != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.const_conditions.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "const_conditions"));
})
}
}
fn explicit_implied_const_bounds<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg:
rustc_middle::queries::explicit_implied_const_bounds::Key<'tcx>)
->
rustc_middle::queries::explicit_implied_const_bounds::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_explicit_implied_const_bounds");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::explicit_implied_const_bounds != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
let lazy =
cdata.root.tables.explicit_implied_const_bounds.get(cdata,
def_id.index);
let value =
if lazy.is_default() {
&[] as &[_]
} else {
tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
};
value.process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "explicit_implied_const_bounds"));
})
}
}
fn coerce_unsized_info<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::coerce_unsized_info::Key<'tcx>)
-> rustc_middle::queries::coerce_unsized_info::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_coerce_unsized_info");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::coerce_unsized_info != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
Ok(cdata.root.tables.coerce_unsized_info.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have coerce_unsized_info",
def_id));
}))
}
}
fn mir_const_qualif<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::mir_const_qualif::Key<'tcx>)
-> rustc_middle::queries::mir_const_qualif::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_mir_const_qualif");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::mir_const_qualif != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.mir_const_qualif.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "mir_const_qualif"));
})
}
}
fn rendered_const<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::rendered_const::Key<'tcx>)
-> rustc_middle::queries::rendered_const::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_rendered_const");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::rendered_const != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.rendered_const.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "rendered_const"));
})
}
}
fn rendered_precise_capturing_args<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg:
rustc_middle::queries::rendered_precise_capturing_args::Key<'tcx>)
->
rustc_middle::queries::rendered_precise_capturing_args::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_rendered_precise_capturing_args");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::rendered_precise_capturing_args != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.rendered_precise_capturing_args.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "rendered_precise_capturing_args"));
})
}
}
fn asyncness<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::asyncness::Key<'tcx>)
-> rustc_middle::queries::asyncness::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_asyncness");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::asyncness != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.asyncness.get(cdata,
def_id.index).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "asyncness"));
})
}
}
fn fn_arg_idents<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::fn_arg_idents::Key<'tcx>)
-> rustc_middle::queries::fn_arg_idents::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_fn_arg_idents");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::fn_arg_idents != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.fn_arg_idents.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "fn_arg_idents"));
})
}
}
fn coroutine_kind<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::coroutine_kind::Key<'tcx>)
-> rustc_middle::queries::coroutine_kind::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_coroutine_kind");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::coroutine_kind != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.coroutine_kind.get(cdata,
def_id.index).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "coroutine_kind"));
})
}
}
fn coroutine_for_closure<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::coroutine_for_closure::Key<'tcx>)
-> rustc_middle::queries::coroutine_for_closure::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_coroutine_for_closure");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::coroutine_for_closure != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.coroutine_for_closure.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "coroutine_for_closure"));
})
}
}
fn coroutine_by_move_body_def_id<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg:
rustc_middle::queries::coroutine_by_move_body_def_id::Key<'tcx>)
->
rustc_middle::queries::coroutine_by_move_body_def_id::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_coroutine_by_move_body_def_id");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::coroutine_by_move_body_def_id != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.coroutine_by_move_body_def_id.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "coroutine_by_move_body_def_id"));
})
}
}
fn eval_static_initializer<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::eval_static_initializer::Key<'tcx>)
->
rustc_middle::queries::eval_static_initializer::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_eval_static_initializer");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::eval_static_initializer != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
Ok(cdata.root.tables.eval_static_initializer.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).unwrap_or_else(||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have eval_static_initializer",
def_id));
}))
}
}
fn trait_def<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::trait_def::Key<'tcx>)
-> rustc_middle::queries::trait_def::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_trait_def");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::trait_def != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.trait_def.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "trait_def"));
})
}
}
fn deduced_param_attrs<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::deduced_param_attrs::Key<'tcx>)
-> rustc_middle::queries::deduced_param_attrs::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_deduced_param_attrs");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::deduced_param_attrs != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.deduced_param_attrs.get(cdata,
def_id.index).map(|lazy|
{
&*tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
}).unwrap_or_default()
}
}
fn opaque_ty_origin<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg: rustc_middle::queries::opaque_ty_origin::Key<'tcx>)
-> rustc_middle::queries::opaque_ty_origin::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_opaque_ty_origin");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::opaque_ty_origin != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.opaque_ty_origin.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "opaque_ty_origin"));
})
}
}
fn assumed_wf_types_for_rpitit<'tcx>(tcx: TyCtxt<'tcx>,
def_id_arg:
rustc_middle::queries::assumed_wf_types_for_rpitit::Key<'tcx>)
->
rustc_middle::queries::assumed_wf_types_for_rpitit::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_assumed_wf_types_for_rpitit");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::assumed_wf_types_for_rpitit != DepKind::crate_hash &&
tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
cdata.root.tables.assumed_wf_types_for_rpitit.get(cdata,
def_id.index).map(|lazy|
lazy.decode((cdata,
tcx))).process_decoded(tcx,
||
{
::core::panicking::panic_fmt(format_args!("{0:?} does not have a {1:?}",
def_id, "assumed_wf_types_for_rpitit"));
})
}
}
fn collect_return_position_impl_trait_in_trait_tys<'tcx>(tcx:
TyCtxt<'tcx>,
def_id_arg:
rustc_middle::queries::collect_return_position_impl_trait_in_trait_tys::Key<'tcx>)
->
rustc_middle::queries::collect_return_position_impl_trait_in_trait_tys::ProvidedValue<'tcx> {
let _prof_timer =
tcx.prof.generic_activity("metadata_decode_entry_collect_return_position_impl_trait_in_trait_tys");
#[allow(unused_variables)]
let (def_id, other) = def_id_arg.into_args();
if !!def_id.is_local() {
::core::panicking::panic("assertion failed: !def_id.is_local()")
};
use rustc_middle::dep_graph::DepKind;
if DepKind::collect_return_position_impl_trait_in_trait_tys !=
DepKind::crate_hash && tcx.dep_graph.is_fully_enabled() {
tcx.ensure_ok().crate_hash(def_id.krate);
}
let cstore = CStore::from_tcx(tcx);
let cdata = cstore.get_crate_data(def_id.krate);
{
Ok(cdata.root.tables.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 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_predicates_of,
generics_of,
inferred_outlives_of,
explicit_super_predicates_of,
explicit_implied_predicates_of,
type_of,
type_alias_is_lazy,
variances_of,
fn_sig,
codegen_fn_attrs,
impl_trait_header,
const_param_default,
object_lifetime_default,
thir_abstract_const,
optimized_mir,
mir_for_ctfe,
trivial_const,
closure_saved_names_of_captured_variables,
mir_coroutine_witnesses,
promoted_mir,
def_span,
def_ident_span,
lookup_stability,
lookup_const_stability,
lookup_default_body_stability,
lookup_deprecation_entry,
params_in_repr,
def_kind,
impl_parent,
defaultness,
constness,
const_conditions,
explicit_implied_const_bounds,
coerce_unsized_info,
mir_const_qualif,
rendered_const,
rendered_precise_capturing_args,
asyncness,
fn_arg_idents,
coroutine_kind,
coroutine_for_closure,
coroutine_by_move_body_def_id,
eval_static_initializer,
trait_def,
deduced_param_attrs,
opaque_ty_origin,
assumed_wf_types_for_rpitit,
collect_return_position_impl_trait_in_trait_tys,
associated_types_for_impl_traits_in_trait_or_impl,
visibility,
adt_def,
adt_destructor,
adt_async_destructor,
associated_item_def_ids,
associated_item,
inherent_impls,
attrs_for_def,
is_mir_available,
cross_crate_inlinable,
dylib_dependency_formats,
is_private_dep,
is_panic_runtime,
is_compiler_builtins,
has_global_allocator,
has_alloc_error_handler,
has_panic_handler,
externally_implementable_items,
is_profiler_runtime,
required_panic_strategy,
panic_in_drop_strategy,
extern_crate,
is_no_builtins,
symbol_mangling_version,
specialization_enabled_in,
reachable_non_generics,
native_libraries,
foreign_modules,
crate_hash,
crate_host_hash,
crate_name,
num_extern_def_ids,
extra_filename,
traits,
trait_impls_in_crate,
implementations_of_trait,
crate_incoherent_impls,
crate_dep_kind,
module_children,
lib_features,
stability_implications,
stripped_cfg_items,
intrinsic_raw,
defined_lang_items,
diagnostic_items,
missing_lang_items,
missing_extern_crate_item,
used_crate_source,
debugger_visualizers,
exportable_items,
stable_order_of_exportable_impls,
exported_non_generic_symbols,
exported_generic_symbols,
crate_extern_paths,
expn_that_defined,
default_field,
is_doc_hidden,
doc_link_resolutions,
doc_link_traits_in_scope,
anon_const_kind,
const_of_item,
args_known_to_outlive_alias_params,
..*providers
};
}provide! { tcx, def_id, other, cdata,
223 explicit_item_bounds => { table_defaulted_array }
224 explicit_item_self_bounds => { table_defaulted_array }
225 explicit_predicates_of => { table }
226 generics_of => { table }
227 inferred_outlives_of => { table_defaulted_array }
228 explicit_super_predicates_of => { table_defaulted_array }
229 explicit_implied_predicates_of => { table_defaulted_array }
230 type_of => { table }
231 type_alias_is_lazy => { table_direct }
232 variances_of => { table }
233 fn_sig => { table }
234 codegen_fn_attrs => { table }
235 impl_trait_header => { table }
236 const_param_default => { table }
237 object_lifetime_default => { table }
238 thir_abstract_const => { table }
239 optimized_mir => { table }
240 mir_for_ctfe => { table }
241 trivial_const => { table }
242 closure_saved_names_of_captured_variables => { table }
243 mir_coroutine_witnesses => { table }
244 promoted_mir => { table }
245 def_span => { table }
246 def_ident_span => { table }
247 lookup_stability => { table }
248 lookup_const_stability => { table }
249 lookup_default_body_stability => { table }
250 lookup_deprecation_entry => { table }
251 params_in_repr => { table }
252 def_kind => { cdata.def_kind(def_id.index) }
253 impl_parent => { table }
254 defaultness => { table_direct }
255 constness => { table_direct }
256 const_conditions => { table }
257 explicit_implied_const_bounds => { table_defaulted_array }
258 coerce_unsized_info => {
259 Ok(cdata
260 .root
261 .tables
262 .coerce_unsized_info
263 .get(cdata, def_id.index)
264 .map(|lazy| lazy.decode((cdata, tcx)))
265 .process_decoded(tcx, || panic!("{def_id:?} does not have coerce_unsized_info")))
266 }
267 mir_const_qualif => { table }
268 rendered_const => { table }
269 rendered_precise_capturing_args => { table }
270 asyncness => { table_direct }
271 fn_arg_idents => { table }
272 coroutine_kind => { table_direct }
273 coroutine_for_closure => { table }
274 coroutine_by_move_body_def_id => { table }
275 eval_static_initializer => {
276 Ok(cdata
277 .root
278 .tables
279 .eval_static_initializer
280 .get(cdata, def_id.index)
281 .map(|lazy| lazy.decode((cdata, tcx)))
282 .unwrap_or_else(|| panic!("{def_id:?} does not have eval_static_initializer")))
283 }
284 trait_def => { table }
285 deduced_param_attrs => {
286 cdata
290 .root
291 .tables
292 .deduced_param_attrs
293 .get(cdata, def_id.index)
294 .map(|lazy| {
295 &*tcx.arena.alloc_from_iter(lazy.decode((cdata, tcx)))
296 })
297 .unwrap_or_default()
298 }
299 opaque_ty_origin => { table }
300 assumed_wf_types_for_rpitit => { table }
301 collect_return_position_impl_trait_in_trait_tys => {
302 Ok(cdata
303 .root
304 .tables
305 .collect_return_position_impl_trait_in_trait_tys
306 .get(cdata, def_id.index)
307 .map(|lazy| lazy.decode((cdata, tcx)))
308 .process_decoded(tcx, || panic!("{def_id:?} does not have collect_return_position_impl_trait_in_trait_tys")))
309 }
310
311 associated_types_for_impl_traits_in_trait_or_impl => { table }
312
313 visibility => { cdata.get_visibility(tcx, def_id.index) }
314 adt_def => { cdata.get_adt_def(tcx, def_id.index) }
315 adt_destructor => { table }
316 adt_async_destructor => { table }
317 associated_item_def_ids => {
318 tcx.arena.alloc_from_iter(cdata.get_associated_item_or_field_def_ids(tcx, def_id.index))
319 }
320 associated_item => { cdata.get_associated_item(tcx, def_id.index) }
321 inherent_impls => { cdata.get_inherent_implementations_for_type(tcx, def_id.index) }
322 attrs_for_def => { tcx.arena.alloc_from_iter(cdata.get_item_attrs(tcx, def_id.index)) }
323 is_mir_available => { cdata.is_item_mir_available(def_id.index) }
324 cross_crate_inlinable => { table_direct }
325
326 dylib_dependency_formats => { cdata.get_dylib_dependency_formats(tcx) }
327 is_private_dep => { cdata.private_dep }
328 is_panic_runtime => { cdata.root.panic_runtime }
329 is_compiler_builtins => { cdata.root.compiler_builtins }
330
331 has_global_allocator => { cdata.root.has_global_allocator }
333 has_alloc_error_handler => { cdata.root.has_alloc_error_handler }
335 has_panic_handler => { cdata.root.has_panic_handler }
337
338 externally_implementable_items => {
339 cdata.get_externally_implementable_items(tcx)
340 .map(|(decl_did, (decl, impls))| (
341 decl_did,
342 (decl, impls.into_iter().collect())
343 )).collect()
344 }
345
346 is_profiler_runtime => { cdata.root.profiler_runtime }
347 required_panic_strategy => { cdata.root.required_panic_strategy }
348 panic_in_drop_strategy => { cdata.root.panic_in_drop_strategy }
349 extern_crate => { cdata.extern_crate.map(|c| &*tcx.arena.alloc(c)) }
350 is_no_builtins => { cdata.root.no_builtins }
351 symbol_mangling_version => { cdata.root.symbol_mangling_version }
352 specialization_enabled_in => { cdata.root.specialization_enabled_in }
353 reachable_non_generics => {
354 let reachable_non_generics = tcx
355 .exported_non_generic_symbols(cdata.cnum)
356 .iter()
357 .filter_map(|&(exported_symbol, export_info)| {
358 if let ExportedSymbol::NonGeneric(def_id) = exported_symbol {
359 Some((def_id, export_info))
360 } else {
361 None
362 }
363 })
364 .collect();
365
366 reachable_non_generics
367 }
368 native_libraries => { cdata.get_native_libraries(tcx).collect() }
369 foreign_modules => { cdata.get_foreign_modules(tcx).map(|m| (m.def_id, m)).collect() }
370 crate_hash => { cdata.root.header.hash }
371 crate_host_hash => { cdata.host_hash }
372 crate_name => { cdata.root.header.name }
373 num_extern_def_ids => { cdata.num_def_ids() }
374
375 extra_filename => { cdata.root.extra_filename.clone() }
376
377 traits => { tcx.arena.alloc_from_iter(cdata.get_traits(tcx)) }
378 trait_impls_in_crate => { tcx.arena.alloc_from_iter(cdata.get_trait_impls(tcx)) }
379 implementations_of_trait => { cdata.get_implementations_of_trait(tcx, other) }
380 crate_incoherent_impls => { cdata.get_incoherent_impls(tcx, other) }
381
382 crate_dep_kind => { cdata.dep_kind }
383 module_children => {
384 tcx.arena.alloc_from_iter(cdata.get_module_children(tcx, def_id.index))
385 }
386 lib_features => { cdata.get_lib_features(tcx) }
387 stability_implications => {
388 cdata.get_stability_implications(tcx).iter().copied().collect()
389 }
390 stripped_cfg_items => { cdata.get_stripped_cfg_items(tcx, cdata.cnum) }
391 intrinsic_raw => { cdata.get_intrinsic(tcx, def_id.index) }
392 defined_lang_items => { cdata.get_lang_items(tcx) }
393 diagnostic_items => { cdata.get_diagnostic_items(tcx) }
394 missing_lang_items => { cdata.get_missing_lang_items(tcx) }
395
396 missing_extern_crate_item => {
397 matches!(cdata.extern_crate, Some(extern_crate) if !extern_crate.is_direct())
398 }
399
400 used_crate_source => { Arc::clone(&cdata.source) }
401 debugger_visualizers => { cdata.get_debugger_visualizers(tcx) }
402
403 exportable_items => { tcx.arena.alloc_from_iter(cdata.get_exportable_items(tcx)) }
404 stable_order_of_exportable_impls => {
405 tcx.arena.alloc(cdata.get_stable_order_of_exportable_impls(tcx).collect())
406 }
407 exported_non_generic_symbols => { cdata.exported_non_generic_symbols(tcx) }
408 exported_generic_symbols => { cdata.exported_generic_symbols(tcx) }
409
410 crate_extern_paths => { cdata.source().paths().cloned().collect() }
411 expn_that_defined => { cdata.get_expn_that_defined(tcx, def_id.index) }
412 default_field => { cdata.get_default_field(tcx, def_id.index) }
413 is_doc_hidden => { cdata.get_attr_flags(def_id.index).contains(AttrFlags::IS_DOC_HIDDEN) }
414 doc_link_resolutions => { tcx.arena.alloc(cdata.get_doc_link_resolutions(tcx, def_id.index)) }
415 doc_link_traits_in_scope => {
416 tcx.arena.alloc_from_iter(cdata.get_doc_link_traits_in_scope(tcx, def_id.index))
417 }
418 anon_const_kind => { table }
419 const_of_item => { table }
420 args_known_to_outlive_alias_params => { table }
421}
422
423pub(in crate::rmeta) fn provide(providers: &mut Providers) {
424 provide_cstore_hooks(providers);
425 providers.queries = rustc_middle::query::Providers {
426 allocator_kind: |tcx, ()| CStore::from_tcx(tcx).allocator_kind(),
427 alloc_error_handler_kind: |tcx, ()| CStore::from_tcx(tcx).alloc_error_handler_kind(),
428 is_private_dep: |_tcx, LocalCrate| false,
429 native_library: |tcx, id| {
430 tcx.native_libraries(id.krate)
431 .iter()
432 .filter(|lib| native_libs::relevant_lib(tcx.sess, lib))
433 .find(|lib| {
434 let Some(fm_id) = lib.foreign_module else {
435 return false;
436 };
437 let map = tcx.foreign_modules(id.krate);
438 map.get(&fm_id)
439 .expect("failed to find foreign module")
440 .foreign_items
441 .contains(&id)
442 })
443 },
444 native_libraries: native_libs::collect,
445 foreign_modules: foreign_modules::collect,
446 externally_implementable_items: eii::collect,
447
448 visible_parent_map: |tcx, ()| {
453 use std::collections::hash_map::Entry;
454 use std::collections::vec_deque::VecDeque;
455
456 let mut visible_parent_map: DefIdMap<DefId> = Default::default();
457 let mut fallback_map: Vec<(DefId, DefId)> = Default::default();
466
467 let bfs_queue = &mut VecDeque::new();
478
479 for &cnum in tcx.crates(()) {
480 if tcx.missing_extern_crate_item(cnum) {
482 continue;
483 }
484
485 bfs_queue.push_back(cnum.as_def_id());
486 }
487
488 let mut add_child = |bfs_queue: &mut VecDeque<_>, child: &ModChild, parent: DefId| {
489 if !child.vis.is_public() {
490 return;
491 }
492
493 if let Some(def_id) = child.res.opt_def_id() {
494 if child.ident.name == kw::Underscore {
495 fallback_map.push((def_id, parent));
496 return;
497 }
498
499 if tcx.is_doc_hidden(parent) {
500 fallback_map.push((def_id, parent));
501 return;
502 }
503
504 if child
507 .reexport_chain
508 .first()
509 .and_then(|r| r.id())
510 .is_some_and(|id| tcx.is_doc_hidden(id))
511 {
512 fallback_map.push((def_id, parent));
513 return;
514 }
515
516 match visible_parent_map.entry(def_id) {
517 Entry::Occupied(mut entry) => {
518 if def_id.is_local() && entry.get().is_local() {
521 entry.insert(parent);
522 }
523 }
524 Entry::Vacant(entry) => {
525 entry.insert(parent);
526 if child.res.module_like_def_id().is_some() {
527 bfs_queue.push_back(def_id);
528 }
529 }
530 }
531 }
532 };
533
534 while let Some(def) = bfs_queue.pop_front() {
535 for child in tcx.module_children(def).iter() {
536 add_child(bfs_queue, child, def);
537 }
538 }
539
540 for (child, parent) in fallback_map {
545 visible_parent_map.entry(child).or_insert(parent);
546 }
547
548 visible_parent_map
549 },
550
551 dependency_formats: |tcx, ()| Arc::new(crate::dependency_format::calculate(tcx)),
552 has_global_allocator: |tcx, LocalCrate| CStore::from_tcx(tcx).has_global_allocator(),
553 has_alloc_error_handler: |tcx, LocalCrate| CStore::from_tcx(tcx).has_alloc_error_handler(),
554 postorder_cnums: |tcx, ()| {
555 tcx.arena.alloc_from_iter(
556 CStore::from_tcx(tcx).crate_dependencies_in_postorder(LOCAL_CRATE).into_iter(),
557 )
558 },
559 crates: |tcx, ()| {
560 tcx.untracked().freeze_cstore();
563 tcx.arena.alloc_from_iter(CStore::from_tcx(tcx).iter_crate_data().map(|(cnum, _)| cnum))
564 },
565 used_crates: |tcx, ()| {
566 tcx.untracked().freeze_cstore();
569 tcx.arena.alloc_from_iter(
570 CStore::from_tcx(tcx)
571 .iter_crate_data()
572 .filter_map(|(cnum, data)| data.used().then_some(cnum)),
573 )
574 },
575 duplicate_crate_names: |tcx, c: CrateNum| {
576 let name = tcx.crate_name(c);
577 tcx.arena.alloc_from_iter(
578 tcx.crates(())
579 .into_iter()
580 .filter(|k| tcx.crate_name(**k) == name && **k != c)
581 .map(|c| *c),
582 )
583 },
584 ..providers.queries
585 };
586 provide_extern(&mut providers.extern_queries);
587}
588
589impl CStore {
590 pub fn ctor_untracked(&self, tcx: TyCtxt<'_>, def: DefId) -> Option<(CtorKind, DefId)> {
591 self.get_crate_data(def.krate).get_ctor(tcx, def.index)
592 }
593
594 pub fn load_macro_untracked(&self, tcx: TyCtxt<'_>, id: DefId) -> LoadedMacro {
595 let sess = tcx.sess;
596 let _prof_timer = sess.prof.generic_activity("metadata_load_macro");
597
598 let cdata = self.get_crate_data(id.krate);
599 if cdata.root.is_proc_macro_crate() {
600 LoadedMacro::ProcMacro(cdata.load_proc_macro(tcx, id.index))
601 } else {
602 LoadedMacro::MacroDef {
603 def: cdata.get_macro(tcx, id.index),
604 ident: cdata.item_ident(tcx, id.index),
605 attrs: cdata.get_item_attrs(tcx, id.index).collect(),
606 span: cdata.get_span(tcx, id.index),
607 edition: cdata.root.edition,
608 }
609 }
610 }
611
612 pub fn def_span_untracked(&self, tcx: TyCtxt<'_>, def_id: DefId) -> Span {
613 self.get_crate_data(def_id.krate).get_span(tcx, def_id.index)
614 }
615
616 pub fn def_kind_untracked(&self, def: DefId) -> DefKind {
617 self.get_crate_data(def.krate).def_kind(def.index)
618 }
619
620 pub fn expn_that_defined_untracked(&self, tcx: TyCtxt<'_>, def_id: DefId) -> ExpnId {
621 self.get_crate_data(def_id.krate).get_expn_that_defined(tcx, def_id.index)
622 }
623
624 pub fn ambig_module_children_untracked(
625 &self,
626 tcx: TyCtxt<'_>,
627 def_id: DefId,
628 ) -> impl Iterator<Item = AmbigModChild> {
629 self.get_crate_data(def_id.krate).get_ambig_module_children(tcx, def_id.index)
630 }
631
632 pub fn num_def_ids_untracked(&self, cnum: CrateNum) -> usize {
636 self.get_crate_data(cnum).num_def_ids()
637 }
638
639 pub fn get_proc_macro_quoted_span_untracked(
640 &self,
641 tcx: TyCtxt<'_>,
642 cnum: CrateNum,
643 id: usize,
644 ) -> Span {
645 self.get_crate_data(cnum).get_proc_macro_quoted_span(tcx, id)
646 }
647
648 pub fn set_used_recursively(&mut self, cnum: CrateNum) {
649 let cdata = self.get_crate_data_mut(cnum);
650 if !cdata.used {
651 cdata.used = true;
652 let cnum_map = mem::take(&mut cdata.cnum_map);
653 for &dep_cnum in cnum_map.iter() {
654 self.set_used_recursively(dep_cnum);
655 }
656 self.get_crate_data_mut(cnum).cnum_map = cnum_map;
657 }
658 }
659
660 pub(crate) fn update_extern_crate(
665 &mut self,
666 cnum: CrateNum,
667 name: Symbol,
668 extern_crate: ExternCrate,
669 ) {
670 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!(
671 extern_crate.dependency_of, LOCAL_CRATE,
672 "this function should not be called on transitive dependencies"
673 );
674 self.set_resolved_extern_crate_name(name, cnum);
675 self.update_transitive_extern_crate_diagnostics(cnum, extern_crate);
676 }
677
678 fn update_transitive_extern_crate_diagnostics(
680 &mut self,
681 cnum: CrateNum,
682 extern_crate: ExternCrate,
683 ) {
684 let cdata = self.get_crate_data_mut(cnum);
685 if cdata.update_extern_crate_diagnostics(extern_crate) {
686 let extern_crate = ExternCrate { dependency_of: cnum, ..extern_crate };
688 let cnum_map = mem::take(&mut cdata.cnum_map);
689 for &dep_cnum in cnum_map.iter() {
690 self.update_transitive_extern_crate_diagnostics(dep_cnum, extern_crate);
691 }
692 self.get_crate_data_mut(cnum).cnum_map = cnum_map;
693 }
694 }
695}
696
697impl CrateStore for CStore {
698 fn as_any(&self) -> &dyn Any {
699 self
700 }
701
702 fn untracked_as_any(&mut self) -> &mut dyn Any {
703 self
704 }
705
706 fn crate_name(&self, cnum: CrateNum) -> Symbol {
707 self.get_crate_data(cnum).root.header.name
708 }
709
710 fn stable_crate_id(&self, cnum: CrateNum) -> StableCrateId {
711 self.get_crate_data(cnum).root.stable_crate_id
712 }
713
714 fn def_key(&self, def: DefId) -> DefKey {
718 self.get_crate_data(def.krate).def_key(def.index)
719 }
720
721 fn def_path(&self, def: DefId) -> DefPath {
722 self.get_crate_data(def.krate).def_path(def.index)
723 }
724
725 fn def_path_hash(&self, def: DefId) -> DefPathHash {
726 self.get_crate_data(def.krate).def_path_hash(def.index)
727 }
728}
729
730fn provide_cstore_hooks(providers: &mut Providers) {
731 providers.hooks.def_path_hash_to_def_id_extern = |tcx, hash, stable_crate_id| {
732 let cstore = CStore::from_tcx(tcx);
735 let cnum = *tcx
736 .untracked()
737 .stable_crate_ids
738 .read()
739 .get(&stable_crate_id)
740 .unwrap_or_else(|| ::rustc_middle::util::bug::bug_fmt(format_args!("uninterned StableCrateId: {0:?}",
stable_crate_id))bug!("uninterned StableCrateId: {stable_crate_id:?}"));
741 {
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);
742 let def_index = cstore.get_crate_data(cnum).def_path_hash_to_def_index(hash)?;
743 Some(DefId { krate: cnum, index: def_index })
744 };
745
746 providers.hooks.expn_hash_to_expn_id = |tcx, cnum, index_guess, hash| {
747 let cstore = CStore::from_tcx(tcx);
748 cstore.get_crate_data(cnum).expn_hash_to_expn_id(tcx, index_guess, hash)
749 };
750 providers.hooks.import_source_files = |tcx, cnum| {
751 let cstore = CStore::from_tcx(tcx);
752 let cdata = cstore.get_crate_data(cnum);
753 for file_index in 0..cdata.root.source_map.size() {
754 cdata.imported_source_file(tcx, file_index as u32);
755 }
756 };
757}