Skip to main content

Op

Enum Op 

Source
pub enum Op {
    Const {
        dst: Reg,
        value: Const,
    },
    Bin {
        op: BinOp,
        dst: Reg,
        lhs: Reg,
        rhs: Reg,
    },
    Un {
        op: UnOp,
        dst: Reg,
        src: Reg,
    },
    Move {
        dst: Reg,
        src: Reg,
    },
    Jump {
        target: Label,
    },
    JumpUnless {
        cond: Reg,
        target: Label,
    },
    Return {
        value: Option<Reg>,
    },
}
Expand description

One bytecode instruction.

An op is the unit a Program is a sequence of. The arithmetic ops (Const, Bin, Un) write their result to a destination Reg and read their operands from registers; Move copies one register to another; and the control-flow ops (Jump, JumpUnless, Return) carry a Label or a result register. The set is closed and every variant is Copy, so an op stream is a flat &[Op] an interpreter or a further pass can walk with no indirection.

§Examples

use codegen_lang::{Const, Op, Reg};

let load = Op::Const { dst: Reg(0), value: Const::Int(1) };
assert_eq!(load.to_string(), "r0 = const 1");

let ret = Op::Return { value: Some(Reg(0)) };
assert_eq!(ret.to_string(), "ret r0");

Variants§

§

Const

Load a constant into dst.

Fields

§dst: Reg

Register the constant is written to.

§value: Const

The constant value.

§

Bin

Apply a binary operation: dst = lhs <op> rhs.

Fields

§op: BinOp

The operation, reusing the IR’s BinOp.

§dst: Reg

Register the result is written to.

§lhs: Reg

Left operand register.

§rhs: Reg

Right operand register.

§

Un

Apply a unary operation: dst = <op> src.

Fields

§op: UnOp

The operation, reusing the IR’s UnOp.

§dst: Reg

Register the result is written to.

§src: Reg

Operand register.

§

Move

Copy a register: dst = src. Emitted on a control-flow edge to move a block argument into the parameter register of the block being entered — the bytecode’s stand-in for an SSA phi.

Fields

§dst: Reg

Destination register.

§src: Reg

Source register.

§

Jump

Jump unconditionally to target.

Fields

§target: Label

The label to continue at.

§

JumpUnless

Jump to target when cond holds false; otherwise fall through to the next op.

Fields

§cond: Reg

Register holding the boolean condition.

§target: Label

The label taken when the condition is false.

§

Return

Return from the function, optionally yielding the value in a register.

Fields

§value: Option<Reg>

The register whose value is returned, or None for a unit return.

Trait Implementations§

Source§

impl Clone for Op

Source§

fn clone(&self) -> Op

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Op

Source§

impl Debug for Op

Source§

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

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

impl<'de> Deserialize<'de> for Op

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. 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 (const: unstable) · 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 Serialize for Op

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
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 UnsafeUnpin 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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

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.