Struct vex_sys::VexGuestX86State[][src]

#[repr(C)]pub struct VexGuestX86State {
    pub host_EvC_FAILADDR: UInt,
    pub host_EvC_COUNTER: UInt,
    pub guest_EAX: UInt,
    pub guest_ECX: UInt,
    pub guest_EDX: UInt,
    pub guest_EBX: UInt,
    pub guest_ESP: UInt,
    pub guest_EBP: UInt,
    pub guest_ESI: UInt,
    pub guest_EDI: UInt,
    pub guest_CC_OP: UInt,
    pub guest_CC_DEP1: UInt,
    pub guest_CC_DEP2: UInt,
    pub guest_CC_NDEP: UInt,
    pub guest_DFLAG: UInt,
    pub guest_IDFLAG: UInt,
    pub guest_ACFLAG: UInt,
    pub guest_EIP: UInt,
    pub guest_FPREG: [ULong; 8],
    pub guest_FPTAG: [UChar; 8],
    pub guest_FPROUND: UInt,
    pub guest_FC3210: UInt,
    pub guest_FTOP: UInt,
    pub guest_SSEROUND: UInt,
    pub guest_XMM0: U128,
    pub guest_XMM1: U128,
    pub guest_XMM2: U128,
    pub guest_XMM3: U128,
    pub guest_XMM4: U128,
    pub guest_XMM5: U128,
    pub guest_XMM6: U128,
    pub guest_XMM7: U128,
    pub guest_CS: UShort,
    pub guest_DS: UShort,
    pub guest_ES: UShort,
    pub guest_FS: UShort,
    pub guest_GS: UShort,
    pub guest_SS: UShort,
    pub guest_LDT: ULong,
    pub guest_GDT: ULong,
    pub guest_EMNOTE: UInt,
    pub guest_CMSTART: UInt,
    pub guest_CMLEN: UInt,
    pub guest_NRADDR: UInt,
    pub guest_SC_CLASS: UInt,
    pub guest_IP_AT_SYSCALL: UInt,
    pub padding1: UInt,
    pub padding2: UInt,
    pub padding3: UInt,
}

Fields

host_EvC_FAILADDR: UInthost_EvC_COUNTER: UIntguest_EAX: UIntguest_ECX: UIntguest_EDX: UIntguest_EBX: UIntguest_ESP: UIntguest_EBP: UIntguest_ESI: UIntguest_EDI: UIntguest_CC_OP: UIntguest_CC_DEP1: UIntguest_CC_DEP2: UIntguest_CC_NDEP: UIntguest_DFLAG: UIntguest_IDFLAG: UIntguest_ACFLAG: UIntguest_EIP: UIntguest_FPREG: [ULong; 8]guest_FPTAG: [UChar; 8]guest_FPROUND: UIntguest_FC3210: UIntguest_FTOP: UIntguest_SSEROUND: UIntguest_XMM0: U128guest_XMM1: U128guest_XMM2: U128guest_XMM3: U128guest_XMM4: U128guest_XMM5: U128guest_XMM6: U128guest_XMM7: U128guest_CS: UShortguest_DS: UShortguest_ES: UShortguest_FS: UShortguest_GS: UShortguest_SS: UShortguest_LDT: ULongguest_GDT: ULongguest_EMNOTE: UIntguest_CMSTART: UIntguest_CMLEN: UIntguest_NRADDR: UIntguest_SC_CLASS: UIntguest_IP_AT_SYSCALL: UIntpadding1: UIntpadding2: UIntpadding3: UInt

Trait Implementations

impl Clone for VexGuestX86State[src]

impl Copy for VexGuestX86State[src]

impl Debug for VexGuestX86State[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.