2011-12-13 16:25:51 -08:00
|
|
|
import option;
|
2012-01-09 16:24:53 +01:00
|
|
|
import std::map;
|
2011-07-05 11:48:19 +02:00
|
|
|
import syntax::ast::*;
|
2011-09-15 13:18:20 +02:00
|
|
|
import syntax::ast_util;
|
2011-09-12 16:13:28 -07:00
|
|
|
import syntax::{visit, codemap};
|
2011-06-19 22:41:21 +02:00
|
|
|
|
2012-02-03 09:53:37 +01:00
|
|
|
enum path_elt { path_mod(str), path_name(str) }
|
|
|
|
type path = [path_elt];
|
|
|
|
|
2012-01-19 14:24:03 -08:00
|
|
|
enum ast_node {
|
2012-02-03 09:53:37 +01:00
|
|
|
node_item(@item, @path),
|
|
|
|
node_native_item(@native_item, @path),
|
|
|
|
node_method(@method, @path),
|
2012-02-08 10:05:44 +01:00
|
|
|
node_variant(variant, def_id, @path),
|
2012-01-19 17:56:05 -08:00
|
|
|
node_expr(@expr),
|
2011-09-15 13:18:20 +02:00
|
|
|
// Locals are numbered, because the alias analysis needs to know in which
|
|
|
|
// order they are introduced.
|
2012-01-19 17:56:05 -08:00
|
|
|
node_arg(arg, uint),
|
|
|
|
node_local(uint),
|
|
|
|
node_res_ctor(@item),
|
2011-06-19 22:41:21 +02:00
|
|
|
}
|
|
|
|
|
2012-01-09 16:24:53 +01:00
|
|
|
type map = std::map::map<node_id, ast_node>;
|
2012-02-03 09:53:37 +01:00
|
|
|
type ctx = {map: map, mutable path: path, mutable local_id: uint};
|
|
|
|
type vt = visit::vt<ctx>;
|
2011-06-19 22:41:21 +02:00
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn map_crate(c: crate) -> map {
|
2012-02-03 09:53:37 +01:00
|
|
|
let cx = {map: std::map::new_int_hash(),
|
|
|
|
mutable path: [],
|
|
|
|
mutable local_id: 0u};
|
|
|
|
visit::visit_crate(c, cx, visit::mk_vt(@{
|
|
|
|
visit_item: map_item,
|
|
|
|
visit_native_item: map_native_item,
|
|
|
|
visit_expr: map_expr,
|
|
|
|
visit_fn: map_fn,
|
|
|
|
visit_local: map_local,
|
|
|
|
visit_arm: map_arm
|
|
|
|
with *visit::default_visitor()
|
|
|
|
}));
|
2011-09-15 13:18:20 +02:00
|
|
|
ret cx.map;
|
2011-06-19 22:41:21 +02:00
|
|
|
}
|
|
|
|
|
2012-02-03 09:53:37 +01:00
|
|
|
fn map_fn(fk: visit::fn_kind, decl: fn_decl, body: blk,
|
|
|
|
sp: codemap::span, id: node_id, cx: ctx, v: vt) {
|
2011-12-20 11:03:21 -08:00
|
|
|
for a in decl.inputs {
|
2011-09-15 13:18:20 +02:00
|
|
|
cx.map.insert(a.id, node_arg(a, cx.local_id));
|
|
|
|
cx.local_id += 1u;
|
|
|
|
}
|
2012-02-03 09:53:37 +01:00
|
|
|
visit::visit_fn(fk, decl, body, sp, id, cx, v);
|
2011-09-15 13:18:20 +02:00
|
|
|
}
|
|
|
|
|
2012-02-03 09:53:37 +01:00
|
|
|
fn map_local(loc: @local, cx: ctx, v: vt) {
|
2012-01-30 21:00:57 -08:00
|
|
|
pat_util::pat_bindings(loc.node.pat) {|p_id, _s, _p|
|
|
|
|
cx.map.insert(p_id, node_local(cx.local_id));
|
2011-09-15 13:18:20 +02:00
|
|
|
cx.local_id += 1u;
|
2011-10-21 12:41:42 +02:00
|
|
|
};
|
2012-02-03 09:53:37 +01:00
|
|
|
visit::visit_local(loc, cx, v);
|
2011-09-15 13:18:20 +02:00
|
|
|
}
|
|
|
|
|
2012-02-03 09:53:37 +01:00
|
|
|
fn map_arm(arm: arm, cx: ctx, v: vt) {
|
2012-01-30 21:00:57 -08:00
|
|
|
pat_util::pat_bindings(arm.pats[0]) {|p_id, _s, _p|
|
|
|
|
cx.map.insert(p_id, node_local(cx.local_id));
|
2011-09-15 13:18:20 +02:00
|
|
|
cx.local_id += 1u;
|
2011-10-21 12:41:42 +02:00
|
|
|
};
|
2012-02-03 09:53:37 +01:00
|
|
|
visit::visit_arm(arm, cx, v);
|
2011-09-14 15:30:59 +02:00
|
|
|
}
|
|
|
|
|
2012-02-03 09:53:37 +01:00
|
|
|
fn map_item(i: @item, cx: ctx, v: vt) {
|
|
|
|
cx.map.insert(i.id, node_item(i, @cx.path));
|
2011-07-27 14:19:39 +02:00
|
|
|
alt i.node {
|
2011-12-20 16:33:55 +01:00
|
|
|
item_impl(_, _, _, ms) {
|
2012-02-03 09:53:37 +01:00
|
|
|
for m in ms { cx.map.insert(m.id, node_method(m, @cx.path)); }
|
2011-12-19 01:36:37 -05:00
|
|
|
}
|
2011-12-22 17:49:54 +01:00
|
|
|
item_res(_, _, _, dtor_id, ctor_id) {
|
2011-12-18 23:32:38 -05:00
|
|
|
cx.map.insert(ctor_id, node_res_ctor(i));
|
2012-02-03 09:53:37 +01:00
|
|
|
cx.map.insert(dtor_id, node_item(i, @cx.path));
|
2011-12-16 14:41:12 +01:00
|
|
|
}
|
2012-02-08 10:05:44 +01:00
|
|
|
item_enum(vs, _) {
|
|
|
|
for v in vs {
|
|
|
|
cx.map.insert(v.node.id, node_variant(
|
|
|
|
v, ast_util::local_def(i.id),
|
|
|
|
@(cx.path + [path_name(i.ident)])));
|
|
|
|
}
|
|
|
|
}
|
2011-07-27 14:19:39 +02:00
|
|
|
_ { }
|
2011-06-19 22:41:21 +02:00
|
|
|
}
|
2012-02-03 09:53:37 +01:00
|
|
|
alt i.node {
|
|
|
|
item_mod(_) | item_native_mod(_) { cx.path += [path_mod(i.ident)]; }
|
|
|
|
_ { cx.path += [path_name(i.ident)]; }
|
|
|
|
}
|
|
|
|
visit::visit_item(i, cx, v);
|
|
|
|
vec::pop(cx.path);
|
2011-06-19 22:41:21 +02:00
|
|
|
}
|
|
|
|
|
2012-02-03 09:53:37 +01:00
|
|
|
fn map_native_item(i: @native_item, cx: ctx, v: vt) {
|
|
|
|
cx.map.insert(i.id, node_native_item(i, @cx.path));
|
|
|
|
visit::visit_native_item(i, cx, v);
|
2011-06-19 22:41:21 +02:00
|
|
|
}
|
|
|
|
|
2012-02-03 09:53:37 +01:00
|
|
|
fn map_expr(ex: @expr, cx: ctx, v: vt) {
|
2011-09-15 13:18:20 +02:00
|
|
|
cx.map.insert(ex.id, node_expr(ex));
|
2012-02-03 09:53:37 +01:00
|
|
|
visit::visit_expr(ex, cx, v);
|
2011-06-19 22:41:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|