1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
use super::{
AssemblyError, CallSet, CodeBlock, CodeBlockTable, Kernel, LibraryPath, NamedProcedure,
Procedure, ProcedureCache, ProcedureId, ProcedureName, RpoDigest,
};
use crate::{
ast::{ModuleAst, ProgramAst},
utils::{collections::*, string::*},
};
// ASSEMBLY CONTEXT
// ================================================================================================
/// Contains information about compilation of a program or a kernel module.
///
/// Assembly context contains a stack of [ModuleContext]'s, each of which, in turn, contains a
/// stack of [ProcedureContext]'s. Thus, at any point in time, we are in a context of compiling a
/// procedure within a module, and we have access to the info about the current module/procedure
/// tuple bing compiled.
pub struct AssemblyContext {
module_stack: Vec<ModuleContext>,
is_kernel: bool,
kernel: Option<Kernel>,
allow_phantom_calls: bool,
}
impl AssemblyContext {
// CONSTRUCTORS
// --------------------------------------------------------------------------------------------
/// Returns a new [AssemblyContext] for non-executable kernel and non-kernel modules.
///
/// The `is_kernel_module` specifies whether provided module is a kernel module.
pub fn for_module(is_kernel_module: bool) -> Self {
Self {
module_stack: Vec::new(),
is_kernel: is_kernel_module,
kernel: None,
allow_phantom_calls: false,
}
}
/// Returns a new [AssemblyContext] for executable module.
///
/// If [ProgramAst] is provided, the context will contain info about the procedures imported
/// by the program, and thus, will be able to determine names of imported procedures for error
/// reporting purposes.
pub fn for_program(program: Option<&ProgramAst>) -> Self {
let program_imports =
program.map(|p| p.import_info().get_imported_procedures()).unwrap_or_default();
Self {
module_stack: vec![ModuleContext::for_program(program_imports)],
is_kernel: false,
kernel: None,
allow_phantom_calls: false,
}
}
/// Sets the flag specifying whether phantom calls are allowed in this context.
///
/// # Panics
/// Panics if the context was instantiated for compiling a kernel module as procedure calls
/// are not allowed in kernel modules in general.
pub fn with_phantom_calls(mut self, allow_phantom_calls: bool) -> Self {
if self.is_kernel {
assert!(!allow_phantom_calls);
}
self.allow_phantom_calls = allow_phantom_calls;
self
}
// PUBLIC ACCESSORS
// --------------------------------------------------------------------------------------------
/// Returns true if this context is used for compiling a kernel.
pub fn is_kernel(&self) -> bool {
self.is_kernel
}
/// Returns the number of memory locals allocated for the procedure currently being compiled.
pub fn num_proc_locals(&self) -> u16 {
self.current_proc_context().expect("no procedures").num_locals
}
/// Returns the name of the procedure by its ID from the procedure map.
pub fn get_imported_procedure_name(&self, id: &ProcedureId) -> Option<ProcedureName> {
if let Some(module) = self.module_stack.last() {
module.proc_map.get(id).cloned()
} else {
None
}
}
/// Returns the [Procedure] by its index from the vector of local procedures.
pub fn get_local_procedure(&self, idx: u16) -> Result<&Procedure, AssemblyError> {
let module_context = self.module_stack.last().expect("no modules");
module_context
.compiled_procs
.get(idx as usize)
.map(|named_proc| named_proc.inner())
.ok_or_else(|| AssemblyError::local_proc_not_found(idx, &module_context.path))
}
// STATE MUTATORS
// --------------------------------------------------------------------------------------------
/// Initiates compilation of a new module.
///
/// This puts a new module onto the module stack and ensures that there are no circular module
/// dependencies.
///
/// # Errors
/// Returns an error if a module with the same path already exists in the module stack.
pub fn begin_module(
&mut self,
module_path: &LibraryPath,
module_ast: &ModuleAst,
) -> Result<(), AssemblyError> {
if self.is_kernel && self.module_stack.is_empty() {
// a kernel context must be initialized with a kernel module path
debug_assert!(
module_path.is_kernel_path(),
"kernel context not initialized with kernel module"
);
}
// make sure this module is not in the chain of modules which are currently being compiled
if self.module_stack.iter().any(|m| &m.path == module_path) {
let dep_chain =
self.module_stack.iter().map(|m| m.path.to_string()).collect::<Vec<_>>();
return Err(AssemblyError::circular_module_dependency(&dep_chain));
}
// get the imported procedures map
let proc_map = module_ast.import_info().get_imported_procedures();
// push a new module context onto the module stack and return
self.module_stack.push(ModuleContext::for_module(module_path, proc_map));
Ok(())
}
/// Completes compilation of the current module.
///
/// This pops the module off the module stack and return all local procedures of the module
/// (both exported and internal) together with the combined callset of module's procedures.
pub fn complete_module(&mut self) -> Result<(Vec<NamedProcedure>, CallSet), AssemblyError> {
let module_ctx = self.module_stack.pop().expect("no modules");
if self.is_kernel && self.module_stack.is_empty() {
// if we are compiling a kernel and this is the last module on the module stack, then
// it must be the Kernel module; thus, we build a Kernel struct from the procedures
// exported from the kernel module
let proc_roots = module_ctx
.compiled_procs
.iter()
.filter(|proc| proc.is_export())
.map(|proc| proc.mast_root())
.collect::<Vec<_>>();
self.kernel = Some(Kernel::new(&proc_roots).map_err(AssemblyError::KernelError)?);
}
// return compiled procedures and callset from the module
Ok((module_ctx.compiled_procs, module_ctx.callset))
}
// PROCEDURE PROCESSORS
// --------------------------------------------------------------------------------------------
/// Initiates compilation compilation of a new procedure within the current module.
///
/// This puts a new procedure context on the procedure stack of the current module, and also
/// ensures that there are no procedures with identical name in the same module.
///
/// # Errors
/// Returns an error if a procedure with the specified name already exists in the current
/// module.
pub fn begin_proc(
&mut self,
name: &ProcedureName,
is_export: bool,
num_locals: u16,
) -> Result<(), AssemblyError> {
self.module_stack
.last_mut()
.expect("no modules")
.begin_proc(name, is_export, num_locals)
}
/// Completes compilation of the current procedure and adds the compiled procedure to the list
/// of the current module's compiled procedures.
pub fn complete_proc(&mut self, code: CodeBlock) {
self.module_stack.last_mut().expect("no modules").complete_proc(code);
}
// CALL PROCESSORS
// --------------------------------------------------------------------------------------------
/// Registers a call to a procedure in the current module located at the specified index. This
/// also returns a reference to the invoked procedure.
///
/// A procedure can be called in two modes:
/// - inlined, when the procedure body is inlined into the MAST.
/// - not inlined: when a new CALL block is created for the procedure call.
///
/// # Errors
/// Returns an error if:
/// - A procedure at the specified index could not be found.
/// - We are compiling a kernel and the procedure is not inlined.
pub fn register_local_call(
&mut self,
proc_idx: u16,
inlined: bool,
) -> Result<&Procedure, AssemblyError> {
// non-inlined calls (i.e., `call` instructions) cannot be executed in a kernel
if self.is_kernel && !inlined {
let proc_name = &self.current_proc_context().expect("no procedure").name;
return Err(AssemblyError::call_in_kernel(proc_name));
}
self.module_stack
.last_mut()
.expect("no modules")
.register_local_call(proc_idx, inlined)
}
/// Registers a call to the specified external procedure (i.e., a procedure which is not a part
/// of the current module).
///
/// A procedure can be called in two modes:
/// - inlined, when the procedure body is inlined into the MAST.
/// - not inlined: when a new CALL or SYSCALL block is created for the procedure call.
///
/// # Errors
/// Returns an error if:
/// - A procedure at the specified index could not be found.
/// - We are compiling a kernel and the procedure is not inlined.
pub fn register_external_call(
&mut self,
proc: &Procedure,
inlined: bool,
) -> Result<(), AssemblyError> {
// non-inlined calls (i.e., `call` instructions) cannot be executed in a kernel
if self.is_kernel && !inlined {
let proc_name = &self.current_proc_context().expect("no procedure").name;
return Err(AssemblyError::call_in_kernel(proc_name));
}
self.module_stack
.last_mut()
.expect("no modules")
.register_external_call(proc, inlined);
Ok(())
}
/// Registers a "phantom" call to the procedure with the specified MAST root.
///
/// A phantom call indicates that code for the procedure is not available. Executing a phantom
/// call will result in a runtime error. However, the VM may be able to execute a program with
/// phantom calls as long as the branches containing them are not taken.
///
/// # Errors
/// Returns an error if phantom calls are not allowed in this assembly context.
pub fn register_phantom_call(&mut self, mast_root: RpoDigest) -> Result<(), AssemblyError> {
if !self.allow_phantom_calls {
Err(AssemblyError::phantom_calls_not_allowed(mast_root))
} else {
Ok(())
}
}
// CONTEXT FINALIZERS
// --------------------------------------------------------------------------------------------
/// Transforms this context into a [Kernel].
///
/// This method is invoked at the end of the compilation of a kernel module.
///
/// # Panics
/// Panics if this context was not used for kernel compilation (i.e., was not instantiated with
/// is_kernel == true) or if the kernel module has not been completed yet.
pub fn into_kernel(self) -> Kernel {
self.kernel.expect("no kernel")
}
/// Transforms this context into a [CodeBlockTable] for the compiled program.
///
/// This method is invoked at the end of the compilation of an executable program.
///
/// # Panics
/// Panics if:
/// - There is not exactly one module left on the module stack.
/// - If this module is not an executable module.
///
/// # Errors
/// Returns an error if any of the procedures in the module's callset cannot be found in the
/// specified procedure cache or the local procedure set of the module.
pub fn into_cb_table(
mut self,
proc_cache: &ProcedureCache,
) -> Result<CodeBlockTable, AssemblyError> {
// get the last module off the module stack
assert_eq!(self.module_stack.len(), 1, "module stack must contain exactly one module");
let mut main_module_context = self.module_stack.pop().unwrap();
// complete compilation of the executable module; this appends the callset of the main
// procedure to the callset of the executable module
main_module_context.complete_executable();
// build the code block table based on the callset of the executable module; called
// procedures can be either in the specified procedure cache (for procedures imported from
// other modules) or in the module's procedures (for procedures defined locally).
let mut cb_table = CodeBlockTable::default();
for mast_root in main_module_context.callset.iter() {
let proc = proc_cache
.get_by_hash(mast_root)
.or_else(|| main_module_context.find_local_proc(mast_root))
.ok_or(AssemblyError::CallSetProcedureNotFound(*mast_root))?;
cb_table.insert(proc.code().clone());
}
Ok(cb_table)
}
// HELPER METHODS
// --------------------------------------------------------------------------------------------
/// Returns the context of the procedure currently being compiled, or None if module or
/// procedure stacks are empty.
fn current_proc_context(&self) -> Option<&ProcedureContext> {
self.module_stack.last().and_then(|m| m.proc_stack.last())
}
/// Returns the name of the current procedure, or the reserved name for the main block.
pub(crate) fn current_context_name(&self) -> &str {
self.current_proc_context()
.map(|p| p.name().as_ref())
.expect("library compilation mode is currently not supported!")
}
}
// MODULE CONTEXT
// ================================================================================================
/// Contains information about compilation of a single module. This includes both library modules
/// and executable modules.
#[derive(Debug)]
struct ModuleContext {
/// A stack of procedures which are in the process of being compiled. The procedure which
/// is currently being compiled is at the top of this list.
proc_stack: Vec<ProcedureContext>,
/// List of local procedures which have already been compiled for this module.
compiled_procs: Vec<NamedProcedure>,
/// Fully qualified path of this module.
path: LibraryPath,
/// A combined callset of all procedure callsets in this module.
callset: CallSet,
/// A map containing id and names of all imported procedures in the module.
proc_map: BTreeMap<ProcedureId, ProcedureName>,
}
impl ModuleContext {
// CONSTRUCTORS
// --------------------------------------------------------------------------------------------
/// Returns a new [ModuleContext] instantiated for compiling an executable module.
///
/// Procedure in the returned module context is initialized with procedure context for the
/// "main" procedure.
pub fn for_program(proc_map: BTreeMap<ProcedureId, ProcedureName>) -> Self {
let name = ProcedureName::main();
let main_proc_context = ProcedureContext::new(name, false, 0);
Self {
proc_stack: vec![main_proc_context],
compiled_procs: Vec::new(),
path: LibraryPath::exec_path(),
callset: CallSet::default(),
proc_map,
}
}
/// Returns a new [ModuleContext] instantiated for compiling library modules.
///
/// A library module must be identified by a unique module path.
pub fn for_module(
module_path: &LibraryPath,
proc_map: BTreeMap<ProcedureId, ProcedureName>,
) -> Self {
Self {
proc_stack: Vec::new(),
compiled_procs: Vec::new(),
path: module_path.clone(),
callset: CallSet::default(),
proc_map,
}
}
// PUBLIC ACCESSORS
// --------------------------------------------------------------------------------------------
/// Returns true if this module is the executable module of a program.
pub fn is_executable(&self) -> bool {
self.path.is_exec_path()
}
/// Returns a [Procedure] with the specified MAST root, or None if a compiled procedure with
/// such MAST root could not be found in this context.
pub fn find_local_proc(&self, mast_root: &RpoDigest) -> Option<&Procedure> {
self.compiled_procs
.iter()
.find(|proc| proc.mast_root() == *mast_root)
.map(|proc| proc.inner())
}
// PROCEDURE PROCESSORS
// --------------------------------------------------------------------------------------------
/// Puts a new procedure context on the stack procedure stack to indicate that we started
/// compilation of a new procedure.
///
/// # Errors
/// Returns an error if a procedure with the same name has already been complied or is in the
/// process of being compiled.
pub fn begin_proc(
&mut self,
name: &ProcedureName,
is_export: bool,
num_locals: u16,
) -> Result<(), AssemblyError> {
// make sure a procedure with this name has not been compiled yet and is also not currently
// on the stack of procedures being compiled
if self.compiled_procs.iter().any(|p| p.name() == name)
|| self.proc_stack.iter().any(|p| &p.name == name)
{
return Err(AssemblyError::duplicate_proc_name(name, &self.path));
}
self.proc_stack.push(ProcedureContext::new(name.clone(), is_export, num_locals));
Ok(())
}
/// Completes compilation of a procedure currently on the top of procedure stack.
///
/// This pops a procedure context off the top of the procedure stack, converts it into a
/// compiled procedure, and adds it to the list of compiled procedures.
///
/// This also updates module callset to include the callset of the newly compiled procedure.
pub fn complete_proc(&mut self, code: CodeBlock) {
let proc_context = self.proc_stack.pop().expect("no procedures");
let proc = proc_context.into_procedure(code);
self.callset.append(proc.callset());
self.compiled_procs.push(proc);
}
// CALL PROCESSORS
// --------------------------------------------------------------------------------------------
/// Registers a call to a local procedure in this module located at the specified index and
/// returns a reference to the invoked procedure.
///
/// This appends the callset of the called procedure to the callset of the current procedure at
/// the top of procedure stack. If inlined == false, the called procedure itself is added to
/// the callset of the current procedure as well.
///
/// # Errors
/// Returns an error if a procedure at the specified index could not be found.
pub fn register_local_call(
&mut self,
proc_idx: u16,
inlined: bool,
) -> Result<&Procedure, AssemblyError> {
// get the called procedure from the listed of already compiled local procedures
let called_proc = self
.compiled_procs
.get(proc_idx as usize)
.ok_or_else(|| AssemblyError::local_proc_not_found(proc_idx, &self.path))?;
// get the context of the procedure currently being compiled
let context = self.proc_stack.last_mut().expect("no proc context");
// append the callset of the called procedure to the current callset as all calls made as
// the result of the called procedure may be made as a result of current procedure as well
context.callset.append(called_proc.callset());
// if the called procedure was not inlined, we include it in the current callset as well
if !inlined {
context.callset.insert(called_proc.mast_root());
}
Ok(called_proc.inner())
}
/// Registers a call to the specified external procedure (i.e., a procedure which is not a part
/// of the current module).
///
/// This also appends the callset of the called procedure to the callset of the current
/// procedure at the top of procedure stack. If inlined == false, the called procedure itself
/// is added to the callset of the current procedure as well.
pub fn register_external_call(&mut self, called_proc: &Procedure, inlined: bool) {
// get the context of the procedure currently being compiled
let context = self.proc_stack.last_mut().expect("no proc context");
// append the callset of the called procedure to the current callset as all calls made as
// the result of the called procedure may be made as a result of current procedure as well
context.callset.append(called_proc.callset());
// if the called procedure was not inlined, we include it in the current callset as well
if !inlined {
context.callset.insert(called_proc.mast_root());
}
}
// EXECUTABLE FINALIZER
// --------------------------------------------------------------------------------------------
/// Completes compilation of the executable module.
///
/// Executable modules are not completed the same way library modules are. Thus, at the end of
/// compiling a program, the executable module will have the main procedure left on the
/// procedure stack. To complete the module we need to pop the main procedure off the stack and
/// append its callset to the callset of the module context.
///
/// # Panics
/// - If this module is not an executable module.
/// - If there is not exactly one procedure left on the procedure stack.
/// - If the procedure left on the procedure stack is not main procedure.
pub fn complete_executable(&mut self) {
assert!(self.is_executable(), "module not executable");
assert_eq!(self.proc_stack.len(), 1, "procedure stack must contain exactly one procedure");
let main_proc_context = self.proc_stack.pop().unwrap();
assert!(main_proc_context.is_main(), "not main procedure");
self.callset.append(&main_proc_context.callset);
}
}
// PROCEDURE CONTEXT
// ================================================================================================
/// Contains information about compilation of a single procedure.
#[derive(Debug)]
struct ProcedureContext {
name: ProcedureName,
is_export: bool,
num_locals: u16,
callset: CallSet,
}
impl ProcedureContext {
pub fn new(name: ProcedureName, is_export: bool, num_locals: u16) -> Self {
Self {
name,
is_export,
num_locals,
callset: CallSet::default(),
}
}
pub fn is_main(&self) -> bool {
self.name.is_main()
}
/// Returns the current context name.
///
/// Check [AssemblyContext::current_context_name] for reference.
pub const fn name(&self) -> &ProcedureName {
&self.name
}
pub fn into_procedure(self, code_root: CodeBlock) -> NamedProcedure {
let Self {
name,
is_export,
num_locals,
callset,
} = self;
NamedProcedure::new(name, is_export, num_locals as u32, code_root, callset)
}
}