2016-04-13 19:14:03 -05:00
|
|
|
// Copyright 2015-2016 The Rust Project Developers. See the COPYRIGHT
|
2015-09-10 14:53:08 -05:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
use super::MapEntry::*;
|
|
|
|
|
2016-03-29 00:50:44 -05:00
|
|
|
use hir::*;
|
|
|
|
use hir::intravisit::Visitor;
|
2016-04-13 19:14:03 -05:00
|
|
|
use hir::def_id::DefId;
|
2016-04-06 05:51:55 -05:00
|
|
|
use middle::cstore::InlinedItem;
|
2015-09-10 14:53:08 -05:00
|
|
|
use std::iter::repeat;
|
2016-04-13 19:14:03 -05:00
|
|
|
use syntax::ast::{NodeId, CRATE_NODE_ID};
|
2016-06-21 17:08:13 -05:00
|
|
|
use syntax_pos::Span;
|
2015-09-10 14:53:08 -05:00
|
|
|
|
2015-12-21 15:24:15 -06:00
|
|
|
/// A Visitor that walks over the HIR and collects Nodes into a HIR map
|
2015-09-10 14:53:08 -05:00
|
|
|
pub struct NodeCollector<'ast> {
|
2015-12-21 15:24:15 -06:00
|
|
|
/// The crate
|
2015-11-17 16:38:23 -06:00
|
|
|
pub krate: &'ast Crate,
|
2015-12-21 15:24:15 -06:00
|
|
|
/// The node map
|
2015-09-10 14:53:08 -05:00
|
|
|
pub map: Vec<MapEntry<'ast>>,
|
2015-12-21 15:24:15 -06:00
|
|
|
/// The parent of this node
|
2015-09-10 14:53:08 -05:00
|
|
|
pub parent_node: NodeId,
|
2016-09-17 11:06:21 -05:00
|
|
|
/// If true, completely ignore nested items. We set this when loading
|
|
|
|
/// HIR from metadata, since in that case we only want the HIR for
|
|
|
|
/// one specific item (and not the ones nested inside of it).
|
|
|
|
pub ignore_nested_items: bool
|
2015-09-10 14:53:08 -05:00
|
|
|
}
|
|
|
|
|
2016-04-13 18:55:34 -05:00
|
|
|
impl<'ast> NodeCollector<'ast> {
|
|
|
|
pub fn root(krate: &'ast Crate) -> NodeCollector<'ast> {
|
|
|
|
let mut collector = NodeCollector {
|
|
|
|
krate: krate,
|
|
|
|
map: vec![],
|
|
|
|
parent_node: CRATE_NODE_ID,
|
2016-09-17 11:06:21 -05:00
|
|
|
ignore_nested_items: false
|
2016-04-13 18:55:34 -05:00
|
|
|
};
|
|
|
|
collector.insert_entry(CRATE_NODE_ID, RootCrate);
|
|
|
|
|
|
|
|
collector
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn extend(krate: &'ast Crate,
|
|
|
|
parent: &'ast InlinedItem,
|
|
|
|
parent_node: NodeId,
|
|
|
|
parent_def_path: DefPath,
|
|
|
|
parent_def_id: DefId,
|
|
|
|
map: Vec<MapEntry<'ast>>)
|
|
|
|
-> NodeCollector<'ast> {
|
|
|
|
let mut collector = NodeCollector {
|
|
|
|
krate: krate,
|
|
|
|
map: map,
|
|
|
|
parent_node: parent_node,
|
2016-09-17 11:06:21 -05:00
|
|
|
ignore_nested_items: true
|
2016-04-13 18:55:34 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(parent_def_path.krate, parent_def_id.krate);
|
|
|
|
collector.insert_entry(parent_node, RootInlinedParent(parent));
|
|
|
|
|
|
|
|
collector
|
|
|
|
}
|
|
|
|
|
|
|
|
fn insert_entry(&mut self, id: NodeId, entry: MapEntry<'ast>) {
|
|
|
|
debug!("ast_map: {:?} => {:?}", id, entry);
|
|
|
|
let len = self.map.len();
|
2016-08-31 06:00:29 -05:00
|
|
|
if id.as_usize() >= len {
|
|
|
|
self.map.extend(repeat(NotPresent).take(id.as_usize() - len + 1));
|
2015-09-10 14:53:08 -05:00
|
|
|
}
|
2016-08-31 06:00:29 -05:00
|
|
|
self.map[id.as_usize()] = entry;
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn insert(&mut self, id: NodeId, node: Node<'ast>) {
|
|
|
|
let entry = MapEntry::from_node(self.parent_node, node);
|
|
|
|
self.insert_entry(id, entry);
|
|
|
|
}
|
2016-04-14 00:24:30 -05:00
|
|
|
|
|
|
|
fn with_parent<F: FnOnce(&mut Self)>(&mut self, parent_id: NodeId, f: F) {
|
|
|
|
let parent_node = self.parent_node;
|
|
|
|
self.parent_node = parent_id;
|
|
|
|
f(self);
|
|
|
|
self.parent_node = parent_node;
|
|
|
|
}
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'ast> Visitor<'ast> for NodeCollector<'ast> {
|
|
|
|
/// Because we want to track parent items and so forth, enable
|
|
|
|
/// deep walking so that we walk nested items in the context of
|
|
|
|
/// their outer items.
|
|
|
|
fn visit_nested_item(&mut self, item: ItemId) {
|
|
|
|
debug!("visit_nested_item: {:?}", item);
|
2016-09-17 11:06:21 -05:00
|
|
|
if !self.ignore_nested_items {
|
|
|
|
self.visit_item(self.krate.item(item.id))
|
|
|
|
}
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_item(&mut self, i: &'ast Item) {
|
|
|
|
debug!("visit_item: {:?}", i);
|
|
|
|
|
|
|
|
self.insert(i.id, NodeItem(i));
|
|
|
|
|
2016-04-14 00:24:30 -05:00
|
|
|
self.with_parent(i.id, |this| {
|
|
|
|
match i.node {
|
|
|
|
ItemEnum(ref enum_definition, _) => {
|
|
|
|
for v in &enum_definition.variants {
|
|
|
|
this.insert(v.node.data.id(), NodeVariant(v));
|
|
|
|
}
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
2016-04-14 00:24:30 -05:00
|
|
|
ItemStruct(ref struct_def, _) => {
|
|
|
|
// If this is a tuple-like struct, register the constructor.
|
|
|
|
if !struct_def.is_struct() {
|
|
|
|
this.insert(struct_def.id(), NodeStructCtor(struct_def));
|
|
|
|
}
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
2016-08-26 11:23:42 -05:00
|
|
|
ItemTrait(.., ref bounds, _) => {
|
2016-04-14 00:24:30 -05:00
|
|
|
for b in bounds.iter() {
|
|
|
|
if let TraitTyParamBound(ref t, TraitBoundModifier::None) = *b {
|
|
|
|
this.insert(t.trait_ref.ref_id, NodeItem(i));
|
|
|
|
}
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
|
|
|
}
|
2016-04-14 00:24:30 -05:00
|
|
|
ItemUse(ref view_path) => {
|
|
|
|
match view_path.node {
|
|
|
|
ViewPathList(_, ref paths) => {
|
|
|
|
for path in paths {
|
2016-08-12 04:15:02 -05:00
|
|
|
this.insert(path.node.id, NodeItem(i));
|
2016-04-14 00:24:30 -05:00
|
|
|
}
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
2016-04-14 00:24:30 -05:00
|
|
|
_ => ()
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
|
|
|
}
|
2016-04-14 00:24:30 -05:00
|
|
|
_ => {}
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
2016-04-14 00:24:30 -05:00
|
|
|
intravisit::walk_item(this, i);
|
|
|
|
});
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_foreign_item(&mut self, foreign_item: &'ast ForeignItem) {
|
|
|
|
self.insert(foreign_item.id, NodeForeignItem(foreign_item));
|
|
|
|
|
2016-04-14 00:24:30 -05:00
|
|
|
self.with_parent(foreign_item.id, |this| {
|
|
|
|
intravisit::walk_foreign_item(this, foreign_item);
|
|
|
|
});
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_generics(&mut self, generics: &'ast Generics) {
|
|
|
|
for ty_param in generics.ty_params.iter() {
|
|
|
|
self.insert(ty_param.id, NodeTyParam(ty_param));
|
|
|
|
}
|
|
|
|
|
|
|
|
intravisit::walk_generics(self, generics);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_trait_item(&mut self, ti: &'ast TraitItem) {
|
|
|
|
self.insert(ti.id, NodeTraitItem(ti));
|
|
|
|
|
2016-04-14 00:24:30 -05:00
|
|
|
self.with_parent(ti.id, |this| {
|
|
|
|
intravisit::walk_trait_item(this, ti);
|
|
|
|
});
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_impl_item(&mut self, ii: &'ast ImplItem) {
|
|
|
|
self.insert(ii.id, NodeImplItem(ii));
|
|
|
|
|
2016-04-14 00:24:30 -05:00
|
|
|
self.with_parent(ii.id, |this| {
|
|
|
|
intravisit::walk_impl_item(this, ii);
|
|
|
|
});
|
2016-04-13 18:55:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_pat(&mut self, pat: &'ast Pat) {
|
2016-03-06 06:54:44 -06:00
|
|
|
let node = if let PatKind::Binding(..) = pat.node {
|
2016-04-17 17:30:55 -05:00
|
|
|
NodeLocal(pat)
|
|
|
|
} else {
|
|
|
|
NodePat(pat)
|
|
|
|
};
|
|
|
|
self.insert(pat.id, node);
|
2015-09-10 14:53:08 -05:00
|
|
|
|
2016-04-14 00:24:30 -05:00
|
|
|
self.with_parent(pat.id, |this| {
|
|
|
|
intravisit::walk_pat(this, pat);
|
|
|
|
});
|
2015-09-10 14:53:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_expr(&mut self, expr: &'ast Expr) {
|
|
|
|
self.insert(expr.id, NodeExpr(expr));
|
|
|
|
|
2016-04-14 00:24:30 -05:00
|
|
|
self.with_parent(expr.id, |this| {
|
|
|
|
intravisit::walk_expr(this, expr);
|
|
|
|
});
|
2015-09-10 14:53:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_stmt(&mut self, stmt: &'ast Stmt) {
|
2016-03-29 01:32:58 -05:00
|
|
|
let id = stmt.node.id();
|
2015-09-10 14:53:08 -05:00
|
|
|
self.insert(id, NodeStmt(stmt));
|
2016-04-14 00:24:30 -05:00
|
|
|
|
|
|
|
self.with_parent(id, |this| {
|
|
|
|
intravisit::walk_stmt(this, stmt);
|
|
|
|
});
|
2015-09-10 14:53:08 -05:00
|
|
|
}
|
|
|
|
|
2016-08-05 19:12:20 -05:00
|
|
|
fn visit_ty(&mut self, ty: &'ast Ty) {
|
|
|
|
self.insert(ty.id, NodeTy(ty));
|
|
|
|
|
|
|
|
self.with_parent(ty.id, |this| {
|
|
|
|
intravisit::walk_ty(this, ty);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-11-17 16:38:23 -06:00
|
|
|
fn visit_fn(&mut self, fk: intravisit::FnKind<'ast>, fd: &'ast FnDecl,
|
2016-10-25 18:27:14 -05:00
|
|
|
b: &'ast Expr, s: Span, id: NodeId) {
|
2015-09-29 05:47:33 -05:00
|
|
|
assert_eq!(self.parent_node, id);
|
2016-07-28 04:58:45 -05:00
|
|
|
intravisit::walk_fn(self, fk, fd, b, s, id);
|
2015-09-10 14:53:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_block(&mut self, block: &'ast Block) {
|
|
|
|
self.insert(block.id, NodeBlock(block));
|
2016-04-14 00:24:30 -05:00
|
|
|
self.with_parent(block.id, |this| {
|
|
|
|
intravisit::walk_block(this, block);
|
|
|
|
});
|
2015-09-10 14:53:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_lifetime(&mut self, lifetime: &'ast Lifetime) {
|
|
|
|
self.insert(lifetime.id, NodeLifetime(lifetime));
|
|
|
|
}
|
2016-10-28 01:52:45 -05:00
|
|
|
|
|
|
|
fn visit_macro_def(&mut self, macro_def: &'ast MacroDef) {
|
|
|
|
self.insert_entry(macro_def.id, NotPresent);
|
|
|
|
}
|
2015-09-10 14:53:08 -05:00
|
|
|
}
|