1use std::borrow::Borrow;
2use std::collections::hash_map::Entry;
3use std::fs::File;
4use std::io::{Read, Seek, Write};
5use std::path::{Path, PathBuf};
6use std::sync::Arc;
7
8use rustc_data_structures::fx::{FxIndexMap, FxIndexSet};
9use rustc_data_structures::memmap::{Mmap, MmapMut};
10use rustc_data_structures::sync::{par_for_each_in, par_join};
11use rustc_data_structures::temp_dir::MaybeTempDir;
12use rustc_data_structures::thousands::usize_with_underscores;
13use rustc_hir as hir;
14use rustc_hir::attrs::{AttributeKind, EncodeCrossCrate};
15use rustc_hir::def_id::{CRATE_DEF_ID, LOCAL_CRATE, LocalDefId, LocalDefIdSet};
16use rustc_hir::definitions::DefPathData;
17use rustc_hir::find_attr;
18use rustc_hir_pretty::id_to_string;
19use rustc_middle::dep_graph::WorkProductId;
20use rustc_middle::middle::dependency_format::Linkage;
21use rustc_middle::mir::interpret;
22use rustc_middle::query::Providers;
23use rustc_middle::traits::specialization_graph;
24use rustc_middle::ty::AssocContainer;
25use rustc_middle::ty::codec::TyEncoder;
26use rustc_middle::ty::fast_reject::{self, TreatParams};
27use rustc_middle::{bug, span_bug};
28use rustc_serialize::{Decodable, Decoder, Encodable, Encoder, opaque};
29use rustc_session::config::mitigation_coverage::DeniedPartialMitigation;
30use rustc_session::config::{CrateType, OptLevel, TargetModifier};
31use rustc_span::hygiene::HygieneEncodeContext;
32use rustc_span::{
33 ByteSymbol, ExternalSource, FileName, SourceFile, SpanData, SpanEncoder, StableSourceFileId,
34 Symbol, SyntaxContext, sym,
35};
36use tracing::{debug, instrument, trace};
37
38use crate::eii::EiiMapEncodedKeyValue;
39use crate::errors::{FailCreateFileEncoder, FailWriteFile};
40use crate::rmeta::*;
41
42pub(super) struct EncodeContext<'a, 'tcx> {
43 opaque: opaque::FileEncoder,
44 tcx: TyCtxt<'tcx>,
45 feat: &'tcx rustc_feature::Features,
46 tables: TableBuilders,
47
48 lazy_state: LazyState,
49 span_shorthands: FxHashMap<Span, usize>,
50 type_shorthands: FxHashMap<Ty<'tcx>, usize>,
51 predicate_shorthands: FxHashMap<ty::PredicateKind<'tcx>, usize>,
52
53 interpret_allocs: FxIndexSet<interpret::AllocId>,
54
55 source_file_cache: (Arc<SourceFile>, usize),
59 required_source_files: Option<FxIndexSet<usize>>,
66 is_proc_macro: bool,
67 hygiene_ctxt: &'a HygieneEncodeContext,
68 symbol_index_table: FxHashMap<u32, usize>,
70}
71
72macro_rules! empty_proc_macro {
76 ($self:ident) => {
77 if $self.is_proc_macro {
78 return LazyArray::default();
79 }
80 };
81}
82
83macro_rules! encoder_methods {
84 ($($name:ident($ty:ty);)*) => {
85 $(fn $name(&mut self, value: $ty) {
86 self.opaque.$name(value)
87 })*
88 }
89}
90
91impl<'a, 'tcx> Encoder for EncodeContext<'a, 'tcx> {
92 fn emit_raw_bytes(&mut self, value: &[u8]) {
self.opaque.emit_raw_bytes(value)
}encoder_methods! {
93 emit_usize(usize);
94 emit_u128(u128);
95 emit_u64(u64);
96 emit_u32(u32);
97 emit_u16(u16);
98 emit_u8(u8);
99
100 emit_isize(isize);
101 emit_i128(i128);
102 emit_i64(i64);
103 emit_i32(i32);
104 emit_i16(i16);
105
106 emit_raw_bytes(&[u8]);
107 }
108}
109
110impl<'a, 'tcx, T> Encodable<EncodeContext<'a, 'tcx>> for LazyValue<T> {
111 fn encode(&self, e: &mut EncodeContext<'a, 'tcx>) {
112 e.emit_lazy_distance(self.position);
113 }
114}
115
116impl<'a, 'tcx, T> Encodable<EncodeContext<'a, 'tcx>> for LazyArray<T> {
117 fn encode(&self, e: &mut EncodeContext<'a, 'tcx>) {
118 e.emit_usize(self.num_elems);
119 if self.num_elems > 0 {
120 e.emit_lazy_distance(self.position)
121 }
122 }
123}
124
125impl<'a, 'tcx, I, T> Encodable<EncodeContext<'a, 'tcx>> for LazyTable<I, T> {
126 fn encode(&self, e: &mut EncodeContext<'a, 'tcx>) {
127 e.emit_usize(self.width);
128 e.emit_usize(self.len);
129 e.emit_lazy_distance(self.position);
130 }
131}
132
133impl<'a, 'tcx> Encodable<EncodeContext<'a, 'tcx>> for ExpnIndex {
134 fn encode(&self, s: &mut EncodeContext<'a, 'tcx>) {
135 s.emit_u32(self.as_u32());
136 }
137}
138
139impl<'a, 'tcx> SpanEncoder for EncodeContext<'a, 'tcx> {
140 fn encode_crate_num(&mut self, crate_num: CrateNum) {
141 if crate_num != LOCAL_CRATE && self.is_proc_macro {
142 {
::core::panicking::panic_fmt(format_args!("Attempted to encode non-local CrateNum {0:?} for proc-macro crate",
crate_num));
};panic!("Attempted to encode non-local CrateNum {crate_num:?} for proc-macro crate");
143 }
144 self.emit_u32(crate_num.as_u32());
145 }
146
147 fn encode_def_index(&mut self, def_index: DefIndex) {
148 self.emit_u32(def_index.as_u32());
149 }
150
151 fn encode_def_id(&mut self, def_id: DefId) {
152 def_id.krate.encode(self);
153 def_id.index.encode(self);
154 }
155
156 fn encode_syntax_context(&mut self, syntax_context: SyntaxContext) {
157 rustc_span::hygiene::raw_encode_syntax_context(syntax_context, self.hygiene_ctxt, self);
158 }
159
160 fn encode_expn_id(&mut self, expn_id: ExpnId) {
161 if expn_id.krate == LOCAL_CRATE {
162 self.hygiene_ctxt.schedule_expn_data_for_encoding(expn_id);
167 }
168 expn_id.krate.encode(self);
169 expn_id.local_id.encode(self);
170 }
171
172 fn encode_span(&mut self, span: Span) {
173 match self.span_shorthands.entry(span) {
174 Entry::Occupied(o) => {
175 let last_location = *o.get();
178 let offset = self.opaque.position() - last_location;
181 if offset < last_location {
182 let needed = bytes_needed(offset);
183 SpanTag::indirect(true, needed as u8).encode(self);
184 self.opaque.write_with(|dest| {
185 *dest = offset.to_le_bytes();
186 needed
187 });
188 } else {
189 let needed = bytes_needed(last_location);
190 SpanTag::indirect(false, needed as u8).encode(self);
191 self.opaque.write_with(|dest| {
192 *dest = last_location.to_le_bytes();
193 needed
194 });
195 }
196 }
197 Entry::Vacant(v) => {
198 let position = self.opaque.position();
199 v.insert(position);
200 span.data().encode(self);
202 }
203 }
204 }
205
206 fn encode_symbol(&mut self, sym: Symbol) {
207 self.encode_symbol_or_byte_symbol(sym.as_u32(), |this| this.emit_str(sym.as_str()));
208 }
209
210 fn encode_byte_symbol(&mut self, byte_sym: ByteSymbol) {
211 self.encode_symbol_or_byte_symbol(byte_sym.as_u32(), |this| {
212 this.emit_byte_str(byte_sym.as_byte_str())
213 });
214 }
215}
216
217fn bytes_needed(n: usize) -> usize {
218 (usize::BITS - n.leading_zeros()).div_ceil(u8::BITS) as usize
219}
220
221impl<'a, 'tcx> Encodable<EncodeContext<'a, 'tcx>> for SpanData {
222 fn encode(&self, s: &mut EncodeContext<'a, 'tcx>) {
223 let ctxt = if s.is_proc_macro { SyntaxContext::root() } else { self.ctxt };
255
256 if self.is_dummy() {
257 let tag = SpanTag::new(SpanKind::Partial, ctxt, 0);
258 tag.encode(s);
259 if tag.context().is_none() {
260 ctxt.encode(s);
261 }
262 return;
263 }
264
265 if true {
if !(self.lo <= self.hi) {
::core::panicking::panic("assertion failed: self.lo <= self.hi")
};
};debug_assert!(self.lo <= self.hi);
267
268 if !s.source_file_cache.0.contains(self.lo) {
269 let source_map = s.tcx.sess.source_map();
270 let source_file_index = source_map.lookup_source_file_idx(self.lo);
271 s.source_file_cache =
272 (Arc::clone(&source_map.files()[source_file_index]), source_file_index);
273 }
274 let (ref source_file, source_file_index) = s.source_file_cache;
275 if true {
if !source_file.contains(self.lo) {
::core::panicking::panic("assertion failed: source_file.contains(self.lo)")
};
};debug_assert!(source_file.contains(self.lo));
276
277 if !source_file.contains(self.hi) {
278 let tag = SpanTag::new(SpanKind::Partial, ctxt, 0);
281 tag.encode(s);
282 if tag.context().is_none() {
283 ctxt.encode(s);
284 }
285 return;
286 }
287
288 let (kind, metadata_index) = if source_file.is_imported() && !s.is_proc_macro {
305 let metadata_index = {
315 match &*source_file.external_src.read() {
317 ExternalSource::Foreign { metadata_index, .. } => *metadata_index,
318 src => {
::core::panicking::panic_fmt(format_args!("Unexpected external source {0:?}",
src));
}panic!("Unexpected external source {src:?}"),
319 }
320 };
321
322 (SpanKind::Foreign, metadata_index)
323 } else {
324 let source_files =
326 s.required_source_files.as_mut().expect("Already encoded SourceMap!");
327 let (metadata_index, _) = source_files.insert_full(source_file_index);
328 let metadata_index: u32 =
329 metadata_index.try_into().expect("cannot export more than U32_MAX files");
330
331 (SpanKind::Local, metadata_index)
332 };
333
334 let lo = self.lo - source_file.start_pos;
337
338 let len = self.hi - self.lo;
341
342 let tag = SpanTag::new(kind, ctxt, len.0 as usize);
343 tag.encode(s);
344 if tag.context().is_none() {
345 ctxt.encode(s);
346 }
347 lo.encode(s);
348 if tag.length().is_none() {
349 len.encode(s);
350 }
351
352 metadata_index.encode(s);
354
355 if kind == SpanKind::Foreign {
356 let cnum = s.source_file_cache.0.cnum;
359 cnum.encode(s);
360 }
361 }
362}
363
364impl<'a, 'tcx> Encodable<EncodeContext<'a, 'tcx>> for [u8] {
365 fn encode(&self, e: &mut EncodeContext<'a, 'tcx>) {
366 Encoder::emit_usize(e, self.len());
367 e.emit_raw_bytes(self);
368 }
369}
370
371impl<'a, 'tcx> TyEncoder<'tcx> for EncodeContext<'a, 'tcx> {
372 const CLEAR_CROSS_CRATE: bool = true;
373
374 fn position(&self) -> usize {
375 self.opaque.position()
376 }
377
378 fn type_shorthands(&mut self) -> &mut FxHashMap<Ty<'tcx>, usize> {
379 &mut self.type_shorthands
380 }
381
382 fn predicate_shorthands(&mut self) -> &mut FxHashMap<ty::PredicateKind<'tcx>, usize> {
383 &mut self.predicate_shorthands
384 }
385
386 fn encode_alloc_id(&mut self, alloc_id: &rustc_middle::mir::interpret::AllocId) {
387 let (index, _) = self.interpret_allocs.insert_full(*alloc_id);
388
389 index.encode(self);
390 }
391}
392
393macro_rules! record {
396 ($self:ident.$tables:ident.$table:ident[$def_id:expr] <- $value:expr) => {{
397 {
398 let value = $value;
399 let lazy = $self.lazy(value);
400 $self.$tables.$table.set_some($def_id.index, lazy);
401 }
402 }};
403}
404
405macro_rules! record_array {
408 ($self:ident.$tables:ident.$table:ident[$def_id:expr] <- $value:expr) => {{
409 {
410 let value = $value;
411 let lazy = $self.lazy_array(value);
412 $self.$tables.$table.set_some($def_id.index, lazy);
413 }
414 }};
415}
416
417macro_rules! record_defaulted_array {
418 ($self:ident.$tables:ident.$table:ident[$def_id:expr] <- $value:expr) => {{
419 {
420 let value = $value;
421 let lazy = $self.lazy_array(value);
422 $self.$tables.$table.set($def_id.index, lazy);
423 }
424 }};
425}
426
427impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
428 fn emit_lazy_distance(&mut self, position: NonZero<usize>) {
429 let pos = position.get();
430 let distance = match self.lazy_state {
431 LazyState::NoNode => ::rustc_middle::util::bug::bug_fmt(format_args!("emit_lazy_distance: outside of a metadata node"))bug!("emit_lazy_distance: outside of a metadata node"),
432 LazyState::NodeStart(start) => {
433 let start = start.get();
434 if !(pos <= start) {
::core::panicking::panic("assertion failed: pos <= start")
};assert!(pos <= start);
435 start - pos
436 }
437 LazyState::Previous(last_pos) => {
438 if !(last_pos <= position) {
{
::core::panicking::panic_fmt(format_args!("make sure that the calls to `lazy*` are in the same order as the metadata fields"));
}
};assert!(
439 last_pos <= position,
440 "make sure that the calls to `lazy*` \
441 are in the same order as the metadata fields",
442 );
443 position.get() - last_pos.get()
444 }
445 };
446 self.lazy_state = LazyState::Previous(NonZero::new(pos).unwrap());
447 self.emit_usize(distance);
448 }
449
450 fn lazy<T: ParameterizedOverTcx, B: Borrow<T::Value<'tcx>>>(&mut self, value: B) -> LazyValue<T>
451 where
452 T::Value<'tcx>: Encodable<EncodeContext<'a, 'tcx>>,
453 {
454 let pos = NonZero::new(self.position()).unwrap();
455
456 match (&self.lazy_state, &LazyState::NoNode) {
(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::None);
}
}
};assert_eq!(self.lazy_state, LazyState::NoNode);
457 self.lazy_state = LazyState::NodeStart(pos);
458 value.borrow().encode(self);
459 self.lazy_state = LazyState::NoNode;
460
461 if !(pos.get() <= self.position()) {
::core::panicking::panic("assertion failed: pos.get() <= self.position()")
};assert!(pos.get() <= self.position());
462
463 LazyValue::from_position(pos)
464 }
465
466 fn lazy_array<T: ParameterizedOverTcx, I: IntoIterator<Item = B>, B: Borrow<T::Value<'tcx>>>(
467 &mut self,
468 values: I,
469 ) -> LazyArray<T>
470 where
471 T::Value<'tcx>: Encodable<EncodeContext<'a, 'tcx>>,
472 {
473 let pos = NonZero::new(self.position()).unwrap();
474
475 match (&self.lazy_state, &LazyState::NoNode) {
(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::None);
}
}
};assert_eq!(self.lazy_state, LazyState::NoNode);
476 self.lazy_state = LazyState::NodeStart(pos);
477 let len = values.into_iter().map(|value| value.borrow().encode(self)).count();
478 self.lazy_state = LazyState::NoNode;
479
480 if !(pos.get() <= self.position()) {
::core::panicking::panic("assertion failed: pos.get() <= self.position()")
};assert!(pos.get() <= self.position());
481
482 LazyArray::from_position_and_num_elems(pos, len)
483 }
484
485 fn encode_symbol_or_byte_symbol(
486 &mut self,
487 index: u32,
488 emit_str_or_byte_str: impl Fn(&mut Self),
489 ) {
490 if Symbol::is_predefined(index) {
492 self.opaque.emit_u8(SYMBOL_PREDEFINED);
493 self.opaque.emit_u32(index);
494 } else {
495 match self.symbol_index_table.entry(index) {
497 Entry::Vacant(o) => {
498 self.opaque.emit_u8(SYMBOL_STR);
499 let pos = self.opaque.position();
500 o.insert(pos);
501 emit_str_or_byte_str(self);
502 }
503 Entry::Occupied(o) => {
504 let x = *o.get();
505 self.emit_u8(SYMBOL_OFFSET);
506 self.emit_usize(x);
507 }
508 }
509 }
510 }
511
512 fn encode_def_path_table(&mut self) {
513 let defs = self.tcx.definitions();
514 if self.is_proc_macro {
515 for def_id in std::iter::once(CRATE_DEF_ID)
516 .chain(self.tcx.resolutions(()).proc_macros.iter().copied())
517 {
518 let def_key = self.lazy(defs.def_key(def_id));
519 let def_path_hash = defs.def_path_hash(def_id);
520 self.tables.def_keys.set_some(def_id.local_def_index, def_key);
521 self.tables
522 .def_path_hashes
523 .set(def_id.local_def_index, def_path_hash.local_hash().as_u64());
524 }
525 } else {
526 for (def_index, def_key, def_path_hash) in defs.enumerated_keys_and_path_hashes() {
527 let def_key = self.lazy(def_key);
528 self.tables.def_keys.set_some(def_index, def_key);
529 self.tables.def_path_hashes.set(def_index, def_path_hash.local_hash().as_u64());
530 }
531 }
532 }
533
534 fn encode_def_path_hash_map(&mut self) -> LazyValue<DefPathHashMapRef<'static>> {
535 self.lazy(DefPathHashMapRef::BorrowedFromTcx(self.tcx.def_path_hash_to_def_index_map()))
536 }
537
538 fn encode_source_map(&mut self) -> LazyTable<u32, Option<LazyValue<rustc_span::SourceFile>>> {
539 let source_map = self.tcx.sess.source_map();
540 let all_source_files = source_map.files();
541
542 let required_source_files = self.required_source_files.take().unwrap();
546
547 let mut adapted = TableBuilder::default();
548
549 let local_crate_stable_id = self.tcx.stable_crate_id(LOCAL_CRATE);
550
551 for (on_disk_index, &source_file_index) in required_source_files.iter().enumerate() {
556 let source_file = &all_source_files[source_file_index];
557 if !(!source_file.is_imported() || self.is_proc_macro) {
::core::panicking::panic("assertion failed: !source_file.is_imported() || self.is_proc_macro")
};assert!(!source_file.is_imported() || self.is_proc_macro);
559
560 let mut adapted_source_file = (**source_file).clone();
568
569 match source_file.name {
570 FileName::Real(ref original_file_name) => {
571 let mut adapted_file_name = original_file_name.clone();
572 adapted_file_name.update_for_crate_metadata();
573 adapted_source_file.name = FileName::Real(adapted_file_name);
574 }
575 _ => {
576 }
578 };
579
580 if self.is_proc_macro {
587 adapted_source_file.cnum = LOCAL_CRATE;
588 }
589
590 adapted_source_file.stable_id = StableSourceFileId::from_filename_for_export(
594 &adapted_source_file.name,
595 local_crate_stable_id,
596 );
597
598 let on_disk_index: u32 =
599 on_disk_index.try_into().expect("cannot export more than U32_MAX files");
600 adapted.set_some(on_disk_index, self.lazy(adapted_source_file));
601 }
602
603 adapted.encode(&mut self.opaque)
604 }
605
606 fn encode_crate_root(&mut self) -> LazyValue<CrateRoot> {
607 let tcx = self.tcx;
608 let mut stats: Vec<(&'static str, usize)> = Vec::with_capacity(32);
609
610 macro_rules! stat {
611 ($label:literal, $f:expr) => {{
612 let orig_pos = self.position();
613 let res = $f();
614 stats.push(($label, self.position() - orig_pos));
615 res
616 }};
617 }
618
619 stats.push(("preamble", self.position()));
621
622 let externally_implementable_items = {
let orig_pos = self.position();
let res = (|| self.encode_externally_implementable_items())();
stats.push(("externally-implementable-items",
self.position() - orig_pos));
res
}stat!("externally-implementable-items", || self
623 .encode_externally_implementable_items());
624
625 let (crate_deps, dylib_dependency_formats) =
626 {
let orig_pos = self.position();
let res =
(||
(self.encode_crate_deps(),
self.encode_dylib_dependency_formats()))();
stats.push(("dep", self.position() - orig_pos));
res
}stat!("dep", || (self.encode_crate_deps(), self.encode_dylib_dependency_formats()));
627
628 let lib_features = {
let orig_pos = self.position();
let res = (|| self.encode_lib_features())();
stats.push(("lib-features", self.position() - orig_pos));
res
}stat!("lib-features", || self.encode_lib_features());
629
630 let stability_implications =
631 {
let orig_pos = self.position();
let res = (|| self.encode_stability_implications())();
stats.push(("stability-implications", self.position() - orig_pos));
res
}stat!("stability-implications", || self.encode_stability_implications());
632
633 let (lang_items, lang_items_missing) = {
let orig_pos = self.position();
let res =
(||
{
(self.encode_lang_items(), self.encode_lang_items_missing())
})();
stats.push(("lang-items", self.position() - orig_pos));
res
}stat!("lang-items", || {
634 (self.encode_lang_items(), self.encode_lang_items_missing())
635 });
636
637 let stripped_cfg_items = {
let orig_pos = self.position();
let res = (|| self.encode_stripped_cfg_items())();
stats.push(("stripped-cfg-items", self.position() - orig_pos));
res
}stat!("stripped-cfg-items", || self.encode_stripped_cfg_items());
638
639 let diagnostic_items = {
let orig_pos = self.position();
let res = (|| self.encode_diagnostic_items())();
stats.push(("diagnostic-items", self.position() - orig_pos));
res
}stat!("diagnostic-items", || self.encode_diagnostic_items());
640
641 let native_libraries = {
let orig_pos = self.position();
let res = (|| self.encode_native_libraries())();
stats.push(("native-libs", self.position() - orig_pos));
res
}stat!("native-libs", || self.encode_native_libraries());
642
643 let foreign_modules = {
let orig_pos = self.position();
let res = (|| self.encode_foreign_modules())();
stats.push(("foreign-modules", self.position() - orig_pos));
res
}stat!("foreign-modules", || self.encode_foreign_modules());
644
645 _ = {
let orig_pos = self.position();
let res = (|| self.encode_def_path_table())();
stats.push(("def-path-table", self.position() - orig_pos));
res
}stat!("def-path-table", || self.encode_def_path_table());
646
647 let traits = {
let orig_pos = self.position();
let res = (|| self.encode_traits())();
stats.push(("traits", self.position() - orig_pos));
res
}stat!("traits", || self.encode_traits());
649
650 let impls = {
let orig_pos = self.position();
let res = (|| self.encode_impls())();
stats.push(("impls", self.position() - orig_pos));
res
}stat!("impls", || self.encode_impls());
652
653 let incoherent_impls = {
let orig_pos = self.position();
let res = (|| self.encode_incoherent_impls())();
stats.push(("incoherent-impls", self.position() - orig_pos));
res
}stat!("incoherent-impls", || self.encode_incoherent_impls());
654
655 _ = {
let orig_pos = self.position();
let res = (|| self.encode_mir())();
stats.push(("mir", self.position() - orig_pos));
res
}stat!("mir", || self.encode_mir());
656
657 _ = {
let orig_pos = self.position();
let res = (|| self.encode_def_ids())();
stats.push(("def-ids", self.position() - orig_pos));
res
}stat!("def-ids", || self.encode_def_ids());
658
659 let interpret_alloc_index = {
let orig_pos = self.position();
let res =
(||
{
let mut interpret_alloc_index = Vec::new();
let mut n = 0;
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_metadata/src/rmeta/encoder.rs:662",
"rustc_metadata::rmeta::encoder", ::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(662u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("beginning to encode alloc ids")
as &dyn Value))])
});
} else { ; }
};
loop {
let new_n = self.interpret_allocs.len();
if n == new_n { break; }
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_metadata/src/rmeta/encoder.rs:670",
"rustc_metadata::rmeta::encoder", ::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(670u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::TRACE <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("encoding {0} further alloc ids",
new_n - n) as &dyn Value))])
});
} else { ; }
};
for idx in n..new_n {
let id = self.interpret_allocs[idx];
let pos = self.position() as u64;
interpret_alloc_index.push(pos);
interpret::specialized_encode_alloc_id(self, tcx, id);
}
n = new_n;
}
self.lazy_array(interpret_alloc_index)
})();
stats.push(("interpret-alloc-index", self.position() - orig_pos));
res
}stat!("interpret-alloc-index", || {
660 let mut interpret_alloc_index = Vec::new();
661 let mut n = 0;
662 trace!("beginning to encode alloc ids");
663 loop {
664 let new_n = self.interpret_allocs.len();
665 if n == new_n {
667 break;
669 }
670 trace!("encoding {} further alloc ids", new_n - n);
671 for idx in n..new_n {
672 let id = self.interpret_allocs[idx];
673 let pos = self.position() as u64;
674 interpret_alloc_index.push(pos);
675 interpret::specialized_encode_alloc_id(self, tcx, id);
676 }
677 n = new_n;
678 }
679 self.lazy_array(interpret_alloc_index)
680 });
681
682 let proc_macro_data = {
let orig_pos = self.position();
let res = (|| self.encode_proc_macros())();
stats.push(("proc-macro-data", self.position() - orig_pos));
res
}stat!("proc-macro-data", || self.encode_proc_macros());
686
687 let tables = {
let orig_pos = self.position();
let res = (|| self.tables.encode(&mut self.opaque))();
stats.push(("tables", self.position() - orig_pos));
res
}stat!("tables", || self.tables.encode(&mut self.opaque));
688
689 let debugger_visualizers =
690 {
let orig_pos = self.position();
let res = (|| self.encode_debugger_visualizers())();
stats.push(("debugger-visualizers", self.position() - orig_pos));
res
}stat!("debugger-visualizers", || self.encode_debugger_visualizers());
691
692 let exportable_items = {
let orig_pos = self.position();
let res = (|| self.encode_exportable_items())();
stats.push(("exportable-items", self.position() - orig_pos));
res
}stat!("exportable-items", || self.encode_exportable_items());
693
694 let stable_order_of_exportable_impls =
695 {
let orig_pos = self.position();
let res = (|| self.encode_stable_order_of_exportable_impls())();
stats.push(("exportable-items", self.position() - orig_pos));
res
}stat!("exportable-items", || self.encode_stable_order_of_exportable_impls());
696
697 let (exported_non_generic_symbols, exported_generic_symbols) =
699 {
let orig_pos = self.position();
let res =
(||
{
(self.encode_exported_symbols(tcx.exported_non_generic_symbols(LOCAL_CRATE)),
self.encode_exported_symbols(tcx.exported_generic_symbols(LOCAL_CRATE)))
})();
stats.push(("exported-symbols", self.position() - orig_pos));
res
}stat!("exported-symbols", || {
700 (
701 self.encode_exported_symbols(tcx.exported_non_generic_symbols(LOCAL_CRATE)),
702 self.encode_exported_symbols(tcx.exported_generic_symbols(LOCAL_CRATE)),
703 )
704 });
705
706 let (syntax_contexts, expn_data, expn_hashes) = {
let orig_pos = self.position();
let res = (|| self.encode_hygiene())();
stats.push(("hygiene", self.position() - orig_pos));
res
}stat!("hygiene", || self.encode_hygiene());
713
714 let def_path_hash_map = {
let orig_pos = self.position();
let res = (|| self.encode_def_path_hash_map())();
stats.push(("def-path-hash-map", self.position() - orig_pos));
res
}stat!("def-path-hash-map", || self.encode_def_path_hash_map());
715
716 let source_map = {
let orig_pos = self.position();
let res = (|| self.encode_source_map())();
stats.push(("source-map", self.position() - orig_pos));
res
}stat!("source-map", || self.encode_source_map());
719 let target_modifiers = {
let orig_pos = self.position();
let res = (|| self.encode_target_modifiers())();
stats.push(("target-modifiers", self.position() - orig_pos));
res
}stat!("target-modifiers", || self.encode_target_modifiers());
720 let denied_partial_mitigations = {
let orig_pos = self.position();
let res = (|| self.encode_enabled_denied_partial_mitigations())();
stats.push(("denied-partial-mitigations", self.position() - orig_pos));
res
}stat!("denied-partial-mitigations", || self
721 .encode_enabled_denied_partial_mitigations());
722
723 let root = {
let orig_pos = self.position();
let res =
(||
{
let attrs = tcx.hir_krate_attrs();
self.lazy(CrateRoot {
header: CrateHeader {
name: tcx.crate_name(LOCAL_CRATE),
triple: tcx.sess.opts.target_triple.clone(),
hash: tcx.crate_hash(LOCAL_CRATE),
is_proc_macro_crate: proc_macro_data.is_some(),
is_stub: false,
},
extra_filename: tcx.sess.opts.cg.extra_filename.clone(),
stable_crate_id: tcx.stable_crate_id(LOCAL_CRATE),
required_panic_strategy: tcx.required_panic_strategy(LOCAL_CRATE),
panic_in_drop_strategy: tcx.sess.opts.unstable_opts.panic_in_drop,
edition: tcx.sess.edition(),
has_global_allocator: tcx.has_global_allocator(LOCAL_CRATE),
has_alloc_error_handler: tcx.has_alloc_error_handler(LOCAL_CRATE),
has_panic_handler: tcx.has_panic_handler(LOCAL_CRATE),
has_default_lib_allocator: {
{
'done:
{
for i in attrs {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(DefaultLibAllocator) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}.is_some()
},
externally_implementable_items,
proc_macro_data,
debugger_visualizers,
compiler_builtins: {
{
'done:
{
for i in attrs {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(CompilerBuiltins) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}.is_some()
},
needs_allocator: {
{
'done:
{
for i in attrs {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(NeedsAllocator) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}.is_some()
},
needs_panic_runtime: {
{
'done:
{
for i in attrs {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(NeedsPanicRuntime) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}.is_some()
},
no_builtins: {
{
'done:
{
for i in attrs {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(NoBuiltins) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}.is_some()
},
panic_runtime: {
{
'done:
{
for i in attrs {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(PanicRuntime) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}.is_some()
},
profiler_runtime: {
{
'done:
{
for i in attrs {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(ProfilerRuntime) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}.is_some()
},
symbol_mangling_version: tcx.sess.opts.get_symbol_mangling_version(),
crate_deps,
dylib_dependency_formats,
lib_features,
stability_implications,
lang_items,
diagnostic_items,
lang_items_missing,
stripped_cfg_items,
native_libraries,
foreign_modules,
source_map,
target_modifiers,
denied_partial_mitigations,
traits,
impls,
incoherent_impls,
exportable_items,
stable_order_of_exportable_impls,
exported_non_generic_symbols,
exported_generic_symbols,
interpret_alloc_index,
tables,
syntax_contexts,
expn_data,
expn_hashes,
def_path_hash_map,
specialization_enabled_in: tcx.specialization_enabled_in(LOCAL_CRATE),
})
})();
stats.push(("final", self.position() - orig_pos));
res
}stat!("final", || {
724 let attrs = tcx.hir_krate_attrs();
725 self.lazy(CrateRoot {
726 header: CrateHeader {
727 name: tcx.crate_name(LOCAL_CRATE),
728 triple: tcx.sess.opts.target_triple.clone(),
729 hash: tcx.crate_hash(LOCAL_CRATE),
730 is_proc_macro_crate: proc_macro_data.is_some(),
731 is_stub: false,
732 },
733 extra_filename: tcx.sess.opts.cg.extra_filename.clone(),
734 stable_crate_id: tcx.stable_crate_id(LOCAL_CRATE),
735 required_panic_strategy: tcx.required_panic_strategy(LOCAL_CRATE),
736 panic_in_drop_strategy: tcx.sess.opts.unstable_opts.panic_in_drop,
737 edition: tcx.sess.edition(),
738 has_global_allocator: tcx.has_global_allocator(LOCAL_CRATE),
739 has_alloc_error_handler: tcx.has_alloc_error_handler(LOCAL_CRATE),
740 has_panic_handler: tcx.has_panic_handler(LOCAL_CRATE),
741 has_default_lib_allocator: find_attr!(attrs, DefaultLibAllocator),
742 externally_implementable_items,
743 proc_macro_data,
744 debugger_visualizers,
745 compiler_builtins: find_attr!(attrs, CompilerBuiltins),
746 needs_allocator: find_attr!(attrs, NeedsAllocator),
747 needs_panic_runtime: find_attr!(attrs, NeedsPanicRuntime),
748 no_builtins: find_attr!(attrs, NoBuiltins),
749 panic_runtime: find_attr!(attrs, PanicRuntime),
750 profiler_runtime: find_attr!(attrs, ProfilerRuntime),
751 symbol_mangling_version: tcx.sess.opts.get_symbol_mangling_version(),
752
753 crate_deps,
754 dylib_dependency_formats,
755 lib_features,
756 stability_implications,
757 lang_items,
758 diagnostic_items,
759 lang_items_missing,
760 stripped_cfg_items,
761 native_libraries,
762 foreign_modules,
763 source_map,
764 target_modifiers,
765 denied_partial_mitigations,
766 traits,
767 impls,
768 incoherent_impls,
769 exportable_items,
770 stable_order_of_exportable_impls,
771 exported_non_generic_symbols,
772 exported_generic_symbols,
773 interpret_alloc_index,
774 tables,
775 syntax_contexts,
776 expn_data,
777 expn_hashes,
778 def_path_hash_map,
779 specialization_enabled_in: tcx.specialization_enabled_in(LOCAL_CRATE),
780 })
781 });
782
783 let total_bytes = self.position();
784
785 let computed_total_bytes: usize = stats.iter().map(|(_, size)| size).sum();
786 match (&total_bytes, &computed_total_bytes) {
(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::None);
}
}
};assert_eq!(total_bytes, computed_total_bytes);
787
788 if tcx.sess.opts.unstable_opts.meta_stats {
789 use std::fmt::Write;
790
791 self.opaque.flush();
792
793 let pos_before_rewind = self.opaque.file().stream_position().unwrap();
795 let mut zero_bytes = 0;
796 self.opaque.file().rewind().unwrap();
797 let file = std::io::BufReader::new(self.opaque.file());
798 for e in file.bytes() {
799 if e.unwrap() == 0 {
800 zero_bytes += 1;
801 }
802 }
803 match (&self.opaque.file().stream_position().unwrap(), &pos_before_rewind) {
(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::None);
}
}
};assert_eq!(self.opaque.file().stream_position().unwrap(), pos_before_rewind);
804
805 stats.sort_by_key(|&(_, usize)| usize);
806 stats.reverse(); let prefix = "meta-stats";
809 let perc = |bytes| (bytes * 100) as f64 / total_bytes as f64;
810
811 let section_w = 23;
812 let size_w = 10;
813 let banner_w = 64;
814
815 let mut s = String::new();
821 _ = s.write_fmt(format_args!("{1} {0}\n", "=".repeat(banner_w), prefix))writeln!(s, "{prefix} {}", "=".repeat(banner_w));
822 _ = s.write_fmt(format_args!("{1} METADATA STATS: {0}\n",
tcx.crate_name(LOCAL_CRATE), prefix))writeln!(s, "{prefix} METADATA STATS: {}", tcx.crate_name(LOCAL_CRATE));
823 _ = s.write_fmt(format_args!("{2} {0:<3$}{1:>4$}\n", "Section", "Size", prefix,
section_w, size_w))writeln!(s, "{prefix} {:<section_w$}{:>size_w$}", "Section", "Size");
824 _ = s.write_fmt(format_args!("{1} {0}\n", "-".repeat(banner_w), prefix))writeln!(s, "{prefix} {}", "-".repeat(banner_w));
825 for (label, size) in stats {
826 _ = s.write_fmt(format_args!("{3} {0:<4$}{1:>5$} ({2:4.1}%)\n", label,
usize_with_underscores(size), perc(size), prefix, section_w, size_w))writeln!(
827 s,
828 "{prefix} {:<section_w$}{:>size_w$} ({:4.1}%)",
829 label,
830 usize_with_underscores(size),
831 perc(size)
832 );
833 }
834 _ = s.write_fmt(format_args!("{1} {0}\n", "-".repeat(banner_w), prefix))writeln!(s, "{prefix} {}", "-".repeat(banner_w));
835 _ = s.write_fmt(format_args!("{3} {0:<4$}{1:>5$} (of which {2:.1}% are zero bytes)\n",
"Total", usize_with_underscores(total_bytes), perc(zero_bytes),
prefix, section_w, size_w))writeln!(
836 s,
837 "{prefix} {:<section_w$}{:>size_w$} (of which {:.1}% are zero bytes)",
838 "Total",
839 usize_with_underscores(total_bytes),
840 perc(zero_bytes)
841 );
842 _ = s.write_fmt(format_args!("{1} {0}\n", "=".repeat(banner_w), prefix))writeln!(s, "{prefix} {}", "=".repeat(banner_w));
843 { ::std::io::_eprint(format_args!("{0}", s)); };eprint!("{s}");
844 }
845
846 root
847 }
848}
849
850struct AnalyzeAttrState {
851 is_exported: bool,
852 is_doc_hidden: bool,
853}
854
855#[inline]
865fn analyze_attr(attr: &hir::Attribute, state: &mut AnalyzeAttrState) -> bool {
866 let mut should_encode = false;
867 if let hir::Attribute::Parsed(p) = attr
868 && p.encode_cross_crate() == EncodeCrossCrate::No
869 {
870 } else if let Some(name) = attr.name()
872 && [sym::warn, sym::allow, sym::expect, sym::forbid, sym::deny].contains(&name)
873 {
874 } else if let hir::Attribute::Parsed(AttributeKind::DocComment { .. }) = attr {
877 if state.is_exported {
881 should_encode = true;
882 }
883 } else if let hir::Attribute::Parsed(AttributeKind::Doc(d)) = attr {
884 should_encode = true;
885 if d.hidden.is_some() {
886 state.is_doc_hidden = true;
887 }
888 } else {
889 should_encode = true;
890 }
891 should_encode
892}
893
894fn should_encode_span(def_kind: DefKind) -> bool {
895 match def_kind {
896 DefKind::Mod
897 | DefKind::Struct
898 | DefKind::Union
899 | DefKind::Enum
900 | DefKind::Variant
901 | DefKind::Trait
902 | DefKind::TyAlias
903 | DefKind::ForeignTy
904 | DefKind::TraitAlias
905 | DefKind::AssocTy
906 | DefKind::TyParam
907 | DefKind::ConstParam
908 | DefKind::LifetimeParam
909 | DefKind::Fn
910 | DefKind::Const { .. }
911 | DefKind::Static { .. }
912 | DefKind::Ctor(..)
913 | DefKind::AssocFn
914 | DefKind::AssocConst { .. }
915 | DefKind::Macro(_)
916 | DefKind::ExternCrate
917 | DefKind::Use
918 | DefKind::AnonConst
919 | DefKind::InlineConst
920 | DefKind::OpaqueTy
921 | DefKind::Field
922 | DefKind::Impl { .. }
923 | DefKind::Closure
924 | DefKind::SyntheticCoroutineBody => true,
925 DefKind::ForeignMod | DefKind::GlobalAsm => false,
926 }
927}
928
929fn should_encode_attrs(def_kind: DefKind) -> bool {
930 match def_kind {
931 DefKind::Mod
932 | DefKind::Struct
933 | DefKind::Union
934 | DefKind::Enum
935 | DefKind::Variant
936 | DefKind::Trait
937 | DefKind::TyAlias
938 | DefKind::ForeignTy
939 | DefKind::TraitAlias
940 | DefKind::AssocTy
941 | DefKind::Fn
942 | DefKind::Const { .. }
943 | DefKind::Static { nested: false, .. }
944 | DefKind::AssocFn
945 | DefKind::AssocConst { .. }
946 | DefKind::Macro(_)
947 | DefKind::Field
948 | DefKind::Impl { .. } => true,
949 DefKind::Use => true,
953 DefKind::Closure => true,
958 DefKind::SyntheticCoroutineBody => false,
959 DefKind::TyParam
960 | DefKind::ConstParam
961 | DefKind::Ctor(..)
962 | DefKind::ExternCrate
963 | DefKind::ForeignMod
964 | DefKind::AnonConst
965 | DefKind::InlineConst
966 | DefKind::OpaqueTy
967 | DefKind::LifetimeParam
968 | DefKind::Static { nested: true, .. }
969 | DefKind::GlobalAsm => false,
970 }
971}
972
973fn should_encode_expn_that_defined(def_kind: DefKind) -> bool {
974 match def_kind {
975 DefKind::Mod
976 | DefKind::Struct
977 | DefKind::Union
978 | DefKind::Enum
979 | DefKind::Variant
980 | DefKind::Trait
981 | DefKind::Impl { .. } => true,
982 DefKind::TyAlias
983 | DefKind::ForeignTy
984 | DefKind::TraitAlias
985 | DefKind::AssocTy
986 | DefKind::TyParam
987 | DefKind::Fn
988 | DefKind::Const { .. }
989 | DefKind::ConstParam
990 | DefKind::Static { .. }
991 | DefKind::Ctor(..)
992 | DefKind::AssocFn
993 | DefKind::AssocConst { .. }
994 | DefKind::Macro(_)
995 | DefKind::ExternCrate
996 | DefKind::Use
997 | DefKind::ForeignMod
998 | DefKind::AnonConst
999 | DefKind::InlineConst
1000 | DefKind::OpaqueTy
1001 | DefKind::Field
1002 | DefKind::LifetimeParam
1003 | DefKind::GlobalAsm
1004 | DefKind::Closure
1005 | DefKind::SyntheticCoroutineBody => false,
1006 }
1007}
1008
1009fn should_encode_visibility(def_kind: DefKind) -> bool {
1010 match def_kind {
1011 DefKind::Mod
1012 | DefKind::Struct
1013 | DefKind::Union
1014 | DefKind::Enum
1015 | DefKind::Variant
1016 | DefKind::Trait
1017 | DefKind::TyAlias
1018 | DefKind::ForeignTy
1019 | DefKind::TraitAlias
1020 | DefKind::AssocTy
1021 | DefKind::Fn
1022 | DefKind::Const { .. }
1023 | DefKind::Static { nested: false, .. }
1024 | DefKind::Ctor(..)
1025 | DefKind::AssocFn
1026 | DefKind::AssocConst { .. }
1027 | DefKind::Macro(..)
1028 | DefKind::Field => true,
1029 DefKind::Use
1030 | DefKind::ForeignMod
1031 | DefKind::TyParam
1032 | DefKind::ConstParam
1033 | DefKind::LifetimeParam
1034 | DefKind::AnonConst
1035 | DefKind::InlineConst
1036 | DefKind::Static { nested: true, .. }
1037 | DefKind::OpaqueTy
1038 | DefKind::GlobalAsm
1039 | DefKind::Impl { .. }
1040 | DefKind::Closure
1041 | DefKind::ExternCrate
1042 | DefKind::SyntheticCoroutineBody => false,
1043 }
1044}
1045
1046fn should_encode_stability(def_kind: DefKind) -> bool {
1047 match def_kind {
1048 DefKind::Mod
1049 | DefKind::Ctor(..)
1050 | DefKind::Variant
1051 | DefKind::Field
1052 | DefKind::Struct
1053 | DefKind::AssocTy
1054 | DefKind::AssocFn
1055 | DefKind::AssocConst { .. }
1056 | DefKind::TyParam
1057 | DefKind::ConstParam
1058 | DefKind::Static { .. }
1059 | DefKind::Const { .. }
1060 | DefKind::Fn
1061 | DefKind::ForeignMod
1062 | DefKind::TyAlias
1063 | DefKind::OpaqueTy
1064 | DefKind::Enum
1065 | DefKind::Union
1066 | DefKind::Impl { .. }
1067 | DefKind::Trait
1068 | DefKind::TraitAlias
1069 | DefKind::Macro(..)
1070 | DefKind::ForeignTy => true,
1071 DefKind::Use
1072 | DefKind::LifetimeParam
1073 | DefKind::AnonConst
1074 | DefKind::InlineConst
1075 | DefKind::GlobalAsm
1076 | DefKind::Closure
1077 | DefKind::ExternCrate
1078 | DefKind::SyntheticCoroutineBody => false,
1079 }
1080}
1081
1082fn should_encode_mir(
1103 tcx: TyCtxt<'_>,
1104 reachable_set: &LocalDefIdSet,
1105 def_id: LocalDefId,
1106) -> (bool, bool) {
1107 match tcx.def_kind(def_id) {
1108 DefKind::Ctor(_, _) => (true, false),
1110 DefKind::AnonConst { .. }
1112 | DefKind::InlineConst
1113 | DefKind::AssocConst { .. }
1114 | DefKind::Const { .. } => (true, false),
1115 DefKind::Closure if tcx.is_coroutine(def_id.to_def_id()) => (false, true),
1117 DefKind::SyntheticCoroutineBody => (false, true),
1118 DefKind::AssocFn | DefKind::Fn | DefKind::Closure => {
1120 let opt = tcx.sess.opts.unstable_opts.always_encode_mir
1121 || (tcx.sess.opts.output_types.should_codegen()
1122 && reachable_set.contains(&def_id)
1123 && (tcx.generics_of(def_id).requires_monomorphization(tcx)
1124 || tcx.cross_crate_inlinable(def_id)));
1125 let is_const_fn = tcx.is_const_fn(def_id.to_def_id());
1127 (is_const_fn, opt)
1128 }
1129 _ => (false, false),
1131 }
1132}
1133
1134fn should_encode_variances<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId, def_kind: DefKind) -> bool {
1135 match def_kind {
1136 DefKind::Struct
1137 | DefKind::Union
1138 | DefKind::Enum
1139 | DefKind::OpaqueTy
1140 | DefKind::Fn
1141 | DefKind::Ctor(..)
1142 | DefKind::AssocFn => true,
1143 DefKind::AssocTy => {
1144 #[allow(non_exhaustive_omitted_patterns)] match tcx.opt_rpitit_info(def_id) {
Some(ty::ImplTraitInTraitData::Trait { .. }) => true,
_ => false,
}matches!(tcx.opt_rpitit_info(def_id), Some(ty::ImplTraitInTraitData::Trait { .. }))
1146 }
1147 DefKind::Mod
1148 | DefKind::Variant
1149 | DefKind::Field
1150 | DefKind::AssocConst { .. }
1151 | DefKind::TyParam
1152 | DefKind::ConstParam
1153 | DefKind::Static { .. }
1154 | DefKind::Const { .. }
1155 | DefKind::ForeignMod
1156 | DefKind::Impl { .. }
1157 | DefKind::Trait
1158 | DefKind::TraitAlias
1159 | DefKind::Macro(..)
1160 | DefKind::ForeignTy
1161 | DefKind::Use
1162 | DefKind::LifetimeParam
1163 | DefKind::AnonConst
1164 | DefKind::InlineConst
1165 | DefKind::GlobalAsm
1166 | DefKind::Closure
1167 | DefKind::ExternCrate
1168 | DefKind::SyntheticCoroutineBody => false,
1169 DefKind::TyAlias => tcx.type_alias_is_lazy(def_id),
1170 }
1171}
1172
1173fn should_encode_generics(def_kind: DefKind) -> bool {
1174 match def_kind {
1175 DefKind::Struct
1176 | DefKind::Union
1177 | DefKind::Enum
1178 | DefKind::Variant
1179 | DefKind::Trait
1180 | DefKind::TyAlias
1181 | DefKind::ForeignTy
1182 | DefKind::TraitAlias
1183 | DefKind::AssocTy
1184 | DefKind::Fn
1185 | DefKind::Const { .. }
1186 | DefKind::Static { .. }
1187 | DefKind::Ctor(..)
1188 | DefKind::AssocFn
1189 | DefKind::AssocConst { .. }
1190 | DefKind::AnonConst
1191 | DefKind::InlineConst
1192 | DefKind::OpaqueTy
1193 | DefKind::Impl { .. }
1194 | DefKind::Field
1195 | DefKind::TyParam
1196 | DefKind::Closure
1197 | DefKind::SyntheticCoroutineBody => true,
1198 DefKind::Mod
1199 | DefKind::ForeignMod
1200 | DefKind::ConstParam
1201 | DefKind::Macro(..)
1202 | DefKind::Use
1203 | DefKind::LifetimeParam
1204 | DefKind::GlobalAsm
1205 | DefKind::ExternCrate => false,
1206 }
1207}
1208
1209fn should_encode_type(tcx: TyCtxt<'_>, def_id: LocalDefId, def_kind: DefKind) -> bool {
1210 match def_kind {
1211 DefKind::Struct
1212 | DefKind::Union
1213 | DefKind::Enum
1214 | DefKind::Variant
1215 | DefKind::Ctor(..)
1216 | DefKind::Field
1217 | DefKind::Fn
1218 | DefKind::Const { .. }
1219 | DefKind::Static { nested: false, .. }
1220 | DefKind::TyAlias
1221 | DefKind::ForeignTy
1222 | DefKind::Impl { .. }
1223 | DefKind::AssocFn
1224 | DefKind::AssocConst { .. }
1225 | DefKind::Closure
1226 | DefKind::ConstParam
1227 | DefKind::AnonConst
1228 | DefKind::InlineConst
1229 | DefKind::SyntheticCoroutineBody => true,
1230
1231 DefKind::OpaqueTy => {
1232 let origin = tcx.local_opaque_ty_origin(def_id);
1233 if let hir::OpaqueTyOrigin::FnReturn { parent, .. }
1234 | hir::OpaqueTyOrigin::AsyncFn { parent, .. } = origin
1235 && let hir::Node::TraitItem(trait_item) = tcx.hir_node_by_def_id(parent)
1236 && let (_, hir::TraitFn::Required(..)) = trait_item.expect_fn()
1237 {
1238 false
1239 } else {
1240 true
1241 }
1242 }
1243
1244 DefKind::AssocTy => {
1245 let assoc_item = tcx.associated_item(def_id);
1246 match assoc_item.container {
1247 ty::AssocContainer::InherentImpl | ty::AssocContainer::TraitImpl(_) => true,
1248 ty::AssocContainer::Trait => assoc_item.defaultness(tcx).has_value(),
1249 }
1250 }
1251 DefKind::TyParam => {
1252 let hir::Node::GenericParam(param) = tcx.hir_node_by_def_id(def_id) else { ::rustc_middle::util::bug::bug_fmt(format_args!("impossible case reached"))bug!() };
1253 let hir::GenericParamKind::Type { default, .. } = param.kind else { ::rustc_middle::util::bug::bug_fmt(format_args!("impossible case reached"))bug!() };
1254 default.is_some()
1255 }
1256
1257 DefKind::Trait
1258 | DefKind::TraitAlias
1259 | DefKind::Mod
1260 | DefKind::ForeignMod
1261 | DefKind::Macro(..)
1262 | DefKind::Static { nested: true, .. }
1263 | DefKind::Use
1264 | DefKind::LifetimeParam
1265 | DefKind::GlobalAsm
1266 | DefKind::ExternCrate => false,
1267 }
1268}
1269
1270fn should_encode_fn_sig(def_kind: DefKind) -> bool {
1271 match def_kind {
1272 DefKind::Fn | DefKind::AssocFn | DefKind::Ctor(_, CtorKind::Fn) => true,
1273
1274 DefKind::Struct
1275 | DefKind::Union
1276 | DefKind::Enum
1277 | DefKind::Variant
1278 | DefKind::Field
1279 | DefKind::Const { .. }
1280 | DefKind::Static { .. }
1281 | DefKind::Ctor(..)
1282 | DefKind::TyAlias
1283 | DefKind::OpaqueTy
1284 | DefKind::ForeignTy
1285 | DefKind::Impl { .. }
1286 | DefKind::AssocConst { .. }
1287 | DefKind::Closure
1288 | DefKind::ConstParam
1289 | DefKind::AnonConst
1290 | DefKind::InlineConst
1291 | DefKind::AssocTy
1292 | DefKind::TyParam
1293 | DefKind::Trait
1294 | DefKind::TraitAlias
1295 | DefKind::Mod
1296 | DefKind::ForeignMod
1297 | DefKind::Macro(..)
1298 | DefKind::Use
1299 | DefKind::LifetimeParam
1300 | DefKind::GlobalAsm
1301 | DefKind::ExternCrate
1302 | DefKind::SyntheticCoroutineBody => false,
1303 }
1304}
1305
1306fn should_encode_constness(def_kind: DefKind) -> bool {
1307 match def_kind {
1308 DefKind::Fn
1309 | DefKind::AssocFn
1310 | DefKind::Closure
1311 | DefKind::Ctor(_, CtorKind::Fn)
1312 | DefKind::Impl { of_trait: false } => true,
1313
1314 DefKind::Struct
1315 | DefKind::Union
1316 | DefKind::Enum
1317 | DefKind::Field
1318 | DefKind::Const { .. }
1319 | DefKind::AssocConst { .. }
1320 | DefKind::AnonConst
1321 | DefKind::Static { .. }
1322 | DefKind::TyAlias
1323 | DefKind::OpaqueTy
1324 | DefKind::Impl { .. }
1325 | DefKind::ForeignTy
1326 | DefKind::ConstParam
1327 | DefKind::InlineConst
1328 | DefKind::AssocTy
1329 | DefKind::TyParam
1330 | DefKind::Trait
1331 | DefKind::TraitAlias
1332 | DefKind::Mod
1333 | DefKind::ForeignMod
1334 | DefKind::Macro(..)
1335 | DefKind::Use
1336 | DefKind::LifetimeParam
1337 | DefKind::GlobalAsm
1338 | DefKind::ExternCrate
1339 | DefKind::Ctor(_, CtorKind::Const)
1340 | DefKind::Variant
1341 | DefKind::SyntheticCoroutineBody => false,
1342 }
1343}
1344
1345fn should_encode_const(def_kind: DefKind) -> bool {
1346 match def_kind {
1347 DefKind::Const { .. }
1349 | DefKind::AssocConst { .. }
1350 | DefKind::AnonConst
1351 | DefKind::InlineConst => true,
1352
1353 DefKind::Struct
1354 | DefKind::Union
1355 | DefKind::Enum
1356 | DefKind::Variant
1357 | DefKind::Ctor(..)
1358 | DefKind::Field
1359 | DefKind::Fn
1360 | DefKind::Static { .. }
1361 | DefKind::TyAlias
1362 | DefKind::OpaqueTy
1363 | DefKind::ForeignTy
1364 | DefKind::Impl { .. }
1365 | DefKind::AssocFn
1366 | DefKind::Closure
1367 | DefKind::ConstParam
1368 | DefKind::AssocTy
1369 | DefKind::TyParam
1370 | DefKind::Trait
1371 | DefKind::TraitAlias
1372 | DefKind::Mod
1373 | DefKind::ForeignMod
1374 | DefKind::Macro(..)
1375 | DefKind::Use
1376 | DefKind::LifetimeParam
1377 | DefKind::GlobalAsm
1378 | DefKind::ExternCrate
1379 | DefKind::SyntheticCoroutineBody => false,
1380 }
1381}
1382
1383fn should_encode_const_of_item<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId, def_kind: DefKind) -> bool {
1384 tcx.is_type_const(def_id)
1386 && (!#[allow(non_exhaustive_omitted_patterns)] match def_kind {
DefKind::AssocConst { .. } => true,
_ => false,
}matches!(def_kind, DefKind::AssocConst { .. }) || assoc_item_has_value(tcx, def_id))
1387}
1388
1389fn assoc_item_has_value<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId) -> bool {
1390 let assoc_item = tcx.associated_item(def_id);
1391 match assoc_item.container {
1392 ty::AssocContainer::InherentImpl | ty::AssocContainer::TraitImpl(_) => true,
1393 ty::AssocContainer::Trait => assoc_item.defaultness(tcx).has_value(),
1394 }
1395}
1396
1397impl<'a, 'tcx> EncodeContext<'a, 'tcx> {
1398 fn encode_attrs(&mut self, def_id: LocalDefId) {
1399 let tcx = self.tcx;
1400 let mut state = AnalyzeAttrState {
1401 is_exported: tcx.effective_visibilities(()).is_exported(def_id),
1402 is_doc_hidden: false,
1403 };
1404 let attr_iter = tcx
1405 .hir_attrs(tcx.local_def_id_to_hir_id(def_id))
1406 .iter()
1407 .filter(|attr| analyze_attr(*attr, &mut state));
1408
1409 {
{
let value = attr_iter;
let lazy = self.lazy_array(value);
self.tables.attributes.set_some(def_id.to_def_id().index, lazy);
}
};record_array!(self.tables.attributes[def_id.to_def_id()] <- attr_iter);
1410
1411 let mut attr_flags = AttrFlags::empty();
1412 if state.is_doc_hidden {
1413 attr_flags |= AttrFlags::IS_DOC_HIDDEN;
1414 }
1415 self.tables.attr_flags.set(def_id.local_def_index, attr_flags);
1416 }
1417
1418 fn encode_def_ids(&mut self) {
1419 self.encode_info_for_mod(CRATE_DEF_ID);
1420
1421 if self.is_proc_macro {
1424 return;
1425 }
1426
1427 let tcx = self.tcx;
1428
1429 for local_id in tcx.iter_local_def_id() {
1430 let def_id = local_id.to_def_id();
1431 let def_kind = tcx.def_kind(local_id);
1432 self.tables.def_kind.set_some(def_id.index, def_kind);
1433
1434 if def_kind == DefKind::AnonConst
1439 && match tcx.hir_node_by_def_id(local_id) {
1440 hir::Node::ConstArg(hir::ConstArg { kind, .. }) => match kind {
1441 hir::ConstArgKind::Error(..)
1443 | hir::ConstArgKind::Struct(..)
1444 | hir::ConstArgKind::Array(..)
1445 | hir::ConstArgKind::TupleCall(..)
1446 | hir::ConstArgKind::Tup(..)
1447 | hir::ConstArgKind::Path(..)
1448 | hir::ConstArgKind::Literal { .. }
1449 | hir::ConstArgKind::Infer(..) => true,
1450 hir::ConstArgKind::Anon(..) => false,
1451 },
1452 _ => false,
1453 }
1454 {
1455 if !tcx.features().min_generic_const_args() {
1457 continue;
1458 }
1459 }
1460
1461 if def_kind == DefKind::Field
1462 && let hir::Node::Field(field) = tcx.hir_node_by_def_id(local_id)
1463 && let Some(anon) = field.default
1464 {
1465 {
{
let value = anon.def_id.to_def_id();
let lazy = self.lazy(value);
self.tables.default_fields.set_some(def_id.index, lazy);
}
};record!(self.tables.default_fields[def_id] <- anon.def_id.to_def_id());
1466 }
1467
1468 if should_encode_span(def_kind) {
1469 let def_span = tcx.def_span(local_id);
1470 {
{
let value = def_span;
let lazy = self.lazy(value);
self.tables.def_span.set_some(def_id.index, lazy);
}
};record!(self.tables.def_span[def_id] <- def_span);
1471 }
1472 if should_encode_attrs(def_kind) {
1473 self.encode_attrs(local_id);
1474 }
1475 if should_encode_expn_that_defined(def_kind) {
1476 {
{
let value = self.tcx.expn_that_defined(def_id);
let lazy = self.lazy(value);
self.tables.expn_that_defined.set_some(def_id.index, lazy);
}
};record!(self.tables.expn_that_defined[def_id] <- self.tcx.expn_that_defined(def_id));
1477 }
1478 if should_encode_span(def_kind)
1479 && let Some(ident_span) = tcx.def_ident_span(def_id)
1480 {
1481 {
{
let value = ident_span;
let lazy = self.lazy(value);
self.tables.def_ident_span.set_some(def_id.index, lazy);
}
};record!(self.tables.def_ident_span[def_id] <- ident_span);
1482 }
1483 if def_kind.has_codegen_attrs() {
1484 {
{
let value = self.tcx.codegen_fn_attrs(def_id);
let lazy = self.lazy(value);
self.tables.codegen_fn_attrs.set_some(def_id.index, lazy);
}
};record!(self.tables.codegen_fn_attrs[def_id] <- self.tcx.codegen_fn_attrs(def_id));
1485 }
1486 if should_encode_visibility(def_kind) {
1487 let vis =
1488 self.tcx.local_visibility(local_id).map_id(|def_id| def_id.local_def_index);
1489 {
{
let value = vis;
let lazy = self.lazy(value);
self.tables.visibility.set_some(def_id.index, lazy);
}
};record!(self.tables.visibility[def_id] <- vis);
1490 }
1491 if should_encode_stability(def_kind) {
1492 self.encode_stability(def_id);
1493 self.encode_const_stability(def_id);
1494 self.encode_default_body_stability(def_id);
1495 self.encode_deprecation(def_id);
1496 }
1497 if should_encode_variances(tcx, def_id, def_kind) {
1498 let v = self.tcx.variances_of(def_id);
1499 {
{
let value = v;
let lazy = self.lazy_array(value);
self.tables.variances_of.set_some(def_id.index, lazy);
}
};record_array!(self.tables.variances_of[def_id] <- v);
1500 }
1501 if should_encode_fn_sig(def_kind) {
1502 {
{
let value = tcx.fn_sig(def_id);
let lazy = self.lazy(value);
self.tables.fn_sig.set_some(def_id.index, lazy);
}
};record!(self.tables.fn_sig[def_id] <- tcx.fn_sig(def_id));
1503 }
1504 if should_encode_generics(def_kind) {
1505 let g = tcx.generics_of(def_id);
1506 {
{
let value = g;
let lazy = self.lazy(value);
self.tables.generics_of.set_some(def_id.index, lazy);
}
};record!(self.tables.generics_of[def_id] <- g);
1507 {
{
let value = self.tcx.explicit_predicates_of(def_id);
let lazy = self.lazy(value);
self.tables.explicit_predicates_of.set_some(def_id.index, lazy);
}
};record!(self.tables.explicit_predicates_of[def_id] <- self.tcx.explicit_predicates_of(def_id));
1508 let inferred_outlives = self.tcx.inferred_outlives_of(def_id);
1509 {
{
let value = inferred_outlives;
let lazy = self.lazy_array(value);
self.tables.inferred_outlives_of.set(def_id.index, lazy);
}
};record_defaulted_array!(self.tables.inferred_outlives_of[def_id] <- inferred_outlives);
1510
1511 for param in &g.own_params {
1512 if let ty::GenericParamDefKind::Const { has_default: true, .. } = param.kind {
1513 let default = self.tcx.const_param_default(param.def_id);
1514 {
{
let value = default;
let lazy = self.lazy(value);
self.tables.const_param_default.set_some(param.def_id.index, lazy);
}
};record!(self.tables.const_param_default[param.def_id] <- default);
1515 }
1516 }
1517 }
1518 if tcx.is_conditionally_const(def_id) {
1519 {
{
let value = self.tcx.const_conditions(def_id);
let lazy = self.lazy(value);
self.tables.const_conditions.set_some(def_id.index, lazy);
}
};record!(self.tables.const_conditions[def_id] <- self.tcx.const_conditions(def_id));
1520 }
1521 if should_encode_type(tcx, local_id, def_kind) {
1522 {
{
let value = self.tcx.type_of(def_id);
let lazy = self.lazy(value);
self.tables.type_of.set_some(def_id.index, lazy);
}
};record!(self.tables.type_of[def_id] <- self.tcx.type_of(def_id));
1523 }
1524 if should_encode_constness(def_kind) {
1525 let constness = self.tcx.constness(def_id);
1526 self.tables.constness.set(def_id.index, constness);
1527 }
1528 if let DefKind::Fn | DefKind::AssocFn = def_kind {
1529 let asyncness = tcx.asyncness(def_id);
1530 self.tables.asyncness.set(def_id.index, asyncness);
1531 {
{
let value = tcx.fn_arg_idents(def_id);
let lazy = self.lazy_array(value);
self.tables.fn_arg_idents.set_some(def_id.index, lazy);
}
};record_array!(self.tables.fn_arg_idents[def_id] <- tcx.fn_arg_idents(def_id));
1532 }
1533 if let Some(name) = tcx.intrinsic(def_id) {
1534 {
{
let value = name;
let lazy = self.lazy(value);
self.tables.intrinsic.set_some(def_id.index, lazy);
}
};record!(self.tables.intrinsic[def_id] <- name);
1535 }
1536 if let DefKind::TyParam = def_kind {
1537 let default = self.tcx.object_lifetime_default(def_id);
1538 {
{
let value = default;
let lazy = self.lazy(value);
self.tables.object_lifetime_default.set_some(def_id.index, lazy);
}
};record!(self.tables.object_lifetime_default[def_id] <- default);
1539 }
1540 if let DefKind::Trait = def_kind {
1541 {
{
let value = self.tcx.trait_def(def_id);
let lazy = self.lazy(value);
self.tables.trait_def.set_some(def_id.index, lazy);
}
};record!(self.tables.trait_def[def_id] <- self.tcx.trait_def(def_id));
1542 {
{
let value =
self.tcx.explicit_super_predicates_of(def_id).skip_binder();
let lazy = self.lazy_array(value);
self.tables.explicit_super_predicates_of.set(def_id.index, lazy);
}
};record_defaulted_array!(self.tables.explicit_super_predicates_of[def_id] <-
1543 self.tcx.explicit_super_predicates_of(def_id).skip_binder());
1544 {
{
let value =
self.tcx.explicit_implied_predicates_of(def_id).skip_binder();
let lazy = self.lazy_array(value);
self.tables.explicit_implied_predicates_of.set(def_id.index, lazy);
}
};record_defaulted_array!(self.tables.explicit_implied_predicates_of[def_id] <-
1545 self.tcx.explicit_implied_predicates_of(def_id).skip_binder());
1546 let module_children = self.tcx.module_children_local(local_id);
1547 {
{
let value =
module_children.iter().map(|child| child.res.def_id().index);
let lazy = self.lazy_array(value);
self.tables.module_children_non_reexports.set_some(def_id.index,
lazy);
}
};record_array!(self.tables.module_children_non_reexports[def_id] <-
1548 module_children.iter().map(|child| child.res.def_id().index));
1549 if self.tcx.is_const_trait(def_id) {
1550 {
{
let value =
self.tcx.explicit_implied_const_bounds(def_id).skip_binder();
let lazy = self.lazy_array(value);
self.tables.explicit_implied_const_bounds.set(def_id.index, lazy);
}
};record_defaulted_array!(self.tables.explicit_implied_const_bounds[def_id]
1551 <- self.tcx.explicit_implied_const_bounds(def_id).skip_binder());
1552 }
1553 }
1554 if let DefKind::TraitAlias = def_kind {
1555 {
{
let value = self.tcx.trait_def(def_id);
let lazy = self.lazy(value);
self.tables.trait_def.set_some(def_id.index, lazy);
}
};record!(self.tables.trait_def[def_id] <- self.tcx.trait_def(def_id));
1556 {
{
let value =
self.tcx.explicit_super_predicates_of(def_id).skip_binder();
let lazy = self.lazy_array(value);
self.tables.explicit_super_predicates_of.set(def_id.index, lazy);
}
};record_defaulted_array!(self.tables.explicit_super_predicates_of[def_id] <-
1557 self.tcx.explicit_super_predicates_of(def_id).skip_binder());
1558 {
{
let value =
self.tcx.explicit_implied_predicates_of(def_id).skip_binder();
let lazy = self.lazy_array(value);
self.tables.explicit_implied_predicates_of.set(def_id.index, lazy);
}
};record_defaulted_array!(self.tables.explicit_implied_predicates_of[def_id] <-
1559 self.tcx.explicit_implied_predicates_of(def_id).skip_binder());
1560 }
1561 if let DefKind::Trait | DefKind::Impl { .. } = def_kind {
1562 let associated_item_def_ids = self.tcx.associated_item_def_ids(def_id);
1563 {
{
let value =
associated_item_def_ids.iter().map(|&def_id|
{
if !def_id.is_local() {
::core::panicking::panic("assertion failed: def_id.is_local()")
};
def_id.index
});
let lazy = self.lazy_array(value);
self.tables.associated_item_or_field_def_ids.set_some(def_id.index,
lazy);
}
};record_array!(self.tables.associated_item_or_field_def_ids[def_id] <-
1564 associated_item_def_ids.iter().map(|&def_id| {
1565 assert!(def_id.is_local());
1566 def_id.index
1567 })
1568 );
1569 for &def_id in associated_item_def_ids {
1570 self.encode_info_for_assoc_item(def_id);
1571 }
1572 }
1573 if let DefKind::Closure | DefKind::SyntheticCoroutineBody = def_kind
1574 && let Some(coroutine_kind) = self.tcx.coroutine_kind(def_id)
1575 {
1576 self.tables.coroutine_kind.set(def_id.index, Some(coroutine_kind))
1577 }
1578 if def_kind == DefKind::Closure
1579 && tcx.type_of(def_id).skip_binder().is_coroutine_closure()
1580 {
1581 let coroutine_for_closure = self.tcx.coroutine_for_closure(def_id);
1582 self.tables
1583 .coroutine_for_closure
1584 .set_some(def_id.index, coroutine_for_closure.into());
1585
1586 if tcx.needs_coroutine_by_move_body_def_id(coroutine_for_closure) {
1588 self.tables.coroutine_by_move_body_def_id.set_some(
1589 coroutine_for_closure.index,
1590 self.tcx.coroutine_by_move_body_def_id(coroutine_for_closure).into(),
1591 );
1592 }
1593 }
1594 if let DefKind::Static { .. } = def_kind {
1595 if !self.tcx.is_foreign_item(def_id) {
1596 let data = self.tcx.eval_static_initializer(def_id).unwrap();
1597 {
{
let value = data;
let lazy = self.lazy(value);
self.tables.eval_static_initializer.set_some(def_id.index, lazy);
}
};record!(self.tables.eval_static_initializer[def_id] <- data);
1598 }
1599 }
1600 if let DefKind::Enum | DefKind::Struct | DefKind::Union = def_kind {
1601 self.encode_info_for_adt(local_id);
1602 }
1603 if let DefKind::Mod = def_kind {
1604 self.encode_info_for_mod(local_id);
1605 }
1606 if let DefKind::Macro(_) = def_kind {
1607 self.encode_info_for_macro(local_id);
1608 }
1609 if let DefKind::TyAlias = def_kind {
1610 self.tables
1611 .type_alias_is_lazy
1612 .set(def_id.index, self.tcx.type_alias_is_lazy(def_id));
1613 }
1614 if let DefKind::OpaqueTy = def_kind {
1615 self.encode_explicit_item_bounds(def_id);
1616 self.encode_explicit_item_self_bounds(def_id);
1617 {
{
let value = self.tcx.opaque_ty_origin(def_id);
let lazy = self.lazy(value);
self.tables.opaque_ty_origin.set_some(def_id.index, lazy);
}
};record!(self.tables.opaque_ty_origin[def_id] <- self.tcx.opaque_ty_origin(def_id));
1618 self.encode_precise_capturing_args(def_id);
1619 if tcx.is_conditionally_const(def_id) {
1620 {
{
let value = tcx.explicit_implied_const_bounds(def_id).skip_binder();
let lazy = self.lazy_array(value);
self.tables.explicit_implied_const_bounds.set(def_id.index, lazy);
}
};record_defaulted_array!(self.tables.explicit_implied_const_bounds[def_id]
1621 <- tcx.explicit_implied_const_bounds(def_id).skip_binder());
1622 }
1623 }
1624 if let DefKind::AnonConst = def_kind {
1625 {
{
let value = self.tcx.anon_const_kind(def_id);
let lazy = self.lazy(value);
self.tables.anon_const_kind.set_some(def_id.index, lazy);
}
};record!(self.tables.anon_const_kind[def_id] <- self.tcx.anon_const_kind(def_id));
1626 }
1627 if should_encode_const_of_item(self.tcx, def_id, def_kind) {
1628 {
{
let value = self.tcx.const_of_item(def_id);
let lazy = self.lazy(value);
self.tables.const_of_item.set_some(def_id.index, lazy);
}
};record!(self.tables.const_of_item[def_id] <- self.tcx.const_of_item(def_id));
1629 }
1630 if tcx.impl_method_has_trait_impl_trait_tys(def_id)
1631 && let Ok(table) = self.tcx.collect_return_position_impl_trait_in_trait_tys(def_id)
1632 {
1633 {
{
let value = table;
let lazy = self.lazy(value);
self.tables.collect_return_position_impl_trait_in_trait_tys.set_some(def_id.index,
lazy);
}
};record!(self.tables.collect_return_position_impl_trait_in_trait_tys[def_id] <- table);
1634 }
1635 if let DefKind::Impl { .. } | DefKind::Trait = def_kind {
1636 let table = tcx.associated_types_for_impl_traits_in_trait_or_impl(def_id);
1637 {
{
let value = table;
let lazy = self.lazy(value);
self.tables.associated_types_for_impl_traits_in_trait_or_impl.set_some(def_id.index,
lazy);
}
};record!(self.tables.associated_types_for_impl_traits_in_trait_or_impl[def_id] <- table);
1638 }
1639 }
1640
1641 for (def_id, impls) in &tcx.crate_inherent_impls(()).0.inherent_impls {
1642 {
{
let value =
impls.iter().map(|def_id|
{
if !def_id.is_local() {
::core::panicking::panic("assertion failed: def_id.is_local()")
};
def_id.index
});
let lazy = self.lazy_array(value);
self.tables.inherent_impls.set(def_id.to_def_id().index, lazy);
}
};record_defaulted_array!(self.tables.inherent_impls[def_id.to_def_id()] <- impls.iter().map(|def_id| {
1643 assert!(def_id.is_local());
1644 def_id.index
1645 }));
1646 }
1647
1648 for (def_id, res_map) in &tcx.resolutions(()).doc_link_resolutions {
1649 {
{
let value = res_map;
let lazy = self.lazy(value);
self.tables.doc_link_resolutions.set_some(def_id.to_def_id().index,
lazy);
}
};record!(self.tables.doc_link_resolutions[def_id.to_def_id()] <- res_map);
1650 }
1651
1652 for (def_id, traits) in &tcx.resolutions(()).doc_link_traits_in_scope {
1653 {
{
let value = traits;
let lazy = self.lazy_array(value);
self.tables.doc_link_traits_in_scope.set_some(def_id.to_def_id().index,
lazy);
}
};record_array!(self.tables.doc_link_traits_in_scope[def_id.to_def_id()] <- traits);
1654 }
1655 }
1656
1657 fn encode_externally_implementable_items(&mut self) -> LazyArray<EiiMapEncodedKeyValue> {
1658 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
1659 let externally_implementable_items = self.tcx.externally_implementable_items(LOCAL_CRATE);
1660
1661 self.lazy_array(externally_implementable_items.iter().map(
1662 |(foreign_item, (decl, impls))| {
1663 (
1664 *foreign_item,
1665 (decl.clone(), impls.iter().map(|(impl_did, i)| (*impl_did, *i)).collect()),
1666 )
1667 },
1668 ))
1669 }
1670
1671 #[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("encode_info_for_adt",
"rustc_metadata::rmeta::encoder", ::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(1671u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["local_def_id"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::TRACE <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&local_def_id)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: () = loop {};
return __tracing_attr_fake_return;
}
{
let def_id = local_def_id.to_def_id();
let tcx = self.tcx;
let adt_def = tcx.adt_def(def_id);
{
{
let value = adt_def.repr();
let lazy = self.lazy(value);
self.tables.repr_options.set_some(def_id.index, lazy);
}
};
let params_in_repr = self.tcx.params_in_repr(def_id);
{
{
let value = params_in_repr;
let lazy = self.lazy(value);
self.tables.params_in_repr.set_some(def_id.index, lazy);
}
};
if adt_def.is_enum() {
let module_children = tcx.module_children_local(local_def_id);
{
{
let value =
module_children.iter().map(|child|
child.res.def_id().index);
let lazy = self.lazy_array(value);
self.tables.module_children_non_reexports.set_some(def_id.index,
lazy);
}
};
} else {
if true {
match (&adt_def.variants().len(), &1) {
(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::None);
}
}
};
};
if true {
match (&adt_def.non_enum_variant().def_id, &def_id) {
(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::None);
}
}
};
};
}
for (idx, variant) in adt_def.variants().iter_enumerated() {
let data =
VariantData {
discr: variant.discr,
idx,
ctor: variant.ctor.map(|(kind, def_id)|
(kind, def_id.index)),
is_non_exhaustive: variant.is_field_list_non_exhaustive(),
};
{
{
let value = data;
let lazy = self.lazy(value);
self.tables.variant_data.set_some(variant.def_id.index,
lazy);
}
};
{
{
let value =
variant.fields.iter().map(|f|
{
if !f.did.is_local() {
::core::panicking::panic("assertion failed: f.did.is_local()")
};
f.did.index
});
let lazy = self.lazy_array(value);
self.tables.associated_item_or_field_def_ids.set_some(variant.def_id.index,
lazy);
}
};
for field in &variant.fields {
self.tables.safety.set(field.did.index, field.safety);
}
if let Some((CtorKind::Fn, ctor_def_id)) = variant.ctor {
let fn_sig = tcx.fn_sig(ctor_def_id);
{
{
let value = fn_sig;
let lazy = self.lazy(value);
self.tables.fn_sig.set_some(variant.def_id.index, lazy);
}
};
}
}
if let Some(destructor) = tcx.adt_destructor(local_def_id) {
{
{
let value = destructor;
let lazy = self.lazy(value);
self.tables.adt_destructor.set_some(def_id.index, lazy);
}
};
}
if let Some(destructor) = tcx.adt_async_destructor(local_def_id) {
{
{
let value = destructor;
let lazy = self.lazy(value);
self.tables.adt_async_destructor.set_some(def_id.index,
lazy);
}
};
}
}
}
}#[instrument(level = "trace", skip(self))]
1672 fn encode_info_for_adt(&mut self, local_def_id: LocalDefId) {
1673 let def_id = local_def_id.to_def_id();
1674 let tcx = self.tcx;
1675 let adt_def = tcx.adt_def(def_id);
1676 record!(self.tables.repr_options[def_id] <- adt_def.repr());
1677
1678 let params_in_repr = self.tcx.params_in_repr(def_id);
1679 record!(self.tables.params_in_repr[def_id] <- params_in_repr);
1680
1681 if adt_def.is_enum() {
1682 let module_children = tcx.module_children_local(local_def_id);
1683 record_array!(self.tables.module_children_non_reexports[def_id] <-
1684 module_children.iter().map(|child| child.res.def_id().index));
1685 } else {
1686 debug_assert_eq!(adt_def.variants().len(), 1);
1688 debug_assert_eq!(adt_def.non_enum_variant().def_id, def_id);
1689 }
1691
1692 for (idx, variant) in adt_def.variants().iter_enumerated() {
1693 let data = VariantData {
1694 discr: variant.discr,
1695 idx,
1696 ctor: variant.ctor.map(|(kind, def_id)| (kind, def_id.index)),
1697 is_non_exhaustive: variant.is_field_list_non_exhaustive(),
1698 };
1699 record!(self.tables.variant_data[variant.def_id] <- data);
1700
1701 record_array!(self.tables.associated_item_or_field_def_ids[variant.def_id] <- variant.fields.iter().map(|f| {
1702 assert!(f.did.is_local());
1703 f.did.index
1704 }));
1705
1706 for field in &variant.fields {
1707 self.tables.safety.set(field.did.index, field.safety);
1708 }
1709
1710 if let Some((CtorKind::Fn, ctor_def_id)) = variant.ctor {
1711 let fn_sig = tcx.fn_sig(ctor_def_id);
1712 record!(self.tables.fn_sig[variant.def_id] <- fn_sig);
1714 }
1715 }
1716
1717 if let Some(destructor) = tcx.adt_destructor(local_def_id) {
1718 record!(self.tables.adt_destructor[def_id] <- destructor);
1719 }
1720
1721 if let Some(destructor) = tcx.adt_async_destructor(local_def_id) {
1722 record!(self.tables.adt_async_destructor[def_id] <- destructor);
1723 }
1724 }
1725
1726 #[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("encode_info_for_mod",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(1726u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["local_def_id"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&local_def_id)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: () = loop {};
return __tracing_attr_fake_return;
}
{
let tcx = self.tcx;
let def_id = local_def_id.to_def_id();
if self.is_proc_macro {
{
{
let value = tcx.expn_that_defined(local_def_id);
let lazy = self.lazy(value);
self.tables.expn_that_defined.set_some(def_id.index, lazy);
}
};
} else {
let module_children = tcx.module_children_local(local_def_id);
{
{
let value =
module_children.iter().filter(|child|
child.reexport_chain.is_empty()).map(|child|
child.res.def_id().index);
let lazy = self.lazy_array(value);
self.tables.module_children_non_reexports.set_some(def_id.index,
lazy);
}
};
{
{
let value =
module_children.iter().filter(|child|
!child.reexport_chain.is_empty());
let lazy = self.lazy_array(value);
self.tables.module_children_reexports.set(def_id.index,
lazy);
}
};
let ambig_module_children =
tcx.resolutions(()).ambig_module_children.get(&local_def_id).map_or_default(|v|
&v[..]);
{
{
let value = ambig_module_children;
let lazy = self.lazy_array(value);
self.tables.ambig_module_children.set(def_id.index, lazy);
}
};
}
}
}
}#[instrument(level = "debug", skip(self))]
1727 fn encode_info_for_mod(&mut self, local_def_id: LocalDefId) {
1728 let tcx = self.tcx;
1729 let def_id = local_def_id.to_def_id();
1730
1731 if self.is_proc_macro {
1737 record!(self.tables.expn_that_defined[def_id] <- tcx.expn_that_defined(local_def_id));
1739 } else {
1740 let module_children = tcx.module_children_local(local_def_id);
1741
1742 record_array!(self.tables.module_children_non_reexports[def_id] <-
1743 module_children.iter().filter(|child| child.reexport_chain.is_empty())
1744 .map(|child| child.res.def_id().index));
1745
1746 record_defaulted_array!(self.tables.module_children_reexports[def_id] <-
1747 module_children.iter().filter(|child| !child.reexport_chain.is_empty()));
1748
1749 let ambig_module_children = tcx
1750 .resolutions(())
1751 .ambig_module_children
1752 .get(&local_def_id)
1753 .map_or_default(|v| &v[..]);
1754 record_defaulted_array!(self.tables.ambig_module_children[def_id] <-
1755 ambig_module_children);
1756 }
1757 }
1758
1759 fn encode_explicit_item_bounds(&mut self, def_id: DefId) {
1760 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_metadata/src/rmeta/encoder.rs:1760",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(1760u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("EncodeContext::encode_explicit_item_bounds({0:?})",
def_id) as &dyn Value))])
});
} else { ; }
};debug!("EncodeContext::encode_explicit_item_bounds({:?})", def_id);
1761 let bounds = self.tcx.explicit_item_bounds(def_id).skip_binder();
1762 {
{
let value = bounds;
let lazy = self.lazy_array(value);
self.tables.explicit_item_bounds.set(def_id.index, lazy);
}
};record_defaulted_array!(self.tables.explicit_item_bounds[def_id] <- bounds);
1763 }
1764
1765 fn encode_explicit_item_self_bounds(&mut self, def_id: DefId) {
1766 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_metadata/src/rmeta/encoder.rs:1766",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(1766u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("EncodeContext::encode_explicit_item_self_bounds({0:?})",
def_id) as &dyn Value))])
});
} else { ; }
};debug!("EncodeContext::encode_explicit_item_self_bounds({:?})", def_id);
1767 let bounds = self.tcx.explicit_item_self_bounds(def_id).skip_binder();
1768 {
{
let value = bounds;
let lazy = self.lazy_array(value);
self.tables.explicit_item_self_bounds.set(def_id.index, lazy);
}
};record_defaulted_array!(self.tables.explicit_item_self_bounds[def_id] <- bounds);
1769 }
1770
1771 #[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("encode_info_for_assoc_item",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(1771u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["def_id"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&def_id)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: () = loop {};
return __tracing_attr_fake_return;
}
{
let tcx = self.tcx;
let item = tcx.associated_item(def_id);
if #[allow(non_exhaustive_omitted_patterns)] match item.container
{
AssocContainer::Trait | AssocContainer::TraitImpl(_) =>
true,
_ => false,
} {
self.tables.defaultness.set(def_id.index,
item.defaultness(tcx));
}
{
{
let value = item.container;
let lazy = self.lazy(value);
self.tables.assoc_container.set_some(def_id.index, lazy);
}
};
if let AssocContainer::Trait = item.container && item.is_type() {
self.encode_explicit_item_bounds(def_id);
self.encode_explicit_item_self_bounds(def_id);
if tcx.is_conditionally_const(def_id) {
{
{
let value =
self.tcx.explicit_implied_const_bounds(def_id).skip_binder();
let lazy = self.lazy_array(value);
self.tables.explicit_implied_const_bounds.set(def_id.index,
lazy);
}
};
}
}
if let ty::AssocKind::Type {
data: ty::AssocTypeData::Rpitit(rpitit_info) } = item.kind {
{
{
let value = rpitit_info;
let lazy = self.lazy(value);
self.tables.opt_rpitit_info.set_some(def_id.index, lazy);
}
};
if #[allow(non_exhaustive_omitted_patterns)] match rpitit_info
{
ty::ImplTraitInTraitData::Trait { .. } => true,
_ => false,
} {
{
{
let value = self.tcx.assumed_wf_types_for_rpitit(def_id);
let lazy = self.lazy_array(value);
self.tables.assumed_wf_types_for_rpitit.set_some(def_id.index,
lazy);
}
};
self.encode_precise_capturing_args(def_id);
}
}
}
}
}#[instrument(level = "debug", skip(self))]
1772 fn encode_info_for_assoc_item(&mut self, def_id: DefId) {
1773 let tcx = self.tcx;
1774 let item = tcx.associated_item(def_id);
1775
1776 if matches!(item.container, AssocContainer::Trait | AssocContainer::TraitImpl(_)) {
1777 self.tables.defaultness.set(def_id.index, item.defaultness(tcx));
1778 }
1779
1780 record!(self.tables.assoc_container[def_id] <- item.container);
1781
1782 if let AssocContainer::Trait = item.container
1783 && item.is_type()
1784 {
1785 self.encode_explicit_item_bounds(def_id);
1786 self.encode_explicit_item_self_bounds(def_id);
1787 if tcx.is_conditionally_const(def_id) {
1788 record_defaulted_array!(self.tables.explicit_implied_const_bounds[def_id]
1789 <- self.tcx.explicit_implied_const_bounds(def_id).skip_binder());
1790 }
1791 }
1792 if let ty::AssocKind::Type { data: ty::AssocTypeData::Rpitit(rpitit_info) } = item.kind {
1793 record!(self.tables.opt_rpitit_info[def_id] <- rpitit_info);
1794 if matches!(rpitit_info, ty::ImplTraitInTraitData::Trait { .. }) {
1795 record_array!(
1796 self.tables.assumed_wf_types_for_rpitit[def_id]
1797 <- self.tcx.assumed_wf_types_for_rpitit(def_id)
1798 );
1799 self.encode_precise_capturing_args(def_id);
1800 }
1801 }
1802 }
1803
1804 fn encode_precise_capturing_args(&mut self, def_id: DefId) {
1805 let Some(precise_capturing_args) = self.tcx.rendered_precise_capturing_args(def_id) else {
1806 return;
1807 };
1808
1809 {
{
let value = precise_capturing_args;
let lazy = self.lazy_array(value);
self.tables.rendered_precise_capturing_args.set_some(def_id.index,
lazy);
}
};record_array!(self.tables.rendered_precise_capturing_args[def_id] <- precise_capturing_args);
1810 }
1811
1812 fn encode_mir(&mut self) {
1813 if self.is_proc_macro {
1814 return;
1815 }
1816
1817 let tcx = self.tcx;
1818 let reachable_set = tcx.reachable_set(());
1819
1820 let keys_and_jobs = tcx.mir_keys(()).iter().filter_map(|&def_id| {
1821 let (encode_const, encode_opt) = should_encode_mir(tcx, reachable_set, def_id);
1822 if encode_const || encode_opt { Some((def_id, encode_const, encode_opt)) } else { None }
1823 });
1824 for (def_id, encode_const, encode_opt) in keys_and_jobs {
1825 if true {
if !(encode_const || encode_opt) {
::core::panicking::panic("assertion failed: encode_const || encode_opt")
};
};debug_assert!(encode_const || encode_opt);
1826
1827 {
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_metadata/src/rmeta/encoder.rs:1827",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(1827u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("EntryBuilder::encode_mir({0:?})",
def_id) as &dyn Value))])
});
} else { ; }
};debug!("EntryBuilder::encode_mir({:?})", def_id);
1828 if encode_opt {
1829 {
{
let value = tcx.optimized_mir(def_id);
let lazy = self.lazy(value);
self.tables.optimized_mir.set_some(def_id.to_def_id().index, lazy);
}
};record!(self.tables.optimized_mir[def_id.to_def_id()] <- tcx.optimized_mir(def_id));
1830 self.tables
1831 .cross_crate_inlinable
1832 .set(def_id.to_def_id().index, self.tcx.cross_crate_inlinable(def_id));
1833 {
{
let value = tcx.closure_saved_names_of_captured_variables(def_id);
let lazy = self.lazy(value);
self.tables.closure_saved_names_of_captured_variables.set_some(def_id.to_def_id().index,
lazy);
}
};record!(self.tables.closure_saved_names_of_captured_variables[def_id.to_def_id()]
1834 <- tcx.closure_saved_names_of_captured_variables(def_id));
1835
1836 if self.tcx.is_coroutine(def_id.to_def_id())
1837 && let Some(witnesses) = tcx.mir_coroutine_witnesses(def_id)
1838 {
1839 {
{
let value = witnesses;
let lazy = self.lazy(value);
self.tables.mir_coroutine_witnesses.set_some(def_id.to_def_id().index,
lazy);
}
};record!(self.tables.mir_coroutine_witnesses[def_id.to_def_id()] <- witnesses);
1840 }
1841 }
1842 let mut is_trivial = false;
1843 if encode_const {
1844 if let Some((val, ty)) = tcx.trivial_const(def_id) {
1845 is_trivial = true;
1846 {
{
let value = (val, ty);
let lazy = self.lazy(value);
self.tables.trivial_const.set_some(def_id.to_def_id().index, lazy);
}
};record!(self.tables.trivial_const[def_id.to_def_id()] <- (val, ty));
1847 } else {
1848 is_trivial = false;
1849 {
{
let value = tcx.mir_for_ctfe(def_id);
let lazy = self.lazy(value);
self.tables.mir_for_ctfe.set_some(def_id.to_def_id().index, lazy);
}
};record!(self.tables.mir_for_ctfe[def_id.to_def_id()] <- tcx.mir_for_ctfe(def_id));
1850 }
1851
1852 let abstract_const = tcx.thir_abstract_const(def_id);
1854 if let Ok(Some(abstract_const)) = abstract_const {
1855 {
{
let value = abstract_const;
let lazy = self.lazy(value);
self.tables.thir_abstract_const.set_some(def_id.to_def_id().index,
lazy);
}
};record!(self.tables.thir_abstract_const[def_id.to_def_id()] <- abstract_const);
1856 }
1857
1858 if should_encode_const(tcx.def_kind(def_id)) {
1859 let qualifs = tcx.mir_const_qualif(def_id);
1860 {
{
let value = qualifs;
let lazy = self.lazy(value);
self.tables.mir_const_qualif.set_some(def_id.to_def_id().index, lazy);
}
};record!(self.tables.mir_const_qualif[def_id.to_def_id()] <- qualifs);
1861 let body = tcx.hir_maybe_body_owned_by(def_id);
1862 if let Some(body) = body {
1863 let const_data = rendered_const(self.tcx, &body, def_id);
1864 {
{
let value = const_data;
let lazy = self.lazy(value);
self.tables.rendered_const.set_some(def_id.to_def_id().index, lazy);
}
};record!(self.tables.rendered_const[def_id.to_def_id()] <- const_data);
1865 }
1866 }
1867 }
1868 if !is_trivial {
1869 {
{
let value = tcx.promoted_mir(def_id);
let lazy = self.lazy(value);
self.tables.promoted_mir.set_some(def_id.to_def_id().index, lazy);
}
};record!(self.tables.promoted_mir[def_id.to_def_id()] <- tcx.promoted_mir(def_id));
1870 }
1871
1872 if self.tcx.is_coroutine(def_id.to_def_id())
1873 && let Some(witnesses) = tcx.mir_coroutine_witnesses(def_id)
1874 {
1875 {
{
let value = witnesses;
let lazy = self.lazy(value);
self.tables.mir_coroutine_witnesses.set_some(def_id.to_def_id().index,
lazy);
}
};record!(self.tables.mir_coroutine_witnesses[def_id.to_def_id()] <- witnesses);
1876 }
1877 }
1878
1879 if tcx.sess.opts.output_types.should_codegen()
1883 && tcx.sess.opts.optimize != OptLevel::No
1884 && tcx.sess.opts.incremental.is_none()
1885 {
1886 for &local_def_id in tcx.mir_keys(()) {
1887 if let DefKind::AssocFn | DefKind::Fn = tcx.def_kind(local_def_id) {
1888 {
{
let value = self.tcx.deduced_param_attrs(local_def_id.to_def_id());
let lazy = self.lazy_array(value);
self.tables.deduced_param_attrs.set_some(local_def_id.to_def_id().index,
lazy);
}
};record_array!(self.tables.deduced_param_attrs[local_def_id.to_def_id()] <-
1889 self.tcx.deduced_param_attrs(local_def_id.to_def_id()));
1890 }
1891 }
1892 }
1893 }
1894
1895 #[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("encode_stability",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(1895u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["def_id"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&def_id)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: () = loop {};
return __tracing_attr_fake_return;
}
{
if self.feat.staged_api() ||
self.tcx.sess.opts.unstable_opts.force_unstable_if_unmarked
{
if let Some(stab) = self.tcx.lookup_stability(def_id) {
{
{
let value = stab;
let lazy = self.lazy(value);
self.tables.lookup_stability.set_some(def_id.index, lazy);
}
}
}
}
}
}
}#[instrument(level = "debug", skip(self))]
1896 fn encode_stability(&mut self, def_id: DefId) {
1897 if self.feat.staged_api() || self.tcx.sess.opts.unstable_opts.force_unstable_if_unmarked {
1900 if let Some(stab) = self.tcx.lookup_stability(def_id) {
1901 record!(self.tables.lookup_stability[def_id] <- stab)
1902 }
1903 }
1904 }
1905
1906 #[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("encode_const_stability",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(1906u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["def_id"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&def_id)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: () = loop {};
return __tracing_attr_fake_return;
}
{
if self.feat.staged_api() ||
self.tcx.sess.opts.unstable_opts.force_unstable_if_unmarked
{
if let Some(stab) = self.tcx.lookup_const_stability(def_id) {
{
{
let value = stab;
let lazy = self.lazy(value);
self.tables.lookup_const_stability.set_some(def_id.index,
lazy);
}
}
}
}
}
}
}#[instrument(level = "debug", skip(self))]
1907 fn encode_const_stability(&mut self, def_id: DefId) {
1908 if self.feat.staged_api() || self.tcx.sess.opts.unstable_opts.force_unstable_if_unmarked {
1911 if let Some(stab) = self.tcx.lookup_const_stability(def_id) {
1912 record!(self.tables.lookup_const_stability[def_id] <- stab)
1913 }
1914 }
1915 }
1916
1917 #[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("encode_default_body_stability",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(1917u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["def_id"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&def_id)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: () = loop {};
return __tracing_attr_fake_return;
}
{
if self.feat.staged_api() ||
self.tcx.sess.opts.unstable_opts.force_unstable_if_unmarked
{
if let Some(stab) =
self.tcx.lookup_default_body_stability(def_id) {
{
{
let value = stab;
let lazy = self.lazy(value);
self.tables.lookup_default_body_stability.set_some(def_id.index,
lazy);
}
}
}
}
}
}
}#[instrument(level = "debug", skip(self))]
1918 fn encode_default_body_stability(&mut self, def_id: DefId) {
1919 if self.feat.staged_api() || self.tcx.sess.opts.unstable_opts.force_unstable_if_unmarked {
1922 if let Some(stab) = self.tcx.lookup_default_body_stability(def_id) {
1923 record!(self.tables.lookup_default_body_stability[def_id] <- stab)
1924 }
1925 }
1926 }
1927
1928 #[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("encode_deprecation",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(1928u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["def_id"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&def_id)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: () = loop {};
return __tracing_attr_fake_return;
}
{
if let Some(depr) = self.tcx.lookup_deprecation(def_id) {
{
{
let value = depr;
let lazy = self.lazy(value);
self.tables.lookup_deprecation_entry.set_some(def_id.index,
lazy);
}
};
}
}
}
}#[instrument(level = "debug", skip(self))]
1929 fn encode_deprecation(&mut self, def_id: DefId) {
1930 if let Some(depr) = self.tcx.lookup_deprecation(def_id) {
1931 record!(self.tables.lookup_deprecation_entry[def_id] <- depr);
1932 }
1933 }
1934
1935 #[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("encode_info_for_macro",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(1935u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["def_id"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&def_id)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: () = loop {};
return __tracing_attr_fake_return;
}
{
let tcx = self.tcx;
let (_, macro_def, _) =
tcx.hir_expect_item(def_id).expect_macro();
self.tables.is_macro_rules.set(def_id.local_def_index,
macro_def.macro_rules);
{
{
let value = &*macro_def.body;
let lazy = self.lazy(value);
self.tables.macro_definition.set_some(def_id.to_def_id().index,
lazy);
}
};
}
}
}#[instrument(level = "debug", skip(self))]
1936 fn encode_info_for_macro(&mut self, def_id: LocalDefId) {
1937 let tcx = self.tcx;
1938
1939 let (_, macro_def, _) = tcx.hir_expect_item(def_id).expect_macro();
1940 self.tables.is_macro_rules.set(def_id.local_def_index, macro_def.macro_rules);
1941 record!(self.tables.macro_definition[def_id.to_def_id()] <- &*macro_def.body);
1942 }
1943
1944 fn encode_native_libraries(&mut self) -> LazyArray<NativeLib> {
1945 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
1946 let used_libraries = self.tcx.native_libraries(LOCAL_CRATE);
1947 self.lazy_array(used_libraries.iter())
1948 }
1949
1950 fn encode_foreign_modules(&mut self) -> LazyArray<ForeignModule> {
1951 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
1952 let foreign_modules = self.tcx.foreign_modules(LOCAL_CRATE);
1953 self.lazy_array(foreign_modules.iter().map(|(_, m)| m).cloned())
1954 }
1955
1956 fn encode_hygiene(&mut self) -> (SyntaxContextTable, ExpnDataTable, ExpnHashTable) {
1957 let mut syntax_contexts: TableBuilder<_, _> = Default::default();
1958 let mut expn_data_table: TableBuilder<_, _> = Default::default();
1959 let mut expn_hash_table: TableBuilder<_, _> = Default::default();
1960
1961 self.hygiene_ctxt.encode(
1962 &mut (&mut *self, &mut syntax_contexts, &mut expn_data_table, &mut expn_hash_table),
1963 |(this, syntax_contexts, _, _), index, ctxt_data| {
1964 syntax_contexts.set_some(index, this.lazy(ctxt_data));
1965 },
1966 |(this, _, expn_data_table, expn_hash_table), index, expn_data, hash| {
1967 if let Some(index) = index.as_local() {
1968 expn_data_table.set_some(index.as_raw(), this.lazy(expn_data));
1969 expn_hash_table.set_some(index.as_raw(), this.lazy(hash));
1970 }
1971 },
1972 );
1973
1974 (
1975 syntax_contexts.encode(&mut self.opaque),
1976 expn_data_table.encode(&mut self.opaque),
1977 expn_hash_table.encode(&mut self.opaque),
1978 )
1979 }
1980
1981 fn encode_proc_macros(&mut self) -> Option<ProcMacroData> {
1982 let is_proc_macro = self.tcx.crate_types().contains(&CrateType::ProcMacro);
1983 if is_proc_macro {
1984 let tcx = self.tcx;
1985 let proc_macro_decls_static = tcx.proc_macro_decls_static(()).unwrap().local_def_index;
1986 let stability = tcx.lookup_stability(CRATE_DEF_ID);
1987 let macros =
1988 self.lazy_array(tcx.resolutions(()).proc_macros.iter().map(|p| p.local_def_index));
1989 for (i, span) in self.tcx.sess.proc_macro_quoted_spans() {
1990 let span = self.lazy(span);
1991 self.tables.proc_macro_quoted_spans.set_some(i, span);
1992 }
1993
1994 self.tables.def_kind.set_some(LOCAL_CRATE.as_def_id().index, DefKind::Mod);
1995 {
{
let value = tcx.def_span(LOCAL_CRATE.as_def_id());
let lazy = self.lazy(value);
self.tables.def_span.set_some(LOCAL_CRATE.as_def_id().index, lazy);
}
};record!(self.tables.def_span[LOCAL_CRATE.as_def_id()] <- tcx.def_span(LOCAL_CRATE.as_def_id()));
1996 self.encode_attrs(LOCAL_CRATE.as_def_id().expect_local());
1997 let vis = tcx.local_visibility(CRATE_DEF_ID).map_id(|def_id| def_id.local_def_index);
1998 {
{
let value = vis;
let lazy = self.lazy(value);
self.tables.visibility.set_some(LOCAL_CRATE.as_def_id().index, lazy);
}
};record!(self.tables.visibility[LOCAL_CRATE.as_def_id()] <- vis);
1999 if let Some(stability) = stability {
2000 {
{
let value = stability;
let lazy = self.lazy(value);
self.tables.lookup_stability.set_some(LOCAL_CRATE.as_def_id().index,
lazy);
}
};record!(self.tables.lookup_stability[LOCAL_CRATE.as_def_id()] <- stability);
2001 }
2002 self.encode_deprecation(LOCAL_CRATE.as_def_id());
2003 if let Some(res_map) = tcx.resolutions(()).doc_link_resolutions.get(&CRATE_DEF_ID) {
2004 {
{
let value = res_map;
let lazy = self.lazy(value);
self.tables.doc_link_resolutions.set_some(LOCAL_CRATE.as_def_id().index,
lazy);
}
};record!(self.tables.doc_link_resolutions[LOCAL_CRATE.as_def_id()] <- res_map);
2005 }
2006 if let Some(traits) = tcx.resolutions(()).doc_link_traits_in_scope.get(&CRATE_DEF_ID) {
2007 {
{
let value = traits;
let lazy = self.lazy_array(value);
self.tables.doc_link_traits_in_scope.set_some(LOCAL_CRATE.as_def_id().index,
lazy);
}
};record_array!(self.tables.doc_link_traits_in_scope[LOCAL_CRATE.as_def_id()] <- traits);
2008 }
2009
2010 for &proc_macro in &tcx.resolutions(()).proc_macros {
2014 let id = proc_macro;
2015 let proc_macro = tcx.local_def_id_to_hir_id(proc_macro);
2016 let mut name = tcx.hir_name(proc_macro);
2017 let span = tcx.hir_span(proc_macro);
2018 let attrs = tcx.hir_attrs(proc_macro);
2021 let macro_kind = if {
{
'done:
{
for i in attrs {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(ProcMacro) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}.is_some()
}find_attr!(attrs, ProcMacro) {
2022 MacroKind::Bang
2023 } else if {
{
'done:
{
for i in attrs {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(ProcMacroAttribute) => {
break 'done Some(());
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}.is_some()
}find_attr!(attrs, ProcMacroAttribute) {
2024 MacroKind::Attr
2025 } else if let Some(trait_name) =
2026 {
'done:
{
for i in attrs {
#[allow(unused_imports)]
use rustc_hir::attrs::AttributeKind::*;
let i: &rustc_hir::Attribute = i;
match i {
rustc_hir::Attribute::Parsed(ProcMacroDerive { trait_name, ..
}) => {
break 'done Some(trait_name);
}
rustc_hir::Attribute::Unparsed(..) =>
{}
#[deny(unreachable_patterns)]
_ => {}
}
}
None
}
}find_attr!(attrs, ProcMacroDerive { trait_name, ..} => trait_name)
2027 {
2028 name = *trait_name;
2029 MacroKind::Derive
2030 } else {
2031 ::rustc_middle::util::bug::bug_fmt(format_args!("Unknown proc-macro type for item {0:?}",
id));bug!("Unknown proc-macro type for item {:?}", id);
2032 };
2033
2034 let mut def_key = self.tcx.hir_def_key(id);
2035 def_key.disambiguated_data.data = DefPathData::MacroNs(name);
2036
2037 let def_id = id.to_def_id();
2038 self.tables.def_kind.set_some(def_id.index, DefKind::Macro(macro_kind.into()));
2039 self.encode_attrs(id);
2040 {
{
let value = def_key;
let lazy = self.lazy(value);
self.tables.def_keys.set_some(def_id.index, lazy);
}
};record!(self.tables.def_keys[def_id] <- def_key);
2041 {
{
let value = span;
let lazy = self.lazy(value);
self.tables.def_ident_span.set_some(def_id.index, lazy);
}
};record!(self.tables.def_ident_span[def_id] <- span);
2042 {
{
let value = span;
let lazy = self.lazy(value);
self.tables.def_span.set_some(def_id.index, lazy);
}
};record!(self.tables.def_span[def_id] <- span);
2043 {
{
let value = ty::Visibility::Public;
let lazy = self.lazy(value);
self.tables.visibility.set_some(def_id.index, lazy);
}
};record!(self.tables.visibility[def_id] <- ty::Visibility::Public);
2044 if let Some(stability) = stability {
2045 {
{
let value = stability;
let lazy = self.lazy(value);
self.tables.lookup_stability.set_some(def_id.index, lazy);
}
};record!(self.tables.lookup_stability[def_id] <- stability);
2046 }
2047 }
2048
2049 Some(ProcMacroData { proc_macro_decls_static, stability, macros })
2050 } else {
2051 None
2052 }
2053 }
2054
2055 fn encode_debugger_visualizers(&mut self) -> LazyArray<DebuggerVisualizerFile> {
2056 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2057 self.lazy_array(
2058 self.tcx
2059 .debugger_visualizers(LOCAL_CRATE)
2060 .iter()
2061 .map(DebuggerVisualizerFile::path_erased),
2066 )
2067 }
2068
2069 fn encode_crate_deps(&mut self) -> LazyArray<CrateDep> {
2070 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2071
2072 let deps = self
2073 .tcx
2074 .crates(())
2075 .iter()
2076 .map(|&cnum| {
2077 let dep = CrateDep {
2078 name: self.tcx.crate_name(cnum),
2079 hash: self.tcx.crate_hash(cnum),
2080 host_hash: self.tcx.crate_host_hash(cnum),
2081 kind: self.tcx.crate_dep_kind(cnum),
2082 extra_filename: self.tcx.extra_filename(cnum).clone(),
2083 is_private: self.tcx.is_private_dep(cnum),
2084 };
2085 (cnum, dep)
2086 })
2087 .collect::<Vec<_>>();
2088
2089 {
2090 let mut expected_cnum = 1;
2092 for &(n, _) in &deps {
2093 match (&n, &CrateNum::new(expected_cnum)) {
(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::None);
}
}
};assert_eq!(n, CrateNum::new(expected_cnum));
2094 expected_cnum += 1;
2095 }
2096 }
2097
2098 self.lazy_array(deps.iter().map(|(_, dep)| dep))
2103 }
2104
2105 fn encode_target_modifiers(&mut self) -> LazyArray<TargetModifier> {
2106 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2107 let tcx = self.tcx;
2108 self.lazy_array(tcx.sess.opts.gather_target_modifiers())
2109 }
2110
2111 fn encode_enabled_denied_partial_mitigations(&mut self) -> LazyArray<DeniedPartialMitigation> {
2112 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2113 let tcx = self.tcx;
2114 self.lazy_array(tcx.sess.gather_enabled_denied_partial_mitigations())
2115 }
2116
2117 fn encode_lib_features(&mut self) -> LazyArray<(Symbol, FeatureStability)> {
2118 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2119 let tcx = self.tcx;
2120 let lib_features = tcx.lib_features(LOCAL_CRATE);
2121 self.lazy_array(lib_features.to_sorted_vec())
2122 }
2123
2124 fn encode_stability_implications(&mut self) -> LazyArray<(Symbol, Symbol)> {
2125 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2126 let tcx = self.tcx;
2127 let implications = tcx.stability_implications(LOCAL_CRATE);
2128 let sorted = implications.to_sorted_stable_ord();
2129 self.lazy_array(sorted.into_iter().map(|(k, v)| (*k, *v)))
2130 }
2131
2132 fn encode_diagnostic_items(&mut self) -> LazyArray<(Symbol, DefIndex)> {
2133 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2134 let tcx = self.tcx;
2135 let diagnostic_items = &tcx.diagnostic_items(LOCAL_CRATE).name_to_id;
2136 self.lazy_array(diagnostic_items.iter().map(|(&name, def_id)| (name, def_id.index)))
2137 }
2138
2139 fn encode_lang_items(&mut self) -> LazyArray<(DefIndex, LangItem)> {
2140 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2141 let lang_items = self.tcx.lang_items().iter();
2142 self.lazy_array(lang_items.filter_map(|(lang_item, def_id)| {
2143 def_id.as_local().map(|id| (id.local_def_index, lang_item))
2144 }))
2145 }
2146
2147 fn encode_lang_items_missing(&mut self) -> LazyArray<LangItem> {
2148 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2149 let tcx = self.tcx;
2150 self.lazy_array(&tcx.lang_items().missing)
2151 }
2152
2153 fn encode_stripped_cfg_items(&mut self) -> LazyArray<StrippedCfgItem<DefIndex>> {
2154 self.lazy_array(
2155 self.tcx
2156 .stripped_cfg_items(LOCAL_CRATE)
2157 .into_iter()
2158 .map(|item| item.clone().map_scope_id(|def_id| def_id.index)),
2159 )
2160 }
2161
2162 fn encode_traits(&mut self) -> LazyArray<DefIndex> {
2163 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2164 self.lazy_array(self.tcx.traits(LOCAL_CRATE).iter().map(|def_id| def_id.index))
2165 }
2166
2167 #[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("encode_impls",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(2168u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&[],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{ meta.fields().value_set(&[]) })
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: LazyArray<TraitImpls> = loop {};
return __tracing_attr_fake_return;
}
{
if self.is_proc_macro { return LazyArray::default(); };
let tcx = self.tcx;
let mut trait_impls:
FxIndexMap<DefId, Vec<(DefIndex, Option<SimplifiedType>)>> =
FxIndexMap::default();
for id in tcx.hir_free_items() {
let DefKind::Impl { of_trait } =
tcx.def_kind(id.owner_id) else { continue; };
let def_id = id.owner_id.to_def_id();
if of_trait {
let header = tcx.impl_trait_header(def_id);
{
{
let value = header;
let lazy = self.lazy(value);
self.tables.impl_trait_header.set_some(def_id.index, lazy);
}
};
self.tables.defaultness.set(def_id.index,
tcx.defaultness(def_id));
let trait_ref =
header.trait_ref.instantiate_identity().skip_norm_wip();
let simplified_self_ty =
fast_reject::simplify_type(self.tcx, trait_ref.self_ty(),
TreatParams::InstantiateWithInfer);
trait_impls.entry(trait_ref.def_id).or_default().push((id.owner_id.def_id.local_def_index,
simplified_self_ty));
let trait_def = tcx.trait_def(trait_ref.def_id);
if let Ok(mut an) = trait_def.ancestors(tcx, def_id) &&
let Some(specialization_graph::Node::Impl(parent)) =
an.nth(1) {
self.tables.impl_parent.set_some(def_id.index,
parent.into());
}
if tcx.is_lang_item(trait_ref.def_id,
LangItem::CoerceUnsized) {
let coerce_unsized_info =
tcx.coerce_unsized_info(def_id).unwrap();
{
{
let value = coerce_unsized_info;
let lazy = self.lazy(value);
self.tables.coerce_unsized_info.set_some(def_id.index,
lazy);
}
};
}
}
}
let trait_impls: Vec<_> =
trait_impls.into_iter().map(|(trait_def_id, impls)|
TraitImpls {
trait_id: (trait_def_id.krate.as_u32(), trait_def_id.index),
impls: self.lazy_array(&impls),
}).collect();
self.lazy_array(&trait_impls)
}
}
}#[instrument(level = "debug", skip(self))]
2169 fn encode_impls(&mut self) -> LazyArray<TraitImpls> {
2170 empty_proc_macro!(self);
2171 let tcx = self.tcx;
2172 let mut trait_impls: FxIndexMap<DefId, Vec<(DefIndex, Option<SimplifiedType>)>> =
2173 FxIndexMap::default();
2174
2175 for id in tcx.hir_free_items() {
2176 let DefKind::Impl { of_trait } = tcx.def_kind(id.owner_id) else {
2177 continue;
2178 };
2179 let def_id = id.owner_id.to_def_id();
2180
2181 if of_trait {
2182 let header = tcx.impl_trait_header(def_id);
2183 record!(self.tables.impl_trait_header[def_id] <- header);
2184
2185 self.tables.defaultness.set(def_id.index, tcx.defaultness(def_id));
2186
2187 let trait_ref = header.trait_ref.instantiate_identity().skip_norm_wip();
2188 let simplified_self_ty = fast_reject::simplify_type(
2189 self.tcx,
2190 trait_ref.self_ty(),
2191 TreatParams::InstantiateWithInfer,
2192 );
2193 trait_impls
2194 .entry(trait_ref.def_id)
2195 .or_default()
2196 .push((id.owner_id.def_id.local_def_index, simplified_self_ty));
2197
2198 let trait_def = tcx.trait_def(trait_ref.def_id);
2199 if let Ok(mut an) = trait_def.ancestors(tcx, def_id)
2200 && let Some(specialization_graph::Node::Impl(parent)) = an.nth(1)
2201 {
2202 self.tables.impl_parent.set_some(def_id.index, parent.into());
2203 }
2204
2205 if tcx.is_lang_item(trait_ref.def_id, LangItem::CoerceUnsized) {
2208 let coerce_unsized_info = tcx.coerce_unsized_info(def_id).unwrap();
2209 record!(self.tables.coerce_unsized_info[def_id] <- coerce_unsized_info);
2210 }
2211 }
2212 }
2213
2214 let trait_impls: Vec<_> = trait_impls
2215 .into_iter()
2216 .map(|(trait_def_id, impls)| TraitImpls {
2217 trait_id: (trait_def_id.krate.as_u32(), trait_def_id.index),
2218 impls: self.lazy_array(&impls),
2219 })
2220 .collect();
2221
2222 self.lazy_array(&trait_impls)
2223 }
2224
2225 #[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::DEBUG <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("encode_incoherent_impls",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(2225u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&[],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{ meta.fields().value_set(&[]) })
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: LazyArray<IncoherentImpls> =
loop {};
return __tracing_attr_fake_return;
}
{
if self.is_proc_macro { return LazyArray::default(); };
let tcx = self.tcx;
let all_impls: Vec<_> =
tcx.crate_inherent_impls(()).0.incoherent_impls.iter().map(|(&simp,
impls)|
IncoherentImpls {
self_ty: self.lazy(simp),
impls: self.lazy_array(impls.iter().map(|def_id|
def_id.local_def_index)),
}).collect();
self.lazy_array(&all_impls)
}
}
}#[instrument(level = "debug", skip(self))]
2226 fn encode_incoherent_impls(&mut self) -> LazyArray<IncoherentImpls> {
2227 empty_proc_macro!(self);
2228 let tcx = self.tcx;
2229
2230 let all_impls: Vec<_> = tcx
2231 .crate_inherent_impls(())
2232 .0
2233 .incoherent_impls
2234 .iter()
2235 .map(|(&simp, impls)| IncoherentImpls {
2236 self_ty: self.lazy(simp),
2237 impls: self.lazy_array(impls.iter().map(|def_id| def_id.local_def_index)),
2238 })
2239 .collect();
2240
2241 self.lazy_array(&all_impls)
2242 }
2243
2244 fn encode_exportable_items(&mut self) -> LazyArray<DefIndex> {
2245 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2246 self.lazy_array(self.tcx.exportable_items(LOCAL_CRATE).iter().map(|def_id| def_id.index))
2247 }
2248
2249 fn encode_stable_order_of_exportable_impls(&mut self) -> LazyArray<(DefIndex, usize)> {
2250 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2251 let stable_order_of_exportable_impls =
2252 self.tcx.stable_order_of_exportable_impls(LOCAL_CRATE);
2253 self.lazy_array(
2254 stable_order_of_exportable_impls.iter().map(|(def_id, idx)| (def_id.index, *idx)),
2255 )
2256 }
2257
2258 fn encode_exported_symbols(
2265 &mut self,
2266 exported_symbols: &[(ExportedSymbol<'tcx>, SymbolExportInfo)],
2267 ) -> LazyArray<(ExportedSymbol<'static>, SymbolExportInfo)> {
2268 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2269
2270 self.lazy_array(exported_symbols.iter().cloned())
2271 }
2272
2273 fn encode_dylib_dependency_formats(&mut self) -> LazyArray<Option<LinkagePreference>> {
2274 if self.is_proc_macro { return LazyArray::default(); };empty_proc_macro!(self);
2275 let formats = self.tcx.dependency_formats(());
2276 if let Some(arr) = formats.get(&CrateType::Dylib) {
2277 return self.lazy_array(arr.iter().skip(1 ).map(
2278 |slot| match *slot {
2279 Linkage::NotLinked | Linkage::IncludedFromDylib => None,
2280
2281 Linkage::Dynamic => Some(LinkagePreference::RequireDynamic),
2282 Linkage::Static => Some(LinkagePreference::RequireStatic),
2283 },
2284 ));
2285 }
2286 LazyArray::default()
2287 }
2288}
2289
2290fn prefetch_mir(tcx: TyCtxt<'_>) {
2293 if !tcx.sess.opts.output_types.should_codegen() {
2294 return;
2296 }
2297
2298 let reachable_set = tcx.reachable_set(());
2299 par_for_each_in(tcx.mir_keys(()), |&&def_id| {
2300 if tcx.is_trivial_const(def_id) {
2301 return;
2302 }
2303 let (encode_const, encode_opt) = should_encode_mir(tcx, reachable_set, def_id);
2304
2305 if encode_const {
2306 tcx.ensure_done().mir_for_ctfe(def_id);
2307 }
2308 if encode_opt {
2309 tcx.ensure_done().optimized_mir(def_id);
2310 }
2311 if encode_opt || encode_const {
2312 tcx.ensure_done().promoted_mir(def_id);
2313 }
2314 })
2315}
2316
2317pub struct EncodedMetadata {
2341 full_metadata: Option<Mmap>,
2344 stub_metadata: Option<Vec<u8>>,
2347 path: Option<Box<Path>>,
2349 _temp_dir: Option<MaybeTempDir>,
2352}
2353
2354impl EncodedMetadata {
2355 #[inline]
2356 pub fn from_path(
2357 path: PathBuf,
2358 stub_path: Option<PathBuf>,
2359 temp_dir: Option<MaybeTempDir>,
2360 ) -> std::io::Result<Self> {
2361 let file = std::fs::File::open(&path)?;
2362 let file_metadata = file.metadata()?;
2363 if file_metadata.len() == 0 {
2364 return Ok(Self {
2365 full_metadata: None,
2366 stub_metadata: None,
2367 path: None,
2368 _temp_dir: None,
2369 });
2370 }
2371 let full_mmap = unsafe { Some(Mmap::map(file)?) };
2372
2373 let stub =
2374 if let Some(stub_path) = stub_path { Some(std::fs::read(stub_path)?) } else { None };
2375
2376 Ok(Self {
2377 full_metadata: full_mmap,
2378 stub_metadata: stub,
2379 path: Some(path.into()),
2380 _temp_dir: temp_dir,
2381 })
2382 }
2383
2384 #[inline]
2385 pub fn full(&self) -> &[u8] {
2386 &self.full_metadata.as_deref().unwrap_or_default()
2387 }
2388
2389 #[inline]
2390 pub fn stub_or_full(&self) -> &[u8] {
2391 self.stub_metadata.as_deref().unwrap_or(self.full())
2392 }
2393
2394 #[inline]
2395 pub fn path(&self) -> Option<&Path> {
2396 self.path.as_deref()
2397 }
2398}
2399
2400impl<S: Encoder> Encodable<S> for EncodedMetadata {
2401 fn encode(&self, s: &mut S) {
2402 self.stub_metadata.encode(s);
2403
2404 let slice = self.full();
2405 slice.encode(s)
2406 }
2407}
2408
2409impl<D: Decoder> Decodable<D> for EncodedMetadata {
2410 fn decode(d: &mut D) -> Self {
2411 let stub = <Option<Vec<u8>>>::decode(d);
2412
2413 let len = d.read_usize();
2414 let full_metadata = if len > 0 {
2415 let mut mmap = MmapMut::map_anon(len).unwrap();
2416 mmap.copy_from_slice(d.read_raw_bytes(len));
2417 Some(mmap.make_read_only().unwrap())
2418 } else {
2419 None
2420 };
2421
2422 Self { full_metadata, stub_metadata: stub, path: None, _temp_dir: None }
2423 }
2424}
2425
2426#[allow(clippy :: suspicious_else_formatting)]
{
let __tracing_attr_span;
let __tracing_attr_guard;
if ::tracing::Level::TRACE <= ::tracing::level_filters::STATIC_MAX_LEVEL
&&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() ||
{ false } {
__tracing_attr_span =
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("encode_metadata",
"rustc_metadata::rmeta::encoder", ::tracing::Level::TRACE,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(2426u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["path", "ref_path"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::SPAN)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let mut interest = ::tracing::subscriber::Interest::never();
if ::tracing::Level::TRACE <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::TRACE <=
::tracing::level_filters::LevelFilter::current() &&
{ interest = __CALLSITE.interest(); !interest.is_never() }
&&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest) {
let meta = __CALLSITE.metadata();
::tracing::Span::new(meta,
&{
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = meta.fields().iter();
meta.fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&path)
as &dyn Value)),
(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&::tracing::field::debug(&ref_path)
as &dyn Value))])
})
} else {
let span =
::tracing::__macro_support::__disabled_span(__CALLSITE.metadata());
{};
span
}
};
__tracing_attr_guard = __tracing_attr_span.enter();
}
#[warn(clippy :: suspicious_else_formatting)]
{
#[allow(unknown_lints, unreachable_code, clippy ::
diverging_sub_expression, clippy :: empty_loop, clippy ::
let_unit_value, clippy :: let_with_type_underscore, clippy ::
needless_return, clippy :: unreachable)]
if false {
let __tracing_attr_fake_return: () = loop {};
return __tracing_attr_fake_return;
}
{
tcx.dep_graph.assert_ignored();
if let Some(ref_path) = ref_path {
let _prof_timer =
tcx.prof.verbose_generic_activity("generate_crate_metadata_stub");
with_encode_metadata_header(tcx, ref_path,
|ecx|
{
let header: LazyValue<CrateHeader> =
ecx.lazy(CrateHeader {
name: tcx.crate_name(LOCAL_CRATE),
triple: tcx.sess.opts.target_triple.clone(),
hash: tcx.crate_hash(LOCAL_CRATE),
is_proc_macro_crate: false,
is_stub: true,
});
header.position.get()
})
}
let _prof_timer =
tcx.prof.verbose_generic_activity("generate_crate_metadata");
let dep_node = tcx.metadata_dep_node();
if tcx.dep_graph.is_fully_enabled() &&
let work_product_id =
WorkProductId::from_cgu_name("metadata") &&
let Some(work_product) =
tcx.dep_graph.previous_work_product(&work_product_id) &&
tcx.dep_graph.try_mark_green(tcx, &dep_node).is_some() {
let saved_path = &work_product.saved_files["rmeta"];
let incr_comp_session_dir =
tcx.sess.incr_comp_session_dir_opt().unwrap();
let source_file =
rustc_incremental::in_incr_comp_dir(&incr_comp_session_dir,
saved_path);
{
use ::tracing::__macro_support::Callsite as _;
static __CALLSITE: ::tracing::callsite::DefaultCallsite =
{
static META: ::tracing::Metadata<'static> =
{
::tracing_core::metadata::Metadata::new("event compiler/rustc_metadata/src/rmeta/encoder.rs:2461",
"rustc_metadata::rmeta::encoder", ::tracing::Level::DEBUG,
::tracing_core::__macro_support::Option::Some("compiler/rustc_metadata/src/rmeta/encoder.rs"),
::tracing_core::__macro_support::Option::Some(2461u32),
::tracing_core::__macro_support::Option::Some("rustc_metadata::rmeta::encoder"),
::tracing_core::field::FieldSet::new(&["message"],
::tracing_core::callsite::Identifier(&__CALLSITE)),
::tracing::metadata::Kind::EVENT)
};
::tracing::callsite::DefaultCallsite::new(&META)
};
let enabled =
::tracing::Level::DEBUG <=
::tracing::level_filters::STATIC_MAX_LEVEL &&
::tracing::Level::DEBUG <=
::tracing::level_filters::LevelFilter::current() &&
{
let interest = __CALLSITE.interest();
!interest.is_never() &&
::tracing::__macro_support::__is_enabled(__CALLSITE.metadata(),
interest)
};
if enabled {
(|value_set: ::tracing::field::ValueSet|
{
let meta = __CALLSITE.metadata();
::tracing::Event::dispatch(meta, &value_set);
;
})({
#[allow(unused_imports)]
use ::tracing::field::{debug, display, Value};
let mut iter = __CALLSITE.metadata().fields().iter();
__CALLSITE.metadata().fields().value_set(&[(&::tracing::__macro_support::Iterator::next(&mut iter).expect("FieldSet corrupted (this is a bug)"),
::tracing::__macro_support::Option::Some(&format_args!("copying preexisting metadata from {0:?} to {1:?}",
source_file, path) as &dyn Value))])
});
} else { ; }
};
match rustc_fs_util::link_or_copy(&source_file, path) {
Ok(_) => {}
Err(err) =>
tcx.dcx().emit_fatal(FailCreateFileEncoder { err }),
};
return;
};
if tcx.sess.threads().is_some() {
par_join(|| prefetch_mir(tcx),
||
{
let _ = tcx.exported_non_generic_symbols(LOCAL_CRATE);
let _ = tcx.exported_generic_symbols(LOCAL_CRATE);
});
}
tcx.dep_graph.with_task(dep_node, tcx,
||
{
with_encode_metadata_header(tcx, path,
|ecx|
{
let root = ecx.encode_crate_root();
ecx.opaque.flush();
tcx.prof.artifact_size("crate_metadata", "crate_metadata",
ecx.opaque.file().metadata().unwrap().len());
root.position.get()
})
}, None);
}
}
}#[instrument(level = "trace", skip(tcx))]
2427pub fn encode_metadata(tcx: TyCtxt<'_>, path: &Path, ref_path: Option<&Path>) {
2428 tcx.dep_graph.assert_ignored();
2431
2432 if let Some(ref_path) = ref_path {
2434 let _prof_timer = tcx.prof.verbose_generic_activity("generate_crate_metadata_stub");
2435
2436 with_encode_metadata_header(tcx, ref_path, |ecx| {
2437 let header: LazyValue<CrateHeader> = ecx.lazy(CrateHeader {
2438 name: tcx.crate_name(LOCAL_CRATE),
2439 triple: tcx.sess.opts.target_triple.clone(),
2440 hash: tcx.crate_hash(LOCAL_CRATE),
2441 is_proc_macro_crate: false,
2442 is_stub: true,
2443 });
2444 header.position.get()
2445 })
2446 }
2447
2448 let _prof_timer = tcx.prof.verbose_generic_activity("generate_crate_metadata");
2449
2450 let dep_node = tcx.metadata_dep_node();
2451
2452 if tcx.dep_graph.is_fully_enabled()
2454 && let work_product_id = WorkProductId::from_cgu_name("metadata")
2455 && let Some(work_product) = tcx.dep_graph.previous_work_product(&work_product_id)
2456 && tcx.dep_graph.try_mark_green(tcx, &dep_node).is_some()
2457 {
2458 let saved_path = &work_product.saved_files["rmeta"];
2459 let incr_comp_session_dir = tcx.sess.incr_comp_session_dir_opt().unwrap();
2460 let source_file = rustc_incremental::in_incr_comp_dir(&incr_comp_session_dir, saved_path);
2461 debug!("copying preexisting metadata from {source_file:?} to {path:?}");
2462 match rustc_fs_util::link_or_copy(&source_file, path) {
2463 Ok(_) => {}
2464 Err(err) => tcx.dcx().emit_fatal(FailCreateFileEncoder { err }),
2465 };
2466 return;
2467 };
2468
2469 if tcx.sess.threads().is_some() {
2470 par_join(
2474 || prefetch_mir(tcx),
2475 || {
2476 let _ = tcx.exported_non_generic_symbols(LOCAL_CRATE);
2477 let _ = tcx.exported_generic_symbols(LOCAL_CRATE);
2478 },
2479 );
2480 }
2481
2482 tcx.dep_graph.with_task(
2485 dep_node,
2486 tcx,
2487 || {
2488 with_encode_metadata_header(tcx, path, |ecx| {
2489 let root = ecx.encode_crate_root();
2492
2493 ecx.opaque.flush();
2495 tcx.prof.artifact_size(
2497 "crate_metadata",
2498 "crate_metadata",
2499 ecx.opaque.file().metadata().unwrap().len(),
2500 );
2501
2502 root.position.get()
2503 })
2504 },
2505 None,
2506 );
2507}
2508
2509fn with_encode_metadata_header(
2510 tcx: TyCtxt<'_>,
2511 path: &Path,
2512 f: impl FnOnce(&mut EncodeContext<'_, '_>) -> usize,
2513) {
2514 let mut encoder = opaque::FileEncoder::new(path)
2515 .unwrap_or_else(|err| tcx.dcx().emit_fatal(FailCreateFileEncoder { err }));
2516 encoder.emit_raw_bytes(METADATA_HEADER);
2517
2518 encoder.emit_raw_bytes(&0u64.to_le_bytes());
2520
2521 let source_map_files = tcx.sess.source_map().files();
2522 let source_file_cache = (Arc::clone(&source_map_files[0]), 0);
2523 let required_source_files = Some(FxIndexSet::default());
2524 drop(source_map_files);
2525
2526 let hygiene_ctxt = HygieneEncodeContext::default();
2527
2528 let mut ecx = EncodeContext {
2529 opaque: encoder,
2530 tcx,
2531 feat: tcx.features(),
2532 tables: Default::default(),
2533 lazy_state: LazyState::NoNode,
2534 span_shorthands: Default::default(),
2535 type_shorthands: Default::default(),
2536 predicate_shorthands: Default::default(),
2537 source_file_cache,
2538 interpret_allocs: Default::default(),
2539 required_source_files,
2540 is_proc_macro: tcx.crate_types().contains(&CrateType::ProcMacro),
2541 hygiene_ctxt: &hygiene_ctxt,
2542 symbol_index_table: Default::default(),
2543 };
2544
2545 rustc_version(tcx.sess.cfg_version).encode(&mut ecx);
2547
2548 let root_position = f(&mut ecx);
2549
2550 if let Err((path, err)) = ecx.opaque.finish() {
2554 tcx.dcx().emit_fatal(FailWriteFile { path: &path, err });
2555 }
2556
2557 let file = ecx.opaque.file();
2558 if let Err(err) = encode_root_position(file, root_position) {
2559 tcx.dcx().emit_fatal(FailWriteFile { path: ecx.opaque.path(), err });
2560 }
2561}
2562
2563fn encode_root_position(mut file: &File, pos: usize) -> Result<(), std::io::Error> {
2564 let pos_before_seek = file.stream_position().unwrap();
2566
2567 let header = METADATA_HEADER.len();
2569 file.seek(std::io::SeekFrom::Start(header as u64))?;
2570 file.write_all(&pos.to_le_bytes())?;
2571
2572 file.seek(std::io::SeekFrom::Start(pos_before_seek))?;
2574 Ok(())
2575}
2576
2577pub(crate) fn provide(providers: &mut Providers) {
2578 *providers = Providers {
2579 doc_link_resolutions: |tcx, def_id| {
2580 tcx.resolutions(())
2581 .doc_link_resolutions
2582 .get(&def_id)
2583 .unwrap_or_else(|| ::rustc_middle::util::bug::span_bug_fmt(tcx.def_span(def_id),
format_args!("no resolutions for a doc link"))span_bug!(tcx.def_span(def_id), "no resolutions for a doc link"))
2584 },
2585 doc_link_traits_in_scope: |tcx, def_id| {
2586 tcx.resolutions(()).doc_link_traits_in_scope.get(&def_id).unwrap_or_else(|| {
2587 ::rustc_middle::util::bug::span_bug_fmt(tcx.def_span(def_id),
format_args!("no traits in scope for a doc link"))span_bug!(tcx.def_span(def_id), "no traits in scope for a doc link")
2588 })
2589 },
2590
2591 ..*providers
2592 }
2593}
2594
2595pub fn rendered_const<'tcx>(tcx: TyCtxt<'tcx>, body: &hir::Body<'_>, def_id: LocalDefId) -> String {
2623 let value = body.value;
2624
2625 #[derive(#[automatically_derived]
impl ::core::cmp::PartialEq for Classification {
#[inline]
fn eq(&self, other: &Classification) -> bool {
let __self_discr = ::core::intrinsics::discriminant_value(self);
let __arg1_discr = ::core::intrinsics::discriminant_value(other);
__self_discr == __arg1_discr
}
}PartialEq, #[automatically_derived]
impl ::core::cmp::Eq for Classification {
#[inline]
#[doc(hidden)]
#[coverage(off)]
fn assert_fields_are_eq(&self) {}
}Eq)]
2626 enum Classification {
2627 Literal,
2628 Simple,
2629 Complex,
2630 }
2631
2632 use Classification::*;
2633
2634 fn classify(expr: &hir::Expr<'_>) -> Classification {
2635 match &expr.kind {
2636 hir::ExprKind::Unary(hir::UnOp::Neg, expr) => {
2637 if #[allow(non_exhaustive_omitted_patterns)] match expr.kind {
hir::ExprKind::Lit(_) => true,
_ => false,
}matches!(expr.kind, hir::ExprKind::Lit(_)) { Literal } else { Complex }
2638 }
2639 hir::ExprKind::Lit(_) => Literal,
2640 hir::ExprKind::Tup([]) => Simple,
2641 hir::ExprKind::Block(hir::Block { stmts: [], expr: Some(expr), .. }, _) => {
2642 if classify(expr) == Complex { Complex } else { Simple }
2643 }
2644 hir::ExprKind::Path(hir::QPath::Resolved(_, hir::Path { segments, .. })) => {
2649 if segments.iter().all(|segment| segment.args.is_none()) { Simple } else { Complex }
2650 }
2651 hir::ExprKind::Path(hir::QPath::TypeRelative(..)) => Simple,
2654 _ => Complex,
2655 }
2656 }
2657
2658 match classify(value) {
2659 Literal
2669 if !value.span.from_expansion()
2670 && let Ok(snippet) = tcx.sess.source_map().span_to_snippet(value.span) =>
2671 {
2672 snippet
2673 }
2674
2675 Literal | Simple => id_to_string(&tcx, body.id().hir_id),
2678
2679 Complex => {
2683 if tcx.def_kind(def_id) == DefKind::AnonConst {
2684 "{ _ }".to_owned()
2685 } else {
2686 "_".to_owned()
2687 }
2688 }
2689 }
2690}