Croissant Runtime
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
crsn/crsn/src/asm/instr/op.rs

27 lines
680 B

use std::fmt::Debug;
use crate::builtin::defs::BuiltinOp;
use crate::module::{EvalRes, OpTrait};
use crate::runtime::fault::Fault;
use crate::runtime::run_thread::{info::ThreadInfo, state::RunState};
/// A higher level simple opration
#[derive(Debug)]
pub enum Op {
BuiltIn(BuiltinOp),
/// Instruction added by an extension
Ext(Box<dyn OpTrait>),
}
impl OpTrait for Op {
fn execute(&self, ti: &ThreadInfo, state: &mut RunState) -> Result<EvalRes, Fault> {
match self {
Op::BuiltIn(op) => {
op.execute(ti, state)
}
Op::Ext(op) => {
op.execute(ti, state)
}
}
}
}