2024-09-13 01:14:15 +00:00
|
|
|
use std::fmt::{self, Debug, Display, Formatter};
|
2024-09-07 10:38:12 +00:00
|
|
|
|
2024-09-12 23:25:20 +00:00
|
|
|
use colored::Colorize;
|
2024-09-07 10:38:12 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2024-09-11 07:10:12 +00:00
|
|
|
use crate::{AnnotatedError, Identifier, Instruction, Span, Value};
|
2024-09-07 10:38:12 +00:00
|
|
|
|
2024-09-12 03:07:20 +00:00
|
|
|
#[derive(Clone)]
|
2024-09-07 10:38:12 +00:00
|
|
|
pub struct Chunk {
|
2024-09-12 13:11:49 +00:00
|
|
|
instructions: Vec<(Instruction, Span)>,
|
2024-09-11 08:22:54 +00:00
|
|
|
constants: Vec<Option<Value>>,
|
2024-09-12 13:11:49 +00:00
|
|
|
locals: Vec<Local>,
|
2024-09-11 07:10:12 +00:00
|
|
|
scope_depth: usize,
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Chunk {
|
|
|
|
pub fn new() -> Self {
|
|
|
|
Self {
|
2024-09-12 13:11:49 +00:00
|
|
|
instructions: Vec::new(),
|
2024-09-07 10:38:12 +00:00
|
|
|
constants: Vec::new(),
|
2024-09-12 13:11:49 +00:00
|
|
|
locals: Vec::new(),
|
2024-09-11 07:10:12 +00:00
|
|
|
scope_depth: 0,
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-07 16:15:47 +00:00
|
|
|
pub fn with_data(
|
2024-09-12 13:11:49 +00:00
|
|
|
instructions: Vec<(Instruction, Span)>,
|
2024-09-07 16:15:47 +00:00
|
|
|
constants: Vec<Value>,
|
2024-09-09 23:23:49 +00:00
|
|
|
identifiers: Vec<Local>,
|
2024-09-07 16:15:47 +00:00
|
|
|
) -> Self {
|
|
|
|
Self {
|
2024-09-12 13:11:49 +00:00
|
|
|
instructions,
|
2024-09-11 08:22:54 +00:00
|
|
|
constants: constants.into_iter().map(Some).collect(),
|
2024-09-12 13:11:49 +00:00
|
|
|
locals: identifiers,
|
2024-09-11 07:10:12 +00:00
|
|
|
scope_depth: 0,
|
2024-09-07 16:15:47 +00:00
|
|
|
}
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn len(&self) -> usize {
|
2024-09-12 13:11:49 +00:00
|
|
|
self.instructions.len()
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_empty(&self) -> bool {
|
2024-09-12 13:11:49 +00:00
|
|
|
self.instructions.is_empty()
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
|
2024-09-10 22:19:59 +00:00
|
|
|
pub fn scope_depth(&self) -> usize {
|
2024-09-11 07:10:12 +00:00
|
|
|
self.scope_depth
|
2024-09-10 22:19:59 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
pub fn get_instruction(
|
2024-09-12 03:07:20 +00:00
|
|
|
&self,
|
|
|
|
offset: usize,
|
|
|
|
position: Span,
|
|
|
|
) -> Result<&(Instruction, Span), ChunkError> {
|
2024-09-12 13:11:49 +00:00
|
|
|
self.instructions
|
2024-09-07 16:15:47 +00:00
|
|
|
.get(offset)
|
2024-09-10 22:19:59 +00:00
|
|
|
.ok_or(ChunkError::CodeIndexOfBounds { offset, position })
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
pub fn push_instruction(&mut self, instruction: Instruction, position: Span) {
|
|
|
|
self.instructions.push((instruction, position));
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
|
2024-09-13 05:10:07 +00:00
|
|
|
pub fn pop_instruction(&mut self, position: Span) -> Result<(Instruction, Span), ChunkError> {
|
|
|
|
self.instructions
|
|
|
|
.pop()
|
|
|
|
.ok_or(ChunkError::InstructionUnderflow { position })
|
2024-09-12 13:11:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_constant(&self, index: usize, position: Span) -> Result<&Value, ChunkError> {
|
2024-09-07 10:38:12 +00:00
|
|
|
self.constants
|
2024-09-12 13:11:49 +00:00
|
|
|
.get(index)
|
2024-09-10 22:19:59 +00:00
|
|
|
.ok_or(ChunkError::ConstantIndexOutOfBounds { index, position })
|
2024-09-11 08:22:54 +00:00
|
|
|
.and_then(|value| {
|
|
|
|
value
|
|
|
|
.as_ref()
|
|
|
|
.ok_or(ChunkError::ConstantAlreadyUsed { index, position })
|
|
|
|
})
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
pub fn use_constant(&mut self, index: usize, position: Span) -> Result<Value, ChunkError> {
|
2024-09-11 08:22:54 +00:00
|
|
|
self.constants
|
2024-09-12 13:11:49 +00:00
|
|
|
.get_mut(index)
|
2024-09-12 03:07:20 +00:00
|
|
|
.ok_or_else(|| ChunkError::ConstantIndexOutOfBounds { index, position })?
|
2024-09-11 08:22:54 +00:00
|
|
|
.take()
|
2024-09-12 03:07:20 +00:00
|
|
|
.ok_or(ChunkError::ConstantAlreadyUsed { index, position })
|
2024-09-10 07:42:25 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 03:07:20 +00:00
|
|
|
pub fn push_constant(&mut self, value: Value, position: Span) -> Result<u16, ChunkError> {
|
2024-09-07 10:38:12 +00:00
|
|
|
let starting_length = self.constants.len();
|
|
|
|
|
|
|
|
if starting_length + 1 > (u8::MAX as usize) {
|
2024-09-11 07:10:12 +00:00
|
|
|
Err(ChunkError::ConstantOverflow { position })
|
2024-09-07 10:38:12 +00:00
|
|
|
} else {
|
2024-09-11 08:22:54 +00:00
|
|
|
self.constants.push(Some(value));
|
2024-09-07 10:38:12 +00:00
|
|
|
|
2024-09-12 03:07:20 +00:00
|
|
|
Ok(starting_length as u16)
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-09 23:23:49 +00:00
|
|
|
pub fn contains_identifier(&self, identifier: &Identifier) -> bool {
|
2024-09-12 13:11:49 +00:00
|
|
|
self.locals
|
2024-09-11 07:10:12 +00:00
|
|
|
.iter()
|
|
|
|
.any(|local| &local.identifier == identifier)
|
2024-09-09 23:23:49 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
pub fn get_local(&self, index: usize, position: Span) -> Result<&Local, ChunkError> {
|
|
|
|
self.locals
|
2024-09-12 17:03:24 +00:00
|
|
|
.get(index)
|
2024-09-12 13:11:49 +00:00
|
|
|
.ok_or(ChunkError::LocalIndexOutOfBounds { index, position })
|
2024-09-10 22:19:59 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 18:16:26 +00:00
|
|
|
pub fn get_identifier(&self, index: usize) -> Option<&Identifier> {
|
|
|
|
self.locals.get(index).map(|local| &local.identifier)
|
2024-09-07 16:15:47 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
pub fn get_local_index(
|
2024-09-10 22:19:59 +00:00
|
|
|
&self,
|
|
|
|
identifier: &Identifier,
|
|
|
|
position: Span,
|
2024-09-12 03:07:20 +00:00
|
|
|
) -> Result<u16, ChunkError> {
|
2024-09-12 13:11:49 +00:00
|
|
|
self.locals
|
2024-09-11 07:10:12 +00:00
|
|
|
.iter()
|
2024-09-11 08:22:54 +00:00
|
|
|
.enumerate()
|
2024-09-12 18:16:26 +00:00
|
|
|
.rev()
|
2024-09-11 07:10:12 +00:00
|
|
|
.find_map(|(index, local)| {
|
|
|
|
if &local.identifier == identifier {
|
2024-09-12 03:07:20 +00:00
|
|
|
Some(index as u16)
|
2024-09-11 07:10:12 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
})
|
2024-09-10 22:19:59 +00:00
|
|
|
.ok_or(ChunkError::IdentifierNotFound {
|
|
|
|
identifier: identifier.clone(),
|
|
|
|
position,
|
|
|
|
})
|
2024-09-09 23:23:49 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
pub fn declare_local(
|
2024-09-11 07:10:12 +00:00
|
|
|
&mut self,
|
|
|
|
identifier: Identifier,
|
|
|
|
position: Span,
|
2024-09-12 03:07:20 +00:00
|
|
|
) -> Result<u16, ChunkError> {
|
2024-09-12 13:11:49 +00:00
|
|
|
let starting_length = self.locals.len();
|
2024-09-07 16:15:47 +00:00
|
|
|
|
|
|
|
if starting_length + 1 > (u8::MAX as usize) {
|
2024-09-11 07:10:12 +00:00
|
|
|
Err(ChunkError::IdentifierOverflow { position })
|
2024-09-07 16:15:47 +00:00
|
|
|
} else {
|
2024-09-12 13:11:49 +00:00
|
|
|
self.locals
|
|
|
|
.push(Local::new(identifier, self.scope_depth, None));
|
2024-09-07 16:15:47 +00:00
|
|
|
|
2024-09-12 03:07:20 +00:00
|
|
|
Ok(starting_length as u16)
|
2024-09-07 16:15:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
pub fn define_local(
|
|
|
|
&mut self,
|
2024-09-13 06:28:18 +00:00
|
|
|
local_index: usize,
|
|
|
|
register_index: u8,
|
2024-09-12 13:11:49 +00:00
|
|
|
position: Span,
|
|
|
|
) -> Result<(), ChunkError> {
|
2024-09-13 06:28:18 +00:00
|
|
|
let local =
|
|
|
|
self.locals
|
|
|
|
.get_mut(local_index)
|
|
|
|
.ok_or_else(|| ChunkError::LocalIndexOutOfBounds {
|
|
|
|
index: local_index,
|
|
|
|
position,
|
|
|
|
})?;
|
2024-09-12 13:11:49 +00:00
|
|
|
|
2024-09-13 06:28:18 +00:00
|
|
|
local.register_index = Some(register_index);
|
2024-09-12 13:11:49 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2024-09-10 14:44:15 +00:00
|
|
|
pub fn begin_scope(&mut self) {
|
2024-09-11 07:10:12 +00:00
|
|
|
self.scope_depth += 1;
|
2024-09-10 14:44:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn end_scope(&mut self) {
|
2024-09-11 07:10:12 +00:00
|
|
|
self.scope_depth -= 1;
|
2024-09-10 14:44:15 +00:00
|
|
|
}
|
|
|
|
|
2024-09-07 10:38:12 +00:00
|
|
|
pub fn clear(&mut self) {
|
2024-09-12 13:11:49 +00:00
|
|
|
self.instructions.clear();
|
2024-09-07 10:38:12 +00:00
|
|
|
self.constants.clear();
|
2024-09-12 13:11:49 +00:00
|
|
|
self.locals.clear();
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
|
2024-09-11 07:10:12 +00:00
|
|
|
pub fn identifiers(&self) -> &[Local] {
|
2024-09-12 13:11:49 +00:00
|
|
|
&self.locals
|
2024-09-11 07:10:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn pop_identifier(&mut self) -> Option<Local> {
|
2024-09-12 13:11:49 +00:00
|
|
|
self.locals.pop()
|
2024-09-11 07:10:12 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 23:25:20 +00:00
|
|
|
pub fn disassembler<'a>(&'a self, name: &'a str) -> ChunkDisassembler<'a> {
|
|
|
|
ChunkDisassembler::new(name, self)
|
2024-09-12 17:03:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for Chunk {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Display for Chunk {
|
|
|
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
2024-09-12 23:25:20 +00:00
|
|
|
write!(
|
|
|
|
f,
|
|
|
|
"{}",
|
2024-09-13 05:10:07 +00:00
|
|
|
self.disassembler("Chunk Display").styled().disassemble()
|
2024-09-12 23:25:20 +00:00
|
|
|
)
|
2024-09-12 17:03:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Debug for Chunk {
|
|
|
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
2024-09-12 23:25:20 +00:00
|
|
|
write!(
|
|
|
|
f,
|
|
|
|
"{}",
|
|
|
|
self.disassembler("Chunk Debug Display").disassemble()
|
|
|
|
)
|
2024-09-12 17:03:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Eq for Chunk {}
|
|
|
|
|
|
|
|
impl PartialEq for Chunk {
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
|
|
|
self.instructions == other.instructions
|
|
|
|
&& self.constants == other.constants
|
|
|
|
&& self.locals == other.locals
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Eq, PartialEq, Serialize, Deserialize)]
|
|
|
|
pub struct Local {
|
|
|
|
pub identifier: Identifier,
|
|
|
|
pub depth: usize,
|
2024-09-13 06:28:18 +00:00
|
|
|
pub register_index: Option<u8>,
|
2024-09-12 17:03:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Local {
|
2024-09-13 06:28:18 +00:00
|
|
|
pub fn new(identifier: Identifier, depth: usize, register_index: Option<u8>) -> Self {
|
2024-09-12 17:03:24 +00:00
|
|
|
Self {
|
|
|
|
identifier,
|
|
|
|
depth,
|
2024-09-13 06:28:18 +00:00
|
|
|
register_index,
|
2024-09-12 17:03:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-12 23:25:20 +00:00
|
|
|
pub struct ChunkDisassembler<'a> {
|
2024-09-12 17:03:24 +00:00
|
|
|
name: &'a str,
|
2024-09-12 23:25:20 +00:00
|
|
|
chunk: &'a Chunk,
|
|
|
|
width: usize,
|
|
|
|
styled: bool,
|
2024-09-12 17:03:24 +00:00
|
|
|
}
|
2024-09-07 10:38:12 +00:00
|
|
|
|
2024-09-12 23:25:20 +00:00
|
|
|
impl<'a> ChunkDisassembler<'a> {
|
2024-09-13 05:10:07 +00:00
|
|
|
const INSTRUCTION_HEADER: [&'static str; 5] = [
|
|
|
|
"",
|
|
|
|
"Instructions",
|
|
|
|
"------------",
|
|
|
|
"OFFSET OPERATION INFO POSITION",
|
|
|
|
"------- -------------- -------------------- --------",
|
|
|
|
];
|
|
|
|
|
|
|
|
const CONSTANT_HEADER: [&'static str; 5] = [
|
|
|
|
"",
|
|
|
|
"Constants",
|
|
|
|
"---------",
|
|
|
|
"INDEX KIND VALUE",
|
|
|
|
"----- ----- -----",
|
|
|
|
];
|
|
|
|
|
|
|
|
const LOCAL_HEADER: [&'static str; 5] = [
|
|
|
|
"",
|
|
|
|
"Locals",
|
|
|
|
"------",
|
2024-09-13 06:28:18 +00:00
|
|
|
"INDEX IDENTIFIER DEPTH REGISTER",
|
|
|
|
"----- ---------- ----- --------",
|
2024-09-13 05:10:07 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
/// The default width of the disassembly output. To correctly align the output, this should be
|
|
|
|
/// set to the width of the longest line that the disassembler is guaranteed to produce.
|
|
|
|
const DEFAULT_WIDTH: usize = Self::INSTRUCTION_HEADER[3].len() + 1;
|
|
|
|
|
2024-09-12 23:25:20 +00:00
|
|
|
pub fn new(name: &'a str, chunk: &'a Chunk) -> Self {
|
|
|
|
Self {
|
|
|
|
name,
|
|
|
|
chunk,
|
2024-09-13 05:10:07 +00:00
|
|
|
width: Self::DEFAULT_WIDTH,
|
2024-09-12 23:25:20 +00:00
|
|
|
styled: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn disassemble(&self) -> String {
|
2024-09-13 05:10:07 +00:00
|
|
|
let center = |line: &str| format!("{line:^width$}\n", width = self.width);
|
|
|
|
let style = |line: String| {
|
|
|
|
if self.styled {
|
|
|
|
line.bold().to_string()
|
2024-09-12 23:25:20 +00:00
|
|
|
} else {
|
2024-09-13 05:10:07 +00:00
|
|
|
line
|
2024-09-12 17:03:24 +00:00
|
|
|
}
|
2024-09-12 23:25:20 +00:00
|
|
|
};
|
2024-09-10 00:55:00 +00:00
|
|
|
|
2024-09-13 06:30:09 +00:00
|
|
|
let name_line = style(center(&format!("{}", self.name)));
|
2024-09-13 06:28:18 +00:00
|
|
|
let mut disassembled = String::with_capacity(self.predict_capacity());
|
|
|
|
|
|
|
|
println!("capactity: {}", disassembled.capacity());
|
|
|
|
|
|
|
|
disassembled.push_str(&name_line);
|
2024-09-13 05:10:07 +00:00
|
|
|
|
|
|
|
for line in Self::INSTRUCTION_HEADER {
|
|
|
|
disassembled.push_str(&style(center(line)));
|
|
|
|
}
|
2024-09-12 17:03:24 +00:00
|
|
|
|
2024-09-12 23:25:20 +00:00
|
|
|
for (offset, (instruction, position)) in self.chunk.instructions.iter().enumerate() {
|
|
|
|
let position = position.to_string();
|
|
|
|
let operation = instruction.operation.to_string();
|
|
|
|
let info_option = instruction.disassembly_info(Some(self.chunk));
|
|
|
|
let instruction_display = if let Some(info) = info_option {
|
|
|
|
format!("{offset:<7} {operation:14} {info:20} {position:8}")
|
|
|
|
} else {
|
|
|
|
format!("{offset:<7} {operation:14} {:20} {position:8}", " ")
|
|
|
|
};
|
2024-09-12 17:03:24 +00:00
|
|
|
|
2024-09-13 05:10:07 +00:00
|
|
|
disassembled.push_str(¢er(&instruction_display));
|
2024-09-12 23:25:20 +00:00
|
|
|
}
|
2024-09-10 00:55:00 +00:00
|
|
|
|
2024-09-13 05:10:07 +00:00
|
|
|
for line in Self::CONSTANT_HEADER {
|
|
|
|
disassembled.push_str(&style(center(line)));
|
|
|
|
}
|
2024-09-12 17:03:24 +00:00
|
|
|
|
2024-09-12 23:25:20 +00:00
|
|
|
for (index, value_option) in self.chunk.constants.iter().enumerate() {
|
2024-09-13 05:10:07 +00:00
|
|
|
let value_kind_display = if let Some(value) = value_option {
|
|
|
|
value.kind().to_string()
|
|
|
|
} else {
|
|
|
|
"empty".to_string()
|
2024-09-10 00:55:00 +00:00
|
|
|
};
|
2024-09-11 08:22:54 +00:00
|
|
|
let value_display = value_option
|
|
|
|
.as_ref()
|
|
|
|
.map(|value| value.to_string())
|
|
|
|
.unwrap_or_else(|| "EMPTY".to_string());
|
2024-09-12 23:25:20 +00:00
|
|
|
let constant_display = format!("{index:<5} {value_kind_display:<5} {value_display:<5}");
|
2024-09-10 00:55:00 +00:00
|
|
|
|
2024-09-13 05:10:07 +00:00
|
|
|
disassembled.push_str(¢er(&constant_display));
|
2024-09-10 00:55:00 +00:00
|
|
|
}
|
|
|
|
|
2024-09-13 05:10:07 +00:00
|
|
|
for line in Self::LOCAL_HEADER {
|
|
|
|
disassembled.push_str(&style(center(line)));
|
|
|
|
}
|
2024-09-10 13:26:05 +00:00
|
|
|
|
2024-09-12 13:11:49 +00:00
|
|
|
for (
|
|
|
|
index,
|
|
|
|
Local {
|
|
|
|
identifier,
|
|
|
|
depth,
|
2024-09-13 06:28:18 +00:00
|
|
|
register_index,
|
2024-09-12 13:11:49 +00:00
|
|
|
},
|
2024-09-12 23:25:20 +00:00
|
|
|
) in self.chunk.locals.iter().enumerate()
|
2024-09-12 13:11:49 +00:00
|
|
|
{
|
2024-09-13 06:28:18 +00:00
|
|
|
let register_display = register_index
|
2024-09-12 13:11:49 +00:00
|
|
|
.as_ref()
|
|
|
|
.map(|value| value.to_string())
|
|
|
|
.unwrap_or_else(|| "EMPTY".to_string());
|
2024-09-12 17:03:24 +00:00
|
|
|
let identifier_display = identifier.as_str();
|
|
|
|
let local_display =
|
2024-09-13 06:28:18 +00:00
|
|
|
format!("{index:<5} {identifier_display:<10} {depth:<5} {register_display:<8}");
|
2024-09-12 13:11:49 +00:00
|
|
|
|
2024-09-13 05:10:07 +00:00
|
|
|
disassembled.push_str(¢er(&local_display));
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
|
2024-09-13 05:10:07 +00:00
|
|
|
println!("length: {}", disassembled.len());
|
|
|
|
|
2024-09-12 23:25:20 +00:00
|
|
|
disassembled
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
|
2024-09-12 23:25:20 +00:00
|
|
|
pub fn width(&mut self, width: usize) -> &mut Self {
|
|
|
|
self.width = width;
|
2024-09-07 10:38:12 +00:00
|
|
|
|
2024-09-12 23:25:20 +00:00
|
|
|
self
|
|
|
|
}
|
2024-09-12 17:03:24 +00:00
|
|
|
|
2024-09-12 23:25:20 +00:00
|
|
|
pub fn styled(&mut self) -> &mut Self {
|
|
|
|
self.styled = true;
|
|
|
|
|
|
|
|
self
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|
|
|
|
|
2024-09-13 05:10:07 +00:00
|
|
|
/// Predicts the capacity of the disassembled output. This is used to pre-allocate the string
|
|
|
|
/// buffer to avoid reallocations.
|
|
|
|
///
|
|
|
|
/// The capacity is calculated as follows:
|
|
|
|
/// - Get the number of static lines, i.e. lines that are always present in the disassembly
|
|
|
|
/// - Get the number of dynamic lines, i.e. lines that are generated from the chunk
|
|
|
|
/// - Add 1 to the width to account for the newline character
|
|
|
|
/// - Multiply the total number of lines by the width of the disassembly output
|
|
|
|
fn predict_capacity(&self) -> usize {
|
2024-09-13 06:28:18 +00:00
|
|
|
const EXTRA_LINES: usize = 1;
|
|
|
|
|
2024-09-13 05:10:07 +00:00
|
|
|
let chunk_header_line_count = 3; // self.chunk_header().len() is hard-coded to 3
|
|
|
|
let static_line_count = chunk_header_line_count
|
|
|
|
+ Self::INSTRUCTION_HEADER.len()
|
|
|
|
+ Self::CONSTANT_HEADER.len()
|
|
|
|
+ Self::LOCAL_HEADER.len();
|
|
|
|
let dynamic_line_count =
|
|
|
|
self.chunk.instructions.len() + self.chunk.constants.len() + self.chunk.locals.len();
|
2024-09-13 06:28:18 +00:00
|
|
|
let total_line_count = static_line_count + dynamic_line_count + EXTRA_LINES;
|
2024-09-13 05:10:07 +00:00
|
|
|
|
2024-09-13 06:28:18 +00:00
|
|
|
total_line_count * (self.width)
|
2024-09-12 09:08:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-09-09 23:23:49 +00:00
|
|
|
#[derive(Debug, Clone, PartialEq)]
|
2024-09-07 10:38:12 +00:00
|
|
|
pub enum ChunkError {
|
2024-09-10 22:19:59 +00:00
|
|
|
CodeIndexOfBounds {
|
|
|
|
offset: usize,
|
|
|
|
position: Span,
|
|
|
|
},
|
2024-09-11 08:22:54 +00:00
|
|
|
ConstantAlreadyUsed {
|
2024-09-12 13:11:49 +00:00
|
|
|
index: usize,
|
2024-09-11 08:22:54 +00:00
|
|
|
position: Span,
|
|
|
|
},
|
2024-09-11 07:10:12 +00:00
|
|
|
ConstantOverflow {
|
|
|
|
position: Span,
|
|
|
|
},
|
2024-09-10 22:19:59 +00:00
|
|
|
ConstantIndexOutOfBounds {
|
2024-09-12 13:11:49 +00:00
|
|
|
index: usize,
|
2024-09-10 22:19:59 +00:00
|
|
|
position: Span,
|
|
|
|
},
|
2024-09-13 05:10:07 +00:00
|
|
|
InstructionUnderflow {
|
|
|
|
position: Span,
|
|
|
|
},
|
2024-09-12 13:11:49 +00:00
|
|
|
LocalIndexOutOfBounds {
|
|
|
|
index: usize,
|
2024-09-11 07:10:12 +00:00
|
|
|
position: Span,
|
|
|
|
},
|
|
|
|
IdentifierOverflow {
|
|
|
|
position: Span,
|
|
|
|
},
|
2024-09-10 22:19:59 +00:00
|
|
|
IdentifierNotFound {
|
|
|
|
identifier: Identifier,
|
|
|
|
position: Span,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AnnotatedError for ChunkError {
|
|
|
|
fn title() -> &'static str {
|
|
|
|
"Chunk Error"
|
|
|
|
}
|
|
|
|
|
|
|
|
fn description(&self) -> &'static str {
|
|
|
|
match self {
|
|
|
|
ChunkError::CodeIndexOfBounds { .. } => "Code index out of bounds",
|
2024-09-11 08:22:54 +00:00
|
|
|
ChunkError::ConstantAlreadyUsed { .. } => "Constant already used",
|
2024-09-11 07:10:12 +00:00
|
|
|
ChunkError::ConstantOverflow { .. } => "Constant overflow",
|
2024-09-10 22:19:59 +00:00
|
|
|
ChunkError::ConstantIndexOutOfBounds { .. } => "Constant index out of bounds",
|
2024-09-13 05:10:07 +00:00
|
|
|
ChunkError::InstructionUnderflow { .. } => "Instruction underflow",
|
2024-09-12 13:11:49 +00:00
|
|
|
ChunkError::LocalIndexOutOfBounds { .. } => "Identifier index out of bounds",
|
2024-09-11 07:10:12 +00:00
|
|
|
ChunkError::IdentifierOverflow { .. } => "Identifier overflow",
|
2024-09-10 22:19:59 +00:00
|
|
|
ChunkError::IdentifierNotFound { .. } => "Identifier not found",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn details(&self) -> Option<String> {
|
|
|
|
match self {
|
|
|
|
ChunkError::CodeIndexOfBounds { offset, .. } => Some(format!("Code index: {}", offset)),
|
2024-09-11 08:22:54 +00:00
|
|
|
ChunkError::ConstantAlreadyUsed { index, .. } => {
|
|
|
|
Some(format!("Constant index: {}", index))
|
|
|
|
}
|
2024-09-10 22:19:59 +00:00
|
|
|
ChunkError::ConstantIndexOutOfBounds { index, .. } => {
|
|
|
|
Some(format!("Constant index: {}", index))
|
|
|
|
}
|
2024-09-13 05:10:07 +00:00
|
|
|
ChunkError::InstructionUnderflow { .. } => None,
|
2024-09-12 13:11:49 +00:00
|
|
|
ChunkError::LocalIndexOutOfBounds { index, .. } => {
|
2024-09-10 22:19:59 +00:00
|
|
|
Some(format!("Identifier index: {}", index))
|
|
|
|
}
|
|
|
|
ChunkError::IdentifierNotFound { identifier, .. } => {
|
|
|
|
Some(format!("Identifier: {}", identifier))
|
|
|
|
}
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn position(&self) -> Span {
|
|
|
|
match self {
|
|
|
|
ChunkError::CodeIndexOfBounds { position, .. } => *position,
|
2024-09-11 08:22:54 +00:00
|
|
|
ChunkError::ConstantAlreadyUsed { position, .. } => *position,
|
2024-09-10 22:19:59 +00:00
|
|
|
ChunkError::ConstantIndexOutOfBounds { position, .. } => *position,
|
|
|
|
ChunkError::IdentifierNotFound { position, .. } => *position,
|
|
|
|
_ => todo!(),
|
|
|
|
}
|
|
|
|
}
|
2024-09-07 10:38:12 +00:00
|
|
|
}
|