More feedback

This commit is contained in:
Pranav Gaddamadugu 2022-07-14 17:02:37 -07:00
parent 923d5924fe
commit fdc2f65623
5 changed files with 43 additions and 67 deletions

View File

@ -32,6 +32,7 @@ impl StatementReconstructor for Unroller<'_> {
VariableType::Mut VariableType::Mut
}; };
// TODO: Do we need to obey shadowing rules?
input.variable_names.iter().for_each(|v| { input.variable_names.iter().for_each(|v| {
if let Err(err) = self.symbol_table.borrow_mut().insert_variable( if let Err(err) = self.symbol_table.borrow_mut().insert_variable(
v.identifier.name, v.identifier.name,
@ -64,10 +65,7 @@ impl StatementReconstructor for Unroller<'_> {
Ok(val_as_usize) => Ok(val_as_usize), Ok(val_as_usize) => Ok(val_as_usize),
Err(err) => { Err(err) => {
self.handler.emit_err(err); self.handler.emit_err(err);
Err(Statement::Block(Block { Err(Statement::dummy(input.span))
statements: Vec::new(),
span: input.span,
}))
} }
} }
}; };
@ -97,12 +95,7 @@ impl StatementReconstructor for Unroller<'_> {
Default::default() Default::default()
}; };
// Create the iteration scope if it does not exist, otherwise grab the existing one. let scope_index = self.get_current_block();
let scope_index = if self.is_unrolling {
self.symbol_table.borrow_mut().insert_block()
} else {
self.block_index
};
// Enter the scope of the loop body. // Enter the scope of the loop body.
let prev_st = std::mem::take(&mut self.symbol_table); let prev_st = std::mem::take(&mut self.symbol_table);
@ -171,12 +164,8 @@ impl StatementReconstructor for Unroller<'_> {
self.is_unrolling = prev_create_iter_scopes; self.is_unrolling = prev_create_iter_scopes;
// TODO: Should this be removed?
// self.symbol_table.borrow_mut().variables.remove(&input.variable.name);
// Restore the previous symbol table. // Restore the previous symbol table.
let prev_st = *self.symbol_table.borrow_mut().parent.take().unwrap(); let prev_st = *self.symbol_table.borrow_mut().parent.take().unwrap();
// TODO: Is this swap necessary?
self.symbol_table.swap(prev_st.get_block_scope(scope_index).unwrap()); self.symbol_table.swap(prev_st.get_block_scope(scope_index).unwrap());
self.symbol_table = RefCell::new(prev_st); self.symbol_table = RefCell::new(prev_st);
@ -188,42 +177,20 @@ impl StatementReconstructor for Unroller<'_> {
// Restore the previous symbol table. // Restore the previous symbol table.
let prev_st = *self.symbol_table.borrow_mut().parent.take().unwrap(); let prev_st = *self.symbol_table.borrow_mut().parent.take().unwrap();
// TODO: Is this swap necessary?
self.symbol_table.swap(prev_st.get_block_scope(scope_index).unwrap()); self.symbol_table.swap(prev_st.get_block_scope(scope_index).unwrap());
self.symbol_table = RefCell::new(prev_st); self.symbol_table = RefCell::new(prev_st);
self.block_index = scope_index + 1; self.block_index = scope_index + 1;
iter_blocks iter_blocks
} }
(None, Some(_)) => { // If both loop bounds are not constant, then the loop is not unrolled.
self.handler _ => Statement::Iteration(Box::from(input))
.emit_err(FlattenError::non_const_loop_bounds("start", input.start.span()));
Statement::Iteration(Box::from(input))
}
(Some(_), None) => {
self.handler
.emit_err(FlattenError::non_const_loop_bounds("stop", input.stop.span()));
Statement::Iteration(Box::from(input))
}
(None, None) => {
self.handler
.emit_err(FlattenError::non_const_loop_bounds("start", input.start.span()));
self.handler
.emit_err(FlattenError::non_const_loop_bounds("stop", input.stop.span()));
Statement::Iteration(Box::from(input))
}
} }
} }
fn reconstruct_block(&mut self, input: Block) -> Block { fn reconstruct_block(&mut self, input: Block) -> Block {
// If we are in an iteration scope we create any sub scopes for it.
// This is because in TYC we remove all its sub scopes to avoid clashing variables self.get_current_block();
// during flattening.
let current_block = if self.is_unrolling {
self.symbol_table.borrow_mut().insert_block()
} else {
self.block_index
};
// Enter block scope. // Enter block scope.
let prev_st = std::mem::take(&mut self.symbol_table); let prev_st = std::mem::take(&mut self.symbol_table);

View File

@ -40,4 +40,15 @@ impl<'a> Unroller<'a> {
is_unrolling: false, is_unrolling: false,
} }
} }
/// Returns the index of the current block scope.
/// Note that if we are in the midst of unrolling an IterationStatement, a new scope is created.
pub(crate) fn get_current_block(&mut self) -> usize {
if self.is_unrolling {
self.symbol_table.borrow_mut().insert_block()
} else {
self.block_index
}
}
} }

View File

@ -174,6 +174,17 @@ impl SymbolTable {
} }
} }
/// Returns the index associated with the function symbol, if it exists in the symbol table.
pub fn get_fn_index(&self, symbol: &Symbol) -> Option<usize> {
if let Some(func) = self.functions.get(symbol) {
Some(func.id)
} else if let Some(parent) = self.parent.as_ref() {
parent.get_fn_id(symbol)
} else {
None
}
}
/// Returns the scope associated with `index`, if it exists in the symbol table. /// Returns the scope associated with `index`, if it exists in the symbol table.
pub fn get_block_scope(&self, index: usize) -> Option<&RefCell<Self>> { pub fn get_block_scope(&self, index: usize) -> Option<&RefCell<Self>> {
self.scopes.get(index) self.scopes.get(index)

View File

@ -221,16 +221,21 @@ impl<'a> ExpressionVisitor<'a> for TypeChecker<'a> {
} }
fn visit_literal(&mut self, input: &'a Literal, expected: &Self::AdditionalInput) -> Self::Output { fn visit_literal(&mut self, input: &'a Literal, expected: &Self::AdditionalInput) -> Self::Output {
let negate_int = |str_content: &string| {
if self.negate {
format!("-{str_content}")
} else {
str_content.clone()
}
};
Some(match input { Some(match input {
Literal::Address(_, _) => self.assert_and_return_type(Type::Address, expected, input.span()), Literal::Address(_, _) => self.assert_and_return_type(Type::Address, expected, input.span()),
Literal::Boolean(_, _) => self.assert_and_return_type(Type::Boolean, expected, input.span()), Literal::Boolean(_, _) => self.assert_and_return_type(Type::Boolean, expected, input.span()),
Literal::Field(_, _) => self.assert_and_return_type(Type::Field, expected, input.span()), Literal::Field(_, _) => self.assert_and_return_type(Type::Field, expected, input.span()),
Literal::I8(str_content, _) => { Literal::I8(str_content, _) => {
let int = if self.negate { let int = negate_int(str_content);
format!("-{str_content}")
} else {
str_content.clone()
};
if int.parse::<i8>().is_err() { if int.parse::<i8>().is_err() {
self.handler self.handler
@ -239,11 +244,7 @@ impl<'a> ExpressionVisitor<'a> for TypeChecker<'a> {
self.assert_and_return_type(Type::I8, expected, input.span()) self.assert_and_return_type(Type::I8, expected, input.span())
} }
Literal::I16(str_content, _) => { Literal::I16(str_content, _) => {
let int = if self.negate { let int = negate_int(str_content);
format!("-{str_content}")
} else {
str_content.clone()
};
if int.parse::<i16>().is_err() { if int.parse::<i16>().is_err() {
self.handler self.handler
@ -252,11 +253,7 @@ impl<'a> ExpressionVisitor<'a> for TypeChecker<'a> {
self.assert_and_return_type(Type::I16, expected, input.span()) self.assert_and_return_type(Type::I16, expected, input.span())
} }
Literal::I32(str_content, _) => { Literal::I32(str_content, _) => {
let int = if self.negate { let int = negate_int(str_content);
format!("-{str_content}")
} else {
str_content.clone()
};
if int.parse::<i32>().is_err() { if int.parse::<i32>().is_err() {
self.handler self.handler
@ -265,11 +262,7 @@ impl<'a> ExpressionVisitor<'a> for TypeChecker<'a> {
self.assert_and_return_type(Type::I32, expected, input.span()) self.assert_and_return_type(Type::I32, expected, input.span())
} }
Literal::I64(str_content, _) => { Literal::I64(str_content, _) => {
let int = if self.negate { let int = negate_int(str_content);
format!("-{str_content}")
} else {
str_content.clone()
};
if int.parse::<i64>().is_err() { if int.parse::<i64>().is_err() {
self.handler self.handler
@ -278,11 +271,7 @@ impl<'a> ExpressionVisitor<'a> for TypeChecker<'a> {
self.assert_and_return_type(Type::I64, expected, input.span()) self.assert_and_return_type(Type::I64, expected, input.span())
} }
Literal::I128(str_content, _) => { Literal::I128(str_content, _) => {
let int = if self.negate { let int = negate_int(str_content);
format!("-{str_content}")
} else {
str_content.clone()
};
if int.parse::<i128>().is_err() { if int.parse::<i128>().is_err() {
self.handler self.handler

View File

@ -127,7 +127,6 @@ impl<'a> StatementVisitor<'a> for TypeChecker<'a> {
// Restore the previous scope. // Restore the previous scope.
let prev_st = *self.symbol_table.borrow_mut().parent.take().unwrap(); let prev_st = *self.symbol_table.borrow_mut().parent.take().unwrap();
// TODO: Is this swap necessary?
self.symbol_table.swap(prev_st.get_block_scope(scope_index).unwrap()); self.symbol_table.swap(prev_st.get_block_scope(scope_index).unwrap());
self.symbol_table = RefCell::new(prev_st); self.symbol_table = RefCell::new(prev_st);
@ -168,7 +167,6 @@ impl<'a> StatementVisitor<'a> for TypeChecker<'a> {
input.statements.iter().for_each(|stmt| self.visit_statement(stmt)); input.statements.iter().for_each(|stmt| self.visit_statement(stmt));
let previous_symbol_table = *self.symbol_table.borrow_mut().parent.take().unwrap(); let previous_symbol_table = *self.symbol_table.borrow_mut().parent.take().unwrap();
// TODO: Is this swap necessary?
self.symbol_table self.symbol_table
.swap(previous_symbol_table.get_block_scope(scope_index).unwrap()); .swap(previous_symbol_table.get_block_scope(scope_index).unwrap());
self.symbol_table = RefCell::new(previous_symbol_table); self.symbol_table = RefCell::new(previous_symbol_table);