pub enum InstructionFormat {
Show 36 variants AtomicCas, AtomicRmw, Binary, BinaryImm64, BinaryImm8, BranchTable, Brif, Call, CallIndirect, CondTrap, DynamicStackLoad, DynamicStackStore, FloatCompare, FuncAddr, IntAddTrap, IntCompare, IntCompareImm, Jump, Load, LoadNoOffset, MultiAry, NullAry, Shuffle, StackLoad, StackStore, Store, StoreNoOffset, Ternary, TernaryImm8, Trap, Unary, UnaryConst, UnaryGlobalValue, UnaryIeee32, UnaryIeee64, UnaryImm,
}
Expand description

An instruction format

Every opcode has a corresponding instruction format which is represented by both the InstructionFormat and the InstructionData enums.

Variants§

§

AtomicCas

AtomicCas(imms=(flags: ir::MemFlags), vals=3, blocks=0)

§

AtomicRmw

AtomicRmw(imms=(flags: ir::MemFlags, op: ir::AtomicRmwOp), vals=2, blocks=0)

§

Binary

Binary(imms=(), vals=2, blocks=0)

§

BinaryImm64

BinaryImm64(imms=(imm: ir::immediates::Imm64), vals=1, blocks=0)

§

BinaryImm8

BinaryImm8(imms=(imm: ir::immediates::Uimm8), vals=1, blocks=0)

§

BranchTable

BranchTable(imms=(table: ir::JumpTable), vals=1, blocks=0)

§

Brif

Brif(imms=(), vals=1, blocks=2)

§

Call

Call(imms=(func_ref: ir::FuncRef), vals=0, blocks=0)

§

CallIndirect

CallIndirect(imms=(sig_ref: ir::SigRef), vals=1, blocks=0)

§

CondTrap

CondTrap(imms=(code: ir::TrapCode), vals=1, blocks=0)

§

DynamicStackLoad

DynamicStackLoad(imms=(dynamic_stack_slot: ir::DynamicStackSlot), vals=0, blocks=0)

§

DynamicStackStore

DynamicStackStore(imms=(dynamic_stack_slot: ir::DynamicStackSlot), vals=1, blocks=0)

§

FloatCompare

FloatCompare(imms=(cond: ir::condcodes::FloatCC), vals=2, blocks=0)

§

FuncAddr

FuncAddr(imms=(func_ref: ir::FuncRef), vals=0, blocks=0)

§

IntAddTrap

IntAddTrap(imms=(code: ir::TrapCode), vals=2, blocks=0)

§

IntCompare

IntCompare(imms=(cond: ir::condcodes::IntCC), vals=2, blocks=0)

§

IntCompareImm

IntCompareImm(imms=(cond: ir::condcodes::IntCC, imm: ir::immediates::Imm64), vals=1, blocks=0)

§

Jump

Jump(imms=(), vals=0, blocks=1)

§

Load

Load(imms=(flags: ir::MemFlags, offset: ir::immediates::Offset32), vals=1, blocks=0)

§

LoadNoOffset

LoadNoOffset(imms=(flags: ir::MemFlags), vals=1, blocks=0)

§

MultiAry

MultiAry(imms=(), vals=0, blocks=0)

§

NullAry

NullAry(imms=(), vals=0, blocks=0)

§

Shuffle

Shuffle(imms=(imm: ir::Immediate), vals=2, blocks=0)

§

StackLoad

StackLoad(imms=(stack_slot: ir::StackSlot, offset: ir::immediates::Offset32), vals=0, blocks=0)

§

StackStore

StackStore(imms=(stack_slot: ir::StackSlot, offset: ir::immediates::Offset32), vals=1, blocks=0)

§

Store

Store(imms=(flags: ir::MemFlags, offset: ir::immediates::Offset32), vals=2, blocks=0)

§

StoreNoOffset

StoreNoOffset(imms=(flags: ir::MemFlags), vals=2, blocks=0)

§

Ternary

Ternary(imms=(), vals=3, blocks=0)

§

TernaryImm8

TernaryImm8(imms=(imm: ir::immediates::Uimm8), vals=2, blocks=0)

§

Trap

Trap(imms=(code: ir::TrapCode), vals=0, blocks=0)

§

Unary

Unary(imms=(), vals=1, blocks=0)

§

UnaryConst

UnaryConst(imms=(constant_handle: ir::Constant), vals=0, blocks=0)

§

UnaryGlobalValue

UnaryGlobalValue(imms=(global_value: ir::GlobalValue), vals=0, blocks=0)

§

UnaryIeee32

UnaryIeee32(imms=(imm: ir::immediates::Ieee32), vals=0, blocks=0)

§

UnaryIeee64

UnaryIeee64(imms=(imm: ir::immediates::Ieee64), vals=0, blocks=0)

§

UnaryImm

UnaryImm(imms=(imm: ir::immediates::Imm64), vals=0, blocks=0)

Trait Implementations§

source§

impl Clone for InstructionFormat

source§

fn clone(&self) -> InstructionFormat

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for InstructionFormat

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a> From<&'a InstructionData> for InstructionFormat

source§

fn from(inst: &'a InstructionData) -> Self

Converts to this type from the input type.
source§

impl PartialEq for InstructionFormat

source§

fn eq(&self, other: &InstructionFormat) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for InstructionFormat

source§

impl Eq for InstructionFormat

source§

impl StructuralPartialEq for InstructionFormat

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.