Struct vex_sys::VexGuestAMD64State[][src]

#[repr(C)]pub struct VexGuestAMD64State {
    pub host_EvC_FAILADDR: ULong,
    pub host_EvC_COUNTER: UInt,
    pub pad0: UInt,
    pub guest_RAX: ULong,
    pub guest_RCX: ULong,
    pub guest_RDX: ULong,
    pub guest_RBX: ULong,
    pub guest_RSP: ULong,
    pub guest_RBP: ULong,
    pub guest_RSI: ULong,
    pub guest_RDI: ULong,
    pub guest_R8: ULong,
    pub guest_R9: ULong,
    pub guest_R10: ULong,
    pub guest_R11: ULong,
    pub guest_R12: ULong,
    pub guest_R13: ULong,
    pub guest_R14: ULong,
    pub guest_R15: ULong,
    pub guest_CC_OP: ULong,
    pub guest_CC_DEP1: ULong,
    pub guest_CC_DEP2: ULong,
    pub guest_CC_NDEP: ULong,
    pub guest_DFLAG: ULong,
    pub guest_RIP: ULong,
    pub guest_ACFLAG: ULong,
    pub guest_IDFLAG: ULong,
    pub guest_FS_CONST: ULong,
    pub guest_SSEROUND: ULong,
    pub guest_YMM0: U256,
    pub guest_YMM1: U256,
    pub guest_YMM2: U256,
    pub guest_YMM3: U256,
    pub guest_YMM4: U256,
    pub guest_YMM5: U256,
    pub guest_YMM6: U256,
    pub guest_YMM7: U256,
    pub guest_YMM8: U256,
    pub guest_YMM9: U256,
    pub guest_YMM10: U256,
    pub guest_YMM11: U256,
    pub guest_YMM12: U256,
    pub guest_YMM13: U256,
    pub guest_YMM14: U256,
    pub guest_YMM15: U256,
    pub guest_YMM16: U256,
    pub guest_FTOP: UInt,
    pub pad1: UInt,
    pub guest_FPREG: [ULong; 8],
    pub guest_FPTAG: [UChar; 8],
    pub guest_FPROUND: ULong,
    pub guest_FC3210: ULong,
    pub guest_EMNOTE: UInt,
    pub pad2: UInt,
    pub guest_CMSTART: ULong,
    pub guest_CMLEN: ULong,
    pub guest_NRADDR: ULong,
    pub guest_SC_CLASS: ULong,
    pub guest_GS_CONST: ULong,
    pub guest_IP_AT_SYSCALL: ULong,
    pub pad3: ULong,
}

Fields

host_EvC_FAILADDR: ULonghost_EvC_COUNTER: UIntpad0: UIntguest_RAX: ULongguest_RCX: ULongguest_RDX: ULongguest_RBX: ULongguest_RSP: ULongguest_RBP: ULongguest_RSI: ULongguest_RDI: ULongguest_R8: ULongguest_R9: ULongguest_R10: ULongguest_R11: ULongguest_R12: ULongguest_R13: ULongguest_R14: ULongguest_R15: ULongguest_CC_OP: ULongguest_CC_DEP1: ULongguest_CC_DEP2: ULongguest_CC_NDEP: ULongguest_DFLAG: ULongguest_RIP: ULongguest_ACFLAG: ULongguest_IDFLAG: ULongguest_FS_CONST: ULongguest_SSEROUND: ULongguest_YMM0: U256guest_YMM1: U256guest_YMM2: U256guest_YMM3: U256guest_YMM4: U256guest_YMM5: U256guest_YMM6: U256guest_YMM7: U256guest_YMM8: U256guest_YMM9: U256guest_YMM10: U256guest_YMM11: U256guest_YMM12: U256guest_YMM13: U256guest_YMM14: U256guest_YMM15: U256guest_YMM16: U256guest_FTOP: UIntpad1: UIntguest_FPREG: [ULong; 8]guest_FPTAG: [UChar; 8]guest_FPROUND: ULongguest_FC3210: ULongguest_EMNOTE: UIntpad2: UIntguest_CMSTART: ULongguest_CMLEN: ULongguest_NRADDR: ULongguest_SC_CLASS: ULongguest_GS_CONST: ULongguest_IP_AT_SYSCALL: ULongpad3: ULong

Trait Implementations

impl Clone for VexGuestAMD64State[src]

impl Copy for VexGuestAMD64State[src]

impl Debug for VexGuestAMD64State[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.