Files
crafting-interpreters/rlox/src/vm.rs

76 lines
1.6 KiB
Rust
Raw Normal View History

2023-03-29 21:15:41 +02:00
use std::convert::From;
2023-03-29 20:03:16 +02:00
use std::fmt;
2023-03-29 20:07:31 +02:00
#[repr(u8)]
2023-03-29 21:15:41 +02:00
#[derive(Copy, Clone, Debug)]
2023-03-29 20:07:31 +02:00
pub enum Op {
2023-03-29 21:15:41 +02:00
Return,
Constant { offset: usize },
}
#[derive(Debug)]
pub struct Value {
val: f64,
}
impl From<f64> for Value {
fn from(value: f64) -> Self {
Value { val: value }
}
2023-03-29 20:07:31 +02:00
}
2023-03-29 20:03:16 +02:00
pub struct Chunk {
code: Vec<Op>,
2023-03-29 21:15:41 +02:00
name: String,
debug_info: Vec<usize>,
constants: Vec<Value>,
2023-03-29 20:03:16 +02:00
}
impl Chunk {
2023-03-29 21:15:41 +02:00
pub fn new(name: String) -> Self {
2023-03-29 20:03:16 +02:00
Chunk {
code: Vec::new(),
2023-03-29 21:15:41 +02:00
name: name,
debug_info: Vec::new(),
constants: Vec::new(),
2023-03-29 20:03:16 +02:00
}
}
2023-03-29 21:15:41 +02:00
pub fn add_op(&mut self, op: Op, line: usize) {
self.code.push(op);
self.debug_info.push(line);
}
pub fn add_constant(&mut self, value: Value) {
self.constants.push(value);
2023-03-29 20:03:16 +02:00
}
}
impl fmt::Debug for Chunk {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
writeln!(f, "-*-*- {} -*-*-", self.name)?;
2023-03-29 21:15:41 +02:00
for (idx, op) in self.code.iter().copied().enumerate() {
write!(f, "{:04} ", idx)?;
let line = self.debug_info[idx];
if idx > 0 && self.debug_info[idx-1] == line {
write!(f, " | ")?;
} else {
write!(f, "{:4} ", line)?;
}
match op {
Op::Return => writeln!(f, "{:?}", op),
Op::Constant { offset } =>
f.debug_struct("Constant")
.field("val", &self.constants[offset].val)
.finish(),
}?;
2023-03-29 20:03:16 +02:00
}
return Ok(());
}
}