rust/src/librustc/middle/cfg/construct.rs

613 lines
23 KiB
Rust
Raw Normal View History

2014-07-27 07:50:46 -04:00
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
// 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 rustc_data_structures::graph;
use middle::cfg::*;
use middle::def;
use middle::pat_util;
use middle::ty;
use syntax::ast;
2014-09-07 20:09:06 +03:00
use syntax::ptr::P;
2015-07-31 00:04:06 -07:00
use rustc_front::hir;
struct CFGBuilder<'a, 'tcx: 'a> {
tcx: &'a ty::ctxt<'tcx>,
graph: CFGGraph,
fn_exit: CFGIndex,
loop_scopes: Vec<LoopScope>,
}
2015-03-30 09:38:44 -04:00
#[derive(Copy, Clone)]
struct LoopScope {
loop_id: ast::NodeId, // id of loop/while node
continue_index: CFGIndex, // where to go on a `loop`
break_index: CFGIndex, // where to go on a `break
}
2014-03-06 05:07:47 +02:00
pub fn construct(tcx: &ty::ctxt,
2015-07-31 00:04:06 -07:00
blk: &hir::Block) -> CFG {
let mut graph = graph::Graph::new();
let entry = graph.add_node(CFGNodeData::Entry);
// `fn_exit` is target of return exprs, which lies somewhere
// outside input `blk`. (Distinguishing `fn_exit` and `block_exit`
// also resolves chicken-and-egg problem that arises if you try to
// have return exprs jump to `block_exit` during construction.)
let fn_exit = graph.add_node(CFGNodeData::Exit);
let block_exit;
let mut cfg_builder = CFGBuilder {
graph: graph,
fn_exit: fn_exit,
tcx: tcx,
loop_scopes: Vec::new()
};
block_exit = cfg_builder.block(blk, entry);
cfg_builder.add_contained_edge(block_exit, fn_exit);
let CFGBuilder {graph, ..} = cfg_builder;
CFG {graph: graph,
entry: entry,
exit: fn_exit}
}
impl<'a, 'tcx> CFGBuilder<'a, 'tcx> {
2015-07-31 00:04:06 -07:00
fn block(&mut self, blk: &hir::Block, pred: CFGIndex) -> CFGIndex {
let mut stmts_exit = pred;
2015-01-31 12:20:46 -05:00
for stmt in &blk.stmts {
2014-09-07 20:09:06 +03:00
stmts_exit = self.stmt(&**stmt, stmts_exit);
}
2014-09-07 20:09:06 +03:00
let expr_exit = self.opt_expr(&blk.expr, stmts_exit);
self.add_ast_node(blk.id, &[expr_exit])
}
2015-07-31 00:04:06 -07:00
fn stmt(&mut self, stmt: &hir::Stmt, pred: CFGIndex) -> CFGIndex {
match stmt.node {
2015-07-31 00:04:06 -07:00
hir::StmtDecl(ref decl, id) => {
let exit = self.decl(&**decl, pred);
self.add_ast_node(id, &[exit])
}
2015-07-31 00:04:06 -07:00
hir::StmtExpr(ref expr, id) | hir::StmtSemi(ref expr, id) => {
2014-09-07 20:09:06 +03:00
let exit = self.expr(&**expr, pred);
self.add_ast_node(id, &[exit])
}
}
}
2015-07-31 00:04:06 -07:00
fn decl(&mut self, decl: &hir::Decl, pred: CFGIndex) -> CFGIndex {
match decl.node {
2015-07-31 00:04:06 -07:00
hir::DeclLocal(ref local) => {
2014-09-07 20:09:06 +03:00
let init_exit = self.opt_expr(&local.init, pred);
2014-05-16 10:15:33 -07:00
self.pat(&*local.pat, init_exit)
}
2015-07-31 00:04:06 -07:00
hir::DeclItem(_) => {
pred
}
}
}
2015-07-31 00:04:06 -07:00
fn pat(&mut self, pat: &hir::Pat, pred: CFGIndex) -> CFGIndex {
match pat.node {
2015-07-31 00:04:06 -07:00
hir::PatIdent(_, _, None) |
hir::PatEnum(_, None) |
hir::PatQPath(..) |
hir::PatLit(..) |
hir::PatRange(..) |
hir::PatWild(_) => {
self.add_ast_node(pat.id, &[pred])
}
2015-07-31 00:04:06 -07:00
hir::PatBox(ref subpat) |
hir::PatRegion(ref subpat, _) |
hir::PatIdent(_, _, Some(ref subpat)) => {
2014-05-16 10:15:33 -07:00
let subpat_exit = self.pat(&**subpat, pred);
self.add_ast_node(pat.id, &[subpat_exit])
}
2015-07-31 00:04:06 -07:00
hir::PatEnum(_, Some(ref subpats)) |
hir::PatTup(ref subpats) => {
2014-09-07 20:09:06 +03:00
let pats_exit = self.pats_all(subpats.iter(), pred);
self.add_ast_node(pat.id, &[pats_exit])
}
2015-07-31 00:04:06 -07:00
hir::PatStruct(_, ref subpats, _) => {
let pats_exit =
self.pats_all(subpats.iter().map(|f| &f.node.pat), pred);
self.add_ast_node(pat.id, &[pats_exit])
}
2015-07-31 00:04:06 -07:00
hir::PatVec(ref pre, ref vec, ref post) => {
2014-09-07 20:09:06 +03:00
let pre_exit = self.pats_all(pre.iter(), pred);
let vec_exit = self.pats_all(vec.iter(), pre_exit);
let post_exit = self.pats_all(post.iter(), vec_exit);
self.add_ast_node(pat.id, &[post_exit])
}
}
}
2015-07-31 00:04:06 -07:00
fn pats_all<'b, I: Iterator<Item=&'b P<hir::Pat>>>(&mut self,
2014-09-07 20:09:06 +03:00
pats: I,
pred: CFGIndex) -> CFGIndex {
//! Handles case where all of the patterns must match.
2014-09-07 20:09:06 +03:00
pats.fold(pred, |pred, pat| self.pat(&**pat, pred))
}
2015-07-31 00:04:06 -07:00
fn expr(&mut self, expr: &hir::Expr, pred: CFGIndex) -> CFGIndex {
match expr.node {
2015-07-31 00:04:06 -07:00
hir::ExprBlock(ref blk) => {
2014-05-16 10:15:33 -07:00
let blk_exit = self.block(&**blk, pred);
self.add_ast_node(expr.id, &[blk_exit])
}
2015-07-31 00:04:06 -07:00
hir::ExprIf(ref cond, ref then, None) => {
//
// [pred]
// |
// v 1
// [cond]
// |
// / \
// / \
// v 2 *
// [then] |
// | |
// v 3 v 4
// [..expr..]
//
2014-09-07 20:09:06 +03:00
let cond_exit = self.expr(&**cond, pred); // 1
2014-05-16 10:15:33 -07:00
let then_exit = self.block(&**then, cond_exit); // 2
self.add_ast_node(expr.id, &[cond_exit, then_exit]) // 3,4
}
2015-07-31 00:04:06 -07:00
hir::ExprIf(ref cond, ref then, Some(ref otherwise)) => {
//
// [pred]
// |
// v 1
// [cond]
// |
// / \
// / \
// v 2 v 3
// [then][otherwise]
// | |
// v 4 v 5
// [..expr..]
//
2014-09-07 20:09:06 +03:00
let cond_exit = self.expr(&**cond, pred); // 1
2014-05-16 10:15:33 -07:00
let then_exit = self.block(&**then, cond_exit); // 2
2014-09-07 20:09:06 +03:00
let else_exit = self.expr(&**otherwise, cond_exit); // 3
self.add_ast_node(expr.id, &[then_exit, else_exit]) // 4, 5
}
2015-07-31 00:04:06 -07:00
hir::ExprWhile(ref cond, ref body, _) => {
//
// [pred]
// |
// v 1
// [loopback] <--+ 5
// | |
// v 2 |
// +-----[cond] |
// | | |
// | v 4 |
// | [body] -----+
// v 3
// [expr]
//
// Note that `break` and `continue` statements
// may cause additional edges.
2013-07-30 16:47:22 -07:00
// Is the condition considered part of the loop?
2014-11-17 21:39:01 +13:00
let loopback = self.add_dummy_node(&[pred]); // 1
let cond_exit = self.expr(&**cond, loopback); // 2
let expr_exit = self.add_ast_node(expr.id, &[cond_exit]); // 3
self.loop_scopes.push(LoopScope {
loop_id: expr.id,
continue_index: loopback,
break_index: expr_exit
});
2014-05-16 10:15:33 -07:00
let body_exit = self.block(&**body, cond_exit); // 4
self.add_contained_edge(body_exit, loopback); // 5
self.loop_scopes.pop();
expr_exit
}
2015-07-31 00:04:06 -07:00
hir::ExprLoop(ref body, _) => {
//
// [pred]
// |
// v 1
// [loopback] <---+
// | 4 |
// v 3 |
// [body] ------+
//
// [expr] 2
//
// Note that `break` and `loop` statements
// may cause additional edges.
2014-11-17 21:39:01 +13:00
let loopback = self.add_dummy_node(&[pred]); // 1
let expr_exit = self.add_ast_node(expr.id, &[]); // 2
self.loop_scopes.push(LoopScope {
loop_id: expr.id,
continue_index: loopback,
break_index: expr_exit,
});
2014-05-16 10:15:33 -07:00
let body_exit = self.block(&**body, loopback); // 3
self.add_contained_edge(body_exit, loopback); // 4
self.loop_scopes.pop();
expr_exit
}
2015-07-31 00:04:06 -07:00
hir::ExprMatch(ref discr, ref arms, _) => {
self.match_(expr.id, &discr, &arms, pred)
}
2015-07-31 00:04:06 -07:00
hir::ExprBinary(op, ref l, ref r) if ::rustc_front::util::lazy_binop(op.node) => {
//
// [pred]
// |
// v 1
// [l]
// |
// / \
// / \
// v 2 *
// [r] |
// | |
// v 3 v 4
// [..exit..]
//
2014-09-07 20:09:06 +03:00
let l_exit = self.expr(&**l, pred); // 1
let r_exit = self.expr(&**r, l_exit); // 2
self.add_ast_node(expr.id, &[l_exit, r_exit]) // 3,4
}
2015-07-31 00:04:06 -07:00
hir::ExprRet(ref v) => {
2014-09-07 20:09:06 +03:00
let v_exit = self.opt_expr(v, pred);
let b = self.add_ast_node(expr.id, &[v_exit]);
self.add_returning_edge(expr, b);
self.add_unreachable_node()
}
2015-07-31 00:04:06 -07:00
hir::ExprBreak(label) => {
let loop_scope = self.find_scope(expr, label.map(|l| l.node));
let b = self.add_ast_node(expr.id, &[pred]);
self.add_exiting_edge(expr, b,
loop_scope, loop_scope.break_index);
self.add_unreachable_node()
}
2015-07-31 00:04:06 -07:00
hir::ExprAgain(label) => {
let loop_scope = self.find_scope(expr, label.map(|l| l.node));
let a = self.add_ast_node(expr.id, &[pred]);
self.add_exiting_edge(expr, a,
loop_scope, loop_scope.continue_index);
self.add_unreachable_node()
}
2015-07-31 00:04:06 -07:00
hir::ExprVec(ref elems) => {
2014-09-07 20:09:06 +03:00
self.straightline(expr, pred, elems.iter().map(|e| &**e))
}
2015-07-31 00:04:06 -07:00
hir::ExprCall(ref func, ref args) => {
2014-09-07 20:09:06 +03:00
self.call(expr, pred, &**func, args.iter().map(|e| &**e))
}
2015-07-31 00:04:06 -07:00
hir::ExprMethodCall(_, _, ref args) => {
2015-01-17 16:15:52 -08:00
self.call(expr, pred, &*args[0], args[1..].iter().map(|e| &**e))
}
2015-07-31 00:04:06 -07:00
hir::ExprIndex(ref l, ref r) |
hir::ExprBinary(_, ref l, ref r) if self.tcx.is_method_call(expr.id) => {
2014-09-14 20:27:36 -07:00
self.call(expr, pred, &**l, Some(&**r).into_iter())
}
2015-07-31 00:04:06 -07:00
hir::ExprRange(ref start, ref end) => {
let fields = start.as_ref().map(|e| &**e).into_iter()
.chain(end.as_ref().map(|e| &**e));
2014-12-15 13:17:11 +13:00
self.straightline(expr, pred, fields)
2014-12-13 18:41:02 +13:00
}
2015-07-31 00:04:06 -07:00
hir::ExprUnary(_, ref e) if self.tcx.is_method_call(expr.id) => {
self.call(expr, pred, &**e, None::<hir::Expr>.iter())
}
2015-07-31 00:04:06 -07:00
hir::ExprTup(ref exprs) => {
2014-09-07 20:09:06 +03:00
self.straightline(expr, pred, exprs.iter().map(|e| &**e))
}
2015-07-31 00:04:06 -07:00
hir::ExprStruct(_, ref fields, ref base) => {
let field_cfg = self.straightline(expr, pred, fields.iter().map(|f| &*f.expr));
self.opt_expr(base, field_cfg)
}
2015-07-31 00:04:06 -07:00
hir::ExprRepeat(ref elem, ref count) => {
2014-09-07 20:09:06 +03:00
self.straightline(expr, pred, [elem, count].iter().map(|&e| &**e))
}
2015-07-31 00:04:06 -07:00
hir::ExprAssign(ref l, ref r) |
hir::ExprAssignOp(_, ref l, ref r) => {
2014-09-07 20:09:06 +03:00
self.straightline(expr, pred, [r, l].iter().map(|&e| &**e))
}
2015-07-31 00:04:06 -07:00
hir::ExprBox(Some(ref l), ref r) |
hir::ExprIndex(ref l, ref r) |
hir::ExprBinary(_, ref l, ref r) => { // NB: && and || handled earlier
2014-09-07 20:09:06 +03:00
self.straightline(expr, pred, [l, r].iter().map(|&e| &**e))
}
2015-07-31 00:04:06 -07:00
hir::ExprBox(None, ref e) |
hir::ExprAddrOf(_, ref e) |
hir::ExprCast(ref e, _) |
hir::ExprUnary(_, ref e) |
hir::ExprParen(ref e) |
hir::ExprField(ref e, _) |
hir::ExprTupField(ref e, _) => {
2014-09-14 20:27:36 -07:00
self.straightline(expr, pred, Some(&**e).into_iter())
}
2015-07-31 00:04:06 -07:00
hir::ExprInlineAsm(ref inline_asm) => {
let inputs = inline_asm.inputs.iter();
let outputs = inline_asm.outputs.iter();
let post_inputs = self.exprs(inputs.map(|a| {
debug!("cfg::construct InlineAsm id:{} input:{:?}", expr.id, a);
2014-09-07 20:09:06 +03:00
let &(_, ref expr) = a;
&**expr
}), pred);
let post_outputs = self.exprs(outputs.map(|a| {
debug!("cfg::construct InlineAsm id:{} output:{:?}", expr.id, a);
2014-09-07 20:09:06 +03:00
let &(_, ref expr, _) = a;
&**expr
}), post_inputs);
self.add_ast_node(expr.id, &[post_outputs])
}
2015-07-31 00:04:06 -07:00
hir::ExprClosure(..) |
hir::ExprLit(..) |
hir::ExprPath(..) => {
self.straightline(expr, pred, None::<hir::Expr>.iter())
}
}
}
2015-07-31 00:04:06 -07:00
fn call<'b, I: Iterator<Item=&'b hir::Expr>>(&mut self,
call_expr: &hir::Expr,
pred: CFGIndex,
2015-07-31 00:04:06 -07:00
func_or_rcvr: &hir::Expr,
2014-09-07 20:09:06 +03:00
args: I) -> CFGIndex {
let method_call = ty::MethodCall::expr(call_expr.id);
let fn_ty = match self.tcx.tables.borrow().method_map.get(&method_call) {
Some(method) => method.ty,
None => self.tcx.expr_ty_adjusted(func_or_rcvr)
};
let func_or_rcvr_exit = self.expr(func_or_rcvr, pred);
let ret = self.straightline(call_expr, func_or_rcvr_exit, args);
if fn_ty.fn_ret().diverges() {
self.add_unreachable_node()
} else {
ret
}
}
2015-07-31 00:04:06 -07:00
fn exprs<'b, I: Iterator<Item=&'b hir::Expr>>(&mut self,
2014-11-06 09:32:37 -08:00
exprs: I,
2014-09-07 20:09:06 +03:00
pred: CFGIndex) -> CFGIndex {
//! Constructs graph for `exprs` evaluated in order
exprs.fold(pred, |p, e| self.expr(e, p))
}
fn opt_expr(&mut self,
2015-07-31 00:04:06 -07:00
opt_expr: &Option<P<hir::Expr>>,
pred: CFGIndex) -> CFGIndex {
//! Constructs graph for `opt_expr` evaluated, if Some
2014-09-07 20:09:06 +03:00
opt_expr.iter().fold(pred, |p, e| self.expr(&**e, p))
}
2015-07-31 00:04:06 -07:00
fn straightline<'b, I: Iterator<Item=&'b hir::Expr>>(&mut self,
expr: &hir::Expr,
pred: CFGIndex,
2014-09-07 20:09:06 +03:00
subexprs: I) -> CFGIndex {
//! Handles case of an expression that evaluates `subexprs` in order
2014-09-07 20:09:06 +03:00
let subexprs_exit = self.exprs(subexprs, pred);
self.add_ast_node(expr.id, &[subexprs_exit])
}
2015-07-31 00:04:06 -07:00
fn match_(&mut self, id: ast::NodeId, discr: &hir::Expr,
arms: &[hir::Arm], pred: CFGIndex) -> CFGIndex {
// The CFG for match expression is quite complex, so no ASCII
// art for it (yet).
//
// The CFG generated below matches roughly what trans puts
// out. Each pattern and guard is visited in parallel, with
// arms containing multiple patterns generating multiple nodes
// for the same guard expression. The guard expressions chain
// into each other from top to bottom, with a specific
// exception to allow some additional valid programs
// (explained below). Trans differs slightly in that the
// pattern matching may continue after a guard but the visible
// behaviour should be the same.
//
// What is going on is explained in further comments.
// Visit the discriminant expression
let discr_exit = self.expr(discr, pred);
// Add a node for the exit of the match expression as a whole.
let expr_exit = self.add_ast_node(id, &[]);
// Keep track of the previous guard expressions
let mut prev_guards = Vec::new();
// Track if the previous pattern contained bindings or wildcards
let mut prev_has_bindings = false;
for arm in arms {
// Add an exit node for when we've visited all the
// patterns and the guard (if there is one) in the arm.
let arm_exit = self.add_dummy_node(&[]);
for pat in &arm.pats {
// Visit the pattern, coming from the discriminant exit
let mut pat_exit = self.pat(&**pat, discr_exit);
// If there is a guard expression, handle it here
if let Some(ref guard) = arm.guard {
// Add a dummy node for the previous guard
// expression to target
let guard_start = self.add_dummy_node(&[pat_exit]);
// Visit the guard expression
let guard_exit = self.expr(&**guard, guard_start);
let this_has_bindings = pat_util::pat_contains_bindings_or_wild(
&self.tcx.def_map, &**pat);
// If both this pattern and the previous pattern
// were free of bindings, they must consist only
// of "constant" patterns. Note we cannot match an
// all-constant pattern, fail the guard, and then
// match *another* all-constant pattern. This is
// because if the previous pattern matches, then
// we *cannot* match this one, unless all the
// constants are the same (which is rejected by
// `check_match`).
//
// We can use this to be smarter about the flow
// along guards. If the previous pattern matched,
// then we know we will not visit the guard in
// this one (whether or not the guard succeeded),
// if the previous pattern failed, then we know
// the guard for that pattern will not have been
// visited. Thus, it is not possible to visit both
// the previous guard and the current one when
// both patterns consist only of constant
// sub-patterns.
//
// However, if the above does not hold, then all
// previous guards need to be wired to visit the
// current guard pattern.
if prev_has_bindings || this_has_bindings {
while let Some(prev) = prev_guards.pop() {
self.add_contained_edge(prev, guard_start);
}
}
prev_has_bindings = this_has_bindings;
// Push the guard onto the list of previous guards
prev_guards.push(guard_exit);
// Update the exit node for the pattern
pat_exit = guard_exit;
}
// Add an edge from the exit of this pattern to the
// exit of the arm
self.add_contained_edge(pat_exit, arm_exit);
}
// Visit the body of this arm
let body_exit = self.expr(&arm.body, arm_exit);
// Link the body to the exit of the expression
self.add_contained_edge(body_exit, expr_exit);
}
expr_exit
}
fn add_dummy_node(&mut self, preds: &[CFGIndex]) -> CFGIndex {
self.add_node(CFGNodeData::Dummy, preds)
}
fn add_ast_node(&mut self, id: ast::NodeId, preds: &[CFGIndex]) -> CFGIndex {
assert!(id != ast::DUMMY_NODE_ID);
self.add_node(CFGNodeData::AST(id), preds)
}
fn add_unreachable_node(&mut self) -> CFGIndex {
self.add_node(CFGNodeData::Unreachable, &[])
}
fn add_node(&mut self, data: CFGNodeData, preds: &[CFGIndex]) -> CFGIndex {
let node = self.graph.add_node(data);
2015-01-31 12:20:46 -05:00
for &pred in preds {
self.add_contained_edge(pred, node);
}
node
}
fn add_contained_edge(&mut self,
source: CFGIndex,
target: CFGIndex) {
let data = CFGEdgeData {exiting_scopes: vec!() };
self.graph.add_edge(source, target, data);
}
fn add_exiting_edge(&mut self,
2015-07-31 00:04:06 -07:00
from_expr: &hir::Expr,
from_index: CFGIndex,
to_loop: LoopScope,
to_index: CFGIndex) {
let mut data = CFGEdgeData {exiting_scopes: vec!() };
let mut scope = self.tcx.region_maps.node_extent(from_expr.id);
let target_scope = self.tcx.region_maps.node_extent(to_loop.loop_id);
while scope != target_scope {
data.exiting_scopes.push(scope.node_id(&self.tcx.region_maps));
scope = self.tcx.region_maps.encl_scope(scope);
}
self.graph.add_edge(from_index, to_index, data);
}
fn add_returning_edge(&mut self,
2015-07-31 00:04:06 -07:00
_from_expr: &hir::Expr,
from_index: CFGIndex) {
let mut data = CFGEdgeData {
exiting_scopes: vec!(),
};
for &LoopScope { loop_id: id, .. } in self.loop_scopes.iter().rev() {
data.exiting_scopes.push(id);
}
self.graph.add_edge(from_index, self.fn_exit, data);
}
fn find_scope(&self,
2015-07-31 00:04:06 -07:00
expr: &hir::Expr,
label: Option<ast::Ident>) -> LoopScope {
if label.is_none() {
return *self.loop_scopes.last().unwrap();
}
match self.tcx.def_map.borrow().get(&expr.id).map(|d| d.full_def()) {
Some(def::DefLabel(loop_id)) => {
for l in &self.loop_scopes {
if l.loop_id == loop_id {
return *l;
}
}
self.tcx.sess.span_bug(expr.span,
&format!("no loop scope for id {}", loop_id));
}
r => {
self.tcx.sess.span_bug(expr.span,
&format!("bad entry `{:?}` in def_map for label", r));
}
}
}
}