]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_metadata/src/rmeta/decoder.rs
Auto merge of #98627 - RalfJung:interpret-arith, r=lcnr
[rust.git] / compiler / rustc_metadata / src / rmeta / decoder.rs
1 // Decoding metadata from a single crate's metadata
2
3 use crate::creader::{CStore, CrateMetadataRef};
4 use crate::rmeta::*;
5
6 use rustc_ast as ast;
7 use rustc_ast::ptr::P;
8 use rustc_data_structures::captures::Captures;
9 use rustc_data_structures::fx::FxHashMap;
10 use rustc_data_structures::svh::Svh;
11 use rustc_data_structures::sync::{Lock, LockGuard, Lrc, OnceCell};
12 use rustc_data_structures::unhash::UnhashMap;
13 use rustc_expand::base::{SyntaxExtension, SyntaxExtensionKind};
14 use rustc_expand::proc_macro::{AttrProcMacro, BangProcMacro, DeriveProcMacro};
15 use rustc_hir::def::{CtorKind, CtorOf, DefKind, Res};
16 use rustc_hir::def_id::{CrateNum, DefId, DefIndex, CRATE_DEF_INDEX, LOCAL_CRATE};
17 use rustc_hir::definitions::{DefKey, DefPath, DefPathData, DefPathHash};
18 use rustc_hir::diagnostic_items::DiagnosticItems;
19 use rustc_hir::lang_items;
20 use rustc_index::vec::{Idx, IndexVec};
21 use rustc_middle::metadata::ModChild;
22 use rustc_middle::middle::exported_symbols::{ExportedSymbol, SymbolExportInfo};
23 use rustc_middle::mir::interpret::{AllocDecodingSession, AllocDecodingState};
24 use rustc_middle::thir;
25 use rustc_middle::ty::codec::TyDecoder;
26 use rustc_middle::ty::fast_reject::SimplifiedType;
27 use rustc_middle::ty::GeneratorDiagnosticData;
28 use rustc_middle::ty::{self, ParameterizedOverTcx, Ty, TyCtxt, Visibility};
29 use rustc_serialize::opaque::MemDecoder;
30 use rustc_serialize::{Decodable, Decoder};
31 use rustc_session::cstore::{
32     CrateSource, ExternCrate, ForeignModule, LinkagePreference, NativeLib,
33 };
34 use rustc_session::Session;
35 use rustc_span::hygiene::{ExpnIndex, MacroKind};
36 use rustc_span::source_map::{respan, Spanned};
37 use rustc_span::symbol::{sym, Ident, Symbol};
38 use rustc_span::{self, BytePos, ExpnId, Pos, Span, SyntaxContext, DUMMY_SP};
39
40 use proc_macro::bridge::client::ProcMacro;
41 use std::io;
42 use std::iter::TrustedLen;
43 use std::mem;
44 use std::num::NonZeroUsize;
45 use std::path::PathBuf;
46 use tracing::debug;
47
48 pub(super) use cstore_impl::provide;
49 pub use cstore_impl::provide_extern;
50 use rustc_span::hygiene::HygieneDecodeContext;
51
52 mod cstore_impl;
53
54 /// A reference to the raw binary version of crate metadata.
55 /// A `MetadataBlob` internally is just a reference counted pointer to
56 /// the actual data, so cloning it is cheap.
57 #[derive(Clone)]
58 pub(crate) struct MetadataBlob(Lrc<MetadataRef>);
59
60 // This is needed so we can create an OwningRef into the blob.
61 // The data behind a `MetadataBlob` has a stable address because it is
62 // contained within an Rc/Arc.
63 unsafe impl rustc_data_structures::owning_ref::StableAddress for MetadataBlob {}
64
65 // This is needed so we can create an OwningRef into the blob.
66 impl std::ops::Deref for MetadataBlob {
67     type Target = [u8];
68
69     #[inline]
70     fn deref(&self) -> &[u8] {
71         &self.0[..]
72     }
73 }
74
75 // A map from external crate numbers (as decoded from some crate file) to
76 // local crate numbers (as generated during this session). Each external
77 // crate may refer to types in other external crates, and each has their
78 // own crate numbers.
79 pub(crate) type CrateNumMap = IndexVec<CrateNum, CrateNum>;
80
81 pub(crate) struct CrateMetadata {
82     /// The primary crate data - binary metadata blob.
83     blob: MetadataBlob,
84
85     // --- Some data pre-decoded from the metadata blob, usually for performance ---
86     /// NOTE(eddyb) we pass `'static` to a `'tcx` parameter because this
87     /// lifetime is only used behind `Lazy`, and therefore acts like a
88     /// universal (`for<'tcx>`), that is paired up with whichever `TyCtxt`
89     /// is being used to decode those values.
90     root: CrateRoot,
91     /// Trait impl data.
92     /// FIXME: Used only from queries and can use query cache,
93     /// so pre-decoding can probably be avoided.
94     trait_impls: FxHashMap<(u32, DefIndex), LazyArray<(DefIndex, Option<SimplifiedType>)>>,
95     /// Inherent impls which do not follow the normal coherence rules.
96     ///
97     /// These can be introduced using either `#![rustc_coherence_is_core]`
98     /// or `#[rustc_allow_incoherent_impl]`.
99     incoherent_impls: FxHashMap<SimplifiedType, LazyArray<DefIndex>>,
100     /// Proc macro descriptions for this crate, if it's a proc macro crate.
101     raw_proc_macros: Option<&'static [ProcMacro]>,
102     /// Source maps for code from the crate.
103     source_map_import_info: OnceCell<Vec<ImportedSourceFile>>,
104     /// For every definition in this crate, maps its `DefPathHash` to its `DefIndex`.
105     def_path_hash_map: DefPathHashMapRef<'static>,
106     /// Likewise for ExpnHash.
107     expn_hash_map: OnceCell<UnhashMap<ExpnHash, ExpnIndex>>,
108     /// Used for decoding interpret::AllocIds in a cached & thread-safe manner.
109     alloc_decoding_state: AllocDecodingState,
110     /// Caches decoded `DefKey`s.
111     def_key_cache: Lock<FxHashMap<DefIndex, DefKey>>,
112     /// Caches decoded `DefPathHash`es.
113     def_path_hash_cache: Lock<FxHashMap<DefIndex, DefPathHash>>,
114
115     // --- Other significant crate properties ---
116     /// ID of this crate, from the current compilation session's point of view.
117     cnum: CrateNum,
118     /// Maps crate IDs as they are were seen from this crate's compilation sessions into
119     /// IDs as they are seen from the current compilation session.
120     cnum_map: CrateNumMap,
121     /// Same ID set as `cnum_map` plus maybe some injected crates like panic runtime.
122     dependencies: Lock<Vec<CrateNum>>,
123     /// How to link (or not link) this crate to the currently compiled crate.
124     dep_kind: Lock<CrateDepKind>,
125     /// Filesystem location of this crate.
126     source: Lrc<CrateSource>,
127     /// Whether or not this crate should be consider a private dependency
128     /// for purposes of the 'exported_private_dependencies' lint
129     private_dep: bool,
130     /// The hash for the host proc macro. Used to support `-Z dual-proc-macro`.
131     host_hash: Option<Svh>,
132
133     /// Additional data used for decoding `HygieneData` (e.g. `SyntaxContext`
134     /// and `ExpnId`).
135     /// Note that we store a `HygieneDecodeContext` for each `CrateMetadat`. This is
136     /// because `SyntaxContext` ids are not globally unique, so we need
137     /// to track which ids we've decoded on a per-crate basis.
138     hygiene_context: HygieneDecodeContext,
139
140     // --- Data used only for improving diagnostics ---
141     /// Information about the `extern crate` item or path that caused this crate to be loaded.
142     /// If this is `None`, then the crate was injected (e.g., by the allocator).
143     extern_crate: Lock<Option<ExternCrate>>,
144 }
145
146 /// Holds information about a rustc_span::SourceFile imported from another crate.
147 /// See `imported_source_files()` for more information.
148 struct ImportedSourceFile {
149     /// This SourceFile's byte-offset within the source_map of its original crate
150     original_start_pos: rustc_span::BytePos,
151     /// The end of this SourceFile within the source_map of its original crate
152     original_end_pos: rustc_span::BytePos,
153     /// The imported SourceFile's representation within the local source_map
154     translated_source_file: Lrc<rustc_span::SourceFile>,
155 }
156
157 pub(super) struct DecodeContext<'a, 'tcx> {
158     opaque: MemDecoder<'a>,
159     cdata: Option<CrateMetadataRef<'a>>,
160     blob: &'a MetadataBlob,
161     sess: Option<&'tcx Session>,
162     tcx: Option<TyCtxt<'tcx>>,
163
164     // Cache the last used source_file for translating spans as an optimization.
165     last_source_file_index: usize,
166
167     lazy_state: LazyState,
168
169     // Used for decoding interpret::AllocIds in a cached & thread-safe manner.
170     alloc_decoding_session: Option<AllocDecodingSession<'a>>,
171 }
172
173 /// Abstract over the various ways one can create metadata decoders.
174 pub(super) trait Metadata<'a, 'tcx>: Copy {
175     fn blob(self) -> &'a MetadataBlob;
176
177     fn cdata(self) -> Option<CrateMetadataRef<'a>> {
178         None
179     }
180     fn sess(self) -> Option<&'tcx Session> {
181         None
182     }
183     fn tcx(self) -> Option<TyCtxt<'tcx>> {
184         None
185     }
186
187     fn decoder(self, pos: usize) -> DecodeContext<'a, 'tcx> {
188         let tcx = self.tcx();
189         DecodeContext {
190             opaque: MemDecoder::new(self.blob(), pos),
191             cdata: self.cdata(),
192             blob: self.blob(),
193             sess: self.sess().or(tcx.map(|tcx| tcx.sess)),
194             tcx,
195             last_source_file_index: 0,
196             lazy_state: LazyState::NoNode,
197             alloc_decoding_session: self
198                 .cdata()
199                 .map(|cdata| cdata.cdata.alloc_decoding_state.new_decoding_session()),
200         }
201     }
202 }
203
204 impl<'a, 'tcx> Metadata<'a, 'tcx> for &'a MetadataBlob {
205     #[inline]
206     fn blob(self) -> &'a MetadataBlob {
207         self
208     }
209 }
210
211 impl<'a, 'tcx> Metadata<'a, 'tcx> for (&'a MetadataBlob, &'tcx Session) {
212     #[inline]
213     fn blob(self) -> &'a MetadataBlob {
214         self.0
215     }
216
217     #[inline]
218     fn sess(self) -> Option<&'tcx Session> {
219         let (_, sess) = self;
220         Some(sess)
221     }
222 }
223
224 impl<'a, 'tcx> Metadata<'a, 'tcx> for CrateMetadataRef<'a> {
225     #[inline]
226     fn blob(self) -> &'a MetadataBlob {
227         &self.cdata.blob
228     }
229     #[inline]
230     fn cdata(self) -> Option<CrateMetadataRef<'a>> {
231         Some(self)
232     }
233 }
234
235 impl<'a, 'tcx> Metadata<'a, 'tcx> for (CrateMetadataRef<'a>, &'tcx Session) {
236     #[inline]
237     fn blob(self) -> &'a MetadataBlob {
238         &self.0.cdata.blob
239     }
240     #[inline]
241     fn cdata(self) -> Option<CrateMetadataRef<'a>> {
242         Some(self.0)
243     }
244     #[inline]
245     fn sess(self) -> Option<&'tcx Session> {
246         Some(self.1)
247     }
248 }
249
250 impl<'a, 'tcx> Metadata<'a, 'tcx> for (CrateMetadataRef<'a>, TyCtxt<'tcx>) {
251     #[inline]
252     fn blob(self) -> &'a MetadataBlob {
253         &self.0.cdata.blob
254     }
255     #[inline]
256     fn cdata(self) -> Option<CrateMetadataRef<'a>> {
257         Some(self.0)
258     }
259     #[inline]
260     fn tcx(self) -> Option<TyCtxt<'tcx>> {
261         Some(self.1)
262     }
263 }
264
265 impl<T: ParameterizedOverTcx> LazyValue<T> {
266     fn decode<'a, 'tcx, M: Metadata<'a, 'tcx>>(self, metadata: M) -> T::Value<'tcx>
267     where
268         T::Value<'tcx>: Decodable<DecodeContext<'a, 'tcx>>,
269     {
270         let mut dcx = metadata.decoder(self.position.get());
271         dcx.lazy_state = LazyState::NodeStart(self.position);
272         T::Value::decode(&mut dcx)
273     }
274 }
275
276 struct DecodeIterator<'a, 'tcx, T> {
277     elem_counter: std::ops::Range<usize>,
278     dcx: DecodeContext<'a, 'tcx>,
279     _phantom: PhantomData<fn() -> T>,
280 }
281
282 impl<'a, 'tcx, T: Decodable<DecodeContext<'a, 'tcx>>> Iterator for DecodeIterator<'a, 'tcx, T> {
283     type Item = T;
284
285     #[inline(always)]
286     fn next(&mut self) -> Option<Self::Item> {
287         self.elem_counter.next().map(|_| T::decode(&mut self.dcx))
288     }
289
290     #[inline(always)]
291     fn size_hint(&self) -> (usize, Option<usize>) {
292         self.elem_counter.size_hint()
293     }
294 }
295
296 impl<'a, 'tcx, T: Decodable<DecodeContext<'a, 'tcx>>> ExactSizeIterator
297     for DecodeIterator<'a, 'tcx, T>
298 {
299     fn len(&self) -> usize {
300         self.elem_counter.len()
301     }
302 }
303
304 unsafe impl<'a, 'tcx, T: Decodable<DecodeContext<'a, 'tcx>>> TrustedLen
305     for DecodeIterator<'a, 'tcx, T>
306 {
307 }
308
309 impl<T: ParameterizedOverTcx> LazyArray<T> {
310     fn decode<'a, 'tcx, M: Metadata<'a, 'tcx>>(
311         self,
312         metadata: M,
313     ) -> DecodeIterator<'a, 'tcx, T::Value<'tcx>>
314     where
315         T::Value<'tcx>: Decodable<DecodeContext<'a, 'tcx>>,
316     {
317         let mut dcx = metadata.decoder(self.position.get());
318         dcx.lazy_state = LazyState::NodeStart(self.position);
319         DecodeIterator { elem_counter: (0..self.num_elems), dcx, _phantom: PhantomData }
320     }
321 }
322
323 impl<'a, 'tcx> DecodeContext<'a, 'tcx> {
324     #[inline]
325     fn tcx(&self) -> TyCtxt<'tcx> {
326         debug_assert!(self.tcx.is_some(), "missing TyCtxt in DecodeContext");
327         self.tcx.unwrap()
328     }
329
330     #[inline]
331     pub fn blob(&self) -> &'a MetadataBlob {
332         self.blob
333     }
334
335     #[inline]
336     pub fn cdata(&self) -> CrateMetadataRef<'a> {
337         debug_assert!(self.cdata.is_some(), "missing CrateMetadata in DecodeContext");
338         self.cdata.unwrap()
339     }
340
341     #[inline]
342     fn map_encoded_cnum_to_current(&self, cnum: CrateNum) -> CrateNum {
343         self.cdata().map_encoded_cnum_to_current(cnum)
344     }
345
346     #[inline]
347     fn read_lazy_offset_then<T>(&mut self, f: impl Fn(NonZeroUsize) -> T) -> T {
348         let distance = self.read_usize();
349         let position = match self.lazy_state {
350             LazyState::NoNode => bug!("read_lazy_with_meta: outside of a metadata node"),
351             LazyState::NodeStart(start) => {
352                 let start = start.get();
353                 assert!(distance <= start);
354                 start - distance
355             }
356             LazyState::Previous(last_pos) => last_pos.get() + distance,
357         };
358         let position = NonZeroUsize::new(position).unwrap();
359         self.lazy_state = LazyState::Previous(position);
360         f(position)
361     }
362
363     fn read_lazy<T>(&mut self) -> LazyValue<T> {
364         self.read_lazy_offset_then(|pos| LazyValue::from_position(pos))
365     }
366
367     fn read_lazy_array<T>(&mut self, len: usize) -> LazyArray<T> {
368         self.read_lazy_offset_then(|pos| LazyArray::from_position_and_num_elems(pos, len))
369     }
370
371     fn read_lazy_table<I, T>(&mut self, len: usize) -> LazyTable<I, T> {
372         self.read_lazy_offset_then(|pos| LazyTable::from_position_and_encoded_size(pos, len))
373     }
374
375     #[inline]
376     pub fn read_raw_bytes(&mut self, len: usize) -> &[u8] {
377         self.opaque.read_raw_bytes(len)
378     }
379 }
380
381 impl<'a, 'tcx> TyDecoder for DecodeContext<'a, 'tcx> {
382     const CLEAR_CROSS_CRATE: bool = true;
383
384     type I = TyCtxt<'tcx>;
385
386     #[inline]
387     fn interner(&self) -> Self::I {
388         self.tcx()
389     }
390
391     #[inline]
392     fn peek_byte(&self) -> u8 {
393         self.opaque.data[self.opaque.position()]
394     }
395
396     #[inline]
397     fn position(&self) -> usize {
398         self.opaque.position()
399     }
400
401     fn cached_ty_for_shorthand<F>(&mut self, shorthand: usize, or_insert_with: F) -> Ty<'tcx>
402     where
403         F: FnOnce(&mut Self) -> Ty<'tcx>,
404     {
405         let tcx = self.tcx();
406
407         let key = ty::CReaderCacheKey { cnum: Some(self.cdata().cnum), pos: shorthand };
408
409         if let Some(&ty) = tcx.ty_rcache.borrow().get(&key) {
410             return ty;
411         }
412
413         let ty = or_insert_with(self);
414         tcx.ty_rcache.borrow_mut().insert(key, ty);
415         ty
416     }
417
418     fn with_position<F, R>(&mut self, pos: usize, f: F) -> R
419     where
420         F: FnOnce(&mut Self) -> R,
421     {
422         let new_opaque = MemDecoder::new(self.opaque.data, pos);
423         let old_opaque = mem::replace(&mut self.opaque, new_opaque);
424         let old_state = mem::replace(&mut self.lazy_state, LazyState::NoNode);
425         let r = f(self);
426         self.opaque = old_opaque;
427         self.lazy_state = old_state;
428         r
429     }
430
431     fn decode_alloc_id(&mut self) -> rustc_middle::mir::interpret::AllocId {
432         if let Some(alloc_decoding_session) = self.alloc_decoding_session {
433             alloc_decoding_session.decode_alloc_id(self)
434         } else {
435             bug!("Attempting to decode interpret::AllocId without CrateMetadata")
436         }
437     }
438 }
439
440 impl<'a, 'tcx> Decodable<DecodeContext<'a, 'tcx>> for CrateNum {
441     fn decode(d: &mut DecodeContext<'a, 'tcx>) -> CrateNum {
442         let cnum = CrateNum::from_u32(d.read_u32());
443         d.map_encoded_cnum_to_current(cnum)
444     }
445 }
446
447 impl<'a, 'tcx> Decodable<DecodeContext<'a, 'tcx>> for DefIndex {
448     fn decode(d: &mut DecodeContext<'a, 'tcx>) -> DefIndex {
449         DefIndex::from_u32(d.read_u32())
450     }
451 }
452
453 impl<'a, 'tcx> Decodable<DecodeContext<'a, 'tcx>> for ExpnIndex {
454     fn decode(d: &mut DecodeContext<'a, 'tcx>) -> ExpnIndex {
455         ExpnIndex::from_u32(d.read_u32())
456     }
457 }
458
459 impl<'a, 'tcx> Decodable<DecodeContext<'a, 'tcx>> for SyntaxContext {
460     fn decode(decoder: &mut DecodeContext<'a, 'tcx>) -> SyntaxContext {
461         let cdata = decoder.cdata();
462         let sess = decoder.sess.unwrap();
463         let cname = cdata.root.name;
464         rustc_span::hygiene::decode_syntax_context(decoder, &cdata.hygiene_context, |_, id| {
465             debug!("SpecializedDecoder<SyntaxContext>: decoding {}", id);
466             cdata
467                 .root
468                 .syntax_contexts
469                 .get(cdata, id)
470                 .unwrap_or_else(|| panic!("Missing SyntaxContext {:?} for crate {:?}", id, cname))
471                 .decode((cdata, sess))
472         })
473     }
474 }
475
476 impl<'a, 'tcx> Decodable<DecodeContext<'a, 'tcx>> for ExpnId {
477     fn decode(decoder: &mut DecodeContext<'a, 'tcx>) -> ExpnId {
478         let local_cdata = decoder.cdata();
479         let sess = decoder.sess.unwrap();
480
481         let cnum = CrateNum::decode(decoder);
482         let index = u32::decode(decoder);
483
484         let expn_id = rustc_span::hygiene::decode_expn_id(cnum, index, |expn_id| {
485             let ExpnId { krate: cnum, local_id: index } = expn_id;
486             // Lookup local `ExpnData`s in our own crate data. Foreign `ExpnData`s
487             // are stored in the owning crate, to avoid duplication.
488             debug_assert_ne!(cnum, LOCAL_CRATE);
489             let crate_data = if cnum == local_cdata.cnum {
490                 local_cdata
491             } else {
492                 local_cdata.cstore.get_crate_data(cnum)
493             };
494             let expn_data = crate_data
495                 .root
496                 .expn_data
497                 .get(crate_data, index)
498                 .unwrap()
499                 .decode((crate_data, sess));
500             let expn_hash = crate_data
501                 .root
502                 .expn_hashes
503                 .get(crate_data, index)
504                 .unwrap()
505                 .decode((crate_data, sess));
506             (expn_data, expn_hash)
507         });
508         expn_id
509     }
510 }
511
512 impl<'a, 'tcx> Decodable<DecodeContext<'a, 'tcx>> for Span {
513     fn decode(decoder: &mut DecodeContext<'a, 'tcx>) -> Span {
514         let ctxt = SyntaxContext::decode(decoder);
515         let tag = u8::decode(decoder);
516
517         if tag == TAG_PARTIAL_SPAN {
518             return DUMMY_SP.with_ctxt(ctxt);
519         }
520
521         debug_assert!(tag == TAG_VALID_SPAN_LOCAL || tag == TAG_VALID_SPAN_FOREIGN);
522
523         let lo = BytePos::decode(decoder);
524         let len = BytePos::decode(decoder);
525         let hi = lo + len;
526
527         let Some(sess) = decoder.sess else {
528             bug!("Cannot decode Span without Session.")
529         };
530
531         // There are two possibilities here:
532         // 1. This is a 'local span', which is located inside a `SourceFile`
533         // that came from this crate. In this case, we use the source map data
534         // encoded in this crate. This branch should be taken nearly all of the time.
535         // 2. This is a 'foreign span', which is located inside a `SourceFile`
536         // that came from a *different* crate (some crate upstream of the one
537         // whose metadata we're looking at). For example, consider this dependency graph:
538         //
539         // A -> B -> C
540         //
541         // Suppose that we're currently compiling crate A, and start deserializing
542         // metadata from crate B. When we deserialize a Span from crate B's metadata,
543         // there are two possibilities:
544         //
545         // 1. The span references a file from crate B. This makes it a 'local' span,
546         // which means that we can use crate B's serialized source map information.
547         // 2. The span references a file from crate C. This makes it a 'foreign' span,
548         // which means we need to use Crate *C* (not crate B) to determine the source
549         // map information. We only record source map information for a file in the
550         // crate that 'owns' it, so deserializing a Span may require us to look at
551         // a transitive dependency.
552         //
553         // When we encode a foreign span, we adjust its 'lo' and 'high' values
554         // to be based on the *foreign* crate (e.g. crate C), not the crate
555         // we are writing metadata for (e.g. crate B). This allows us to
556         // treat the 'local' and 'foreign' cases almost identically during deserialization:
557         // we can call `imported_source_files` for the proper crate, and binary search
558         // through the returned slice using our span.
559         let imported_source_files = if tag == TAG_VALID_SPAN_LOCAL {
560             decoder.cdata().imported_source_files(sess)
561         } else {
562             // When we encode a proc-macro crate, all `Span`s should be encoded
563             // with `TAG_VALID_SPAN_LOCAL`
564             if decoder.cdata().root.is_proc_macro_crate() {
565                 // Decode `CrateNum` as u32 - using `CrateNum::decode` will ICE
566                 // since we don't have `cnum_map` populated.
567                 let cnum = u32::decode(decoder);
568                 panic!(
569                     "Decoding of crate {:?} tried to access proc-macro dep {:?}",
570                     decoder.cdata().root.name,
571                     cnum
572                 );
573             }
574             // tag is TAG_VALID_SPAN_FOREIGN, checked by `debug_assert` above
575             let cnum = CrateNum::decode(decoder);
576             debug!(
577                 "SpecializedDecoder<Span>::specialized_decode: loading source files from cnum {:?}",
578                 cnum
579             );
580
581             // Decoding 'foreign' spans should be rare enough that it's
582             // not worth it to maintain a per-CrateNum cache for `last_source_file_index`.
583             // We just set it to 0, to ensure that we don't try to access something out
584             // of bounds for our initial 'guess'
585             decoder.last_source_file_index = 0;
586
587             let foreign_data = decoder.cdata().cstore.get_crate_data(cnum);
588             foreign_data.imported_source_files(sess)
589         };
590
591         let source_file = {
592             // Optimize for the case that most spans within a translated item
593             // originate from the same source_file.
594             let last_source_file = &imported_source_files[decoder.last_source_file_index];
595
596             if lo >= last_source_file.original_start_pos && lo <= last_source_file.original_end_pos
597             {
598                 last_source_file
599             } else {
600                 let index = imported_source_files
601                     .binary_search_by_key(&lo, |source_file| source_file.original_start_pos)
602                     .unwrap_or_else(|index| index - 1);
603
604                 // Don't try to cache the index for foreign spans,
605                 // as this would require a map from CrateNums to indices
606                 if tag == TAG_VALID_SPAN_LOCAL {
607                     decoder.last_source_file_index = index;
608                 }
609                 &imported_source_files[index]
610             }
611         };
612
613         // Make sure our binary search above is correct.
614         debug_assert!(
615             lo >= source_file.original_start_pos && lo <= source_file.original_end_pos,
616             "Bad binary search: lo={:?} source_file.original_start_pos={:?} source_file.original_end_pos={:?}",
617             lo,
618             source_file.original_start_pos,
619             source_file.original_end_pos
620         );
621
622         // Make sure we correctly filtered out invalid spans during encoding
623         debug_assert!(
624             hi >= source_file.original_start_pos && hi <= source_file.original_end_pos,
625             "Bad binary search: hi={:?} source_file.original_start_pos={:?} source_file.original_end_pos={:?}",
626             hi,
627             source_file.original_start_pos,
628             source_file.original_end_pos
629         );
630
631         let lo =
632             (lo + source_file.translated_source_file.start_pos) - source_file.original_start_pos;
633         let hi =
634             (hi + source_file.translated_source_file.start_pos) - source_file.original_start_pos;
635
636         // Do not try to decode parent for foreign spans.
637         Span::new(lo, hi, ctxt, None)
638     }
639 }
640
641 impl<'a, 'tcx> Decodable<DecodeContext<'a, 'tcx>> for &'tcx [thir::abstract_const::Node<'tcx>] {
642     fn decode(d: &mut DecodeContext<'a, 'tcx>) -> Self {
643         ty::codec::RefDecodable::decode(d)
644     }
645 }
646
647 impl<'a, 'tcx> Decodable<DecodeContext<'a, 'tcx>> for &'tcx [(ty::Predicate<'tcx>, Span)] {
648     fn decode(d: &mut DecodeContext<'a, 'tcx>) -> Self {
649         ty::codec::RefDecodable::decode(d)
650     }
651 }
652
653 impl<'a, 'tcx, T> Decodable<DecodeContext<'a, 'tcx>> for LazyValue<T> {
654     fn decode(decoder: &mut DecodeContext<'a, 'tcx>) -> Self {
655         decoder.read_lazy()
656     }
657 }
658
659 impl<'a, 'tcx, T> Decodable<DecodeContext<'a, 'tcx>> for LazyArray<T> {
660     fn decode(decoder: &mut DecodeContext<'a, 'tcx>) -> Self {
661         let len = decoder.read_usize();
662         if len == 0 { LazyArray::empty() } else { decoder.read_lazy_array(len) }
663     }
664 }
665
666 impl<'a, 'tcx, I: Idx, T> Decodable<DecodeContext<'a, 'tcx>> for LazyTable<I, T> {
667     fn decode(decoder: &mut DecodeContext<'a, 'tcx>) -> Self {
668         let len = decoder.read_usize();
669         decoder.read_lazy_table(len)
670     }
671 }
672
673 implement_ty_decoder!(DecodeContext<'a, 'tcx>);
674
675 impl MetadataBlob {
676     pub(crate) fn new(metadata_ref: MetadataRef) -> MetadataBlob {
677         MetadataBlob(Lrc::new(metadata_ref))
678     }
679
680     pub(crate) fn is_compatible(&self) -> bool {
681         self.blob().starts_with(METADATA_HEADER)
682     }
683
684     pub(crate) fn get_rustc_version(&self) -> String {
685         LazyValue::<String>::from_position(NonZeroUsize::new(METADATA_HEADER.len() + 4).unwrap())
686             .decode(self)
687     }
688
689     pub(crate) fn get_root(&self) -> CrateRoot {
690         let slice = &self.blob()[..];
691         let offset = METADATA_HEADER.len();
692         let pos = (((slice[offset + 0] as u32) << 24)
693             | ((slice[offset + 1] as u32) << 16)
694             | ((slice[offset + 2] as u32) << 8)
695             | ((slice[offset + 3] as u32) << 0)) as usize;
696         LazyValue::<CrateRoot>::from_position(NonZeroUsize::new(pos).unwrap()).decode(self)
697     }
698
699     pub(crate) fn list_crate_metadata(&self, out: &mut dyn io::Write) -> io::Result<()> {
700         let root = self.get_root();
701         writeln!(out, "Crate info:")?;
702         writeln!(out, "name {}{}", root.name, root.extra_filename)?;
703         writeln!(out, "hash {} stable_crate_id {:?}", root.hash, root.stable_crate_id)?;
704         writeln!(out, "proc_macro {:?}", root.proc_macro_data.is_some())?;
705         writeln!(out, "=External Dependencies=")?;
706         for (i, dep) in root.crate_deps.decode(self).enumerate() {
707             writeln!(
708                 out,
709                 "{} {}{} hash {} host_hash {:?} kind {:?}",
710                 i + 1,
711                 dep.name,
712                 dep.extra_filename,
713                 dep.hash,
714                 dep.host_hash,
715                 dep.kind
716             )?;
717         }
718         write!(out, "\n")?;
719         Ok(())
720     }
721 }
722
723 impl CrateRoot {
724     pub(crate) fn is_proc_macro_crate(&self) -> bool {
725         self.proc_macro_data.is_some()
726     }
727
728     pub(crate) fn name(&self) -> Symbol {
729         self.name
730     }
731
732     pub(crate) fn hash(&self) -> Svh {
733         self.hash
734     }
735
736     pub(crate) fn stable_crate_id(&self) -> StableCrateId {
737         self.stable_crate_id
738     }
739
740     pub(crate) fn triple(&self) -> &TargetTriple {
741         &self.triple
742     }
743
744     pub(crate) fn decode_crate_deps<'a>(
745         &self,
746         metadata: &'a MetadataBlob,
747     ) -> impl ExactSizeIterator<Item = CrateDep> + Captures<'a> {
748         self.crate_deps.decode(metadata)
749     }
750 }
751
752 impl<'a, 'tcx> CrateMetadataRef<'a> {
753     fn raw_proc_macro(self, id: DefIndex) -> &'a ProcMacro {
754         // DefIndex's in root.proc_macro_data have a one-to-one correspondence
755         // with items in 'raw_proc_macros'.
756         let pos = self
757             .root
758             .proc_macro_data
759             .as_ref()
760             .unwrap()
761             .macros
762             .decode(self)
763             .position(|i| i == id)
764             .unwrap();
765         &self.raw_proc_macros.unwrap()[pos]
766     }
767
768     fn opt_item_name(self, item_index: DefIndex) -> Option<Symbol> {
769         self.def_key(item_index).disambiguated_data.data.get_opt_name()
770     }
771
772     fn item_name(self, item_index: DefIndex) -> Symbol {
773         self.opt_item_name(item_index).expect("no encoded ident for item")
774     }
775
776     fn opt_item_ident(self, item_index: DefIndex, sess: &Session) -> Option<Ident> {
777         let name = self.opt_item_name(item_index)?;
778         let span =
779             self.root.tables.def_ident_span.get(self, item_index).unwrap().decode((self, sess));
780         Some(Ident::new(name, span))
781     }
782
783     fn item_ident(self, item_index: DefIndex, sess: &Session) -> Ident {
784         self.opt_item_ident(item_index, sess).expect("no encoded ident for item")
785     }
786
787     fn maybe_kind(self, item_id: DefIndex) -> Option<EntryKind> {
788         self.root.tables.kind.get(self, item_id).map(|k| k.decode(self))
789     }
790
791     #[inline]
792     pub(super) fn map_encoded_cnum_to_current(self, cnum: CrateNum) -> CrateNum {
793         if cnum == LOCAL_CRATE { self.cnum } else { self.cnum_map[cnum] }
794     }
795
796     fn kind(self, item_id: DefIndex) -> EntryKind {
797         self.maybe_kind(item_id).unwrap_or_else(|| {
798             bug!(
799                 "CrateMetadata::kind({:?}): id not found, in crate {:?} with number {}",
800                 item_id,
801                 self.root.name,
802                 self.cnum,
803             )
804         })
805     }
806
807     fn def_kind(self, item_id: DefIndex) -> DefKind {
808         self.root.tables.opt_def_kind.get(self, item_id).unwrap_or_else(|| {
809             bug!(
810                 "CrateMetadata::def_kind({:?}): id not found, in crate {:?} with number {}",
811                 item_id,
812                 self.root.name,
813                 self.cnum,
814             )
815         })
816     }
817
818     fn get_span(self, index: DefIndex, sess: &Session) -> Span {
819         self.root
820             .tables
821             .def_span
822             .get(self, index)
823             .unwrap_or_else(|| panic!("Missing span for {:?}", index))
824             .decode((self, sess))
825     }
826
827     fn load_proc_macro(self, id: DefIndex, sess: &Session) -> SyntaxExtension {
828         let (name, kind, helper_attrs) = match *self.raw_proc_macro(id) {
829             ProcMacro::CustomDerive { trait_name, attributes, client } => {
830                 let helper_attrs =
831                     attributes.iter().cloned().map(Symbol::intern).collect::<Vec<_>>();
832                 (
833                     trait_name,
834                     SyntaxExtensionKind::Derive(Box::new(DeriveProcMacro { client })),
835                     helper_attrs,
836                 )
837             }
838             ProcMacro::Attr { name, client } => {
839                 (name, SyntaxExtensionKind::Attr(Box::new(AttrProcMacro { client })), Vec::new())
840             }
841             ProcMacro::Bang { name, client } => {
842                 (name, SyntaxExtensionKind::Bang(Box::new(BangProcMacro { client })), Vec::new())
843             }
844         };
845
846         let attrs: Vec<_> = self.get_item_attrs(id, sess).collect();
847         SyntaxExtension::new(
848             sess,
849             kind,
850             self.get_span(id, sess),
851             helper_attrs,
852             self.root.edition,
853             Symbol::intern(name),
854             &attrs,
855         )
856     }
857
858     fn get_variant(self, kind: &EntryKind, index: DefIndex, parent_did: DefId) -> ty::VariantDef {
859         let data = match kind {
860             EntryKind::Variant(data) | EntryKind::Struct(data) | EntryKind::Union(data) => {
861                 data.decode(self)
862             }
863             _ => bug!(),
864         };
865
866         let adt_kind = match kind {
867             EntryKind::Variant(_) => ty::AdtKind::Enum,
868             EntryKind::Struct(..) => ty::AdtKind::Struct,
869             EntryKind::Union(..) => ty::AdtKind::Union,
870             _ => bug!(),
871         };
872
873         let variant_did =
874             if adt_kind == ty::AdtKind::Enum { Some(self.local_def_id(index)) } else { None };
875         let ctor_did = data.ctor.map(|index| self.local_def_id(index));
876
877         ty::VariantDef::new(
878             self.item_name(index),
879             variant_did,
880             ctor_did,
881             data.discr,
882             self.root
883                 .tables
884                 .children
885                 .get(self, index)
886                 .unwrap_or_else(LazyArray::empty)
887                 .decode(self)
888                 .map(|index| ty::FieldDef {
889                     did: self.local_def_id(index),
890                     name: self.item_name(index),
891                     vis: self.get_visibility(index),
892                 })
893                 .collect(),
894             data.ctor_kind,
895             adt_kind,
896             parent_did,
897             false,
898             data.is_non_exhaustive,
899         )
900     }
901
902     fn get_adt_def(self, item_id: DefIndex, tcx: TyCtxt<'tcx>) -> ty::AdtDef<'tcx> {
903         let kind = self.kind(item_id);
904         let did = self.local_def_id(item_id);
905
906         let adt_kind = match kind {
907             EntryKind::Enum => ty::AdtKind::Enum,
908             EntryKind::Struct(_) => ty::AdtKind::Struct,
909             EntryKind::Union(_) => ty::AdtKind::Union,
910             _ => bug!("get_adt_def called on a non-ADT {:?}", did),
911         };
912         let repr = self.root.tables.repr_options.get(self, item_id).unwrap().decode(self);
913
914         let variants = if let ty::AdtKind::Enum = adt_kind {
915             self.root
916                 .tables
917                 .children
918                 .get(self, item_id)
919                 .unwrap_or_else(LazyArray::empty)
920                 .decode(self)
921                 .map(|index| self.get_variant(&self.kind(index), index, did))
922                 .collect()
923         } else {
924             std::iter::once(self.get_variant(&kind, item_id, did)).collect()
925         };
926
927         tcx.alloc_adt_def(did, adt_kind, variants, repr)
928     }
929
930     fn get_generics(self, item_id: DefIndex, sess: &Session) -> ty::Generics {
931         self.root.tables.generics_of.get(self, item_id).unwrap().decode((self, sess))
932     }
933
934     fn get_visibility(self, id: DefIndex) -> ty::Visibility {
935         self.root.tables.visibility.get(self, id).unwrap().decode(self)
936     }
937
938     fn get_trait_item_def_id(self, id: DefIndex) -> Option<DefId> {
939         self.root.tables.trait_item_def_id.get(self, id).map(|d| d.decode_from_cdata(self))
940     }
941
942     fn get_expn_that_defined(self, id: DefIndex, sess: &Session) -> ExpnId {
943         self.root.tables.expn_that_defined.get(self, id).unwrap().decode((self, sess))
944     }
945
946     fn get_debugger_visualizers(self) -> Vec<rustc_span::DebuggerVisualizerFile> {
947         self.root.debugger_visualizers.decode(self).collect::<Vec<_>>()
948     }
949
950     /// Iterates over all the stability attributes in the given crate.
951     fn get_lib_features(self, tcx: TyCtxt<'tcx>) -> &'tcx [(Symbol, Option<Symbol>)] {
952         tcx.arena.alloc_from_iter(self.root.lib_features.decode(self))
953     }
954
955     /// Iterates over the language items in the given crate.
956     fn get_lang_items(self, tcx: TyCtxt<'tcx>) -> &'tcx [(DefId, usize)] {
957         tcx.arena.alloc_from_iter(
958             self.root
959                 .lang_items
960                 .decode(self)
961                 .map(move |(def_index, index)| (self.local_def_id(def_index), index)),
962         )
963     }
964
965     /// Iterates over the diagnostic items in the given crate.
966     fn get_diagnostic_items(self) -> DiagnosticItems {
967         let mut id_to_name = FxHashMap::default();
968         let name_to_id = self
969             .root
970             .diagnostic_items
971             .decode(self)
972             .map(|(name, def_index)| {
973                 let id = self.local_def_id(def_index);
974                 id_to_name.insert(id, name);
975                 (name, id)
976             })
977             .collect();
978         DiagnosticItems { id_to_name, name_to_id }
979     }
980
981     /// Iterates over all named children of the given module,
982     /// including both proper items and reexports.
983     /// Module here is understood in name resolution sense - it can be a `mod` item,
984     /// or a crate root, or an enum, or a trait.
985     fn for_each_module_child(
986         self,
987         id: DefIndex,
988         mut callback: impl FnMut(ModChild),
989         sess: &Session,
990     ) {
991         if let Some(data) = &self.root.proc_macro_data {
992             // If we are loading as a proc macro, we want to return
993             // the view of this crate as a proc macro crate.
994             if id == CRATE_DEF_INDEX {
995                 for def_index in data.macros.decode(self) {
996                     let raw_macro = self.raw_proc_macro(def_index);
997                     let res = Res::Def(
998                         DefKind::Macro(macro_kind(raw_macro)),
999                         self.local_def_id(def_index),
1000                     );
1001                     let ident = self.item_ident(def_index, sess);
1002                     callback(ModChild {
1003                         ident,
1004                         res,
1005                         vis: ty::Visibility::Public,
1006                         span: ident.span,
1007                         macro_rules: false,
1008                     });
1009                 }
1010             }
1011             return;
1012         }
1013
1014         // Iterate over all children.
1015         if let Some(children) = self.root.tables.children.get(self, id) {
1016             for child_index in children.decode((self, sess)) {
1017                 let ident = self.item_ident(child_index, sess);
1018                 let kind = self.def_kind(child_index);
1019                 let def_id = self.local_def_id(child_index);
1020                 let res = Res::Def(kind, def_id);
1021                 let vis = self.get_visibility(child_index);
1022                 let span = self.get_span(child_index, sess);
1023                 let macro_rules = match kind {
1024                     DefKind::Macro(..) => match self.kind(child_index) {
1025                         EntryKind::MacroDef(_, macro_rules) => macro_rules,
1026                         _ => unreachable!(),
1027                     },
1028                     _ => false,
1029                 };
1030
1031                 callback(ModChild { ident, res, vis, span, macro_rules });
1032
1033                 // For non-re-export structs and variants add their constructors to children.
1034                 // Re-export lists automatically contain constructors when necessary.
1035                 match kind {
1036                     DefKind::Struct => {
1037                         if let Some((ctor_def_id, ctor_kind)) =
1038                             self.get_ctor_def_id_and_kind(child_index)
1039                         {
1040                             let ctor_res =
1041                                 Res::Def(DefKind::Ctor(CtorOf::Struct, ctor_kind), ctor_def_id);
1042                             let vis = self.get_visibility(ctor_def_id.index);
1043                             callback(ModChild {
1044                                 ident,
1045                                 res: ctor_res,
1046                                 vis,
1047                                 span,
1048                                 macro_rules: false,
1049                             });
1050                         }
1051                     }
1052                     DefKind::Variant => {
1053                         // Braced variants, unlike structs, generate unusable names in
1054                         // value namespace, they are reserved for possible future use.
1055                         // It's ok to use the variant's id as a ctor id since an
1056                         // error will be reported on any use of such resolution anyway.
1057                         let (ctor_def_id, ctor_kind) = self
1058                             .get_ctor_def_id_and_kind(child_index)
1059                             .unwrap_or((def_id, CtorKind::Fictive));
1060                         let ctor_res =
1061                             Res::Def(DefKind::Ctor(CtorOf::Variant, ctor_kind), ctor_def_id);
1062                         let mut vis = self.get_visibility(ctor_def_id.index);
1063                         if ctor_def_id == def_id && vis.is_public() {
1064                             // For non-exhaustive variants lower the constructor visibility to
1065                             // within the crate. We only need this for fictive constructors,
1066                             // for other constructors correct visibilities
1067                             // were already encoded in metadata.
1068                             let mut attrs = self.get_item_attrs(def_id.index, sess);
1069                             if attrs.any(|item| item.has_name(sym::non_exhaustive)) {
1070                                 let crate_def_id = self.local_def_id(CRATE_DEF_INDEX);
1071                                 vis = ty::Visibility::Restricted(crate_def_id);
1072                             }
1073                         }
1074                         callback(ModChild { ident, res: ctor_res, vis, span, macro_rules: false });
1075                     }
1076                     _ => {}
1077                 }
1078             }
1079         }
1080
1081         match self.kind(id) {
1082             EntryKind::Mod(exports) => {
1083                 for exp in exports.decode((self, sess)) {
1084                     callback(exp);
1085                 }
1086             }
1087             EntryKind::Enum | EntryKind::Trait => {}
1088             _ => bug!("`for_each_module_child` is called on a non-module: {:?}", self.def_kind(id)),
1089         }
1090     }
1091
1092     fn is_ctfe_mir_available(self, id: DefIndex) -> bool {
1093         self.root.tables.mir_for_ctfe.get(self, id).is_some()
1094     }
1095
1096     fn is_item_mir_available(self, id: DefIndex) -> bool {
1097         self.root.tables.optimized_mir.get(self, id).is_some()
1098     }
1099
1100     fn module_expansion(self, id: DefIndex, sess: &Session) -> ExpnId {
1101         match self.kind(id) {
1102             EntryKind::Mod(_) | EntryKind::Enum | EntryKind::Trait => {
1103                 self.get_expn_that_defined(id, sess)
1104             }
1105             _ => panic!("Expected module, found {:?}", self.local_def_id(id)),
1106         }
1107     }
1108
1109     fn get_fn_has_self_parameter(self, id: DefIndex) -> bool {
1110         match self.kind(id) {
1111             EntryKind::AssocFn(data) => data.decode(self).has_self,
1112             _ => false,
1113         }
1114     }
1115
1116     fn get_associated_item_def_ids(
1117         self,
1118         id: DefIndex,
1119         sess: &'a Session,
1120     ) -> impl Iterator<Item = DefId> + 'a {
1121         self.root
1122             .tables
1123             .children
1124             .get(self, id)
1125             .unwrap_or_else(LazyArray::empty)
1126             .decode((self, sess))
1127             .map(move |child_index| self.local_def_id(child_index))
1128     }
1129
1130     fn get_associated_item(self, id: DefIndex) -> ty::AssocItem {
1131         let def_key = self.def_key(id);
1132         let parent = self.local_def_id(def_key.parent.unwrap());
1133         let name = self.item_name(id);
1134
1135         let (kind, container, has_self) = match self.kind(id) {
1136             EntryKind::AssocConst(container) => (ty::AssocKind::Const, container, false),
1137             EntryKind::AssocFn(data) => {
1138                 let data = data.decode(self);
1139                 (ty::AssocKind::Fn, data.container, data.has_self)
1140             }
1141             EntryKind::AssocType(container) => (ty::AssocKind::Type, container, false),
1142             _ => bug!("cannot get associated-item of `{:?}`", def_key),
1143         };
1144
1145         ty::AssocItem {
1146             name,
1147             kind,
1148             vis: self.get_visibility(id),
1149             defaultness: container.defaultness(),
1150             def_id: self.local_def_id(id),
1151             trait_item_def_id: self.get_trait_item_def_id(id),
1152             container: container.with_def_id(parent),
1153             fn_has_self_parameter: has_self,
1154         }
1155     }
1156
1157     fn get_ctor_def_id_and_kind(self, node_id: DefIndex) -> Option<(DefId, CtorKind)> {
1158         match self.kind(node_id) {
1159             EntryKind::Struct(data) | EntryKind::Variant(data) => {
1160                 let vdata = data.decode(self);
1161                 vdata.ctor.map(|index| (self.local_def_id(index), vdata.ctor_kind))
1162             }
1163             _ => None,
1164         }
1165     }
1166
1167     fn get_item_attrs(
1168         self,
1169         id: DefIndex,
1170         sess: &'a Session,
1171     ) -> impl Iterator<Item = ast::Attribute> + 'a {
1172         self.root
1173             .tables
1174             .attributes
1175             .get(self, id)
1176             .unwrap_or_else(|| {
1177                 // Structure and variant constructors don't have any attributes encoded for them,
1178                 // but we assume that someone passing a constructor ID actually wants to look at
1179                 // the attributes on the corresponding struct or variant.
1180                 let def_key = self.def_key(id);
1181                 assert_eq!(def_key.disambiguated_data.data, DefPathData::Ctor);
1182                 let parent_id = def_key.parent.expect("no parent for a constructor");
1183                 self.root
1184                     .tables
1185                     .attributes
1186                     .get(self, parent_id)
1187                     .expect("no encoded attributes for a structure or variant")
1188             })
1189             .decode((self, sess))
1190     }
1191
1192     fn get_struct_field_names(
1193         self,
1194         id: DefIndex,
1195         sess: &'a Session,
1196     ) -> impl Iterator<Item = Spanned<Symbol>> + 'a {
1197         self.root
1198             .tables
1199             .children
1200             .get(self, id)
1201             .unwrap_or_else(LazyArray::empty)
1202             .decode(self)
1203             .map(move |index| respan(self.get_span(index, sess), self.item_name(index)))
1204     }
1205
1206     fn get_struct_field_visibilities(self, id: DefIndex) -> impl Iterator<Item = Visibility> + 'a {
1207         self.root
1208             .tables
1209             .children
1210             .get(self, id)
1211             .unwrap_or_else(LazyArray::empty)
1212             .decode(self)
1213             .map(move |field_index| self.get_visibility(field_index))
1214     }
1215
1216     fn get_inherent_implementations_for_type(
1217         self,
1218         tcx: TyCtxt<'tcx>,
1219         id: DefIndex,
1220     ) -> &'tcx [DefId] {
1221         tcx.arena.alloc_from_iter(
1222             self.root
1223                 .tables
1224                 .inherent_impls
1225                 .get(self, id)
1226                 .unwrap_or_else(LazyArray::empty)
1227                 .decode(self)
1228                 .map(|index| self.local_def_id(index)),
1229         )
1230     }
1231
1232     /// Decodes all inherent impls in the crate (for rustdoc).
1233     fn get_inherent_impls(self) -> impl Iterator<Item = (DefId, DefId)> + 'a {
1234         (0..self.root.tables.inherent_impls.size()).flat_map(move |i| {
1235             let ty_index = DefIndex::from_usize(i);
1236             let ty_def_id = self.local_def_id(ty_index);
1237             self.root
1238                 .tables
1239                 .inherent_impls
1240                 .get(self, ty_index)
1241                 .unwrap_or_else(LazyArray::empty)
1242                 .decode(self)
1243                 .map(move |impl_index| (ty_def_id, self.local_def_id(impl_index)))
1244         })
1245     }
1246
1247     /// Decodes all traits in the crate (for rustdoc and rustc diagnostics).
1248     fn get_traits(self) -> impl Iterator<Item = DefId> + 'a {
1249         self.root.traits.decode(self).map(move |index| self.local_def_id(index))
1250     }
1251
1252     /// Decodes all trait impls in the crate (for rustdoc).
1253     fn get_trait_impls(self) -> impl Iterator<Item = (DefId, DefId, Option<SimplifiedType>)> + 'a {
1254         self.cdata.trait_impls.iter().flat_map(move |(&(trait_cnum_raw, trait_index), impls)| {
1255             let trait_def_id = DefId {
1256                 krate: self.cnum_map[CrateNum::from_u32(trait_cnum_raw)],
1257                 index: trait_index,
1258             };
1259             impls.decode(self).map(move |(impl_index, simplified_self_ty)| {
1260                 (trait_def_id, self.local_def_id(impl_index), simplified_self_ty)
1261             })
1262         })
1263     }
1264
1265     fn get_all_incoherent_impls(self) -> impl Iterator<Item = DefId> + 'a {
1266         self.cdata
1267             .incoherent_impls
1268             .values()
1269             .flat_map(move |impls| impls.decode(self).map(move |idx| self.local_def_id(idx)))
1270     }
1271
1272     fn get_incoherent_impls(self, tcx: TyCtxt<'tcx>, simp: SimplifiedType) -> &'tcx [DefId] {
1273         if let Some(impls) = self.cdata.incoherent_impls.get(&simp) {
1274             tcx.arena.alloc_from_iter(impls.decode(self).map(|idx| self.local_def_id(idx)))
1275         } else {
1276             &[]
1277         }
1278     }
1279
1280     fn get_implementations_of_trait(
1281         self,
1282         tcx: TyCtxt<'tcx>,
1283         trait_def_id: DefId,
1284     ) -> &'tcx [(DefId, Option<SimplifiedType>)] {
1285         if self.trait_impls.is_empty() {
1286             return &[];
1287         }
1288
1289         // Do a reverse lookup beforehand to avoid touching the crate_num
1290         // hash map in the loop below.
1291         let key = match self.reverse_translate_def_id(trait_def_id) {
1292             Some(def_id) => (def_id.krate.as_u32(), def_id.index),
1293             None => return &[],
1294         };
1295
1296         if let Some(impls) = self.trait_impls.get(&key) {
1297             tcx.arena.alloc_from_iter(
1298                 impls
1299                     .decode(self)
1300                     .map(|(idx, simplified_self_ty)| (self.local_def_id(idx), simplified_self_ty)),
1301             )
1302         } else {
1303             &[]
1304         }
1305     }
1306
1307     fn get_trait_of_item(self, id: DefIndex) -> Option<DefId> {
1308         let def_key = self.def_key(id);
1309         match def_key.disambiguated_data.data {
1310             DefPathData::TypeNs(..) | DefPathData::ValueNs(..) => (),
1311             // Not an associated item
1312             _ => return None,
1313         }
1314         def_key.parent.and_then(|parent_index| match self.kind(parent_index) {
1315             EntryKind::Trait | EntryKind::TraitAlias => Some(self.local_def_id(parent_index)),
1316             _ => None,
1317         })
1318     }
1319
1320     fn get_native_libraries(self, sess: &'a Session) -> impl Iterator<Item = NativeLib> + 'a {
1321         self.root.native_libraries.decode((self, sess))
1322     }
1323
1324     fn get_proc_macro_quoted_span(self, index: usize, sess: &Session) -> Span {
1325         self.root
1326             .tables
1327             .proc_macro_quoted_spans
1328             .get(self, index)
1329             .unwrap_or_else(|| panic!("Missing proc macro quoted span: {:?}", index))
1330             .decode((self, sess))
1331     }
1332
1333     fn get_foreign_modules(self, sess: &'a Session) -> impl Iterator<Item = ForeignModule> + '_ {
1334         self.root.foreign_modules.decode((self, sess))
1335     }
1336
1337     fn get_dylib_dependency_formats(
1338         self,
1339         tcx: TyCtxt<'tcx>,
1340     ) -> &'tcx [(CrateNum, LinkagePreference)] {
1341         tcx.arena.alloc_from_iter(
1342             self.root.dylib_dependency_formats.decode(self).enumerate().flat_map(|(i, link)| {
1343                 let cnum = CrateNum::new(i + 1);
1344                 link.map(|link| (self.cnum_map[cnum], link))
1345             }),
1346         )
1347     }
1348
1349     fn get_missing_lang_items(self, tcx: TyCtxt<'tcx>) -> &'tcx [lang_items::LangItem] {
1350         tcx.arena.alloc_from_iter(self.root.lang_items_missing.decode(self))
1351     }
1352
1353     fn exported_symbols(
1354         self,
1355         tcx: TyCtxt<'tcx>,
1356     ) -> &'tcx [(ExportedSymbol<'tcx>, SymbolExportInfo)] {
1357         tcx.arena.alloc_from_iter(self.root.exported_symbols.decode((self, tcx)))
1358     }
1359
1360     fn get_macro(self, id: DefIndex, sess: &Session) -> ast::MacroDef {
1361         match self.kind(id) {
1362             EntryKind::MacroDef(mac_args, macro_rules) => {
1363                 ast::MacroDef { body: P(mac_args.decode((self, sess))), macro_rules }
1364             }
1365             _ => bug!(),
1366         }
1367     }
1368
1369     fn is_foreign_item(self, id: DefIndex) -> bool {
1370         match self.kind(id) {
1371             EntryKind::ForeignStatic | EntryKind::ForeignFn => true,
1372             _ => false,
1373         }
1374     }
1375
1376     #[inline]
1377     fn def_key(self, index: DefIndex) -> DefKey {
1378         *self
1379             .def_key_cache
1380             .lock()
1381             .entry(index)
1382             .or_insert_with(|| self.root.tables.def_keys.get(self, index).unwrap().decode(self))
1383     }
1384
1385     // Returns the path leading to the thing with this `id`.
1386     fn def_path(self, id: DefIndex) -> DefPath {
1387         debug!("def_path(cnum={:?}, id={:?})", self.cnum, id);
1388         DefPath::make(self.cnum, id, |parent| self.def_key(parent))
1389     }
1390
1391     fn def_path_hash_unlocked(
1392         self,
1393         index: DefIndex,
1394         def_path_hashes: &mut FxHashMap<DefIndex, DefPathHash>,
1395     ) -> DefPathHash {
1396         *def_path_hashes
1397             .entry(index)
1398             .or_insert_with(|| self.root.tables.def_path_hashes.get(self, index).unwrap())
1399     }
1400
1401     #[inline]
1402     fn def_path_hash(self, index: DefIndex) -> DefPathHash {
1403         let mut def_path_hashes = self.def_path_hash_cache.lock();
1404         self.def_path_hash_unlocked(index, &mut def_path_hashes)
1405     }
1406
1407     #[inline]
1408     fn def_path_hash_to_def_index(self, hash: DefPathHash) -> DefIndex {
1409         self.def_path_hash_map.def_path_hash_to_def_index(&hash)
1410     }
1411
1412     fn expn_hash_to_expn_id(self, sess: &Session, index_guess: u32, hash: ExpnHash) -> ExpnId {
1413         debug_assert_eq!(ExpnId::from_hash(hash), None);
1414         let index_guess = ExpnIndex::from_u32(index_guess);
1415         let old_hash = self.root.expn_hashes.get(self, index_guess).map(|lazy| lazy.decode(self));
1416
1417         let index = if old_hash == Some(hash) {
1418             // Fast path: the expn and its index is unchanged from the
1419             // previous compilation session. There is no need to decode anything
1420             // else.
1421             index_guess
1422         } else {
1423             // Slow path: We need to find out the new `DefIndex` of the provided
1424             // `DefPathHash`, if its still exists. This requires decoding every `DefPathHash`
1425             // stored in this crate.
1426             let map = self.cdata.expn_hash_map.get_or_init(|| {
1427                 let end_id = self.root.expn_hashes.size() as u32;
1428                 let mut map =
1429                     UnhashMap::with_capacity_and_hasher(end_id as usize, Default::default());
1430                 for i in 0..end_id {
1431                     let i = ExpnIndex::from_u32(i);
1432                     if let Some(hash) = self.root.expn_hashes.get(self, i) {
1433                         map.insert(hash.decode(self), i);
1434                     }
1435                 }
1436                 map
1437             });
1438             map[&hash]
1439         };
1440
1441         let data = self.root.expn_data.get(self, index).unwrap().decode((self, sess));
1442         rustc_span::hygiene::register_expn_id(self.cnum, index, data, hash)
1443     }
1444
1445     /// Imports the source_map from an external crate into the source_map of the crate
1446     /// currently being compiled (the "local crate").
1447     ///
1448     /// The import algorithm works analogous to how AST items are inlined from an
1449     /// external crate's metadata:
1450     /// For every SourceFile in the external source_map an 'inline' copy is created in the
1451     /// local source_map. The correspondence relation between external and local
1452     /// SourceFiles is recorded in the `ImportedSourceFile` objects returned from this
1453     /// function. When an item from an external crate is later inlined into this
1454     /// crate, this correspondence information is used to translate the span
1455     /// information of the inlined item so that it refers the correct positions in
1456     /// the local source_map (see `<decoder::DecodeContext as SpecializedDecoder<Span>>`).
1457     ///
1458     /// The import algorithm in the function below will reuse SourceFiles already
1459     /// existing in the local source_map. For example, even if the SourceFile of some
1460     /// source file of libstd gets imported many times, there will only ever be
1461     /// one SourceFile object for the corresponding file in the local source_map.
1462     ///
1463     /// Note that imported SourceFiles do not actually contain the source code of the
1464     /// file they represent, just information about length, line breaks, and
1465     /// multibyte characters. This information is enough to generate valid debuginfo
1466     /// for items inlined from other crates.
1467     ///
1468     /// Proc macro crates don't currently export spans, so this function does not have
1469     /// to work for them.
1470     fn imported_source_files(self, sess: &Session) -> &'a [ImportedSourceFile] {
1471         // Translate the virtual `/rustc/$hash` prefix back to a real directory
1472         // that should hold actual sources, where possible.
1473         //
1474         // NOTE: if you update this, you might need to also update bootstrap's code for generating
1475         // the `rust-src` component in `Src::run` in `src/bootstrap/dist.rs`.
1476         let virtual_rust_source_base_dir = [
1477             option_env!("CFG_VIRTUAL_RUST_SOURCE_BASE_DIR").map(PathBuf::from),
1478             sess.opts.debugging_opts.simulate_remapped_rust_src_base.clone(),
1479         ]
1480         .into_iter()
1481         .filter(|_| {
1482             // Only spend time on further checks if we have what to translate *to*.
1483             sess.opts.real_rust_source_base_dir.is_some()
1484                 // Some tests need the translation to be always skipped.
1485                 && sess.opts.debugging_opts.translate_remapped_path_to_local_path
1486         })
1487         .flatten()
1488         .filter(|virtual_dir| {
1489             // Don't translate away `/rustc/$hash` if we're still remapping to it,
1490             // since that means we're still building `std`/`rustc` that need it,
1491             // and we don't want the real path to leak into codegen/debuginfo.
1492             !sess.opts.remap_path_prefix.iter().any(|(_from, to)| to == virtual_dir)
1493         })
1494         .collect::<Vec<_>>();
1495
1496         let try_to_translate_virtual_to_real = |name: &mut rustc_span::FileName| {
1497             debug!(
1498                 "try_to_translate_virtual_to_real(name={:?}): \
1499                  virtual_rust_source_base_dir={:?}, real_rust_source_base_dir={:?}",
1500                 name, virtual_rust_source_base_dir, sess.opts.real_rust_source_base_dir,
1501             );
1502
1503             for virtual_dir in &virtual_rust_source_base_dir {
1504                 if let Some(real_dir) = &sess.opts.real_rust_source_base_dir {
1505                     if let rustc_span::FileName::Real(old_name) = name {
1506                         if let rustc_span::RealFileName::Remapped { local_path: _, virtual_name } =
1507                             old_name
1508                         {
1509                             if let Ok(rest) = virtual_name.strip_prefix(virtual_dir) {
1510                                 let virtual_name = virtual_name.clone();
1511
1512                                 // The std library crates are in
1513                                 // `$sysroot/lib/rustlib/src/rust/library`, whereas other crates
1514                                 // may be in `$sysroot/lib/rustlib/src/rust/` directly. So we
1515                                 // detect crates from the std libs and handle them specially.
1516                                 const STD_LIBS: &[&str] = &[
1517                                     "core",
1518                                     "alloc",
1519                                     "std",
1520                                     "test",
1521                                     "term",
1522                                     "unwind",
1523                                     "proc_macro",
1524                                     "panic_abort",
1525                                     "panic_unwind",
1526                                     "profiler_builtins",
1527                                     "rtstartup",
1528                                     "rustc-std-workspace-core",
1529                                     "rustc-std-workspace-alloc",
1530                                     "rustc-std-workspace-std",
1531                                     "backtrace",
1532                                 ];
1533                                 let is_std_lib = STD_LIBS.iter().any(|l| rest.starts_with(l));
1534
1535                                 let new_path = if is_std_lib {
1536                                     real_dir.join("library").join(rest)
1537                                 } else {
1538                                     real_dir.join(rest)
1539                                 };
1540
1541                                 debug!(
1542                                     "try_to_translate_virtual_to_real: `{}` -> `{}`",
1543                                     virtual_name.display(),
1544                                     new_path.display(),
1545                                 );
1546                                 let new_name = rustc_span::RealFileName::Remapped {
1547                                     local_path: Some(new_path),
1548                                     virtual_name,
1549                                 };
1550                                 *old_name = new_name;
1551                             }
1552                         }
1553                     }
1554                 }
1555             }
1556         };
1557
1558         self.cdata.source_map_import_info.get_or_init(|| {
1559             let external_source_map = self.root.source_map.decode(self);
1560
1561             external_source_map
1562                 .map(|source_file_to_import| {
1563                     // We can't reuse an existing SourceFile, so allocate a new one
1564                     // containing the information we need.
1565                     let rustc_span::SourceFile {
1566                         mut name,
1567                         src_hash,
1568                         start_pos,
1569                         end_pos,
1570                         lines,
1571                         multibyte_chars,
1572                         non_narrow_chars,
1573                         normalized_pos,
1574                         name_hash,
1575                         ..
1576                     } = source_file_to_import;
1577
1578                     // If this file is under $sysroot/lib/rustlib/src/ but has not been remapped
1579                     // during rust bootstrapping by `remap-debuginfo = true`, and the user
1580                     // wish to simulate that behaviour by -Z simulate-remapped-rust-src-base,
1581                     // then we change `name` to a similar state as if the rust was bootstrapped
1582                     // with `remap-debuginfo = true`.
1583                     // This is useful for testing so that tests about the effects of
1584                     // `try_to_translate_virtual_to_real` don't have to worry about how the
1585                     // compiler is bootstrapped.
1586                     if let Some(virtual_dir) =
1587                         &sess.opts.debugging_opts.simulate_remapped_rust_src_base
1588                     {
1589                         if let Some(real_dir) = &sess.opts.real_rust_source_base_dir {
1590                             if let rustc_span::FileName::Real(ref mut old_name) = name {
1591                                 if let rustc_span::RealFileName::LocalPath(local) = old_name {
1592                                     if let Ok(rest) = local.strip_prefix(real_dir) {
1593                                         *old_name = rustc_span::RealFileName::Remapped {
1594                                             local_path: None,
1595                                             virtual_name: virtual_dir.join(rest),
1596                                         };
1597                                     }
1598                                 }
1599                             }
1600                         }
1601                     }
1602
1603                     // If this file's path has been remapped to `/rustc/$hash`,
1604                     // we might be able to reverse that (also see comments above,
1605                     // on `try_to_translate_virtual_to_real`).
1606                     try_to_translate_virtual_to_real(&mut name);
1607
1608                     let source_length = (end_pos - start_pos).to_usize();
1609
1610                     let local_version = sess.source_map().new_imported_source_file(
1611                         name,
1612                         src_hash,
1613                         name_hash,
1614                         source_length,
1615                         self.cnum,
1616                         lines,
1617                         multibyte_chars,
1618                         non_narrow_chars,
1619                         normalized_pos,
1620                         start_pos,
1621                         end_pos,
1622                     );
1623                     debug!(
1624                         "CrateMetaData::imported_source_files alloc \
1625                          source_file {:?} original (start_pos {:?} end_pos {:?}) \
1626                          translated (start_pos {:?} end_pos {:?})",
1627                         local_version.name,
1628                         start_pos,
1629                         end_pos,
1630                         local_version.start_pos,
1631                         local_version.end_pos
1632                     );
1633
1634                     ImportedSourceFile {
1635                         original_start_pos: start_pos,
1636                         original_end_pos: end_pos,
1637                         translated_source_file: local_version,
1638                     }
1639                 })
1640                 .collect()
1641         })
1642     }
1643
1644     fn get_generator_diagnostic_data(
1645         self,
1646         tcx: TyCtxt<'tcx>,
1647         id: DefIndex,
1648     ) -> Option<GeneratorDiagnosticData<'tcx>> {
1649         self.root
1650             .tables
1651             .generator_diagnostic_data
1652             .get(self, id)
1653             .map(|param| param.decode((self, tcx)))
1654             .map(|generator_data| GeneratorDiagnosticData {
1655                 generator_interior_types: generator_data.generator_interior_types,
1656                 hir_owner: generator_data.hir_owner,
1657                 nodes_types: generator_data.nodes_types,
1658                 adjustments: generator_data.adjustments,
1659             })
1660     }
1661
1662     fn get_may_have_doc_links(self, index: DefIndex) -> bool {
1663         self.root.tables.may_have_doc_links.get(self, index).is_some()
1664     }
1665
1666     fn get_is_intrinsic(self, index: DefIndex) -> bool {
1667         self.root.tables.is_intrinsic.get(self, index).is_some()
1668     }
1669 }
1670
1671 impl CrateMetadata {
1672     pub(crate) fn new(
1673         sess: &Session,
1674         cstore: &CStore,
1675         blob: MetadataBlob,
1676         root: CrateRoot,
1677         raw_proc_macros: Option<&'static [ProcMacro]>,
1678         cnum: CrateNum,
1679         cnum_map: CrateNumMap,
1680         dep_kind: CrateDepKind,
1681         source: CrateSource,
1682         private_dep: bool,
1683         host_hash: Option<Svh>,
1684     ) -> CrateMetadata {
1685         let trait_impls = root
1686             .impls
1687             .decode((&blob, sess))
1688             .map(|trait_impls| (trait_impls.trait_id, trait_impls.impls))
1689             .collect();
1690         let alloc_decoding_state =
1691             AllocDecodingState::new(root.interpret_alloc_index.decode(&blob).collect());
1692         let dependencies = Lock::new(cnum_map.iter().cloned().collect());
1693
1694         // Pre-decode the DefPathHash->DefIndex table. This is a cheap operation
1695         // that does not copy any data. It just does some data verification.
1696         let def_path_hash_map = root.def_path_hash_map.decode(&blob);
1697
1698         let mut cdata = CrateMetadata {
1699             blob,
1700             root,
1701             trait_impls,
1702             incoherent_impls: Default::default(),
1703             raw_proc_macros,
1704             source_map_import_info: OnceCell::new(),
1705             def_path_hash_map,
1706             expn_hash_map: Default::default(),
1707             alloc_decoding_state,
1708             cnum,
1709             cnum_map,
1710             dependencies,
1711             dep_kind: Lock::new(dep_kind),
1712             source: Lrc::new(source),
1713             private_dep,
1714             host_hash,
1715             extern_crate: Lock::new(None),
1716             hygiene_context: Default::default(),
1717             def_key_cache: Default::default(),
1718             def_path_hash_cache: Default::default(),
1719         };
1720
1721         // Need `CrateMetadataRef` to decode `DefId`s in simplified types.
1722         cdata.incoherent_impls = cdata
1723             .root
1724             .incoherent_impls
1725             .decode(CrateMetadataRef { cdata: &cdata, cstore })
1726             .map(|incoherent_impls| (incoherent_impls.self_ty, incoherent_impls.impls))
1727             .collect();
1728
1729         cdata
1730     }
1731
1732     pub(crate) fn dependencies(&self) -> LockGuard<'_, Vec<CrateNum>> {
1733         self.dependencies.borrow()
1734     }
1735
1736     pub(crate) fn add_dependency(&self, cnum: CrateNum) {
1737         self.dependencies.borrow_mut().push(cnum);
1738     }
1739
1740     pub(crate) fn update_extern_crate(&self, new_extern_crate: ExternCrate) -> bool {
1741         let mut extern_crate = self.extern_crate.borrow_mut();
1742         let update = Some(new_extern_crate.rank()) > extern_crate.as_ref().map(ExternCrate::rank);
1743         if update {
1744             *extern_crate = Some(new_extern_crate);
1745         }
1746         update
1747     }
1748
1749     pub(crate) fn source(&self) -> &CrateSource {
1750         &*self.source
1751     }
1752
1753     pub(crate) fn dep_kind(&self) -> CrateDepKind {
1754         *self.dep_kind.lock()
1755     }
1756
1757     pub(crate) fn update_dep_kind(&self, f: impl FnOnce(CrateDepKind) -> CrateDepKind) {
1758         self.dep_kind.with_lock(|dep_kind| *dep_kind = f(*dep_kind))
1759     }
1760
1761     pub(crate) fn required_panic_strategy(&self) -> Option<PanicStrategy> {
1762         self.root.required_panic_strategy
1763     }
1764
1765     pub(crate) fn needs_panic_runtime(&self) -> bool {
1766         self.root.needs_panic_runtime
1767     }
1768
1769     pub(crate) fn is_panic_runtime(&self) -> bool {
1770         self.root.panic_runtime
1771     }
1772
1773     pub(crate) fn is_profiler_runtime(&self) -> bool {
1774         self.root.profiler_runtime
1775     }
1776
1777     pub(crate) fn needs_allocator(&self) -> bool {
1778         self.root.needs_allocator
1779     }
1780
1781     pub(crate) fn has_global_allocator(&self) -> bool {
1782         self.root.has_global_allocator
1783     }
1784
1785     pub(crate) fn has_default_lib_allocator(&self) -> bool {
1786         self.root.has_default_lib_allocator
1787     }
1788
1789     pub(crate) fn is_proc_macro_crate(&self) -> bool {
1790         self.root.is_proc_macro_crate()
1791     }
1792
1793     pub(crate) fn name(&self) -> Symbol {
1794         self.root.name
1795     }
1796
1797     pub(crate) fn stable_crate_id(&self) -> StableCrateId {
1798         self.root.stable_crate_id
1799     }
1800
1801     pub(crate) fn hash(&self) -> Svh {
1802         self.root.hash
1803     }
1804
1805     fn num_def_ids(&self) -> usize {
1806         self.root.tables.def_keys.size()
1807     }
1808
1809     fn local_def_id(&self, index: DefIndex) -> DefId {
1810         DefId { krate: self.cnum, index }
1811     }
1812
1813     // Translate a DefId from the current compilation environment to a DefId
1814     // for an external crate.
1815     fn reverse_translate_def_id(&self, did: DefId) -> Option<DefId> {
1816         for (local, &global) in self.cnum_map.iter_enumerated() {
1817             if global == did.krate {
1818                 return Some(DefId { krate: local, index: did.index });
1819             }
1820         }
1821
1822         None
1823     }
1824 }
1825
1826 // Cannot be implemented on 'ProcMacro', as libproc_macro
1827 // does not depend on librustc_ast
1828 fn macro_kind(raw: &ProcMacro) -> MacroKind {
1829     match raw {
1830         ProcMacro::CustomDerive { .. } => MacroKind::Derive,
1831         ProcMacro::Attr { .. } => MacroKind::Attr,
1832         ProcMacro::Bang { .. } => MacroKind::Bang,
1833     }
1834 }