[][src]Struct vtil_parser::BasicBlock

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

Basic block containing a linear sequence of VTIL instructions

Implementations

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

pub fn vip(&self) -> Vip[src]

The virtual instruction pointer at entry

pub fn sp_offset(&self) -> i64[src]

The stack pointer offset at entry

pub fn sp_index(&self) -> u32[src]

The stack instance index at entry

pub fn last_temporary_index(&self) -> u32[src]

Last temporary index used

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

pub fn instructions(&self) -> &Vec<Instruction<'a>>[src]

List of instructions contained in this basic block (in order)

pub fn prev_vip(&self) -> &Vec<Vip>[src]

Predecessor basic block entrypoint(s)

pub fn next_vip(&self) -> &Vec<Vip>[src]

Successor basic block entrypoint(s)

Trait Implementations

impl<'a> Debug for BasicBlock<'a>[src]

impl<'a> TryFromCtx<'a, Endian, [u8]> for BasicBlock<'a>[src]

type Error = Error

Auto Trait Implementations

impl<'a> RefUnwindSafe for BasicBlock<'a>

impl<'a> Send for BasicBlock<'a>

impl<'a> Sync for BasicBlock<'a>

impl<'a> Unpin for BasicBlock<'a>

impl<'a> UnwindSafe for BasicBlock<'a>

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.