2003-10-30 16:48:26 +00:00
|
|
|
#include "eval.hh"
|
|
|
|
#include "parser.hh"
|
2003-10-31 17:09:31 +00:00
|
|
|
#include "primops.hh"
|
2003-10-30 16:48:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
EvalState::EvalState()
|
2003-11-03 20:30:40 +00:00
|
|
|
: normalForms(32768, 75)
|
2003-10-30 16:48:26 +00:00
|
|
|
{
|
|
|
|
blackHole = ATmake("BlackHole()");
|
|
|
|
if (!blackHole) throw Error("cannot build black hole");
|
2003-10-31 17:09:31 +00:00
|
|
|
nrEvaluated = nrCached = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 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)
|
2003-11-05 15:34:12 +00:00
|
|
|
throw badTerm(format("function has no formal argument `%1%'")
|
2003-11-03 20:30:40 +00:00
|
|
|
% aterm2String(key), arg);
|
|
|
|
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)
|
2003-11-03 20:30:40 +00:00
|
|
|
throw badTerm(format("formal argument `%1%' missing")
|
2003-11-16 18:31:29 +00:00
|
|
|
% aterm2String(*i), arg);
|
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
|
|
|
|
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 bnds)
|
|
|
|
{
|
2003-11-16 17:46:31 +00:00
|
|
|
ATMatcher m;
|
|
|
|
|
2003-10-31 17:09:31 +00:00
|
|
|
/* Create the substitution list. */
|
2003-11-03 20:30:40 +00:00
|
|
|
ATermMap subs;
|
2003-11-16 18:31:29 +00:00
|
|
|
for (ATermIterator i(bnds); i; ++i) {
|
2003-11-16 17:46:31 +00:00
|
|
|
string s;
|
2003-10-31 17:09:31 +00:00
|
|
|
Expr e2;
|
2003-11-16 18:31:29 +00:00
|
|
|
if (!(atMatch(m, *i) >> "Bind" >> s >> e2))
|
2003-10-31 17:09:31 +00:00
|
|
|
abort(); /* can't happen */
|
2003-11-16 17:46:31 +00:00
|
|
|
subs.set(s, ATmake("Select(<term>, <str>)", e, s.c_str()));
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Create the non-recursive set. */
|
2003-11-03 20:30:40 +00:00
|
|
|
ATermMap as;
|
2003-11-16 18:31:29 +00:00
|
|
|
for (ATermIterator i(bnds); i; ++i) {
|
2003-11-16 17:46:31 +00:00
|
|
|
string s;
|
2003-10-31 17:09:31 +00:00
|
|
|
Expr e2;
|
2003-11-16 18:31:29 +00:00
|
|
|
if (!(atMatch(m, *i) >> "Bind" >> s >> e2))
|
2003-10-31 17:09:31 +00:00
|
|
|
abort(); /* can't happen */
|
2003-11-03 20:30:40 +00:00
|
|
|
as.set(s, substitute(subs, e2));
|
2003-10-31 17:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return makeAttrs(as);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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))
|
2003-10-31 17:09:31 +00:00
|
|
|
throw badTerm("string expected", e);
|
|
|
|
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))
|
2003-10-31 17:09:31 +00:00
|
|
|
throw badTerm("path expected", e);
|
|
|
|
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;
|
2003-11-01 19:15:08 +00:00
|
|
|
else throw badTerm("expecting a boolean", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
2003-11-16 17:46:31 +00:00
|
|
|
string s1;
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
/* Normal forms. */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Str" ||
|
|
|
|
atMatch(m, e) >> "Path" ||
|
|
|
|
atMatch(m, e) >> "Uri" ||
|
2003-11-25 12:05:48 +00:00
|
|
|
atMatch(m, e) >> "Int" ||
|
2003-11-16 17:46:31 +00:00
|
|
|
atMatch(m, e) >> "Bool" ||
|
|
|
|
atMatch(m, e) >> "Function" ||
|
|
|
|
atMatch(m, e) >> "Attrs" ||
|
|
|
|
atMatch(m, e) >> "List")
|
2003-10-31 17:09:31 +00:00
|
|
|
return e;
|
|
|
|
|
|
|
|
/* Any encountered variables must be undeclared or primops. */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Var" >> s1) {
|
|
|
|
if (s1 == "null") return primNull(state);
|
2003-10-31 17:09:31 +00:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Function application. */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Call" >> e1 >> e2) {
|
|
|
|
|
|
|
|
ATermList formals;
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
/* Evaluate the left-hand side. */
|
|
|
|
e1 = evalExpr(state, e1);
|
|
|
|
|
|
|
|
/* Is it a primop or a function? */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e1) >> "Var" >> s1) {
|
|
|
|
if (s1 == "import") return primImport(state, e2);
|
|
|
|
if (s1 == "derivation") return primDerivation(state, e2);
|
|
|
|
if (s1 == "toString") return primToString(state, e2);
|
|
|
|
if (s1 == "baseNameOf") return primBaseNameOf(state, e2);
|
|
|
|
if (s1 == "isNull") return primIsNull(state, e2);
|
2003-10-31 17:09:31 +00:00
|
|
|
else throw badTerm("undefined variable/primop", e1);
|
|
|
|
}
|
|
|
|
|
2003-11-16 17:46:31 +00:00
|
|
|
else if (atMatch(m, e1) >> "Function" >> formals >> e4)
|
2003-10-31 17:09:31 +00:00
|
|
|
return evalExpr(state,
|
2003-11-16 17:46:31 +00:00
|
|
|
substArgs(e4, formals, evalExpr(state, e2)));
|
2003-10-31 17:09:31 +00:00
|
|
|
|
|
|
|
else throw badTerm("expecting a function or primop", e1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Attribute selection. */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Select" >> e1 >> s1) {
|
|
|
|
Expr a = queryAttr(evalExpr(state, e1), s1);
|
|
|
|
if (!a) throw badTerm(format("missing attribute `%1%'") % s1, e);
|
2003-10-31 17:09:31 +00:00
|
|
|
return evalExpr(state, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mutually recursive sets. */
|
|
|
|
ATermList bnds;
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Rec" >> bnds)
|
|
|
|
return expandRec(e, bnds);
|
2003-10-31 17:09:31 +00:00
|
|
|
|
2003-11-01 19:10:41 +00:00
|
|
|
/* Let expressions `let {..., body = ...}' are just desugared
|
|
|
|
into `(rec {..., body = ...}).body'. */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "LetRec" >> bnds)
|
|
|
|
return evalExpr(state, ATmake("Select(Rec(<term>), \"body\")", bnds));
|
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. */
|
2003-11-16 17:46:31 +00:00
|
|
|
if (atMatch(m, e) >> "Assert" >> e1 >> e2) {
|
2003-11-05 16:27:40 +00:00
|
|
|
if (!evalBool(state, e1)) throw badTerm("guard failed", e);
|
|
|
|
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));
|
|
|
|
|
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)
|
|
|
|
{
|
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)
|
2003-10-30 16:48:26 +00:00
|
|
|
throw badTerm("infinite recursion", e);
|
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);
|
2003-10-30 16:48:26 +00:00
|
|
|
Expr e = parseExprFromFile(path);
|
|
|
|
return evalExpr(state, e);
|
|
|
|
}
|
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));
|
|
|
|
}
|