Add ‘deepSeq’ primop

Note that unlike ‘lib.deepSeq’ in Nixpkgs, this handles cycles.
This commit is contained in:
Eelco Dolstra 2014-09-22 16:03:55 +02:00
parent 831fc8ea21
commit 0cd6596b0e
4 changed files with 14 additions and 0 deletions

View File

@ -392,6 +392,16 @@ void prim_seq(EvalState & state, const Pos & pos, Value * * args, Value & v)
}
/* Evaluate the first argument deeply (i.e. recursing into lists and
attrsets), then return the second argument. */
void prim_deepSeq(EvalState & state, const Pos & pos, Value * * args, Value & v)
{
state.forceValueDeep(*args[0]);
state.forceValue(*args[1]);
v = *args[1];
}
/* Evaluate the first expression and print it on standard error. Then
return the second expression. Useful for debugging. */
static void prim_trace(EvalState & state, const Pos & pos, Value * * args, Value & v)
@ -1435,6 +1445,7 @@ void EvalState::createBaseEnv()
// Strictness
addPrimOp("__seq", 2, prim_seq);
addPrimOp("__deepSeq", 2, prim_deepSeq);
// Debugging
addPrimOp("__trace", 2, prim_trace);

View File

@ -0,0 +1 @@
builtins.deepSeq { x = abort "foo"; } 456

View File

@ -0,0 +1 @@
456

View File

@ -0,0 +1 @@
builtins.deepSeq (let as = { x = 123; y = as; }; in as) 456