fix(tvix/eval): bring foldl' strictness in line with C++ Nix

Working on https://github.com/NixOS/nix/pull/7158, I discovered that C++
Nix actually is strict in the accumulator, just not in the first value.
This seems due to the fact that in the C++ evaluator, function calls
don't seem to be thunked unconditionally and foldl' just elects not to
wrap it in a thunk (don't quote me on this summary, even though it seems
to line up with the code for primop_foldlStrict and testable behavior).

It doesn't seem worth it to risk breaking the odd Nix expression just to
be strict in one more value per invocation of foldl' (i.e. the initial
accumulator value `nul`), so let's match the existing C++ Nix behavior
here.

Change-Id: If59e62271a90d97cb440f0ca72a58ec7840d1690
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7022
Autosubmit: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
sterni 2022-10-15 15:52:37 +02:00 committed by clbot
parent caf9cbf711
commit f3c27f1717
7 changed files with 16 additions and 2 deletions

View file

@ -0,0 +1,4 @@
builtins.foldl'
(_: f: f null)
(throw "This doesn't explode")
[ (_: throw "Not the final value, but is still forced!") (_: 23) ]

View file

@ -0,0 +1,4 @@
builtins.foldl'
(_: x: x)
(throw "This is never forced")
[ "but the results of applying op are" 42 ]