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.
|
|
|
|
|
2020-03-20 22:39:48 -05:00
|
|
|
pub use crate::def_id::DefPathHash;
|
|
|
|
use crate::def_id::{CrateNum, DefId, DefIndex, LocalDefId, CRATE_DEF_INDEX, LOCAL_CRATE};
|
|
|
|
use crate::hir;
|
|
|
|
|
2020-03-20 22:30:30 -05:00
|
|
|
use rustc_ast::crate_disambiguator::CrateDisambiguator;
|
2017-08-01 06:44:20 -05:00
|
|
|
use rustc_data_structures::fx::FxHashMap;
|
2016-12-13 17:45:03 -06:00
|
|
|
use rustc_data_structures::stable_hasher::StableHasher;
|
2019-12-22 16:42:04 -06:00
|
|
|
use rustc_index::vec::IndexVec;
|
2019-12-31 11:15:40 -06:00
|
|
|
use rustc_span::hygiene::ExpnId;
|
|
|
|
use rustc_span::symbol::{sym, Symbol};
|
2020-01-07 07:38:27 -06:00
|
|
|
|
2020-03-20 22:39:48 -05:00
|
|
|
use log::debug;
|
2016-08-01 18:55:20 -05:00
|
|
|
use std::fmt::Write;
|
2017-04-03 12:20:26 -05:00
|
|
|
use std::hash::Hash;
|
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-10-25 12:30:11 -05:00
|
|
|
index_to_key: IndexVec<DefIndex, DefKey>,
|
|
|
|
def_path_hashes: IndexVec<DefIndex, DefPathHash>,
|
2017-03-16 12:17:18 -05:00
|
|
|
}
|
|
|
|
|
2016-12-14 10:27:39 -06:00
|
|
|
impl DefPathTable {
|
2019-12-22 16:42:04 -06:00
|
|
|
fn allocate(&mut self, key: DefKey, def_path_hash: DefPathHash) -> DefIndex {
|
2017-03-16 12:17:18 -05:00
|
|
|
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-10-25 12:30:11 -05:00
|
|
|
self.index_to_key[index]
|
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-10-25 12:30:11 -05:00
|
|
|
let hash = self.def_path_hashes[index];
|
|
|
|
debug!("def_path_hash({:?}) = {:?}", index, hash);
|
|
|
|
hash
|
2017-04-03 12:20:26 -05:00
|
|
|
}
|
|
|
|
|
2019-12-22 16:42:04 -06:00
|
|
|
pub fn add_def_path_hashes_to(&self, cnum: CrateNum, out: &mut FxHashMap<DefPathHash, DefId>) {
|
|
|
|
out.extend(self.def_path_hashes.iter().enumerate().map(|(index, &hash)| {
|
|
|
|
let def_id = DefId { krate: cnum, index: DefIndex::from(index) };
|
|
|
|
(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.
|
2020-06-21 09:49:38 -05:00
|
|
|
/// It holds the `DefPathTable` for `LocalDefId`s/`DefPath`s.
|
|
|
|
/// It also stores mappings to convert `LocalDefId`s to/from `HirId`s.
|
|
|
|
#[derive(Clone)]
|
2015-09-17 13:29:59 -05:00
|
|
|
pub struct Definitions {
|
2016-12-14 10:27:39 -06:00
|
|
|
table: DefPathTable,
|
2020-02-12 08:11:33 -06:00
|
|
|
|
2020-06-12 13:56:16 -05:00
|
|
|
// FIXME(eddyb) ideally all `LocalDefId`s would be HIR owners.
|
|
|
|
pub(super) def_id_to_hir_id: IndexVec<LocalDefId, Option<hir::HirId>>,
|
|
|
|
/// The reverse mapping of `def_id_to_hir_id`.
|
2020-06-12 13:17:44 -05:00
|
|
|
pub(super) hir_id_to_def_id: FxHashMap<hir::HirId, LocalDefId>,
|
2020-02-12 08:11:33 -06:00
|
|
|
|
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>,
|
2019-11-03 06:36:59 -06:00
|
|
|
/// Item with a given `LocalDefId` was defined during macro expansion with ID `ExpnId`.
|
|
|
|
expansions_that_defined: FxHashMap<LocalDefId, ExpnId>,
|
|
|
|
next_disambiguator: FxHashMap<(LocalDefId, DefPathData), u32>,
|
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`.
|
2019-10-25 12:03:17 -05:00
|
|
|
#[derive(Copy, Clone, PartialEq, Debug, 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
|
|
|
|
2019-12-22 16:42:04 -06:00
|
|
|
let DisambiguatedDefPathData { ref data, disambiguator } = self.disambiguated_data;
|
2017-06-13 06:47:13 -05:00
|
|
|
|
|
|
|
::std::mem::discriminant(data).hash(&mut hasher);
|
2018-05-22 07:31:56 -05:00
|
|
|
if let Some(name) = data.get_opt_name() {
|
2019-10-20 22:25:08 -05:00
|
|
|
// Get a stable hash by considering the symbol chars rather than
|
|
|
|
// the symbol index.
|
|
|
|
name.as_str().hash(&mut hasher);
|
2018-05-22 07:31:56 -05:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2019-12-22 16:42:04 -06: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.
|
2019-10-25 12:03:17 -05:00
|
|
|
#[derive(Copy, Clone, PartialEq, Debug, RustcEncodable, RustcDecodable)]
|
2015-09-17 13:29:59 -05:00
|
|
|
pub struct DisambiguatedDefPathData {
|
|
|
|
pub data: DefPathData,
|
2019-12-22 16:42:04 -06:00
|
|
|
pub disambiguator: u32,
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
2019-10-18 00:36:17 -05:00
|
|
|
#[derive(Clone, Debug, 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
|
|
|
|
}
|
|
|
|
|
2019-12-22 16:42:04 -06:00
|
|
|
pub fn make<FN>(krate: CrateNum, start_index: DefIndex, mut get_key: FN) -> DefPath
|
|
|
|
where
|
|
|
|
FN: FnMut(DefIndex) -> DefKey,
|
2016-03-16 04:40:14 -05:00
|
|
|
{
|
|
|
|
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();
|
2020-03-06 12:28:44 -06:00
|
|
|
DefPath { data, krate }
|
2016-03-16 04:40:14 -05:00
|
|
|
}
|
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 {
|
2019-12-22 16:42:04 -06:00
|
|
|
write!(s, "::{}[{}]", component.data.as_symbol(), component.disambiguator).unwrap();
|
2017-03-14 09:50:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2019-12-22 16:42:04 -06:00
|
|
|
where
|
|
|
|
F: FnOnce(CrateNum) -> Symbol,
|
2018-09-18 19:09:36 -05:00
|
|
|
{
|
|
|
|
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 {
|
2019-10-20 22:25:08 -05:00
|
|
|
write!(s, "::{}", component.data.as_symbol()).unwrap();
|
2018-09-18 19:09:36 -05:00
|
|
|
} else {
|
2019-12-22 16:42:04 -06:00
|
|
|
write!(s, "{}[{}]", component.data.as_symbol(), component.disambiguator).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 {
|
2020-04-24 15:58:41 -05:00
|
|
|
s.extend(opt_delimiter);
|
2017-11-05 02:14:00 -06:00
|
|
|
opt_delimiter = Some('-');
|
2017-11-04 06:27:08 -05:00
|
|
|
if component.disambiguator == 0 {
|
2019-10-20 22:25:08 -05:00
|
|
|
write!(s, "{}", component.data.as_symbol()).unwrap();
|
2017-11-04 06:27:08 -05:00
|
|
|
} else {
|
2019-12-22 16:42:04 -06:00
|
|
|
write!(s, "{}[{}]", component.data.as_symbol(), component.disambiguator).unwrap();
|
2017-11-04 06:27:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
s
|
|
|
|
}
|
2016-03-16 04:40:14 -05:00
|
|
|
}
|
|
|
|
|
2019-10-25 12:03:17 -05:00
|
|
|
#[derive(Copy, 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.
|
2019-10-20 22:25:08 -05:00
|
|
|
TypeNs(Symbol),
|
2019-09-05 21:57:44 -05:00
|
|
|
/// Something in the value namespace.
|
2019-10-20 22:25:08 -05:00
|
|
|
ValueNs(Symbol),
|
2019-09-05 21:57:44 -05:00
|
|
|
/// Something in the macro namespace.
|
2019-10-20 22:25:08 -05:00
|
|
|
MacroNs(Symbol),
|
2019-09-05 21:57:44 -05:00
|
|
|
/// Something in the lifetime namespace.
|
2019-10-20 22:25:08 -05:00
|
|
|
LifetimeNs(Symbol),
|
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,
|
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
|
|
|
}
|
|
|
|
|
2019-11-03 06:36:59 -06:00
|
|
|
pub fn def_key(&self, id: LocalDefId) -> DefKey {
|
|
|
|
self.table.def_key(id.local_def_index)
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
2017-04-03 12:20:26 -05:00
|
|
|
#[inline(always)]
|
2019-11-03 06:36:59 -06:00
|
|
|
pub fn def_path_hash(&self, id: LocalDefId) -> DefPathHash {
|
|
|
|
self.table.def_path_hash(id.local_def_index)
|
2017-04-03 12:20:26 -05:00
|
|
|
}
|
|
|
|
|
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).
|
2019-11-03 06:36:59 -06:00
|
|
|
pub fn def_path(&self, id: LocalDefId) -> DefPath {
|
|
|
|
DefPath::make(LOCAL_CRATE, id.local_def_index, |index| {
|
|
|
|
self.def_key(LocalDefId { local_def_index: index })
|
|
|
|
})
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
2019-02-03 02:14:31 -06:00
|
|
|
#[inline]
|
2020-04-16 14:36:32 -05:00
|
|
|
pub fn as_local_hir_id(&self, def_id: LocalDefId) -> hir::HirId {
|
|
|
|
self.local_def_id_to_hir_id(def_id)
|
2019-02-03 02:14:31 -06:00
|
|
|
}
|
|
|
|
|
2017-08-08 07:33:51 -05:00
|
|
|
#[inline]
|
2019-11-03 06:36:59 -06:00
|
|
|
pub fn local_def_id_to_hir_id(&self, id: LocalDefId) -> hir::HirId {
|
2020-06-12 13:56:16 -05:00
|
|
|
self.def_id_to_hir_id[id].unwrap()
|
2020-04-13 11:40:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn opt_local_def_id_to_hir_id(&self, id: LocalDefId) -> Option<hir::HirId> {
|
2020-06-12 13:56:16 -05:00
|
|
|
self.def_id_to_hir_id[id]
|
2017-08-08 07:33:51 -05:00
|
|
|
}
|
|
|
|
|
2020-06-04 14:31:51 -05:00
|
|
|
#[inline]
|
|
|
|
pub fn opt_hir_id_to_local_def_id(&self, hir_id: hir::HirId) -> Option<LocalDefId> {
|
2020-06-12 13:17:44 -05:00
|
|
|
self.hir_id_to_def_id.get(&hir_id).copied()
|
2020-06-04 14:31:51 -05:00
|
|
|
}
|
|
|
|
|
2019-05-08 14:07:12 -05:00
|
|
|
/// Adds a root definition (no parent) and a few other reserved definitions.
|
2020-06-21 09:49:38 -05:00
|
|
|
pub fn new(crate_name: &str, crate_disambiguator: CrateDisambiguator) -> Definitions {
|
2017-04-03 12:20:26 -05:00
|
|
|
let key = DefKey {
|
|
|
|
parent: None,
|
|
|
|
disambiguated_data: DisambiguatedDefPathData {
|
|
|
|
data: DefPathData::CrateRoot,
|
2019-12-22 16:42:04 -06:00
|
|
|
disambiguator: 0,
|
|
|
|
},
|
2017-04-03 12:20:26 -05:00
|
|
|
};
|
|
|
|
|
2019-12-22 16:42:04 -06:00
|
|
|
let parent_hash = DefKey::root_parent_stable_hash(crate_name, crate_disambiguator);
|
2017-04-03 12:20:26 -05:00
|
|
|
let def_path_hash = key.compute_stable_hash(parent_hash);
|
|
|
|
|
2020-06-21 09:49:38 -05:00
|
|
|
// Create the root definition.
|
|
|
|
let mut table = DefPathTable::default();
|
|
|
|
let root = LocalDefId { local_def_index: table.allocate(key, def_path_hash) };
|
2019-11-03 06:36:59 -06:00
|
|
|
assert_eq!(root.local_def_index, CRATE_DEF_INDEX);
|
|
|
|
|
2020-06-21 09:49:38 -05:00
|
|
|
Definitions {
|
|
|
|
table,
|
|
|
|
def_id_to_hir_id: Default::default(),
|
|
|
|
hir_id_to_def_id: Default::default(),
|
|
|
|
expansions_that_defined: Default::default(),
|
|
|
|
next_disambiguator: Default::default(),
|
|
|
|
parent_modules_of_macro_defs: Default::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Retrieves the root definition.
|
|
|
|
pub fn get_root_def(&self) -> LocalDefId {
|
|
|
|
LocalDefId { local_def_index: CRATE_DEF_INDEX }
|
2017-04-03 12:20:26 -05:00
|
|
|
}
|
|
|
|
|
2019-02-28 16:43:53 -06:00
|
|
|
/// Adds a definition with a parent definition.
|
2020-06-21 09:49:38 -05:00
|
|
|
pub fn create_def(
|
2019-12-22 16:42:04 -06:00
|
|
|
&mut self,
|
2019-11-03 06:36:59 -06:00
|
|
|
parent: LocalDefId,
|
2019-12-22 16:42:04 -06:00
|
|
|
data: DefPathData,
|
|
|
|
expn_id: ExpnId,
|
2019-11-03 06:36:59 -06:00
|
|
|
) -> LocalDefId {
|
2020-06-21 09:49:38 -05:00
|
|
|
debug!("create_def(parent={:?}, data={:?}, expn_id={:?})", parent, data, expn_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 = {
|
2019-10-25 12:03:17 -05:00
|
|
|
let next_disamb = self.next_disambiguator.entry((parent, data)).or_insert(0);
|
2017-08-01 06:44:20 -05:00
|
|
|
let disambiguator = *next_disamb;
|
|
|
|
*next_disamb = next_disamb.checked_add(1).expect("disambiguator overflow");
|
|
|
|
disambiguator
|
|
|
|
};
|
|
|
|
|
|
|
|
let key = DefKey {
|
2019-11-03 06:36:59 -06:00
|
|
|
parent: Some(parent.local_def_index),
|
2019-12-22 16:42:04 -06:00
|
|
|
disambiguated_data: DisambiguatedDefPathData { data, disambiguator },
|
2015-09-17 13:29:59 -05:00
|
|
|
};
|
|
|
|
|
2019-11-03 06:36:59 -06:00
|
|
|
let parent_hash = self.table.def_path_hash(parent.local_def_index);
|
2017-04-03 12:20:26 -05:00
|
|
|
let def_path_hash = key.compute_stable_hash(parent_hash);
|
|
|
|
|
2020-06-21 09:49:38 -05:00
|
|
|
debug!("create_def: after disambiguation, key = {:?}", key);
|
2016-03-28 16:39:57 -05:00
|
|
|
|
2015-09-17 13:29:59 -05:00
|
|
|
// Create the definition.
|
2019-11-03 06:36:59 -06:00
|
|
|
let def_id = LocalDefId { local_def_index: self.table.allocate(key, def_path_hash) };
|
2017-06-07 03:45:20 -05:00
|
|
|
|
2019-07-15 17:42:58 -05:00
|
|
|
if expn_id != ExpnId::root() {
|
2019-11-03 06:36:59 -06:00
|
|
|
self.expansions_that_defined.insert(def_id, expn_id);
|
2018-02-17 06:22:58 -06:00
|
|
|
}
|
|
|
|
|
2019-11-03 06:36:59 -06:00
|
|
|
def_id
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
2017-03-14 09:50:40 -05:00
|
|
|
|
2020-06-20 13:59:29 -05:00
|
|
|
/// Initializes the `LocalDefId` to `HirId` mapping once it has been generated during
|
2017-03-14 09:50:40 -05:00
|
|
|
/// AST to HIR lowering.
|
2020-06-20 13:59:29 -05:00
|
|
|
pub fn init_def_id_to_hir_id_mapping(
|
2020-04-13 11:40:06 -05:00
|
|
|
&mut self,
|
2020-06-20 13:59:29 -05:00
|
|
|
mapping: IndexVec<LocalDefId, Option<hir::HirId>>,
|
2020-04-13 11:40:06 -05:00
|
|
|
) {
|
2019-12-22 16:42:04 -06:00
|
|
|
assert!(
|
2020-06-12 13:56:16 -05:00
|
|
|
self.def_id_to_hir_id.is_empty(),
|
|
|
|
"trying to initialize `LocalDefId` <-> `HirId` mappings twice"
|
2019-12-22 16:42:04 -06:00
|
|
|
);
|
2020-02-12 08:11:33 -06:00
|
|
|
|
2020-06-12 13:56:16 -05:00
|
|
|
// Build the reverse mapping of `def_id_to_hir_id`.
|
|
|
|
self.hir_id_to_def_id = mapping
|
2020-06-20 13:59:29 -05:00
|
|
|
.iter_enumerated()
|
|
|
|
.filter_map(|(def_id, hir_id)| hir_id.map(|hir_id| (hir_id, def_id)))
|
2020-02-12 08:11:33 -06:00
|
|
|
.collect();
|
2020-06-20 13:59:29 -05:00
|
|
|
|
|
|
|
self.def_id_to_hir_id = mapping;
|
2017-03-14 09:50:40 -05:00
|
|
|
}
|
2017-03-24 18:03:15 -05:00
|
|
|
|
2019-11-03 06:36:59 -06:00
|
|
|
pub fn expansion_that_defined(&self, id: LocalDefId) -> ExpnId {
|
|
|
|
self.expansions_that_defined.get(&id).copied().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
|
|
|
}
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DefPathData {
|
2019-10-20 22:25:08 -05:00
|
|
|
pub fn get_opt_name(&self) -> Option<Symbol> {
|
2016-09-17 05:34:55 -05:00
|
|
|
use self::DefPathData::*;
|
|
|
|
match *self {
|
2019-12-22 16:42:04 -06:00
|
|
|
TypeNs(name) | ValueNs(name) | MacroNs(name) | LifetimeNs(name) => Some(name),
|
|
|
|
|
|
|
|
Impl | CrateRoot | Misc | ClosureExpr | Ctor | AnonConst | ImplTrait => None,
|
2016-09-17 05:34:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-20 22:25:08 -05:00
|
|
|
pub fn as_symbol(&self) -> Symbol {
|
2015-09-17 13:29:59 -05:00
|
|
|
use self::DefPathData::*;
|
2019-10-20 22:25:08 -05:00
|
|
|
match *self {
|
2019-12-22 16:42:04 -06:00
|
|
|
TypeNs(name) | ValueNs(name) | MacroNs(name) | LifetimeNs(name) => name,
|
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,
|
2019-10-20 22:25:08 -05:00
|
|
|
}
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_string(&self) -> String {
|
2019-10-20 22:25:08 -05:00
|
|
|
self.as_symbol().to_string()
|
2015-09-17 13:29:59 -05:00
|
|
|
}
|
|
|
|
}
|