pub trait ControlFlowGraph {
fn block_start(&self, block_id: BlockId) -> CodeOffset;
fn block_end(&self, block_id: BlockId) -> CodeOffset;
fn successors(&self, block_id: BlockId) -> &Vec<BlockId>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
;
fn next_block(&self, block_id: BlockId) -> Option<BlockId>;
fn instr_indexes(
&self,
block_id: BlockId
) -> Box<dyn Iterator<Item = CodeOffset>>;
fn blocks(&self) -> Vec<BlockId>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
A: Allocator,
;
fn num_blocks(&self) -> u16;
fn entry_block_id(&self) -> BlockId;
fn is_loop_head(&self, block_id: BlockId) -> bool;
fn is_back_edge(&self, cur: BlockId, next: BlockId) -> bool;
}
Expand description
A trait that specifies the basic requirements for a CFG
Required methods
fn block_start(&self, block_id: BlockId) -> CodeOffset
fn block_start(&self, block_id: BlockId) -> CodeOffset
Start index of the block ID in the bytecode vector
fn block_end(&self, block_id: BlockId) -> CodeOffset
fn block_end(&self, block_id: BlockId) -> CodeOffset
End index of the block ID in the bytecode vector
Successors of the block ID in the bytecode vector
fn next_block(&self, block_id: BlockId) -> Option<BlockId>
fn next_block(&self, block_id: BlockId) -> Option<BlockId>
Return the next block in traversal order
fn instr_indexes(
&self,
block_id: BlockId
) -> Box<dyn Iterator<Item = CodeOffset>>
fn instr_indexes(
&self,
block_id: BlockId
) -> Box<dyn Iterator<Item = CodeOffset>>
Iterator over the indexes of instructions in this block
Return an iterator over the blocks of the CFG
fn num_blocks(&self) -> u16
fn num_blocks(&self) -> u16
Return the number of blocks (vertices) in the control flow graph
fn entry_block_id(&self) -> BlockId
fn entry_block_id(&self) -> BlockId
Return the id of the entry block for this control-flow graph Note: even a CFG with no instructions has an (empty) entry block.
fn is_loop_head(&self, block_id: BlockId) -> bool
fn is_loop_head(&self, block_id: BlockId) -> bool
Checks if the block ID is a loop head
fn is_back_edge(&self, cur: BlockId, next: BlockId) -> bool
fn is_back_edge(&self, cur: BlockId, next: BlockId) -> bool
Checks if the the edge from cur->next is a back edge returns false if the edge is not in the cfg