Enum wasmtime_environ::ir::ArgumentPurpose[][src]

pub enum ArgumentPurpose {
    Normal,
    StructArgument(u32),
    StructReturn,
    Link,
    FramePointer,
    CalleeSaved,
    VMContext,
    SignatureId,
    StackLimit,
    CalleeTLS,
    CallerTLS,
}
Expand description

The special purpose of a function argument.

Function arguments and return values are used to pass user program values between functions, but they are also used to represent special registers with significance to the ABI such as frame pointers and callee-saved registers.

The argument purpose is used to indicate any special meaning of an argument or return value.

Variants

Normal

A normal user program value passed to or from a function.

StructArgument(u32)

A C struct passed as argument.

StructReturn

Struct return pointer.

When a function needs to return more data than will fit in registers, the caller passes a pointer to a memory location where the return value can be written. In some ABIs, this struct return pointer is passed in a specific register.

This argument kind can also appear as a return value for ABIs that require a function with a StructReturn pointer argument to also return that pointer in a register.

The link register.

Most RISC architectures implement calls by saving the return address in a designated register rather than pushing it on the stack. This is represented with a Link argument.

Similarly, some return instructions expect the return address in a register represented as a Link return value.

FramePointer

The frame pointer.

This indicates the frame pointer register which has a special meaning in some ABIs.

The frame pointer appears as an argument and as a return value since it is a callee-saved register.

CalleeSaved

A callee-saved register.

Some calling conventions have registers that must be saved by the callee. These registers are represented as CalleeSaved arguments and return values.

VMContext

A VM context pointer.

This is a pointer to a context struct containing details about the current sandbox. It is used as a base pointer for vmctx global values.

SignatureId

A signature identifier.

This is a special-purpose argument used to identify the calling convention expected by the caller in an indirect call. The callee can verify that the expected signature ID matches.

StackLimit

A stack limit pointer.

This is a pointer to a stack limit. It is used to check the current stack pointer against. Can only appear once in a signature.

CalleeTLS

A callee TLS value.

In the Baldrdash-2020 calling convention, the stack upon entry to the callee contains the TLS-register values for the caller and the callee. This argument is used to provide the value for the callee.

CallerTLS

A caller TLS value.

In the Baldrdash-2020 calling convention, the stack upon entry to the callee contains the TLS-register values for the caller and the callee. This argument is used to provide the value for the caller.

Trait Implementations

impl Clone for ArgumentPurpose[src]

pub fn clone(&self) -> ArgumentPurpose[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ArgumentPurpose[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for ArgumentPurpose[src]

pub fn deserialize<__D>(
    __deserializer: __D
) -> Result<ArgumentPurpose, <__D as Deserializer<'de>>::Error> where
    __D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Display for ArgumentPurpose[src]

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

impl FromStr for ArgumentPurpose[src]

type Err = ()

The associated error which can be returned from parsing.

pub fn from_str(s: &str) -> Result<ArgumentPurpose, ()>[src]

Parses a string s to return a value of this type. Read more

impl Hash for ArgumentPurpose[src]

pub fn hash<__H>(&self, state: &mut __H) where
    __H: Hasher
[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl PartialEq<ArgumentPurpose> for ArgumentPurpose[src]

pub fn eq(&self, other: &ArgumentPurpose) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

pub fn ne(&self, other: &ArgumentPurpose) -> bool[src]

This method tests for !=.

impl Serialize for ArgumentPurpose[src]

pub fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
    __S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

impl Copy for ArgumentPurpose[src]

impl Eq for ArgumentPurpose[src]

impl StructuralEq for ArgumentPurpose[src]

impl StructuralPartialEq for ArgumentPurpose[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn equivalent(&self, key: &K) -> bool[src]

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

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

pub default fn to_string(&self) -> String[src]

Converts the given value to a String. Read more

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.

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

Performs the conversion.

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.

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

Performs the conversion.

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]