Enum ControlFlow

Source
pub enum ControlFlow<'a> {
    Assign(SmallVec<[DataValue; 1]>),
    Continue,
    ContinueAt(Block, SmallVec<[DataValue; 1]>),
    Call(&'a Function, SmallVec<[DataValue; 1]>),
    ReturnCall(&'a Function, SmallVec<[DataValue; 1]>),
    Return(SmallVec<[DataValue; 1]>),
    Trap(CraneliftTrap),
}
Expand description

Enumerate the ways in which the control flow can change based on a single step in a Cranelift interpreter.

Variants§

§

Assign(SmallVec<[DataValue; 1]>)

Return one or more values from an instruction to be assigned to a left-hand side, e.g.: in v0 = iadd v1, v2, the sum of v1 and v2 is assigned to v0.

§

Continue

Continue to the next available instruction, e.g.: in nop, we expect to resume execution at the instruction after it.

§

ContinueAt(Block, SmallVec<[DataValue; 1]>)

Jump to another block with the given parameters, e.g.: in brif v0, block42(v1, v2), block97, if the condition is true, we continue execution at the first instruction of block42 with the values in v1 and v2 filling in the block parameters.

§

Call(&'a Function, SmallVec<[DataValue; 1]>)

Indicates a call the given [Function] with the supplied arguments.

§

ReturnCall(&'a Function, SmallVec<[DataValue; 1]>)

Indicates a tail call to the given [Function] with the supplied arguments.

§

Return(SmallVec<[DataValue; 1]>)

Return from the current function with the given parameters, e.g.: return [v1, v2].

§

Trap(CraneliftTrap)

Stop with a program-generated trap; note that these are distinct from errors that may occur during interpretation.

Trait Implementations§

Source§

impl<'a> Debug for ControlFlow<'a>

Source§

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

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

impl<'a> PartialEq for ControlFlow<'a>

Source§

fn eq(&self, other: &ControlFlow<'a>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a> StructuralPartialEq for ControlFlow<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for ControlFlow<'a>

§

impl<'a> RefUnwindSafe for ControlFlow<'a>

§

impl<'a> Send for ControlFlow<'a>

§

impl<'a> Sync for ControlFlow<'a>

§

impl<'a> Unpin for ControlFlow<'a>

§

impl<'a> UnwindSafe for ControlFlow<'a>

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

Source§

type Output = T

Should always be Self
Source§

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

Source§

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

Source§

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.