[][src]Struct ssa::cfg::ControlFlowGraph

pub struct ControlFlowGraph<'a> { /* fields omitted */ }

Control Flow Graph

Methods

impl<'a> ControlFlowGraph<'a>[src]

pub fn new(dict: &'a Dictionary) -> Self[src]

Create a new cfg from dictionary

pub fn condition_traverse(&mut self, blocks: &Vec<SimpleBlockNode>) -> Vec<u32>[src]

Traverse comparison nodes in IfStatement, WhileStatement, DoWhileStatement

Build a list of nested function calls and connect them toghether

pub fn simple_traverse(
    &mut self,
    blocks: &Vec<SimpleBlockNode>,
    predecessors: Vec<u32>,
    breakers: &mut Vec<LoopBreaker>
) -> Vec<u32>
[src]

Traverse a list of SimpleBlockNode

pub fn traverse(
    &mut self,
    blocks: &Vec<CodeBlock>,
    predecessors: Vec<u32>,
    breakers: &mut Vec<LoopBreaker>
) -> Vec<u32>
[src]

Traverse the whole graph

pub fn start_at(&mut self, entry_id: u32) -> Option<State>[src]

Build a cfg, the cfg starts at FunctionDefinition entry_id

Auto Trait Implementations

impl<'a> Send for ControlFlowGraph<'a>

impl<'a> Sync for ControlFlowGraph<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]