Struct iced_x86::InstructionInfo[][src]

pub struct InstructionInfo { /* fields omitted */ }
Expand description

Contains information about an instruction, eg. read/written registers, read/written RFLAGS bits, CPUID feature bit, etc. Created by an InstructionInfoFactory.

Implementations

Gets all accessed registers. This method doesn’t return all accessed registers if is_save_restore_instruction() is true.

Some instructions have a r16/r32 operand but only use the low 8 bits of the register. In that case this method returns the 8-bit register even if it’s SPL, BPL, SIL, DIL and the instruction was decoded in 16 or 32-bit mode. This is more accurate than returning the r16/r32 register. Example instructions that do this: PINSRB, ARPL

Gets all accessed memory locations

Operand #0 access

Operand #1 access

Operand #2 access

Operand #3 access

Operand #4 access

Gets operand access

Arguments
  • operand: Operand number, 0-4

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.