[][src]Struct cranelift_codegen::flowgraph::ControlFlowGraph

pub struct ControlFlowGraph { /* fields omitted */ }

The Control Flow Graph maintains a mapping of ebbs to their predecessors and successors where predecessors are basic blocks and successors are extended basic blocks.

Methods

impl ControlFlowGraph[src]

pub fn new() -> Self[src]

Allocate a new blank control flow graph.

pub fn clear(&mut self)[src]

Clear all data structures in this control flow graph.

pub fn with_function(func: &Function) -> Self[src]

Allocate and compute the control flow graph for func.

pub fn compute(&mut self, func: &Function)[src]

Compute the control flow graph of func.

This will clear and overwrite any information already stored in this data structure.

pub fn recompute_ebb(&mut self, func: &Function, ebb: Ebb)[src]

Recompute the control flow graph of ebb.

This is for use after modifying instructions within a specific EBB. It recomputes all edges from ebb while leaving edges to ebb intact. Its functionality a subset of that of the more expensive compute, and should be used when we know we don't need to recompute the CFG from scratch, but rather that our changes have been restricted to specific EBBs.

Important traits for PredIter<'a>
pub fn pred_iter(&self, ebb: Ebb) -> PredIter[src]

Get an iterator over the CFG predecessors to ebb.

pub fn succ_iter(&self, ebb: Ebb) -> SuccIter[src]

Get an iterator over the CFG successors to ebb.

pub fn is_valid(&self) -> bool[src]

Check if the CFG is in a valid state.

Note that this doesn't perform any kind of validity checks. It simply checks if the compute() method has been called since the last clear(). It does not check that the CFG is consistent with the function.

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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