diff options
author | Vincent Ambo <mail@tazj.in> | 2022-09-06T14·05+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-09-11T12·04+0000 |
commit | 9da99af86045b59867e6082ca99d602308553006 (patch) | |
tree | 0f6c05cc114e2ca6f168bbf7770fbc4cc474824f /tvix/eval/src/compiler/mod.rs | |
parent | 27e69503a7374d7758a7c6145427265712d45f9c (diff) |
refactor(tvix/eval): encapsulate scope cleanup logic in module r/4794
Moves the logic for removing tracked locals from a given scope from the compiler's locals list, and leaves only the actual compiler-related stuff (emitting warnings, cleaning up locals at runtime) in the compiler itself. Change-Id: I9da6eb54967f0a7775f624d602fe11be4c7ed5c4 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6466 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'tvix/eval/src/compiler/mod.rs')
-rw-r--r-- | tvix/eval/src/compiler/mod.rs | 43 |
1 files changed, 10 insertions, 33 deletions
diff --git a/tvix/eval/src/compiler/mod.rs b/tvix/eval/src/compiler/mod.rs index d05989562f66..89b90f967268 100644 --- a/tvix/eval/src/compiler/mod.rs +++ b/tvix/eval/src/compiler/mod.rs @@ -781,7 +781,7 @@ impl Compiler<'_, '_> { // Deal with the body, then clean up the locals afterwards. self.compile(slot, node.body().unwrap()); - self.end_scope(&node); + self.cleanup_scope(&node); } fn compile_ident(&mut self, slot: LocalIdx, node: ast::Ident) { @@ -882,7 +882,7 @@ impl Compiler<'_, '_> { self.push_op(OpCode::OpPopWith, &node); self.scope_mut().pop_with(); - self.end_scope(&node); + self.cleanup_scope(&node); } /// Compiles pattern function arguments, such as `{ a, b }: ...`. @@ -1005,7 +1005,7 @@ impl Compiler<'_, '_> { } self.compile(slot, node.body().unwrap()); - self.end_scope(&node); + self.cleanup_scope(&node); // TODO: determine and insert enclosing name, if available. @@ -1060,7 +1060,7 @@ impl Compiler<'_, '_> { let slot = self.scope_mut().declare_phantom(span); self.begin_scope(); content(self, node, slot); - self.end_scope(node); + self.cleanup_scope(node); let mut thunk = self.contexts.pop().unwrap(); optimise_tail_call(&mut thunk.lambda.chunk); @@ -1159,41 +1159,18 @@ impl Compiler<'_, '_> { /// Decrease scope depth of the current function and emit /// instructions to clean up the stack at runtime. - fn end_scope<N: AstNode>(&mut self, node: &N) { - debug_assert!(self.scope().scope_depth != 0, "can not end top scope"); - - // If this scope poisoned any builtins or special identifiers, - // they need to be reset. - let depth = self.scope().scope_depth; - self.scope_mut().unpoison(depth); - + fn cleanup_scope<N: AstNode>(&mut self, node: &N) { // When ending a scope, all corresponding locals need to be // removed, but the value of the body needs to remain on the // stack. This is implemented by a separate instruction. - let mut pops = 0; - - // TL;DR - iterate from the back while things belonging to the - // ended scope still exist. - while self.scope().locals.last().unwrap().depth == depth { - if let Some(local) = self.scope_mut().locals.pop() { - // pop the local from the stack if it was actually - // initialised - if local.initialised { - pops += 1; - } + let (popcount, unused_spans) = self.scope_mut().end_scope(); - // analyse whether the local was accessed during its - // lifetime, and emit a warning otherwise (unless the - // user explicitly chose to ignore it by prefixing the - // identifier with `_`) - if !local.used && !local.is_ignored() { - self.emit_warning(local.span, WarningKind::UnusedBinding); - } - } + for span in unused_spans { + self.emit_warning(span, WarningKind::UnusedBinding); } - if pops > 0 { - self.push_op(OpCode::OpCloseScope(Count(pops)), node); + if popcount > 0 { + self.push_op(OpCode::OpCloseScope(Count(popcount)), node); } self.scope_mut().scope_depth -= 1; |