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