]> git.proxmox.com Git - rustc.git/blame - src/librustc/middle/cfg/mod.rs
Imported Upstream version 1.0.0~beta
[rustc.git] / src / librustc / middle / cfg / mod.rs
CommitLineData
1a4d82fc
JJ
1// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11//! Module that constructs a control-flow graph representing an item.
12//! Uses `Graph` as the underlying representation.
13
14use middle::graph;
15use middle::ty;
16use syntax::ast;
1a4d82fc
JJ
17
18mod construct;
19pub mod graphviz;
20
21pub struct CFG {
1a4d82fc
JJ
22 pub graph: CFGGraph,
23 pub entry: CFGIndex,
24 pub exit: CFGIndex,
25}
26
c34b1796
AL
27#[derive(Copy, Clone, PartialEq)]
28pub enum CFGNodeData {
29 AST(ast::NodeId),
30 Entry,
31 Exit,
32 Dummy,
33 Unreachable,
34}
35
36impl CFGNodeData {
37 pub fn id(&self) -> ast::NodeId {
38 if let CFGNodeData::AST(id) = *self {
39 id
40 } else {
41 ast::DUMMY_NODE_ID
42 }
43 }
1a4d82fc
JJ
44}
45
46pub struct CFGEdgeData {
47 pub exiting_scopes: Vec<ast::NodeId>
48}
49
50pub type CFGIndex = graph::NodeIndex;
51
52pub type CFGGraph = graph::Graph<CFGNodeData, CFGEdgeData>;
53
54pub type CFGNode = graph::Node<CFGNodeData>;
55
56pub type CFGEdge = graph::Edge<CFGEdgeData>;
57
58impl CFG {
59 pub fn new(tcx: &ty::ctxt,
60 blk: &ast::Block) -> CFG {
61 construct::construct(tcx, blk)
62 }
63
64 pub fn node_is_reachable(&self, id: ast::NodeId) -> bool {
c34b1796 65 self.graph.depth_traverse(self.entry).any(|node| node.id() == id)
1a4d82fc
JJ
66 }
67}