Struct vtil_parser::VTIL[][src]

pub struct VTIL {
    pub header: Header,
    pub vip: Vip,
    pub routine_convention: RoutineConvention,
    pub subroutine_convention: SubroutineConvention,
    pub spec_subroutine_conventions: Vec<SubroutineConvention>,
    pub explored_blocks: Vec<BasicBlock>,
}

VTIL container

Fields

header: Header

Header containing metadata about the VTIL container

vip: Vip

The entry virtual instruction pointer for this VTIL routine

routine_convention: RoutineConvention

Metadata regarding the calling conventions of the VTIL routine

subroutine_convention: SubroutineConvention

Metadata regarding the calling conventions of the VTIL subroutine

spec_subroutine_conventions: Vec<SubroutineConvention>

All special subroutine calling conventions in the top-level VTIL routine

explored_blocks: Vec<BasicBlock>

Reachable BasicBlocks generated during a code-discovery analysis pass

Implementations

impl VTIL[src]

pub fn new(
    arch_id: ArchitectureIdentifier,
    vip: Vip,
    routine_convention: RoutineConvention,
    subroutine_convention: SubroutineConvention
) -> VTIL
[src]

Build a new VTIL container

pub fn into_bytes(self) -> Result<Vec<u8>>[src]

Serialize the VTIL container, consuming it

Trait Implementations

impl Debug for VTIL[src]

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

type Error = Error

impl<'a> TryIntoCtx<Endian, [u8]> for VTIL[src]

type Error = Error

Auto Trait Implementations

impl RefUnwindSafe for VTIL

impl Send for VTIL

impl Sync for VTIL

impl Unpin for VTIL

impl UnwindSafe for VTIL

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.