Op

Enum Op 

Source
pub enum Op {
Show 25 variants Return, Call(usize), ConstFloat(f64), ConstBool(bool), Const(usize), LoadIndex, StoreIndex, Add, Sub, Mul, Div, Cmp, Not, Le, Ge, Print, StoreGlobal(String), LoadGlobal(String), StoreLocal(usize), LoadLocal(usize), Pop, Nil, Jump(i32), JumpIfFalse(i32), Array,
}
Expand description

Operations supported by the virtual machine

Variants§

§

Return

Print the top value of the stack.

§

Call(usize)

Call function stored in the top of the stack.

§

ConstFloat(f64)

Pushes floating-point constant on the stack.

§

ConstBool(bool)

Pushes boolean constant on the stack.

§

Const(usize)

Pushes constant from the constant pool on the stack.

§

LoadIndex

Loads indexed element from the array and pushes it on the stack.

§

StoreIndex

§

Add

Add two top elements of the stack.

§

Sub

§

Mul

§

Div

§

Cmp

Compares top values of the stack. Puts comparison result on top of the stack.

§

Not

Inverts boolean value on top of the stack.

§

Le

Pushes true on the stack if the first value is less or equal to the second.

§

Ge

Pushes true on the stack if the first value is greater or equal to the second.

§

Print

Prints value on top of the stack.

§

StoreGlobal(String)

Takes the value from the top of the stack and stores it in the global variable.

§

LoadGlobal(String)

Load global variable value onto the stack.

§

StoreLocal(usize)

Takes the value from the top of the stack and stores it in the local variable.

§

LoadLocal(usize)

Load local variable value onto the stack.

§

Pop

Pops value from the top of the stack.

§

Nil

Pushes nil on the stack.

§

Jump(i32)

Unconditional jump to the given offset.

§

JumpIfFalse(i32)

Jump to the given offset if the top value of the stack is false.

§

Array

Trait Implementations§

Source§

impl Clone for Op

Source§

fn clone(&self) -> Op

Returns a duplicate 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 Op

Source§

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

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

impl Display for Op

Source§

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

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

impl PartialEq for Op

Source§

fn eq(&self, other: &Op) -> 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 StructuralPartialEq for Op

Auto Trait Implementations§

§

impl Freeze for Op

§

impl RefUnwindSafe for Op

§

impl Send for Op

§

impl Sync for Op

§

impl Unpin for Op

§

impl UnwindSafe for Op

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.