2003-10-30 17:48:26 +01:00
|
|
|
#include "eval.hh"
|
|
|
|
#include "parser.hh"
|
2006-09-04 23:06:23 +02:00
|
|
|
#include "hash.hh"
|
|
|
|
#include "util.hh"
|
2006-11-30 18:43:04 +01:00
|
|
|
#include "store-api.hh"
|
2006-10-16 17:55:34 +02:00
|
|
|
#include "derivations.hh"
|
2004-10-29 13:22:49 +02:00
|
|
|
#include "nixexpr-ast.hh"
|
2004-02-04 17:03:29 +01:00
|
|
|
|
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
2003-10-30 17:48:26 +01:00
|
|
|
EvalState::EvalState()
|
2006-05-04 14:21:08 +02:00
|
|
|
: normalForms(32768), primOps(128)
|
2003-10-30 17:48:26 +01:00
|
|
|
{
|
2003-10-31 18:09:31 +01:00
|
|
|
nrEvaluated = nrCached = 0;
|
2004-02-04 17:03:29 +01:00
|
|
|
|
2004-10-29 13:22:49 +02:00
|
|
|
initNixExprHelpers();
|
2004-10-27 00:54:26 +02:00
|
|
|
|
2004-08-04 12:59:20 +02:00
|
|
|
addPrimOps();
|
2004-02-04 17:03:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-04 12:59:20 +02:00
|
|
|
void EvalState::addPrimOp(const string & name,
|
|
|
|
unsigned int arity, PrimOp primOp)
|
2004-02-04 17:03:29 +01:00
|
|
|
{
|
2006-05-04 14:21:08 +02:00
|
|
|
primOps.set(toATerm(name), makePrimOpDef(arity, ATmakeBlob(0, (void *) primOp)));
|
2003-10-31 18:09:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Substitute an argument set into the body of a function. */
|
2006-07-24 18:35:34 +02:00
|
|
|
static Expr substArgs(EvalState & state,
|
|
|
|
Expr body, ATermList formals, Expr arg)
|
2003-10-31 18:09:31 +01:00
|
|
|
{
|
2006-05-08 14:52:47 +02:00
|
|
|
unsigned int nrFormals = ATgetLength(formals);
|
|
|
|
ATermMap subs(nrFormals);
|
2003-10-31 18:09:31 +01:00
|
|
|
|
2006-05-08 14:52:47 +02:00
|
|
|
/* Get the actual arguments and put them in the substitution. */
|
|
|
|
ATermMap args(128); /* !!! fix */
|
|
|
|
queryAllAttrs(arg, args);
|
|
|
|
for (ATermMap::const_iterator i = args.begin(); i != args.end(); ++i)
|
|
|
|
subs.set(i->key, i->value);
|
2006-05-02 15:39:55 +02:00
|
|
|
|
2003-10-31 18:09:31 +01:00
|
|
|
/* Get the formal arguments. */
|
2006-05-08 14:52:47 +02:00
|
|
|
ATermVector defsUsed;
|
|
|
|
ATermList recAttrs = ATempty;
|
2003-11-16 19:31:29 +01:00
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
2006-07-24 18:35:34 +02:00
|
|
|
Expr name, def;
|
|
|
|
ValidValues valids2;
|
|
|
|
DefaultValue def2;
|
|
|
|
if (!matchFormal(*i, name, valids2, def2)) abort(); /* can't happen */
|
|
|
|
|
|
|
|
Expr value = subs[name];
|
|
|
|
|
|
|
|
if (value == 0) {
|
|
|
|
if (!matchDefaultValue(def2, def)) def = 0;
|
2006-07-19 17:36:15 +02:00
|
|
|
if (def == 0) throw TypeError(format("the argument named `%1%' required by the function is missing")
|
2006-05-08 14:52:47 +02:00
|
|
|
% aterm2String(name));
|
2006-07-24 18:35:34 +02:00
|
|
|
value = def;
|
2006-05-08 14:52:47 +02:00
|
|
|
defsUsed.push_back(name);
|
|
|
|
recAttrs = ATinsert(recAttrs, makeBind(name, def, makeNoPos()));
|
|
|
|
}
|
2006-07-24 18:35:34 +02:00
|
|
|
|
|
|
|
ATermList valids;
|
|
|
|
if (matchValidValues(valids2, valids)) {
|
2006-07-24 18:49:28 +02:00
|
|
|
value = evalExpr(state, value);
|
2006-07-24 18:35:34 +02:00
|
|
|
bool found = false;
|
|
|
|
for (ATermIterator j(valids); j; ++j) {
|
|
|
|
Expr v = evalExpr(state, *j);
|
|
|
|
if (value == v) {
|
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found) throw TypeError(format("the argument named `%1%' has an illegal value")
|
|
|
|
% aterm2String(name));
|
|
|
|
}
|
2003-10-31 18:09:31 +01:00
|
|
|
}
|
|
|
|
|
2006-05-08 14:52:47 +02:00
|
|
|
/* Make a recursive attribute set out of the (argument-name,
|
|
|
|
value) tuples. This is so that we can support default
|
|
|
|
parameters that refer to each other, e.g. ({x, y ? x + x}: y)
|
|
|
|
{x = "foo";} evaluates to "foofoo". */
|
|
|
|
if (defsUsed.size() != 0) {
|
|
|
|
for (ATermMap::const_iterator i = args.begin(); i != args.end(); ++i)
|
|
|
|
recAttrs = ATinsert(recAttrs, makeBind(i->key, i->value, makeNoPos()));
|
|
|
|
Expr rec = makeRec(recAttrs, ATempty);
|
|
|
|
for (ATermVector::iterator i = defsUsed.begin(); i != defsUsed.end(); ++i)
|
|
|
|
subs.set(*i, makeSelect(rec, *i));
|
2003-10-31 18:09:31 +01:00
|
|
|
}
|
|
|
|
|
2006-05-08 14:52:47 +02:00
|
|
|
if (subs.size() != nrFormals) {
|
|
|
|
/* One or more actual arguments were not declared as formal
|
|
|
|
arguments. Find out which. */
|
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
2006-07-24 17:16:03 +02:00
|
|
|
Expr name; ATerm d1, d2;
|
2006-08-04 19:07:13 +02:00
|
|
|
if (!matchFormal(*i, name, d1, d2)) abort();
|
2006-05-08 14:52:47 +02:00
|
|
|
subs.remove(name);
|
|
|
|
}
|
2006-07-19 17:36:15 +02:00
|
|
|
throw TypeError(format("the function does not expect an argument named `%1%'")
|
2006-05-08 14:52:47 +02:00
|
|
|
% aterm2String(subs.begin()->key));
|
|
|
|
}
|
|
|
|
|
2006-05-02 23:39:02 +02:00
|
|
|
return substitute(Substitution(0, &subs), body);
|
2003-10-31 18:09:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 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 22:39:33 +01: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 18:09:31 +01:00
|
|
|
{
|
2004-02-16 10:18:35 +01:00
|
|
|
ATerm name;
|
|
|
|
Expr e2;
|
2004-10-27 00:54:26 +02:00
|
|
|
Pos pos;
|
2003-11-16 18:46:31 +01:00
|
|
|
|
2003-10-31 18:09:31 +01:00
|
|
|
/* Create the substitution list. */
|
2006-05-04 14:21:08 +02:00
|
|
|
ATermMap subs(ATgetLength(rbnds) + ATgetLength(nrbnds));
|
2004-02-02 22:39:33 +01:00
|
|
|
for (ATermIterator i(rbnds); i; ++i) {
|
2004-10-27 00:54:26 +02:00
|
|
|
if (!matchBind(*i, name, e2, pos)) abort(); /* can't happen */
|
|
|
|
subs.set(name, makeSelect(e, name));
|
2003-10-31 18:09:31 +01:00
|
|
|
}
|
2004-02-16 10:18:35 +01:00
|
|
|
for (ATermIterator i(nrbnds); i; ++i) {
|
2004-10-27 00:54:26 +02:00
|
|
|
if (!matchBind(*i, name, e2, pos)) abort(); /* can't happen */
|
2004-02-16 10:18:35 +01:00
|
|
|
subs.set(name, e2);
|
|
|
|
}
|
2003-10-31 18:09:31 +01:00
|
|
|
|
2006-05-02 23:39:02 +02:00
|
|
|
Substitution subs_(0, &subs);
|
|
|
|
|
2003-10-31 18:09:31 +01:00
|
|
|
/* Create the non-recursive set. */
|
2006-05-04 14:21:08 +02:00
|
|
|
ATermMap as(ATgetLength(rbnds) + ATgetLength(nrbnds));
|
2004-02-02 22:39:33 +01:00
|
|
|
for (ATermIterator i(rbnds); i; ++i) {
|
2004-10-27 00:54:26 +02:00
|
|
|
if (!matchBind(*i, name, e2, pos)) abort(); /* can't happen */
|
2006-05-02 23:39:02 +02:00
|
|
|
as.set(name, makeAttrRHS(substitute(subs_, e2), pos));
|
2003-10-31 18:09:31 +01:00
|
|
|
}
|
|
|
|
|
2004-02-02 22:39:33 +01:00
|
|
|
/* Copy the non-recursive bindings. !!! inefficient */
|
|
|
|
for (ATermIterator i(nrbnds); i; ++i) {
|
2004-10-27 00:54:26 +02:00
|
|
|
if (!matchBind(*i, name, e2, pos)) abort(); /* can't happen */
|
|
|
|
as.set(name, makeAttrRHS(e2, pos));
|
2004-02-02 22:39:33 +01:00
|
|
|
}
|
|
|
|
|
2003-10-31 18:09:31 +01:00
|
|
|
return makeAttrs(as);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-04 17:49:51 +01:00
|
|
|
static Expr updateAttrs(Expr e1, Expr e2)
|
|
|
|
{
|
|
|
|
/* Note: e1 and e2 should be in normal form. */
|
|
|
|
|
2006-05-04 14:21:08 +02:00
|
|
|
ATermMap attrs(128); /* !!! */
|
2004-04-06 00:27:41 +02:00
|
|
|
queryAllAttrs(e1, attrs, true);
|
|
|
|
queryAllAttrs(e2, attrs, true);
|
2004-02-04 17:49:51 +01:00
|
|
|
|
|
|
|
return makeAttrs(attrs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
string evalString(EvalState & state, Expr e, PathSet & context)
|
2003-10-31 18:09:31 +01:00
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
2006-10-16 17:55:34 +02:00
|
|
|
string s;
|
|
|
|
if (!matchStr(e, s, context))
|
2006-07-19 17:36:15 +02:00
|
|
|
throw TypeError(format("value is %1% while a string was expected") % showType(e));
|
2006-10-16 17:55:34 +02:00
|
|
|
return s;
|
2003-10-31 18:09:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
string evalStringNoCtx(EvalState & state, Expr e)
|
2003-10-31 18:09:31 +01:00
|
|
|
{
|
2006-10-16 17:55:34 +02:00
|
|
|
PathSet context;
|
|
|
|
string s = evalString(state, e, context);
|
|
|
|
if (!context.empty())
|
|
|
|
throw EvalError(format("the string `%1%' is not allowed to refer to a store path (such as `%2%')")
|
|
|
|
% s % *(context.begin()));
|
|
|
|
return s;
|
2003-10-30 17:48:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-22 17:29:21 +02:00
|
|
|
int evalInt(EvalState & state, Expr e)
|
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
|
|
|
int i;
|
|
|
|
if (!matchInt(e, i))
|
|
|
|
throw TypeError(format("value is %1% while an integer was expected") % showType(e));
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-01 20:15:08 +01:00
|
|
|
bool evalBool(EvalState & state, Expr e)
|
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
2004-10-27 00:54:26 +02:00
|
|
|
if (e == eTrue) return true;
|
|
|
|
else if (e == eFalse) return false;
|
2006-07-19 17:36:15 +02:00
|
|
|
else throw TypeError(format("value is %1% while a boolean was expected") % showType(e));
|
2003-11-01 20:15:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-25 17:05:34 +02:00
|
|
|
ATermList evalList(EvalState & state, Expr e)
|
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
|
|
|
ATermList list;
|
2006-07-19 17:36:15 +02:00
|
|
|
if (!matchList(e, list))
|
|
|
|
throw TypeError(format("value is %1% while a list was expected") % showType(e));
|
2005-07-25 17:05:34 +02:00
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
static void flattenList(EvalState & state, Expr e, ATermList & result)
|
|
|
|
{
|
|
|
|
ATermList es;
|
|
|
|
e = evalExpr(state, e);
|
|
|
|
if (matchList(e, es))
|
|
|
|
for (ATermIterator i(es); i; ++i)
|
|
|
|
flattenList(state, *i, result);
|
|
|
|
else
|
|
|
|
result = ATinsert(result, e);
|
|
|
|
}
|
2006-05-01 11:56:56 +02:00
|
|
|
|
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
ATermList flattenList(EvalState & state, Expr e)
|
|
|
|
{
|
|
|
|
ATermList result = ATempty;
|
|
|
|
flattenList(state, e, result);
|
|
|
|
return ATreverse(result);
|
|
|
|
}
|
2006-05-01 11:56:56 +02:00
|
|
|
|
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
string coerceToString(EvalState & state, Expr e, PathSet & context,
|
|
|
|
bool coerceMore, bool copyToStore)
|
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
2006-05-01 11:56:56 +02:00
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
string s;
|
2006-05-01 11:56:56 +02:00
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
if (matchStr(e, s, context)) return s;
|
2006-05-01 11:56:56 +02:00
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
ATerm s2;
|
|
|
|
if (matchPath(e, s2)) {
|
|
|
|
Path path(canonPath(aterm2String(s2)));
|
2006-05-01 11:56:56 +02:00
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
if (!copyToStore) return path;
|
|
|
|
|
|
|
|
if (isDerivation(path))
|
|
|
|
throw EvalError(format("file names are not allowed to end in `%1%'")
|
|
|
|
% drvExtension);
|
|
|
|
|
|
|
|
Path dstPath;
|
|
|
|
if (state.srcToStore[path] != "")
|
|
|
|
dstPath = state.srcToStore[path];
|
|
|
|
else {
|
2006-11-30 18:43:04 +01:00
|
|
|
dstPath = store->addToStore(path);
|
2006-10-16 17:55:34 +02:00
|
|
|
state.srcToStore[path] = dstPath;
|
|
|
|
printMsg(lvlChatty, format("copied source `%1%' -> `%2%'")
|
|
|
|
% path % dstPath);
|
2006-10-03 16:55:54 +02:00
|
|
|
}
|
2006-05-01 11:56:56 +02:00
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
context.insert(dstPath);
|
|
|
|
return dstPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
ATermList es;
|
|
|
|
if (matchAttrs(e, es))
|
|
|
|
return coerceToString(state, makeSelect(e, toATerm("outPath")),
|
|
|
|
context, coerceMore, copyToStore);
|
|
|
|
|
|
|
|
if (coerceMore) {
|
|
|
|
|
|
|
|
/* Note that `false' is represented as an empty string for
|
|
|
|
shell scripting convenience, just like `null'. */
|
|
|
|
if (e == eTrue) return "1";
|
|
|
|
if (e == eFalse) return "";
|
|
|
|
int n;
|
|
|
|
if (matchInt(e, n)) return int2String(n);
|
|
|
|
if (matchNull(e)) return "";
|
|
|
|
|
|
|
|
if (matchList(e, es)) {
|
|
|
|
string result;
|
|
|
|
es = flattenList(state, e);
|
|
|
|
bool first = true;
|
|
|
|
for (ATermIterator i(es); i; ++i) {
|
|
|
|
if (!first) result += " "; else first = false;
|
|
|
|
result += coerceToString(state, *i,
|
|
|
|
context, coerceMore, copyToStore);
|
|
|
|
}
|
|
|
|
return result;
|
2006-05-01 11:56:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-19 17:36:15 +02:00
|
|
|
throw TypeError(format("cannot coerce %1% to a string") % showType(e));
|
2006-05-01 11:56:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
/* Common implementation of `+', ConcatStrings and `~'. */
|
2006-10-17 12:57:25 +02:00
|
|
|
static ATerm concatStrings(EvalState & state, ATermVector & args,
|
2006-10-16 17:55:34 +02:00
|
|
|
string separator = "")
|
2006-05-01 11:56:56 +02:00
|
|
|
{
|
2006-10-17 12:57:25 +02:00
|
|
|
if (args.empty()) return makeStr("", PathSet());
|
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
PathSet context;
|
2006-09-04 23:06:23 +02:00
|
|
|
std::ostringstream s;
|
2006-05-01 11:56:56 +02:00
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
/* If the first element is a path, then the result will also be a
|
|
|
|
path, we don't copy anything (yet - that's done later, since
|
|
|
|
paths are copied when they are used in a derivation), and none
|
|
|
|
of the strings are allowed to have contexts. */
|
|
|
|
ATerm dummy;
|
2006-10-17 12:57:25 +02:00
|
|
|
args.front() = evalExpr(state, args.front());
|
|
|
|
bool isPath = matchPath(args.front(), dummy);
|
2006-10-10 23:23:35 +02:00
|
|
|
|
2006-05-01 11:56:56 +02:00
|
|
|
for (ATermVector::const_iterator i = args.begin(); i != args.end(); ++i) {
|
2006-10-16 17:55:34 +02:00
|
|
|
if (i != args.begin()) s << separator;
|
|
|
|
s << coerceToString(state, *i, context, false, !isPath);
|
2006-05-01 11:56:56 +02:00
|
|
|
}
|
|
|
|
|
2006-10-16 17:55:34 +02:00
|
|
|
if (isPath && !context.empty())
|
|
|
|
throw EvalError(format("a string that refers to a store path cannot be appended to a path, in `%1%'")
|
|
|
|
% s.str());
|
|
|
|
|
|
|
|
return isPath
|
|
|
|
? makePath(toATerm(s.str()))
|
|
|
|
: makeStr(s.str(), context);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Path coerceToPath(EvalState & state, Expr e, PathSet & context)
|
|
|
|
{
|
|
|
|
string path = coerceToString(state, e, context, false, false);
|
|
|
|
if (path == "" || path[0] != '/')
|
|
|
|
throw EvalError(format("string `%1%' doesn't represent an absolute path") % path);
|
|
|
|
return path;
|
2006-05-01 11:56:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-28 18:03:28 +02:00
|
|
|
Expr autoCallFunction(Expr e, const ATermMap & args)
|
2006-07-26 17:05:15 +02:00
|
|
|
{
|
|
|
|
ATermList formals;
|
|
|
|
ATerm body, pos;
|
2006-07-28 18:03:28 +02:00
|
|
|
|
2006-07-26 17:05:15 +02:00
|
|
|
if (matchFunction(e, formals, body, pos)) {
|
2006-07-28 18:03:28 +02:00
|
|
|
ATermMap actualArgs(128);
|
|
|
|
|
2006-07-26 17:05:15 +02:00
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
2006-07-28 18:03:28 +02:00
|
|
|
Expr name, def, value; ATerm values, def2;
|
2006-07-26 17:05:15 +02:00
|
|
|
if (!matchFormal(*i, name, values, def2)) abort();
|
2006-07-28 18:03:28 +02:00
|
|
|
if ((value = args.get(name)))
|
|
|
|
actualArgs.set(name, makeAttrRHS(value, makeNoPos()));
|
|
|
|
else if (!matchDefaultValue(def2, def))
|
2006-07-26 17:05:15 +02:00
|
|
|
throw TypeError(format("cannot auto-call a function that has an argument without a default value (`%1%')")
|
|
|
|
% aterm2String(name));
|
|
|
|
}
|
2006-07-28 18:03:28 +02:00
|
|
|
|
|
|
|
e = makeCall(e, makeAttrs(actualArgs));
|
2006-07-26 17:05:15 +02:00
|
|
|
}
|
2006-07-28 18:03:28 +02:00
|
|
|
|
2006-07-26 17:05:15 +02:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-30 17:48:26 +01:00
|
|
|
Expr evalExpr2(EvalState & state, Expr e)
|
|
|
|
{
|
2003-10-31 18:09:31 +01:00
|
|
|
Expr e1, e2, e3, e4;
|
2004-04-06 00:27:41 +02:00
|
|
|
ATerm name, pos;
|
2004-10-27 00:54:26 +02:00
|
|
|
AFun sym = ATgetAFun(e);
|
2003-10-31 18:09:31 +01:00
|
|
|
|
|
|
|
/* Normal forms. */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (sym == symStr ||
|
|
|
|
sym == symPath ||
|
|
|
|
sym == symNull ||
|
|
|
|
sym == symInt ||
|
|
|
|
sym == symBool ||
|
|
|
|
sym == symFunction ||
|
|
|
|
sym == symFunction1 ||
|
|
|
|
sym == symAttrs ||
|
|
|
|
sym == symList ||
|
2006-10-16 17:55:34 +02:00
|
|
|
sym == symPrimOp)
|
2003-10-31 18:09:31 +01:00
|
|
|
return e;
|
2004-10-27 00:54:26 +02:00
|
|
|
|
* 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 17:05:35 +02:00
|
|
|
/* The `Closed' constructor is just a way to prevent substitutions
|
|
|
|
into expressions not containing free variables. */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchClosed(e, e1))
|
* 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 17:05:35 +02:00
|
|
|
return evalExpr(state, e1);
|
|
|
|
|
2004-08-04 12:59:20 +02:00
|
|
|
/* Any encountered variables must be primops (since undefined
|
|
|
|
variables are detected after parsing). */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchVar(e, name)) {
|
2004-08-04 12:59:20 +02:00
|
|
|
ATerm primOp = state.primOps.get(name);
|
|
|
|
if (!primOp)
|
2006-07-19 17:36:15 +02:00
|
|
|
throw EvalError(format("impossible: undefined variable `%1%'") % aterm2String(name));
|
2004-08-04 12:59:20 +02:00
|
|
|
int arity;
|
2004-10-27 00:54:26 +02:00
|
|
|
ATermBlob fun;
|
|
|
|
if (!matchPrimOpDef(primOp, arity, fun)) abort();
|
2004-08-04 12:59:20 +02:00
|
|
|
if (arity == 0)
|
2006-10-16 17:55:34 +02:00
|
|
|
/* !!! backtrace for primop call */
|
2004-10-27 00:54:26 +02:00
|
|
|
return ((PrimOp) ATgetBlobData(fun)) (state, ATermVector());
|
2004-02-04 17:03:29 +01:00
|
|
|
else
|
2004-10-27 00:54:26 +02:00
|
|
|
return makePrimOp(arity, fun, ATempty);
|
2003-10-31 18:09:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Function application. */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchCall(e, e1, e2)) {
|
2003-11-16 18:46:31 +01:00
|
|
|
|
|
|
|
ATermList formals;
|
2004-04-06 00:27:41 +02:00
|
|
|
ATerm pos;
|
2003-10-31 18:09:31 +01:00
|
|
|
|
|
|
|
/* Evaluate the left-hand side. */
|
|
|
|
e1 = evalExpr(state, e1);
|
|
|
|
|
|
|
|
/* Is it a primop or a function? */
|
2004-08-04 12:59:20 +02:00
|
|
|
int arity;
|
2004-10-27 00:54:26 +02:00
|
|
|
ATermBlob fun;
|
2004-08-04 12:59:20 +02:00
|
|
|
ATermList args;
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchPrimOp(e1, arity, fun, args)) {
|
2004-08-04 12:59:20 +02:00
|
|
|
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;
|
2006-10-16 17:55:34 +02:00
|
|
|
/* !!! backtrace for primop call */
|
2004-08-04 12:59:20 +02:00
|
|
|
return ((PrimOp) ATgetBlobData((ATermBlob) fun))
|
|
|
|
(state, args2);
|
|
|
|
} else
|
|
|
|
/* Need more arguments, so propagate the primop. */
|
2004-10-27 00:54:26 +02:00
|
|
|
return makePrimOp(arity, fun, args);
|
2003-10-31 18:09:31 +01:00
|
|
|
}
|
|
|
|
|
2004-10-27 00:54:26 +02:00
|
|
|
else if (matchFunction(e1, formals, e4, pos)) {
|
2004-04-06 00:27:41 +02:00
|
|
|
e2 = evalExpr(state, e2);
|
|
|
|
try {
|
2006-07-24 18:35:34 +02:00
|
|
|
return evalExpr(state, substArgs(state, e4, formals, e2));
|
2004-04-06 00:27:41 +02:00
|
|
|
} catch (Error & e) {
|
2006-03-08 15:11:19 +01:00
|
|
|
e.addPrefix(format("while evaluating the function at %1%:\n")
|
|
|
|
% showPos(pos));
|
|
|
|
throw;
|
2004-04-06 00:27:41 +02:00
|
|
|
}
|
|
|
|
}
|
2003-10-31 18:09:31 +01:00
|
|
|
|
2004-10-27 00:54:26 +02:00
|
|
|
else if (matchFunction1(e1, name, e4, pos)) {
|
2004-04-06 00:27:41 +02:00
|
|
|
try {
|
2006-05-04 14:21:08 +02:00
|
|
|
ATermMap subs(1);
|
2004-04-06 00:27:41 +02:00
|
|
|
subs.set(name, e2);
|
2006-05-02 23:39:02 +02:00
|
|
|
return evalExpr(state, substitute(Substitution(0, &subs), e4));
|
2004-04-06 00:27:41 +02:00
|
|
|
} catch (Error & e) {
|
2006-03-08 15:11:19 +01:00
|
|
|
e.addPrefix(format("while evaluating the function at %1%:\n")
|
|
|
|
% showPos(pos));
|
|
|
|
throw;
|
2004-04-06 00:27:41 +02:00
|
|
|
}
|
2004-03-28 22:34:22 +02:00
|
|
|
}
|
|
|
|
|
2006-07-26 17:05:15 +02:00
|
|
|
else throw TypeError(
|
|
|
|
format("the left-hand side of the function call is neither a function nor a primop (built-in operation) but %1%")
|
|
|
|
% showType(e1));
|
2003-10-31 18:09:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Attribute selection. */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchSelect(e, e1, name)) {
|
2004-04-06 00:27:41 +02:00
|
|
|
ATerm pos;
|
2004-10-27 00:54:26 +02:00
|
|
|
string s1 = aterm2String(name);
|
2004-04-06 00:27:41 +02:00
|
|
|
Expr a = queryAttr(evalExpr(state, e1), s1, pos);
|
2006-07-19 17:36:15 +02:00
|
|
|
if (!a) throw EvalError(format("attribute `%1%' missing") % s1);
|
2004-04-06 00:27:41 +02:00
|
|
|
try {
|
|
|
|
return evalExpr(state, a);
|
|
|
|
} catch (Error & e) {
|
2006-03-08 15:11:19 +01:00
|
|
|
e.addPrefix(format("while evaluating the attribute `%1%' at %2%:\n")
|
|
|
|
% s1 % showPos(pos));
|
|
|
|
throw;
|
2004-04-06 00:27:41 +02:00
|
|
|
}
|
2003-10-31 18:09:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Mutually recursive sets. */
|
2004-02-02 22:39:33 +01:00
|
|
|
ATermList rbnds, nrbnds;
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchRec(e, rbnds, nrbnds))
|
2004-02-02 22:39:33 +01:00
|
|
|
return expandRec(e, rbnds, nrbnds);
|
2003-11-01 20:10:41 +01:00
|
|
|
|
2003-11-01 20:15:08 +01:00
|
|
|
/* Conditionals. */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchIf(e, e1, e2, e3)) {
|
2003-11-01 20:15:08 +01:00
|
|
|
if (evalBool(state, e1))
|
|
|
|
return evalExpr(state, e2);
|
|
|
|
else
|
|
|
|
return evalExpr(state, e3);
|
|
|
|
}
|
|
|
|
|
2003-11-05 17:27:40 +01:00
|
|
|
/* Assertions. */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchAssert(e, e1, e2, pos)) {
|
2004-04-06 00:27:41 +02:00
|
|
|
if (!evalBool(state, e1))
|
2006-03-08 15:11:19 +01:00
|
|
|
throw AssertionError(format("assertion failed at %1%") % showPos(pos));
|
2003-11-05 17:27:40 +01:00
|
|
|
return evalExpr(state, e2);
|
2003-11-01 20:15:08 +01:00
|
|
|
}
|
|
|
|
|
2004-10-25 18:54:56 +02:00
|
|
|
/* Withs. */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchWith(e, e1, e2, pos)) {
|
2006-05-04 14:21:08 +02:00
|
|
|
ATermMap attrs(128); /* !!! */
|
2004-10-25 18:54:56 +02:00
|
|
|
try {
|
|
|
|
e1 = evalExpr(state, e1);
|
|
|
|
queryAllAttrs(e1, attrs);
|
|
|
|
} catch (Error & e) {
|
2006-03-08 15:11:19 +01:00
|
|
|
e.addPrefix(format("while evaluating the `with' definitions at %1%:\n")
|
|
|
|
% showPos(pos));
|
|
|
|
throw;
|
2004-10-25 18:54:56 +02:00
|
|
|
}
|
|
|
|
try {
|
2006-05-02 23:39:02 +02:00
|
|
|
e2 = substitute(Substitution(0, &attrs), e2);
|
2004-10-25 18:54:56 +02:00
|
|
|
checkVarDefs(state.primOps, e2);
|
|
|
|
return evalExpr(state, e2);
|
|
|
|
} catch (Error & e) {
|
2006-03-08 15:11:19 +01:00
|
|
|
e.addPrefix(format("while evaluating the `with' body at %1%:\n")
|
|
|
|
% showPos(pos));
|
|
|
|
throw;
|
2004-10-25 18:54:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-30 15:10:04 +02:00
|
|
|
/* Generic equality/inequality. Note that the behaviour on
|
|
|
|
composite data (lists, attribute sets) and functions is
|
|
|
|
undefined, since the subterms of those terms are not evaluated.
|
|
|
|
However, we don't want to make (==) strict, because that would
|
|
|
|
make operations like `big_derivation == null' very slow (unless
|
|
|
|
we were to evaluate them side-by-side). */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchOpEq(e, e1, e2))
|
2003-11-05 17:27:40 +01:00
|
|
|
return makeBool(evalExpr(state, e1) == evalExpr(state, e2));
|
|
|
|
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchOpNEq(e, e1, e2))
|
2003-11-05 17:27:40 +01:00
|
|
|
return makeBool(evalExpr(state, e1) != evalExpr(state, e2));
|
|
|
|
|
|
|
|
/* Negation. */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchOpNot(e, e1))
|
2003-11-05 17:27:40 +01:00
|
|
|
return makeBool(!evalBool(state, e1));
|
|
|
|
|
|
|
|
/* Implication. */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchOpImpl(e, e1, e2))
|
2003-11-05 17:27:40 +01:00
|
|
|
return makeBool(!evalBool(state, e1) || evalBool(state, e2));
|
|
|
|
|
|
|
|
/* Conjunction (logical AND). */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchOpAnd(e, e1, e2))
|
2003-11-05 17:27:40 +01:00
|
|
|
return makeBool(evalBool(state, e1) && evalBool(state, e2));
|
|
|
|
|
|
|
|
/* Disjunction (logical OR). */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchOpOr(e, e1, e2))
|
2003-11-05 17:27:40 +01:00
|
|
|
return makeBool(evalBool(state, e1) || evalBool(state, e2));
|
|
|
|
|
2004-03-28 23:15:01 +02:00
|
|
|
/* Attribute set update (//). */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchOpUpdate(e, e1, e2))
|
2004-02-04 17:49:51 +01:00
|
|
|
return updateAttrs(evalExpr(state, e1), evalExpr(state, e2));
|
|
|
|
|
2004-03-28 23:15:01 +02:00
|
|
|
/* Attribute existence test (?). */
|
2004-10-27 00:54:26 +02:00
|
|
|
if (matchOpHasAttr(e, e1, name)) {
|
2006-05-04 14:21:08 +02:00
|
|
|
ATermMap attrs(128); /* !!! */
|
2004-03-28 23:15:01 +02:00
|
|
|
queryAllAttrs(evalExpr(state, e1), attrs);
|
|
|
|
return makeBool(attrs.get(name) != 0);
|
|
|
|
}
|
|
|
|
|
2004-10-26 19:01:35 +02:00
|
|
|
/* String or path concatenation. */
|
2006-08-29 17:29:38 +02:00
|
|
|
ATermList es = ATempty;
|
2006-07-19 17:36:15 +02:00
|
|
|
if (matchOpPlus(e, e1, e2) || matchConcatStrings(e, es)) {
|
2006-05-01 11:56:56 +02:00
|
|
|
ATermVector args;
|
2006-07-19 17:36:15 +02:00
|
|
|
if (matchOpPlus(e, e1, e2)) {
|
2006-10-17 14:58:42 +02:00
|
|
|
|
|
|
|
/* !!! Awful compatibility hack for `drv + /path'.
|
|
|
|
According to regular concatenation, /path should be
|
|
|
|
copied to the store and its store path should be
|
|
|
|
appended to the string. However, in Nix <= 0.10, /path
|
|
|
|
was concatenated. So handle that case separately, but
|
|
|
|
do print out a warning. This code can go in Nix 0.12,
|
|
|
|
maybe. */
|
|
|
|
e1 = evalExpr(state, e1);
|
|
|
|
e2 = evalExpr(state, e2);
|
|
|
|
|
|
|
|
ATermList as;
|
|
|
|
ATerm p;
|
|
|
|
if (matchAttrs(e1, as) && matchPath(e2, p)) {
|
|
|
|
static bool haveWarned = false;
|
2006-10-17 16:01:28 +02:00
|
|
|
warnOnce(haveWarned, format(
|
2006-10-17 14:58:42 +02:00
|
|
|
"concatenation of a derivation and a path is deprecated, "
|
2006-10-17 16:01:28 +02:00
|
|
|
"you should write `drv + \"%1%\"' instead of `drv + %1%'")
|
|
|
|
% aterm2String(p));
|
2006-10-17 14:58:42 +02:00
|
|
|
PathSet context;
|
|
|
|
return makeStr(
|
|
|
|
coerceToString(state, makeSelect(e1, toATerm("outPath")), context)
|
|
|
|
+ aterm2String(p), context);
|
|
|
|
}
|
|
|
|
|
2006-07-19 17:36:15 +02:00
|
|
|
args.push_back(e1);
|
|
|
|
args.push_back(e2);
|
|
|
|
} else
|
|
|
|
for (ATermIterator i(es); i; ++i) args.push_back(*i);
|
|
|
|
|
|
|
|
try {
|
|
|
|
return concatStrings(state, args);
|
|
|
|
} catch (Error & e) {
|
2006-08-23 17:46:00 +02:00
|
|
|
e.addPrefix(format("in a string concatenation:\n"));
|
2006-07-19 17:36:15 +02:00
|
|
|
throw;
|
|
|
|
}
|
2004-10-26 19:01:35 +02:00
|
|
|
}
|
|
|
|
|
2006-08-29 17:29:38 +02:00
|
|
|
/* Backwards compatability: subpath operator (~). */
|
|
|
|
if (matchSubPath(e, e1, e2)) {
|
2006-08-30 14:00:27 +02:00
|
|
|
static bool haveWarned = false;
|
2006-08-29 17:29:38 +02:00
|
|
|
warnOnce(haveWarned, "the subpath operator (~) is deprecated, use string concatenation (+) instead");
|
2006-10-16 17:55:34 +02:00
|
|
|
ATermVector args;
|
|
|
|
args.push_back(e1);
|
|
|
|
args.push_back(e2);
|
|
|
|
return concatStrings(state, args, "/");
|
2006-08-29 17:29:38 +02:00
|
|
|
}
|
|
|
|
|
2005-07-25 17:05:34 +02:00
|
|
|
/* List concatenation. */
|
|
|
|
if (matchOpConcat(e, e1, e2)) {
|
2006-07-19 17:36:15 +02:00
|
|
|
try {
|
|
|
|
ATermList l1 = evalList(state, e1);
|
|
|
|
ATermList l2 = evalList(state, e2);
|
|
|
|
return makeList(ATconcat(l1, l2));
|
|
|
|
} catch (Error & e) {
|
2006-08-23 17:46:00 +02:00
|
|
|
e.addPrefix(format("in a list concatenation:\n"));
|
2006-07-19 17:36:15 +02:00
|
|
|
throw;
|
|
|
|
}
|
2006-05-01 16:01:47 +02:00
|
|
|
}
|
|
|
|
|
2003-10-31 18:09:31 +01:00
|
|
|
/* Barf. */
|
|
|
|
throw badTerm("invalid expression", e);
|
2003-10-30 17:48:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Expr evalExpr(EvalState & state, Expr e)
|
|
|
|
{
|
2004-01-15 21:23:55 +01:00
|
|
|
checkInterrupt();
|
|
|
|
|
2003-11-09 11:35:45 +01:00
|
|
|
startNest(nest, lvlVomit,
|
2003-11-16 18:46:31 +01:00
|
|
|
format("evaluating expression: %1%") % e);
|
2003-10-30 17:48:26 +01:00
|
|
|
|
2003-10-31 18:09:31 +01:00
|
|
|
state.nrEvaluated++;
|
|
|
|
|
2003-10-30 17:48:26 +01:00
|
|
|
/* Consult the memo table to quickly get the normal form of
|
|
|
|
previously evaluated expressions. */
|
2003-11-03 21:30:40 +01:00
|
|
|
Expr nf = state.normalForms.get(e);
|
|
|
|
if (nf) {
|
2006-05-02 23:58:46 +02:00
|
|
|
if (nf == makeBlackHole())
|
2006-07-19 17:36:15 +02:00
|
|
|
throw EvalError("infinite recursion encountered");
|
2003-10-31 18:09:31 +01:00
|
|
|
state.nrCached++;
|
2003-11-03 21:30:40 +01:00
|
|
|
return nf;
|
2003-10-30 17:48:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Otherwise, evaluate and memoize. */
|
2006-05-02 23:58:46 +02:00
|
|
|
state.normalForms.set(e, makeBlackHole());
|
2006-03-08 17:03:58 +01:00
|
|
|
try {
|
|
|
|
nf = evalExpr2(state, e);
|
|
|
|
} catch (Error & err) {
|
|
|
|
debug("removing black hole");
|
|
|
|
state.normalForms.remove(e);
|
|
|
|
throw;
|
|
|
|
}
|
2003-11-03 21:30:40 +01:00
|
|
|
state.normalForms.set(e, nf);
|
2003-10-30 17:48:26 +01:00
|
|
|
return nf;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Expr evalFile(EvalState & state, const Path & path)
|
|
|
|
{
|
2003-11-09 11:35:45 +01:00
|
|
|
startNest(nest, lvlTalkative, format("evaluating file `%1%'") % path);
|
2004-02-04 17:03:29 +01:00
|
|
|
Expr e = parseExprFromFile(state, path);
|
2004-04-06 00:27:41 +02:00
|
|
|
try {
|
|
|
|
return evalExpr(state, e);
|
|
|
|
} catch (Error & e) {
|
2006-03-08 15:11:19 +01:00
|
|
|
e.addPrefix(format("while evaluating the file `%1%':\n")
|
|
|
|
% path);
|
|
|
|
throw;
|
2004-04-06 00:27:41 +02:00
|
|
|
}
|
2003-10-30 17:48:26 +01:00
|
|
|
}
|
2003-10-31 18:09:31 +01:00
|
|
|
|
|
|
|
|
2006-08-30 15:10:04 +02:00
|
|
|
Expr strictEvalExpr(EvalState & state, Expr e, bool canonicalise)
|
2006-08-24 15:39:22 +02:00
|
|
|
{
|
|
|
|
e = evalExpr(state, e);
|
|
|
|
|
|
|
|
ATermList as;
|
|
|
|
if (matchAttrs(e, as)) {
|
|
|
|
ATermList as2 = ATempty;
|
|
|
|
for (ATermIterator i(as); i; ++i) {
|
|
|
|
ATerm name; Expr e; ATerm pos;
|
|
|
|
if (!matchBind(*i, name, e, pos)) abort(); /* can't happen */
|
2006-08-30 15:10:04 +02:00
|
|
|
as2 = ATinsert(as2, makeBind(name, strictEvalExpr(state, e, canonicalise),
|
|
|
|
canonicalise ? makeNoPos() : pos));
|
2006-08-24 15:39:22 +02:00
|
|
|
}
|
2006-08-30 15:10:04 +02:00
|
|
|
/* !!! sort attributes if canonicalise == true */
|
2006-08-24 15:39:22 +02:00
|
|
|
return makeAttrs(ATreverse(as2));
|
|
|
|
}
|
2006-08-24 16:03:39 +02:00
|
|
|
|
|
|
|
ATermList es;
|
|
|
|
if (matchList(e, es)) {
|
|
|
|
ATermList es2 = ATempty;
|
|
|
|
for (ATermIterator i(es); i; ++i)
|
2006-08-30 15:10:04 +02:00
|
|
|
es2 = ATinsert(es2, strictEvalExpr(state, *i, canonicalise));
|
2006-08-24 16:03:39 +02:00
|
|
|
return makeList(ATreverse(es2));
|
|
|
|
}
|
|
|
|
|
2006-08-24 15:39:22 +02:00
|
|
|
ATermList formals;
|
|
|
|
ATerm body, pos;
|
|
|
|
if (matchFunction(e, formals, body, pos)) {
|
|
|
|
ATermList formals2 = ATempty;
|
|
|
|
|
|
|
|
for (ATermIterator i(formals); i; ++i) {
|
|
|
|
Expr name; ValidValues valids; ATerm dummy;
|
|
|
|
if (!matchFormal(*i, name, valids, dummy)) abort();
|
|
|
|
|
|
|
|
ATermList valids2;
|
|
|
|
if (matchValidValues(valids, valids2)) {
|
|
|
|
ATermList valids3 = ATempty;
|
|
|
|
for (ATermIterator j(valids2); j; ++j)
|
2006-08-30 15:10:04 +02:00
|
|
|
valids3 = ATinsert(valids3, strictEvalExpr(state, *j, canonicalise));
|
2006-08-24 15:39:22 +02:00
|
|
|
valids = makeValidValues(ATreverse(valids3));
|
|
|
|
}
|
|
|
|
|
|
|
|
formals2 = ATinsert(formals2, makeFormal(name, valids, dummy));
|
|
|
|
}
|
2006-08-30 15:10:04 +02:00
|
|
|
return makeFunction(ATreverse(formals2), body,
|
|
|
|
canonicalise ? makeNoPos() : pos);
|
2006-08-24 15:39:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-05-02 15:39:55 +02:00
|
|
|
/* Yes, this is a really bad idea... */
|
|
|
|
extern "C" {
|
|
|
|
unsigned long AT_calcAllocatedSize();
|
|
|
|
}
|
|
|
|
|
2003-10-31 18:09:31 +01:00
|
|
|
void printEvalStats(EvalState & state)
|
|
|
|
{
|
2006-05-08 12:00:37 +02:00
|
|
|
bool showStats = getEnv("NIX_SHOW_STATS", "0") != "0";
|
|
|
|
printMsg(showStats ? lvlInfo : lvlDebug,
|
2006-05-02 15:39:55 +02:00
|
|
|
format("evaluated %1% expressions, %2% cache hits, %3%%% efficiency, used %4% ATerm bytes")
|
2003-10-31 18:09:31 +01:00
|
|
|
% state.nrEvaluated % state.nrCached
|
2006-05-02 15:39:55 +02:00
|
|
|
% ((float) state.nrCached / (float) state.nrEvaluated * 100)
|
|
|
|
% AT_calcAllocatedSize());
|
2006-05-08 12:00:37 +02:00
|
|
|
if (showStats)
|
|
|
|
printATermMapStats();
|
2003-10-31 18:09:31 +01:00
|
|
|
}
|
2006-09-04 23:06:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
}
|