[][src]Enum iced_x86::FlowControl

pub enum FlowControl {
    Next,
    UnconditionalBranch,
    IndirectBranch,
    ConditionalBranch,
    Return,
    Call,
    IndirectCall,
    Interrupt,
    XbeginXabortXend,
    Exception,
}

Flow control

Variants

Next

The next instruction that will be executed is the next instruction in the instruction stream

UnconditionalBranch

It's an unconditional branch instruction: JMP NEAR, JMP FAR

IndirectBranch

It's an unconditional indirect branch: JMP NEAR reg, JMP NEAR [mem], JMP FAR [mem]

ConditionalBranch

It's a conditional branch instruction: Jcc SHORT, Jcc NEAR, LOOP, LOOPcc, JRCXZ

Return

It's a return instruction: RET NEAR, RET FAR, IRET, SYSRET, SYSEXIT, RSM, VMLAUNCH, VMRESUME, VMRUN, SKINIT

Call

It's a call instruction: CALL NEAR, CALL FAR, SYSCALL, SYSENTER, VMCALL, VMMCALL

IndirectCall

It's an indirect call instruction: CALL NEAR reg, CALL NEAR [mem], CALL FAR [mem]

Interrupt

It's an interrupt instruction: INT n, INT3, INT1, INTO

XbeginXabortXend

It's XBEGIN, XABORT, XEND, XSUSLDTRK, XRESLDTRK

Exception

It's an invalid instruction, eg. Code::INVALID, UD0, UD1, UD2

Trait Implementations

impl Clone for FlowControl[src]

impl Copy for FlowControl[src]

impl Debug for FlowControl[src]

impl Default for FlowControl[src]

impl Eq for FlowControl[src]

impl Hash for FlowControl[src]

impl Ord for FlowControl[src]

impl PartialEq<FlowControl> for FlowControl[src]

impl PartialOrd<FlowControl> for FlowControl[src]

impl StructuralEq for FlowControl[src]

impl StructuralPartialEq for FlowControl[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.