2023-08-17 18:41:05 -05:00
|
|
|
//! Welcome to the land of The Great Dispatch Loop
|
|
|
|
//!
|
|
|
|
//! Have fun
|
|
|
|
|
|
|
|
use {
|
|
|
|
super::{
|
|
|
|
bmc::BlockCopier,
|
|
|
|
mem::Memory,
|
|
|
|
value::{Value, ValueVariant},
|
|
|
|
Vm, VmRunError, VmRunOk,
|
|
|
|
},
|
2023-09-26 16:36:27 -05:00
|
|
|
crate::mem::{addr::AddressOp, Address},
|
2023-08-17 18:41:05 -05:00
|
|
|
core::{cmp::Ordering, mem::size_of, ops},
|
|
|
|
hbbytecode::{
|
2023-09-29 02:10:36 -05:00
|
|
|
BytecodeItem, OpA, OpO, OpP, OpsRD, OpsRR, OpsRRAH, OpsRRB, OpsRRD, OpsRRH, OpsRRO,
|
|
|
|
OpsRROH, OpsRRP, OpsRRPH, OpsRRR, OpsRRRR, OpsRRW,
|
2023-08-17 18:41:05 -05:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
impl<Mem, const TIMER_QUOTIENT: usize> Vm<Mem, TIMER_QUOTIENT>
|
|
|
|
where
|
|
|
|
Mem: Memory,
|
|
|
|
{
|
|
|
|
/// Execute program
|
|
|
|
///
|
|
|
|
/// Program can return [`VmRunError`] if a trap handling failed
|
|
|
|
#[cfg_attr(feature = "nightly", repr(align(4096)))]
|
|
|
|
pub fn run(&mut self) -> Result<VmRunOk, VmRunError> {
|
|
|
|
use hbbytecode::opcode::*;
|
|
|
|
loop {
|
|
|
|
// Big match
|
|
|
|
//
|
|
|
|
// Contribution guide:
|
|
|
|
// - Zero register shall never be overwitten. It's value has to always be 0.
|
|
|
|
// - Prefer `Self::read_reg` and `Self::write_reg` functions
|
|
|
|
// - Extract parameters using `param!` macro
|
|
|
|
// - Prioritise speed over code size
|
|
|
|
// - Memory is cheap, CPUs not that much
|
|
|
|
// - Do not heap allocate at any cost
|
|
|
|
// - Yes, user-provided trap handler may allocate,
|
|
|
|
// but that is not our »fault«.
|
|
|
|
// - Unsafe is kinda must, but be sure you have validated everything
|
|
|
|
// - Your contributions have to pass sanitizers and Miri
|
|
|
|
// - Strictly follow the spec
|
|
|
|
// - The spec does not specify how you perform actions, in what order,
|
|
|
|
// just that the observable effects have to be performed in order and
|
|
|
|
// correctly.
|
|
|
|
// - Yes, we assume you run 64 bit CPU. Else ?conradluget a better CPU
|
|
|
|
// sorry 8 bit fans, HBVM won't run on your Speccy :(
|
|
|
|
unsafe {
|
|
|
|
match self
|
|
|
|
.memory
|
|
|
|
.prog_read::<u8>(self.pc as _)
|
|
|
|
.ok_or(VmRunError::ProgramFetchLoadEx(self.pc as _))?
|
|
|
|
{
|
|
|
|
UN => {
|
|
|
|
self.decode::<()>();
|
|
|
|
return Err(VmRunError::Unreachable);
|
|
|
|
}
|
|
|
|
TX => {
|
|
|
|
self.decode::<()>();
|
|
|
|
return Ok(VmRunOk::End);
|
|
|
|
}
|
|
|
|
NOP => self.decode::<()>(),
|
|
|
|
ADD => self.binary_op(u64::wrapping_add),
|
|
|
|
SUB => self.binary_op(u64::wrapping_sub),
|
|
|
|
MUL => self.binary_op(u64::wrapping_mul),
|
|
|
|
AND => self.binary_op::<u64>(ops::BitAnd::bitand),
|
|
|
|
OR => self.binary_op::<u64>(ops::BitOr::bitor),
|
|
|
|
XOR => self.binary_op::<u64>(ops::BitXor::bitxor),
|
|
|
|
SL => self.binary_op(|l, r| u64::wrapping_shl(l, r as u32)),
|
|
|
|
SR => self.binary_op(|l, r| u64::wrapping_shr(l, r as u32)),
|
2023-09-26 16:36:27 -05:00
|
|
|
SRS => self.binary_op(|l: u64, r| i64::wrapping_shl(l as i64, r as u32) as u64),
|
2023-08-17 18:41:05 -05:00
|
|
|
CMP => {
|
|
|
|
// Compare a0 <=> a1
|
2023-09-15 01:42:56 -05:00
|
|
|
// < → 0
|
2023-08-17 18:41:05 -05:00
|
|
|
// > → 1
|
2023-09-15 01:42:56 -05:00
|
|
|
// = → 2
|
2023-08-17 18:41:05 -05:00
|
|
|
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRR(tg, a0, a1) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(
|
|
|
|
tg,
|
|
|
|
self.read_reg(a0)
|
|
|
|
.cast::<i64>()
|
|
|
|
.cmp(&self.read_reg(a1).cast::<i64>())
|
2023-09-15 01:42:56 -05:00
|
|
|
as i64
|
|
|
|
+ 1,
|
2023-08-17 18:41:05 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
CMPU => {
|
|
|
|
// Unsigned comparsion
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRR(tg, a0, a1) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(
|
|
|
|
tg,
|
|
|
|
self.read_reg(a0)
|
|
|
|
.cast::<u64>()
|
|
|
|
.cmp(&self.read_reg(a1).cast::<u64>())
|
2023-09-15 01:42:56 -05:00
|
|
|
as i64
|
|
|
|
+ 1,
|
2023-08-17 18:41:05 -05:00
|
|
|
);
|
|
|
|
}
|
2023-09-30 18:51:51 -05:00
|
|
|
NEG => {
|
|
|
|
// Bit negation
|
|
|
|
let OpsRR(tg, a0) = self.decode();
|
|
|
|
self.write_reg(tg, !self.read_reg(a0).cast::<u64>())
|
|
|
|
}
|
2023-08-17 18:41:05 -05:00
|
|
|
NOT => {
|
|
|
|
// Logical negation
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRR(tg, a0) = self.decode();
|
2023-09-30 18:51:51 -05:00
|
|
|
self.write_reg(tg, u64::from(self.read_reg(a0).cast::<u64>() == 0));
|
2023-08-17 18:41:05 -05:00
|
|
|
}
|
|
|
|
DIR => {
|
|
|
|
// Fused Division-Remainder
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRRR(dt, rt, a0, a1) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
let a0 = self.read_reg(a0).cast::<u64>();
|
|
|
|
let a1 = self.read_reg(a1).cast::<u64>();
|
|
|
|
self.write_reg(dt, a0.checked_div(a1).unwrap_or(u64::MAX));
|
|
|
|
self.write_reg(rt, a0.checked_rem(a1).unwrap_or(u64::MAX));
|
|
|
|
}
|
|
|
|
ADDI => self.binary_op_imm(u64::wrapping_add),
|
|
|
|
MULI => self.binary_op_imm(u64::wrapping_sub),
|
|
|
|
ANDI => self.binary_op_imm::<u64>(ops::BitAnd::bitand),
|
|
|
|
ORI => self.binary_op_imm::<u64>(ops::BitOr::bitor),
|
|
|
|
XORI => self.binary_op_imm::<u64>(ops::BitXor::bitxor),
|
|
|
|
SLI => self.binary_op_ims(u64::wrapping_shl),
|
|
|
|
SRI => self.binary_op_ims(u64::wrapping_shr),
|
|
|
|
SRSI => self.binary_op_ims(i64::wrapping_shr),
|
|
|
|
CMPI => {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRD(tg, a0, imm) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(
|
|
|
|
tg,
|
|
|
|
self.read_reg(a0)
|
|
|
|
.cast::<i64>()
|
|
|
|
.cmp(&Value::from(imm).cast::<i64>())
|
|
|
|
as i64,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
CMPUI => {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRD(tg, a0, imm) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(tg, self.read_reg(a0).cast::<u64>().cmp(&imm) as i64);
|
|
|
|
}
|
|
|
|
CP => {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRR(tg, a0) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(tg, self.read_reg(a0));
|
|
|
|
}
|
|
|
|
SWA => {
|
|
|
|
// Swap registers
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRR(r0, r1) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
match (r0, r1) {
|
|
|
|
(0, 0) => (),
|
|
|
|
(dst, 0) | (0, dst) => self.write_reg(dst, 0_u64),
|
|
|
|
(r0, r1) => {
|
|
|
|
core::ptr::swap(
|
|
|
|
self.registers.get_unchecked_mut(usize::from(r0)),
|
|
|
|
self.registers.get_unchecked_mut(usize::from(r1)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LI => {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRD(tg, imm) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(tg, imm);
|
|
|
|
}
|
2023-09-26 16:36:27 -05:00
|
|
|
LRA => {
|
|
|
|
let OpsRRO(tg, reg, imm) = self.decode();
|
|
|
|
self.write_reg(tg, self.rel_addr(reg, imm).get());
|
|
|
|
}
|
2023-08-17 18:41:05 -05:00
|
|
|
LD => {
|
|
|
|
// Load. If loading more than register size, continue on adjecent registers
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRAH(dst, base, off, count) = self.decode();
|
2023-09-29 02:10:36 -05:00
|
|
|
self.load(dst, base, off, count)?;
|
2023-08-17 18:41:05 -05:00
|
|
|
}
|
|
|
|
ST => {
|
|
|
|
// Store. Same rules apply as to LD
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRAH(dst, base, off, count) = self.decode();
|
2023-09-29 02:10:36 -05:00
|
|
|
self.store(dst, base, off, count)?;
|
2023-08-17 18:41:05 -05:00
|
|
|
}
|
2023-09-26 16:36:27 -05:00
|
|
|
LDR => {
|
|
|
|
let OpsRROH(dst, base, off, count) = self.decode();
|
2023-09-29 02:10:36 -05:00
|
|
|
self.load(dst, base, u64::from(off).wrapping_add(self.pc.get()), count)?;
|
2023-09-26 16:36:27 -05:00
|
|
|
}
|
|
|
|
STR => {
|
|
|
|
let OpsRROH(dst, base, off, count) = self.decode();
|
2023-09-29 02:10:36 -05:00
|
|
|
self.store(dst, base, u64::from(off).wrapping_add(self.pc.get()), count)?;
|
2023-09-26 16:36:27 -05:00
|
|
|
}
|
2023-08-17 18:41:05 -05:00
|
|
|
BMC => {
|
2023-09-26 16:36:27 -05:00
|
|
|
const INS_SIZE: usize = size_of::<OpsRRH>() + 1;
|
|
|
|
|
2023-08-17 18:41:05 -05:00
|
|
|
// Block memory copy
|
|
|
|
match if let Some(copier) = &mut self.copier {
|
|
|
|
// There is some copier, poll.
|
|
|
|
copier.poll(&mut self.memory)
|
|
|
|
} else {
|
|
|
|
// There is none, make one!
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRH(src, dst, count) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
|
|
|
|
// So we are still on BMC on next cycle
|
2023-09-26 16:36:27 -05:00
|
|
|
self.pc -= INS_SIZE;
|
2023-08-17 18:41:05 -05:00
|
|
|
|
|
|
|
self.copier = Some(BlockCopier::new(
|
2023-08-17 19:31:49 -05:00
|
|
|
Address::new(self.read_reg(src).cast()),
|
|
|
|
Address::new(self.read_reg(dst).cast()),
|
2023-08-17 18:41:05 -05:00
|
|
|
count as _,
|
|
|
|
));
|
|
|
|
|
|
|
|
self.copier
|
|
|
|
.as_mut()
|
|
|
|
.unwrap_unchecked() // SAFETY: We just assigned there
|
|
|
|
.poll(&mut self.memory)
|
|
|
|
} {
|
|
|
|
// We are done, shift program counter
|
|
|
|
core::task::Poll::Ready(Ok(())) => {
|
|
|
|
self.copier = None;
|
2023-09-26 16:36:27 -05:00
|
|
|
self.pc += INS_SIZE;
|
2023-08-17 18:41:05 -05:00
|
|
|
}
|
|
|
|
// Error, shift program counter (for consistency)
|
|
|
|
// and yield error
|
|
|
|
core::task::Poll::Ready(Err(e)) => {
|
2023-09-26 16:36:27 -05:00
|
|
|
self.pc += INS_SIZE;
|
2023-08-17 18:41:05 -05:00
|
|
|
return Err(e.into());
|
|
|
|
}
|
|
|
|
// Not done yet, proceed to next cycle
|
|
|
|
core::task::Poll::Pending => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BRC => {
|
|
|
|
// Block register copy
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRB(src, dst, count) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
if src.checked_add(count).is_none() || dst.checked_add(count).is_none() {
|
|
|
|
return Err(VmRunError::RegOutOfBounds);
|
|
|
|
}
|
|
|
|
|
|
|
|
core::ptr::copy(
|
|
|
|
self.registers.get_unchecked(usize::from(src)),
|
|
|
|
self.registers.get_unchecked_mut(usize::from(dst)),
|
|
|
|
usize::from(count),
|
|
|
|
);
|
|
|
|
}
|
2023-09-30 18:51:51 -05:00
|
|
|
JMP => self.pc = self.pc.wrapping_add(self.decode::<OpO>()),
|
2023-08-17 18:41:05 -05:00
|
|
|
JAL => {
|
|
|
|
// Jump and link. Save PC after this instruction to
|
|
|
|
// specified register and jump to reg + offset.
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRW(save, reg, offset) = self.decode();
|
2023-08-17 19:31:49 -05:00
|
|
|
self.write_reg(save, self.pc.get());
|
2023-09-26 16:36:27 -05:00
|
|
|
self.pc = Address::new(
|
|
|
|
self.read_reg(reg).cast::<u64>().wrapping_add(offset.into()),
|
|
|
|
);
|
2023-08-17 18:41:05 -05:00
|
|
|
}
|
|
|
|
// Conditional jumps, jump only to immediates
|
|
|
|
JEQ => self.cond_jmp::<u64>(Ordering::Equal),
|
|
|
|
JNE => {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRP(a0, a1, ja) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
if self.read_reg(a0).cast::<u64>() != self.read_reg(a1).cast::<u64>() {
|
2023-09-26 16:36:27 -05:00
|
|
|
self.pc = Address::new(
|
|
|
|
((self.pc.get() as i64).wrapping_add(ja as i64)) as u64,
|
|
|
|
)
|
2023-08-17 18:41:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
JLT => self.cond_jmp::<u64>(Ordering::Less),
|
|
|
|
JGT => self.cond_jmp::<u64>(Ordering::Greater),
|
|
|
|
JLTU => self.cond_jmp::<i64>(Ordering::Less),
|
|
|
|
JGTU => self.cond_jmp::<i64>(Ordering::Greater),
|
2023-09-30 18:51:51 -05:00
|
|
|
ECA => {
|
2023-08-17 18:41:05 -05:00
|
|
|
self.decode::<()>();
|
|
|
|
|
|
|
|
// So we don't get timer interrupt after ECALL
|
|
|
|
if TIMER_QUOTIENT != 0 {
|
|
|
|
self.timer = self.timer.wrapping_add(1);
|
|
|
|
}
|
|
|
|
return Ok(VmRunOk::Ecall);
|
|
|
|
}
|
2023-09-30 18:51:51 -05:00
|
|
|
EBP => {
|
|
|
|
self.decode::<()>();
|
|
|
|
return Ok(VmRunOk::Breakpoint);
|
|
|
|
}
|
2023-08-17 18:41:05 -05:00
|
|
|
ADDF => self.binary_op::<f64>(ops::Add::add),
|
|
|
|
SUBF => self.binary_op::<f64>(ops::Sub::sub),
|
|
|
|
MULF => self.binary_op::<f64>(ops::Mul::mul),
|
|
|
|
DIRF => {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRRR(dt, rt, a0, a1) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
let a0 = self.read_reg(a0).cast::<f64>();
|
|
|
|
let a1 = self.read_reg(a1).cast::<f64>();
|
|
|
|
self.write_reg(dt, a0 / a1);
|
|
|
|
self.write_reg(rt, a0 % a1);
|
|
|
|
}
|
|
|
|
FMAF => {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRRR(dt, a0, a1, a2) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(
|
|
|
|
dt,
|
|
|
|
self.read_reg(a0).cast::<f64>() * self.read_reg(a1).cast::<f64>()
|
|
|
|
+ self.read_reg(a2).cast::<f64>(),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
NEGF => {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRR(dt, a0) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(dt, -self.read_reg(a0).cast::<f64>());
|
|
|
|
}
|
|
|
|
ITF => {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRR(dt, a0) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(dt, self.read_reg(a0).cast::<i64>() as f64);
|
|
|
|
}
|
|
|
|
FTI => {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRR(dt, a0) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(dt, self.read_reg(a0).cast::<f64>() as i64);
|
|
|
|
}
|
|
|
|
ADDFI => self.binary_op_imm::<f64>(ops::Add::add),
|
|
|
|
MULFI => self.binary_op_imm::<f64>(ops::Mul::mul),
|
2023-09-29 02:10:36 -05:00
|
|
|
LRA16 => {
|
|
|
|
let OpsRRP(tg, reg, imm) = self.decode();
|
|
|
|
self.write_reg(tg, self.rel_addr(reg, imm).get());
|
|
|
|
}
|
|
|
|
LDR16 => {
|
|
|
|
let OpsRRPH(dst, base, off, count) = self.decode();
|
|
|
|
self.load(dst, base, u64::from(off).wrapping_add(self.pc.get()), count)?;
|
|
|
|
}
|
|
|
|
STR16 => {
|
|
|
|
let OpsRRPH(dst, base, off, count) = self.decode();
|
|
|
|
self.store(dst, base, u64::from(off).wrapping_add(self.pc.get()), count)?;
|
|
|
|
}
|
|
|
|
JMPR16 => self.pc = self.pc.wrapping_add(self.decode::<OpP>()),
|
2023-08-17 18:41:05 -05:00
|
|
|
op => return Err(VmRunError::InvalidOpcode(op)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if TIMER_QUOTIENT != 0 {
|
|
|
|
self.timer = self.timer.wrapping_add(1);
|
|
|
|
if self.timer % TIMER_QUOTIENT == 0 {
|
|
|
|
return Ok(VmRunOk::Timer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Decode instruction operands
|
|
|
|
#[inline(always)]
|
2023-09-26 16:36:27 -05:00
|
|
|
unsafe fn decode<T: BytecodeItem>(&mut self) -> T {
|
2023-08-17 19:31:49 -05:00
|
|
|
let pc1 = self.pc + 1_u64;
|
2023-08-17 18:41:05 -05:00
|
|
|
let data = self.memory.prog_read_unchecked::<T>(pc1 as _);
|
|
|
|
self.pc += 1 + size_of::<T>();
|
|
|
|
data
|
|
|
|
}
|
|
|
|
|
2023-09-29 02:10:36 -05:00
|
|
|
/// Load
|
|
|
|
#[inline(always)]
|
|
|
|
unsafe fn load(
|
|
|
|
&mut self,
|
|
|
|
dst: u8,
|
|
|
|
base: u8,
|
|
|
|
offset: u64,
|
|
|
|
count: u16,
|
|
|
|
) -> Result<(), VmRunError> {
|
|
|
|
let n: u8 = match dst {
|
|
|
|
0 => 1,
|
|
|
|
_ => 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
self.memory.load(
|
|
|
|
self.ldst_addr_uber(dst, base, offset, count, n)?,
|
|
|
|
self.registers
|
|
|
|
.as_mut_ptr()
|
|
|
|
.add(usize::from(dst) + usize::from(n))
|
|
|
|
.cast(),
|
|
|
|
usize::from(count).wrapping_sub(n.into()),
|
|
|
|
)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Store
|
|
|
|
#[inline(always)]
|
|
|
|
unsafe fn store(
|
|
|
|
&mut self,
|
|
|
|
dst: u8,
|
|
|
|
base: u8,
|
|
|
|
offset: u64,
|
|
|
|
count: u16,
|
|
|
|
) -> Result<(), VmRunError> {
|
|
|
|
self.memory.store(
|
|
|
|
self.ldst_addr_uber(dst, base, offset, count, 0)?,
|
|
|
|
self.registers.as_ptr().add(usize::from(dst)).cast(),
|
|
|
|
count.into(),
|
|
|
|
)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2023-08-17 18:41:05 -05:00
|
|
|
/// Perform binary operating over two registers
|
|
|
|
#[inline(always)]
|
|
|
|
unsafe fn binary_op<T: ValueVariant>(&mut self, op: impl Fn(T, T) -> T) {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRR(tg, a0, a1) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(
|
|
|
|
tg,
|
|
|
|
op(self.read_reg(a0).cast::<T>(), self.read_reg(a1).cast::<T>()),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Perform binary operation over register and immediate
|
|
|
|
#[inline(always)]
|
|
|
|
unsafe fn binary_op_imm<T: ValueVariant>(&mut self, op: impl Fn(T, T) -> T) {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRD(tg, reg, imm) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(
|
|
|
|
tg,
|
|
|
|
op(self.read_reg(reg).cast::<T>(), Value::from(imm).cast::<T>()),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Perform binary operation over register and shift immediate
|
|
|
|
#[inline(always)]
|
|
|
|
unsafe fn binary_op_ims<T: ValueVariant>(&mut self, op: impl Fn(T, u32) -> T) {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRW(tg, reg, imm) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
self.write_reg(tg, op(self.read_reg(reg).cast::<T>(), imm));
|
|
|
|
}
|
|
|
|
|
2023-09-26 16:36:27 -05:00
|
|
|
/// Compute address relative to program counter an register value
|
|
|
|
#[inline(always)]
|
|
|
|
fn rel_addr(&self, reg: u8, imm: impl AddressOp) -> Address {
|
|
|
|
self.pc
|
|
|
|
.wrapping_add(self.read_reg(reg).cast::<u64>())
|
|
|
|
.wrapping_add(imm)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Jump at `PC + #3` if ordering on `#0 <=> #1` is equal to expected
|
2023-08-17 18:41:05 -05:00
|
|
|
#[inline(always)]
|
|
|
|
unsafe fn cond_jmp<T: ValueVariant + Ord>(&mut self, expected: Ordering) {
|
2023-09-26 16:36:27 -05:00
|
|
|
let OpsRRP(a0, a1, ja) = self.decode();
|
2023-08-17 18:41:05 -05:00
|
|
|
if self
|
|
|
|
.read_reg(a0)
|
|
|
|
.cast::<T>()
|
|
|
|
.cmp(&self.read_reg(a1).cast::<T>())
|
|
|
|
== expected
|
|
|
|
{
|
2023-09-26 16:36:27 -05:00
|
|
|
self.pc = Address::new(((self.pc.get() as i64).wrapping_add(ja as i64)) as u64);
|
2023-08-17 18:41:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Read register
|
|
|
|
#[inline(always)]
|
2023-09-26 16:36:27 -05:00
|
|
|
fn read_reg(&self, n: u8) -> Value {
|
|
|
|
unsafe { *self.registers.get_unchecked(n as usize) }
|
2023-08-17 18:41:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Write a register.
|
|
|
|
/// Writing to register 0 is no-op.
|
|
|
|
#[inline(always)]
|
2023-09-26 16:36:27 -05:00
|
|
|
fn write_reg(&mut self, n: u8, value: impl Into<Value>) {
|
2023-08-17 18:41:05 -05:00
|
|
|
if n != 0 {
|
2023-09-26 16:36:27 -05:00
|
|
|
unsafe { *self.registers.get_unchecked_mut(n as usize) = value.into() };
|
2023-08-17 18:41:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Load / Store Address check-computation überfunction
|
|
|
|
#[inline(always)]
|
|
|
|
unsafe fn ldst_addr_uber(
|
|
|
|
&self,
|
|
|
|
dst: u8,
|
|
|
|
base: u8,
|
|
|
|
offset: u64,
|
|
|
|
size: u16,
|
|
|
|
adder: u8,
|
2023-08-17 19:31:49 -05:00
|
|
|
) -> Result<Address, VmRunError> {
|
2023-08-17 18:41:05 -05:00
|
|
|
let reg = dst.checked_add(adder).ok_or(VmRunError::RegOutOfBounds)?;
|
|
|
|
|
|
|
|
if usize::from(reg) * 8 + usize::from(size) > 2048 {
|
|
|
|
Err(VmRunError::RegOutOfBounds)
|
|
|
|
} else {
|
|
|
|
self.read_reg(base)
|
|
|
|
.cast::<u64>()
|
|
|
|
.checked_add(offset)
|
|
|
|
.and_then(|x| x.checked_add(adder.into()))
|
|
|
|
.ok_or(VmRunError::AddrOutOfBounds)
|
2023-08-17 19:31:49 -05:00
|
|
|
.map(Address::new)
|
2023-08-17 18:41:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|