Skip to content

Commit

Permalink
feat: Add storage slots to globals (noir-lang#1019)
Browse files Browse the repository at this point in the history
* Add storage slots to globals

* Fix clippy lint

* Add doc comment

* Reorganize storage slot code to avoid needing to store it on each global id
  • Loading branch information
jfecher authored Mar 21, 2023
1 parent 761fdb5 commit 4190e11
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 18 deletions.
9 changes: 3 additions & 6 deletions crates/noirc_driver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ impl Driver {
) -> Result<CompiledContract, ReportedError> {
let functions = try_btree_map(&contract.functions, |function| {
let function_name = self.function_name(*function).to_owned();

self.compile_no_check(options, *function).map(|program| (function_name, program))
let program = self.compile_no_check(options, *function)?;
Ok((function_name, program))
})?;

Ok(CompiledContract { name: contract.name, functions })
Expand All @@ -225,10 +225,7 @@ impl Driver {
};

// All Binaries should have a main function
match local_crate.main_function() {
Some(func_id) => Ok(func_id),
None => Err(ReportedError),
}
local_crate.main_function().ok_or(ReportedError)
}

/// Compile the current crate. Assumes self.check_crate is called beforehand!
Expand Down
16 changes: 7 additions & 9 deletions crates/noirc_frontend/src/hir/def_collector/dc_crate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,11 +258,10 @@ fn resolve_globals(
globals: Vec<UnresolvedGlobal>,
crate_id: CrateId,
) -> Vec<(FileId, StmtId)> {
let mut global_ids = Vec::new();

for global in globals {
let path_resolver =
StandardPathResolver::new(ModuleId { local_id: global.module_id, krate: crate_id });
vecmap(globals, |global| {
let module_id = ModuleId { local_id: global.module_id, krate: crate_id };
let path_resolver = StandardPathResolver::new(module_id);
let storage_slot = context.next_storage_slot(module_id);

let mut resolver = Resolver::new(
&mut context.def_interner,
Expand All @@ -277,11 +276,10 @@ fn resolve_globals(

context.def_interner.update_global(global.stmt_id, hir_stmt);

context.def_interner.push_global(global.stmt_id, name.clone(), global.module_id);
context.def_interner.push_global(global.stmt_id, name, global.module_id, storage_slot);

global_ids.push((global.file_id, global.stmt_id));
}
global_ids
(global.file_id, global.stmt_id)
})
}

fn type_check_globals(
Expand Down
24 changes: 24 additions & 0 deletions crates/noirc_frontend/src/hir/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,27 @@ pub struct Context {
pub crate_graph: CrateGraph,
pub(crate) def_maps: HashMap<CrateId, CrateDefMap>,
pub file_manager: FileManager,

/// Maps a given (contract) module id to the next available storage slot
/// for that contract.
pub storage_slots: HashMap<def_map::ModuleId, StorageSlot>,
}

pub type StorageSlot = u32;

impl Context {
pub fn new(file_manager: FileManager, crate_graph: CrateGraph, language: Language) -> Context {
let mut ctx = Context {
def_interner: NodeInterner::default(),
def_maps: HashMap::new(),
crate_graph,
file_manager,
storage_slots: HashMap::new(),
};
ctx.def_interner.set_language(&language);
ctx
}

/// Returns the CrateDefMap for a given CrateId.
/// It is perfectly valid for the compiler to look
/// up a CrateDefMap and it is not available.
Expand All @@ -46,4 +54,20 @@ impl Context {
pub fn crates(&self) -> impl Iterator<Item = CrateId> + '_ {
self.crate_graph.iter_keys()
}

fn module(&self, module_id: def_map::ModuleId) -> &def_map::ModuleData {
&self.def_maps[&module_id.krate].modules()[module_id.local_id.0]
}

/// Returns the next available storage slot in the given module.
/// Returns None if the given module is not a contract module.
fn next_storage_slot(&mut self, module_id: def_map::ModuleId) -> Option<StorageSlot> {
let module = self.module(module_id);

module.is_contract.then(|| {
let next_slot = self.storage_slots.entry(module_id).or_insert(0);
*next_slot += 1;
*next_slot
})
}
}
1 change: 1 addition & 0 deletions crates/noirc_frontend/src/hir/resolution/resolver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@ impl<'a> Resolver<'a> {
pub fn resolve_global_let(&mut self, let_stmt: crate::LetStatement) -> HirStatement {
let expression = self.resolve_expression(let_stmt.expression);
let definition = DefinitionKind::Global(expression);

HirStatement::Let(HirLetStatement {
pattern: self.resolve_pattern(let_stmt.pattern, definition),
r#type: self.resolve_type(let_stmt.r#type),
Expand Down
18 changes: 15 additions & 3 deletions crates/noirc_frontend/src/node_interner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ use crate::graph::CrateId;
use crate::hir::def_collector::dc_crate::UnresolvedStruct;
use crate::hir::def_map::{LocalModuleId, ModuleId};
use crate::hir::type_check::TypeCheckError;
use crate::hir::StorageSlot;
use crate::hir_def::stmt::HirLetStatement;
use crate::hir_def::types::{StructType, Type};
use crate::hir_def::{
Expand Down Expand Up @@ -202,6 +203,7 @@ impl DefinitionInfo {
#[derive(Debug, Clone, Eq, PartialEq)]
pub enum DefinitionKind {
Function(FuncId),

Global(ExprId),

/// Locals may be defined in let statements or parameters,
Expand All @@ -217,7 +219,7 @@ impl DefinitionKind {
/// True if this definition is for a global variable.
/// Note that this returns false for top-level functions.
pub fn is_global(&self) -> bool {
matches!(self, DefinitionKind::Global(_))
matches!(self, DefinitionKind::Global(..))
}

pub fn get_rhs(self) -> Option<ExprId> {
Expand All @@ -234,6 +236,10 @@ impl DefinitionKind {
pub struct GlobalInfo {
pub ident: Ident,
pub local_id: LocalModuleId,

/// Global definitions have an associated storage slot if they are defined within
/// a contract. If they're defined elsewhere, this value is None.
pub storage_slot: Option<StorageSlot>,
}

impl Default for NodeInterner {
Expand Down Expand Up @@ -331,8 +337,14 @@ impl NodeInterner {
self.id_to_type.insert(definition_id.into(), typ);
}

pub fn push_global(&mut self, stmt_id: StmtId, ident: Ident, local_id: LocalModuleId) {
self.globals.insert(stmt_id, GlobalInfo { ident, local_id });
pub fn push_global(
&mut self,
stmt_id: StmtId,
ident: Ident,
local_id: LocalModuleId,
storage_slot: Option<StorageSlot>,
) {
self.globals.insert(stmt_id, GlobalInfo { ident, local_id, storage_slot });
}

/// Intern an empty global stmt. Used for collecting globals
Expand Down

0 comments on commit 4190e11

Please sign in to comment.