]> git.proxmox.com Git - rustc.git/blame - src/librustc_metadata/cstore_impl.rs
New upstream version 1.31.0~beta.4+dfsg1
[rustc.git] / src / librustc_metadata / cstore_impl.rs
CommitLineData
92a42be0
SL
1// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
b7449926 11use cstore::{self, LoadedMacro};
92a42be0 12use encoder;
ea8adc8c
XL
13use link_args;
14use native_libs;
0531ce1d 15use foreign_modules;
9e0c209e 16use schema;
92a42be0 17
94b46f34 18use rustc::ty::query::QueryConfig;
ea8adc8c 19use rustc::middle::cstore::{CrateStore, DepKind,
b7449926 20 EncodedMetadata, NativeLibraryKind};
0531ce1d 21use rustc::middle::exported_symbols::ExportedSymbol;
ea8adc8c 22use rustc::middle::stability::DeprecationEntry;
7cac9316 23use rustc::hir::def;
abe05a73 24use rustc::session::{CrateDisambiguator, Session};
8bb4bdeb 25use rustc::ty::{self, TyCtxt};
94b46f34 26use rustc::ty::query::Providers;
ea8adc8c 27use rustc::hir::def_id::{CrateNum, DefId, LOCAL_CRATE, CRATE_DEF_INDEX};
3b2f2976 28use rustc::hir::map::{DefKey, DefPath, DefPathHash};
ea8adc8c 29use rustc::hir::map::definitions::DefPathTable;
0531ce1d 30use rustc::util::nodemap::DefIdMap;
b7449926 31use rustc_data_structures::svh::Svh;
92a42be0 32
8bb4bdeb 33use std::any::Any;
0531ce1d
XL
34use rustc_data_structures::sync::Lrc;
35use std::sync::Arc;
8bb4bdeb 36
92a42be0
SL
37use syntax::ast;
38use syntax::attr;
b7449926 39use syntax::source_map;
94b46f34 40use syntax::edition::Edition;
b7449926 41use syntax::parse::source_file_to_stream;
476ff2be 42use syntax::symbol::Symbol;
ff7c6d11 43use syntax_pos::{Span, NO_EXPANSION, FileName};
0bf4aa26 44use rustc_data_structures::bit_set::BitSet;
92a42be0 45
8bb4bdeb 46macro_rules! provide {
ea8adc8c
XL
47 (<$lt:tt> $tcx:ident, $def_id:ident, $other:ident, $cdata:ident,
48 $($name:ident => $compute:block)*) => {
abe05a73 49 pub fn provide_extern<$lt>(providers: &mut Providers<$lt>) {
ea8adc8c 50 $(fn $name<'a, $lt:$lt, T>($tcx: TyCtxt<'a, $lt, $lt>, def_id_arg: T)
8bb4bdeb 51 -> <ty::queries::$name<$lt> as
83c7162d 52 QueryConfig<$lt>>::Value
ea8adc8c
XL
53 where T: IntoArgs,
54 {
55 #[allow(unused_variables)]
56 let ($def_id, $other) = def_id_arg.into_args();
8bb4bdeb
XL
57 assert!(!$def_id.is_local());
58
ea8adc8c
XL
59 let def_path_hash = $tcx.def_path_hash(DefId {
60 krate: $def_id.krate,
61 index: CRATE_DEF_INDEX
62 });
63 let dep_node = def_path_hash
64 .to_dep_node(::rustc::dep_graph::DepKind::CrateMetadata);
65 // The DepNodeIndex of the DepNode::CrateMetadata should be
66 // cached somewhere, so that we can use read_index().
041b39d2 67 $tcx.dep_graph.read(dep_node);
8bb4bdeb 68
ea8adc8c 69 let $cdata = $tcx.crate_data_as_rc_any($def_id.krate);
8bb4bdeb 70 let $cdata = $cdata.downcast_ref::<cstore::CrateMetadata>()
0bf4aa26 71 .expect("CrateStore created data is not a CrateMetadata");
8bb4bdeb
XL
72 $compute
73 })*
74
75 *providers = Providers {
76 $($name,)*
77 ..*providers
78 };
79 }
9e0c209e 80 }
8bb4bdeb 81}
9e0c209e 82
ea8adc8c
XL
83// small trait to work around different signature queries all being defined via
84// the macro above.
85trait IntoArgs {
86 fn into_args(self) -> (DefId, DefId);
87}
88
89impl IntoArgs for DefId {
90 fn into_args(self) -> (DefId, DefId) { (self, self) }
91}
92
93impl IntoArgs for CrateNum {
94 fn into_args(self) -> (DefId, DefId) { (self.as_def_id(), self.as_def_id()) }
95}
96
97impl IntoArgs for (CrateNum, DefId) {
98 fn into_args(self) -> (DefId, DefId) { (self.0.as_def_id(), self.1) }
99}
100
101provide! { <'tcx> tcx, def_id, other, cdata,
7cac9316 102 type_of => { cdata.get_type(def_id.index, tcx) }
abe05a73
XL
103 generics_of => {
104 tcx.alloc_generics(cdata.get_generics(def_id.index, tcx.sess))
105 }
7cac9316 106 predicates_of => { cdata.get_predicates(def_id.index, tcx) }
8faf50e0 107 predicates_defined_on => { cdata.get_predicates_defined_on(def_id.index, tcx) }
7cac9316 108 super_predicates_of => { cdata.get_super_predicates(def_id.index, tcx) }
8bb4bdeb 109 trait_def => {
abe05a73 110 tcx.alloc_trait_def(cdata.get_trait_def(def_id.index, tcx.sess))
476ff2be 111 }
8bb4bdeb
XL
112 adt_def => { cdata.get_adt_def(def_id.index, tcx) }
113 adt_destructor => {
114 let _ = cdata;
115 tcx.calculate_dtor(def_id, &mut |_,_| Ok(()))
92a42be0 116 }
0531ce1d 117 variances_of => { Lrc::new(cdata.get_item_variances(def_id.index)) }
8bb4bdeb
XL
118 associated_item_def_ids => {
119 let mut result = vec![];
041b39d2
XL
120 cdata.each_child_of_item(def_id.index,
121 |child| result.push(child.def.def_id()), tcx.sess);
0531ce1d 122 Lrc::new(result)
8bb4bdeb
XL
123 }
124 associated_item => { cdata.get_associated_item(def_id.index) }
125 impl_trait_ref => { cdata.get_impl_trait(def_id.index, tcx) }
cc61c64b
XL
126 impl_polarity => { cdata.get_impl_polarity(def_id.index) }
127 coerce_unsized_info => {
128 cdata.get_coerce_unsized_info(def_id.index).unwrap_or_else(|| {
129 bug!("coerce_unsized_info: `{:?}` is missing its info", def_id);
8bb4bdeb 130 })
9cc50fc6 131 }
7cac9316
XL
132 optimized_mir => {
133 let mir = cdata.maybe_get_optimized_mir(tcx, def_id.index).unwrap_or_else(|| {
134 bug!("get_optimized_mir: missing MIR for `{:?}`", def_id)
8bb4bdeb 135 });
9cc50fc6 136
8bb4bdeb 137 let mir = tcx.alloc_mir(mir);
54a0048b 138
8bb4bdeb 139 mir
92a42be0 140 }
ea8adc8c 141 mir_const_qualif => {
0bf4aa26 142 (cdata.mir_const_qualif(def_id.index), Lrc::new(BitSet::new_empty(0)))
ea8adc8c 143 }
041b39d2 144 fn_sig => { cdata.fn_sig(def_id.index, tcx) }
0531ce1d 145 inherent_impls => { Lrc::new(cdata.get_inherent_implementations_for_type(def_id.index)) }
0bf4aa26 146 is_const_fn_raw => { cdata.is_const_fn_raw(def_id.index) }
cc61c64b 147 is_foreign_item => { cdata.is_foreign_item(def_id.index) }
7cac9316
XL
148 describe_def => { cdata.get_def(def_id.index) }
149 def_span => { cdata.get_span(def_id.index, &tcx.sess) }
ea8adc8c
XL
150 lookup_stability => {
151 cdata.get_stability(def_id.index).map(|s| tcx.intern_stability(s))
152 }
153 lookup_deprecation_entry => {
154 cdata.get_deprecation(def_id.index).map(DeprecationEntry::external)
155 }
abe05a73 156 item_attrs => { cdata.get_item_attrs(def_id.index, tcx.sess) }
7cac9316
XL
157 // FIXME(#38501) We've skipped a `read` on the `HirBody` of
158 // a `fn` when encoding, so the dep-tracking wouldn't work.
159 // This is only used by rustdoc anyway, which shouldn't have
160 // incremental recompilation ever enabled.
161 fn_arg_names => { cdata.get_fn_arg_names(def_id.index) }
83c7162d 162 rendered_const => { cdata.get_rendered_const(def_id.index) }
7cac9316
XL
163 impl_parent => { cdata.get_parent_impl(def_id.index) }
164 trait_of_item => { cdata.get_trait_of_item(def_id.index) }
7cac9316
XL
165 const_is_rvalue_promotable_to_static => {
166 cdata.const_is_rvalue_promotable_to_static(def_id.index)
167 }
168 is_mir_available => { cdata.is_item_mir_available(def_id.index) }
041b39d2 169
0531ce1d 170 dylib_dependency_formats => { Lrc::new(cdata.get_dylib_dependency_formats()) }
94b46f34
XL
171 is_panic_runtime => { cdata.root.panic_runtime }
172 is_compiler_builtins => { cdata.root.compiler_builtins }
173 has_global_allocator => { cdata.root.has_global_allocator }
b7449926 174 has_panic_handler => { cdata.root.has_panic_handler }
94b46f34
XL
175 is_sanitizer_runtime => { cdata.root.sanitizer_runtime }
176 is_profiler_runtime => { cdata.root.profiler_runtime }
177 panic_strategy => { cdata.root.panic_strategy }
0531ce1d
XL
178 extern_crate => {
179 let r = Lrc::new(*cdata.extern_crate.lock());
180 r
181 }
94b46f34 182 is_no_builtins => { cdata.root.no_builtins }
ea8adc8c 183 impl_defaultness => { cdata.get_impl_defaultness(def_id.index) }
0531ce1d
XL
184 reachable_non_generics => {
185 let reachable_non_generics = tcx
186 .exported_symbols(cdata.cnum)
187 .iter()
83c7162d 188 .filter_map(|&(exported_symbol, export_level)| {
0531ce1d 189 if let ExportedSymbol::NonGeneric(def_id) = exported_symbol {
83c7162d 190 return Some((def_id, export_level))
0531ce1d
XL
191 } else {
192 None
193 }
194 })
195 .collect();
196
197 Lrc::new(reachable_non_generics)
198 }
199 native_libraries => { Lrc::new(cdata.get_native_libraries(tcx.sess)) }
200 foreign_modules => { Lrc::new(cdata.get_foreign_modules(tcx.sess)) }
ea8adc8c
XL
201 plugin_registrar_fn => {
202 cdata.root.plugin_registrar_fn.map(|index| {
203 DefId { krate: def_id.krate, index }
204 })
205 }
206 derive_registrar_fn => {
207 cdata.root.macro_derive_registrar.map(|index| {
208 DefId { krate: def_id.krate, index }
209 })
210 }
94b46f34
XL
211 crate_disambiguator => { cdata.root.disambiguator }
212 crate_hash => { cdata.root.hash }
213 original_crate_name => { cdata.root.name }
ea8adc8c 214
83c7162d
XL
215 extra_filename => { cdata.root.extra_filename.clone() }
216
217
ea8adc8c
XL
218 implementations_of_trait => {
219 let mut result = vec![];
220 let filter = Some(other);
221 cdata.get_implementations_for_trait(filter, &mut result);
0531ce1d 222 Lrc::new(result)
ea8adc8c
XL
223 }
224
225 all_trait_implementations => {
226 let mut result = vec![];
227 cdata.get_implementations_for_trait(None, &mut result);
0531ce1d 228 Lrc::new(result)
ea8adc8c
XL
229 }
230
ea8adc8c 231 visibility => { cdata.get_visibility(def_id.index) }
0531ce1d
XL
232 dep_kind => {
233 let r = *cdata.dep_kind.lock();
234 r
235 }
ea8adc8c
XL
236 crate_name => { cdata.name }
237 item_children => {
238 let mut result = vec![];
239 cdata.each_child_of_item(def_id.index, |child| result.push(child), tcx.sess);
0531ce1d 240 Lrc::new(result)
ea8adc8c 241 }
b7449926 242 defined_lib_features => { Lrc::new(cdata.get_lib_features()) }
0531ce1d
XL
243 defined_lang_items => { Lrc::new(cdata.get_lang_items()) }
244 missing_lang_items => { Lrc::new(cdata.get_missing_lang_items()) }
ea8adc8c 245
ea8adc8c 246 missing_extern_crate_item => {
0531ce1d 247 let r = match *cdata.extern_crate.borrow() {
ea8adc8c
XL
248 Some(extern_crate) if !extern_crate.direct => true,
249 _ => false,
0531ce1d
XL
250 };
251 r
ea8adc8c
XL
252 }
253
0531ce1d 254 used_crate_source => { Lrc::new(cdata.source.clone()) }
ea8adc8c 255
0531ce1d
XL
256 exported_symbols => {
257 let cnum = cdata.cnum;
258 assert!(cnum != LOCAL_CRATE);
259
83c7162d 260 Arc::new(cdata.exported_symbols(tcx))
0531ce1d 261 }
041b39d2
XL
262}
263
abe05a73 264pub fn provide<'tcx>(providers: &mut Providers<'tcx>) {
ea8adc8c
XL
265 // FIXME(#44234) - almost all of these queries have no sub-queries and
266 // therefore no actual inputs, they're just reading tables calculated in
267 // resolve! Does this work? Unsure! That's what the issue is about
041b39d2 268 *providers = Providers {
ea8adc8c
XL
269 is_dllimport_foreign_item: |tcx, id| {
270 tcx.native_library_kind(id) == Some(NativeLibraryKind::NativeUnknown)
271 },
272 is_statically_included_foreign_item: |tcx, id| {
273 match tcx.native_library_kind(id) {
274 Some(NativeLibraryKind::NativeStatic) |
275 Some(NativeLibraryKind::NativeStaticNobundle) => true,
276 _ => false,
277 }
278 },
279 native_library_kind: |tcx, id| {
280 tcx.native_libraries(id.krate)
281 .iter()
282 .filter(|lib| native_libs::relevant_lib(&tcx.sess, lib))
0531ce1d
XL
283 .find(|lib| {
284 let fm_id = match lib.foreign_module {
285 Some(id) => id,
286 None => return false,
287 };
288 tcx.foreign_modules(id.krate)
289 .iter()
290 .find(|m| m.def_id == fm_id)
291 .expect("failed to find foreign module")
292 .foreign_items
293 .contains(&id)
294 })
ea8adc8c
XL
295 .map(|l| l.kind)
296 },
297 native_libraries: |tcx, cnum| {
298 assert_eq!(cnum, LOCAL_CRATE);
0531ce1d
XL
299 Lrc::new(native_libs::collect(tcx))
300 },
301 foreign_modules: |tcx, cnum| {
302 assert_eq!(cnum, LOCAL_CRATE);
303 Lrc::new(foreign_modules::collect(tcx))
ea8adc8c
XL
304 },
305 link_args: |tcx, cnum| {
306 assert_eq!(cnum, LOCAL_CRATE);
0531ce1d 307 Lrc::new(link_args::collect(tcx))
ea8adc8c
XL
308 },
309
310 // Returns a map from a sufficiently visible external item (i.e. an
311 // external item that is visible from at least one local module) to a
312 // sufficiently visible parent (considering modules that re-export the
313 // external item to be parents).
314 visible_parent_map: |tcx, cnum| {
315 use std::collections::vec_deque::VecDeque;
316 use std::collections::hash_map::Entry;
317
318 assert_eq!(cnum, LOCAL_CRATE);
319 let mut visible_parent_map: DefIdMap<DefId> = DefIdMap();
320
ff7c6d11
XL
321 // Issue 46112: We want the map to prefer the shortest
322 // paths when reporting the path to an item. Therefore we
323 // build up the map via a breadth-first search (BFS),
324 // which naturally yields minimal-length paths.
325 //
326 // Note that it needs to be a BFS over the whole forest of
327 // crates, not just each individual crate; otherwise you
328 // only get paths that are locally minimal with respect to
329 // whatever crate we happened to encounter first in this
330 // traversal, but not globally minimal across all crates.
331 let bfs_queue = &mut VecDeque::new();
332
abe05a73
XL
333 // Preferring shortest paths alone does not guarantee a
334 // deterministic result; so sort by crate num to avoid
335 // hashtable iteration non-determinism. This only makes
336 // things as deterministic as crate-nums assignment is,
337 // which is to say, its not deterministic in general. But
338 // we believe that libstd is consistently assigned crate
339 // num 1, so it should be enough to resolve #46112.
340 let mut crates: Vec<CrateNum> = (*tcx.crates()).clone();
341 crates.sort();
342
343 for &cnum in crates.iter() {
ea8adc8c
XL
344 // Ignore crates without a corresponding local `extern crate` item.
345 if tcx.missing_extern_crate_item(cnum) {
346 continue
347 }
348
ff7c6d11
XL
349 bfs_queue.push_back(DefId {
350 krate: cnum,
351 index: CRATE_DEF_INDEX
352 });
353 }
354
355 // (restrict scope of mutable-borrow of `visible_parent_map`)
356 {
ea8adc8c
XL
357 let visible_parent_map = &mut visible_parent_map;
358 let mut add_child = |bfs_queue: &mut VecDeque<_>,
359 child: &def::Export,
360 parent: DefId| {
ff7c6d11 361 if child.vis != ty::Visibility::Public {
ea8adc8c
XL
362 return;
363 }
364
ff7c6d11
XL
365 let child = child.def.def_id();
366
ea8adc8c
XL
367 match visible_parent_map.entry(child) {
368 Entry::Occupied(mut entry) => {
369 // If `child` is defined in crate `cnum`, ensure
370 // that it is mapped to a parent in `cnum`.
371 if child.krate == cnum && entry.get().krate != cnum {
372 entry.insert(parent);
373 }
374 }
375 Entry::Vacant(entry) => {
376 entry.insert(parent);
377 bfs_queue.push_back(child);
378 }
379 }
380 };
381
ea8adc8c
XL
382 while let Some(def) = bfs_queue.pop_front() {
383 for child in tcx.item_children(def).iter() {
384 add_child(bfs_queue, child, def);
385 }
386 }
387 }
388
0531ce1d 389 Lrc::new(visible_parent_map)
ea8adc8c
XL
390 },
391
041b39d2
XL
392 ..*providers
393 };
8bb4bdeb 394}
92a42be0 395
b7449926
XL
396impl cstore::CStore {
397 pub fn export_macros_untracked(&self, cnum: CrateNum) {
7cac9316 398 let data = self.get_crate_data(cnum);
0531ce1d
XL
399 let mut dep_kind = data.dep_kind.lock();
400 if *dep_kind == DepKind::UnexportedMacrosOnly {
401 *dep_kind = DepKind::MacrosOnly;
476ff2be
SL
402 }
403 }
404
b7449926
XL
405 pub fn dep_kind_untracked(&self, cnum: CrateNum) -> DepKind {
406 let data = self.get_crate_data(cnum);
407 let r = *data.dep_kind.lock();
408 r
94b46f34
XL
409 }
410
b7449926 411 pub fn crate_edition_untracked(&self, cnum: CrateNum) -> Edition {
94b46f34 412 self.get_crate_data(cnum).root.edition
92a42be0
SL
413 }
414
b7449926 415 pub fn struct_field_names_untracked(&self, def: DefId) -> Vec<ast::Name> {
9e0c209e 416 self.get_crate_data(def.krate).get_struct_field_names(def.index)
92a42be0
SL
417 }
418
b7449926 419 pub fn item_children_untracked(&self, def_id: DefId, sess: &Session) -> Vec<def::Export> {
92a42be0 420 let mut result = vec![];
9e0c209e 421 self.get_crate_data(def_id.krate)
041b39d2 422 .each_child_of_item(def_id.index, |child| result.push(child), sess);
92a42be0
SL
423 result
424 }
425
b7449926 426 pub fn load_macro_untracked(&self, id: DefId, sess: &Session) -> LoadedMacro {
476ff2be
SL
427 let data = self.get_crate_data(id.krate);
428 if let Some(ref proc_macros) = data.proc_macros {
2c00a5a8 429 return LoadedMacro::ProcMacro(proc_macros[id.index.to_proc_macro_index()].1.clone());
4462d4a0 430 } else if data.name == "proc_macro" && data.item_name(id.index) == "quote" {
8faf50e0
XL
431 use syntax::ext::base::SyntaxExtension;
432 use syntax_ext::proc_macro_impl::BangProcMacro;
433
434 let ext = SyntaxExtension::ProcMacro {
435 expander: Box::new(BangProcMacro { inner: ::proc_macro::quote }),
436 allow_internal_unstable: true,
437 edition: data.root.edition,
438 };
0531ce1d 439 return LoadedMacro::ProcMacro(Lrc::new(ext));
476ff2be
SL
440 }
441
4462d4a0
XL
442 let def = data.get_macro(id.index);
443 let macro_full_name = data.def_path(id.index).to_string_friendly(|_| data.imported_name);
444 let source_name = FileName::Macros(macro_full_name);
476ff2be 445
b7449926
XL
446 let source_file = sess.parse_sess.source_map().new_source_file(source_name, def.body);
447 let local_span = Span::new(source_file.start_pos, source_file.end_pos, NO_EXPANSION);
448 let body = source_file_to_stream(&sess.parse_sess, source_file, None);
476ff2be
SL
449
450 // Mark the attrs as used
abe05a73 451 let attrs = data.get_item_attrs(id.index, sess);
cc61c64b 452 for attr in attrs.iter() {
476ff2be
SL
453 attr::mark_used(attr);
454 }
455
456 let name = data.def_key(id.index).disambiguated_data.data
457 .get_opt_name().expect("no name in load_macro");
458 sess.imported_macro_spans.borrow_mut()
459 .insert(local_span, (name.to_string(), data.get_span(id.index, sess)));
460
8bb4bdeb 461 LoadedMacro::MacroDef(ast::Item {
83c7162d 462 ident: ast::Ident::from_str(&name.as_str()),
476ff2be
SL
463 id: ast::DUMMY_NODE_ID,
464 span: local_span,
cc61c64b 465 attrs: attrs.iter().cloned().collect(),
7cac9316
XL
466 node: ast::ItemKind::MacroDef(ast::MacroDef {
467 tokens: body.into(),
468 legacy: def.legacy,
469 }),
b7449926 470 vis: source_map::respan(local_span.shrink_to_lo(), ast::VisibilityKind::Inherited),
3b2f2976 471 tokens: None,
476ff2be
SL
472 })
473 }
474
b7449926
XL
475 pub fn associated_item_cloned_untracked(&self, def: DefId) -> ty::AssociatedItem {
476 self.get_crate_data(def.krate).get_associated_item(def.index)
477 }
478}
479
480impl CrateStore for cstore::CStore {
481 fn crate_data_as_rc_any(&self, krate: CrateNum) -> Lrc<dyn Any> {
482 self.get_crate_data(krate)
483 }
484
485 fn item_generics_cloned_untracked(&self, def: DefId, sess: &Session) -> ty::Generics {
486 self.get_crate_data(def.krate).get_generics(def.index, sess)
487 }
488
489 fn crate_name_untracked(&self, cnum: CrateNum) -> Symbol
490 {
491 self.get_crate_data(cnum).name
492 }
493
494 fn crate_disambiguator_untracked(&self, cnum: CrateNum) -> CrateDisambiguator
495 {
496 self.get_crate_data(cnum).root.disambiguator
497 }
498
499 fn crate_hash_untracked(&self, cnum: CrateNum) -> Svh
500 {
501 self.get_crate_data(cnum).root.hash
502 }
503
504 /// Returns the `DefKey` for a given `DefId`. This indicates the
505 /// parent `DefId` as well as some idea of what kind of data the
506 /// `DefId` refers to.
507 fn def_key(&self, def: DefId) -> DefKey {
508 // Note: loading the def-key (or def-path) for a def-id is not
509 // a *read* of its metadata. This is because the def-id is
510 // really just an interned shorthand for a def-path, which is the
511 // canonical name for an item.
512 //
513 // self.dep_graph.read(DepNode::MetaData(def));
514 self.get_crate_data(def.krate).def_key(def.index)
515 }
516
517 fn def_path(&self, def: DefId) -> DefPath {
518 // See `Note` above in `def_key()` for why this read is
519 // commented out:
520 //
521 // self.dep_graph.read(DepNode::MetaData(def));
522 self.get_crate_data(def.krate).def_path(def.index)
523 }
524
525 fn def_path_hash(&self, def: DefId) -> DefPathHash {
526 self.get_crate_data(def.krate).def_path_hash(def.index)
527 }
528
529 fn def_path_table(&self, cnum: CrateNum) -> Lrc<DefPathTable> {
530 self.get_crate_data(cnum).def_path_table.clone()
531 }
532
ea8adc8c 533 fn crates_untracked(&self) -> Vec<CrateNum>
92a42be0
SL
534 {
535 let mut result = vec![];
536 self.iter_crate_data(|cnum, _| result.push(cnum));
537 result
538 }
539
ea8adc8c 540 fn extern_mod_stmt_cnum_untracked(&self, emod_id: ast::NodeId) -> Option<CrateNum>
92a42be0 541 {
ea8adc8c 542 self.do_extern_mod_stmt_cnum(emod_id)
92a42be0
SL
543 }
544
ea8adc8c
XL
545 fn postorder_cnums_untracked(&self) -> Vec<CrateNum> {
546 self.do_postorder_cnums_untracked()
92a42be0
SL
547 }
548
cc61c64b 549 fn encode_metadata<'a, 'tcx>(&self,
b7449926 550 tcx: TyCtxt<'a, 'tcx, 'tcx>)
ff7c6d11 551 -> EncodedMetadata
9e0c209e 552 {
b7449926 553 encoder::encode_metadata(tcx)
92a42be0
SL
554 }
555
556 fn metadata_encoding_version(&self) -> &[u8]
557 {
9e0c209e 558 schema::METADATA_HEADER
92a42be0
SL
559 }
560}