2003-10-30 16:48:26 +00:00
|
|
|
#include "eval.hh"
|
|
|
|
#include "expr.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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Expr getAttr(EvalState & state, Expr e, const string & name)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Substitute an argument set into the body of a function. */
|
|
|
|
static Expr substArgs(Expr body, ATermList formals, Expr arg)
|
|
|
|
{
|
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. */
|
|
|
|
while (!ATisEmpty(formals)) {
|
2003-11-03 20:30:40 +00:00
|
|
|
ATerm t = ATgetFirst(formals);
|
2003-11-05 15:34:12 +00:00
|
|
|
Expr name, def;
|
|
|
|
debug(printTerm(t));
|
|
|
|
if (ATmatch(t, "NoDefFormal(<term>)", &name))
|
|
|
|
subs.set(name, undefined);
|
|
|
|
else if (ATmatch(t, "DefFormal(<term>, <term>)", &name, &def))
|
|
|
|
subs.set(name, def);
|
|
|
|
else abort(); /* can't happen */
|
2003-10-31 17:09:31 +00:00
|
|
|
formals = ATgetNext(formals);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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-03 20:30:40 +00:00
|
|
|
for (ATermList keys = args.keys(); !ATisEmpty(keys);
|
|
|
|
keys = ATgetNext(keys))
|
|
|
|
{
|
|
|
|
Expr key = ATgetFirst(keys);
|
|
|
|
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-03 20:30:40 +00:00
|
|
|
for (ATermList keys = subs.keys(); !ATisEmpty(keys);
|
|
|
|
keys = ATgetNext(keys))
|
|
|
|
{
|
|
|
|
Expr key = ATgetFirst(keys);
|
|
|
|
if (subs.get(key) == undefined)
|
|
|
|
throw badTerm(format("formal argument `%1%' missing")
|
|
|
|
% aterm2String(key), 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)
|
|
|
|
{
|
|
|
|
/* Create the substitution list. */
|
2003-11-03 20:30:40 +00:00
|
|
|
ATermMap subs;
|
2003-10-31 17:09:31 +00:00
|
|
|
ATermList bs = bnds;
|
|
|
|
while (!ATisEmpty(bs)) {
|
|
|
|
char * s;
|
|
|
|
Expr e2;
|
|
|
|
if (!ATmatch(ATgetFirst(bs), "Bind(<str>, <term>)", &s, &e2))
|
|
|
|
abort(); /* can't happen */
|
2003-11-03 20:30:40 +00:00
|
|
|
subs.set(s, ATmake("Select(<term>, <str>)", e, s));
|
2003-10-31 17:09:31 +00:00
|
|
|
bs = ATgetNext(bs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create the non-recursive set. */
|
2003-11-03 20:30:40 +00:00
|
|
|
ATermMap as;
|
2003-10-31 17:09:31 +00:00
|
|
|
bs = bnds;
|
|
|
|
while (!ATisEmpty(bs)) {
|
|
|
|
char * s;
|
|
|
|
Expr e2;
|
|
|
|
if (!ATmatch(ATgetFirst(bs), "Bind(<str>, <term>)", &s, &e2))
|
|
|
|
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
|
|
|
bs = ATgetNext(bs);
|
|
|
|
}
|
|
|
|
|
|
|
|
return makeAttrs(as);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string evalString(EvalState & state, Expr e)
|
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
|
|
|
char * s;
|
|
|
|
if (!ATmatch(e, "Str(<str>)", &s))
|
|
|
|
throw badTerm("string expected", e);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Path evalPath(EvalState & state, Expr e)
|
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
|
|
|
char * s;
|
|
|
|
if (!ATmatch(e, "Path(<str>)", &s))
|
|
|
|
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-02 17:36:15 +00:00
|
|
|
if (ATmatch(e, "Bool(True)")) return true;
|
|
|
|
else if (ATmatch(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-10-31 17:09:31 +00:00
|
|
|
Expr e1, e2, e3, e4;
|
|
|
|
char * s1;
|
|
|
|
|
|
|
|
/* Normal forms. */
|
|
|
|
if (ATmatch(e, "Str(<str>)", &s1) ||
|
|
|
|
ATmatch(e, "Path(<str>)", &s1) ||
|
|
|
|
ATmatch(e, "Uri(<str>)", &s1) ||
|
2003-11-02 17:36:15 +00:00
|
|
|
ATmatch(e, "Bool(<term>)", &e1) ||
|
2003-10-31 17:09:31 +00:00
|
|
|
ATmatch(e, "Function([<list>], <term>)", &e1, &e2) ||
|
|
|
|
ATmatch(e, "Attrs([<list>])", &e1) ||
|
|
|
|
ATmatch(e, "List([<list>])", &e1))
|
|
|
|
return e;
|
|
|
|
|
|
|
|
/* Any encountered variables must be undeclared or primops. */
|
|
|
|
if (ATmatch(e, "Var(<str>)", &s1)) {
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Function application. */
|
|
|
|
if (ATmatch(e, "Call(<term>, <term>)", &e1, &e2)) {
|
|
|
|
|
|
|
|
/* Evaluate the left-hand side. */
|
|
|
|
e1 = evalExpr(state, e1);
|
|
|
|
|
|
|
|
/* Is it a primop or a function? */
|
|
|
|
if (ATmatch(e1, "Var(<str>)", &s1)) {
|
|
|
|
string primop(s1);
|
|
|
|
if (primop == "import") return primImport(state, e2);
|
|
|
|
if (primop == "derivation") return primDerivation(state, e2);
|
2003-11-02 16:31:35 +00:00
|
|
|
if (primop == "toString") return primToString(state, e2);
|
|
|
|
if (primop == "baseNameOf") return primBaseNameOf(state, e2);
|
2003-10-31 17:09:31 +00:00
|
|
|
else throw badTerm("undefined variable/primop", e1);
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (ATmatch(e1, "Function([<list>], <term>)", &e3, &e4)) {
|
|
|
|
return evalExpr(state,
|
|
|
|
substArgs(e4, (ATermList) e3, evalExpr(state, e2)));
|
|
|
|
}
|
|
|
|
|
|
|
|
else throw badTerm("expecting a function or primop", e1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Attribute selection. */
|
|
|
|
if (ATmatch(e, "Select(<term>, <str>)", &e1, &s1)) {
|
|
|
|
string name(s1);
|
|
|
|
Expr a = queryAttr(evalExpr(state, e1), name);
|
|
|
|
if (!a) throw badTerm(format("missing attribute `%1%'") % name, e);
|
|
|
|
return evalExpr(state, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Mutually recursive sets. */
|
|
|
|
ATermList bnds;
|
|
|
|
if (ATmatch(e, "Rec([<list>])", &bnds))
|
|
|
|
return expandRec(e, (ATermList) bnds);
|
|
|
|
|
2003-11-01 19:10:41 +00:00
|
|
|
/* Let expressions `let {..., body = ...}' are just desugared
|
|
|
|
into `(rec {..., body = ...}).body'. */
|
|
|
|
if (ATmatch(e, "LetRec(<term>)", &e1))
|
|
|
|
return evalExpr(state, ATmake("Select(Rec(<term>), \"body\")", e1));
|
|
|
|
|
2003-11-01 19:15:08 +00:00
|
|
|
/* Conditionals. */
|
|
|
|
if (ATmatch(e, "If(<term>, <term>, <term>)", &e1, &e2, &e3)) {
|
|
|
|
if (evalBool(state, e1))
|
|
|
|
return evalExpr(state, e2);
|
|
|
|
else
|
|
|
|
return evalExpr(state, e3);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Equality. Just strings for now. */
|
|
|
|
if (ATmatch(e, "OpEq(<term>, <term>)", &e1, &e2)) {
|
|
|
|
string s1 = evalString(state, e1);
|
|
|
|
string s2 = evalString(state, e2);
|
2003-11-02 17:36:15 +00:00
|
|
|
return s1 == s2 ? ATmake("Bool(True)") : ATmake("Bool(False)");
|
2003-11-01 19:15:08 +00:00
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
Nest nest(lvlVomit, format("evaluating expression: %1%") % printTerm(e));
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
Nest nest(lvlTalkative, format("evaluating file `%1%'") % path);
|
|
|
|
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));
|
|
|
|
}
|