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.
|
|
|
|
|
2018-07-31 18:23:29 -05:00
|
|
|
use cstore::{self, LoadedMacro};
|
2015-11-24 16:00:26 -06:00
|
|
|
use encoder;
|
2017-08-30 16:48:57 -05:00
|
|
|
use link_args;
|
|
|
|
use native_libs;
|
2018-02-10 16:28:17 -06:00
|
|
|
use foreign_modules;
|
2016-09-16 09:25:54 -05:00
|
|
|
use schema;
|
2015-11-24 16:00:26 -06:00
|
|
|
|
2018-06-13 08:44:43 -05:00
|
|
|
use rustc::ty::query::QueryConfig;
|
2017-08-31 14:08:29 -05:00
|
|
|
use rustc::middle::cstore::{CrateStore, DepKind,
|
2018-07-31 18:23:29 -05:00
|
|
|
EncodedMetadata, NativeLibraryKind};
|
2018-02-27 12:28:21 -06:00
|
|
|
use rustc::middle::exported_symbols::ExportedSymbol;
|
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;
|
2017-10-24 10:49:58 -05:00
|
|
|
use rustc::session::{CrateDisambiguator, Session};
|
2016-09-28 18:30:53 -05:00
|
|
|
use rustc::ty::{self, TyCtxt};
|
2018-06-13 08:44:43 -05:00
|
|
|
use rustc::ty::query::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-09-07 14:35:21 -05:00
|
|
|
use rustc::hir::map::definitions::DefPathTable;
|
2018-02-23 09:25:03 -06:00
|
|
|
use rustc::util::nodemap::DefIdMap;
|
2018-08-03 13:22:22 -05:00
|
|
|
use rustc_data_structures::svh::Svh;
|
2015-11-24 16:00:26 -06:00
|
|
|
|
2016-09-28 18:30:53 -05:00
|
|
|
use std::any::Any;
|
2018-02-27 10:11:14 -06:00
|
|
|
use rustc_data_structures::sync::Lrc;
|
2018-02-27 12:28:21 -06:00
|
|
|
use std::sync::Arc;
|
2016-09-28 18:30:53 -05:00
|
|
|
|
2015-11-20 06:51:18 -06:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::attr;
|
2018-08-18 05:14:03 -05:00
|
|
|
use syntax::source_map;
|
2018-05-12 19:50:39 -05:00
|
|
|
use syntax::edition::Edition;
|
2018-08-18 05:13:56 -05:00
|
|
|
use syntax::parse::source_file_to_stream;
|
2016-11-16 04:52:37 -06:00
|
|
|
use syntax::symbol::Symbol;
|
2017-12-14 01:09:19 -06:00
|
|
|
use syntax_pos::{Span, NO_EXPANSION, FileName};
|
Merge indexed_set.rs into bitvec.rs, and rename it bit_set.rs.
Currently we have two files implementing bitsets (and 2D bit matrices).
This commit combines them into one, taking the best features from each.
This involves renaming a lot of things. The high level changes are as
follows.
- bitvec.rs --> bit_set.rs
- indexed_set.rs --> (removed)
- BitArray + IdxSet --> BitSet (merged, see below)
- BitVector --> GrowableBitSet
- {,Sparse,Hybrid}IdxSet --> {,Sparse,Hybrid}BitSet
- BitMatrix --> BitMatrix
- SparseBitMatrix --> SparseBitMatrix
The changes within the bitset types themselves are as follows.
```
OLD OLD NEW
BitArray<C> IdxSet<T> BitSet<T>
-------- ------ ------
grow - grow
new - (remove)
new_empty new_empty new_empty
new_filled new_filled new_filled
- to_hybrid to_hybrid
clear clear clear
set_up_to set_up_to set_up_to
clear_above - clear_above
count - count
contains(T) contains(&T) contains(T)
contains_all - superset
is_empty - is_empty
insert(T) add(&T) insert(T)
insert_all - insert_all()
remove(T) remove(&T) remove(T)
words words words
words_mut words_mut words_mut
- overwrite overwrite
merge union union
- subtract subtract
- intersect intersect
iter iter iter
```
In general, when choosing names I went with:
- names that are more obvious (e.g. `BitSet` over `IdxSet`).
- names that are more like the Rust libraries (e.g. `T` over `C`,
`insert` over `add`);
- names that are more set-like (e.g. `union` over `merge`, `superset`
over `contains_all`, `domain_size` over `num_bits`).
Also, using `T` for index arguments seems more sensible than `&T` --
even though the latter is standard in Rust collection types -- because
indices are always copyable. It also results in fewer `&` and `*`
sigils in practice.
2018-09-14 00:07:25 -05:00
|
|
|
use rustc_data_structures::bit_set::BitSet;
|
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)*) => {
|
2017-11-12 10:00:18 -06:00
|
|
|
pub fn provide_extern<$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
|
2018-04-17 21:35:40 -05:00
|
|
|
QueryConfig<$lt>>::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-09-22 06:03:15 -05:00
|
|
|
let def_path_hash = $tcx.def_path_hash(DefId {
|
|
|
|
krate: $def_id.krate,
|
|
|
|
index: CRATE_DEF_INDEX
|
|
|
|
});
|
|
|
|
let dep_node = def_path_hash
|
|
|
|
.to_dep_node(::rustc::dep_graph::DepKind::CrateMetadata);
|
|
|
|
// The DepNodeIndex of the DepNode::CrateMetadata should be
|
|
|
|
// cached somewhere, so that we can use read_index().
|
2017-06-02 10:36:30 -05:00
|
|
|
$tcx.dep_graph.read(dep_node);
|
2016-09-28 18:30:53 -05:00
|
|
|
|
2017-09-07 15:21:46 -05:00
|
|
|
let $cdata = $tcx.crate_data_as_rc_any($def_id.krate);
|
2016-09-28 18:30:53 -05:00
|
|
|
let $cdata = $cdata.downcast_ref::<cstore::CrateMetadata>()
|
2018-10-22 11:21:55 -05:00
|
|
|
.expect("CrateStore created data is not a CrateMetadata");
|
2016-09-28 18:30:53 -05:00
|
|
|
$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) }
|
2017-11-07 08:14:32 -06:00
|
|
|
generics_of => {
|
|
|
|
tcx.alloc_generics(cdata.get_generics(def_id.index, tcx.sess))
|
|
|
|
}
|
2017-04-24 07:20:46 -05:00
|
|
|
predicates_of => { cdata.get_predicates(def_id.index, tcx) }
|
2018-07-02 09:35:30 -05:00
|
|
|
predicates_defined_on => { cdata.get_predicates_defined_on(def_id.index, tcx) }
|
2017-04-24 07:20:46 -05:00
|
|
|
super_predicates_of => { cdata.get_super_predicates(def_id.index, tcx) }
|
2016-09-28 18:30:53 -05:00
|
|
|
trait_def => {
|
2017-11-07 08:14:32 -06:00
|
|
|
tcx.alloc_trait_def(cdata.get_trait_def(def_id.index, tcx.sess))
|
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(()))
|
|
|
|
}
|
2018-02-27 10:11:14 -06:00
|
|
|
variances_of => { Lrc::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);
|
2018-02-27 10:11:14 -06:00
|
|
|
Lrc::new(result)
|
2016-09-28 18:30:53 -05:00
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|
2017-09-01 14:04:09 -05:00
|
|
|
mir_const_qualif => {
|
Merge indexed_set.rs into bitvec.rs, and rename it bit_set.rs.
Currently we have two files implementing bitsets (and 2D bit matrices).
This commit combines them into one, taking the best features from each.
This involves renaming a lot of things. The high level changes are as
follows.
- bitvec.rs --> bit_set.rs
- indexed_set.rs --> (removed)
- BitArray + IdxSet --> BitSet (merged, see below)
- BitVector --> GrowableBitSet
- {,Sparse,Hybrid}IdxSet --> {,Sparse,Hybrid}BitSet
- BitMatrix --> BitMatrix
- SparseBitMatrix --> SparseBitMatrix
The changes within the bitset types themselves are as follows.
```
OLD OLD NEW
BitArray<C> IdxSet<T> BitSet<T>
-------- ------ ------
grow - grow
new - (remove)
new_empty new_empty new_empty
new_filled new_filled new_filled
- to_hybrid to_hybrid
clear clear clear
set_up_to set_up_to set_up_to
clear_above - clear_above
count - count
contains(T) contains(&T) contains(T)
contains_all - superset
is_empty - is_empty
insert(T) add(&T) insert(T)
insert_all - insert_all()
remove(T) remove(&T) remove(T)
words words words
words_mut words_mut words_mut
- overwrite overwrite
merge union union
- subtract subtract
- intersect intersect
iter iter iter
```
In general, when choosing names I went with:
- names that are more obvious (e.g. `BitSet` over `IdxSet`).
- names that are more like the Rust libraries (e.g. `T` over `C`,
`insert` over `add`);
- names that are more set-like (e.g. `union` over `merge`, `superset`
over `contains_all`, `domain_size` over `num_bits`).
Also, using `T` for index arguments seems more sensible than `&T` --
even though the latter is standard in Rust collection types -- because
indices are always copyable. It also results in fewer `&` and `*`
sigils in practice.
2018-09-14 00:07:25 -05:00
|
|
|
(cdata.mir_const_qualif(def_id.index), Lrc::new(BitSet::new_empty(0)))
|
2017-09-01 14:04:09 -05:00
|
|
|
}
|
2017-05-13 05:12:29 -05:00
|
|
|
fn_sig => { cdata.fn_sig(def_id.index, tcx) }
|
2018-02-27 10:11:14 -06:00
|
|
|
inherent_impls => { Lrc::new(cdata.get_inherent_implementations_for_type(def_id.index)) }
|
2018-08-31 06:50:14 -05:00
|
|
|
is_const_fn_raw => { cdata.is_const_fn_raw(def_id.index) }
|
2017-04-14 09:51:22 -05:00
|
|
|
is_foreign_item => { cdata.is_foreign_item(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-11-07 08:14:32 -06:00
|
|
|
item_attrs => { cdata.get_item_attrs(def_id.index, tcx.sess) }
|
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) }
|
2018-04-15 18:41:33 -05:00
|
|
|
rendered_const => { cdata.get_rendered_const(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-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
|
|
|
|
2018-02-27 10:11:14 -06:00
|
|
|
dylib_dependency_formats => { Lrc::new(cdata.get_dylib_dependency_formats()) }
|
2018-05-12 18:36:53 -05:00
|
|
|
is_panic_runtime => { cdata.root.panic_runtime }
|
|
|
|
is_compiler_builtins => { cdata.root.compiler_builtins }
|
|
|
|
has_global_allocator => { cdata.root.has_global_allocator }
|
2018-09-06 14:24:33 -05:00
|
|
|
has_panic_handler => { cdata.root.has_panic_handler }
|
2018-05-12 18:36:53 -05:00
|
|
|
is_sanitizer_runtime => { cdata.root.sanitizer_runtime }
|
|
|
|
is_profiler_runtime => { cdata.root.profiler_runtime }
|
|
|
|
panic_strategy => { cdata.root.panic_strategy }
|
2018-02-15 03:52:26 -06:00
|
|
|
extern_crate => {
|
|
|
|
let r = Lrc::new(*cdata.extern_crate.lock());
|
|
|
|
r
|
|
|
|
}
|
2018-05-12 18:36:53 -05:00
|
|
|
is_no_builtins => { cdata.root.no_builtins }
|
2017-08-28 18:50:25 -05:00
|
|
|
impl_defaultness => { cdata.get_impl_defaultness(def_id.index) }
|
2018-02-27 12:28:21 -06:00
|
|
|
reachable_non_generics => {
|
|
|
|
let reachable_non_generics = tcx
|
|
|
|
.exported_symbols(cdata.cnum)
|
|
|
|
.iter()
|
2018-03-06 03:33:42 -06:00
|
|
|
.filter_map(|&(exported_symbol, export_level)| {
|
2018-02-27 12:28:21 -06:00
|
|
|
if let ExportedSymbol::NonGeneric(def_id) = exported_symbol {
|
2018-03-06 03:33:42 -06:00
|
|
|
return Some((def_id, export_level))
|
2018-02-27 12:28:21 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
Lrc::new(reachable_non_generics)
|
|
|
|
}
|
2018-02-27 10:11:14 -06:00
|
|
|
native_libraries => { Lrc::new(cdata.get_native_libraries(tcx.sess)) }
|
2018-02-10 16:28:17 -06:00
|
|
|
foreign_modules => { Lrc::new(cdata.get_foreign_modules(tcx.sess)) }
|
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 }
|
|
|
|
})
|
|
|
|
}
|
2018-05-12 18:36:53 -05:00
|
|
|
crate_disambiguator => { cdata.root.disambiguator }
|
|
|
|
crate_hash => { cdata.root.hash }
|
|
|
|
original_crate_name => { cdata.root.name }
|
2017-08-30 13:40:02 -05:00
|
|
|
|
2018-03-13 13:58:53 -05:00
|
|
|
extra_filename => { cdata.root.extra_filename.clone() }
|
|
|
|
|
|
|
|
|
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);
|
2018-02-27 10:11:14 -06:00
|
|
|
Lrc::new(result)
|
2017-08-30 13:40:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
all_trait_implementations => {
|
|
|
|
let mut result = vec![];
|
2017-09-07 14:35:21 -05:00
|
|
|
cdata.get_implementations_for_trait(None, &mut result);
|
2018-02-27 10:11:14 -06:00
|
|
|
Lrc::new(result)
|
2017-08-30 13:40:02 -05:00
|
|
|
}
|
2017-08-30 16:48:57 -05:00
|
|
|
|
2017-08-31 10:07:39 -05:00
|
|
|
visibility => { cdata.get_visibility(def_id.index) }
|
2018-02-15 03:52:26 -06:00
|
|
|
dep_kind => {
|
|
|
|
let r = *cdata.dep_kind.lock();
|
|
|
|
r
|
|
|
|
}
|
2017-08-31 10:07:39 -05:00
|
|
|
crate_name => { cdata.name }
|
|
|
|
item_children => {
|
|
|
|
let mut result = vec![];
|
|
|
|
cdata.each_child_of_item(def_id.index, |child| result.push(child), tcx.sess);
|
2018-02-27 10:11:14 -06:00
|
|
|
Lrc::new(result)
|
2017-08-31 10:07:39 -05:00
|
|
|
}
|
2018-07-22 19:20:33 -05:00
|
|
|
defined_lib_features => { Lrc::new(cdata.get_lib_features()) }
|
2018-02-27 10:11:14 -06:00
|
|
|
defined_lang_items => { Lrc::new(cdata.get_lang_items()) }
|
|
|
|
missing_lang_items => { Lrc::new(cdata.get_missing_lang_items()) }
|
2017-08-31 13:12:05 -05:00
|
|
|
|
2017-08-31 13:30:22 -05:00
|
|
|
missing_extern_crate_item => {
|
2018-02-15 03:52:26 -06:00
|
|
|
let r = match *cdata.extern_crate.borrow() {
|
2017-08-31 13:30:22 -05:00
|
|
|
Some(extern_crate) if !extern_crate.direct => true,
|
|
|
|
_ => false,
|
2018-02-15 03:52:26 -06:00
|
|
|
};
|
|
|
|
r
|
2017-08-31 13:30:22 -05:00
|
|
|
}
|
2017-08-31 14:08:29 -05:00
|
|
|
|
2018-02-27 10:11:14 -06:00
|
|
|
used_crate_source => { Lrc::new(cdata.source.clone()) }
|
2017-09-20 13:42:49 -05:00
|
|
|
|
2018-02-27 12:28:21 -06:00
|
|
|
exported_symbols => {
|
|
|
|
let cnum = cdata.cnum;
|
|
|
|
assert!(cnum != LOCAL_CRATE);
|
|
|
|
|
2018-03-01 09:50:08 -06:00
|
|
|
Arc::new(cdata.exported_symbols(tcx))
|
2018-02-27 12:28:21 -06:00
|
|
|
}
|
2016-09-28 18:30:53 -05:00
|
|
|
}
|
|
|
|
|
2017-11-12 10:00:18 -06:00
|
|
|
pub fn provide<'tcx>(providers: &mut Providers<'tcx>) {
|
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 {
|
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))
|
2018-02-10 16:28:17 -06:00
|
|
|
.find(|lib| {
|
|
|
|
let fm_id = match lib.foreign_module {
|
|
|
|
Some(id) => id,
|
|
|
|
None => return false,
|
|
|
|
};
|
|
|
|
tcx.foreign_modules(id.krate)
|
|
|
|
.iter()
|
|
|
|
.find(|m| m.def_id == fm_id)
|
|
|
|
.expect("failed to find foreign module")
|
|
|
|
.foreign_items
|
|
|
|
.contains(&id)
|
|
|
|
})
|
2017-08-30 16:48:57 -05:00
|
|
|
.map(|l| l.kind)
|
|
|
|
},
|
|
|
|
native_libraries: |tcx, cnum| {
|
|
|
|
assert_eq!(cnum, LOCAL_CRATE);
|
2018-02-27 10:11:14 -06:00
|
|
|
Lrc::new(native_libs::collect(tcx))
|
2017-08-30 16:48:57 -05:00
|
|
|
},
|
2018-02-10 16:28:17 -06:00
|
|
|
foreign_modules: |tcx, cnum| {
|
|
|
|
assert_eq!(cnum, LOCAL_CRATE);
|
|
|
|
Lrc::new(foreign_modules::collect(tcx))
|
|
|
|
},
|
2017-08-30 16:48:57 -05:00
|
|
|
link_args: |tcx, cnum| {
|
|
|
|
assert_eq!(cnum, LOCAL_CRATE);
|
2018-02-27 10:11:14 -06:00
|
|
|
Lrc::new(link_args::collect(tcx))
|
2017-08-30 16:48:57 -05:00
|
|
|
},
|
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-12-12 19:05:12 -06:00
|
|
|
// Issue 46112: We want the map to prefer the shortest
|
|
|
|
// paths when reporting the path to an item. Therefore we
|
|
|
|
// build up the map via a breadth-first search (BFS),
|
|
|
|
// which naturally yields minimal-length paths.
|
|
|
|
//
|
|
|
|
// Note that it needs to be a BFS over the whole forest of
|
|
|
|
// crates, not just each individual crate; otherwise you
|
|
|
|
// only get paths that are locally minimal with respect to
|
|
|
|
// whatever crate we happened to encounter first in this
|
|
|
|
// traversal, but not globally minimal across all crates.
|
|
|
|
let bfs_queue = &mut VecDeque::new();
|
2017-12-19 08:04:02 -06:00
|
|
|
|
|
|
|
// Preferring shortest paths alone does not guarantee a
|
|
|
|
// deterministic result; so sort by crate num to avoid
|
|
|
|
// hashtable iteration non-determinism. This only makes
|
|
|
|
// things as deterministic as crate-nums assignment is,
|
|
|
|
// which is to say, its not deterministic in general. But
|
|
|
|
// we believe that libstd is consistently assigned crate
|
|
|
|
// num 1, so it should be enough to resolve #46112.
|
|
|
|
let mut crates: Vec<CrateNum> = (*tcx.crates()).clone();
|
|
|
|
crates.sort();
|
|
|
|
|
|
|
|
for &cnum in 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
|
|
|
|
}
|
|
|
|
|
2017-12-12 19:05:12 -06:00
|
|
|
bfs_queue.push_back(DefId {
|
|
|
|
krate: cnum,
|
|
|
|
index: CRATE_DEF_INDEX
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// (restrict scope of mutable-borrow of `visible_parent_map`)
|
|
|
|
{
|
2017-08-31 13:30:22 -05:00
|
|
|
let visible_parent_map = &mut visible_parent_map;
|
|
|
|
let mut add_child = |bfs_queue: &mut VecDeque<_>,
|
|
|
|
child: &def::Export,
|
|
|
|
parent: DefId| {
|
2017-11-29 13:20:49 -06:00
|
|
|
if child.vis != ty::Visibility::Public {
|
2017-08-31 13:30:22 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-29 13:20:49 -06:00
|
|
|
let child = child.def.def_id();
|
|
|
|
|
2017-08-31 13:30:22 -05:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
while let Some(def) = bfs_queue.pop_front() {
|
|
|
|
for child in tcx.item_children(def).iter() {
|
|
|
|
add_child(bfs_queue, child, def);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-27 10:11:14 -06:00
|
|
|
Lrc::new(visible_parent_map)
|
2017-08-31 13:30:22 -05:00
|
|
|
},
|
|
|
|
|
2017-06-11 23:16:26 -05:00
|
|
|
..*providers
|
|
|
|
};
|
2016-09-28 18:30:53 -05:00
|
|
|
}
|
|
|
|
|
2018-07-31 18:23:29 -05:00
|
|
|
impl cstore::CStore {
|
|
|
|
pub fn export_macros_untracked(&self, cnum: CrateNum) {
|
2017-04-27 09:12:57 -05:00
|
|
|
let data = self.get_crate_data(cnum);
|
2018-02-15 03:52:26 -06:00
|
|
|
let mut dep_kind = data.dep_kind.lock();
|
|
|
|
if *dep_kind == DepKind::UnexportedMacrosOnly {
|
|
|
|
*dep_kind = DepKind::MacrosOnly;
|
2016-11-26 20:57:15 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-31 18:23:29 -05:00
|
|
|
pub fn dep_kind_untracked(&self, cnum: CrateNum) -> DepKind {
|
|
|
|
let data = self.get_crate_data(cnum);
|
|
|
|
let r = *data.dep_kind.lock();
|
|
|
|
r
|
2017-09-22 06:03:15 -05:00
|
|
|
}
|
|
|
|
|
2018-07-31 18:23:29 -05:00
|
|
|
pub fn crate_edition_untracked(&self, cnum: CrateNum) -> Edition {
|
2018-05-12 18:36:53 -05:00
|
|
|
self.get_crate_data(cnum).root.edition
|
2018-05-12 19:50:39 -05:00
|
|
|
}
|
|
|
|
|
2018-07-31 18:23:29 -05:00
|
|
|
pub fn struct_field_names_untracked(&self, def: DefId) -> Vec<ast::Name> {
|
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
|
|
|
}
|
|
|
|
|
2018-07-31 18:23:29 -05:00
|
|
|
pub 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
|
|
|
|
}
|
|
|
|
|
2018-07-31 18:23:29 -05:00
|
|
|
pub 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 {
|
2018-01-02 05:36:12 -06:00
|
|
|
return LoadedMacro::ProcMacro(proc_macros[id.index.to_proc_macro_index()].1.clone());
|
2018-09-18 19:09:36 -05:00
|
|
|
} else if data.name == "proc_macro" && data.item_name(id.index) == "quote" {
|
2018-04-21 19:05:02 -05:00
|
|
|
use syntax::ext::base::SyntaxExtension;
|
|
|
|
use syntax_ext::proc_macro_impl::BangProcMacro;
|
|
|
|
|
2018-06-24 11:24:51 -05:00
|
|
|
let ext = SyntaxExtension::ProcMacro {
|
2018-04-21 19:05:02 -05:00
|
|
|
expander: Box::new(BangProcMacro { inner: ::proc_macro::quote }),
|
2018-06-24 11:24:51 -05:00
|
|
|
allow_internal_unstable: true,
|
|
|
|
edition: data.root.edition,
|
|
|
|
};
|
2018-02-27 10:11:14 -06:00
|
|
|
return LoadedMacro::ProcMacro(Lrc::new(ext));
|
2016-11-05 15:30:40 -05:00
|
|
|
}
|
|
|
|
|
2018-09-18 19:09:36 -05:00
|
|
|
let def = data.get_macro(id.index);
|
|
|
|
let macro_full_name = data.def_path(id.index).to_string_friendly(|_| data.imported_name);
|
|
|
|
let source_name = FileName::Macros(macro_full_name);
|
2016-10-28 01:52:45 -05:00
|
|
|
|
2018-08-18 05:14:09 -05:00
|
|
|
let source_file = sess.parse_sess.source_map().new_source_file(source_name, def.body);
|
2018-08-18 05:13:56 -05:00
|
|
|
let local_span = Span::new(source_file.start_pos, source_file.end_pos, NO_EXPANSION);
|
|
|
|
let body = source_file_to_stream(&sess.parse_sess, source_file, None);
|
2016-10-28 01:52:45 -05:00
|
|
|
|
|
|
|
// Mark the attrs as used
|
2017-11-07 08:14:32 -06:00
|
|
|
let attrs = data.get_item_attrs(id.index, sess);
|
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 {
|
2018-04-11 16:02:41 -05:00
|
|
|
ident: ast::Ident::from_str(&name.as_str()),
|
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
|
|
|
}),
|
2018-08-18 05:14:03 -05:00
|
|
|
vis: source_map::respan(local_span.shrink_to_lo(), ast::VisibilityKind::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
|
|
|
}
|
|
|
|
|
2018-07-31 18:23:29 -05:00
|
|
|
pub fn associated_item_cloned_untracked(&self, def: DefId) -> ty::AssociatedItem {
|
|
|
|
self.get_crate_data(def.krate).get_associated_item(def.index)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CrateStore for cstore::CStore {
|
|
|
|
fn crate_data_as_rc_any(&self, krate: CrateNum) -> Lrc<dyn Any> {
|
|
|
|
self.get_crate_data(krate)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn item_generics_cloned_untracked(&self, def: DefId, sess: &Session) -> ty::Generics {
|
|
|
|
self.get_crate_data(def.krate).get_generics(def.index, sess)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn crate_name_untracked(&self, cnum: CrateNum) -> Symbol
|
|
|
|
{
|
|
|
|
self.get_crate_data(cnum).name
|
|
|
|
}
|
|
|
|
|
|
|
|
fn crate_disambiguator_untracked(&self, cnum: CrateNum) -> CrateDisambiguator
|
|
|
|
{
|
|
|
|
self.get_crate_data(cnum).root.disambiguator
|
|
|
|
}
|
|
|
|
|
2018-08-03 13:22:22 -05:00
|
|
|
fn crate_hash_untracked(&self, cnum: CrateNum) -> Svh
|
2018-07-31 18:23:29 -05:00
|
|
|
{
|
|
|
|
self.get_crate_data(cnum).root.hash
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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.
|
|
|
|
fn def_key(&self, def: DefId) -> DefKey {
|
|
|
|
// 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));
|
|
|
|
self.get_crate_data(def.krate).def_key(def.index)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn def_path(&self, def: DefId) -> DefPath {
|
|
|
|
// See `Note` above in `def_key()` for why this read is
|
|
|
|
// commented out:
|
|
|
|
//
|
|
|
|
// self.dep_graph.read(DepNode::MetaData(def));
|
|
|
|
self.get_crate_data(def.krate).def_path(def.index)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn def_path_hash(&self, def: DefId) -> DefPathHash {
|
|
|
|
self.get_crate_data(def.krate).def_path_hash(def.index)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn def_path_table(&self, cnum: CrateNum) -> Lrc<DefPathTable> {
|
|
|
|
self.get_crate_data(cnum).def_path_table.clone()
|
|
|
|
}
|
|
|
|
|
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,
|
2018-08-18 05:08:06 -05:00
|
|
|
tcx: TyCtxt<'a, 'tcx, 'tcx>)
|
2017-11-29 09:28:25 -06:00
|
|
|
-> EncodedMetadata
|
2016-09-01 08:55:33 -05:00
|
|
|
{
|
2018-08-18 05:08:06 -05:00
|
|
|
encoder::encode_metadata(tcx)
|
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
|
|
|
}
|