2015-11-20 06:51:18 -06:00
|
|
|
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-11-24 16:00:26 -06:00
|
|
|
use cstore;
|
|
|
|
use encoder;
|
2017-08-30 16:48:57 -05:00
|
|
|
use link_args;
|
|
|
|
use native_libs;
|
2016-09-16 09:25:54 -05:00
|
|
|
use schema;
|
2015-11-24 16:00:26 -06:00
|
|
|
|
2017-06-30 16:53:35 -05:00
|
|
|
use rustc::ty::maps::QueryConfig;
|
2017-08-31 14:08:29 -05:00
|
|
|
use rustc::middle::cstore::{CrateStore, DepKind,
|
2017-08-30 16:48:57 -05:00
|
|
|
MetadataLoader, LinkMeta,
|
2017-08-31 14:08:29 -05:00
|
|
|
LoadedMacro, EncodedMetadata,
|
2017-08-30 16:48:57 -05:00
|
|
|
EncodedMetadataHashes, NativeLibraryKind};
|
2017-08-31 17:08:34 -05:00
|
|
|
use rustc::middle::stability::DeprecationEntry;
|
2017-04-27 13:27:16 -05:00
|
|
|
use rustc::hir::def;
|
2016-10-28 01:52:45 -05:00
|
|
|
use rustc::session::Session;
|
2016-09-28 18:30:53 -05:00
|
|
|
use rustc::ty::{self, TyCtxt};
|
|
|
|
use rustc::ty::maps::Providers;
|
2017-08-31 11:19:33 -05:00
|
|
|
use rustc::hir::def_id::{CrateNum, DefId, LOCAL_CRATE, CRATE_DEF_INDEX};
|
2017-07-20 08:32:06 -05:00
|
|
|
use rustc::hir::map::{DefKey, DefPath, DefPathHash};
|
2017-06-11 23:16:26 -05:00
|
|
|
use rustc::hir::map::blocks::FnLikeNode;
|
2017-09-07 14:35:21 -05:00
|
|
|
use rustc::hir::map::definitions::DefPathTable;
|
2016-09-19 15:49:01 -05:00
|
|
|
use rustc::util::nodemap::{NodeSet, DefIdMap};
|
2015-11-24 16:00:26 -06:00
|
|
|
|
2016-09-28 18:30:53 -05:00
|
|
|
use std::any::Any;
|
|
|
|
use std::rc::Rc;
|
|
|
|
|
2015-11-20 06:51:18 -06:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::attr;
|
2017-03-17 18:41:09 -05:00
|
|
|
use syntax::ext::base::SyntaxExtension;
|
2017-02-20 23:05:59 -06:00
|
|
|
use syntax::parse::filemap_to_stream;
|
2016-11-16 04:52:37 -06:00
|
|
|
use syntax::symbol::Symbol;
|
2017-03-14 19:22:48 -05:00
|
|
|
use syntax_pos::{Span, NO_EXPANSION};
|
2017-09-01 14:04:09 -05:00
|
|
|
use rustc_data_structures::indexed_set::IdxSetBuf;
|
2016-03-29 00:50:44 -05:00
|
|
|
use rustc::hir;
|
2015-11-20 06:51:18 -06:00
|
|
|
|
2016-09-28 18:30:53 -05:00
|
|
|
macro_rules! provide {
|
2017-08-30 13:40:02 -05:00
|
|
|
(<$lt:tt> $tcx:ident, $def_id:ident, $other:ident, $cdata:ident,
|
|
|
|
$($name:ident => $compute:block)*) => {
|
2016-09-28 18:30:53 -05:00
|
|
|
pub fn provide<$lt>(providers: &mut Providers<$lt>) {
|
2017-08-28 17:55:32 -05:00
|
|
|
$(fn $name<'a, $lt:$lt, T>($tcx: TyCtxt<'a, $lt, $lt>, def_id_arg: T)
|
2017-02-19 06:37:50 -06:00
|
|
|
-> <ty::queries::$name<$lt> as
|
2017-08-28 17:55:32 -05:00
|
|
|
QueryConfig>::Value
|
2017-08-30 13:40:02 -05:00
|
|
|
where T: IntoArgs,
|
2017-08-28 17:55:32 -05:00
|
|
|
{
|
2017-08-30 13:40:02 -05:00
|
|
|
#[allow(unused_variables)]
|
|
|
|
let ($def_id, $other) = def_id_arg.into_args();
|
2016-09-28 18:30:53 -05:00
|
|
|
assert!(!$def_id.is_local());
|
|
|
|
|
2017-06-02 10:36:30 -05:00
|
|
|
let def_path_hash = $tcx.def_path_hash($def_id);
|
|
|
|
let dep_node = def_path_hash.to_dep_node(::rustc::dep_graph::DepKind::MetaData);
|
|
|
|
|
|
|
|
$tcx.dep_graph.read(dep_node);
|
2016-09-28 18:30:53 -05:00
|
|
|
|
2017-09-05 09:48:24 -05:00
|
|
|
let $cdata = $tcx.cstore_untracked().crate_data_as_rc_any($def_id.krate);
|
2016-09-28 18:30:53 -05:00
|
|
|
let $cdata = $cdata.downcast_ref::<cstore::CrateMetadata>()
|
|
|
|
.expect("CrateStore crated ata is not a CrateMetadata");
|
|
|
|
$compute
|
|
|
|
})*
|
|
|
|
|
|
|
|
*providers = Providers {
|
|
|
|
$($name,)*
|
|
|
|
..*providers
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-30 13:40:02 -05:00
|
|
|
// small trait to work around different signature queries all being defined via
|
|
|
|
// the macro above.
|
|
|
|
trait IntoArgs {
|
|
|
|
fn into_args(self) -> (DefId, DefId);
|
2017-08-28 17:55:32 -05:00
|
|
|
}
|
|
|
|
|
2017-08-30 13:40:02 -05:00
|
|
|
impl IntoArgs for DefId {
|
|
|
|
fn into_args(self) -> (DefId, DefId) { (self, self) }
|
2017-08-28 17:55:32 -05:00
|
|
|
}
|
|
|
|
|
2017-08-30 13:40:02 -05:00
|
|
|
impl IntoArgs for CrateNum {
|
|
|
|
fn into_args(self) -> (DefId, DefId) { (self.as_def_id(), self.as_def_id()) }
|
2017-08-28 17:55:32 -05:00
|
|
|
}
|
|
|
|
|
2017-08-30 13:40:02 -05:00
|
|
|
impl IntoArgs for (CrateNum, DefId) {
|
|
|
|
fn into_args(self) -> (DefId, DefId) { (self.0.as_def_id(), self.1) }
|
|
|
|
}
|
|
|
|
|
|
|
|
provide! { <'tcx> tcx, def_id, other, cdata,
|
2017-04-24 07:20:46 -05:00
|
|
|
type_of => { cdata.get_type(def_id.index, tcx) }
|
|
|
|
generics_of => { tcx.alloc_generics(cdata.get_generics(def_id.index)) }
|
|
|
|
predicates_of => { cdata.get_predicates(def_id.index, tcx) }
|
|
|
|
super_predicates_of => { cdata.get_super_predicates(def_id.index, tcx) }
|
2016-09-28 18:30:53 -05:00
|
|
|
trait_def => {
|
2017-04-03 12:20:26 -05:00
|
|
|
tcx.alloc_trait_def(cdata.get_trait_def(def_id.index))
|
2016-09-28 18:30:53 -05:00
|
|
|
}
|
|
|
|
adt_def => { cdata.get_adt_def(def_id.index, tcx) }
|
2017-03-01 10:42:26 -06:00
|
|
|
adt_destructor => {
|
|
|
|
let _ = cdata;
|
|
|
|
tcx.calculate_dtor(def_id, &mut |_,_| Ok(()))
|
|
|
|
}
|
2017-04-24 07:20:46 -05:00
|
|
|
variances_of => { Rc::new(cdata.get_item_variances(def_id.index)) }
|
2016-09-28 18:30:53 -05:00
|
|
|
associated_item_def_ids => {
|
|
|
|
let mut result = vec![];
|
2017-06-15 00:49:07 -05:00
|
|
|
cdata.each_child_of_item(def_id.index,
|
|
|
|
|child| result.push(child.def.def_id()), tcx.sess);
|
2016-09-28 18:30:53 -05:00
|
|
|
Rc::new(result)
|
|
|
|
}
|
|
|
|
associated_item => { cdata.get_associated_item(def_id.index) }
|
|
|
|
impl_trait_ref => { cdata.get_impl_trait(def_id.index, tcx) }
|
2017-04-20 12:37:02 -05:00
|
|
|
impl_polarity => { cdata.get_impl_polarity(def_id.index) }
|
2017-03-17 15:17:45 -05:00
|
|
|
coerce_unsized_info => {
|
|
|
|
cdata.get_coerce_unsized_info(def_id.index).unwrap_or_else(|| {
|
|
|
|
bug!("coerce_unsized_info: `{:?}` is missing its info", def_id);
|
2016-09-28 18:30:53 -05:00
|
|
|
})
|
|
|
|
}
|
2017-04-27 15:48:48 -05:00
|
|
|
optimized_mir => {
|
2017-05-02 05:08:13 -05:00
|
|
|
let mir = cdata.maybe_get_optimized_mir(tcx, def_id.index).unwrap_or_else(|| {
|
|
|
|
bug!("get_optimized_mir: missing MIR for `{:?}`", def_id)
|
2016-09-28 18:30:53 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
let mir = tcx.alloc_mir(mir);
|
|
|
|
|
|
|
|
mir
|
|
|
|
}
|
2016-12-26 07:34:03 -06:00
|
|
|
generator_sig => { cdata.generator_sig(def_id.index, tcx) }
|
2017-09-01 14:04:09 -05:00
|
|
|
mir_const_qualif => {
|
|
|
|
(cdata.mir_const_qualif(def_id.index), Rc::new(IdxSetBuf::new_empty(0)))
|
|
|
|
}
|
2017-04-24 07:20:46 -05:00
|
|
|
typeck_tables_of => { cdata.item_body_tables(def_id.index, tcx) }
|
2016-09-28 18:30:53 -05:00
|
|
|
closure_kind => { cdata.closure_kind(def_id.index) }
|
2017-05-13 05:12:29 -05:00
|
|
|
fn_sig => { cdata.fn_sig(def_id.index, tcx) }
|
2017-03-20 17:35:16 -05:00
|
|
|
inherent_impls => { Rc::new(cdata.get_inherent_implementations_for_type(def_id.index)) }
|
2017-06-15 00:49:07 -05:00
|
|
|
is_const_fn => { cdata.is_const_fn(def_id.index) }
|
2017-04-14 09:51:22 -05:00
|
|
|
is_foreign_item => { cdata.is_foreign_item(def_id.index) }
|
2017-05-18 12:56:25 -05:00
|
|
|
is_default_impl => { cdata.is_default_impl(def_id.index) }
|
2017-04-27 13:27:16 -05:00
|
|
|
describe_def => { cdata.get_def(def_id.index) }
|
2017-04-28 10:59:57 -05:00
|
|
|
def_span => { cdata.get_span(def_id.index, &tcx.sess) }
|
2017-08-31 17:08:34 -05:00
|
|
|
lookup_stability => {
|
|
|
|
cdata.get_stability(def_id.index).map(|s| tcx.intern_stability(s))
|
|
|
|
}
|
|
|
|
lookup_deprecation_entry => {
|
|
|
|
cdata.get_deprecation(def_id.index).map(DeprecationEntry::external)
|
|
|
|
}
|
2017-09-07 14:35:21 -05:00
|
|
|
item_attrs => { cdata.get_item_attrs(def_id.index) }
|
2017-05-03 09:01:49 -05:00
|
|
|
// FIXME(#38501) We've skipped a `read` on the `HirBody` of
|
|
|
|
// a `fn` when encoding, so the dep-tracking wouldn't work.
|
|
|
|
// This is only used by rustdoc anyway, which shouldn't have
|
|
|
|
// incremental recompilation ever enabled.
|
|
|
|
fn_arg_names => { cdata.get_fn_arg_names(def_id.index) }
|
2017-05-04 09:37:34 -05:00
|
|
|
impl_parent => { cdata.get_parent_impl(def_id.index) }
|
2017-05-04 08:27:48 -05:00
|
|
|
trait_of_item => { cdata.get_trait_of_item(def_id.index) }
|
2017-05-09 14:40:42 -05:00
|
|
|
is_exported_symbol => {
|
2017-09-07 14:35:21 -05:00
|
|
|
cdata.exported_symbols.contains(&def_id.index)
|
2017-05-09 14:40:42 -05:00
|
|
|
}
|
2017-05-04 12:45:56 -05:00
|
|
|
item_body_nested_bodies => { Rc::new(cdata.item_body_nested_bodies(def_id.index)) }
|
2017-04-28 03:08:48 -05:00
|
|
|
const_is_rvalue_promotable_to_static => {
|
2017-05-04 12:45:56 -05:00
|
|
|
cdata.const_is_rvalue_promotable_to_static(def_id.index)
|
2017-04-28 03:28:22 -05:00
|
|
|
}
|
2017-05-04 12:45:56 -05:00
|
|
|
is_mir_available => { cdata.is_item_mir_available(def_id.index) }
|
2017-06-15 00:49:07 -05:00
|
|
|
|
2017-09-07 14:35:21 -05:00
|
|
|
dylib_dependency_formats => { Rc::new(cdata.get_dylib_dependency_formats()) }
|
|
|
|
is_panic_runtime => { cdata.is_panic_runtime() }
|
|
|
|
is_compiler_builtins => { cdata.is_compiler_builtins() }
|
|
|
|
has_global_allocator => { cdata.has_global_allocator() }
|
|
|
|
is_sanitizer_runtime => { cdata.is_sanitizer_runtime() }
|
|
|
|
is_profiler_runtime => { cdata.is_profiler_runtime() }
|
|
|
|
panic_strategy => { cdata.panic_strategy() }
|
2017-06-15 00:49:07 -05:00
|
|
|
extern_crate => { Rc::new(cdata.extern_crate.get()) }
|
2017-09-07 14:35:21 -05:00
|
|
|
is_no_builtins => { cdata.is_no_builtins() }
|
2017-08-28 18:50:25 -05:00
|
|
|
impl_defaultness => { cdata.get_impl_defaultness(def_id.index) }
|
2017-09-07 14:35:21 -05:00
|
|
|
exported_symbols => { Rc::new(cdata.get_exported_symbols()) }
|
|
|
|
native_libraries => { Rc::new(cdata.get_native_libraries()) }
|
2017-08-28 19:30:27 -05:00
|
|
|
plugin_registrar_fn => {
|
|
|
|
cdata.root.plugin_registrar_fn.map(|index| {
|
|
|
|
DefId { krate: def_id.krate, index }
|
|
|
|
})
|
|
|
|
}
|
|
|
|
derive_registrar_fn => {
|
|
|
|
cdata.root.macro_derive_registrar.map(|index| {
|
|
|
|
DefId { krate: def_id.krate, index }
|
|
|
|
})
|
|
|
|
}
|
2017-08-28 19:30:27 -05:00
|
|
|
crate_disambiguator => { cdata.disambiguator() }
|
|
|
|
crate_hash => { cdata.hash() }
|
2017-08-28 19:30:27 -05:00
|
|
|
original_crate_name => { cdata.name() }
|
2017-08-30 13:40:02 -05:00
|
|
|
|
|
|
|
implementations_of_trait => {
|
|
|
|
let mut result = vec![];
|
|
|
|
let filter = Some(other);
|
2017-09-07 14:35:21 -05:00
|
|
|
cdata.get_implementations_for_trait(filter, &mut result);
|
2017-08-30 13:40:02 -05:00
|
|
|
Rc::new(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
all_trait_implementations => {
|
|
|
|
let mut result = vec![];
|
2017-09-07 14:35:21 -05:00
|
|
|
cdata.get_implementations_for_trait(None, &mut result);
|
2017-08-30 13:40:02 -05:00
|
|
|
Rc::new(result)
|
|
|
|
}
|
2017-08-30 16:48:57 -05:00
|
|
|
|
|
|
|
is_dllimport_foreign_item => {
|
2017-09-07 14:35:21 -05:00
|
|
|
cdata.is_dllimport_foreign_item(def_id.index)
|
2017-08-30 16:48:57 -05:00
|
|
|
}
|
2017-08-31 10:07:39 -05:00
|
|
|
visibility => { cdata.get_visibility(def_id.index) }
|
|
|
|
dep_kind => { cdata.dep_kind.get() }
|
|
|
|
crate_name => { cdata.name }
|
|
|
|
item_children => {
|
|
|
|
let mut result = vec![];
|
|
|
|
cdata.each_child_of_item(def_id.index, |child| result.push(child), tcx.sess);
|
|
|
|
Rc::new(result)
|
|
|
|
}
|
2017-09-07 14:35:21 -05:00
|
|
|
defined_lang_items => { Rc::new(cdata.get_lang_items()) }
|
|
|
|
missing_lang_items => { Rc::new(cdata.get_missing_lang_items()) }
|
2017-08-31 13:12:05 -05:00
|
|
|
|
2017-08-31 17:10:58 -05:00
|
|
|
extern_const_body => {
|
2017-08-31 13:12:05 -05:00
|
|
|
debug!("item_body({:?}): inlining item", def_id);
|
2017-08-31 17:10:58 -05:00
|
|
|
cdata.extern_const_body(tcx, def_id.index)
|
2017-08-31 13:12:05 -05:00
|
|
|
}
|
2017-08-31 13:30:22 -05:00
|
|
|
|
|
|
|
missing_extern_crate_item => {
|
|
|
|
match cdata.extern_crate.get() {
|
|
|
|
Some(extern_crate) if !extern_crate.direct => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
2017-08-31 14:08:29 -05:00
|
|
|
|
|
|
|
used_crate_source => { Rc::new(cdata.source.clone()) }
|
2016-09-28 18:30:53 -05:00
|
|
|
}
|
|
|
|
|
2017-06-11 23:16:26 -05:00
|
|
|
pub fn provide_local<'tcx>(providers: &mut Providers<'tcx>) {
|
|
|
|
fn is_const_fn<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, def_id: DefId) -> bool {
|
|
|
|
let node_id = tcx.hir.as_local_node_id(def_id)
|
|
|
|
.expect("Non-local call to local provider is_const_fn");
|
|
|
|
|
|
|
|
if let Some(fn_like) = FnLikeNode::from_node(tcx.hir.get(node_id)) {
|
|
|
|
fn_like.constness() == hir::Constness::Const
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-31 17:08:34 -05:00
|
|
|
// FIXME(#44234) - almost all of these queries have no sub-queries and
|
|
|
|
// therefore no actual inputs, they're just reading tables calculated in
|
|
|
|
// resolve! Does this work? Unsure! That's what the issue is about
|
2017-06-11 23:16:26 -05:00
|
|
|
*providers = Providers {
|
|
|
|
is_const_fn,
|
2017-08-30 16:48:57 -05:00
|
|
|
is_dllimport_foreign_item: |tcx, id| {
|
|
|
|
tcx.native_library_kind(id) == Some(NativeLibraryKind::NativeUnknown)
|
|
|
|
},
|
|
|
|
is_statically_included_foreign_item: |tcx, id| {
|
|
|
|
match tcx.native_library_kind(id) {
|
|
|
|
Some(NativeLibraryKind::NativeStatic) |
|
|
|
|
Some(NativeLibraryKind::NativeStaticNobundle) => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
native_library_kind: |tcx, id| {
|
|
|
|
tcx.native_libraries(id.krate)
|
|
|
|
.iter()
|
|
|
|
.filter(|lib| native_libs::relevant_lib(&tcx.sess, lib))
|
|
|
|
.find(|l| l.foreign_items.contains(&id.index))
|
|
|
|
.map(|l| l.kind)
|
|
|
|
},
|
|
|
|
native_libraries: |tcx, cnum| {
|
|
|
|
assert_eq!(cnum, LOCAL_CRATE);
|
|
|
|
Rc::new(native_libs::collect(tcx))
|
|
|
|
},
|
|
|
|
link_args: |tcx, cnum| {
|
|
|
|
assert_eq!(cnum, LOCAL_CRATE);
|
|
|
|
Rc::new(link_args::collect(tcx))
|
|
|
|
},
|
2017-08-31 10:07:39 -05:00
|
|
|
extern_mod_stmt_cnum: |tcx, id| {
|
2017-09-08 15:51:57 -05:00
|
|
|
let id = tcx.hir.as_local_node_id(id).unwrap();
|
2017-09-05 09:48:24 -05:00
|
|
|
tcx.cstore_untracked().extern_mod_stmt_cnum_untracked(id)
|
2017-08-31 10:07:39 -05:00
|
|
|
},
|
2017-08-31 13:30:22 -05:00
|
|
|
|
2017-09-07 10:13:41 -05:00
|
|
|
all_crate_nums: |tcx, cnum| {
|
|
|
|
assert_eq!(cnum, LOCAL_CRATE);
|
2017-09-05 09:48:24 -05:00
|
|
|
Rc::new(tcx.cstore_untracked().crates_untracked())
|
2017-09-07 10:13:41 -05:00
|
|
|
},
|
|
|
|
|
2017-08-31 13:30:22 -05:00
|
|
|
// Returns a map from a sufficiently visible external item (i.e. an
|
|
|
|
// external item that is visible from at least one local module) to a
|
|
|
|
// sufficiently visible parent (considering modules that re-export the
|
|
|
|
// external item to be parents).
|
|
|
|
visible_parent_map: |tcx, cnum| {
|
|
|
|
use std::collections::vec_deque::VecDeque;
|
|
|
|
use std::collections::hash_map::Entry;
|
|
|
|
|
|
|
|
assert_eq!(cnum, LOCAL_CRATE);
|
|
|
|
let mut visible_parent_map: DefIdMap<DefId> = DefIdMap();
|
|
|
|
|
2017-09-07 10:13:41 -05:00
|
|
|
for &cnum in tcx.crates().iter() {
|
2017-08-31 13:30:22 -05:00
|
|
|
// Ignore crates without a corresponding local `extern crate` item.
|
|
|
|
if tcx.missing_extern_crate_item(cnum) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
let bfs_queue = &mut VecDeque::new();
|
|
|
|
let visible_parent_map = &mut visible_parent_map;
|
|
|
|
let mut add_child = |bfs_queue: &mut VecDeque<_>,
|
|
|
|
child: &def::Export,
|
|
|
|
parent: DefId| {
|
|
|
|
let child = child.def.def_id();
|
|
|
|
|
|
|
|
if tcx.visibility(child) != ty::Visibility::Public {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
match visible_parent_map.entry(child) {
|
|
|
|
Entry::Occupied(mut entry) => {
|
|
|
|
// If `child` is defined in crate `cnum`, ensure
|
|
|
|
// that it is mapped to a parent in `cnum`.
|
|
|
|
if child.krate == cnum && entry.get().krate != cnum {
|
|
|
|
entry.insert(parent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Entry::Vacant(entry) => {
|
|
|
|
entry.insert(parent);
|
|
|
|
bfs_queue.push_back(child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
bfs_queue.push_back(DefId {
|
|
|
|
krate: cnum,
|
|
|
|
index: CRATE_DEF_INDEX
|
|
|
|
});
|
|
|
|
while let Some(def) = bfs_queue.pop_front() {
|
|
|
|
for child in tcx.item_children(def).iter() {
|
|
|
|
add_child(bfs_queue, child, def);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Rc::new(visible_parent_map)
|
|
|
|
},
|
|
|
|
|
2017-08-31 14:08:29 -05:00
|
|
|
postorder_cnums: |tcx, cnum| {
|
|
|
|
assert_eq!(cnum, LOCAL_CRATE);
|
2017-09-05 09:48:24 -05:00
|
|
|
Rc::new(tcx.cstore_untracked().postorder_cnums_untracked())
|
2017-08-31 14:08:29 -05:00
|
|
|
},
|
|
|
|
|
2017-06-11 23:16:26 -05:00
|
|
|
..*providers
|
|
|
|
};
|
2016-09-28 18:30:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CrateStore for cstore::CStore {
|
|
|
|
fn crate_data_as_rc_any(&self, krate: CrateNum) -> Rc<Any> {
|
|
|
|
self.get_crate_data(krate)
|
|
|
|
}
|
|
|
|
|
2017-04-26 16:22:45 -05:00
|
|
|
fn metadata_loader(&self) -> &MetadataLoader {
|
|
|
|
&*self.metadata_loader
|
|
|
|
}
|
|
|
|
|
2017-08-31 10:07:39 -05:00
|
|
|
fn visibility_untracked(&self, def: DefId) -> ty::Visibility {
|
2016-09-15 03:04:00 -05:00
|
|
|
self.get_crate_data(def.krate).get_visibility(def.index)
|
2016-03-05 16:22:44 -06:00
|
|
|
}
|
|
|
|
|
2017-08-31 13:39:32 -05:00
|
|
|
fn item_generics_cloned_untracked(&self, def: DefId) -> ty::Generics {
|
2017-01-25 14:01:11 -06:00
|
|
|
self.get_crate_data(def.krate).get_generics(def.index)
|
2017-01-25 09:32:44 -06:00
|
|
|
}
|
|
|
|
|
2017-08-31 13:39:32 -05:00
|
|
|
fn associated_item_cloned_untracked(&self, def: DefId) -> ty::AssociatedItem
|
2015-11-20 06:51:18 -06:00
|
|
|
{
|
2016-11-09 18:06:34 -06:00
|
|
|
self.get_crate_data(def.krate).get_associated_item(def.index)
|
2015-11-20 06:51:18 -06:00
|
|
|
}
|
|
|
|
|
2017-08-31 10:07:39 -05:00
|
|
|
fn dep_kind_untracked(&self, cnum: CrateNum) -> DepKind
|
2016-10-27 04:18:45 -05:00
|
|
|
{
|
2017-09-07 14:35:21 -05:00
|
|
|
self.get_crate_data(cnum).dep_kind.get()
|
2016-10-27 04:18:45 -05:00
|
|
|
}
|
|
|
|
|
2017-08-31 10:07:39 -05:00
|
|
|
fn export_macros_untracked(&self, cnum: CrateNum) {
|
2017-04-27 09:12:57 -05:00
|
|
|
let data = self.get_crate_data(cnum);
|
|
|
|
if data.dep_kind.get() == DepKind::UnexportedMacrosOnly {
|
|
|
|
data.dep_kind.set(DepKind::MacrosOnly)
|
2016-11-26 20:57:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-31 10:07:39 -05:00
|
|
|
fn crate_name_untracked(&self, cnum: CrateNum) -> Symbol
|
2015-11-20 17:08:09 -06:00
|
|
|
{
|
2016-11-16 04:52:37 -06:00
|
|
|
self.get_crate_data(cnum).name
|
2015-11-20 17:08:09 -06:00
|
|
|
}
|
|
|
|
|
2016-03-16 04:50:38 -05:00
|
|
|
/// Returns the `DefKey` for a given `DefId`. This indicates the
|
|
|
|
/// parent `DefId` as well as some idea of what kind of data the
|
|
|
|
/// `DefId` refers to.
|
2016-12-16 16:24:27 -06:00
|
|
|
fn def_key(&self, def: DefId) -> DefKey {
|
2016-09-02 07:26:36 -05:00
|
|
|
// Note: loading the def-key (or def-path) for a def-id is not
|
|
|
|
// a *read* of its metadata. This is because the def-id is
|
|
|
|
// really just an interned shorthand for a def-path, which is the
|
|
|
|
// canonical name for an item.
|
|
|
|
//
|
|
|
|
// self.dep_graph.read(DepNode::MetaData(def));
|
2016-09-15 03:04:00 -05:00
|
|
|
self.get_crate_data(def.krate).def_key(def.index)
|
2016-03-16 04:50:38 -05:00
|
|
|
}
|
|
|
|
|
2016-12-16 17:52:47 -06:00
|
|
|
fn def_path(&self, def: DefId) -> DefPath {
|
2016-09-02 07:26:36 -05:00
|
|
|
// See `Note` above in `def_key()` for why this read is
|
|
|
|
// commented out:
|
|
|
|
//
|
|
|
|
// self.dep_graph.read(DepNode::MetaData(def));
|
2016-09-15 03:04:00 -05:00
|
|
|
self.get_crate_data(def.krate).def_path(def.index)
|
2015-11-20 06:51:18 -06:00
|
|
|
}
|
|
|
|
|
2017-05-31 06:54:38 -05:00
|
|
|
fn def_path_hash(&self, def: DefId) -> DefPathHash {
|
2017-04-03 12:20:26 -05:00
|
|
|
self.get_crate_data(def.krate).def_path_hash(def.index)
|
|
|
|
}
|
|
|
|
|
2017-05-31 07:53:39 -05:00
|
|
|
fn def_path_table(&self, cnum: CrateNum) -> Rc<DefPathTable> {
|
|
|
|
self.get_crate_data(cnum).def_path_table.clone()
|
|
|
|
}
|
|
|
|
|
2017-08-31 10:07:39 -05:00
|
|
|
fn struct_field_names_untracked(&self, def: DefId) -> Vec<ast::Name>
|
2015-11-20 09:46:39 -06:00
|
|
|
{
|
2016-09-15 03:04:00 -05:00
|
|
|
self.get_crate_data(def.krate).get_struct_field_names(def.index)
|
2015-11-20 09:46:39 -06:00
|
|
|
}
|
|
|
|
|
2017-08-31 10:07:39 -05:00
|
|
|
fn item_children_untracked(&self, def_id: DefId, sess: &Session) -> Vec<def::Export>
|
2015-11-20 09:46:39 -06:00
|
|
|
{
|
|
|
|
let mut result = vec![];
|
2016-09-15 03:04:00 -05:00
|
|
|
self.get_crate_data(def_id.krate)
|
2017-06-07 09:17:11 -05:00
|
|
|
.each_child_of_item(def_id.index, |child| result.push(child), sess);
|
2015-11-20 09:46:39 -06:00
|
|
|
result
|
|
|
|
}
|
|
|
|
|
2017-08-31 10:07:39 -05:00
|
|
|
fn load_macro_untracked(&self, id: DefId, sess: &Session) -> LoadedMacro {
|
2016-11-05 15:30:40 -05:00
|
|
|
let data = self.get_crate_data(id.krate);
|
|
|
|
if let Some(ref proc_macros) = data.proc_macros {
|
2016-11-16 00:10:34 -06:00
|
|
|
return LoadedMacro::ProcMacro(proc_macros[id.index.as_usize() - 1].1.clone());
|
2017-03-17 18:41:09 -05:00
|
|
|
} else if data.name == "proc_macro" &&
|
|
|
|
self.get_crate_data(id.krate).item_name(id.index) == "quote" {
|
|
|
|
let ext = SyntaxExtension::ProcMacro(Box::new(::proc_macro::__internal::Quoter));
|
|
|
|
return LoadedMacro::ProcMacro(Rc::new(ext));
|
2016-11-05 15:30:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
let (name, def) = data.get_macro(id.index);
|
2016-10-28 01:52:45 -05:00
|
|
|
let source_name = format!("<{} macros>", name);
|
|
|
|
|
2017-04-24 12:01:19 -05:00
|
|
|
let filemap = sess.parse_sess.codemap().new_filemap(source_name, def.body);
|
2017-07-31 15:04:34 -05:00
|
|
|
let local_span = Span::new(filemap.start_pos, filemap.end_pos, NO_EXPANSION);
|
2017-03-28 00:32:43 -05:00
|
|
|
let body = filemap_to_stream(&sess.parse_sess, filemap, None);
|
2016-10-28 01:52:45 -05:00
|
|
|
|
|
|
|
// Mark the attrs as used
|
2017-09-07 14:35:21 -05:00
|
|
|
let attrs = data.get_item_attrs(id.index);
|
2017-04-20 07:08:41 -05:00
|
|
|
for attr in attrs.iter() {
|
2016-10-28 01:52:45 -05:00
|
|
|
attr::mark_used(attr);
|
|
|
|
}
|
|
|
|
|
2016-11-23 17:39:13 -06:00
|
|
|
let name = data.def_key(id.index).disambiguated_data.data
|
|
|
|
.get_opt_name().expect("no name in load_macro");
|
2016-10-28 01:52:45 -05:00
|
|
|
sess.imported_macro_spans.borrow_mut()
|
2016-11-23 17:39:13 -06:00
|
|
|
.insert(local_span, (name.to_string(), data.get_span(id.index, sess)));
|
2016-10-28 01:52:45 -05:00
|
|
|
|
2017-03-04 23:15:58 -06:00
|
|
|
LoadedMacro::MacroDef(ast::Item {
|
2017-09-01 11:24:02 -05:00
|
|
|
ident: ast::Ident::from_str(&name),
|
2016-10-28 01:52:45 -05:00
|
|
|
id: ast::DUMMY_NODE_ID,
|
|
|
|
span: local_span,
|
2017-04-20 07:08:41 -05:00
|
|
|
attrs: attrs.iter().cloned().collect(),
|
2017-03-17 16:58:48 -05:00
|
|
|
node: ast::ItemKind::MacroDef(ast::MacroDef {
|
|
|
|
tokens: body.into(),
|
2017-03-22 03:39:51 -05:00
|
|
|
legacy: def.legacy,
|
2017-03-17 16:58:48 -05:00
|
|
|
}),
|
2017-03-04 23:15:58 -06:00
|
|
|
vis: ast::Visibility::Inherited,
|
2017-07-10 19:44:46 -05:00
|
|
|
tokens: None,
|
2016-11-05 15:30:40 -05:00
|
|
|
})
|
2016-10-28 01:52:45 -05:00
|
|
|
}
|
|
|
|
|
2017-09-07 10:13:41 -05:00
|
|
|
fn crates_untracked(&self) -> Vec<CrateNum>
|
2015-11-21 13:39:05 -06:00
|
|
|
{
|
|
|
|
let mut result = vec![];
|
|
|
|
self.iter_crate_data(|cnum, _| result.push(cnum));
|
|
|
|
result
|
|
|
|
}
|
|
|
|
|
2017-08-31 10:07:39 -05:00
|
|
|
fn extern_mod_stmt_cnum_untracked(&self, emod_id: ast::NodeId) -> Option<CrateNum>
|
2015-11-21 13:39:05 -06:00
|
|
|
{
|
2015-11-25 09:02:59 -06:00
|
|
|
self.do_extern_mod_stmt_cnum(emod_id)
|
2015-11-21 13:39:05 -06:00
|
|
|
}
|
|
|
|
|
2017-08-31 14:08:29 -05:00
|
|
|
fn postorder_cnums_untracked(&self) -> Vec<CrateNum> {
|
|
|
|
self.do_postorder_cnums_untracked()
|
|
|
|
}
|
|
|
|
|
2017-03-23 13:18:25 -05:00
|
|
|
fn encode_metadata<'a, 'tcx>(&self,
|
|
|
|
tcx: TyCtxt<'a, 'tcx, 'tcx>,
|
2016-09-28 18:30:53 -05:00
|
|
|
link_meta: &LinkMeta,
|
2017-04-05 16:39:02 -05:00
|
|
|
reachable: &NodeSet)
|
2017-07-26 08:02:53 -05:00
|
|
|
-> (EncodedMetadata, EncodedMetadataHashes)
|
2016-09-01 08:55:33 -05:00
|
|
|
{
|
2017-04-27 09:12:57 -05:00
|
|
|
encoder::encode_metadata(tcx, link_meta, reachable)
|
2015-11-20 17:08:09 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn metadata_encoding_version(&self) -> &[u8]
|
|
|
|
{
|
2016-09-16 09:25:54 -05:00
|
|
|
schema::METADATA_HEADER
|
2015-11-20 17:08:09 -06:00
|
|
|
}
|
2017-05-18 12:56:25 -05:00
|
|
|
}
|