[][src]Struct vtil_parser::Instruction

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

VTIL instruction and associated metadata

Implementations

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

pub fn name(&self) -> &'a str[src]

The name of the instruction (e.g.: ldd)

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

The virtual instruction pointer of this instruction

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

Stack pointer offset at this instruction

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

Stack instance index

pub fn sp_reset(&self) -> bool[src]

If the stack pointer is reset at this instruction

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

pub fn operands(&self) -> &Vec<Operand>[src]

List of operands used in this instruction (in order)

Trait Implementations

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

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

type Error = Error

Auto Trait Implementations

impl<'a> RefUnwindSafe for Instruction<'a>

impl<'a> Send for Instruction<'a>

impl<'a> Sync for Instruction<'a>

impl<'a> Unpin for Instruction<'a>

impl<'a> UnwindSafe for Instruction<'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.