2023-09-27 01:31:00 +00:00
|
|
|
use std::{
|
|
|
|
collections::HashMap,
|
|
|
|
rc::Rc,
|
|
|
|
};
|
2023-09-26 19:41:10 +00:00
|
|
|
|
2023-09-26 21:47:51 +00:00
|
|
|
use crate::{
|
|
|
|
instruction::Instruction,
|
|
|
|
value::{
|
|
|
|
BogusClosure,
|
|
|
|
Value,
|
|
|
|
},
|
2023-09-26 19:10:57 +00:00
|
|
|
};
|
2023-09-24 22:40:45 +00:00
|
|
|
|
2023-09-25 00:47:17 +00:00
|
|
|
pub struct Block {
|
2023-09-24 22:40:45 +00:00
|
|
|
pub instructions: Vec <Instruction>,
|
|
|
|
pub constants: Vec <Value>,
|
2023-09-25 01:40:28 +00:00
|
|
|
pub upvalue_count: usize,
|
2023-09-24 22:40:45 +00:00
|
|
|
}
|
|
|
|
|
2023-09-25 00:47:17 +00:00
|
|
|
pub struct Chunk {
|
|
|
|
pub blocks: Vec <Block>,
|
|
|
|
}
|
|
|
|
|
2023-09-25 03:49:00 +00:00
|
|
|
#[derive (Clone, Debug)]
|
2023-09-25 00:47:17 +00:00
|
|
|
struct StackFrame {
|
2023-09-24 22:40:45 +00:00
|
|
|
// i32 makes it a little easier to implement jumps
|
2023-09-25 00:47:17 +00:00
|
|
|
// Starts at 0 right after OP_CALL
|
|
|
|
|
2023-09-24 22:40:45 +00:00
|
|
|
program_counter: i32,
|
2023-09-25 00:47:17 +00:00
|
|
|
|
|
|
|
// Starts from 0 for main and 1 for the first closure
|
|
|
|
block_idx: usize,
|
|
|
|
|
|
|
|
register_offset: usize,
|
|
|
|
}
|
|
|
|
|
2023-09-25 05:23:53 +00:00
|
|
|
#[derive (Debug)]
|
|
|
|
pub struct Breakpoint {
|
|
|
|
pub block_idx: usize,
|
|
|
|
pub program_counter: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive (Debug)]
|
2023-09-25 00:47:17 +00:00
|
|
|
pub struct State {
|
|
|
|
registers: Vec <Value>,
|
2023-09-25 03:49:00 +00:00
|
|
|
stack: Vec <StackFrame>,
|
2023-09-25 05:23:53 +00:00
|
|
|
|
2023-09-25 00:47:17 +00:00
|
|
|
pub debug_print: bool,
|
2023-09-25 05:23:53 +00:00
|
|
|
pub breakpoints: Vec <Breakpoint>,
|
|
|
|
step_count: u32,
|
2023-09-24 22:40:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for State {
|
|
|
|
fn default () -> Self {
|
|
|
|
Self {
|
2023-09-25 05:23:53 +00:00
|
|
|
registers: vec! [Value::Nil; 16],
|
2023-09-25 03:49:00 +00:00
|
|
|
stack: vec! [
|
|
|
|
StackFrame {
|
|
|
|
program_counter: 0,
|
|
|
|
block_idx: 0,
|
|
|
|
register_offset: 0,
|
|
|
|
},
|
|
|
|
],
|
2023-09-25 00:47:17 +00:00
|
|
|
debug_print: false,
|
2023-09-25 05:23:53 +00:00
|
|
|
breakpoints: Default::default(),
|
|
|
|
step_count: 0,
|
2023-09-24 22:40:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl State {
|
|
|
|
pub fn upvalues_from_args <I: Iterator <Item = String>> (args: I) -> Vec <Value>
|
|
|
|
{
|
2023-09-26 19:10:57 +00:00
|
|
|
let arg: Vec <_> = args.map (|s| s.to_string ()).collect ();
|
2023-09-24 22:40:45 +00:00
|
|
|
|
2023-09-26 20:49:12 +00:00
|
|
|
let env = HashMap::from_iter ([
|
2023-09-26 19:10:57 +00:00
|
|
|
("arg", Value::BogusArg (arg.into ())),
|
2023-09-24 22:40:45 +00:00
|
|
|
("print", Value::BogusPrint),
|
2023-09-24 22:42:56 +00:00
|
|
|
].map (|(k, v)| (k.to_string (), v)));
|
2023-09-24 22:40:45 +00:00
|
|
|
|
|
|
|
vec! [
|
2023-09-26 19:10:57 +00:00
|
|
|
Value::BogusEnv (env.into ()),
|
2023-09-24 22:40:45 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2023-09-25 03:49:00 +00:00
|
|
|
fn register_window (&self) -> &[Value] {
|
|
|
|
let frame = self.stack.last ().unwrap ();
|
|
|
|
&self.registers [frame.register_offset..]
|
|
|
|
}
|
|
|
|
|
2023-09-26 21:45:04 +00:00
|
|
|
/// Short form to get access to a register within our window
|
|
|
|
|
|
|
|
fn reg (&self, i: u8) -> &Value {
|
|
|
|
let frame = self.stack.last ().unwrap ();
|
|
|
|
&self.registers [frame.register_offset + i as usize]
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reg_mut (&mut self, i: u8) -> &mut Value {
|
|
|
|
let frame = self.stack.last ().unwrap ();
|
|
|
|
&mut self.registers [frame.register_offset + i as usize]
|
|
|
|
}
|
|
|
|
|
2023-09-24 22:42:56 +00:00
|
|
|
pub fn execute_chunk (&mut self, chunk: &Chunk, upvalues: &[Value])
|
2023-09-24 22:40:45 +00:00
|
|
|
-> Vec <Value> {
|
|
|
|
let max_iters = 2000;
|
|
|
|
|
|
|
|
for _ in 0..max_iters {
|
2023-09-25 05:23:53 +00:00
|
|
|
self.step_count += 1;
|
|
|
|
|
2023-09-25 03:49:00 +00:00
|
|
|
let frame = self.stack.last_mut ().unwrap ().clone ();
|
2023-09-25 00:47:17 +00:00
|
|
|
let block = chunk.blocks.get (frame.block_idx).unwrap ();
|
2023-09-24 22:40:45 +00:00
|
|
|
|
2023-09-25 05:23:53 +00:00
|
|
|
for bp in &self.breakpoints {
|
|
|
|
if frame.block_idx == bp.block_idx && frame.program_counter == bp.program_counter
|
|
|
|
{
|
|
|
|
dbg! (&self);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-25 00:47:17 +00:00
|
|
|
let mut next_pc = frame.program_counter;
|
|
|
|
|
|
|
|
let pc = usize::try_from (frame.program_counter).expect ("program_counter is not a valid usize");
|
|
|
|
let instruction = match block.instructions.get (pc) {
|
|
|
|
Some (x) => x,
|
|
|
|
None => {
|
2023-09-25 03:49:00 +00:00
|
|
|
dbg! (&self.stack);
|
2023-09-25 00:47:17 +00:00
|
|
|
panic! ("program_counter went out of bounds");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2023-09-25 03:49:00 +00:00
|
|
|
// let r = &mut self.registers [frame.register_offset..];
|
2023-09-25 00:47:17 +00:00
|
|
|
let k = &block.constants;
|
2023-09-24 22:40:45 +00:00
|
|
|
|
|
|
|
match instruction {
|
|
|
|
Instruction::Add (a, b, c) => {
|
2023-09-26 21:45:04 +00:00
|
|
|
let v_b = self.reg (*b).as_float ().unwrap ();
|
|
|
|
let v_c = self.reg (*c).as_float ().unwrap ();
|
2023-09-24 22:40:45 +00:00
|
|
|
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = Value::from (v_b + v_c);
|
2023-09-24 22:40:45 +00:00
|
|
|
},
|
2023-09-26 19:10:57 +00:00
|
|
|
Instruction::Call (a, _b, c) => {
|
2023-09-24 22:40:45 +00:00
|
|
|
// Take arguments from registers [a + 1, a + b)
|
|
|
|
// Call the function in register [a]
|
|
|
|
// Return values in registers [a, a + c - 1)
|
|
|
|
//
|
|
|
|
// That is, call a with b - 1 arguments and expect c returns
|
|
|
|
//
|
|
|
|
// e.g. CALL 0 2 1 mean "Call 0 with 1 argument, return 1 value", like for printing a constant
|
|
|
|
|
|
|
|
// TODO: Only implement printing values for now
|
|
|
|
|
2023-09-26 21:45:04 +00:00
|
|
|
let v_a = self.reg (*a);
|
2023-09-24 22:40:45 +00:00
|
|
|
|
2023-09-25 00:47:17 +00:00
|
|
|
match v_a {
|
2023-09-26 19:10:57 +00:00
|
|
|
Value::BogusClosure (rc) => {
|
|
|
|
let idx = rc.idx;
|
|
|
|
|
2023-09-25 00:47:17 +00:00
|
|
|
let block_idx = frame.block_idx;
|
2023-09-26 19:10:57 +00:00
|
|
|
let target_block = idx;
|
2023-09-25 00:47:17 +00:00
|
|
|
|
2023-09-25 03:49:00 +00:00
|
|
|
let current_frame = self.stack.last ().unwrap ();
|
2023-09-25 00:47:17 +00:00
|
|
|
|
2023-09-25 03:49:00 +00:00
|
|
|
self.stack.push (StackFrame {
|
2023-09-25 00:47:17 +00:00
|
|
|
program_counter: 0,
|
|
|
|
block_idx: target_block,
|
2023-09-26 21:45:04 +00:00
|
|
|
register_offset: current_frame.register_offset + *a as usize + 1,
|
2023-09-25 00:47:17 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if self.debug_print {
|
|
|
|
println! ("Inst {block_idx}:{pc} calls {target_block}:0");
|
2023-09-25 03:49:00 +00:00
|
|
|
let stack_depth = self.stack.len ();
|
2023-09-25 00:47:17 +00:00
|
|
|
println! ("stack_depth: {stack_depth}");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skip the PC increment at the bottom of the loop
|
|
|
|
continue;
|
|
|
|
},
|
|
|
|
Value::BogusPrint => {
|
|
|
|
// In real Lua, print is a function inside
|
|
|
|
// the runtime. Here it's bogus.
|
|
|
|
|
|
|
|
// assert_eq! (*b, 2);
|
|
|
|
assert_eq! (*c, 1);
|
|
|
|
|
2023-09-26 21:45:04 +00:00
|
|
|
let value = self.reg (a + 1);
|
2023-09-26 20:57:23 +00:00
|
|
|
println! ("{}", value);
|
2023-09-26 18:46:01 +00:00
|
|
|
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = self.reg_mut (*a + 1).take ();
|
2023-09-25 00:47:17 +00:00
|
|
|
},
|
2023-09-25 03:49:00 +00:00
|
|
|
_ => {
|
|
|
|
let stack = &self.stack;
|
|
|
|
panic! ("Cannot call value {a:?}. backtrace: {stack:?}");
|
|
|
|
},
|
2023-09-25 00:47:17 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
Instruction::Closure (a, b) => {
|
|
|
|
let b = usize::try_from (*b).unwrap ();
|
2023-09-24 22:40:45 +00:00
|
|
|
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = Value::BogusClosure (BogusClosure {
|
2023-09-25 03:49:00 +00:00
|
|
|
idx: b + frame.block_idx + 1,
|
|
|
|
upvalues: vec! [],
|
2023-09-26 19:10:57 +00:00
|
|
|
}.into ());
|
2023-09-24 22:40:45 +00:00
|
|
|
},
|
2023-09-26 21:45:04 +00:00
|
|
|
Instruction::EqK (a, b, k_flag) => {
|
|
|
|
let b = usize::from (*b);
|
2023-09-24 22:40:45 +00:00
|
|
|
|
2023-09-26 21:45:04 +00:00
|
|
|
if (*self.reg (*a) == k [b]) != *k_flag {
|
|
|
|
next_pc += 1;
|
2023-09-24 22:40:45 +00:00
|
|
|
}
|
|
|
|
},
|
2023-09-26 20:49:12 +00:00
|
|
|
Instruction::ExtraArg (ax) => {
|
|
|
|
// This is used for NewTable. Maybe it's for reserving
|
|
|
|
// capacity in the array or something?
|
|
|
|
|
|
|
|
assert_eq! (*ax, 0, "implemented only for ax == 0");
|
|
|
|
},
|
2023-09-27 03:34:47 +00:00
|
|
|
Instruction::ForLoop (a, bx) => {
|
|
|
|
let mut iter = self.reg (*a + 3).as_int ().unwrap ();
|
|
|
|
iter += 1;
|
|
|
|
*self.reg_mut (*a + 3) = iter.into ();
|
|
|
|
|
|
|
|
let stop = self.reg (*a + 1).as_int ().unwrap ();
|
|
|
|
|
|
|
|
if iter <= stop {
|
|
|
|
next_pc -= i32::try_from (*bx).unwrap ();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Instruction::ForPrep (a, bx) => {
|
|
|
|
let start = self.reg (*a).as_int ().unwrap ();
|
|
|
|
let stop = self.reg (*a + 1).as_int ().unwrap ();
|
|
|
|
|
|
|
|
if start > stop {
|
|
|
|
next_pc += i32::try_from (*bx).unwrap () + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*self.reg_mut (*a + 3) = start.into ();
|
|
|
|
},
|
2023-09-27 01:31:00 +00:00
|
|
|
Instruction::GetField (a, b, c) => {
|
|
|
|
let t = match self.reg (*b) {
|
|
|
|
Value::Table (t) => t,
|
|
|
|
_ => panic! ("R[B] must be a table"),
|
|
|
|
};
|
|
|
|
|
|
|
|
let key = match &k [usize::from (*c)] {
|
|
|
|
Value::String (s) => s,
|
|
|
|
_ => panic! ("K[C] must be a string"),
|
|
|
|
};
|
|
|
|
|
2023-09-27 02:43:02 +00:00
|
|
|
let val = t.borrow ().get (Value::String (Rc::clone (key)));
|
|
|
|
|
|
|
|
*self.reg_mut (*a) = val;
|
2023-09-27 01:31:00 +00:00
|
|
|
},
|
|
|
|
Instruction::GetTable (a, b, c) => {
|
|
|
|
let t = match self.reg (*b) {
|
|
|
|
Value::Table (t) => t,
|
|
|
|
_ => panic! ("R[B] must be a table"),
|
|
|
|
};
|
|
|
|
|
|
|
|
let key = self.reg (*c);
|
|
|
|
|
2023-09-27 02:43:02 +00:00
|
|
|
let val = t.borrow ().get (key.clone ());
|
2023-09-27 01:31:00 +00:00
|
|
|
|
|
|
|
*self.reg_mut (*a) = val;
|
|
|
|
},
|
2023-09-24 22:40:45 +00:00
|
|
|
Instruction::GetTabUp (a, b, c) => {
|
|
|
|
let b = usize::try_from (*b).unwrap ();
|
|
|
|
let c = usize::try_from (*c).unwrap ();
|
|
|
|
|
|
|
|
let env = match upvalues.get (b).unwrap () {
|
|
|
|
Value::BogusEnv (x) => x,
|
|
|
|
_ => panic! ("Only allowed upvalue is BogusEnv"),
|
|
|
|
};
|
|
|
|
|
|
|
|
let key = match k.get (c).unwrap () {
|
2023-09-26 19:10:57 +00:00
|
|
|
Value::String (s) => s.as_ref (),
|
2023-09-24 22:40:45 +00:00
|
|
|
_ => panic! ("GetTabUp only supports string keys"),
|
|
|
|
};
|
|
|
|
|
|
|
|
let value = env.get (key).unwrap ();
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = value.clone ();
|
2023-09-24 22:40:45 +00:00
|
|
|
},
|
|
|
|
Instruction::GetI (a, b, c) => {
|
2023-09-27 01:31:00 +00:00
|
|
|
let key = usize::try_from (*c).unwrap ();
|
2023-09-24 22:40:45 +00:00
|
|
|
|
2023-09-26 21:45:04 +00:00
|
|
|
let table = self.reg (*b);
|
2023-09-24 22:40:45 +00:00
|
|
|
let value = match table {
|
2023-09-27 01:31:00 +00:00
|
|
|
Value::BogusArg (arg) => arg.get (key).map (|x| x.as_str().into ()).unwrap_or_default(),
|
|
|
|
Value::Table (t) => {
|
|
|
|
let key = Value::from (i64::try_from (key).unwrap ());
|
2023-09-27 02:43:02 +00:00
|
|
|
t.borrow ().get (key)
|
2023-09-27 01:31:00 +00:00
|
|
|
},
|
|
|
|
_ => unimplemented! (),
|
2023-09-24 22:40:45 +00:00
|
|
|
};
|
|
|
|
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = value;
|
2023-09-24 22:40:45 +00:00
|
|
|
},
|
2023-09-25 05:23:53 +00:00
|
|
|
Instruction::GetUpVal (a, b) => {
|
|
|
|
let this_func = self.stack.last ().unwrap ().register_offset - 1;
|
|
|
|
let upvalues = match &self.registers [this_func] {
|
2023-09-26 19:10:57 +00:00
|
|
|
Value::BogusClosure (rc) => &rc.upvalues,
|
2023-09-25 05:23:53 +00:00
|
|
|
_ => panic! ("Can't do GetUpVal outside a closure"),
|
|
|
|
};
|
|
|
|
|
|
|
|
let b = usize::try_from (*b).unwrap ();
|
|
|
|
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = upvalues [b].clone ();
|
2023-09-25 05:23:53 +00:00
|
|
|
},
|
2023-09-25 00:47:17 +00:00
|
|
|
Instruction::Jmp (s_j) => next_pc += s_j,
|
2023-09-26 18:46:01 +00:00
|
|
|
Instruction::LoadF (a, sbx) => {
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = Value::Float (*sbx as f64);
|
2023-09-26 18:46:01 +00:00
|
|
|
}
|
2023-09-25 00:47:17 +00:00
|
|
|
Instruction::LoadFalse (a) => {
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = false.into ();
|
2023-09-25 00:47:17 +00:00
|
|
|
},
|
2023-09-24 22:40:45 +00:00
|
|
|
Instruction::LoadI (a, sbx) => {
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = Value::Integer (*sbx as i64);
|
2023-09-24 22:40:45 +00:00
|
|
|
},
|
|
|
|
Instruction::LoadK (a, bx) => {
|
|
|
|
let bx = usize::try_from (*bx).unwrap ();
|
|
|
|
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = k [bx].clone ();
|
2023-09-24 22:40:45 +00:00
|
|
|
},
|
2023-09-26 18:46:01 +00:00
|
|
|
Instruction::LoadNil (a) => {
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = Value::Nil;
|
2023-09-26 18:46:01 +00:00
|
|
|
},
|
2023-09-25 00:47:17 +00:00
|
|
|
Instruction::LoadTrue (a) => {
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = true.into ();
|
2023-09-25 00:47:17 +00:00
|
|
|
},
|
2023-09-24 22:40:45 +00:00
|
|
|
Instruction::MmBin (a, b, _c) => {
|
2023-09-26 21:45:04 +00:00
|
|
|
let a = self.reg (*a);
|
|
|
|
let b = self.reg (*b);
|
2023-09-24 22:40:45 +00:00
|
|
|
|
|
|
|
if a.as_float().is_some() && b.as_float().is_some () {
|
|
|
|
// No need for metamethods
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
panic! ("Not sure how to implememtn OP_MMBIN for these 2 values {a:?}, {b:?}");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Instruction::Move (a, b) => {
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = self.reg (*b).clone ();
|
2023-09-24 22:40:45 +00:00
|
|
|
},
|
2023-09-26 20:49:12 +00:00
|
|
|
Instruction::Mul (_a, _b, _c) => unimplemented!(),
|
|
|
|
Instruction::NewTable (a) => {
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = Value::Table (Default::default ());
|
2023-09-26 20:49:12 +00:00
|
|
|
},
|
2023-09-25 00:47:17 +00:00
|
|
|
Instruction::Not (a, b) => {
|
2023-09-26 21:45:04 +00:00
|
|
|
*self.reg_mut (*a) = Value::Boolean (! self.reg (*b).is_truthy());
|
2023-09-25 00:47:17 +00:00
|
|
|
}
|
2023-09-26 21:45:04 +00:00
|
|
|
Instruction::Return (a, b, _c, k) => {
|
2023-09-24 22:40:45 +00:00
|
|
|
let a = usize::try_from (*a).unwrap ();
|
|
|
|
let b = usize::try_from (*b).unwrap ();
|
|
|
|
|
2023-09-25 03:49:00 +00:00
|
|
|
let popped_frame = self.stack.pop ().unwrap ();
|
|
|
|
|
|
|
|
// Build closure if needed
|
|
|
|
if *k {
|
|
|
|
|
2023-09-25 05:23:53 +00:00
|
|
|
let closure_idx = match &self.registers [popped_frame.register_offset + a] {
|
2023-09-26 19:10:57 +00:00
|
|
|
Value::BogusClosure (rc) => rc.idx,
|
2023-09-25 03:49:00 +00:00
|
|
|
_ => panic! ("Impossible"),
|
|
|
|
};
|
|
|
|
|
2023-09-26 19:10:57 +00:00
|
|
|
let upvalue_count = chunk.blocks [closure_idx].upvalue_count;
|
2023-09-25 03:49:00 +00:00
|
|
|
|
|
|
|
let start_reg = a + popped_frame.register_offset - upvalue_count;
|
|
|
|
|
|
|
|
let upvalues = self.registers [start_reg..start_reg+upvalue_count].iter ().cloned ().collect ();
|
|
|
|
|
2023-09-26 19:10:57 +00:00
|
|
|
self.registers [a + popped_frame.register_offset] = Value::BogusClosure (BogusClosure {
|
|
|
|
idx: closure_idx,
|
2023-09-25 03:49:00 +00:00
|
|
|
upvalues,
|
2023-09-26 19:10:57 +00:00
|
|
|
}.into ());
|
2023-09-25 03:49:00 +00:00
|
|
|
}
|
2023-09-25 01:40:28 +00:00
|
|
|
|
|
|
|
if self.debug_print {
|
|
|
|
let old_block = popped_frame.block_idx;
|
|
|
|
let old_pc = popped_frame.program_counter;
|
|
|
|
println! ("Inst {old_block}:{old_pc} returns");
|
2023-09-25 03:49:00 +00:00
|
|
|
let stack_depth = self.stack.len ();
|
2023-09-25 01:40:28 +00:00
|
|
|
println! ("stack_depth: {stack_depth}");
|
|
|
|
}
|
|
|
|
|
2023-09-25 03:49:00 +00:00
|
|
|
if let Some (new_frame) = self.stack.last() {
|
2023-09-25 01:40:28 +00:00
|
|
|
next_pc = new_frame.program_counter;
|
2023-09-25 05:23:53 +00:00
|
|
|
|
|
|
|
// Shift our output registers down so the caller
|
|
|
|
// can grab them
|
|
|
|
// idk exactly why Lua does this
|
|
|
|
|
|
|
|
// Register that our function was in before we
|
|
|
|
// called it.
|
|
|
|
|
|
|
|
let offset = popped_frame.register_offset - 1;
|
|
|
|
for i in (offset)..(offset - 1 + b) {
|
|
|
|
self.registers [i] = self.registers [i + 1 + a].take ();
|
|
|
|
}
|
2023-09-25 01:40:28 +00:00
|
|
|
}
|
|
|
|
else {
|
2023-09-25 05:23:53 +00:00
|
|
|
// Return from the entire program
|
2023-09-25 06:57:57 +00:00
|
|
|
return self.registers [a..(a + b - 1)].to_vec();
|
2023-09-25 01:40:28 +00:00
|
|
|
}
|
2023-09-25 00:47:17 +00:00
|
|
|
},
|
2023-09-26 20:49:12 +00:00
|
|
|
Instruction::Return0 => unimplemented! (),
|
2023-09-25 00:47:17 +00:00
|
|
|
Instruction::Return1 (a) => {
|
|
|
|
let a = usize::try_from (*a).unwrap ();
|
2023-09-25 03:49:00 +00:00
|
|
|
let popped_frame = self.stack.pop ().unwrap ();
|
|
|
|
|
2023-09-25 00:47:17 +00:00
|
|
|
|
2023-09-25 03:49:00 +00:00
|
|
|
self.registers [popped_frame.register_offset - 1] = self.register_window ()[a].clone ();
|
2023-09-25 00:47:17 +00:00
|
|
|
|
2023-09-25 03:49:00 +00:00
|
|
|
let frame = self.stack.last ().unwrap ();
|
2023-09-25 00:47:17 +00:00
|
|
|
let new_block = frame.block_idx;
|
|
|
|
next_pc = frame.program_counter;
|
|
|
|
|
|
|
|
if self.debug_print {
|
|
|
|
let old_block = popped_frame.block_idx;
|
|
|
|
let old_pc = popped_frame.program_counter;
|
|
|
|
println! ("Inst {old_block}:{old_pc} returns to inst {new_block}:{next_pc}");
|
2023-09-25 03:49:00 +00:00
|
|
|
let stack_depth = self.stack.len ();
|
2023-09-25 00:47:17 +00:00
|
|
|
println! ("stack_depth: {stack_depth}");
|
|
|
|
}
|
2023-09-25 05:23:53 +00:00
|
|
|
|
|
|
|
// Shift output register down
|
|
|
|
let offset = popped_frame.register_offset;
|
|
|
|
self.registers [offset - 1] = self.registers [offset + a].take ();
|
2023-09-25 00:47:17 +00:00
|
|
|
},
|
2023-09-27 01:31:00 +00:00
|
|
|
Instruction::SetField (a, b, c, k_flag) => {
|
|
|
|
let value = if *k_flag {
|
|
|
|
&k [usize::from (*c)]
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
self.reg (*c)
|
|
|
|
}
|
|
|
|
.clone ();
|
|
|
|
|
|
|
|
let b = usize::try_from (*b).unwrap ();
|
|
|
|
|
|
|
|
let key = match k.get (b).unwrap () {
|
|
|
|
Value::String (s) => s.as_ref (),
|
|
|
|
_ => panic! ("GetTabUp only supports string keys"),
|
|
|
|
};
|
|
|
|
|
2023-09-27 02:43:02 +00:00
|
|
|
let mut dst = self.reg (*a).as_table ()
|
|
|
|
.expect ("SetField only works on tables").borrow_mut ();
|
2023-09-27 01:31:00 +00:00
|
|
|
|
2023-09-27 02:43:02 +00:00
|
|
|
dst.insert (Value::from (key.as_str ()), value);
|
2023-09-27 01:31:00 +00:00
|
|
|
},
|
|
|
|
Instruction::SetI (a, b, c, k_flag) => {
|
|
|
|
let value = if *k_flag {
|
|
|
|
&k [usize::from (*c)]
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
self.reg (*c)
|
|
|
|
}
|
|
|
|
.clone ();
|
|
|
|
|
2023-09-27 02:43:02 +00:00
|
|
|
let mut dst = self.reg_mut (*a).as_table ().expect ("SetI only works on tables").borrow_mut ();
|
2023-09-27 01:31:00 +00:00
|
|
|
|
2023-09-27 02:43:02 +00:00
|
|
|
dst.insert (i64::from (*b), value);
|
2023-09-27 01:31:00 +00:00
|
|
|
},
|
|
|
|
Instruction::SetList (a, b, c, k) => {
|
|
|
|
if *b == 0 {
|
|
|
|
panic! ("SetList with b == 0 not implemented");
|
|
|
|
}
|
|
|
|
if *k {
|
|
|
|
panic! ("SetList with k = true not implemented");
|
|
|
|
}
|
|
|
|
|
2023-09-27 02:43:02 +00:00
|
|
|
let mut dst = self.reg (*a).as_table ().expect ("SetList only works on tables").borrow_mut ();
|
2023-09-27 01:31:00 +00:00
|
|
|
|
|
|
|
for i in 1..=*b {
|
|
|
|
let src = self.reg (*a + i);
|
|
|
|
dst.insert (Value::from (i64::from (*c + i)), src.clone ());
|
|
|
|
}
|
|
|
|
},
|
2023-09-26 20:49:12 +00:00
|
|
|
Instruction::SetTabUp (_a, _b, _c) => unimplemented! (),
|
|
|
|
Instruction::TailCall (_a, _b, _c, _k) => unimplemented! (),
|
2023-09-25 00:47:17 +00:00
|
|
|
Instruction::Test (a, _k) => {
|
2023-09-26 21:45:04 +00:00
|
|
|
if self.reg (*a).is_truthy() {
|
2023-09-25 00:47:17 +00:00
|
|
|
next_pc += 1;
|
|
|
|
}
|
2023-09-24 22:40:45 +00:00
|
|
|
},
|
|
|
|
Instruction::VarArgPrep (_) => (),
|
|
|
|
}
|
|
|
|
|
2023-09-25 00:47:17 +00:00
|
|
|
next_pc += 1;
|
|
|
|
{
|
2023-09-25 03:49:00 +00:00
|
|
|
let frame = self.stack.last_mut ().unwrap ();
|
2023-09-25 00:47:17 +00:00
|
|
|
frame.program_counter = next_pc;
|
|
|
|
}
|
2023-09-24 22:40:45 +00:00
|
|
|
}
|
|
|
|
|
2023-09-25 00:47:17 +00:00
|
|
|
panic! ("Hit max iterations before block returned");
|
2023-09-24 22:40:45 +00:00
|
|
|
}
|
|
|
|
}
|