2003-10-30 16:48:26 +00:00
|
|
|
#include "eval.hh"
|
|
|
|
#include "parser.hh"
|
2004-02-04 16:03:29 +00:00
|
|
|
|
|
|
|
|
2003-10-30 16:48:26 +00:00
|
|
|
EvalState::EvalState()
|
2004-02-04 16:03:29 +00:00
|
|
|
: normalForms(32768, 50)
|
2003-10-30 16:48:26 +00:00
|
|
|
{
|
|
|
|
blackHole = ATmake("BlackHole()");
|
|
|
|
if (!blackHole) throw Error("cannot build black hole");
|
2004-02-04 16:03:29 +00:00
|
|
|
|
2003-10-31 17:09:31 +00:00
|
|
|
nrEvaluated = nrCached = 0;
|
2004-02-04 16:03:29 +00:00
|
|
|
|
2004-08-04 10:59:20 +00:00
|
|
|
addPrimOps();
|
2004-02-04 16:03:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-04 10:59:20 +00:00
|
|
|
void EvalState::addPrimOp(const string & name,
|
|
|
|
unsigned int arity, PrimOp primOp)
|
2004-02-04 16:03:29 +00:00
|
|
|
{
|
2004-08-04 10:59:20 +00:00
|
|
|
primOps.set(name, ATmake("(<int>, <term>)",
|
|
|
|
arity, ATmakeBlob(0, (void *) primOp)));
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Substitute an argument set into the body of a function. */
|
|
|
|
static Expr substArgs(Expr body, ATermList formals, Expr arg)
|
|
|
|
{
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
2003-11-03 20:30:40 +00:00
|
|
|
ATermMap subs;
|
2003-10-31 17:09:31 +00:00
|
|
|
Expr undefined = ATmake("Undefined");
|
|
|
|
|
|
|
|
/* Get the formal arguments. */
|
2003-11-16 18:31:29 +00:00
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
2003-11-05 15:34:12 +00:00
|
|
|
Expr name, def;
|
2003-11-16 18:31:29 +00:00
|
|
|
if (atMatch(m, *i) >> "NoDefFormal" >> name)
|
2003-11-05 15:34:12 +00:00
|
|
|
subs.set(name, undefined);
|
2003-11-16 18:31:29 +00:00
|
|
|
else if (atMatch(m, *i) >> "DefFormal" >> name >> def)
|
2003-11-05 15:34:12 +00:00
|
|
|
subs.set(name, def);
|
|
|
|
else abort(); /* can't happen */
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the actual arguments, and check that they match with the
|
|
|
|
formals. */
|
2003-11-03 20:30:40 +00:00
|
|
|
ATermMap args;
|
2003-10-31 17:09:31 +00:00
|
|
|
queryAllAttrs(arg, args);
|
2003-11-16 18:31:29 +00:00
|
|
|
for (ATermIterator i(args.keys()); i; ++i) {
|
|
|
|
Expr key = *i;
|
2003-11-03 20:30:40 +00:00
|
|
|
Expr cur = subs.get(key);
|
|
|
|
if (!cur)
|
2004-04-05 22:27:41 +00:00
|
|
|
throw Error(format("unexpected function argument `%1%'")
|
|
|
|
% aterm2String(key));
|
2003-11-03 20:30:40 +00:00
|
|
|
subs.set(key, args.get(key));
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that all arguments are defined. */
|
2003-11-16 18:31:29 +00:00
|
|
|
for (ATermIterator i(subs.keys()); i; ++i)
|
|
|
|
if (subs.get(*i) == undefined)
|
2004-04-05 22:27:41 +00:00
|
|
|
throw Error(format("required function argument `%1%' missing")
|
|
|
|
% aterm2String(*i));
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
return substitute(subs, body);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Transform a mutually recursive set into a non-recursive set. Each
|
|
|
|
attribute is transformed into an expression that has all references
|
|
|
|
to attributes substituted with selection expressions on the
|
2004-02-02 21:39:33 +00:00
|
|
|
original set. E.g., e = `rec {x = f x y; y = x;}' becomes `{x = f
|
|
|
|
(e.x) (e.y); y = e.x;}'. */
|
|
|
|
ATerm expandRec(ATerm e, ATermList rbnds, ATermList nrbnds)
|
2003-10-31 17:09:31 +00:00
|
|
|
{
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
2004-02-16 09:18:35 +00:00
|
|
|
ATerm name;
|
|
|
|
Expr e2;
|
2003-11-16 17:46:31 +00:00
|
|
|
|
2003-10-31 17:09:31 +00:00
|
|
|
/* Create the substitution list. */
|
2003-11-03 20:30:40 +00:00
|
|
|
ATermMap subs;
|
2004-02-02 21:39:33 +00:00
|
|
|
for (ATermIterator i(rbnds); i; ++i) {
|
2004-02-03 14:45:34 +00:00
|
|
|
if (!(atMatch(m, *i) >> "Bind" >> name >> e2))
|
2003-10-31 17:09:31 +00:00
|
|
|
abort(); /* can't happen */
|
2004-02-03 14:45:34 +00:00
|
|
|
subs.set(name, ATmake("Select(<term>, <term>)", e, name));
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
2004-02-16 09:18:35 +00:00
|
|
|
for (ATermIterator i(nrbnds); i; ++i) {
|
|
|
|
if (!(atMatch(m, *i) >> "Bind" >> name >> e2))
|
|
|
|
abort(); /* can't happen */
|
|
|
|
subs.set(name, e2);
|
|
|
|
}
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
/* Create the non-recursive set. */
|
2003-11-03 20:30:40 +00:00
|
|
|
ATermMap as;
|
2004-02-02 21:39:33 +00:00
|
|
|
for (ATermIterator i(rbnds); i; ++i) {
|
2004-04-05 22:27:41 +00:00
|
|
|
ATerm pos;
|
|
|
|
if (!(atMatch(m, *i) >> "Bind" >> name >> e2 >> pos))
|
2003-10-31 17:09:31 +00:00
|
|
|
abort(); /* can't happen */
|
2004-04-05 22:27:41 +00:00
|
|
|
as.set(name, ATmake("(<term>, <term>)", substitute(subs, e2), pos));
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
2004-02-02 21:39:33 +00:00
|
|
|
/* Copy the non-recursive bindings. !!! inefficient */
|
|
|
|
for (ATermIterator i(nrbnds); i; ++i) {
|
2004-04-05 22:27:41 +00:00
|
|
|
ATerm pos;
|
|
|
|
if (!(atMatch(m, *i) >> "Bind" >> name >> e2 >> pos))
|
2004-02-02 21:39:33 +00:00
|
|
|
abort(); /* can't happen */
|
2004-04-05 22:27:41 +00:00
|
|
|
as.set(name, ATmake("(<term>, <term>)", e2, pos));
|
2004-02-02 21:39:33 +00:00
|
|
|
}
|
|
|
|
|
2003-10-31 17:09:31 +00:00
|
|
|
return makeAttrs(as);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-04 16:49:51 +00:00
|
|
|
static Expr updateAttrs(Expr e1, Expr e2)
|
|
|
|
{
|
|
|
|
/* Note: e1 and e2 should be in normal form. */
|
|
|
|
|
|
|
|
ATermMap attrs;
|
2004-04-05 22:27:41 +00:00
|
|
|
queryAllAttrs(e1, attrs, true);
|
|
|
|
queryAllAttrs(e2, attrs, true);
|
2004-02-04 16:49:51 +00:00
|
|
|
|
|
|
|
return makeAttrs(attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-31 17:09:31 +00:00
|
|
|
string evalString(EvalState & state, Expr e)
|
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
|
|
|
string s;
|
|
|
|
if (!(atMatch(m, e) >> "Str" >> s))
|
2004-04-05 22:27:41 +00:00
|
|
|
throw Error("string expected");
|
2003-10-31 17:09:31 +00:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Path evalPath(EvalState & state, Expr e)
|
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
|
|
|
string s;
|
|
|
|
if (!(atMatch(m, e) >> "Path" >> s))
|
2004-04-05 22:27:41 +00:00
|
|
|
throw Error("path expected");
|
2003-10-31 17:09:31 +00:00
|
|
|
return s;
|
2003-10-30 16:48:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-01 19:15:08 +00:00
|
|
|
bool evalBool(EvalState & state, Expr e)
|
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
|
|
|
if (atMatch(m, e) >> "Bool" >> "True") return true;
|
|
|
|
else if (atMatch(m, e) >> "Bool" >> "False") return false;
|
2004-04-05 22:27:41 +00:00
|
|
|
else throw Error("boolean expected");
|
2003-11-01 19:15:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-30 16:48:26 +00:00
|
|
|
Expr evalExpr2(EvalState & state, Expr e)
|
|
|
|
{
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
2003-10-31 17:09:31 +00:00
|
|
|
Expr e1, e2, e3, e4;
|
2004-04-05 22:27:41 +00:00
|
|
|
ATerm name, pos;
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
/* Normal forms. */
|
2004-03-19 14:45:45 +00:00
|
|
|
string cons;
|
|
|
|
if (atMatch(m, e) >> cons &&
|
|
|
|
(cons == "Str" ||
|
|
|
|
cons == "Path" ||
|
2004-03-28 20:58:28 +00:00
|
|
|
cons == "SubPath" ||
|
2004-03-19 14:45:45 +00:00
|
|
|
cons == "Uri" ||
|
|
|
|
cons == "Null" ||
|
|
|
|
cons == "Int" ||
|
|
|
|
cons == "Bool" ||
|
|
|
|
cons == "Function" ||
|
2004-03-28 20:34:22 +00:00
|
|
|
cons == "Function1" ||
|
2004-03-19 14:45:45 +00:00
|
|
|
cons == "Attrs" ||
|
2004-08-04 10:59:20 +00:00
|
|
|
cons == "List" ||
|
|
|
|
cons == "PrimOp"))
|
2003-10-31 17:09:31 +00:00
|
|
|
return e;
|
|
|
|
|
* The recent change in nixpkgs of calling `stdenv.mkDerivation'
instead of `derivation' triggered a huge slowdown in the Nix
expression evaluator. Total execution time of `nix-env -qa' went up
by a factor of 60 or so.
This scalability problem was caused by expressions such as
(x: y: ... x ...) a b
where `a' is a large term (say, the one in
`all-packages-generic.nix'). Then the first beta-reduction would
produce
(y: ... a ...) b
by substituting `a' for `x'. The second beta-reduction would then
substitute `b' for `y' into the body `... a ...', which is a large
term due to `a', and thus causes a large traversal to be performed
by substitute() in the second reduction. This is however entirely
redundant, since `a' cannot contain free variables (since we never
substitute below a weak head normal form).
The solution is to wrap substituted terms into a `Closed'
constructor, i.e.,
subst(subs, Var(x)) = Closed(e) iff subs[x] = e
have substitution not descent into closed terms,
subst(subs, Closed(x)) = Closed(x)
and otherwise ignore them for evaluation,
eval(Closed(x)) = eval(x).
* Fix a typo that caused incorrect substitutions to be performed in
simple lambdas, e.g., `(x: x: x) a' would reduce to `(x: a)'.
2004-03-30 15:05:35 +00:00
|
|
|
/* The `Closed' constructor is just a way to prevent substitutions
|
|
|
|
into expressions not containing free variables. */
|
|
|
|
if (atMatch(m, e) >> "Closed" >> e1)
|
|
|
|
return evalExpr(state, e1);
|
|
|
|
|
2004-08-04 10:59:20 +00:00
|
|
|
/* Any encountered variables must be primops (since undefined
|
|
|
|
variables are detected after parsing). */
|
2004-02-04 16:03:29 +00:00
|
|
|
if (atMatch(m, e) >> "Var" >> name) {
|
2004-08-04 10:59:20 +00:00
|
|
|
ATerm primOp = state.primOps.get(name);
|
|
|
|
if (!primOp)
|
|
|
|
throw Error(format("impossible: undefined variable `%1%'") % name);
|
|
|
|
int arity;
|
|
|
|
ATerm fun;
|
|
|
|
if (!(atMatch(m, primOp) >> "" >> arity >> fun)) abort();
|
|
|
|
if (arity == 0)
|
|
|
|
return ((PrimOp) ATgetBlobData((ATermBlob) fun))
|
|
|
|
(state, ATermVector());
|
2004-02-04 16:03:29 +00:00
|
|
|
else
|
2004-08-04 10:59:20 +00:00
|
|
|
return ATmake("PrimOp(<int>, <term>, <term>)",
|
|
|
|
arity, fun, ATempty);
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Function application. */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Call" >> e1 >> e2) {
|
|
|
|
|
|
|
|
ATermList formals;
|
2004-04-05 22:27:41 +00:00
|
|
|
ATerm pos;
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
/* Evaluate the left-hand side. */
|
|
|
|
e1 = evalExpr(state, e1);
|
|
|
|
|
|
|
|
/* Is it a primop or a function? */
|
2004-08-04 10:59:20 +00:00
|
|
|
int arity;
|
|
|
|
ATerm fun;
|
|
|
|
ATermList args;
|
|
|
|
if (atMatch(m, e1) >> "PrimOp" >> arity >> fun >> args) {
|
|
|
|
args = ATinsert(args, e2);
|
|
|
|
if (ATgetLength(args) == arity) {
|
|
|
|
/* Put the arguments in a vector in reverse (i.e.,
|
|
|
|
actual) order. */
|
|
|
|
ATermVector args2(arity);
|
|
|
|
for (ATermIterator i(args); i; ++i)
|
|
|
|
args2[--arity] = *i;
|
|
|
|
return ((PrimOp) ATgetBlobData((ATermBlob) fun))
|
|
|
|
(state, args2);
|
|
|
|
} else
|
|
|
|
/* Need more arguments, so propagate the primop. */
|
2004-08-04 11:27:53 +00:00
|
|
|
return ATmake("PrimOp(<int>, <term>, <term>)",
|
2004-08-04 10:59:20 +00:00
|
|
|
arity, fun, args);
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
2004-04-05 22:27:41 +00:00
|
|
|
else if (atMatch(m, e1) >> "Function" >> formals >> e4 >> pos) {
|
|
|
|
e2 = evalExpr(state, e2);
|
|
|
|
try {
|
|
|
|
return evalExpr(state, substArgs(e4, formals, e2));
|
|
|
|
} catch (Error & e) {
|
|
|
|
throw Error(format("while evaluating function at %1%:\n%2%")
|
|
|
|
% showPos(pos) % e.msg());
|
|
|
|
}
|
|
|
|
}
|
2003-10-31 17:09:31 +00:00
|
|
|
|
2004-04-05 22:27:41 +00:00
|
|
|
else if (atMatch(m, e1) >> "Function1" >> name >> e4 >> pos) {
|
|
|
|
try {
|
|
|
|
ATermMap subs;
|
|
|
|
subs.set(name, e2);
|
|
|
|
return evalExpr(state, substitute(subs, e4));
|
|
|
|
} catch (Error & e) {
|
|
|
|
throw Error(format("while evaluating function at %1%:\n%2%")
|
|
|
|
% showPos(pos) % e.msg());
|
|
|
|
}
|
2004-03-28 20:34:22 +00:00
|
|
|
}
|
|
|
|
|
2004-04-05 22:27:41 +00:00
|
|
|
else throw Error("function or primop expected in function call");
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Attribute selection. */
|
2004-02-04 16:03:29 +00:00
|
|
|
string s1;
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Select" >> e1 >> s1) {
|
2004-04-05 22:27:41 +00:00
|
|
|
ATerm pos;
|
|
|
|
Expr a = queryAttr(evalExpr(state, e1), s1, pos);
|
|
|
|
if (!a) throw Error(format("attribute `%1%' missing") % s1);
|
|
|
|
try {
|
|
|
|
return evalExpr(state, a);
|
|
|
|
} catch (Error & e) {
|
|
|
|
throw Error(format("while evaluating attribute `%1%' at %2%:\n%3%")
|
|
|
|
% s1 % showPos(pos) % e.msg());
|
|
|
|
}
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Mutually recursive sets. */
|
2004-02-02 21:39:33 +00:00
|
|
|
ATermList rbnds, nrbnds;
|
|
|
|
if (atMatch(m, e) >> "Rec" >> rbnds >> nrbnds)
|
|
|
|
return expandRec(e, rbnds, nrbnds);
|
2003-11-01 19:10:41 +00:00
|
|
|
|
2003-11-01 19:15:08 +00:00
|
|
|
/* Conditionals. */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "If" >> e1 >> e2 >> e3) {
|
2003-11-01 19:15:08 +00:00
|
|
|
if (evalBool(state, e1))
|
|
|
|
return evalExpr(state, e2);
|
|
|
|
else
|
|
|
|
return evalExpr(state, e3);
|
|
|
|
}
|
|
|
|
|
2003-11-05 16:27:40 +00:00
|
|
|
/* Assertions. */
|
2004-04-05 22:27:41 +00:00
|
|
|
if (atMatch(m, e) >> "Assert" >> e1 >> e2 >> pos) {
|
|
|
|
if (!evalBool(state, e1))
|
|
|
|
throw Error(format("assertion failed at %1%") % showPos(pos));
|
2003-11-05 16:27:40 +00:00
|
|
|
return evalExpr(state, e2);
|
2003-11-01 19:15:08 +00:00
|
|
|
}
|
|
|
|
|
2003-11-05 16:27:40 +00:00
|
|
|
/* Generic equality. */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "OpEq" >> e1 >> e2)
|
2003-11-05 16:27:40 +00:00
|
|
|
return makeBool(evalExpr(state, e1) == evalExpr(state, e2));
|
|
|
|
|
|
|
|
/* Generic inequality. */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "OpNEq" >> e1 >> e2)
|
2003-11-05 16:27:40 +00:00
|
|
|
return makeBool(evalExpr(state, e1) != evalExpr(state, e2));
|
|
|
|
|
|
|
|
/* Negation. */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "OpNot" >> e1)
|
2003-11-05 16:27:40 +00:00
|
|
|
return makeBool(!evalBool(state, e1));
|
|
|
|
|
|
|
|
/* Implication. */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "OpImpl" >> e1 >> e2)
|
2003-11-05 16:27:40 +00:00
|
|
|
return makeBool(!evalBool(state, e1) || evalBool(state, e2));
|
|
|
|
|
|
|
|
/* Conjunction (logical AND). */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "OpAnd" >> e1 >> e2)
|
2003-11-05 16:27:40 +00:00
|
|
|
return makeBool(evalBool(state, e1) && evalBool(state, e2));
|
|
|
|
|
|
|
|
/* Disjunction (logical OR). */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "OpOr" >> e1 >> e2)
|
2003-11-05 16:27:40 +00:00
|
|
|
return makeBool(evalBool(state, e1) || evalBool(state, e2));
|
|
|
|
|
2004-03-28 21:15:01 +00:00
|
|
|
/* Attribute set update (//). */
|
2004-02-04 16:49:51 +00:00
|
|
|
if (atMatch(m, e) >> "OpUpdate" >> e1 >> e2)
|
|
|
|
return updateAttrs(evalExpr(state, e1), evalExpr(state, e2));
|
|
|
|
|
2004-03-28 21:15:01 +00:00
|
|
|
/* Attribute existence test (?). */
|
|
|
|
if (atMatch(m, e) >> "OpHasAttr" >> e1 >> name) {
|
|
|
|
ATermMap attrs;
|
|
|
|
queryAllAttrs(evalExpr(state, e1), attrs);
|
|
|
|
return makeBool(attrs.get(name) != 0);
|
|
|
|
}
|
|
|
|
|
2003-10-31 17:09:31 +00:00
|
|
|
/* Barf. */
|
|
|
|
throw badTerm("invalid expression", e);
|
2003-10-30 16:48:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Expr evalExpr(EvalState & state, Expr e)
|
|
|
|
{
|
2004-01-15 20:23:55 +00:00
|
|
|
checkInterrupt();
|
|
|
|
|
2003-11-09 10:35:45 +00:00
|
|
|
startNest(nest, lvlVomit,
|
2003-11-16 17:46:31 +00:00
|
|
|
format("evaluating expression: %1%") % e);
|
2003-10-30 16:48:26 +00:00
|
|
|
|
2003-10-31 17:09:31 +00:00
|
|
|
state.nrEvaluated++;
|
|
|
|
|
2003-10-30 16:48:26 +00:00
|
|
|
/* Consult the memo table to quickly get the normal form of
|
|
|
|
previously evaluated expressions. */
|
2003-11-03 20:30:40 +00:00
|
|
|
Expr nf = state.normalForms.get(e);
|
|
|
|
if (nf) {
|
|
|
|
if (nf == state.blackHole)
|
2004-04-05 22:27:41 +00:00
|
|
|
throw Error("infinite recursion encountered");
|
2003-10-31 17:09:31 +00:00
|
|
|
state.nrCached++;
|
2003-11-03 20:30:40 +00:00
|
|
|
return nf;
|
2003-10-30 16:48:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Otherwise, evaluate and memoize. */
|
2003-11-03 20:30:40 +00:00
|
|
|
state.normalForms.set(e, state.blackHole);
|
|
|
|
nf = evalExpr2(state, e);
|
|
|
|
state.normalForms.set(e, nf);
|
2003-10-30 16:48:26 +00:00
|
|
|
return nf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Expr evalFile(EvalState & state, const Path & path)
|
|
|
|
{
|
2003-11-09 10:35:45 +00:00
|
|
|
startNest(nest, lvlTalkative, format("evaluating file `%1%'") % path);
|
2004-02-04 16:03:29 +00:00
|
|
|
Expr e = parseExprFromFile(state, path);
|
2004-04-05 22:27:41 +00:00
|
|
|
try {
|
|
|
|
return evalExpr(state, e);
|
|
|
|
} catch (Error & e) {
|
|
|
|
throw Error(format("while evaluating file `%1%':\n%2%")
|
|
|
|
% path % e.msg());
|
|
|
|
}
|
2003-10-30 16:48:26 +00:00
|
|
|
}
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
void printEvalStats(EvalState & state)
|
|
|
|
{
|
|
|
|
debug(format("evaluated %1% expressions, %2% cache hits, %3%%% efficiency")
|
|
|
|
% state.nrEvaluated % state.nrCached
|
|
|
|
% ((float) state.nrCached / (float) state.nrEvaluated * 100));
|
|
|
|
}
|