lua_ir

Enum Instruction

source
pub enum Instruction {
Show 53 variants Clear(usize), Clone, Swap, Sp, Pop, Jump(LabelType), JumpTrue(LabelType), JumpFalse(LabelType), GetLocalVariable(usize), SetLocalVariable(usize), Nil, Boolean(bool), Numeric(IntOrFloat), String(Vec<u8>), GetGlobal, GetEnv, TableInit(usize), TableIndexInit, TableInitLast(IntType), TableIndex, TableIndexSet, FunctionInit(usize, usize), FunctionUpvaluePushFromLocalVar(usize), FunctionUpvaluePushFromUpvalue(usize), FunctionUpvalue(usize), FunctionUpvalueSet(usize), BinaryAdd, BinarySub, BinaryMul, BinaryDiv, BinaryFloorDiv, BinaryMod, BinaryPow, BinaryConcat, BinaryBitwiseAnd, BinaryBitwiseOr, BinaryBitwiseXor, BinaryShiftLeft, BinaryShiftRight, BinaryEqual, BinaryNotEqual, BinaryLessThan, BinaryLessEqual, BinaryGreaterThan, BinaryGreaterEqual, UnaryMinus, UnaryBitwiseNot, UnaryLength, UnaryLogicalNot, FunctionCall(Option<usize>), Return, GetVariadic(Option<usize>), AdjustMultire(usize),
}

Variants§

§

Clear(usize)

clear i’th local variable to Nil

§

Clone

clone top of the data_stack and push it

§

Swap

swap top two elements of stack

§

Sp

push current length of data_stack to usize_stack

§

Pop

§

Jump(LabelType)

jump to label

§

JumpTrue(LabelType)

pops data_stack and jump to label if stack_top is true.

§

JumpFalse(LabelType)

pops data_stack and jump to label if stack_top is false

§

GetLocalVariable(usize)

get i’th local variable and push the value to stack_top

§

SetLocalVariable(usize)

pops data_stack and set i’th local variable to the value. If i’th local variable is Ref, the internal value will be set.

§

Nil

push nil

§

Boolean(bool)

push bool

§

Numeric(IntOrFloat)

push int or float

§

String(Vec<u8>)

push string

§

GetGlobal

push _G

§

GetEnv

push _ENV

§

TableInit(usize)

init new table with capacity

§

TableIndexInit

table -> key -> value -> stack_top. table must not be popped.

§

TableInitLast(IntType)

§

TableIndex

table -> index -> stack_top

§

TableIndexSet

value -> table -> index -> stack_top

§

FunctionInit(usize, usize)

function_id, number of upvalues

§

FunctionUpvaluePushFromLocalVar(usize)

func -> top. src_stack_id

§

FunctionUpvaluePushFromUpvalue(usize)

src_upvalue_id

§

FunctionUpvalue(usize)

get i’th upvalue of current function

§

FunctionUpvalueSet(usize)

set i’th upvalue of current function

§

BinaryAdd

§

BinarySub

§

BinaryMul

§

BinaryDiv

§

BinaryFloorDiv

§

BinaryMod

§

BinaryPow

§

BinaryConcat

§

BinaryBitwiseAnd

§

BinaryBitwiseOr

§

BinaryBitwiseXor

§

BinaryShiftLeft

§

BinaryShiftRight

§

BinaryEqual

§

BinaryNotEqual

§

BinaryLessThan

§

BinaryLessEqual

§

BinaryGreaterThan

§

BinaryGreaterEqual

§

UnaryMinus

§

UnaryBitwiseNot

§

UnaryLength

§

UnaryLogicalNot

§

FunctionCall(Option<usize>)

return expected can be 0. function -> args -> top

§

Return

§

GetVariadic(Option<usize>)

Invalid call ( using ... in a non-variadic function ) was filtered out in parser.

§

AdjustMultire(usize)

Trait Implementations§

source§

impl Clone for Instruction

source§

fn clone(&self) -> Instruction

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 Instruction

source§

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

Formats the value using the given formatter. Read more

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

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

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

source§

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

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.