pub struct ControlFlowGraph<I>where
I: GenericInstruction,{
pub blocks: Vec<Block<I>>,
pub start_index: BlockIndexInfo<<I::Opcode as GenericOpcode>::BranchReason>,
}Fields§
§blocks: Vec<Block<I>>§start_index: BlockIndexInfo<<I::Opcode as GenericOpcode>::BranchReason>Implementations§
Source§impl<I: GenericInstruction> ControlFlowGraph<I>
impl<I: GenericInstruction> ControlFlowGraph<I>
pub fn find_exception_block(&self, index_to_search: usize) -> Option<usize>
Trait Implementations§
Source§impl<I> Debug for ControlFlowGraph<I>
impl<I> Debug for ControlFlowGraph<I>
Source§impl<I> PartialEq for ControlFlowGraph<I>
impl<I> PartialEq for ControlFlowGraph<I>
impl<I> StructuralPartialEq for ControlFlowGraph<I>where
I: GenericInstruction,
Auto Trait Implementations§
impl<I> Freeze for ControlFlowGraph<I>
impl<I> RefUnwindSafe for ControlFlowGraph<I>where
<<I as GenericInstruction>::Opcode as GenericOpcode>::BranchReason: RefUnwindSafe,
I: RefUnwindSafe,
impl<I> Send for ControlFlowGraph<I>
impl<I> Sync for ControlFlowGraph<I>
impl<I> Unpin for ControlFlowGraph<I>
impl<I> UnsafeUnpin for ControlFlowGraph<I>
impl<I> UnwindSafe for ControlFlowGraph<I>where
<<I as GenericInstruction>::Opcode as GenericOpcode>::BranchReason: UnwindSafe,
I: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more