Enum witnext::WitxInstruction[][src]

pub enum WitxInstruction<'a> {
    AddrOf,
    I32FromPointer,
    I32FromConstPointer,
    PointerFromI32 {
        ty: &'a TypeRef,
    },
    ConstPointerFromI32 {
        ty: &'a TypeRef,
    },
    ReuseReturn,
}

Variants

AddrOf

Takes the value off the top of the stack and writes it into linear memory. Pushes the address in linear memory as an i32.

I32FromPointer

Converts a language-specific pointer value to a wasm i32.

I32FromConstPointer

Converts a language-specific pointer value to a wasm i32.

PointerFromI32

Converts a native wasm i32 to a language-specific pointer.

Fields of PointerFromI32

ty: &'a TypeRef
ConstPointerFromI32

Converts a native wasm i32 to a language-specific pointer.

Fields of ConstPointerFromI32

ty: &'a TypeRef
ReuseReturn

This is a special instruction specifically for the original ABI of WASI. The raw return i32 of a function is re-pushed onto the stack for reuse.

Implementations

impl WitxInstruction<'_>[src]

pub fn operands_len(&self) -> usize[src]

How many operands does this instruction pop from the stack?

pub fn results_len(&self) -> usize[src]

How many results does this instruction push onto the stack?

Trait Implementations

impl<'a> Debug for WitxInstruction<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for WitxInstruction<'a>

impl<'a> !Send for WitxInstruction<'a>

impl<'a> !Sync for WitxInstruction<'a>

impl<'a> Unpin for WitxInstruction<'a>

impl<'a> !UnwindSafe for WitxInstruction<'a>

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, 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.