2024-09-12 04:39:31 +00:00
|
|
|
use crate::{
|
|
|
|
dust_error::AnnotatedError, parse, Chunk, ChunkError, DustError, Identifier, Instruction,
|
|
|
|
Operation, Span, Value, ValueError,
|
|
|
|
};
|
|
|
|
|
|
|
|
pub fn run(source: &str) -> Result<Option<Value>, DustError> {
|
|
|
|
let chunk = parse(source)?;
|
|
|
|
|
|
|
|
let mut vm = Vm::new(chunk);
|
|
|
|
|
|
|
|
vm.run()
|
|
|
|
.map_err(|error| DustError::Runtime { error, source })
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Eq, PartialEq)]
|
|
|
|
pub struct Vm {
|
|
|
|
chunk: Chunk,
|
|
|
|
ip: usize,
|
|
|
|
register_stack: Vec<Option<Value>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Vm {
|
|
|
|
const STACK_LIMIT: usize = u16::MAX as usize;
|
|
|
|
|
|
|
|
pub fn new(chunk: Chunk) -> Self {
|
|
|
|
Self {
|
|
|
|
chunk,
|
|
|
|
ip: 0,
|
|
|
|
register_stack: Vec::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn run(&mut self) -> Result<Option<Value>, VmError> {
|
|
|
|
while let Ok((instruction, position)) = self.read(Span(0, 0)).copied() {
|
|
|
|
log::trace!("Running instruction {instruction} at {position}");
|
|
|
|
|
|
|
|
match instruction.operation {
|
|
|
|
Operation::Move => todo!(),
|
|
|
|
Operation::Close => todo!(),
|
|
|
|
Operation::LoadConstant => {
|
2024-09-12 13:11:49 +00:00
|
|
|
let constant_index = u16::from_le_bytes(instruction.arguments) as usize;
|
2024-09-12 04:39:31 +00:00
|
|
|
let value = self.chunk.use_constant(constant_index, position)?;
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
self.insert(value, instruction.destination as usize, position)?;
|
2024-09-12 04:39:31 +00:00
|
|
|
}
|
2024-09-12 09:08:55 +00:00
|
|
|
Operation::DeclareVariable => {
|
2024-09-12 13:11:49 +00:00
|
|
|
let register_index = instruction.destination as usize;
|
|
|
|
let local_index = u16::from_le_bytes(instruction.arguments) as usize;
|
|
|
|
let value = self.clone(register_index, position)?;
|
2024-09-12 09:08:55 +00:00
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
self.chunk.define_local(local_index, value, position)?;
|
2024-09-12 09:08:55 +00:00
|
|
|
}
|
|
|
|
Operation::GetVariable => {
|
|
|
|
let identifier_index = u16::from_le_bytes(instruction.arguments) as usize;
|
2024-09-12 13:11:49 +00:00
|
|
|
let value = self.clone(identifier_index, position)?;
|
2024-09-12 09:08:55 +00:00
|
|
|
|
|
|
|
self.insert(value, identifier_index, position)?;
|
|
|
|
}
|
2024-09-12 04:39:31 +00:00
|
|
|
Operation::SetVariable => todo!(),
|
|
|
|
Operation::Add => {
|
2024-09-12 13:11:49 +00:00
|
|
|
let left =
|
|
|
|
self.take_or_use_constant(instruction.arguments[0] as usize, position)?;
|
|
|
|
let right =
|
|
|
|
self.take_or_use_constant(instruction.arguments[1] as usize, position)?;
|
2024-09-12 04:39:31 +00:00
|
|
|
let sum = left
|
|
|
|
.add(&right)
|
|
|
|
.map_err(|error| VmError::Value { error, position })?;
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
self.insert(sum, instruction.destination as usize, position)?;
|
2024-09-12 04:39:31 +00:00
|
|
|
}
|
|
|
|
Operation::Subtract => {
|
2024-09-12 13:11:49 +00:00
|
|
|
let left =
|
|
|
|
self.take_or_use_constant(instruction.arguments[0] as usize, position)?;
|
|
|
|
let right =
|
|
|
|
self.take_or_use_constant(instruction.arguments[1] as usize, position)?;
|
2024-09-12 04:39:31 +00:00
|
|
|
let difference = left
|
|
|
|
.subtract(&right)
|
|
|
|
.map_err(|error| VmError::Value { error, position })?;
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
self.insert(difference, instruction.destination as usize, position)?;
|
2024-09-12 04:39:31 +00:00
|
|
|
}
|
|
|
|
Operation::Multiply => {
|
2024-09-12 13:11:49 +00:00
|
|
|
let left =
|
|
|
|
self.take_or_use_constant(instruction.arguments[0] as usize, position)?;
|
|
|
|
let right =
|
|
|
|
self.take_or_use_constant(instruction.arguments[1] as usize, position)?;
|
2024-09-12 04:39:31 +00:00
|
|
|
let product = left
|
|
|
|
.multiply(&right)
|
|
|
|
.map_err(|error| VmError::Value { error, position })?;
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
self.insert(product, instruction.destination as usize, position)?;
|
2024-09-12 04:39:31 +00:00
|
|
|
}
|
|
|
|
Operation::Divide => {
|
2024-09-12 13:11:49 +00:00
|
|
|
let left =
|
|
|
|
self.take_or_use_constant(instruction.arguments[0] as usize, position)?;
|
|
|
|
let right =
|
|
|
|
self.take_or_use_constant(instruction.arguments[1] as usize, position)?;
|
2024-09-12 04:39:31 +00:00
|
|
|
let quotient = left
|
|
|
|
.divide(&right)
|
|
|
|
.map_err(|error| VmError::Value { error, position })?;
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
self.insert(quotient, instruction.destination as usize, position)?;
|
2024-09-12 04:39:31 +00:00
|
|
|
}
|
|
|
|
Operation::Negate => {
|
2024-09-12 13:11:49 +00:00
|
|
|
let value =
|
|
|
|
self.take_or_use_constant(instruction.arguments[0] as usize, position)?;
|
2024-09-12 04:39:31 +00:00
|
|
|
let negated = value
|
|
|
|
.negate()
|
|
|
|
.map_err(|error| VmError::Value { error, position })?;
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
self.insert(negated, instruction.destination as usize, position)?;
|
2024-09-12 04:39:31 +00:00
|
|
|
}
|
|
|
|
Operation::Return => {
|
|
|
|
let value = self.pop(position)?;
|
|
|
|
|
|
|
|
return Ok(Some(value));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(None)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn insert(&mut self, value: Value, index: usize, position: Span) -> Result<(), VmError> {
|
|
|
|
if self.register_stack.len() == Self::STACK_LIMIT {
|
|
|
|
Err(VmError::StackOverflow { position })
|
|
|
|
} else {
|
2024-09-12 13:11:49 +00:00
|
|
|
while index >= self.register_stack.len() {
|
|
|
|
self.register_stack.push(None);
|
2024-09-12 09:08:55 +00:00
|
|
|
}
|
2024-09-12 04:39:31 +00:00
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
self.register_stack[index] = Some(value);
|
|
|
|
|
2024-09-12 04:39:31 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
fn clone(&mut self, index: usize, position: Span) -> Result<Value, VmError> {
|
2024-09-12 04:39:31 +00:00
|
|
|
if let Some(register) = self.register_stack.get_mut(index) {
|
|
|
|
let value = register
|
2024-09-12 13:11:49 +00:00
|
|
|
.take()
|
|
|
|
.ok_or(VmError::EmptyRegister { index, position })?
|
|
|
|
.into_reference();
|
|
|
|
let _ = register.insert(value.clone());
|
2024-09-12 04:39:31 +00:00
|
|
|
|
|
|
|
Ok(value)
|
|
|
|
} else {
|
|
|
|
Err(VmError::RegisterIndexOutOfBounds { position })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
fn take_or_use_constant(&mut self, index: usize, position: Span) -> Result<Value, VmError> {
|
|
|
|
if let Ok(value) = self.clone(index, position) {
|
|
|
|
Ok(value)
|
|
|
|
} else {
|
|
|
|
let value = self.chunk.use_constant(index, position)?;
|
|
|
|
|
|
|
|
Ok(value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-12 04:39:31 +00:00
|
|
|
fn pop(&mut self, position: Span) -> Result<Value, VmError> {
|
|
|
|
if let Some(register) = self.register_stack.pop() {
|
2024-09-12 09:08:55 +00:00
|
|
|
let value = register.ok_or(VmError::EmptyRegister {
|
|
|
|
index: self.register_stack.len().saturating_sub(1),
|
|
|
|
position,
|
|
|
|
})?;
|
2024-09-12 04:39:31 +00:00
|
|
|
|
|
|
|
Ok(value)
|
|
|
|
} else {
|
|
|
|
Err(VmError::StackUnderflow { position })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn read(&mut self, position: Span) -> Result<&(Instruction, Span), VmError> {
|
2024-09-12 13:11:49 +00:00
|
|
|
let current = self.chunk.get_instruction(self.ip, position)?;
|
2024-09-12 04:39:31 +00:00
|
|
|
|
|
|
|
self.ip += 1;
|
|
|
|
|
|
|
|
Ok(current)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
|
|
|
pub enum VmError {
|
|
|
|
EmptyRegister {
|
|
|
|
index: usize,
|
|
|
|
position: Span,
|
|
|
|
},
|
|
|
|
RegisterIndexOutOfBounds {
|
|
|
|
position: Span,
|
|
|
|
},
|
|
|
|
InvalidInstruction {
|
|
|
|
instruction: Instruction,
|
|
|
|
position: Span,
|
|
|
|
},
|
|
|
|
StackOverflow {
|
|
|
|
position: Span,
|
|
|
|
},
|
|
|
|
StackUnderflow {
|
|
|
|
position: Span,
|
|
|
|
},
|
|
|
|
UndeclaredVariable {
|
|
|
|
position: Span,
|
|
|
|
},
|
|
|
|
UndefinedVariable {
|
|
|
|
identifier: Identifier,
|
|
|
|
position: Span,
|
|
|
|
},
|
|
|
|
|
|
|
|
// Wrappers for foreign errors
|
|
|
|
Chunk(ChunkError),
|
|
|
|
Value {
|
|
|
|
error: ValueError,
|
|
|
|
position: Span,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<ChunkError> for VmError {
|
|
|
|
fn from(v: ChunkError) -> Self {
|
|
|
|
Self::Chunk(v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AnnotatedError for VmError {
|
|
|
|
fn title() -> &'static str {
|
|
|
|
"Runtime Error"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn description(&self) -> &'static str {
|
|
|
|
match self {
|
|
|
|
Self::EmptyRegister { .. } => "Empty register",
|
|
|
|
Self::RegisterIndexOutOfBounds { .. } => "Register index out of bounds",
|
|
|
|
Self::InvalidInstruction { .. } => "Invalid instruction",
|
|
|
|
Self::StackOverflow { .. } => "Stack overflow",
|
|
|
|
Self::StackUnderflow { .. } => "Stack underflow",
|
|
|
|
Self::UndeclaredVariable { .. } => "Undeclared variable",
|
|
|
|
Self::UndefinedVariable { .. } => "Undefined variable",
|
|
|
|
Self::Chunk(_) => "Chunk error",
|
|
|
|
Self::Value { .. } => "Value error",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn details(&self) -> Option<String> {
|
|
|
|
match self {
|
|
|
|
Self::EmptyRegister { index, .. } => Some(format!("Register {index} is empty")),
|
|
|
|
Self::UndefinedVariable { identifier, .. } => {
|
|
|
|
Some(format!("{identifier} is not in scope"))
|
|
|
|
}
|
|
|
|
Self::Chunk(error) => error.details(),
|
|
|
|
Self::Value { error, .. } => Some(error.to_string()),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn position(&self) -> Span {
|
|
|
|
match self {
|
|
|
|
Self::EmptyRegister { position, .. } => *position,
|
|
|
|
Self::RegisterIndexOutOfBounds { position } => *position,
|
|
|
|
Self::InvalidInstruction { position, .. } => *position,
|
|
|
|
Self::StackUnderflow { position } => *position,
|
|
|
|
Self::StackOverflow { position } => *position,
|
|
|
|
Self::UndeclaredVariable { position } => *position,
|
|
|
|
Self::UndefinedVariable { position, .. } => *position,
|
|
|
|
Self::Chunk(error) => error.position(),
|
|
|
|
Self::Value { position, .. } => *position,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|