Tweak control flow jumping and compile-time optimizations
This commit is contained in:
parent
648bbdbc4d
commit
c0f74f1e09
@ -22,10 +22,11 @@ pub fn parse(source: &str) -> Result<Chunk, DustError> {
|
|||||||
.parse_statement(Allowed {
|
.parse_statement(Allowed {
|
||||||
assignment: true,
|
assignment: true,
|
||||||
explicit_return: false,
|
explicit_return: false,
|
||||||
implicit_return: true,
|
|
||||||
})
|
})
|
||||||
.map_err(|error| DustError::Parse { error, source })?;
|
.map_err(|error| DustError::Parse { error, source })?;
|
||||||
parser.commit_current_statement();
|
parser
|
||||||
|
.commit_staged()
|
||||||
|
.map_err(|error| DustError::Parse { error, source })?;
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(parser.finish())
|
Ok(parser.finish())
|
||||||
@ -36,7 +37,7 @@ pub struct Parser<'src> {
|
|||||||
lexer: Lexer<'src>,
|
lexer: Lexer<'src>,
|
||||||
chunk: Chunk,
|
chunk: Chunk,
|
||||||
|
|
||||||
current_statement: Vec<(Instruction, Span)>,
|
staged_instructions: Vec<(Instruction, Span)>,
|
||||||
current_is_expression: bool,
|
current_is_expression: bool,
|
||||||
minimum_register: u8,
|
minimum_register: u8,
|
||||||
|
|
||||||
@ -62,7 +63,7 @@ impl<'src> Parser<'src> {
|
|||||||
Ok(Parser {
|
Ok(Parser {
|
||||||
lexer,
|
lexer,
|
||||||
chunk: Chunk::new(None),
|
chunk: Chunk::new(None),
|
||||||
current_statement: Vec::new(),
|
staged_instructions: Vec::new(),
|
||||||
current_is_expression: false,
|
current_is_expression: false,
|
||||||
minimum_register: 0,
|
minimum_register: 0,
|
||||||
current_token,
|
current_token,
|
||||||
@ -84,7 +85,7 @@ impl<'src> Parser<'src> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn next_register(&mut self) -> u8 {
|
fn next_register(&mut self) -> u8 {
|
||||||
self.current_statement
|
self.staged_instructions
|
||||||
.iter()
|
.iter()
|
||||||
.rev()
|
.rev()
|
||||||
.find_map(|(instruction, _)| {
|
.find_map(|(instruction, _)| {
|
||||||
@ -145,15 +146,30 @@ impl<'src> Parser<'src> {
|
|||||||
position.to_string()
|
position.to_string()
|
||||||
);
|
);
|
||||||
|
|
||||||
self.current_statement.push((instruction, position));
|
self.staged_instructions.push((instruction, position));
|
||||||
|
}
|
||||||
|
|
||||||
|
fn commit_staged(&mut self) -> Result<(), ParseError> {
|
||||||
|
if self.staged_instructions.len() == 4
|
||||||
|
&& self.staged_instructions[0].0.operation().is_comparison()
|
||||||
|
&& matches!(self.staged_instructions[1].0.operation(), Operation::Jump)
|
||||||
|
&& matches!(
|
||||||
|
self.staged_instructions[2].0.operation(),
|
||||||
|
Operation::LoadBoolean | Operation::LoadConstant
|
||||||
|
)
|
||||||
|
&& matches!(
|
||||||
|
self.staged_instructions[3].0.operation(),
|
||||||
|
Operation::LoadBoolean | Operation::LoadConstant
|
||||||
|
)
|
||||||
|
{
|
||||||
|
self.staged_instructions[2].0.set_c_to_boolean(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn commit_current_statement(&mut self) -> Result<(), ParseError> {
|
|
||||||
self.parse_implicit_return()?;
|
self.parse_implicit_return()?;
|
||||||
|
|
||||||
let next_register = self.next_register();
|
let next_register = self.next_register();
|
||||||
|
|
||||||
for (instruction, position) in self.current_statement.drain(..) {
|
for (instruction, position) in self.staged_instructions.drain(..) {
|
||||||
self.chunk.push_instruction(instruction, position);
|
self.chunk.push_instruction(instruction, position);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -164,14 +180,18 @@ impl<'src> Parser<'src> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn get_statement_operations<const COUNT: usize>(&self) -> Option<[(Operation, Span); COUNT]> {
|
fn get_statement_operations<const COUNT: usize>(&self) -> Option<[(Operation, Span); COUNT]> {
|
||||||
if self.current_statement.len() < COUNT {
|
if self.staged_instructions.len() < COUNT {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut operations = [(Operation::Return, Span(0, 0)); COUNT];
|
let mut operations = [(Operation::Return, Span(0, 0)); COUNT];
|
||||||
|
|
||||||
for (index, (instruction, position)) in
|
for (index, (instruction, position)) in self
|
||||||
self.current_statement.iter().rev().enumerate().take(COUNT)
|
.staged_instructions
|
||||||
|
.iter()
|
||||||
|
.rev()
|
||||||
|
.enumerate()
|
||||||
|
.take(COUNT)
|
||||||
{
|
{
|
||||||
operations[index] = (instruction.operation(), *position);
|
operations[index] = (instruction.operation(), *position);
|
||||||
}
|
}
|
||||||
@ -180,7 +200,7 @@ impl<'src> Parser<'src> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn get_last_jump_mut(&mut self) -> Option<&mut Instruction> {
|
fn get_last_jump_mut(&mut self) -> Option<&mut Instruction> {
|
||||||
self.current_statement
|
self.staged_instructions
|
||||||
.iter_mut()
|
.iter_mut()
|
||||||
.rev()
|
.rev()
|
||||||
.find_map(|(instruction, _)| {
|
.find_map(|(instruction, _)| {
|
||||||
@ -224,7 +244,7 @@ impl<'src> Parser<'src> {
|
|||||||
|
|
||||||
let boolean = text.parse::<bool>().unwrap();
|
let boolean = text.parse::<bool>().unwrap();
|
||||||
let register = if let Some(instruction) = self
|
let register = if let Some(instruction) = self
|
||||||
.current_statement
|
.staged_instructions
|
||||||
.last()
|
.last()
|
||||||
.map(|(instruction, _)| instruction)
|
.map(|(instruction, _)| instruction)
|
||||||
{
|
{
|
||||||
@ -396,7 +416,7 @@ impl<'src> Parser<'src> {
|
|||||||
self.parse_expression()?;
|
self.parse_expression()?;
|
||||||
|
|
||||||
let (previous_instruction, previous_position) =
|
let (previous_instruction, previous_position) =
|
||||||
self.current_statement
|
self.staged_instructions
|
||||||
.pop()
|
.pop()
|
||||||
.ok_or_else(|| ParseError::ExpectedExpression {
|
.ok_or_else(|| ParseError::ExpectedExpression {
|
||||||
found: self.previous_token.to_owned(),
|
found: self.previous_token.to_owned(),
|
||||||
@ -485,7 +505,7 @@ impl<'src> Parser<'src> {
|
|||||||
|
|
||||||
fn parse_math_binary(&mut self) -> Result<(), ParseError> {
|
fn parse_math_binary(&mut self) -> Result<(), ParseError> {
|
||||||
let (left_instruction, left_position) =
|
let (left_instruction, left_position) =
|
||||||
self.current_statement
|
self.staged_instructions
|
||||||
.pop()
|
.pop()
|
||||||
.ok_or_else(|| ParseError::ExpectedExpression {
|
.ok_or_else(|| ParseError::ExpectedExpression {
|
||||||
found: self.previous_token.to_owned(),
|
found: self.previous_token.to_owned(),
|
||||||
@ -517,7 +537,7 @@ impl<'src> Parser<'src> {
|
|||||||
self.parse_sub_expression(&rule.precedence)?;
|
self.parse_sub_expression(&rule.precedence)?;
|
||||||
|
|
||||||
let (right_instruction, right_position) =
|
let (right_instruction, right_position) =
|
||||||
self.current_statement
|
self.staged_instructions
|
||||||
.pop()
|
.pop()
|
||||||
.ok_or_else(|| ParseError::ExpectedExpression {
|
.ok_or_else(|| ParseError::ExpectedExpression {
|
||||||
found: self.previous_token.to_owned(),
|
found: self.previous_token.to_owned(),
|
||||||
@ -602,7 +622,7 @@ impl<'src> Parser<'src> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let (left_instruction, left_position) =
|
let (left_instruction, left_position) =
|
||||||
self.current_statement
|
self.staged_instructions
|
||||||
.pop()
|
.pop()
|
||||||
.ok_or_else(|| ParseError::ExpectedExpression {
|
.ok_or_else(|| ParseError::ExpectedExpression {
|
||||||
found: self.previous_token.to_owned(),
|
found: self.previous_token.to_owned(),
|
||||||
@ -619,7 +639,7 @@ impl<'src> Parser<'src> {
|
|||||||
self.parse_sub_expression(&rule.precedence)?;
|
self.parse_sub_expression(&rule.precedence)?;
|
||||||
|
|
||||||
let (right_instruction, right_position) =
|
let (right_instruction, right_position) =
|
||||||
self.current_statement
|
self.staged_instructions
|
||||||
.pop()
|
.pop()
|
||||||
.ok_or_else(|| ParseError::ExpectedExpression {
|
.ok_or_else(|| ParseError::ExpectedExpression {
|
||||||
found: self.previous_token.to_owned(),
|
found: self.previous_token.to_owned(),
|
||||||
@ -672,7 +692,7 @@ impl<'src> Parser<'src> {
|
|||||||
|
|
||||||
self.emit_instruction(instruction, operator_position);
|
self.emit_instruction(instruction, operator_position);
|
||||||
|
|
||||||
let jump_to = (self.chunk.len() + self.current_statement.len() + 2) as u8;
|
let jump_to = (self.chunk.len() + self.staged_instructions.len() + 2) as u8;
|
||||||
|
|
||||||
self.emit_instruction(Instruction::jump(jump_to), operator_position);
|
self.emit_instruction(Instruction::jump(jump_to), operator_position);
|
||||||
self.emit_instruction(
|
self.emit_instruction(
|
||||||
@ -691,7 +711,7 @@ impl<'src> Parser<'src> {
|
|||||||
|
|
||||||
fn parse_logical_binary(&mut self) -> Result<(), ParseError> {
|
fn parse_logical_binary(&mut self) -> Result<(), ParseError> {
|
||||||
let (left_instruction, left_position) =
|
let (left_instruction, left_position) =
|
||||||
self.current_statement
|
self.staged_instructions
|
||||||
.pop()
|
.pop()
|
||||||
.ok_or_else(|| ParseError::ExpectedExpression {
|
.ok_or_else(|| ParseError::ExpectedExpression {
|
||||||
found: self.previous_token.to_owned(),
|
found: self.previous_token.to_owned(),
|
||||||
@ -718,7 +738,7 @@ impl<'src> Parser<'src> {
|
|||||||
self.emit_instruction(left_instruction, left_position);
|
self.emit_instruction(left_instruction, left_position);
|
||||||
self.emit_instruction(instruction, operator_position);
|
self.emit_instruction(instruction, operator_position);
|
||||||
|
|
||||||
let jump_to = (self.chunk.len() + self.current_statement.len() + 2) as u8;
|
let jump_to = (self.chunk.len() + self.staged_instructions.len() + 2) as u8;
|
||||||
|
|
||||||
self.emit_instruction(Instruction::jump(jump_to), operator_position);
|
self.emit_instruction(Instruction::jump(jump_to), operator_position);
|
||||||
self.parse_sub_expression(&rule.precedence)?;
|
self.parse_sub_expression(&rule.precedence)?;
|
||||||
@ -796,7 +816,7 @@ impl<'src> Parser<'src> {
|
|||||||
self.parse_expression()?;
|
self.parse_expression()?;
|
||||||
|
|
||||||
let (mut previous_instruction, previous_position) = self
|
let (mut previous_instruction, previous_position) = self
|
||||||
.current_statement
|
.staged_instructions
|
||||||
.pop()
|
.pop()
|
||||||
.ok_or_else(|| ParseError::ExpectedExpression {
|
.ok_or_else(|| ParseError::ExpectedExpression {
|
||||||
found: self.previous_token.to_owned(),
|
found: self.previous_token.to_owned(),
|
||||||
@ -918,14 +938,13 @@ impl<'src> Parser<'src> {
|
|||||||
[(Operation::LoadBoolean, _), (Operation::LoadBoolean, _), (Operation::Jump, _), (Operation::Equal | Operation::Less | Operation::LessEqual, _)],
|
[(Operation::LoadBoolean, _), (Operation::LoadBoolean, _), (Operation::Jump, _), (Operation::Equal | Operation::Less | Operation::LessEqual, _)],
|
||||||
) = self.get_statement_operations()
|
) = self.get_statement_operations()
|
||||||
{
|
{
|
||||||
self.current_statement.pop();
|
self.staged_instructions.pop();
|
||||||
self.current_statement.pop();
|
self.staged_instructions.pop();
|
||||||
}
|
}
|
||||||
|
|
||||||
let block_allowed = Allowed {
|
let block_allowed = Allowed {
|
||||||
assignment: allowed.assignment,
|
assignment: allowed.assignment,
|
||||||
explicit_return: allowed.explicit_return,
|
explicit_return: allowed.explicit_return,
|
||||||
implicit_return: false,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
if let Token::LeftCurlyBrace = self.current_token {
|
if let Token::LeftCurlyBrace = self.current_token {
|
||||||
@ -938,54 +957,45 @@ impl<'src> Parser<'src> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
let if_block_end = self.current_statement.len();
|
let if_block_index = self.staged_instructions.len();
|
||||||
|
let if_block_end = (self.chunk.len() + if_block_index) as u8;
|
||||||
|
|
||||||
if let Some(if_jump) = self.get_last_jump_mut() {
|
if let Some(if_jump) = self.get_last_jump_mut() {
|
||||||
if_jump.set_b(if_block_end as u8);
|
if_jump.set_b(if_block_end);
|
||||||
}
|
}
|
||||||
|
|
||||||
if self.allow(Token::Else)? {
|
if self.allow(Token::Else)? {
|
||||||
if let Token::If = self.current_token {
|
if let Token::If = self.current_token {
|
||||||
return self.parse_if(allowed);
|
self.parse_if(allowed)?;
|
||||||
}
|
|
||||||
|
|
||||||
if let Token::LeftCurlyBrace = self.current_token {
|
let if_block_index = self.staged_instructions.len();
|
||||||
|
let if_block_end = (self.chunk.len() + if_block_index) as u8;
|
||||||
|
|
||||||
|
if let Some(if_jump) = self.get_last_jump_mut() {
|
||||||
|
if_jump.set_b(if_block_end + 1);
|
||||||
|
}
|
||||||
|
} else if let Token::LeftCurlyBrace = self.current_token {
|
||||||
self.parse_block(block_allowed)?;
|
self.parse_block(block_allowed)?;
|
||||||
|
|
||||||
let else_end = self.current_statement.len();
|
let else_end = self.chunk.len() + self.staged_instructions.len();
|
||||||
|
|
||||||
if else_end - if_block_end > 1 {
|
if else_end - if_block_index > 1 {
|
||||||
self.current_statement.insert(
|
self.staged_instructions.insert(
|
||||||
if_block_end,
|
if_block_index,
|
||||||
(
|
(
|
||||||
Instruction::jump((else_end + 1) as u8),
|
Instruction::jump((else_end + 1) as u8),
|
||||||
self.current_position,
|
self.current_position,
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
} else {
|
|
||||||
self.current_statement
|
|
||||||
.iter_mut()
|
|
||||||
.rev()
|
|
||||||
.filter(|(instruction, _)| {
|
|
||||||
matches!(
|
|
||||||
instruction.operation(),
|
|
||||||
Operation::LoadBoolean | Operation::LoadConstant
|
|
||||||
)
|
|
||||||
})
|
|
||||||
.nth(1)
|
|
||||||
.map(|(instruction, _)| instruction.set_c_to_boolean(true));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
self.current_is_expression = self
|
self.current_is_expression = self
|
||||||
.current_statement
|
.staged_instructions
|
||||||
.last()
|
.last()
|
||||||
.map_or(false, |(instruction, _)| instruction.yields_value());
|
.map_or(false, |(instruction, _)| instruction.yields_value());
|
||||||
|
|
||||||
self.commit_current_statement()?;
|
self.commit_staged()?;
|
||||||
|
} else {
|
||||||
return Ok(());
|
|
||||||
}
|
|
||||||
|
|
||||||
return Err(ParseError::ExpectedTokenMultiple {
|
return Err(ParseError::ExpectedTokenMultiple {
|
||||||
expected: &[TokenKind::If, TokenKind::LeftCurlyBrace],
|
expected: &[TokenKind::If, TokenKind::LeftCurlyBrace],
|
||||||
found: self.current_token.to_owned(),
|
found: self.current_token.to_owned(),
|
||||||
@ -993,9 +1003,15 @@ impl<'src> Parser<'src> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
self.current_is_expression = self
|
||||||
|
.staged_instructions
|
||||||
|
.last()
|
||||||
|
.map_or(false, |(instruction, _)| instruction.yields_value());
|
||||||
|
} else {
|
||||||
self.current_is_expression = false;
|
self.current_is_expression = false;
|
||||||
|
}
|
||||||
|
|
||||||
self.commit_current_statement()?;
|
self.commit_staged()?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@ -1003,7 +1019,7 @@ impl<'src> Parser<'src> {
|
|||||||
fn parse_while(&mut self, allowed: Allowed) -> Result<(), ParseError> {
|
fn parse_while(&mut self, allowed: Allowed) -> Result<(), ParseError> {
|
||||||
self.advance()?;
|
self.advance()?;
|
||||||
|
|
||||||
let jump_start = (self.chunk.len() + self.current_statement.len()) as u8;
|
let jump_start = (self.chunk.len() + self.staged_instructions.len()) as u8;
|
||||||
|
|
||||||
self.parse_expression()?;
|
self.parse_expression()?;
|
||||||
|
|
||||||
@ -1011,17 +1027,16 @@ impl<'src> Parser<'src> {
|
|||||||
[(Operation::LoadBoolean, _), (Operation::LoadBoolean, _), (Operation::Jump, _), (Operation::Equal | Operation::Less | Operation::LessEqual, _)],
|
[(Operation::LoadBoolean, _), (Operation::LoadBoolean, _), (Operation::Jump, _), (Operation::Equal | Operation::Less | Operation::LessEqual, _)],
|
||||||
) = self.get_statement_operations()
|
) = self.get_statement_operations()
|
||||||
{
|
{
|
||||||
self.current_statement.pop();
|
self.staged_instructions.pop();
|
||||||
self.current_statement.pop();
|
self.staged_instructions.pop();
|
||||||
}
|
}
|
||||||
|
|
||||||
self.parse_block(Allowed {
|
self.parse_block(Allowed {
|
||||||
assignment: true,
|
assignment: true,
|
||||||
explicit_return: allowed.explicit_return,
|
explicit_return: allowed.explicit_return,
|
||||||
implicit_return: false,
|
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
let jump_end = (self.chunk.len() + self.current_statement.len()) as u8;
|
let jump_end = (self.chunk.len() + self.staged_instructions.len()) as u8;
|
||||||
|
|
||||||
if let Some(jump) = self.get_last_jump_mut() {
|
if let Some(jump) = self.get_last_jump_mut() {
|
||||||
jump.set_b(jump_end + 1);
|
jump.set_b(jump_end + 1);
|
||||||
@ -1030,7 +1045,7 @@ impl<'src> Parser<'src> {
|
|||||||
let jump_back = Instruction::jump(jump_start);
|
let jump_back = Instruction::jump(jump_start);
|
||||||
|
|
||||||
self.emit_instruction(jump_back, self.current_position);
|
self.emit_instruction(jump_back, self.current_position);
|
||||||
self.commit_current_statement()?;
|
self.commit_staged()?;
|
||||||
|
|
||||||
self.current_is_expression = false;
|
self.current_is_expression = false;
|
||||||
|
|
||||||
@ -1049,7 +1064,6 @@ impl<'src> Parser<'src> {
|
|||||||
Allowed {
|
Allowed {
|
||||||
assignment: false,
|
assignment: false,
|
||||||
explicit_return: false,
|
explicit_return: false,
|
||||||
implicit_return: false,
|
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@ -1060,7 +1074,6 @@ impl<'src> Parser<'src> {
|
|||||||
Allowed {
|
Allowed {
|
||||||
assignment: false,
|
assignment: false,
|
||||||
explicit_return: false,
|
explicit_return: false,
|
||||||
implicit_return: false,
|
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@ -1092,7 +1105,7 @@ impl<'src> Parser<'src> {
|
|||||||
|
|
||||||
self.current_is_expression = false;
|
self.current_is_expression = false;
|
||||||
|
|
||||||
self.commit_current_statement()?;
|
self.commit_staged()?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@ -1108,7 +1121,7 @@ impl<'src> Parser<'src> {
|
|||||||
);
|
);
|
||||||
let has_semicolon = self.allow(Token::Semicolon)?;
|
let has_semicolon = self.allow(Token::Semicolon)?;
|
||||||
let returned = self
|
let returned = self
|
||||||
.current_statement
|
.staged_instructions
|
||||||
.last()
|
.last()
|
||||||
.map(|(instruction, _)| matches!(instruction.operation(), Operation::Return))
|
.map(|(instruction, _)| matches!(instruction.operation(), Operation::Return))
|
||||||
.unwrap_or(false);
|
.unwrap_or(false);
|
||||||
@ -1169,7 +1182,7 @@ impl<'src> Parser<'src> {
|
|||||||
|
|
||||||
self.current_is_expression = false;
|
self.current_is_expression = false;
|
||||||
|
|
||||||
self.commit_current_statement()?;
|
self.commit_staged()?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@ -1266,9 +1279,8 @@ impl<'src> Parser<'src> {
|
|||||||
function_parser.parse_statement(Allowed {
|
function_parser.parse_statement(Allowed {
|
||||||
assignment: true,
|
assignment: true,
|
||||||
explicit_return: true,
|
explicit_return: true,
|
||||||
implicit_return: true,
|
|
||||||
})?;
|
})?;
|
||||||
function_parser.commit_current_statement()?;
|
function_parser.commit_staged()?;
|
||||||
}
|
}
|
||||||
|
|
||||||
function_parser.advance()?;
|
function_parser.advance()?;
|
||||||
@ -1306,7 +1318,7 @@ impl<'src> Parser<'src> {
|
|||||||
|
|
||||||
self.current_is_expression = false;
|
self.current_is_expression = false;
|
||||||
|
|
||||||
self.commit_current_statement()?;
|
self.commit_staged()?;
|
||||||
} else {
|
} else {
|
||||||
self.emit_constant(function, Span(function_start, function_end))?;
|
self.emit_constant(function, Span(function_start, function_end))?;
|
||||||
|
|
||||||
@ -1317,7 +1329,7 @@ impl<'src> Parser<'src> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn parse_call(&mut self) -> Result<(), ParseError> {
|
fn parse_call(&mut self) -> Result<(), ParseError> {
|
||||||
let (last_instruction, _) = self.current_statement.last().copied().ok_or_else(|| {
|
let (last_instruction, _) = self.staged_instructions.last().copied().ok_or_else(|| {
|
||||||
ParseError::ExpectedExpression {
|
ParseError::ExpectedExpression {
|
||||||
found: self.previous_token.to_owned(),
|
found: self.previous_token.to_owned(),
|
||||||
position: self.previous_position,
|
position: self.previous_position,
|
||||||
@ -1473,7 +1485,6 @@ pub enum Context {
|
|||||||
struct Allowed {
|
struct Allowed {
|
||||||
pub assignment: bool,
|
pub assignment: bool,
|
||||||
pub explicit_return: bool,
|
pub explicit_return: bool,
|
||||||
pub implicit_return: bool,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type PrefixFunction<'a> = fn(&mut Parser<'a>, Allowed) -> Result<(), ParseError>;
|
type PrefixFunction<'a> = fn(&mut Parser<'a>, Allowed) -> Result<(), ParseError>;
|
||||||
|
@ -425,11 +425,21 @@ impl Vm {
|
|||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
Ordering::Greater => Err(VmError::SkippedRegister {
|
Ordering::Greater => {
|
||||||
index: to_register,
|
let difference = to_register - length;
|
||||||
length,
|
|
||||||
position,
|
for index in 0..difference {
|
||||||
}),
|
log::trace!("Set R{index} to empty");
|
||||||
|
|
||||||
|
self.stack.push(Register::Empty);
|
||||||
|
}
|
||||||
|
|
||||||
|
log::trace!("Set R{to_register} to {value}");
|
||||||
|
|
||||||
|
self.stack.push(Register::Value(value));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -461,48 +471,68 @@ impl Vm {
|
|||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
Ordering::Greater => Err(VmError::SkippedRegister {
|
Ordering::Greater => {
|
||||||
index: to_register,
|
let difference = to_register - length;
|
||||||
length,
|
|
||||||
position,
|
for index in 0..difference {
|
||||||
}),
|
log::trace!("Set R{index} to empty");
|
||||||
|
|
||||||
|
self.stack.push(Register::Empty);
|
||||||
|
}
|
||||||
|
|
||||||
|
log::trace!("Set R{to_register} to R{from_register}");
|
||||||
|
|
||||||
|
self.stack.push(Register::Pointer(from_register));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn set_constant(
|
fn set_constant(
|
||||||
&mut self,
|
&mut self,
|
||||||
index: u8,
|
to_register: u8,
|
||||||
constant_index: u8,
|
constant_index: u8,
|
||||||
position: Span,
|
position: Span,
|
||||||
) -> Result<(), VmError> {
|
) -> Result<(), VmError> {
|
||||||
let length = self.stack.len();
|
let length = self.stack.len();
|
||||||
let index = index as usize;
|
let to_register = to_register as usize;
|
||||||
|
|
||||||
if length == Self::STACK_LIMIT {
|
if length == Self::STACK_LIMIT {
|
||||||
return Err(VmError::StackOverflow { position });
|
return Err(VmError::StackOverflow { position });
|
||||||
}
|
}
|
||||||
|
|
||||||
if index == length {
|
match to_register.cmp(&length) {
|
||||||
log::trace!("Change register {index} to C{constant_index}");
|
Ordering::Less => {
|
||||||
|
log::trace!("Change R{to_register} to C{constant_index}");
|
||||||
|
|
||||||
|
self.stack[to_register] = Register::Constant(constant_index);
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
Ordering::Equal => {
|
||||||
|
log::trace!("Set R{to_register} to C{constant_index}");
|
||||||
|
|
||||||
self.stack.push(Register::Constant(constant_index));
|
self.stack.push(Register::Constant(constant_index));
|
||||||
|
|
||||||
return Ok(());
|
Ok(())
|
||||||
|
}
|
||||||
|
Ordering::Greater => {
|
||||||
|
let difference = to_register - length;
|
||||||
|
|
||||||
|
for index in 0..difference {
|
||||||
|
log::trace!("Set R{index} to empty");
|
||||||
|
|
||||||
|
self.stack.push(Register::Empty);
|
||||||
}
|
}
|
||||||
|
|
||||||
if index < length {
|
log::trace!("Set R{to_register} to C{constant_index}");
|
||||||
log::trace!("Set register {index} to C{constant_index}");
|
|
||||||
|
|
||||||
self.stack[index] = Register::Constant(constant_index);
|
self.stack.push(Register::Constant(constant_index));
|
||||||
|
|
||||||
return Ok(());
|
Ok(())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Err(VmError::SkippedRegister {
|
|
||||||
index,
|
|
||||||
length: self.stack.len(),
|
|
||||||
position,
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get(&self, index: u8, position: Span) -> Result<&Value, VmError> {
|
pub fn get(&self, index: u8, position: Span) -> Result<&Value, VmError> {
|
||||||
@ -596,11 +626,6 @@ pub enum VmError {
|
|||||||
instruction: Instruction,
|
instruction: Instruction,
|
||||||
position: Span,
|
position: Span,
|
||||||
},
|
},
|
||||||
SkippedRegister {
|
|
||||||
index: usize,
|
|
||||||
length: usize,
|
|
||||||
position: Span,
|
|
||||||
},
|
|
||||||
StackOverflow {
|
StackOverflow {
|
||||||
position: Span,
|
position: Span,
|
||||||
},
|
},
|
||||||
@ -639,7 +664,6 @@ impl AnnotatedError for VmError {
|
|||||||
Self::ExpectedFunction { .. } => "Expected function",
|
Self::ExpectedFunction { .. } => "Expected function",
|
||||||
Self::RegisterIndexOutOfBounds { .. } => "Register index out of bounds",
|
Self::RegisterIndexOutOfBounds { .. } => "Register index out of bounds",
|
||||||
Self::InvalidInstruction { .. } => "Invalid instruction",
|
Self::InvalidInstruction { .. } => "Invalid instruction",
|
||||||
Self::SkippedRegister { .. } => "Skipped register",
|
|
||||||
Self::StackOverflow { .. } => "Stack overflow",
|
Self::StackOverflow { .. } => "Stack overflow",
|
||||||
Self::StackUnderflow { .. } => "Stack underflow",
|
Self::StackUnderflow { .. } => "Stack underflow",
|
||||||
Self::UndefinedVariable { .. } => "Undefined variable",
|
Self::UndefinedVariable { .. } => "Undefined variable",
|
||||||
@ -672,7 +696,6 @@ impl AnnotatedError for VmError {
|
|||||||
Self::ExpectedFunction { position, .. } => *position,
|
Self::ExpectedFunction { position, .. } => *position,
|
||||||
Self::RegisterIndexOutOfBounds { position, .. } => *position,
|
Self::RegisterIndexOutOfBounds { position, .. } => *position,
|
||||||
Self::InvalidInstruction { position, .. } => *position,
|
Self::InvalidInstruction { position, .. } => *position,
|
||||||
Self::SkippedRegister { position, .. } => *position,
|
|
||||||
Self::StackUnderflow { position } => *position,
|
Self::StackUnderflow { position } => *position,
|
||||||
Self::StackOverflow { position } => *position,
|
Self::StackOverflow { position } => *position,
|
||||||
Self::UndefinedVariable { position, .. } => *position,
|
Self::UndefinedVariable { position, .. } => *position,
|
||||||
|
Loading…
Reference in New Issue
Block a user