[][src]Struct yaxpeax_x86::protected_mode::InstDecoder

pub struct InstDecoder { /* fields omitted */ }

Methods

impl InstDecoder[src]

pub fn minimal() -> Self[src]

Instantiates an x86_64 decoder that decodes the bare minimum of x86_64.

Pedantic and only decodes what the spec says is well-defined, rejecting undefined sequences and any instructions defined by extensions.

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

pub fn with_sse3(self) -> Self[src]

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

pub fn with_ssse3(self) -> Self[src]

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

pub fn with_monitor(self) -> Self[src]

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

pub fn with_vmx(self) -> Self[src]

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

pub fn with_fma3(self) -> Self[src]

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

pub fn with_cmpxchg16b(self) -> Self[src]

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

pub fn with_sse4_1(self) -> Self[src]

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

pub fn with_sse4_2(self) -> Self[src]

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

pub fn with_movbe(self) -> Self[src]

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

pub fn with_popcnt(self) -> Self[src]

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

pub fn with_aesni(self) -> Self[src]

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

pub fn with_xsave(self) -> Self[src]

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

pub fn with_rdrand(self) -> Self[src]

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

pub fn with_sgx(self) -> Self[src]

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

pub fn with_bmi1(self) -> Self[src]

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

pub fn with_avx2(self) -> Self[src]

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

pub fn with_bmi2(self) -> Self[src]

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

pub fn with_invpcid(self) -> Self[src]

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

pub fn with_mpx(self) -> Self[src]

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

pub fn with_avx512_f(self) -> Self[src]

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

pub fn with_avx512_dq(self) -> Self[src]

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

pub fn with_rdseed(self) -> Self[src]

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

pub fn with_adx(self) -> Self[src]

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

pub fn with_avx512_fma(self) -> Self[src]

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

pub fn with_pcommit(self) -> Self[src]

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

pub fn with_clflushopt(self) -> Self[src]

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

pub fn with_clwb(self) -> Self[src]

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

pub fn with_avx512_pf(self) -> Self[src]

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

pub fn with_avx512_er(self) -> Self[src]

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

pub fn with_avx512_cd(self) -> Self[src]

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

pub fn with_sha(self) -> Self[src]

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

pub fn with_avx512_bw(self) -> Self[src]

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

pub fn with_avx512_vl(self) -> Self[src]

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

pub fn with_prefetchwt1(self) -> Self[src]

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

pub fn with_avx512_vbmi(self) -> Self[src]

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

pub fn with_avx512_vbmi2(self) -> Self[src]

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

pub fn with_gfni(self) -> Self[src]

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

pub fn with_vaes(self) -> Self[src]

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

pub fn with_pclmulqdq(self) -> Self[src]

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

pub fn with_avx_vnni(self) -> Self[src]

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

pub fn with_avx512_bitalg(self) -> Self[src]

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

pub fn with_avx512_vpopcntdq(self) -> Self[src]

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

pub fn with_avx512_4vnniw(self) -> Self[src]

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

pub fn with_avx512_4fmaps(self) -> Self[src]

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

pub fn with_cx8(self) -> Self[src]

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

pub fn with_syscall(self) -> Self[src]

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

pub fn with_rdtscp(self) -> Self[src]

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

pub fn with_abm(self) -> Self[src]

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

pub fn with_sse4a(self) -> Self[src]

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

pub fn with_3dnowprefetch(self) -> Self[src]

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

pub fn with_xop(self) -> Self[src]

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

pub fn with_skinit(self) -> Self[src]

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

pub fn with_tbm(self) -> Self[src]

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

pub fn with_intel_quirks(self) -> Self[src]

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

pub fn with_amd_quirks(self) -> Self[src]

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

pub fn with_avx(self) -> Self[src]

Trait Implementations

impl Decoder<Instruction> for InstDecoder[src]

type Error = DecodeError

impl Default for InstDecoder[src]

fn default() -> Self[src]

Instantiates an x86_64 decoder that probably decodes what you want.

Attempts to match real processors in interpretation of undefined sequences, and decodes any instruction defined in any extension.

impl Display for InstDecoder[src]

impl PartialEq<InstDecoder> for InstDecoder[src]

impl StructuralPartialEq for InstDecoder[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> ToString for T where
    T: Display + ?Sized
[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.