From 127ef984865500d70176347861b2e8bad29a39be Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 28 Feb 2021 14:37:35 +0200 Subject: refactor(tazjin/rlox): Represent VM values as enums Introduces a new enum which represents the different types of possible values, and modifies the rest of the existing code to wrap/unwrap these enum variants correctly. Notably in the vm module, a new macro has been introduced that makes it possible to encode a type expectation and return a runtime error in case of a type mismatch. Change-Id: I325b5e31e395c62d8819ab2af6d398e1277333c0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2570 Reviewed-by: tazjin Tested-by: BuildkiteCI --- users/tazjin/rlox/src/bytecode/vm.rs | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) (limited to 'users/tazjin/rlox/src/bytecode/vm.rs') diff --git a/users/tazjin/rlox/src/bytecode/vm.rs b/users/tazjin/rlox/src/bytecode/vm.rs index 87c2aa440bf4..ee3abbd6cc18 100644 --- a/users/tazjin/rlox/src/bytecode/vm.rs +++ b/users/tazjin/rlox/src/bytecode/vm.rs @@ -23,11 +23,34 @@ impl VM { } } +macro_rules! with_type { + ( $self:ident, $val:ident, $type:pat, $body:expr ) => { + match $val { + $type => $body, + _ => { + return Err(Error { + line: $self.chunk.get_line($self.ip - 1), + kind: ErrorKind::TypeError(format!( + "Expected type {}, but found value: {:?}", + stringify!($type), + $val, + )), + }) + } + } + }; +} + macro_rules! binary_op { ( $vm:ident, $op:tt ) => {{ let b = $vm.pop(); let a = $vm.pop(); - $vm.push(a $op b); + + with_type!($vm, b, Value::Number(num_b), { + with_type!($vm, a, Value::Number(num_a), { + $vm.push(Value::Number(num_a $op num_b)) + }) + }) }} } @@ -45,13 +68,18 @@ impl VM { OpCode::OpReturn => return Ok(self.pop()), OpCode::OpConstant(idx) => { - let c = *self.chunk.constant(*idx); + let c = self.chunk.constant(*idx).clone(); self.push(c); } OpCode::OpNegate => { let v = self.pop(); - self.push(-v) + with_type!( + self, + v, + Value::Number(num), + self.push(Value::Number(-num)) + ); } OpCode::OpAdd => binary_op!(self, +), -- cgit 1.4.1