pub struct VMControlFlowGraph { /* private fields */ }
Expand description

The control flow graph that we build from the bytecode.

Implementations

Trait Implementations

Start index of the block ID in the bytecode vector

End index of the block ID in the bytecode vector

Successors of the block ID in the bytecode vector

Return the next block in traversal order

Iterator over the indexes of instructions in this block

Return an iterator over the blocks of the CFG

Return the number of blocks (vertices) in the control flow graph

Return the id of the entry block for this control-flow graph Note: even a CFG with no instructions has an (empty) entry block. Read more

Checks if the block ID is a loop head

Checks if the the edge from cur->next is a back edge returns false if the edge is not in the cfg Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.