diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-29T15·40+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-09-07T15·25+0000 |
commit | 786e12a7382eaaa957389b3a9e9e962efe7e8403 (patch) | |
tree | e86c9b9d96ab2d7bb480efe9eb52943c96d93d59 /tvix/eval/src/compiler | |
parent | 9a783e50a490a873f157ec298165b3f38973e4b5 (diff) |
feat(tvix/eval): always emit OpForce as the last instruction r/4689
Change-Id: Id70c987f654dc5d9b47db74e395281309762b468 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6353 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'tvix/eval/src/compiler')
-rw-r--r-- | tvix/eval/src/compiler/mod.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tvix/eval/src/compiler/mod.rs b/tvix/eval/src/compiler/mod.rs index 2ae010ada6ed..e3cb15032a14 100644 --- a/tvix/eval/src/compiler/mod.rs +++ b/tvix/eval/src/compiler/mod.rs @@ -1256,6 +1256,12 @@ pub fn compile( c.compile(None, expr); + // The final operation of any top-level Nix program must always be + // `OpForce`. A thunk should not be returned to the user in an + // unevaluated state (though in practice, a value *containing* a + // thunk might be returned). + c.chunk().push_op(OpCode::OpForce); + Ok(CompilationOutput { lambda: c.contexts.pop().unwrap().lambda, warnings: c.warnings, |