From 4162186a1963b0dcf3dc47946a1cd8ad81467ac4 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 5 Mar 2021 22:35:02 +0200 Subject: feat(tazjin/rlox): Implement global variable access This also includes a fix for an issue where the identifiers of variables were pushed onto the stack, which is incorrect. Change-Id: Id89b388268efad295f29978d767aa4b33c4ded14 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2594 Reviewed-by: tazjin Tested-by: BuildkiteCI --- users/tazjin/rlox/src/bytecode/compiler.rs | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) (limited to 'users/tazjin/rlox/src/bytecode/compiler.rs') diff --git a/users/tazjin/rlox/src/bytecode/compiler.rs b/users/tazjin/rlox/src/bytecode/compiler.rs index f993e35557ad..b8b91667d3fa 100644 --- a/users/tazjin/rlox/src/bytecode/compiler.rs +++ b/users/tazjin/rlox/src/bytecode/compiler.rs @@ -145,6 +145,10 @@ fn rule_for>(token: &TokenKind) -> ParseRule { ParseRule::new(None, Some(Compiler::binary), Precedence::Comparison) } + TokenKind::Identifier(_) => { + ParseRule::new(Some(Compiler::variable), None, Precedence::None) + } + TokenKind::String(_) => { ParseRule::new(Some(Compiler::string), None, Precedence::None) } @@ -238,7 +242,7 @@ impl> Compiler { fn number(&mut self) -> LoxResult<()> { if let TokenKind::Number(num) = self.previous().kind { - self.emit_constant(Value::Number(num)); + self.emit_constant(Value::Number(num), true); return Ok(()); } @@ -330,11 +334,23 @@ impl> Compiler { }; let id = self.strings.intern(val); - self.emit_constant(Value::String(id.into())); + self.emit_constant(Value::String(id.into()), true); + + Ok(()) + } + fn named_variable(&mut self) -> LoxResult<()> { + let ident = self.identifier_str(Self::previous)?; + let constant_id = + self.emit_constant(Value::String(ident.into()), false); + self.emit_op(OpCode::OpGetGlobal(constant_id)); Ok(()) } + fn variable(&mut self) -> LoxResult<()> { + self.named_variable() + } + fn parse_precedence(&mut self, precedence: Precedence) -> LoxResult<()> { self.advance(); let rule: ParseRule = rule_for(&self.previous().kind); @@ -385,7 +401,7 @@ impl> Compiler { ); let id = self.identifier_str(Self::previous)?; - Ok(self.emit_constant(Value::String(id.into()))) + Ok(self.emit_constant(Value::String(id.into()), false)) } fn current_chunk(&mut self) -> &mut Chunk { @@ -409,9 +425,13 @@ impl> Compiler { self.current_chunk().add_op(op, line); } - fn emit_constant(&mut self, val: Value) -> usize { + fn emit_constant(&mut self, val: Value, with_op: bool) -> usize { let idx = self.chunk.add_constant(val); - self.emit_op(OpCode::OpConstant(idx)); + + if with_op { + self.emit_op(OpCode::OpConstant(idx)); + } + idx } -- cgit 1.4.1