Struct vtil_parser::BasicBlock[][src]

pub struct BasicBlock {
    pub vip: Vip,
    pub sp_offset: i64,
    pub sp_index: u32,
    pub last_temporary_index: u32,
    pub instructions: Vec<Instruction>,
    pub prev_vip: Vec<Vip>,
    pub next_vip: Vec<Vip>,
}

Basic block containing a linear sequence of VTIL instructions

Fields

vip: Vip

The virtual instruction pointer at entry

sp_offset: i64

The stack pointer offset at entry

sp_index: u32

The stack instance index at entry

last_temporary_index: u32

Last temporary index used

instructions: Vec<Instruction>

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

prev_vip: Vec<Vip>

Predecessor basic block entrypoint(s)

next_vip: Vec<Vip>

Successor basic block entrypoint(s)

Trait Implementations

impl Debug for BasicBlock[src]

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

type Error = Error

impl TryIntoCtx<Endian, [u8]> for BasicBlock[src]

type Error = Error

Auto Trait Implementations

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.