2012-07-18 21:59:03 +03:00
|
|
|
#pragma once
|
2012-02-04 15:50:25 +02:00
|
|
|
|
|
|
|
#include "eval.hh"
|
|
|
|
|
|
|
|
#define LocalNoInline(f) static f __attribute__((noinline)); f
|
|
|
|
#define LocalNoInlineNoReturn(f) static f __attribute__((noinline, noreturn)); f
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2015-07-31 21:28:25 +03:00
|
|
|
LocalNoInlineNoReturn(void throwEvalError(const char * s, const Pos & pos))
|
2012-02-04 15:50:25 +02:00
|
|
|
{
|
2015-07-31 21:28:25 +03:00
|
|
|
throw EvalError(format(s) % pos);
|
2012-02-04 15:50:25 +02:00
|
|
|
}
|
|
|
|
|
2013-11-07 14:44:14 +02:00
|
|
|
LocalNoInlineNoReturn(void throwTypeError(const char * s, const Value & v))
|
2012-02-04 15:50:25 +02:00
|
|
|
{
|
2013-11-07 14:44:14 +02:00
|
|
|
throw TypeError(format(s) % showType(v));
|
2012-02-04 15:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-04 20:05:36 +03:00
|
|
|
LocalNoInlineNoReturn(void throwTypeError(const char * s, const Value & v, const Pos & pos))
|
|
|
|
{
|
|
|
|
throw TypeError(format(s) % showType(v) % pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-31 18:32:25 +03:00
|
|
|
void EvalState::forceValue(Value & v, const Pos & pos)
|
2012-02-04 15:50:25 +02:00
|
|
|
{
|
|
|
|
if (v.type == tThunk) {
|
2013-03-14 18:21:13 +02:00
|
|
|
Env * env = v.thunk.env;
|
|
|
|
Expr * expr = v.thunk.expr;
|
2012-02-04 15:50:25 +02:00
|
|
|
try {
|
|
|
|
v.type = tBlackhole;
|
|
|
|
//checkInterrupt();
|
2013-03-14 18:21:13 +02:00
|
|
|
expr->eval(*this, *env, v);
|
2017-06-20 13:11:22 +03:00
|
|
|
} catch (...) {
|
2013-03-14 18:21:13 +02:00
|
|
|
v.type = tThunk;
|
|
|
|
v.thunk.env = env;
|
|
|
|
v.thunk.expr = expr;
|
2012-02-04 15:50:25 +02:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (v.type == tApp)
|
2014-04-04 18:53:52 +03:00
|
|
|
callFunction(*v.app.left, *v.app.right, v, noPos);
|
2012-02-04 15:50:25 +02:00
|
|
|
else if (v.type == tBlackhole)
|
2015-07-31 21:28:25 +03:00
|
|
|
throwEvalError("infinite recursion encountered, at %1%", pos);
|
2012-02-04 15:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline void EvalState::forceAttrs(Value & v)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
if (v.type != tAttrs)
|
2013-11-07 14:44:14 +02:00
|
|
|
throwTypeError("value is %1% while a set was expected", v);
|
2012-02-04 15:50:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-04-04 20:11:40 +03:00
|
|
|
inline void EvalState::forceAttrs(Value & v, const Pos & pos)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
|
|
|
if (v.type != tAttrs)
|
|
|
|
throwTypeError("value is %1% while a set was expected, at %2%", v, pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-04 15:50:25 +02:00
|
|
|
inline void EvalState::forceList(Value & v)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
2015-07-23 23:05:09 +03:00
|
|
|
if (!v.isList())
|
2013-11-07 14:44:14 +02:00
|
|
|
throwTypeError("value is %1% while a list was expected", v);
|
2012-02-04 15:50:25 +02:00
|
|
|
}
|
|
|
|
|
2014-04-04 20:05:36 +03:00
|
|
|
|
|
|
|
inline void EvalState::forceList(Value & v, const Pos & pos)
|
|
|
|
{
|
|
|
|
forceValue(v);
|
2015-07-23 23:05:09 +03:00
|
|
|
if (!v.isList())
|
2014-04-04 20:05:36 +03:00
|
|
|
throwTypeError("value is %1% while a list was expected, at %2%", v, pos);
|
|
|
|
}
|
|
|
|
|
2012-02-04 15:50:25 +02:00
|
|
|
}
|