]> git.lizzy.rs Git - rust.git/blob - src/librustc_metadata/decoder.rs
Rollup merge of #59432 - phansch:compiletest_docs, r=alexcrichton
[rust.git] / src / librustc_metadata / decoder.rs
1 // Decoding metadata from a single crate's metadata
2
3 use crate::cstore::{self, CrateMetadata, MetadataBlob, NativeLibrary, ForeignModule};
4 use crate::schema::*;
5
6 use rustc_data_structures::sync::{Lrc, ReadGuard};
7 use rustc::hir::map::{DefKey, DefPath, DefPathData, DefPathHash, Definitions};
8 use rustc::hir;
9 use rustc::middle::cstore::LinkagePreference;
10 use rustc::middle::exported_symbols::{ExportedSymbol, SymbolExportLevel};
11 use rustc::hir::def::{self, Def, CtorOf, CtorKind};
12 use rustc::hir::def_id::{CrateNum, DefId, DefIndex, DefIndexAddressSpace,
13                          CRATE_DEF_INDEX, LOCAL_CRATE, LocalDefId};
14 use rustc::hir::map::definitions::DefPathTable;
15 use rustc_data_structures::fingerprint::Fingerprint;
16 use rustc::middle::lang_items;
17 use rustc::mir::{self, interpret};
18 use rustc::mir::interpret::AllocDecodingSession;
19 use rustc::session::Session;
20 use rustc::ty::{self, Ty, TyCtxt};
21 use rustc::ty::codec::TyDecoder;
22 use rustc::mir::Mir;
23 use rustc::util::captures::Captures;
24
25 use std::io;
26 use std::mem;
27 use std::u32;
28
29 use rustc_serialize::{Decodable, Decoder, SpecializedDecoder, opaque};
30 use syntax::attr;
31 use syntax::ast::{self, Ident};
32 use syntax::source_map;
33 use syntax::symbol::InternedString;
34 use syntax::ext::base::{MacroKind, SyntaxExtension};
35 use syntax::ext::hygiene::Mark;
36 use syntax_pos::{self, Span, BytePos, Pos, DUMMY_SP, NO_EXPANSION};
37 use log::debug;
38
39 pub struct DecodeContext<'a, 'tcx: 'a> {
40     opaque: opaque::Decoder<'a>,
41     cdata: Option<&'a CrateMetadata>,
42     sess: Option<&'a Session>,
43     tcx: Option<TyCtxt<'a, 'tcx, 'tcx>>,
44
45     // Cache the last used source_file for translating spans as an optimization.
46     last_source_file_index: usize,
47
48     lazy_state: LazyState,
49
50     // Used for decoding interpret::AllocIds in a cached & thread-safe manner.
51     alloc_decoding_session: Option<AllocDecodingSession<'a>>,
52 }
53
54 /// Abstract over the various ways one can create metadata decoders.
55 pub trait Metadata<'a, 'tcx>: Copy {
56     fn raw_bytes(self) -> &'a [u8];
57     fn cdata(self) -> Option<&'a CrateMetadata> { None }
58     fn sess(self) -> Option<&'a Session> { None }
59     fn tcx(self) -> Option<TyCtxt<'a, 'tcx, 'tcx>> { None }
60
61     fn decoder(self, pos: usize) -> DecodeContext<'a, 'tcx> {
62         let tcx = self.tcx();
63         DecodeContext {
64             opaque: opaque::Decoder::new(self.raw_bytes(), pos),
65             cdata: self.cdata(),
66             sess: self.sess().or(tcx.map(|tcx| tcx.sess)),
67             tcx,
68             last_source_file_index: 0,
69             lazy_state: LazyState::NoNode,
70             alloc_decoding_session: self.cdata().map(|cdata| {
71                 cdata.alloc_decoding_state.new_decoding_session()
72             }),
73         }
74     }
75 }
76
77 impl<'a, 'tcx> Metadata<'a, 'tcx> for &'a MetadataBlob {
78     fn raw_bytes(self) -> &'a [u8] {
79         &self.0
80     }
81 }
82
83
84 impl<'a, 'tcx> Metadata<'a, 'tcx> for (&'a MetadataBlob, &'a Session) {
85     fn raw_bytes(self) -> &'a [u8] {
86         let (blob, _) = self;
87         &blob.0
88     }
89
90     fn sess(self) -> Option<&'a Session> {
91         let (_, sess) = self;
92         Some(sess)
93     }
94 }
95
96
97 impl<'a, 'tcx> Metadata<'a, 'tcx> for &'a CrateMetadata {
98     fn raw_bytes(self) -> &'a [u8] {
99         self.blob.raw_bytes()
100     }
101     fn cdata(self) -> Option<&'a CrateMetadata> {
102         Some(self)
103     }
104 }
105
106 impl<'a, 'tcx> Metadata<'a, 'tcx> for (&'a CrateMetadata, &'a Session) {
107     fn raw_bytes(self) -> &'a [u8] {
108         self.0.raw_bytes()
109     }
110     fn cdata(self) -> Option<&'a CrateMetadata> {
111         Some(self.0)
112     }
113     fn sess(self) -> Option<&'a Session> {
114         Some(&self.1)
115     }
116 }
117
118 impl<'a, 'tcx> Metadata<'a, 'tcx> for (&'a CrateMetadata, TyCtxt<'a, 'tcx, 'tcx>) {
119     fn raw_bytes(self) -> &'a [u8] {
120         self.0.raw_bytes()
121     }
122     fn cdata(self) -> Option<&'a CrateMetadata> {
123         Some(self.0)
124     }
125     fn tcx(self) -> Option<TyCtxt<'a, 'tcx, 'tcx>> {
126         Some(self.1)
127     }
128 }
129
130 impl<'a, 'tcx: 'a, T: Decodable> Lazy<T> {
131     pub fn decode<M: Metadata<'a, 'tcx>>(self, meta: M) -> T {
132         let mut dcx = meta.decoder(self.position);
133         dcx.lazy_state = LazyState::NodeStart(self.position);
134         T::decode(&mut dcx).unwrap()
135     }
136 }
137
138 impl<'a, 'tcx: 'a, T: Decodable> LazySeq<T> {
139     pub fn decode<M: Metadata<'a, 'tcx>>(
140         self,
141         meta: M,
142     ) -> impl Iterator<Item = T> + Captures<'tcx> + 'a {
143         let mut dcx = meta.decoder(self.position);
144         dcx.lazy_state = LazyState::NodeStart(self.position);
145         (0..self.len).map(move |_| T::decode(&mut dcx).unwrap())
146     }
147 }
148
149 impl<'a, 'tcx> DecodeContext<'a, 'tcx> {
150     pub fn tcx(&self) -> TyCtxt<'a, 'tcx, 'tcx> {
151         self.tcx.expect("missing TyCtxt in DecodeContext")
152     }
153
154     pub fn cdata(&self) -> &'a CrateMetadata {
155         self.cdata.expect("missing CrateMetadata in DecodeContext")
156     }
157
158     fn read_lazy_distance(&mut self, min_size: usize) -> Result<usize, <Self as Decoder>::Error> {
159         let distance = self.read_usize()?;
160         let position = match self.lazy_state {
161             LazyState::NoNode => bug!("read_lazy_distance: outside of a metadata node"),
162             LazyState::NodeStart(start) => {
163                 assert!(distance + min_size <= start);
164                 start - distance - min_size
165             }
166             LazyState::Previous(last_min_end) => last_min_end + distance,
167         };
168         self.lazy_state = LazyState::Previous(position + min_size);
169         Ok(position)
170     }
171 }
172
173 impl<'a, 'tcx: 'a> TyDecoder<'a, 'tcx> for DecodeContext<'a, 'tcx> {
174
175     #[inline]
176     fn tcx(&self) -> TyCtxt<'a, 'tcx, 'tcx> {
177         self.tcx.expect("missing TyCtxt in DecodeContext")
178     }
179
180     #[inline]
181     fn peek_byte(&self) -> u8 {
182         self.opaque.data[self.opaque.position()]
183     }
184
185     #[inline]
186     fn position(&self) -> usize {
187         self.opaque.position()
188     }
189
190     fn cached_ty_for_shorthand<F>(&mut self,
191                                   shorthand: usize,
192                                   or_insert_with: F)
193                                   -> Result<Ty<'tcx>, Self::Error>
194         where F: FnOnce(&mut Self) -> Result<Ty<'tcx>, Self::Error>
195     {
196         let tcx = self.tcx();
197
198         let key = ty::CReaderCacheKey {
199             cnum: self.cdata().cnum,
200             pos: shorthand,
201         };
202
203         if let Some(&ty) = tcx.rcache.borrow().get(&key) {
204             return Ok(ty);
205         }
206
207         let ty = or_insert_with(self)?;
208         tcx.rcache.borrow_mut().insert(key, ty);
209         Ok(ty)
210     }
211
212     fn with_position<F, R>(&mut self, pos: usize, f: F) -> R
213         where F: FnOnce(&mut Self) -> R
214     {
215         let new_opaque = opaque::Decoder::new(self.opaque.data, pos);
216         let old_opaque = mem::replace(&mut self.opaque, new_opaque);
217         let old_state = mem::replace(&mut self.lazy_state, LazyState::NoNode);
218         let r = f(self);
219         self.opaque = old_opaque;
220         self.lazy_state = old_state;
221         r
222     }
223
224     fn map_encoded_cnum_to_current(&self, cnum: CrateNum) -> CrateNum {
225         if cnum == LOCAL_CRATE {
226             self.cdata().cnum
227         } else {
228             self.cdata().cnum_map[cnum]
229         }
230     }
231 }
232
233 impl<'a, 'tcx, T> SpecializedDecoder<Lazy<T>> for DecodeContext<'a, 'tcx> {
234     fn specialized_decode(&mut self) -> Result<Lazy<T>, Self::Error> {
235         Ok(Lazy::with_position(self.read_lazy_distance(Lazy::<T>::min_size())?))
236     }
237 }
238
239 impl<'a, 'tcx, T> SpecializedDecoder<LazySeq<T>> for DecodeContext<'a, 'tcx> {
240     fn specialized_decode(&mut self) -> Result<LazySeq<T>, Self::Error> {
241         let len = self.read_usize()?;
242         let position = if len == 0 {
243             0
244         } else {
245             self.read_lazy_distance(LazySeq::<T>::min_size(len))?
246         };
247         Ok(LazySeq::with_position_and_length(position, len))
248     }
249 }
250
251
252 impl<'a, 'tcx> SpecializedDecoder<DefId> for DecodeContext<'a, 'tcx> {
253     #[inline]
254     fn specialized_decode(&mut self) -> Result<DefId, Self::Error> {
255         let krate = CrateNum::decode(self)?;
256         let index = DefIndex::decode(self)?;
257
258         Ok(DefId {
259             krate,
260             index,
261         })
262     }
263 }
264
265 impl<'a, 'tcx> SpecializedDecoder<DefIndex> for DecodeContext<'a, 'tcx> {
266     #[inline]
267     fn specialized_decode(&mut self) -> Result<DefIndex, Self::Error> {
268         Ok(DefIndex::from_raw_u32(self.read_u32()?))
269     }
270 }
271
272 impl<'a, 'tcx> SpecializedDecoder<LocalDefId> for DecodeContext<'a, 'tcx> {
273     #[inline]
274     fn specialized_decode(&mut self) -> Result<LocalDefId, Self::Error> {
275         self.specialized_decode().map(|i| LocalDefId::from_def_id(i))
276     }
277 }
278
279 impl<'a, 'tcx> SpecializedDecoder<interpret::AllocId> for DecodeContext<'a, 'tcx> {
280     fn specialized_decode(&mut self) -> Result<interpret::AllocId, Self::Error> {
281         if let Some(alloc_decoding_session) = self.alloc_decoding_session {
282             alloc_decoding_session.decode_alloc_id(self)
283         } else {
284             bug!("Attempting to decode interpret::AllocId without CrateMetadata")
285         }
286     }
287 }
288
289 impl<'a, 'tcx> SpecializedDecoder<Span> for DecodeContext<'a, 'tcx> {
290     fn specialized_decode(&mut self) -> Result<Span, Self::Error> {
291         let tag = u8::decode(self)?;
292
293         if tag == TAG_INVALID_SPAN {
294             return Ok(DUMMY_SP)
295         }
296
297         debug_assert_eq!(tag, TAG_VALID_SPAN);
298
299         let lo = BytePos::decode(self)?;
300         let len = BytePos::decode(self)?;
301         let hi = lo + len;
302
303         let sess = if let Some(sess) = self.sess {
304             sess
305         } else {
306             bug!("Cannot decode Span without Session.")
307         };
308
309         let imported_source_files = self.cdata().imported_source_files(&sess.source_map());
310         let source_file = {
311             // Optimize for the case that most spans within a translated item
312             // originate from the same source_file.
313             let last_source_file = &imported_source_files[self.last_source_file_index];
314
315             if lo >= last_source_file.original_start_pos &&
316                lo <= last_source_file.original_end_pos {
317                 last_source_file
318             } else {
319                 let mut a = 0;
320                 let mut b = imported_source_files.len();
321
322                 while b - a > 1 {
323                     let m = (a + b) / 2;
324                     if imported_source_files[m].original_start_pos > lo {
325                         b = m;
326                     } else {
327                         a = m;
328                     }
329                 }
330
331                 self.last_source_file_index = a;
332                 &imported_source_files[a]
333             }
334         };
335
336         // Make sure our binary search above is correct.
337         debug_assert!(lo >= source_file.original_start_pos &&
338                       lo <= source_file.original_end_pos);
339
340         // Make sure we correctly filtered out invalid spans during encoding
341         debug_assert!(hi >= source_file.original_start_pos &&
342                       hi <= source_file.original_end_pos);
343
344         let lo = (lo + source_file.translated_source_file.start_pos)
345                  - source_file.original_start_pos;
346         let hi = (hi + source_file.translated_source_file.start_pos)
347                  - source_file.original_start_pos;
348
349         Ok(Span::new(lo, hi, NO_EXPANSION))
350     }
351 }
352
353 impl<'a, 'tcx> SpecializedDecoder<Fingerprint> for DecodeContext<'a, 'tcx> {
354     fn specialized_decode(&mut self) -> Result<Fingerprint, Self::Error> {
355         Fingerprint::decode_opaque(&mut self.opaque)
356     }
357 }
358
359 impl<'a, 'tcx, T: Decodable> SpecializedDecoder<mir::ClearCrossCrate<T>>
360 for DecodeContext<'a, 'tcx> {
361     #[inline]
362     fn specialized_decode(&mut self) -> Result<mir::ClearCrossCrate<T>, Self::Error> {
363         Ok(mir::ClearCrossCrate::Clear)
364     }
365 }
366
367 implement_ty_decoder!( DecodeContext<'a, 'tcx> );
368
369 impl<'a, 'tcx> MetadataBlob {
370     pub fn is_compatible(&self) -> bool {
371         self.raw_bytes().starts_with(METADATA_HEADER)
372     }
373
374     pub fn get_rustc_version(&self) -> String {
375         Lazy::with_position(METADATA_HEADER.len() + 4).decode(self)
376     }
377
378     pub fn get_root(&self) -> CrateRoot {
379         let slice = self.raw_bytes();
380         let offset = METADATA_HEADER.len();
381         let pos = (((slice[offset + 0] as u32) << 24) | ((slice[offset + 1] as u32) << 16) |
382                    ((slice[offset + 2] as u32) << 8) |
383                    ((slice[offset + 3] as u32) << 0)) as usize;
384         Lazy::with_position(pos).decode(self)
385     }
386
387     pub fn list_crate_metadata(&self,
388                                out: &mut dyn io::Write) -> io::Result<()> {
389         write!(out, "=External Dependencies=\n")?;
390         let root = self.get_root();
391         for (i, dep) in root.crate_deps
392                             .decode(self)
393                             .enumerate() {
394             write!(out, "{} {}{}\n", i + 1, dep.name, dep.extra_filename)?;
395         }
396         write!(out, "\n")?;
397         Ok(())
398     }
399 }
400
401 impl<'tcx> EntryKind<'tcx> {
402     fn to_def(&self, did: DefId) -> Option<Def> {
403         Some(match *self {
404             EntryKind::Const(..) => Def::Const(did),
405             EntryKind::AssociatedConst(..) => Def::AssociatedConst(did),
406             EntryKind::ImmStatic |
407             EntryKind::ForeignImmStatic => Def::Static(did, false),
408             EntryKind::MutStatic |
409             EntryKind::ForeignMutStatic => Def::Static(did, true),
410             EntryKind::Struct(_, _) => Def::Struct(did),
411             EntryKind::Union(_, _) => Def::Union(did),
412             EntryKind::Fn(_) |
413             EntryKind::ForeignFn(_) => Def::Fn(did),
414             EntryKind::Method(_) => Def::Method(did),
415             EntryKind::Type => Def::TyAlias(did),
416             EntryKind::Existential => Def::Existential(did),
417             EntryKind::AssociatedType(_) => Def::AssociatedTy(did),
418             EntryKind::AssociatedExistential(_) => Def::AssociatedExistential(did),
419             EntryKind::Mod(_) => Def::Mod(did),
420             EntryKind::Variant(_) => Def::Variant(did),
421             EntryKind::Trait(_) => Def::Trait(did),
422             EntryKind::TraitAlias(_) => Def::TraitAlias(did),
423             EntryKind::Enum(..) => Def::Enum(did),
424             EntryKind::MacroDef(_) => Def::Macro(did, MacroKind::Bang),
425             EntryKind::ForeignType => Def::ForeignTy(did),
426
427             EntryKind::ForeignMod |
428             EntryKind::GlobalAsm |
429             EntryKind::Impl(_) |
430             EntryKind::Field |
431             EntryKind::Generator(_) |
432             EntryKind::Closure(_) => return None,
433         })
434     }
435 }
436
437 /// Creates the "fake" DefPathTable for a given proc macro crate.
438 ///
439 /// The DefPathTable is as follows:
440 ///
441 /// CRATE_ROOT (DefIndex 0:0)
442 ///  |- GlobalMetaDataKind data (DefIndex 1:0 .. DefIndex 1:N)
443 ///  |- proc macro #0 (DefIndex 1:N)
444 ///  |- proc macro #1 (DefIndex 1:N+1)
445 ///  \- ...
446 crate fn proc_macro_def_path_table(crate_root: &CrateRoot,
447                                    proc_macros: &[(ast::Name, Lrc<SyntaxExtension>)])
448                                    -> DefPathTable
449 {
450     let mut definitions = Definitions::new();
451
452     let name = crate_root.name.as_str();
453     let disambiguator = crate_root.disambiguator;
454     debug!("creating proc macro def path table for {:?}/{:?}", name, disambiguator);
455     let crate_root = definitions.create_root_def(&name, disambiguator);
456     for (index, (name, _)) in proc_macros.iter().enumerate() {
457         let def_index = definitions.create_def_with_parent(
458             crate_root,
459             ast::DUMMY_NODE_ID,
460             DefPathData::MacroDef(name.as_interned_str()),
461             DefIndexAddressSpace::High,
462             Mark::root(),
463             DUMMY_SP);
464         debug!("definition for {:?} is {:?}", name, def_index);
465         assert_eq!(def_index, DefIndex::from_proc_macro_index(index));
466     }
467
468     definitions.def_path_table().clone()
469 }
470
471 impl<'a, 'tcx> CrateMetadata {
472     fn is_proc_macro(&self, id: DefIndex) -> bool {
473         self.proc_macros.is_some() && id != CRATE_DEF_INDEX
474     }
475
476     fn maybe_entry(&self, item_id: DefIndex) -> Option<Lazy<Entry<'tcx>>> {
477         assert!(!self.is_proc_macro(item_id));
478         self.root.index.lookup(self.blob.raw_bytes(), item_id)
479     }
480
481     fn entry(&self, item_id: DefIndex) -> Entry<'tcx> {
482         match self.maybe_entry(item_id) {
483             None => {
484                 bug!("entry: id not found: {:?} in crate {:?} with number {}",
485                      item_id,
486                      self.name,
487                      self.cnum)
488             }
489             Some(d) => d.decode(self),
490         }
491     }
492
493     fn local_def_id(&self, index: DefIndex) -> DefId {
494         DefId {
495             krate: self.cnum,
496             index,
497         }
498     }
499
500     pub fn item_name(&self, item_index: DefIndex) -> InternedString {
501         self.def_key(item_index)
502             .disambiguated_data
503             .data
504             .get_opt_name()
505             .expect("no name in item_name")
506     }
507
508     pub fn get_def(&self, index: DefIndex) -> Option<Def> {
509         if !self.is_proc_macro(index) {
510             self.entry(index).kind.to_def(self.local_def_id(index))
511         } else {
512             let kind = self.proc_macros.as_ref().unwrap()[index.to_proc_macro_index()].1.kind();
513             Some(Def::Macro(self.local_def_id(index), kind))
514         }
515     }
516
517     pub fn get_span(&self, index: DefIndex, sess: &Session) -> Span {
518         match self.is_proc_macro(index) {
519             true => DUMMY_SP,
520             false => self.entry(index).span.decode((self, sess)),
521         }
522     }
523
524     pub fn get_trait_def(&self, item_id: DefIndex, sess: &Session) -> ty::TraitDef {
525         match self.entry(item_id).kind {
526             EntryKind::Trait(data) => {
527                 let data = data.decode((self, sess));
528                 ty::TraitDef::new(self.local_def_id(item_id),
529                                   data.unsafety,
530                                   data.paren_sugar,
531                                   data.has_auto_impl,
532                                   data.is_marker,
533                                   self.def_path_table.def_path_hash(item_id))
534             },
535             EntryKind::TraitAlias(_) => {
536                 ty::TraitDef::new(self.local_def_id(item_id),
537                                   hir::Unsafety::Normal,
538                                   false,
539                                   false,
540                                   false,
541                                   self.def_path_table.def_path_hash(item_id))
542             },
543             _ => bug!("def-index does not refer to trait or trait alias"),
544         }
545     }
546
547     fn get_variant(
548         &self,
549         tcx: TyCtxt<'a, 'tcx, 'tcx>,
550         item: &Entry<'_>,
551         index: DefIndex,
552         parent_did: DefId,
553         adt_kind: ty::AdtKind
554     ) -> ty::VariantDef {
555         let data = match item.kind {
556             EntryKind::Variant(data) |
557             EntryKind::Struct(data, _) |
558             EntryKind::Union(data, _) => data.decode(self),
559             _ => bug!(),
560         };
561
562         let variant_did = if adt_kind == ty::AdtKind::Enum {
563             Some(self.local_def_id(index))
564         } else {
565             None
566         };
567         let ctor_did = data.ctor.map(|index| self.local_def_id(index));
568
569         ty::VariantDef::new(
570             tcx,
571             Ident::from_interned_str(self.item_name(index)),
572             variant_did,
573             ctor_did,
574             data.discr,
575             item.children.decode(self).map(|index| {
576                 let f = self.entry(index);
577                 ty::FieldDef {
578                     did: self.local_def_id(index),
579                     ident: Ident::from_interned_str(self.item_name(index)),
580                     vis: f.visibility.decode(self)
581                 }
582             }).collect(),
583             data.ctor_kind,
584             adt_kind,
585             parent_did,
586             false,
587         )
588     }
589
590     pub fn get_adt_def(&self,
591                        item_id: DefIndex,
592                        tcx: TyCtxt<'a, 'tcx, 'tcx>)
593                        -> &'tcx ty::AdtDef {
594         let item = self.entry(item_id);
595         let did = self.local_def_id(item_id);
596
597         let (kind, repr) = match item.kind {
598             EntryKind::Enum(repr) => (ty::AdtKind::Enum, repr),
599             EntryKind::Struct(_, repr) => (ty::AdtKind::Struct, repr),
600             EntryKind::Union(_, repr) => (ty::AdtKind::Union, repr),
601             _ => bug!("get_adt_def called on a non-ADT {:?}", did),
602         };
603
604         let variants = if let ty::AdtKind::Enum = kind {
605             item.children
606                 .decode(self)
607                 .map(|index| {
608                     self.get_variant(tcx, &self.entry(index), index, did, kind)
609                 })
610                 .collect()
611         } else {
612             std::iter::once(self.get_variant(tcx, &item, item_id, did, kind)).collect()
613         };
614
615         tcx.alloc_adt_def(did, kind, variants, repr)
616     }
617
618     pub fn get_predicates(&self,
619                           item_id: DefIndex,
620                           tcx: TyCtxt<'a, 'tcx, 'tcx>)
621                           -> ty::GenericPredicates<'tcx> {
622         self.entry(item_id).predicates.unwrap().decode((self, tcx))
623     }
624
625     pub fn get_predicates_defined_on(&self,
626                                    item_id: DefIndex,
627                                    tcx: TyCtxt<'a, 'tcx, 'tcx>)
628                                    -> ty::GenericPredicates<'tcx> {
629         self.entry(item_id).predicates_defined_on.unwrap().decode((self, tcx))
630     }
631
632     pub fn get_super_predicates(&self,
633                                 item_id: DefIndex,
634                                 tcx: TyCtxt<'a, 'tcx, 'tcx>)
635                                 -> ty::GenericPredicates<'tcx> {
636         let super_predicates = match self.entry(item_id).kind {
637             EntryKind::Trait(data) => data.decode(self).super_predicates,
638             EntryKind::TraitAlias(data) => data.decode(self).super_predicates,
639             _ => bug!("def-index does not refer to trait or trait alias"),
640         };
641
642         super_predicates.decode((self, tcx))
643     }
644
645     pub fn get_generics(&self,
646                         item_id: DefIndex,
647                         sess: &Session)
648                         -> ty::Generics {
649         self.entry(item_id).generics.unwrap().decode((self, sess))
650     }
651
652     pub fn get_type(&self, id: DefIndex, tcx: TyCtxt<'a, 'tcx, 'tcx>) -> Ty<'tcx> {
653         self.entry(id).ty.unwrap().decode((self, tcx))
654     }
655
656     pub fn get_stability(&self, id: DefIndex) -> Option<attr::Stability> {
657         match self.is_proc_macro(id) {
658             true => self.root.proc_macro_stability.clone(),
659             false => self.entry(id).stability.map(|stab| stab.decode(self)),
660         }
661     }
662
663     pub fn get_deprecation(&self, id: DefIndex) -> Option<attr::Deprecation> {
664         match self.is_proc_macro(id) {
665             true => None,
666             false => self.entry(id).deprecation.map(|depr| depr.decode(self)),
667         }
668     }
669
670     pub fn get_visibility(&self, id: DefIndex) -> ty::Visibility {
671         match self.is_proc_macro(id) {
672             true => ty::Visibility::Public,
673             false => self.entry(id).visibility.decode(self),
674         }
675     }
676
677     fn get_impl_data(&self, id: DefIndex) -> ImplData<'tcx> {
678         match self.entry(id).kind {
679             EntryKind::Impl(data) => data.decode(self),
680             _ => bug!(),
681         }
682     }
683
684     pub fn get_parent_impl(&self, id: DefIndex) -> Option<DefId> {
685         self.get_impl_data(id).parent_impl
686     }
687
688     pub fn get_impl_polarity(&self, id: DefIndex) -> hir::ImplPolarity {
689         self.get_impl_data(id).polarity
690     }
691
692     pub fn get_impl_defaultness(&self, id: DefIndex) -> hir::Defaultness {
693         self.get_impl_data(id).defaultness
694     }
695
696     pub fn get_coerce_unsized_info(&self,
697                                    id: DefIndex)
698                                    -> Option<ty::adjustment::CoerceUnsizedInfo> {
699         self.get_impl_data(id).coerce_unsized_info
700     }
701
702     pub fn get_impl_trait(&self,
703                           id: DefIndex,
704                           tcx: TyCtxt<'a, 'tcx, 'tcx>)
705                           -> Option<ty::TraitRef<'tcx>> {
706         self.get_impl_data(id).trait_ref.map(|tr| tr.decode((self, tcx)))
707     }
708
709     /// Iterates over all the stability attributes in the given crate.
710     pub fn get_lib_features(&self) -> Vec<(ast::Name, Option<ast::Name>)> {
711         // FIXME: For a proc macro crate, not sure whether we should return the "host"
712         // features or an empty Vec. Both don't cause ICEs.
713         self.root
714             .lib_features
715             .decode(self)
716             .collect()
717     }
718
719     /// Iterates over the language items in the given crate.
720     pub fn get_lang_items(&self) -> Vec<(DefId, usize)> {
721         if self.proc_macros.is_some() {
722             // Proc macro crates do not export any lang-items to the target.
723             vec![]
724         } else {
725             self.root
726                 .lang_items
727                 .decode(self)
728                 .map(|(def_index, index)| (self.local_def_id(def_index), index))
729                 .collect()
730         }
731     }
732
733     /// Iterates over each child of the given item.
734     pub fn each_child_of_item<F>(&self, id: DefIndex, mut callback: F, sess: &Session)
735         where F: FnMut(def::Export)
736     {
737         if let Some(ref proc_macros) = self.proc_macros {
738             /* If we are loading as a proc macro, we want to return the view of this crate
739              * as a proc macro crate, not as a Rust crate. See `proc_macro_def_path_table`
740              * for the DefPathTable we are corresponding to.
741              */
742             if id == CRATE_DEF_INDEX {
743                 for (id, &(name, ref ext)) in proc_macros.iter().enumerate() {
744                     let def = Def::Macro(
745                         DefId {
746                             krate: self.cnum,
747                             index: DefIndex::from_proc_macro_index(id),
748                         },
749                         ext.kind()
750                     );
751                     let ident = Ident::with_empty_ctxt(name);
752                     callback(def::Export {
753                         ident: ident,
754                         def: def,
755                         vis: ty::Visibility::Public,
756                         span: DUMMY_SP,
757                     });
758                 }
759             }
760             return
761         }
762
763         // Find the item.
764         let item = match self.maybe_entry(id) {
765             None => return,
766             Some(item) => item.decode((self, sess)),
767         };
768
769         // Iterate over all children.
770         let macros_only = self.dep_kind.lock().macros_only();
771         for child_index in item.children.decode((self, sess)) {
772             if macros_only {
773                 continue
774             }
775
776             // Get the item.
777             if let Some(child) = self.maybe_entry(child_index) {
778                 let child = child.decode((self, sess));
779                 match child.kind {
780                     EntryKind::MacroDef(..) => {}
781                     _ if macros_only => continue,
782                     _ => {}
783                 }
784
785                 // Hand off the item to the callback.
786                 match child.kind {
787                     // FIXME(eddyb) Don't encode these in children.
788                     EntryKind::ForeignMod => {
789                         for child_index in child.children.decode((self, sess)) {
790                             if let Some(def) = self.get_def(child_index) {
791                                 callback(def::Export {
792                                     def,
793                                     ident: Ident::from_interned_str(self.item_name(child_index)),
794                                     vis: self.get_visibility(child_index),
795                                     span: self.entry(child_index).span.decode((self, sess)),
796                                 });
797                             }
798                         }
799                         continue;
800                     }
801                     EntryKind::Impl(_) => continue,
802
803                     _ => {}
804                 }
805
806                 let def_key = self.def_key(child_index);
807                 let span = child.span.decode((self, sess));
808                 if let (Some(def), Some(name)) =
809                     (self.get_def(child_index), def_key.disambiguated_data.data.get_opt_name()) {
810                     let ident = Ident::from_interned_str(name);
811                     let vis = self.get_visibility(child_index);
812                     callback(def::Export { def, ident, vis, span });
813                     // For non-re-export structs and variants add their constructors to children.
814                     // Re-export lists automatically contain constructors when necessary.
815                     match def {
816                         Def::Struct(..) => {
817                             if let Some(ctor_def_id) = self.get_ctor_def_id(child_index) {
818                                 let ctor_kind = self.get_ctor_kind(child_index);
819                                 let ctor_def = Def::Ctor(ctor_def_id, CtorOf::Struct, ctor_kind);
820                                 let vis = self.get_visibility(ctor_def_id.index);
821                                 callback(def::Export { def: ctor_def, vis, ident, span });
822                             }
823                         }
824                         Def::Variant(def_id) => {
825                             // Braced variants, unlike structs, generate unusable names in
826                             // value namespace, they are reserved for possible future use.
827                             // It's ok to use the variant's id as a ctor id since an
828                             // error will be reported on any use of such resolution anyway.
829                             let ctor_def_id = self.get_ctor_def_id(child_index).unwrap_or(def_id);
830                             let ctor_kind = self.get_ctor_kind(child_index);
831                             let ctor_def = Def::Ctor(ctor_def_id, CtorOf::Variant, ctor_kind);
832                             let vis = self.get_visibility(ctor_def_id.index);
833                             callback(def::Export { def: ctor_def, ident, vis, span });
834                         }
835                         _ => {}
836                     }
837                 }
838             }
839         }
840
841         if let EntryKind::Mod(data) = item.kind {
842             for exp in data.decode((self, sess)).reexports.decode((self, sess)) {
843                 match exp.def {
844                     Def::Macro(..) => {}
845                     _ if macros_only => continue,
846                     _ => {}
847                 }
848                 callback(exp);
849             }
850         }
851     }
852
853     pub fn const_is_rvalue_promotable_to_static(&self, id: DefIndex) -> bool {
854         match self.entry(id).kind {
855             EntryKind::AssociatedConst(_, data, _) |
856             EntryKind::Const(data, _) => data.ast_promotable,
857             _ => bug!(),
858         }
859     }
860
861     pub fn is_item_mir_available(&self, id: DefIndex) -> bool {
862         !self.is_proc_macro(id) &&
863         self.maybe_entry(id).and_then(|item| item.decode(self).mir).is_some()
864     }
865
866     pub fn maybe_get_optimized_mir(&self,
867                                    tcx: TyCtxt<'a, 'tcx, 'tcx>,
868                                    id: DefIndex)
869                                    -> Option<Mir<'tcx>> {
870         match self.is_proc_macro(id) {
871             true => None,
872             false => self.entry(id).mir.map(|mir| mir.decode((self, tcx))),
873         }
874     }
875
876     pub fn mir_const_qualif(&self, id: DefIndex) -> u8 {
877         match self.entry(id).kind {
878             EntryKind::Const(qualif, _) |
879             EntryKind::AssociatedConst(AssociatedContainer::ImplDefault, qualif, _) |
880             EntryKind::AssociatedConst(AssociatedContainer::ImplFinal, qualif, _) => {
881                 qualif.mir
882             }
883             _ => bug!(),
884         }
885     }
886
887     pub fn get_associated_item(&self, id: DefIndex) -> ty::AssociatedItem {
888         let item = self.entry(id);
889         let def_key = self.def_key(id);
890         let parent = self.local_def_id(def_key.parent.unwrap());
891         let name = def_key.disambiguated_data.data.get_opt_name().unwrap();
892
893         let (kind, container, has_self) = match item.kind {
894             EntryKind::AssociatedConst(container, _, _) => {
895                 (ty::AssociatedKind::Const, container, false)
896             }
897             EntryKind::Method(data) => {
898                 let data = data.decode(self);
899                 (ty::AssociatedKind::Method, data.container, data.has_self)
900             }
901             EntryKind::AssociatedType(container) => {
902                 (ty::AssociatedKind::Type, container, false)
903             }
904             EntryKind::AssociatedExistential(container) => {
905                 (ty::AssociatedKind::Existential, container, false)
906             }
907             _ => bug!("cannot get associated-item of `{:?}`", def_key)
908         };
909
910         ty::AssociatedItem {
911             ident: Ident::from_interned_str(name),
912             kind,
913             vis: item.visibility.decode(self),
914             defaultness: container.defaultness(),
915             def_id: self.local_def_id(id),
916             container: container.with_def_id(parent),
917             method_has_self_argument: has_self
918         }
919     }
920
921     pub fn get_item_variances(&self, id: DefIndex) -> Vec<ty::Variance> {
922         self.entry(id).variances.decode(self).collect()
923     }
924
925     pub fn get_ctor_kind(&self, node_id: DefIndex) -> CtorKind {
926         match self.entry(node_id).kind {
927             EntryKind::Struct(data, _) |
928             EntryKind::Union(data, _) |
929             EntryKind::Variant(data) => data.decode(self).ctor_kind,
930             _ => CtorKind::Fictive,
931         }
932     }
933
934     pub fn get_ctor_def_id(&self, node_id: DefIndex) -> Option<DefId> {
935         match self.entry(node_id).kind {
936             EntryKind::Struct(data, _) => {
937                 data.decode(self).ctor.map(|index| self.local_def_id(index))
938             }
939             EntryKind::Variant(data) => {
940                 data.decode(self).ctor.map(|index| self.local_def_id(index))
941             }
942             _ => None,
943         }
944     }
945
946     pub fn get_item_attrs(&self, node_id: DefIndex, sess: &Session) -> Lrc<[ast::Attribute]> {
947         if self.is_proc_macro(node_id) {
948             return Lrc::new([]);
949         }
950
951         // The attributes for a tuple struct/variant are attached to the definition, not the ctor;
952         // we assume that someone passing in a tuple struct ctor is actually wanting to
953         // look at the definition
954         let def_key = self.def_key(node_id);
955         let item_id = if def_key.disambiguated_data.data == DefPathData::Ctor {
956             def_key.parent.unwrap()
957         } else {
958             node_id
959         };
960
961         let item = self.entry(item_id);
962         Lrc::from(self.get_attributes(&item, sess))
963     }
964
965     pub fn get_struct_field_names(&self, id: DefIndex) -> Vec<ast::Name> {
966         self.entry(id)
967             .children
968             .decode(self)
969             .map(|index| self.item_name(index).as_symbol())
970             .collect()
971     }
972
973     fn get_attributes(&self, item: &Entry<'tcx>, sess: &Session) -> Vec<ast::Attribute> {
974         item.attributes
975             .decode((self, sess))
976             .map(|mut attr| {
977                 // Need new unique IDs: old thread-local IDs won't map to new threads.
978                 attr.id = attr::mk_attr_id();
979                 attr
980             })
981             .collect()
982     }
983
984     // Translate a DefId from the current compilation environment to a DefId
985     // for an external crate.
986     fn reverse_translate_def_id(&self, did: DefId) -> Option<DefId> {
987         for (local, &global) in self.cnum_map.iter_enumerated() {
988             if global == did.krate {
989                 return Some(DefId {
990                     krate: local,
991                     index: did.index,
992                 });
993             }
994         }
995
996         None
997     }
998
999     pub fn get_inherent_implementations_for_type(&self, id: DefIndex) -> Vec<DefId> {
1000         self.entry(id)
1001             .inherent_impls
1002             .decode(self)
1003             .map(|index| self.local_def_id(index))
1004             .collect()
1005     }
1006
1007     pub fn get_implementations_for_trait(&self,
1008                                          filter: Option<DefId>,
1009                                          result: &mut Vec<DefId>) {
1010         if self.proc_macros.is_some() {
1011             // proc-macro crates export no trait impls.
1012             return
1013         }
1014
1015         // Do a reverse lookup beforehand to avoid touching the crate_num
1016         // hash map in the loop below.
1017         let filter = match filter.map(|def_id| self.reverse_translate_def_id(def_id)) {
1018             Some(Some(def_id)) => Some((def_id.krate.as_u32(), def_id.index)),
1019             Some(None) => return,
1020             None => None,
1021         };
1022
1023         if let Some(filter) = filter {
1024             if let Some(impls) = self.trait_impls
1025                                      .get(&filter) {
1026                 result.extend(impls.decode(self).map(|idx| self.local_def_id(idx)));
1027             }
1028         } else {
1029             for impls in self.trait_impls.values() {
1030                 result.extend(impls.decode(self).map(|idx| self.local_def_id(idx)));
1031             }
1032         }
1033     }
1034
1035     pub fn get_trait_of_item(&self, id: DefIndex) -> Option<DefId> {
1036         let def_key = self.def_key(id);
1037         match def_key.disambiguated_data.data {
1038             DefPathData::TypeNs(..) | DefPathData::ValueNs(..) => (),
1039             // Not an associated item
1040             _ => return None,
1041         }
1042         def_key.parent.and_then(|parent_index| {
1043             match self.entry(parent_index).kind {
1044                 EntryKind::Trait(_) |
1045                 EntryKind::TraitAlias(_) => Some(self.local_def_id(parent_index)),
1046                 _ => None,
1047             }
1048         })
1049     }
1050
1051
1052     pub fn get_native_libraries(&self, sess: &Session) -> Vec<NativeLibrary> {
1053         if self.proc_macros.is_some() {
1054             // Proc macro crates do not have any *target* native libraries.
1055             vec![]
1056         } else {
1057             self.root.native_libraries.decode((self, sess)).collect()
1058         }
1059     }
1060
1061     pub fn get_foreign_modules(&self, sess: &Session) -> Vec<ForeignModule> {
1062         if self.proc_macros.is_some() {
1063             // Proc macro crates do not have any *target* foreign modules.
1064             vec![]
1065         } else {
1066             self.root.foreign_modules.decode((self, sess)).collect()
1067         }
1068     }
1069
1070     pub fn get_dylib_dependency_formats(&self) -> Vec<(CrateNum, LinkagePreference)> {
1071         self.root
1072             .dylib_dependency_formats
1073             .decode(self)
1074             .enumerate()
1075             .flat_map(|(i, link)| {
1076                 let cnum = CrateNum::new(i + 1);
1077                 link.map(|link| (self.cnum_map[cnum], link))
1078             })
1079             .collect()
1080     }
1081
1082     pub fn get_missing_lang_items(&self) -> Vec<lang_items::LangItem> {
1083         if self.proc_macros.is_some() {
1084             // Proc macro crates do not depend on any target weak lang-items.
1085             vec![]
1086         } else {
1087             self.root
1088                 .lang_items_missing
1089                 .decode(self)
1090                 .collect()
1091         }
1092     }
1093
1094     pub fn get_fn_arg_names(&self, id: DefIndex) -> Vec<ast::Name> {
1095         let arg_names = match self.entry(id).kind {
1096             EntryKind::Fn(data) |
1097             EntryKind::ForeignFn(data) => data.decode(self).arg_names,
1098             EntryKind::Method(data) => data.decode(self).fn_data.arg_names,
1099             _ => LazySeq::empty(),
1100         };
1101         arg_names.decode(self).collect()
1102     }
1103
1104     pub fn exported_symbols(&self,
1105                             tcx: TyCtxt<'a, 'tcx, 'tcx>)
1106                             -> Vec<(ExportedSymbol<'tcx>, SymbolExportLevel)> {
1107         if self.proc_macros.is_some() {
1108             // If this crate is a custom derive crate, then we're not even going to
1109             // link those in so we skip those crates.
1110             vec![]
1111         } else {
1112             let lazy_seq: LazySeq<(ExportedSymbol<'tcx>, SymbolExportLevel)> =
1113                 LazySeq::with_position_and_length(self.root.exported_symbols.position,
1114                                                   self.root.exported_symbols.len);
1115             lazy_seq.decode((self, tcx)).collect()
1116         }
1117     }
1118
1119     pub fn get_rendered_const(&self, id: DefIndex) -> String {
1120         match self.entry(id).kind {
1121             EntryKind::Const(_, data) |
1122             EntryKind::AssociatedConst(_, _, data) => data.decode(self).0,
1123             _ => bug!(),
1124         }
1125     }
1126
1127     pub fn get_macro(&self, id: DefIndex) -> MacroDef {
1128         let entry = self.entry(id);
1129         match entry.kind {
1130             EntryKind::MacroDef(macro_def) => macro_def.decode(self),
1131             _ => bug!(),
1132         }
1133     }
1134
1135     crate fn is_const_fn_raw(&self, id: DefIndex) -> bool {
1136         let constness = match self.entry(id).kind {
1137             EntryKind::Method(data) => data.decode(self).fn_data.constness,
1138             EntryKind::Fn(data) => data.decode(self).constness,
1139             _ => hir::Constness::NotConst,
1140         };
1141         constness == hir::Constness::Const
1142     }
1143
1144     pub fn is_foreign_item(&self, id: DefIndex) -> bool {
1145         match self.entry(id).kind {
1146             EntryKind::ForeignImmStatic |
1147             EntryKind::ForeignMutStatic |
1148             EntryKind::ForeignFn(_) => true,
1149             _ => false,
1150         }
1151     }
1152
1153     pub fn fn_sig(&self,
1154                   id: DefIndex,
1155                   tcx: TyCtxt<'a, 'tcx, 'tcx>)
1156                   -> ty::PolyFnSig<'tcx> {
1157         let sig = match self.entry(id).kind {
1158             EntryKind::Fn(data) |
1159             EntryKind::ForeignFn(data) => data.decode(self).sig,
1160             EntryKind::Method(data) => data.decode(self).fn_data.sig,
1161             EntryKind::Variant(data) |
1162             EntryKind::Struct(data, _) => data.decode(self).ctor_sig.unwrap(),
1163             EntryKind::Closure(data) => data.decode(self).sig,
1164             _ => bug!(),
1165         };
1166         sig.decode((self, tcx))
1167     }
1168
1169     #[inline]
1170     pub fn def_key(&self, index: DefIndex) -> DefKey {
1171         self.def_path_table.def_key(index)
1172     }
1173
1174     // Returns the path leading to the thing with this `id`.
1175     pub fn def_path(&self, id: DefIndex) -> DefPath {
1176         debug!("def_path(cnum={:?}, id={:?})", self.cnum, id);
1177         DefPath::make(self.cnum, id, |parent| self.def_path_table.def_key(parent))
1178     }
1179
1180     #[inline]
1181     pub fn def_path_hash(&self, index: DefIndex) -> DefPathHash {
1182         self.def_path_table.def_path_hash(index)
1183     }
1184
1185     /// Imports the source_map from an external crate into the source_map of the crate
1186     /// currently being compiled (the "local crate").
1187     ///
1188     /// The import algorithm works analogous to how AST items are inlined from an
1189     /// external crate's metadata:
1190     /// For every SourceFile in the external source_map an 'inline' copy is created in the
1191     /// local source_map. The correspondence relation between external and local
1192     /// SourceFiles is recorded in the `ImportedSourceFile` objects returned from this
1193     /// function. When an item from an external crate is later inlined into this
1194     /// crate, this correspondence information is used to translate the span
1195     /// information of the inlined item so that it refers the correct positions in
1196     /// the local source_map (see `<decoder::DecodeContext as SpecializedDecoder<Span>>`).
1197     ///
1198     /// The import algorithm in the function below will reuse SourceFiles already
1199     /// existing in the local source_map. For example, even if the SourceFile of some
1200     /// source file of libstd gets imported many times, there will only ever be
1201     /// one SourceFile object for the corresponding file in the local source_map.
1202     ///
1203     /// Note that imported SourceFiles do not actually contain the source code of the
1204     /// file they represent, just information about length, line breaks, and
1205     /// multibyte characters. This information is enough to generate valid debuginfo
1206     /// for items inlined from other crates.
1207     ///
1208     /// Proc macro crates don't currently export spans, so this function does not have
1209     /// to work for them.
1210     pub fn imported_source_files(&'a self,
1211                                  local_source_map: &source_map::SourceMap)
1212                                  -> ReadGuard<'a, Vec<cstore::ImportedSourceFile>> {
1213         {
1214             let source_files = self.source_map_import_info.borrow();
1215             if !source_files.is_empty() {
1216                 return source_files;
1217             }
1218         }
1219
1220         // Lock the source_map_import_info to ensure this only happens once
1221         let mut source_map_import_info = self.source_map_import_info.borrow_mut();
1222
1223         if !source_map_import_info.is_empty() {
1224             drop(source_map_import_info);
1225             return self.source_map_import_info.borrow();
1226         }
1227
1228         let external_source_map = self.root.source_map.decode(self);
1229
1230         let imported_source_files = external_source_map.map(|source_file_to_import| {
1231             // We can't reuse an existing SourceFile, so allocate a new one
1232             // containing the information we need.
1233             let syntax_pos::SourceFile { name,
1234                                       name_was_remapped,
1235                                       src_hash,
1236                                       start_pos,
1237                                       end_pos,
1238                                       mut lines,
1239                                       mut multibyte_chars,
1240                                       mut non_narrow_chars,
1241                                       name_hash,
1242                                       .. } = source_file_to_import;
1243
1244             let source_length = (end_pos - start_pos).to_usize();
1245
1246             // Translate line-start positions and multibyte character
1247             // position into frame of reference local to file.
1248             // `SourceMap::new_imported_source_file()` will then translate those
1249             // coordinates to their new global frame of reference when the
1250             // offset of the SourceFile is known.
1251             for pos in &mut lines {
1252                 *pos = *pos - start_pos;
1253             }
1254             for mbc in &mut multibyte_chars {
1255                 mbc.pos = mbc.pos - start_pos;
1256             }
1257             for swc in &mut non_narrow_chars {
1258                 *swc = *swc - start_pos;
1259             }
1260
1261             let local_version = local_source_map.new_imported_source_file(name,
1262                                                                    name_was_remapped,
1263                                                                    self.cnum.as_u32(),
1264                                                                    src_hash,
1265                                                                    name_hash,
1266                                                                    source_length,
1267                                                                    lines,
1268                                                                    multibyte_chars,
1269                                                                    non_narrow_chars);
1270             debug!("CrateMetaData::imported_source_files alloc \
1271                     source_file {:?} original (start_pos {:?} end_pos {:?}) \
1272                     translated (start_pos {:?} end_pos {:?})",
1273                    local_version.name, start_pos, end_pos,
1274                    local_version.start_pos, local_version.end_pos);
1275
1276             cstore::ImportedSourceFile {
1277                 original_start_pos: start_pos,
1278                 original_end_pos: end_pos,
1279                 translated_source_file: local_version,
1280             }
1281         }).collect();
1282
1283         *source_map_import_info = imported_source_files;
1284         drop(source_map_import_info);
1285
1286         // This shouldn't borrow twice, but there is no way to downgrade RefMut to Ref.
1287         self.source_map_import_info.borrow()
1288     }
1289 }