Files
hakorune/src/backend/mir_interpreter/handlers/mod.rs

106 lines
3.4 KiB
Rust
Raw Normal View History

use super::*;
// VM dispatch trace macro (used across handlers)
macro_rules! trace_dispatch {
($method:expr, $handler:expr) => {
if $method == "length"
&& std::env::var("NYASH_VM_TRACE").ok().as_deref() == Some("1")
{
eprintln!("[vm-trace] length dispatch handler={}", $handler);
}
};
}
mod arithmetic;
mod boxes;
mod boxes_array;
mod boxes_string;
mod boxes_map;
mod boxes_object_fields;
mod boxes_instance;
mod boxes_plugin;
mod boxes_void_guards;
mod calls;
mod externals;
mod memory;
mod misc;
impl MirInterpreter {
pub(super) fn execute_instruction(&mut self, inst: &MirInstruction) -> Result<(), VMError> {
match inst {
MirInstruction::Const { dst, value } => self.handle_const(*dst, value)?,
MirInstruction::NewBox {
dst,
box_type,
args,
} => self.handle_new_box(*dst, box_type, args)?,
MirInstruction::PluginInvoke {
dst,
box_val,
method,
args,
..
} => self.handle_plugin_invoke(*dst, *box_val, method, args)?,
MirInstruction::BoxCall {
dst,
box_val,
method,
args,
..
} => self.handle_box_call(*dst, *box_val, method, args)?,
MirInstruction::ExternCall {
dst,
iface_name,
method_name,
args,
..
} => self.handle_extern_call(*dst, iface_name, method_name, args)?,
MirInstruction::RefSet {
reference,
field,
value,
} => self.handle_ref_set(*reference, field, *value)?,
MirInstruction::RefGet {
dst,
reference,
field,
} => self.handle_ref_get(*dst, *reference, field)?,
MirInstruction::BinOp { dst, op, lhs, rhs } => {
self.handle_binop(*dst, *op, *lhs, *rhs)?
}
MirInstruction::UnaryOp { dst, op, operand } => {
self.handle_unary_op(*dst, *op, *operand)?
}
MirInstruction::Compare { dst, op, lhs, rhs } => {
self.handle_compare(*dst, *op, *lhs, *rhs)?
}
MirInstruction::Copy { dst, src } => self.handle_copy(*dst, *src)?,
MirInstruction::Load { dst, ptr } => self.handle_load(*dst, *ptr)?,
MirInstruction::Store { ptr, value } => self.handle_store(*ptr, *value)?,
MirInstruction::Call {
dst,
func,
callee,
args,
..
} => self.handle_call(*dst, *func, callee.as_ref(), args)?,
MirInstruction::Debug { message, value } => {
self.handle_debug(message, *value)?;
}
MirInstruction::Print { value, .. } => self.handle_print(*value)?,
MirInstruction::BarrierRead { .. }
| MirInstruction::BarrierWrite { .. }
| MirInstruction::Barrier { .. }
| MirInstruction::Safepoint
| MirInstruction::Nop => {}
other => {
return Err(VMError::InvalidInstruction(format!(
"MIR interp: unimplemented instruction: {:?}",
other
)))
}
}
Ok(())
}
}