2011-07-18 21:14:01 -05:00
|
|
|
// A pass that annotates for each loops and functions with the free
|
|
|
|
// variables that they contain.
|
2011-07-18 19:26:37 -05:00
|
|
|
|
|
|
|
import std::map;
|
|
|
|
import std::map::*;
|
|
|
|
import syntax::ast;
|
|
|
|
import syntax::walk;
|
|
|
|
import driver::session;
|
2011-07-18 21:14:01 -05:00
|
|
|
import middle::resolve;
|
2011-07-18 19:26:37 -05:00
|
|
|
import syntax::codemap::span;
|
|
|
|
|
2011-07-18 21:14:01 -05:00
|
|
|
export annotate_freevars;
|
|
|
|
export freevar_set;
|
|
|
|
export freevar_map;
|
2011-07-18 19:26:37 -05:00
|
|
|
|
2011-07-20 20:15:56 -05:00
|
|
|
type freevar_set = @ast::node_id[];
|
2011-07-18 21:14:01 -05:00
|
|
|
type freevar_map = hashmap[ast::node_id, freevar_set];
|
2011-07-18 19:26:37 -05:00
|
|
|
|
|
|
|
// Searches through part of the AST for all references to locals or
|
|
|
|
// upvars in this frame and returns the list of definition IDs thus found.
|
|
|
|
// Since we want to be able to collect upvars in some arbitrary piece
|
|
|
|
// of the AST, we take a walker function that we invoke with a visitor
|
|
|
|
// in order to start the search.
|
2011-07-18 21:14:01 -05:00
|
|
|
fn collect_freevars(&resolve::def_map def_map, &session::session sess,
|
|
|
|
&fn (&walk::ast_visitor) walker,
|
2011-07-20 20:15:56 -05:00
|
|
|
ast::node_id[] initial_decls) -> freevar_set {
|
2011-07-18 19:26:37 -05:00
|
|
|
type env =
|
|
|
|
@rec(mutable ast::node_id[] refs,
|
|
|
|
hashmap[ast::node_id, ()] decls,
|
|
|
|
resolve::def_map def_map,
|
|
|
|
session::session sess);
|
|
|
|
|
|
|
|
fn walk_fn(env e, &ast::_fn f, &ast::ty_param[] tps, &span sp,
|
|
|
|
&ast::fn_ident i, ast::node_id nid) {
|
|
|
|
for (ast::arg a in f.decl.inputs) { e.decls.insert(a.id, ()); }
|
|
|
|
}
|
|
|
|
fn walk_expr(env e, &@ast::expr expr) {
|
|
|
|
alt (expr.node) {
|
|
|
|
case (ast::expr_path(?path)) {
|
|
|
|
if (! e.def_map.contains_key(expr.id)) {
|
|
|
|
e.sess.span_fatal(expr.span,
|
2011-07-18 21:14:01 -05:00
|
|
|
"internal error in collect_freevars");
|
2011-07-18 19:26:37 -05:00
|
|
|
}
|
|
|
|
alt (e.def_map.get(expr.id)) {
|
|
|
|
case (ast::def_arg(?did)) { e.refs += ~[did._1]; }
|
|
|
|
case (ast::def_local(?did)) { e.refs += ~[did._1]; }
|
|
|
|
case (ast::def_binding(?did)) { e.refs += ~[did._1]; }
|
|
|
|
case (_) { /* no-op */ }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case (_) { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn walk_local(env e, &@ast::local local) {
|
|
|
|
e.decls.insert(local.node.id, ());
|
|
|
|
}
|
|
|
|
fn walk_pat(env e, &@ast::pat p) {
|
|
|
|
alt (p.node) {
|
|
|
|
case (ast::pat_bind(_)) {
|
|
|
|
e.decls.insert(p.id, ());
|
|
|
|
}
|
|
|
|
case (_) {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let hashmap[ast::node_id, ()] decls = new_int_hash[()]();
|
|
|
|
for (ast::node_id decl in initial_decls) { decls.insert(decl, ()); }
|
|
|
|
|
|
|
|
let env e =
|
|
|
|
@rec(mutable refs=~[],
|
|
|
|
decls=decls,
|
2011-07-18 21:14:01 -05:00
|
|
|
def_map=def_map,
|
|
|
|
sess=sess);
|
2011-07-18 19:26:37 -05:00
|
|
|
auto visitor =
|
|
|
|
@rec(visit_fn_pre=bind walk_fn(e, _, _, _, _, _),
|
|
|
|
visit_local_pre=bind walk_local(e, _),
|
|
|
|
visit_expr_pre=bind walk_expr(e, _),
|
|
|
|
visit_pat_pre=bind walk_pat(e, _)
|
|
|
|
with walk::default_visitor());
|
|
|
|
walker(*visitor);
|
|
|
|
|
2011-07-18 21:14:01 -05:00
|
|
|
// Calculate (refs - decls). This is the set of captured upvars.
|
2011-07-20 20:15:56 -05:00
|
|
|
auto result = ~[];
|
2011-07-18 19:26:37 -05:00
|
|
|
for (ast::node_id ref_id_ in e.refs) {
|
|
|
|
auto ref_id = ref_id_;
|
|
|
|
if (!decls.contains_key(ref_id)) { result += ~[ref_id]; }
|
|
|
|
}
|
2011-07-20 20:15:56 -05:00
|
|
|
ret @result;
|
2011-07-18 19:26:37 -05:00
|
|
|
}
|
|
|
|
|
2011-07-18 21:14:01 -05:00
|
|
|
// Build a map from every function and for-each body to a set of the
|
|
|
|
// freevars contained in it. The implementation is not particularly
|
|
|
|
// efficient as it fully recomputes the free variables at every
|
|
|
|
// node of interest rather than building up the free variables in
|
|
|
|
// one pass. This could be improved upon if it turns out to matter.
|
|
|
|
fn annotate_freevars(&session::session sess, &resolve::def_map def_map,
|
|
|
|
&@ast::crate crate) -> freevar_map {
|
|
|
|
type env =
|
|
|
|
rec(freevar_map freevars,
|
|
|
|
resolve::def_map def_map,
|
|
|
|
session::session sess);
|
|
|
|
|
|
|
|
fn walk_fn(env e, &ast::_fn f, &ast::ty_param[] tps, &span sp,
|
|
|
|
&ast::fn_ident i, ast::node_id nid) {
|
|
|
|
auto walker = bind walk::walk_fn(_, f, tps, sp, i, nid);
|
|
|
|
auto vars = collect_freevars(e.def_map, e.sess, walker, ~[]);
|
|
|
|
e.freevars.insert(nid, vars);
|
|
|
|
}
|
|
|
|
fn walk_expr(env e, &@ast::expr expr) {
|
|
|
|
alt (expr.node) {
|
|
|
|
ast::expr_for_each(?local, _, ?body) {
|
|
|
|
auto vars = collect_freevars(e.def_map, e.sess,
|
|
|
|
bind walk::walk_block(_, body),
|
|
|
|
~[local.node.id]);
|
|
|
|
e.freevars.insert(body.node.id, vars);
|
|
|
|
}
|
|
|
|
_ {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let env e =
|
|
|
|
rec(freevars = new_int_hash(), def_map=def_map, sess=sess);
|
|
|
|
auto visitor =
|
|
|
|
rec(visit_fn_pre=bind walk_fn(e, _, _, _, _, _),
|
|
|
|
visit_expr_pre=bind walk_expr(e, _)
|
|
|
|
with walk::default_visitor());
|
|
|
|
walk::walk_crate(visitor, *crate);
|
|
|
|
|
|
|
|
ret e.freevars;
|
|
|
|
}
|
|
|
|
|
2011-07-18 19:26:37 -05:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
|
|
|
// End:
|