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