2019-02-08 07:53:55 -06:00
|
|
|
//! For each definition, we track the following data. A definition
|
|
|
|
//! here is defined somewhat circularly as "something with a `DefId`",
|
2016-12-14 10:27:39 -06:00
|
|
|
//! but it generally corresponds to things like structs, enums, etc.
|
|
|
|
//! There are also some rather random cases (like const initializer
|
|
|
|
//! expressions) that are mostly just leftovers.
|
|
|
|
|
2019-02-05 11:20:45 -06:00
|
|
|
use crate::hir;
|
2019-05-08 14:07:12 -05:00
|
|
|
use crate::hir::def_id::{CrateNum, DefId, DefIndex, LOCAL_CRATE, CRATE_DEF_INDEX};
|
2019-02-05 11:20:45 -06:00
|
|
|
use crate::ich::Fingerprint;
|
2019-09-05 21:57:44 -05:00
|
|
|
use crate::session::CrateDisambiguator;
|
|
|
|
use crate::util::nodemap::NodeMap;
|
|
|
|
|
2017-08-01 06:44:20 -05:00
|
|
|
use rustc_data_structures::fx::FxHashMap;
|
2019-09-26 00:38:33 -05:00
|
|
|
use rustc_index::vec::{IndexVec};
|
2016-12-13 17:45:03 -06:00
|
|
|
use rustc_data_structures::stable_hasher::StableHasher;
|
2018-07-03 04:16:38 -05:00
|
|
|
use std::borrow::Borrow;
|
2016-08-01 18:55:20 -05:00
|
|
|
use std::fmt::Write;
|
2017-04-03 12:20:26 -05:00
|
|
|
use std::hash::Hash;
|
2017-06-13 06:47:13 -05:00
|
|
|
use syntax::ast;
|
2019-07-15 17:04:05 -05:00
|
|
|
use syntax::ext::hygiene::ExpnId;
|
2019-05-17 03:47:49 -05:00
|
|
|
use syntax::symbol::{Symbol, sym, InternedString};
|
2018-02-17 06:22:58 -06:00
|
|
|
use syntax_pos::{Span, DUMMY_SP};
|
2015-09-17 13:29:59 -05:00
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
/// The `DefPathTable` maps `DefIndex`es to `DefKey`s and vice versa.
|
|
|
|
/// Internally the `DefPathTable` holds a tree of `DefKey`s, where each `DefKey`
|
|
|
|
/// stores the `DefIndex` of its parent.
|
|
|
|
/// There is one `DefPathTable` for each crate.
|
2019-05-25 04:40:06 -05:00
|
|
|
#[derive(Clone, Default, RustcDecodable, RustcEncodable)]
|
2016-12-14 10:27:39 -06:00
|
|
|
pub struct DefPathTable {
|
2019-05-08 14:07:12 -05:00
|
|
|
index_to_key: Vec<DefKey>,
|
|
|
|
def_path_hashes: Vec<DefPathHash>,
|
2017-03-16 12:17:18 -05:00
|
|
|
}
|
|
|
|
|
2016-12-14 10:27:39 -06:00
|
|
|
impl DefPathTable {
|
2017-03-16 12:17:18 -05:00
|
|
|
fn allocate(&mut self,
|
|
|
|
key: DefKey,
|
2019-05-08 14:07:12 -05:00
|
|
|
def_path_hash: DefPathHash)
|
2017-03-16 12:17:18 -05:00
|
|
|
-> DefIndex {
|
|
|
|
let index = {
|
2019-05-18 06:19:33 -05:00
|
|
|
let index = DefIndex::from(self.index_to_key.len());
|
2017-03-16 12:17:18 -05:00
|
|
|
debug!("DefPathTable::insert() - {:?} <-> {:?}", key, index);
|
2019-05-08 14:07:12 -05:00
|
|
|
self.index_to_key.push(key);
|
2017-03-16 12:17:18 -05:00
|
|
|
index
|
|
|
|
};
|
2019-05-08 14:07:12 -05:00
|
|
|
self.def_path_hashes.push(def_path_hash);
|
|
|
|
debug_assert!(self.def_path_hashes.len() == self.index_to_key.len());
|
2016-12-14 10:27:39 -06:00
|
|
|
index
|
|
|
|
}
|
|
|
|
|
2019-05-08 14:07:12 -05:00
|
|
|
pub fn next_id(&self) -> DefIndex {
|
2019-05-18 06:19:33 -05:00
|
|
|
DefIndex::from(self.index_to_key.len())
|
Generate documentation for auto-trait impls
A new section is added to both both struct and trait doc pages.
On struct/enum pages, a new 'Auto Trait Implementations' section displays any
synthetic implementations for auto traits. Currently, this is only done
for Send and Sync.
On trait pages, a new 'Auto Implementors' section displays all types
which automatically implement the trait. Effectively, this is a list of
all public types in the standard library.
Synthesized impls for a particular auto trait ('synthetic impls') take
into account generic bounds. For example, a type 'struct Foo<T>(T)' will
have 'impl<T> Send for Foo<T> where T: Send' generated for it.
Manual implementations of auto traits are also taken into account. If we have
the following types:
'struct Foo<T>(T)'
'struct Wrapper<T>(Foo<T>)'
'unsafe impl<T> Send for Wrapper<T>' // pretend that Wrapper<T> makes
this sound somehow
Then Wrapper will have the following impl generated:
'impl<T> Send for Wrapper<T>'
reflecting the fact that 'T: Send' need not hold for 'Wrapper<T>: Send'
to hold
Lifetimes, HRTBS, and projections (e.g. '<T as Iterator>::Item') are
taken into account by synthetic impls
However, if a type can *never* implement a particular auto trait
(e.g. 'struct MyStruct<T>(*const T)'), then a negative impl will be
generated (in this case, 'impl<T> !Send for MyStruct<T>')
All of this means that a user should be able to copy-paste a synthetic
impl into their code, without any observable changes in behavior
(assuming the rest of the program remains unchanged).
2017-11-22 15:16:55 -06:00
|
|
|
}
|
|
|
|
|
2016-12-14 10:27:39 -06:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn def_key(&self, index: DefIndex) -> DefKey {
|
2019-05-18 06:19:33 -05:00
|
|
|
self.index_to_key[index.index()].clone()
|
2016-12-14 10:27:39 -06:00
|
|
|
}
|
|
|
|
|
2017-04-03 12:20:26 -05:00
|
|
|
#[inline(always)]
|
2017-05-31 06:54:38 -05:00
|
|
|
pub fn def_path_hash(&self, index: DefIndex) -> DefPathHash {
|
2019-05-18 06:19:33 -05:00
|
|
|
let ret = self.def_path_hashes[index.index()];
|
2017-09-01 11:24:02 -05:00
|
|
|
debug!("def_path_hash({:?}) = {:?}", index, ret);
|
|
|
|
return ret
|
2017-04-03 12:20:26 -05:00
|
|
|
}
|
|
|
|
|
2017-05-31 07:53:39 -05:00
|
|
|
pub fn add_def_path_hashes_to(&self,
|
|
|
|
cnum: CrateNum,
|
|
|
|
out: &mut FxHashMap<DefPathHash, DefId>) {
|
2019-05-08 14:07:12 -05:00
|
|
|
out.extend(
|
|
|
|
self.def_path_hashes
|
|
|
|
.iter()
|
|
|
|
.enumerate()
|
|
|
|
.map(|(index, &hash)| {
|
|
|
|
let def_id = DefId {
|
|
|
|
krate: cnum,
|
2019-05-18 06:19:33 -05:00
|
|
|
index: DefIndex::from(index),
|
2019-05-08 14:07:12 -05:00
|
|
|
};
|
|
|
|
(hash, def_id)
|
|
|
|
})
|
|
|
|
);
|
2017-05-31 07:53:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn size(&self) -> usize {
|
2019-05-08 14:07:12 -05:00
|
|
|
self.index_to_key.len()
|
2017-05-31 07:53:39 -05:00
|
|
|
}
|
2016-12-14 10:27:39 -06:00
|
|
|
}
|
|
|
|
|
2016-12-16 18:12:37 -06:00
|
|
|
/// The definition table containing node definitions.
|
2018-11-26 20:59:49 -06:00
|
|
|
/// It holds the `DefPathTable` for local `DefId`s/`DefPath`s and it also stores a
|
|
|
|
/// mapping from `NodeId`s to local `DefId`s.
|
2018-07-25 07:44:06 -05:00
|
|
|
#[derive(Clone, Default)]
|
2015-09-17 13:29:59 -05:00
|
|
|
pub struct Definitions {
|
2016-12-14 10:27:39 -06:00
|
|
|
table: DefPathTable,
|
2016-12-13 16:48:52 -06:00
|
|
|
node_to_def_index: NodeMap<DefIndex>,
|
2019-05-08 14:07:12 -05:00
|
|
|
def_index_to_node: Vec<ast::NodeId>,
|
2017-03-14 09:50:40 -05:00
|
|
|
pub(super) node_to_hir_id: IndexVec<ast::NodeId, hir::HirId>,
|
2019-07-15 17:04:05 -05:00
|
|
|
/// If `ExpnId` is an ID of some macro expansion,
|
2018-06-23 11:27:28 -05:00
|
|
|
/// then `DefId` is the normal module (`mod`) in which the expanded macro was defined.
|
2019-07-15 17:04:05 -05:00
|
|
|
parent_modules_of_macro_defs: FxHashMap<ExpnId, DefId>,
|
|
|
|
/// Item with a given `DefIndex` was defined during macro expansion with ID `ExpnId`.
|
|
|
|
expansions_that_defined: FxHashMap<DefIndex, ExpnId>,
|
2017-08-01 06:44:20 -05:00
|
|
|
next_disambiguator: FxHashMap<(DefIndex, DefPathData), u32>,
|
2018-02-17 06:22:58 -06:00
|
|
|
def_index_to_span: FxHashMap<DefIndex, Span>,
|
2019-07-15 17:04:05 -05:00
|
|
|
/// When collecting definitions from an AST fragment produced by a macro invocation `ExpnId`
|
2019-07-02 05:47:28 -05:00
|
|
|
/// we know what parent node that fragment should be attached to thanks to this table.
|
2019-07-15 17:04:05 -05:00
|
|
|
invocation_parents: FxHashMap<ExpnId, DefIndex>,
|
2019-09-14 05:56:44 -05:00
|
|
|
/// Indices of unnamed struct or variant fields with unresolved attributes.
|
|
|
|
pub(super) placeholder_field_indices: NodeMap<usize>,
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A unique identifier that we can use to lookup a definition
|
|
|
|
/// precisely. It combines the index of the definition's parent (if
|
|
|
|
/// any) with a `DisambiguatedDefPathData`.
|
2018-03-20 17:58:25 -05:00
|
|
|
#[derive(Clone, PartialEq, Debug, Hash, RustcEncodable, RustcDecodable)]
|
2015-09-17 13:29:59 -05:00
|
|
|
pub struct DefKey {
|
2019-02-08 07:53:55 -06:00
|
|
|
/// The parent path.
|
2015-09-17 13:29:59 -05:00
|
|
|
pub parent: Option<DefIndex>,
|
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// The identifier of this node.
|
2015-09-17 13:29:59 -05:00
|
|
|
pub disambiguated_data: DisambiguatedDefPathData,
|
|
|
|
}
|
|
|
|
|
2017-04-03 12:20:26 -05:00
|
|
|
impl DefKey {
|
2017-05-31 06:54:38 -05:00
|
|
|
fn compute_stable_hash(&self, parent_hash: DefPathHash) -> DefPathHash {
|
2017-04-03 12:20:26 -05:00
|
|
|
let mut hasher = StableHasher::new();
|
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
// We hash a `0u8` here to disambiguate between regular `DefPath` hashes,
|
2017-04-03 12:20:26 -05:00
|
|
|
// and the special "root_parent" below.
|
|
|
|
0u8.hash(&mut hasher);
|
|
|
|
parent_hash.hash(&mut hasher);
|
2017-06-13 06:47:13 -05:00
|
|
|
|
|
|
|
let DisambiguatedDefPathData {
|
|
|
|
ref data,
|
|
|
|
disambiguator,
|
|
|
|
} = self.disambiguated_data;
|
|
|
|
|
|
|
|
::std::mem::discriminant(data).hash(&mut hasher);
|
2018-05-22 07:31:56 -05:00
|
|
|
if let Some(name) = data.get_opt_name() {
|
|
|
|
name.hash(&mut hasher);
|
|
|
|
}
|
2017-06-13 06:47:13 -05:00
|
|
|
|
|
|
|
disambiguator.hash(&mut hasher);
|
|
|
|
|
2017-05-31 06:54:38 -05:00
|
|
|
DefPathHash(hasher.finish())
|
2017-04-03 12:20:26 -05:00
|
|
|
}
|
|
|
|
|
2017-10-24 10:49:58 -05:00
|
|
|
fn root_parent_stable_hash(crate_name: &str,
|
|
|
|
crate_disambiguator: CrateDisambiguator)
|
|
|
|
-> DefPathHash {
|
2017-04-03 12:20:26 -05:00
|
|
|
let mut hasher = StableHasher::new();
|
2019-09-05 21:57:44 -05:00
|
|
|
// Disambiguate this from a regular `DefPath` hash; see `compute_stable_hash()` above.
|
2017-04-03 12:20:26 -05:00
|
|
|
1u8.hash(&mut hasher);
|
|
|
|
crate_name.hash(&mut hasher);
|
|
|
|
crate_disambiguator.hash(&mut hasher);
|
2017-05-31 06:54:38 -05:00
|
|
|
DefPathHash(hasher.finish())
|
2017-04-03 12:20:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// A pair of `DefPathData` and an integer disambiguator. The integer is
|
2019-09-05 21:57:44 -05:00
|
|
|
/// normally `0`, but in the event that there are multiple defs with the
|
2015-09-17 13:29:59 -05:00
|
|
|
/// same `parent` and `data`, we use this field to disambiguate
|
|
|
|
/// between them. This introduces some artificial ordering dependency
|
2019-09-05 21:57:44 -05:00
|
|
|
/// but means that if you have, e.g., two impls for the same type in
|
2019-02-08 07:53:55 -06:00
|
|
|
/// the same module, they do get distinct `DefId`s.
|
2018-03-20 17:58:25 -05:00
|
|
|
#[derive(Clone, PartialEq, Debug, Hash, RustcEncodable, RustcDecodable)]
|
2015-09-17 13:29:59 -05:00
|
|
|
pub struct DisambiguatedDefPathData {
|
|
|
|
pub data: DefPathData,
|
|
|
|
pub disambiguator: u32
|
|
|
|
}
|
|
|
|
|
2018-03-20 17:58:25 -05:00
|
|
|
#[derive(Clone, Debug, Hash, RustcEncodable, RustcDecodable)]
|
2016-03-16 04:40:14 -05:00
|
|
|
pub struct DefPath {
|
2019-02-08 07:53:55 -06:00
|
|
|
/// The path leading from the crate root to the item.
|
2016-03-16 04:40:14 -05:00
|
|
|
pub data: Vec<DisambiguatedDefPathData>,
|
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// The crate root this path is relative to.
|
2016-08-31 06:00:29 -05:00
|
|
|
pub krate: CrateNum,
|
2016-03-16 04:40:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DefPath {
|
|
|
|
pub fn is_local(&self) -> bool {
|
|
|
|
self.krate == LOCAL_CRATE
|
|
|
|
}
|
|
|
|
|
2016-12-16 11:48:54 -06:00
|
|
|
pub fn make<FN>(krate: CrateNum,
|
2016-03-16 04:40:14 -05:00
|
|
|
start_index: DefIndex,
|
|
|
|
mut get_key: FN) -> DefPath
|
|
|
|
where FN: FnMut(DefIndex) -> DefKey
|
|
|
|
{
|
|
|
|
let mut data = vec![];
|
|
|
|
let mut index = Some(start_index);
|
|
|
|
loop {
|
2016-05-06 13:52:57 -05:00
|
|
|
debug!("DefPath::make: krate={:?} index={:?}", krate, index);
|
2016-03-16 04:40:14 -05:00
|
|
|
let p = index.unwrap();
|
|
|
|
let key = get_key(p);
|
2016-05-06 13:52:57 -05:00
|
|
|
debug!("DefPath::make: key={:?}", key);
|
2016-03-16 04:40:14 -05:00
|
|
|
match key.disambiguated_data.data {
|
|
|
|
DefPathData::CrateRoot => {
|
|
|
|
assert!(key.parent.is_none());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
data.push(key.disambiguated_data);
|
|
|
|
index = key.parent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
data.reverse();
|
|
|
|
DefPath { data: data, krate: krate }
|
|
|
|
}
|
2016-08-01 18:55:20 -05:00
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// Returns a string representation of the `DefPath` without
|
2017-03-14 09:50:40 -05:00
|
|
|
/// the crate-prefix. This method is useful if you don't have
|
2019-02-08 07:53:55 -06:00
|
|
|
/// a `TyCtxt` available.
|
2017-03-14 09:50:40 -05:00
|
|
|
pub fn to_string_no_crate(&self) -> String {
|
|
|
|
let mut s = String::with_capacity(self.data.len() * 16);
|
|
|
|
|
|
|
|
for component in &self.data {
|
|
|
|
write!(s,
|
|
|
|
"::{}[{}]",
|
|
|
|
component.data.as_interned_str(),
|
|
|
|
component.disambiguator)
|
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
s
|
|
|
|
}
|
2017-11-04 06:27:08 -05:00
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// Returns a filename-friendly string for the `DefPath`, with the
|
2018-09-18 19:09:36 -05:00
|
|
|
/// crate-prefix.
|
|
|
|
pub fn to_string_friendly<F>(&self, crate_imported_name: F) -> String
|
|
|
|
where F: FnOnce(CrateNum) -> Symbol
|
|
|
|
{
|
|
|
|
let crate_name_str = crate_imported_name(self.krate).as_str();
|
|
|
|
let mut s = String::with_capacity(crate_name_str.len() + self.data.len() * 16);
|
|
|
|
|
|
|
|
write!(s, "::{}", crate_name_str).unwrap();
|
|
|
|
|
|
|
|
for component in &self.data {
|
|
|
|
if component.disambiguator == 0 {
|
|
|
|
write!(s, "::{}", component.data.as_interned_str()).unwrap();
|
|
|
|
} else {
|
|
|
|
write!(s,
|
|
|
|
"{}[{}]",
|
|
|
|
component.data.as_interned_str(),
|
|
|
|
component.disambiguator)
|
2019-02-28 16:43:53 -06:00
|
|
|
.unwrap();
|
2018-09-18 19:09:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
s
|
|
|
|
}
|
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// Returns a filename-friendly string of the `DefPath`, without
|
2017-11-04 06:27:08 -05:00
|
|
|
/// the crate-prefix. This method is useful if you don't have
|
2019-02-08 07:53:55 -06:00
|
|
|
/// a `TyCtxt` available.
|
2017-11-04 06:27:08 -05:00
|
|
|
pub fn to_filename_friendly_no_crate(&self) -> String {
|
|
|
|
let mut s = String::with_capacity(self.data.len() * 16);
|
|
|
|
|
2017-11-05 02:14:00 -06:00
|
|
|
let mut opt_delimiter = None;
|
2017-11-04 06:27:08 -05:00
|
|
|
for component in &self.data {
|
2017-11-05 02:14:00 -06:00
|
|
|
opt_delimiter.map(|d| s.push(d));
|
|
|
|
opt_delimiter = Some('-');
|
2017-11-04 06:27:08 -05:00
|
|
|
if component.disambiguator == 0 {
|
2017-11-05 02:14:00 -06:00
|
|
|
write!(s, "{}", component.data.as_interned_str()).unwrap();
|
2017-11-04 06:27:08 -05:00
|
|
|
} else {
|
|
|
|
write!(s,
|
2017-11-05 02:14:00 -06:00
|
|
|
"{}[{}]",
|
2017-11-04 06:27:08 -05:00
|
|
|
component.data.as_interned_str(),
|
|
|
|
component.disambiguator)
|
2019-02-28 16:43:53 -06:00
|
|
|
.unwrap();
|
2017-11-04 06:27:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
s
|
|
|
|
}
|
2016-03-16 04:40:14 -05:00
|
|
|
}
|
|
|
|
|
2018-03-20 17:58:25 -05:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, Hash, RustcEncodable, RustcDecodable)]
|
2015-09-17 13:29:59 -05:00
|
|
|
pub enum DefPathData {
|
|
|
|
// Root: these should only be used for the root nodes, because
|
|
|
|
// they are treated specially by the `def_path` function.
|
2019-09-05 21:57:44 -05:00
|
|
|
|
|
|
|
/// The crate root (marker).
|
2015-09-17 13:29:59 -05:00
|
|
|
CrateRoot,
|
2019-09-05 21:57:44 -05:00
|
|
|
// Catch-all for random `DefId` things like `DUMMY_NODE_ID`.
|
2015-09-17 13:29:59 -05:00
|
|
|
Misc,
|
2019-09-05 21:57:44 -05:00
|
|
|
|
2015-09-17 13:29:59 -05:00
|
|
|
// Different kinds of items and item-like things:
|
2019-09-05 21:57:44 -05:00
|
|
|
|
|
|
|
/// An impl.
|
2016-03-16 04:47:18 -05:00
|
|
|
Impl,
|
2019-09-05 21:57:44 -05:00
|
|
|
/// Something in the type namespace.
|
2017-09-01 11:24:02 -05:00
|
|
|
TypeNs(InternedString),
|
2019-09-05 21:57:44 -05:00
|
|
|
/// Something in the value namespace.
|
2017-09-01 11:24:02 -05:00
|
|
|
ValueNs(InternedString),
|
2019-09-05 21:57:44 -05:00
|
|
|
/// Something in the macro namespace.
|
2019-05-03 14:45:36 -05:00
|
|
|
MacroNs(InternedString),
|
2019-09-05 21:57:44 -05:00
|
|
|
/// Something in the lifetime namespace.
|
2019-05-03 14:45:36 -05:00
|
|
|
LifetimeNs(InternedString),
|
2019-09-05 21:57:44 -05:00
|
|
|
/// A closure expression.
|
2015-09-17 13:29:59 -05:00
|
|
|
ClosureExpr,
|
2019-09-05 21:57:44 -05:00
|
|
|
|
|
|
|
// Subportions of items:
|
|
|
|
|
|
|
|
/// Implicit constructor for a unit or tuple-like struct or enum variant.
|
2019-03-24 09:49:58 -05:00
|
|
|
Ctor,
|
2019-09-05 21:57:44 -05:00
|
|
|
/// A constant expression (see `{ast,hir}::AnonConst`).
|
2018-05-17 13:28:50 -05:00
|
|
|
AnonConst,
|
2019-09-05 21:57:44 -05:00
|
|
|
/// An `impl Trait` type node.
|
2018-06-20 03:59:24 -05:00
|
|
|
ImplTrait,
|
2019-05-04 10:09:28 -05:00
|
|
|
/// Identifies a piece of crate metadata that is global to a whole crate
|
|
|
|
/// (as opposed to just one item). `GlobalMetaData` components are only
|
|
|
|
/// supposed to show up right below the crate root.
|
2019-01-08 09:55:18 -06:00
|
|
|
GlobalMetaData(InternedString),
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
2017-05-31 06:54:38 -05:00
|
|
|
#[derive(Copy, Clone, Hash, PartialEq, Eq, PartialOrd, Ord, Debug,
|
|
|
|
RustcEncodable, RustcDecodable)]
|
|
|
|
pub struct DefPathHash(pub Fingerprint);
|
|
|
|
|
|
|
|
impl_stable_hash_for!(tuple_struct DefPathHash { fingerprint });
|
|
|
|
|
2018-07-03 04:16:38 -05:00
|
|
|
impl Borrow<Fingerprint> for DefPathHash {
|
|
|
|
#[inline]
|
|
|
|
fn borrow(&self) -> &Fingerprint {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-17 13:29:59 -05:00
|
|
|
impl Definitions {
|
2016-12-16 11:51:36 -06:00
|
|
|
pub fn def_path_table(&self) -> &DefPathTable {
|
|
|
|
&self.table
|
|
|
|
}
|
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// Gets the number of definitions.
|
2019-05-08 14:07:12 -05:00
|
|
|
pub fn def_index_count(&self) -> usize {
|
|
|
|
self.table.index_to_key.len()
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn def_key(&self, index: DefIndex) -> DefKey {
|
2016-12-14 10:27:39 -06:00
|
|
|
self.table.def_key(index)
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
2017-04-03 12:20:26 -05:00
|
|
|
#[inline(always)]
|
2017-05-31 06:54:38 -05:00
|
|
|
pub fn def_path_hash(&self, index: DefIndex) -> DefPathHash {
|
2017-04-03 12:20:26 -05:00
|
|
|
self.table.def_path_hash(index)
|
|
|
|
}
|
|
|
|
|
2015-09-17 13:29:59 -05:00
|
|
|
/// Returns the path from the crate root to `index`. The root
|
|
|
|
/// nodes are not included in the path (i.e., this will be an
|
|
|
|
/// empty vector for the crate root). For an inlined item, this
|
|
|
|
/// will be the path of the item in the external crate (but the
|
|
|
|
/// path will begin with the path to the external crate).
|
|
|
|
pub fn def_path(&self, index: DefIndex) -> DefPath {
|
2016-03-16 04:40:14 -05:00
|
|
|
DefPath::make(LOCAL_CRATE, index, |p| self.def_key(p))
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
2017-08-08 07:33:51 -05:00
|
|
|
#[inline]
|
2015-09-17 13:29:59 -05:00
|
|
|
pub fn opt_def_index(&self, node: ast::NodeId) -> Option<DefIndex> {
|
2016-12-13 16:48:52 -06:00
|
|
|
self.node_to_def_index.get(&node).cloned()
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
2017-08-08 07:33:51 -05:00
|
|
|
#[inline]
|
2015-09-17 13:29:59 -05:00
|
|
|
pub fn opt_local_def_id(&self, node: ast::NodeId) -> Option<DefId> {
|
|
|
|
self.opt_def_index(node).map(DefId::local)
|
|
|
|
}
|
|
|
|
|
2017-08-08 07:33:51 -05:00
|
|
|
#[inline]
|
2016-04-23 22:26:10 -05:00
|
|
|
pub fn local_def_id(&self, node: ast::NodeId) -> DefId {
|
|
|
|
self.opt_local_def_id(node).unwrap()
|
|
|
|
}
|
|
|
|
|
2017-08-08 07:33:51 -05:00
|
|
|
#[inline]
|
2015-09-17 13:29:59 -05:00
|
|
|
pub fn as_local_node_id(&self, def_id: DefId) -> Option<ast::NodeId> {
|
|
|
|
if def_id.krate == LOCAL_CRATE {
|
2019-05-18 06:19:33 -05:00
|
|
|
let node_id = self.def_index_to_node[def_id.index.index()];
|
2017-06-07 03:45:20 -05:00
|
|
|
if node_id != ast::DUMMY_NODE_ID {
|
2019-05-08 14:07:12 -05:00
|
|
|
return Some(node_id);
|
2017-06-07 03:45:20 -05:00
|
|
|
}
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
2019-05-08 14:07:12 -05:00
|
|
|
None
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
2019-02-03 02:14:31 -06:00
|
|
|
#[inline]
|
|
|
|
pub fn as_local_hir_id(&self, def_id: DefId) -> Option<hir::HirId> {
|
|
|
|
if def_id.krate == LOCAL_CRATE {
|
|
|
|
let hir_id = self.def_index_to_hir_id(def_id.index);
|
|
|
|
if hir_id != hir::DUMMY_HIR_ID {
|
|
|
|
Some(hir_id)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-08 07:33:51 -05:00
|
|
|
#[inline]
|
2017-03-30 08:27:27 -05:00
|
|
|
pub fn node_to_hir_id(&self, node_id: ast::NodeId) -> hir::HirId {
|
|
|
|
self.node_to_hir_id[node_id]
|
|
|
|
}
|
|
|
|
|
2017-08-08 07:33:51 -05:00
|
|
|
#[inline]
|
|
|
|
pub fn def_index_to_hir_id(&self, def_index: DefIndex) -> hir::HirId {
|
2019-05-18 06:19:33 -05:00
|
|
|
let node_id = self.def_index_to_node[def_index.index()];
|
2017-08-08 07:33:51 -05:00
|
|
|
self.node_to_hir_id[node_id]
|
|
|
|
}
|
|
|
|
|
2019-02-08 07:53:55 -06:00
|
|
|
/// Retrieves the span of the given `DefId` if `DefId` is in the local crate, the span exists
|
|
|
|
/// and it's not `DUMMY_SP`.
|
2018-02-17 06:22:58 -06:00
|
|
|
#[inline]
|
|
|
|
pub fn opt_span(&self, def_id: DefId) -> Option<Span> {
|
|
|
|
if def_id.krate == LOCAL_CRATE {
|
2018-06-24 17:00:21 -05:00
|
|
|
self.def_index_to_span.get(&def_id.index).cloned()
|
2018-02-17 06:22:58 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-08 14:07:12 -05:00
|
|
|
/// Adds a root definition (no parent) and a few other reserved definitions.
|
2017-04-03 12:20:26 -05:00
|
|
|
pub fn create_root_def(&mut self,
|
|
|
|
crate_name: &str,
|
2017-10-24 10:49:58 -05:00
|
|
|
crate_disambiguator: CrateDisambiguator)
|
2017-04-03 12:20:26 -05:00
|
|
|
-> DefIndex {
|
|
|
|
let key = DefKey {
|
|
|
|
parent: None,
|
|
|
|
disambiguated_data: DisambiguatedDefPathData {
|
|
|
|
data: DefPathData::CrateRoot,
|
|
|
|
disambiguator: 0
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let parent_hash = DefKey::root_parent_stable_hash(crate_name,
|
|
|
|
crate_disambiguator);
|
|
|
|
let def_path_hash = key.compute_stable_hash(parent_hash);
|
|
|
|
|
|
|
|
// Create the definition.
|
2019-05-08 14:07:12 -05:00
|
|
|
let root_index = self.table.allocate(key, def_path_hash);
|
2017-06-07 03:45:20 -05:00
|
|
|
assert_eq!(root_index, CRATE_DEF_INDEX);
|
2019-05-08 14:07:12 -05:00
|
|
|
assert!(self.def_index_to_node.is_empty());
|
|
|
|
self.def_index_to_node.push(ast::CRATE_NODE_ID);
|
2017-06-07 03:45:20 -05:00
|
|
|
self.node_to_def_index.insert(ast::CRATE_NODE_ID, root_index);
|
2019-07-15 17:04:05 -05:00
|
|
|
self.set_invocation_parent(ExpnId::root(), root_index);
|
2017-04-03 12:20:26 -05:00
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
// Allocate some other `DefIndex`es that always must exist.
|
2017-06-07 03:45:20 -05:00
|
|
|
GlobalMetaDataKind::allocate_def_indices(self);
|
|
|
|
|
|
|
|
root_index
|
2017-04-03 12:20:26 -05:00
|
|
|
}
|
|
|
|
|
2019-02-28 16:43:53 -06:00
|
|
|
/// Adds a definition with a parent definition.
|
2015-09-17 13:29:59 -05:00
|
|
|
pub fn create_def_with_parent(&mut self,
|
2017-04-03 12:20:26 -05:00
|
|
|
parent: DefIndex,
|
2015-09-17 13:29:59 -05:00
|
|
|
node_id: ast::NodeId,
|
2017-03-16 12:17:18 -05:00
|
|
|
data: DefPathData,
|
2019-07-15 17:42:58 -05:00
|
|
|
expn_id: ExpnId,
|
2018-02-17 06:22:58 -06:00
|
|
|
span: Span)
|
2015-09-17 13:29:59 -05:00
|
|
|
-> DefIndex {
|
2016-03-28 16:39:57 -05:00
|
|
|
debug!("create_def_with_parent(parent={:?}, node_id={:?}, data={:?})",
|
|
|
|
parent, node_id, data);
|
|
|
|
|
2016-12-13 16:48:52 -06:00
|
|
|
assert!(!self.node_to_def_index.contains_key(&node_id),
|
2015-09-17 13:29:59 -05:00
|
|
|
"adding a def'n for node-id {:?} and data {:?} but a previous def'n exists: {:?}",
|
|
|
|
node_id,
|
|
|
|
data,
|
2016-12-14 10:27:39 -06:00
|
|
|
self.table.def_key(self.node_to_def_index[&node_id]));
|
2015-09-17 13:29:59 -05:00
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
// The root node must be created with `create_root_def()`.
|
2017-04-03 12:20:26 -05:00
|
|
|
assert!(data != DefPathData::CrateRoot);
|
2016-03-28 16:39:57 -05:00
|
|
|
|
2017-08-01 06:44:20 -05:00
|
|
|
// Find the next free disambiguator for this key.
|
|
|
|
let disambiguator = {
|
|
|
|
let next_disamb = self.next_disambiguator.entry((parent, data.clone())).or_insert(0);
|
|
|
|
let disambiguator = *next_disamb;
|
|
|
|
*next_disamb = next_disamb.checked_add(1).expect("disambiguator overflow");
|
|
|
|
disambiguator
|
|
|
|
};
|
|
|
|
|
|
|
|
let key = DefKey {
|
2017-04-03 12:20:26 -05:00
|
|
|
parent: Some(parent),
|
2015-09-17 13:29:59 -05:00
|
|
|
disambiguated_data: DisambiguatedDefPathData {
|
2017-08-01 06:44:20 -05:00
|
|
|
data, disambiguator
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-04-03 12:20:26 -05:00
|
|
|
let parent_hash = self.table.def_path_hash(parent);
|
|
|
|
let def_path_hash = key.compute_stable_hash(parent_hash);
|
|
|
|
|
2016-03-28 16:39:57 -05:00
|
|
|
debug!("create_def_with_parent: after disambiguation, key = {:?}", key);
|
|
|
|
|
2015-09-17 13:29:59 -05:00
|
|
|
// Create the definition.
|
2019-05-08 14:07:12 -05:00
|
|
|
let index = self.table.allocate(key, def_path_hash);
|
2019-05-18 06:19:33 -05:00
|
|
|
assert_eq!(index.index(), self.def_index_to_node.len());
|
2019-05-08 14:07:12 -05:00
|
|
|
self.def_index_to_node.push(node_id);
|
2017-06-07 03:45:20 -05:00
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
// Some things for which we allocate `DefIndex`es don't correspond to
|
|
|
|
// anything in the AST, so they don't have a `NodeId`. For these cases
|
|
|
|
// we don't need a mapping from `NodeId` to `DefIndex`.
|
2017-06-07 03:45:20 -05:00
|
|
|
if node_id != ast::DUMMY_NODE_ID {
|
|
|
|
debug!("create_def_with_parent: def_index_to_node[{:?} <-> {:?}", index, node_id);
|
|
|
|
self.node_to_def_index.insert(node_id, index);
|
|
|
|
}
|
|
|
|
|
2019-07-15 17:42:58 -05:00
|
|
|
if expn_id != ExpnId::root() {
|
|
|
|
self.expansions_that_defined.insert(index, expn_id);
|
2017-03-25 21:11:30 -05:00
|
|
|
}
|
2017-03-16 12:17:18 -05:00
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
// The span is added if it isn't dummy.
|
2018-06-24 17:00:21 -05:00
|
|
|
if !span.is_dummy() {
|
2018-02-17 06:22:58 -06:00
|
|
|
self.def_index_to_span.insert(index, span);
|
|
|
|
}
|
|
|
|
|
2015-09-17 13:29:59 -05:00
|
|
|
index
|
|
|
|
}
|
2017-03-14 09:50:40 -05:00
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
/// Initializes the `ast::NodeId` to `HirId` mapping once it has been generated during
|
2017-03-14 09:50:40 -05:00
|
|
|
/// AST to HIR lowering.
|
|
|
|
pub fn init_node_id_to_hir_id_mapping(&mut self,
|
|
|
|
mapping: IndexVec<ast::NodeId, hir::HirId>) {
|
|
|
|
assert!(self.node_to_hir_id.is_empty(),
|
2019-09-05 21:57:44 -05:00
|
|
|
"trying to initialize `NodeId` -> `HirId` mapping twice");
|
2017-03-14 09:50:40 -05:00
|
|
|
self.node_to_hir_id = mapping;
|
|
|
|
}
|
2017-03-24 18:03:15 -05:00
|
|
|
|
2019-07-15 17:04:05 -05:00
|
|
|
pub fn expansion_that_defined(&self, index: DefIndex) -> ExpnId {
|
|
|
|
self.expansions_that_defined.get(&index).cloned().unwrap_or(ExpnId::root())
|
2017-03-24 18:03:15 -05:00
|
|
|
}
|
|
|
|
|
2019-07-15 17:42:58 -05:00
|
|
|
pub fn parent_module_of_macro_def(&self, expn_id: ExpnId) -> DefId {
|
|
|
|
self.parent_modules_of_macro_defs[&expn_id]
|
2017-03-24 18:03:15 -05:00
|
|
|
}
|
|
|
|
|
2019-07-15 17:42:58 -05:00
|
|
|
pub fn add_parent_module_of_macro_def(&mut self, expn_id: ExpnId, module: DefId) {
|
|
|
|
self.parent_modules_of_macro_defs.insert(expn_id, module);
|
2017-03-24 18:03:15 -05:00
|
|
|
}
|
2019-07-02 05:47:28 -05:00
|
|
|
|
2019-07-15 17:04:05 -05:00
|
|
|
pub fn invocation_parent(&self, invoc_id: ExpnId) -> DefIndex {
|
2019-07-02 05:47:28 -05:00
|
|
|
self.invocation_parents[&invoc_id]
|
|
|
|
}
|
|
|
|
|
2019-07-15 17:04:05 -05:00
|
|
|
pub fn set_invocation_parent(&mut self, invoc_id: ExpnId, parent: DefIndex) {
|
2019-07-02 05:47:28 -05:00
|
|
|
let old_parent = self.invocation_parents.insert(invoc_id, parent);
|
2019-09-05 21:57:44 -05:00
|
|
|
assert!(old_parent.is_none(), "parent `DefIndex` is reset for an invocation");
|
2019-07-02 05:47:28 -05:00
|
|
|
}
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DefPathData {
|
2017-09-01 11:24:02 -05:00
|
|
|
pub fn get_opt_name(&self) -> Option<InternedString> {
|
2016-09-17 05:34:55 -05:00
|
|
|
use self::DefPathData::*;
|
|
|
|
match *self {
|
2017-06-13 06:47:13 -05:00
|
|
|
TypeNs(name) |
|
|
|
|
ValueNs(name) |
|
2019-05-03 14:45:36 -05:00
|
|
|
MacroNs(name) |
|
|
|
|
LifetimeNs(name) |
|
2017-06-13 06:47:13 -05:00
|
|
|
GlobalMetaData(name) => Some(name),
|
2016-09-17 05:34:55 -05:00
|
|
|
|
|
|
|
Impl |
|
|
|
|
CrateRoot |
|
|
|
|
Misc |
|
|
|
|
ClosureExpr |
|
2019-03-24 09:49:58 -05:00
|
|
|
Ctor |
|
2018-05-17 13:28:50 -05:00
|
|
|
AnonConst |
|
2018-06-20 03:59:24 -05:00
|
|
|
ImplTrait => None
|
2016-09-17 05:34:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-17 13:29:59 -05:00
|
|
|
pub fn as_interned_str(&self) -> InternedString {
|
|
|
|
use self::DefPathData::*;
|
2016-11-17 08:04:20 -06:00
|
|
|
let s = match *self {
|
2017-06-13 06:47:13 -05:00
|
|
|
TypeNs(name) |
|
|
|
|
ValueNs(name) |
|
2019-05-03 14:45:36 -05:00
|
|
|
MacroNs(name) |
|
|
|
|
LifetimeNs(name) |
|
2017-06-13 06:47:13 -05:00
|
|
|
GlobalMetaData(name) => {
|
2017-09-01 11:24:02 -05:00
|
|
|
return name
|
2016-03-16 04:47:18 -05:00
|
|
|
}
|
2019-02-28 16:43:53 -06:00
|
|
|
// Note that this does not show up in user print-outs.
|
2019-05-17 03:47:49 -05:00
|
|
|
CrateRoot => sym::double_braced_crate,
|
|
|
|
Impl => sym::double_braced_impl,
|
|
|
|
Misc => sym::double_braced_misc,
|
|
|
|
ClosureExpr => sym::double_braced_closure,
|
|
|
|
Ctor => sym::double_braced_constructor,
|
|
|
|
AnonConst => sym::double_braced_constant,
|
|
|
|
ImplTrait => sym::double_braced_opaque,
|
2016-11-17 08:04:20 -06:00
|
|
|
};
|
2016-07-22 10:56:22 -05:00
|
|
|
|
2019-05-17 03:47:49 -05:00
|
|
|
s.as_interned_str()
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_string(&self) -> String {
|
|
|
|
self.as_interned_str().to_string()
|
|
|
|
}
|
|
|
|
}
|
2017-03-26 19:46:00 -05:00
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
// We define the `GlobalMetaDataKind` enum with this macro because we want to
|
2017-06-07 03:45:20 -05:00
|
|
|
// make sure that we exhaustively iterate over all variants when registering
|
2019-09-05 21:57:44 -05:00
|
|
|
// the corresponding `DefIndex`es in the `DefTable`.
|
2017-06-07 03:45:20 -05:00
|
|
|
macro_rules! define_global_metadata_kind {
|
|
|
|
(pub enum GlobalMetaDataKind {
|
|
|
|
$($variant:ident),*
|
|
|
|
}) => (
|
2018-03-20 17:58:25 -05:00
|
|
|
#[derive(Clone, Copy, Debug, Hash, RustcEncodable, RustcDecodable)]
|
2017-06-07 03:45:20 -05:00
|
|
|
pub enum GlobalMetaDataKind {
|
|
|
|
$($variant),*
|
|
|
|
}
|
|
|
|
|
|
|
|
impl GlobalMetaDataKind {
|
|
|
|
fn allocate_def_indices(definitions: &mut Definitions) {
|
|
|
|
$({
|
|
|
|
let instance = GlobalMetaDataKind::$variant;
|
|
|
|
definitions.create_def_with_parent(
|
|
|
|
CRATE_DEF_INDEX,
|
|
|
|
ast::DUMMY_NODE_ID,
|
2018-04-11 16:02:41 -05:00
|
|
|
DefPathData::GlobalMetaData(instance.name().as_interned_str()),
|
2019-07-15 17:04:05 -05:00
|
|
|
ExpnId::root(),
|
2018-02-17 06:22:58 -06:00
|
|
|
DUMMY_SP
|
2017-06-07 03:45:20 -05:00
|
|
|
);
|
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
// Make sure calling `def_index` does not crash.
|
2017-06-07 03:45:20 -05:00
|
|
|
instance.def_index(&definitions.table);
|
|
|
|
})*
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn def_index(&self, def_path_table: &DefPathTable) -> DefIndex {
|
|
|
|
let def_key = DefKey {
|
|
|
|
parent: Some(CRATE_DEF_INDEX),
|
|
|
|
disambiguated_data: DisambiguatedDefPathData {
|
2018-04-11 16:02:41 -05:00
|
|
|
data: DefPathData::GlobalMetaData(self.name().as_interned_str()),
|
2017-06-07 03:45:20 -05:00
|
|
|
disambiguator: 0,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-09-05 21:57:44 -05:00
|
|
|
// These `DefKey`s are all right after the root,
|
2017-07-20 08:32:06 -05:00
|
|
|
// so a linear search is fine.
|
2019-05-08 14:07:12 -05:00
|
|
|
let index = def_path_table.index_to_key
|
2017-07-20 08:32:06 -05:00
|
|
|
.iter()
|
|
|
|
.position(|k| *k == def_key)
|
|
|
|
.unwrap();
|
|
|
|
|
2019-05-18 06:19:33 -05:00
|
|
|
DefIndex::from(index)
|
2017-06-07 03:45:20 -05:00
|
|
|
}
|
|
|
|
|
2017-06-13 06:47:13 -05:00
|
|
|
fn name(&self) -> Symbol {
|
2017-06-07 03:45:20 -05:00
|
|
|
|
|
|
|
let string = match *self {
|
|
|
|
$(
|
|
|
|
GlobalMetaDataKind::$variant => {
|
|
|
|
concat!("{{GlobalMetaData::", stringify!($variant), "}}")
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
};
|
|
|
|
|
2017-06-13 06:47:13 -05:00
|
|
|
Symbol::intern(string)
|
2017-06-07 03:45:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
define_global_metadata_kind!(pub enum GlobalMetaDataKind {
|
|
|
|
Krate,
|
|
|
|
CrateDeps,
|
|
|
|
DylibDependencyFormats,
|
|
|
|
LangItems,
|
|
|
|
LangItemsMissing,
|
|
|
|
NativeLibraries,
|
2018-08-18 05:13:35 -05:00
|
|
|
SourceMap,
|
2017-06-07 03:45:20 -05:00
|
|
|
Impls,
|
|
|
|
ExportedSymbols
|
|
|
|
});
|