2013-09-09 20:57:50 -05:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 18:48:01 -06: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.
|
|
|
|
|
2013-03-13 21:25:28 -05:00
|
|
|
use abi::AbiSet;
|
2012-09-04 13:37:29 -05:00
|
|
|
use ast::*;
|
2012-12-23 16:41:37 -06:00
|
|
|
use ast;
|
2013-03-26 15:38:07 -05:00
|
|
|
use ast_util::{inlined_item_utils, stmt_id};
|
2012-12-23 16:41:37 -06:00
|
|
|
use ast_util;
|
2013-08-31 11:13:04 -05:00
|
|
|
use codemap::Span;
|
2012-12-23 16:41:37 -06:00
|
|
|
use codemap;
|
2012-09-04 13:37:29 -05:00
|
|
|
use diagnostic::span_handler;
|
2013-09-03 00:34:37 -05:00
|
|
|
use parse::token::get_ident_interner;
|
2012-09-04 13:37:29 -05:00
|
|
|
use parse::token::ident_interner;
|
2013-07-19 20:42:11 -05:00
|
|
|
use parse::token::special_idents;
|
2012-12-23 16:41:37 -06:00
|
|
|
use print::pprust;
|
2013-07-19 20:42:11 -05:00
|
|
|
use visit::{Visitor, fn_kind};
|
2012-12-23 16:41:37 -06:00
|
|
|
use visit;
|
|
|
|
|
2013-06-24 19:40:33 -05:00
|
|
|
use std::hashmap::HashMap;
|
|
|
|
use std::vec;
|
2011-06-19 15:41:21 -05:00
|
|
|
|
2013-07-02 14:47:32 -05:00
|
|
|
#[deriving(Clone, Eq)]
|
2013-01-29 15:54:06 -06:00
|
|
|
pub enum path_elt {
|
2013-09-01 19:50:59 -05:00
|
|
|
path_mod(Ident),
|
2013-09-03 00:34:37 -05:00
|
|
|
path_name(Ident),
|
2013-08-30 02:47:10 -05:00
|
|
|
|
|
|
|
// A pretty name can come from an `impl` block. We attempt to select a
|
|
|
|
// reasonable name for debuggers to see, but to guarantee uniqueness with
|
|
|
|
// other paths the hash should also be taken into account during symbol
|
|
|
|
// generation.
|
|
|
|
path_pretty_name(Ident, u64),
|
2012-08-27 18:26:35 -05:00
|
|
|
}
|
|
|
|
|
2013-09-11 04:08:44 -05:00
|
|
|
impl path_elt {
|
|
|
|
pub fn ident(&self) -> Ident {
|
|
|
|
match *self {
|
|
|
|
path_mod(ident) |
|
|
|
|
path_name(ident) |
|
|
|
|
path_pretty_name(ident, _) => ident
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-29 15:54:06 -06:00
|
|
|
pub type path = ~[path_elt];
|
2012-02-03 02:53:37 -06:00
|
|
|
|
2013-06-05 06:57:24 -05:00
|
|
|
pub fn path_to_str_with_sep(p: &[path_elt], sep: &str, itr: @ident_interner)
|
2013-01-29 15:54:06 -06:00
|
|
|
-> ~str {
|
2013-01-22 13:57:39 -06:00
|
|
|
let strs = do p.map |e| {
|
2012-09-21 20:43:30 -05:00
|
|
|
match *e {
|
2013-08-30 02:47:10 -05:00
|
|
|
path_mod(s) | path_name(s) | path_pretty_name(s, _) => {
|
|
|
|
itr.get(s.name)
|
|
|
|
}
|
2012-02-10 08:01:32 -06:00
|
|
|
}
|
|
|
|
};
|
2013-06-10 08:25:25 -05:00
|
|
|
strs.connect(sep)
|
2012-02-10 08:01:32 -06:00
|
|
|
}
|
|
|
|
|
2013-09-01 19:50:59 -05:00
|
|
|
pub fn path_ident_to_str(p: &path, i: Ident, itr: @ident_interner) -> ~str {
|
2013-06-08 20:38:47 -05:00
|
|
|
if p.is_empty() {
|
2013-06-12 12:02:55 -05:00
|
|
|
itr.get(i.name).to_owned()
|
2012-03-28 14:54:06 -05:00
|
|
|
} else {
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("{}::{}", path_to_str(*p, itr), itr.get(i.name))
|
2012-03-28 14:54:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-29 15:54:06 -06:00
|
|
|
pub fn path_to_str(p: &[path_elt], itr: @ident_interner) -> ~str {
|
2013-06-05 06:57:24 -05:00
|
|
|
path_to_str_with_sep(p, "::", itr)
|
2012-02-10 08:01:32 -06:00
|
|
|
}
|
|
|
|
|
2013-01-29 15:54:06 -06:00
|
|
|
pub fn path_elt_to_str(pe: path_elt, itr: @ident_interner) -> ~str {
|
2013-01-10 01:17:57 -06:00
|
|
|
match pe {
|
2013-08-30 02:47:10 -05:00
|
|
|
path_mod(s) | path_name(s) | path_pretty_name(s, _) => {
|
|
|
|
itr.get(s.name).to_owned()
|
|
|
|
}
|
2013-01-10 01:17:57 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-07 01:56:17 -05:00
|
|
|
pub fn impl_pretty_name(trait_ref: &Option<trait_ref>,
|
|
|
|
ty: &Ty, default: Ident) -> path_elt {
|
|
|
|
let itr = get_ident_interner();
|
|
|
|
let ty_ident = match ty.node {
|
|
|
|
ty_path(ref path, _, _) => path.segments.last().identifier,
|
|
|
|
_ => default
|
|
|
|
};
|
|
|
|
let hash = (trait_ref, ty).hash();
|
|
|
|
match *trait_ref {
|
|
|
|
None => path_pretty_name(ty_ident, hash),
|
|
|
|
Some(ref trait_ref) => {
|
|
|
|
// XXX: this dollar sign is actually a relic of being one of the
|
|
|
|
// very few valid symbol names on unix. These kinds of
|
|
|
|
// details shouldn't be exposed way up here in the ast.
|
2013-09-27 23:01:58 -05:00
|
|
|
let s = format!("{}${}",
|
2013-09-07 01:56:17 -05:00
|
|
|
itr.get(trait_ref.path.segments.last().identifier.name),
|
|
|
|
itr.get(ty_ident.name));
|
|
|
|
path_pretty_name(Ident::new(itr.gensym(s)), hash)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-02 14:47:32 -05:00
|
|
|
#[deriving(Clone)]
|
2013-01-29 15:54:06 -06:00
|
|
|
pub enum ast_node {
|
2012-02-03 02:53:37 -06:00
|
|
|
node_item(@item, @path),
|
2013-03-13 21:25:28 -05:00
|
|
|
node_foreign_item(@foreign_item, AbiSet, visibility, @path),
|
2013-09-01 20:45:37 -05:00
|
|
|
node_trait_method(@trait_method, DefId /* trait did */,
|
2012-08-02 17:52:25 -05:00
|
|
|
@path /* path to the trait */),
|
2013-09-01 20:45:37 -05:00
|
|
|
node_method(@method, DefId /* impl did */, @path /* path to the impl */),
|
2012-03-07 05:21:08 -06:00
|
|
|
node_variant(variant, @item, @path),
|
2013-09-01 20:45:37 -05:00
|
|
|
node_expr(@Expr),
|
|
|
|
node_stmt(@Stmt),
|
2013-09-04 12:31:13 -05:00
|
|
|
node_arg(@Pat),
|
2013-09-01 19:50:59 -05:00
|
|
|
node_local(Ident),
|
2013-07-19 00:38:55 -05:00
|
|
|
node_block(Block),
|
2012-10-26 20:23:45 -05:00
|
|
|
node_struct_ctor(@struct_def, @item, @path),
|
2013-09-01 20:45:37 -05:00
|
|
|
node_callee_scope(@Expr)
|
2011-06-19 15:41:21 -05:00
|
|
|
}
|
|
|
|
|
2013-08-31 02:13:57 -05:00
|
|
|
impl ast_node {
|
|
|
|
pub fn with_attrs<T>(&self, f: &fn(Option<&[Attribute]>) -> T) -> T {
|
|
|
|
let attrs = match *self {
|
|
|
|
node_item(i, _) => Some(i.attrs.as_slice()),
|
|
|
|
node_foreign_item(fi, _, _, _) => Some(fi.attrs.as_slice()),
|
|
|
|
node_trait_method(tm, _, _) => match *tm {
|
|
|
|
required(ref type_m) => Some(type_m.attrs.as_slice()),
|
|
|
|
provided(m) => Some(m.attrs.as_slice())
|
|
|
|
},
|
|
|
|
node_method(m, _, _) => Some(m.attrs.as_slice()),
|
|
|
|
node_variant(ref v, _, _) => Some(v.node.attrs.as_slice()),
|
|
|
|
// unit/tuple structs take the attributes straight from
|
|
|
|
// the struct definition.
|
|
|
|
node_struct_ctor(_, strct, _) => Some(strct.attrs.as_slice()),
|
|
|
|
_ => None
|
|
|
|
};
|
|
|
|
f(attrs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-27 03:25:59 -05:00
|
|
|
pub type map = @mut HashMap<NodeId, ast_node>;
|
2013-02-04 16:02:01 -06:00
|
|
|
|
|
|
|
pub struct Ctx {
|
2013-03-23 20:45:27 -05:00
|
|
|
map: map,
|
2013-02-04 16:02:01 -06:00
|
|
|
path: path,
|
2013-08-11 12:23:40 -05:00
|
|
|
diag: @mut span_handler,
|
2013-01-17 10:55:28 -06:00
|
|
|
}
|
2011-06-19 15:41:21 -05:00
|
|
|
|
2013-07-19 20:42:11 -05:00
|
|
|
impl Ctx {
|
2013-09-03 00:34:37 -05:00
|
|
|
fn extend(&self, elt: path_elt) -> @path {
|
|
|
|
@vec::append(self.path.clone(), [elt])
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn map_method(&mut self,
|
2013-09-01 20:45:37 -05:00
|
|
|
impl_did: DefId,
|
2013-07-19 20:42:11 -05:00
|
|
|
impl_path: @path,
|
|
|
|
m: @method,
|
|
|
|
is_provided: bool) {
|
|
|
|
let entry = if is_provided {
|
|
|
|
node_trait_method(@provided(m), impl_did, impl_path)
|
|
|
|
} else {
|
|
|
|
node_method(m, impl_did, impl_path)
|
|
|
|
};
|
|
|
|
self.map.insert(m.id, entry);
|
|
|
|
self.map.insert(m.self_id, node_local(special_idents::self_));
|
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn map_struct_def(&mut self,
|
2013-07-19 20:42:11 -05:00
|
|
|
struct_def: @ast::struct_def,
|
|
|
|
parent_node: ast_node,
|
2013-09-01 19:50:59 -05:00
|
|
|
ident: ast::Ident) {
|
2013-09-03 00:34:37 -05:00
|
|
|
let p = self.extend(path_name(ident));
|
2013-07-19 20:42:11 -05:00
|
|
|
|
|
|
|
// If this is a tuple-like struct, register the constructor.
|
|
|
|
match struct_def.ctor_id {
|
|
|
|
None => {}
|
|
|
|
Some(ctor_id) => {
|
|
|
|
match parent_node {
|
|
|
|
node_item(item, _) => {
|
|
|
|
self.map.insert(ctor_id,
|
|
|
|
node_struct_ctor(struct_def,
|
|
|
|
item,
|
|
|
|
p));
|
|
|
|
}
|
2013-09-27 23:01:58 -05:00
|
|
|
_ => fail2!("struct def parent wasn't an item")
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
fn map_expr(&mut self, ex: @Expr) {
|
2013-07-19 20:42:11 -05:00
|
|
|
self.map.insert(ex.id, node_expr(ex));
|
|
|
|
|
|
|
|
// Expressions which are or might be calls:
|
|
|
|
{
|
|
|
|
let r = ex.get_callee_id();
|
2013-08-03 11:45:23 -05:00
|
|
|
for callee_id in r.iter() {
|
2013-07-19 20:42:11 -05:00
|
|
|
self.map.insert(*callee_id, node_callee_scope(ex));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_expr(self, ex, ());
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
2013-02-04 16:02:01 -06:00
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn map_fn(&mut self,
|
2013-07-19 20:42:11 -05:00
|
|
|
fk: &visit::fn_kind,
|
|
|
|
decl: &fn_decl,
|
|
|
|
body: &Block,
|
2013-08-31 11:13:04 -05:00
|
|
|
sp: codemap::Span,
|
2013-07-19 20:42:11 -05:00
|
|
|
id: NodeId) {
|
2013-08-03 11:45:23 -05:00
|
|
|
for a in decl.inputs.iter() {
|
2013-08-23 11:45:02 -05:00
|
|
|
self.map.insert(a.id, node_arg(a.pat));
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
2013-08-30 00:29:26 -05:00
|
|
|
match *fk {
|
|
|
|
visit::fk_method(name, _, _) => { self.path.push(path_name(name)) }
|
|
|
|
_ => {}
|
|
|
|
}
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_fn(self, fk, decl, body, sp, id, ());
|
2013-08-30 00:29:26 -05:00
|
|
|
match *fk {
|
|
|
|
visit::fk_method(*) => { self.path.pop(); }
|
|
|
|
_ => {}
|
|
|
|
}
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
fn map_stmt(&mut self, stmt: @Stmt) {
|
2013-07-19 20:42:11 -05:00
|
|
|
self.map.insert(stmt_id(stmt), node_stmt(stmt));
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_stmt(self, stmt, ());
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn map_block(&mut self, b: &Block) {
|
2013-07-19 20:42:11 -05:00
|
|
|
// clone is FIXME #2543
|
|
|
|
self.map.insert(b.id, node_block((*b).clone()));
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_block(self, b, ());
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
fn map_pat(&mut self, pat: @Pat) {
|
2013-07-19 20:42:11 -05:00
|
|
|
match pat.node {
|
2013-09-01 20:45:37 -05:00
|
|
|
PatIdent(_, ref path, _) => {
|
2013-07-19 20:42:11 -05:00
|
|
|
// Note: this is at least *potentially* a pattern...
|
|
|
|
self.map.insert(pat.id,
|
|
|
|
node_local(ast_util::path_to_ident(path)));
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_pat(self, pat, ());
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
2012-03-06 06:57:07 -06:00
|
|
|
}
|
|
|
|
|
2013-07-19 20:42:11 -05:00
|
|
|
impl Visitor<()> for Ctx {
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_item(&mut self, i: @item, _: ()) {
|
2013-07-19 20:42:11 -05:00
|
|
|
// clone is FIXME #2543
|
|
|
|
let item_path = @self.path.clone();
|
|
|
|
self.map.insert(i.id, node_item(i, item_path));
|
|
|
|
match i.node {
|
2013-08-30 02:47:10 -05:00
|
|
|
item_impl(_, ref maybe_trait, ref ty, ref ms) => {
|
2013-09-03 00:34:37 -05:00
|
|
|
// Right now the ident on impls is __extensions__ which isn't
|
|
|
|
// very pretty when debugging, so attempt to select a better
|
|
|
|
// name to use.
|
2013-09-07 01:56:17 -05:00
|
|
|
let elt = impl_pretty_name(maybe_trait, ty, i.ident);
|
2013-09-03 00:34:37 -05:00
|
|
|
|
2013-07-19 20:42:11 -05:00
|
|
|
let impl_did = ast_util::local_def(i.id);
|
2013-08-03 11:45:23 -05:00
|
|
|
for m in ms.iter() {
|
2013-09-03 00:34:37 -05:00
|
|
|
let extended = { self.extend(elt) };
|
2013-08-08 07:23:25 -05:00
|
|
|
self.map_method(impl_did, extended, *m, false)
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
2013-08-30 02:47:10 -05:00
|
|
|
|
2013-09-03 00:34:37 -05:00
|
|
|
self.path.push(elt);
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
item_enum(ref enum_definition, _) => {
|
2013-08-03 11:45:23 -05:00
|
|
|
for v in (*enum_definition).variants.iter() {
|
2013-09-03 00:34:37 -05:00
|
|
|
let elt = path_name(i.ident);
|
2013-07-19 20:42:11 -05:00
|
|
|
// FIXME #2543: bad clone
|
|
|
|
self.map.insert(v.node.id,
|
|
|
|
node_variant((*v).clone(),
|
|
|
|
i,
|
2013-09-03 00:34:37 -05:00
|
|
|
self.extend(elt)));
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
item_foreign_mod(ref nm) => {
|
2013-08-03 11:45:23 -05:00
|
|
|
for nitem in nm.items.iter() {
|
2013-07-19 20:42:11 -05:00
|
|
|
// Compute the visibility for this native item.
|
|
|
|
let visibility = match nitem.vis {
|
|
|
|
public => public,
|
|
|
|
private => private,
|
|
|
|
inherited => i.vis
|
|
|
|
};
|
|
|
|
|
|
|
|
self.map.insert(nitem.id,
|
|
|
|
node_foreign_item(*nitem,
|
|
|
|
nm.abis,
|
|
|
|
visibility,
|
|
|
|
// FIXME (#2543)
|
|
|
|
// Anonymous extern
|
|
|
|
// mods go in the
|
|
|
|
// parent scope.
|
|
|
|
@self.path.clone()
|
2013-10-10 14:57:34 -05:00
|
|
|
));
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
item_struct(struct_def, _) => {
|
|
|
|
self.map_struct_def(struct_def,
|
|
|
|
node_item(i, item_path),
|
|
|
|
i.ident)
|
|
|
|
}
|
|
|
|
item_trait(_, ref traits, ref methods) => {
|
2013-08-03 11:45:23 -05:00
|
|
|
for p in traits.iter() {
|
2013-07-19 20:42:11 -05:00
|
|
|
self.map.insert(p.ref_id, node_item(i, item_path));
|
|
|
|
}
|
2013-08-03 11:45:23 -05:00
|
|
|
for tm in methods.iter() {
|
2013-09-03 00:34:37 -05:00
|
|
|
let ext = { self.extend(path_name(i.ident)) };
|
2013-07-19 20:42:11 -05:00
|
|
|
let d_id = ast_util::local_def(i.id);
|
2013-08-20 12:15:36 -05:00
|
|
|
match *tm {
|
|
|
|
required(ref m) => {
|
|
|
|
let entry =
|
|
|
|
node_trait_method(@(*tm).clone(), d_id, ext);
|
|
|
|
self.map.insert(m.id, entry);
|
|
|
|
}
|
|
|
|
provided(m) => {
|
|
|
|
self.map_method(d_id, ext, m, true);
|
|
|
|
}
|
|
|
|
}
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
|
|
|
|
match i.node {
|
|
|
|
item_mod(_) | item_foreign_mod(_) => {
|
|
|
|
self.path.push(path_mod(i.ident));
|
|
|
|
}
|
2013-08-30 02:47:10 -05:00
|
|
|
item_impl(*) => {} // this was guessed above.
|
2013-07-19 20:42:11 -05:00
|
|
|
_ => self.path.push(path_name(i.ident))
|
|
|
|
}
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_item(self, i, ());
|
2013-07-19 20:42:11 -05:00
|
|
|
self.path.pop();
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
fn visit_pat(&mut self, pat: @Pat, _: ()) {
|
2013-07-19 20:42:11 -05:00
|
|
|
self.map_pat(pat);
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_pat(self, pat, ())
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
fn visit_expr(&mut self, expr: @Expr, _: ()) {
|
2013-07-19 20:42:11 -05:00
|
|
|
self.map_expr(expr)
|
|
|
|
}
|
|
|
|
|
2013-09-01 20:45:37 -05:00
|
|
|
fn visit_stmt(&mut self, stmt: @Stmt, _: ()) {
|
2013-07-19 20:42:11 -05:00
|
|
|
self.map_stmt(stmt)
|
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_fn(&mut self,
|
2013-07-19 20:42:11 -05:00
|
|
|
function_kind: &fn_kind,
|
|
|
|
function_declaration: &fn_decl,
|
|
|
|
block: &Block,
|
2013-08-31 11:13:04 -05:00
|
|
|
span: Span,
|
2013-07-19 20:42:11 -05:00
|
|
|
node_id: NodeId,
|
|
|
|
_: ()) {
|
|
|
|
self.map_fn(function_kind, function_declaration, block, span, node_id)
|
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_block(&mut self, block: &Block, _: ()) {
|
2013-07-19 20:42:11 -05:00
|
|
|
self.map_block(block)
|
|
|
|
}
|
|
|
|
|
2013-08-08 07:23:25 -05:00
|
|
|
fn visit_ty(&mut self, typ: &Ty, _: ()) {
|
|
|
|
visit::walk_ty(self, typ, ())
|
2013-07-19 20:42:11 -05:00
|
|
|
}
|
2012-02-14 17:21:53 -06:00
|
|
|
}
|
|
|
|
|
2013-08-11 12:23:40 -05:00
|
|
|
pub fn map_crate(diag: @mut span_handler, c: &Crate) -> map {
|
2013-02-04 16:02:01 -06:00
|
|
|
let cx = @mut Ctx {
|
2013-04-03 08:28:36 -05:00
|
|
|
map: @mut HashMap::new(),
|
2013-02-04 16:02:01 -06:00
|
|
|
path: ~[],
|
2013-01-17 10:55:28 -06:00
|
|
|
diag: diag,
|
|
|
|
};
|
2013-08-08 07:23:25 -05:00
|
|
|
visit::walk_crate(cx, c, ());
|
2013-03-23 20:45:27 -05:00
|
|
|
cx.map
|
2011-06-19 15:41:21 -05:00
|
|
|
}
|
|
|
|
|
2012-02-14 17:21:53 -06:00
|
|
|
// Used for items loaded from external crate that are being inlined into this
|
2012-03-02 15:14:10 -06:00
|
|
|
// crate. The `path` should be the path to the item but should not include
|
|
|
|
// the item itself.
|
2013-08-11 12:23:40 -05:00
|
|
|
pub fn map_decoded_item(diag: @mut span_handler,
|
2013-02-04 16:02:01 -06:00
|
|
|
map: map,
|
2013-04-17 11:15:08 -05:00
|
|
|
path: path,
|
|
|
|
ii: &inlined_item) {
|
2012-02-14 17:21:53 -06:00
|
|
|
// I believe it is ok for the local IDs of inlined items from other crates
|
|
|
|
// to overlap with the local ids from this crate, so just generate the ids
|
2013-07-19 20:42:11 -05:00
|
|
|
// starting from 0.
|
2013-02-04 16:02:01 -06:00
|
|
|
let cx = @mut Ctx {
|
2013-03-23 20:45:27 -05:00
|
|
|
map: map,
|
2013-07-02 14:47:32 -05:00
|
|
|
path: path.clone(),
|
2013-01-17 10:55:28 -06:00
|
|
|
diag: diag,
|
|
|
|
};
|
2012-03-02 15:14:10 -06:00
|
|
|
|
2013-09-26 23:53:40 -05:00
|
|
|
// Methods get added to the AST map when their impl is visited. Since we
|
2012-03-02 15:14:10 -06:00
|
|
|
// don't decode and instantiate the impl, but just the method, we have to
|
2013-09-26 23:53:40 -05:00
|
|
|
// add it to the table now. Likewise with foreign items.
|
2013-04-17 11:15:08 -05:00
|
|
|
match *ii {
|
2013-07-19 20:42:11 -05:00
|
|
|
ii_item(*) => {} // fallthrough
|
|
|
|
ii_foreign(i) => {
|
|
|
|
cx.map.insert(i.id, node_foreign_item(i,
|
|
|
|
AbiSet::Intrinsic(),
|
|
|
|
i.vis, // Wrong but OK
|
|
|
|
@path));
|
2012-02-22 09:57:23 -06:00
|
|
|
}
|
2013-07-19 20:42:11 -05:00
|
|
|
ii_method(impl_did, is_provided, m) => {
|
|
|
|
cx.map_method(impl_did, @path, m, is_provided);
|
2012-08-02 17:52:25 -05:00
|
|
|
}
|
2011-06-19 15:41:21 -05:00
|
|
|
}
|
2013-03-15 14:24:24 -05:00
|
|
|
|
2013-07-19 20:42:11 -05:00
|
|
|
// visit the item / method contents and add those to the map:
|
2013-08-08 07:23:25 -05:00
|
|
|
ii.accept((), cx);
|
2012-08-17 16:09:20 -05:00
|
|
|
}
|
|
|
|
|
2013-07-27 03:25:59 -05:00
|
|
|
pub fn node_id_to_str(map: map, id: NodeId, itr: @ident_interner) -> ~str {
|
2013-02-05 21:41:45 -06:00
|
|
|
match map.find(&id) {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("unknown node (id={})", id)
|
2012-03-28 14:54:06 -05:00
|
|
|
}
|
2013-03-23 20:45:27 -05:00
|
|
|
Some(&node_item(item, path)) => {
|
2013-05-11 23:25:31 -05:00
|
|
|
let path_str = path_ident_to_str(path, item.ident, itr);
|
2012-08-09 11:59:50 -05:00
|
|
|
let item_str = match item.node {
|
2013-06-21 20:46:34 -05:00
|
|
|
item_static(*) => ~"static",
|
2012-08-09 11:59:50 -05:00
|
|
|
item_fn(*) => ~"fn",
|
|
|
|
item_mod(*) => ~"mod",
|
|
|
|
item_foreign_mod(*) => ~"foreign mod",
|
|
|
|
item_ty(*) => ~"ty",
|
|
|
|
item_enum(*) => ~"enum",
|
2012-12-10 15:47:54 -06:00
|
|
|
item_struct(*) => ~"struct",
|
2012-08-09 11:59:50 -05:00
|
|
|
item_trait(*) => ~"trait",
|
|
|
|
item_impl(*) => ~"impl",
|
|
|
|
item_mac(*) => ~"macro"
|
|
|
|
};
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("{} {} (id={})", item_str, path_str, id)
|
2012-03-28 14:54:06 -05:00
|
|
|
}
|
2013-03-23 20:45:27 -05:00
|
|
|
Some(&node_foreign_item(item, abi, _, path)) => {
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("foreign item {} with abi {:?} (id={})",
|
2013-05-11 23:25:31 -05:00
|
|
|
path_ident_to_str(path, item.ident, itr), abi, id)
|
2012-03-28 14:54:06 -05:00
|
|
|
}
|
2013-03-23 20:45:27 -05:00
|
|
|
Some(&node_method(m, _, path)) => {
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("method {} in {} (id={})",
|
2013-06-12 12:02:55 -05:00
|
|
|
itr.get(m.ident.name), path_to_str(*path, itr), id)
|
2012-03-28 14:54:06 -05:00
|
|
|
}
|
2013-03-23 20:45:27 -05:00
|
|
|
Some(&node_trait_method(ref tm, _, path)) => {
|
2013-02-18 00:20:36 -06:00
|
|
|
let m = ast_util::trait_method_to_ty_method(&**tm);
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("method {} in {} (id={})",
|
2013-06-12 12:02:55 -05:00
|
|
|
itr.get(m.ident.name), path_to_str(*path, itr), id)
|
2012-08-02 17:52:25 -05:00
|
|
|
}
|
2013-03-23 20:45:27 -05:00
|
|
|
Some(&node_variant(ref variant, _, path)) => {
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("variant {} in {} (id={})",
|
2013-06-12 12:02:55 -05:00
|
|
|
itr.get(variant.node.name.name), path_to_str(*path, itr), id)
|
2012-03-28 14:54:06 -05:00
|
|
|
}
|
2013-03-23 20:45:27 -05:00
|
|
|
Some(&node_expr(expr)) => {
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("expr {} (id={})", pprust::expr_to_str(expr, itr), id)
|
2012-03-28 14:54:06 -05:00
|
|
|
}
|
2013-03-15 14:24:24 -05:00
|
|
|
Some(&node_callee_scope(expr)) => {
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("callee_scope {} (id={})", pprust::expr_to_str(expr, itr), id)
|
2013-03-15 14:24:24 -05:00
|
|
|
}
|
2013-03-23 20:45:27 -05:00
|
|
|
Some(&node_stmt(stmt)) => {
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("stmt {} (id={})",
|
2013-04-17 11:15:08 -05:00
|
|
|
pprust::stmt_to_str(stmt, itr), id)
|
2012-08-17 16:09:20 -05:00
|
|
|
}
|
2013-08-23 11:45:02 -05:00
|
|
|
Some(&node_arg(pat)) => {
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("arg {} (id={})", pprust::pat_to_str(pat, itr), id)
|
2012-03-28 14:54:06 -05:00
|
|
|
}
|
2013-03-15 14:24:24 -05:00
|
|
|
Some(&node_local(ident)) => {
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("local (id={}, name={})", id, itr.get(ident.name))
|
2012-03-28 14:54:06 -05:00
|
|
|
}
|
2013-07-29 15:44:53 -05:00
|
|
|
Some(&node_block(ref block)) => {
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("block {} (id={})", pprust::block_to_str(block, itr), id)
|
2012-03-28 14:54:06 -05:00
|
|
|
}
|
2013-07-29 15:44:53 -05:00
|
|
|
Some(&node_struct_ctor(_, _, path)) => {
|
2013-09-27 23:01:58 -05:00
|
|
|
format!("struct_ctor {} (id={})", path_to_str(*path, itr), id)
|
2012-10-24 16:36:00 -05:00
|
|
|
}
|
2012-03-28 14:54:06 -05:00
|
|
|
}
|
|
|
|
}
|
2012-11-30 13:24:16 -06:00
|
|
|
|
2013-07-27 03:25:59 -05:00
|
|
|
pub fn node_item_query<Result>(items: map, id: NodeId,
|
2013-03-07 16:38:38 -06:00
|
|
|
query: &fn(@item) -> Result,
|
2013-04-17 11:15:08 -05:00
|
|
|
error_msg: ~str) -> Result {
|
2013-02-05 21:41:45 -06:00
|
|
|
match items.find(&id) {
|
2013-03-23 20:45:27 -05:00
|
|
|
Some(&node_item(it, _)) => query(it),
|
2013-09-27 23:01:58 -05:00
|
|
|
_ => fail2!("{}", error_msg)
|
2012-11-30 13:24:16 -06:00
|
|
|
}
|
|
|
|
}
|