2020-10-06 08:18:44 +00:00
|
|
|
#pragma once
|
2023-04-01 03:18:41 +00:00
|
|
|
///@file
|
2020-10-06 08:18:44 +00:00
|
|
|
|
2016-04-13 09:15:45 +00:00
|
|
|
#include "eval.hh"
|
|
|
|
|
|
|
|
#include <tuple>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
2024-03-04 04:51:23 +00:00
|
|
|
/**
|
|
|
|
* For functions where we do not expect deep recursion, we can use a sizable
|
|
|
|
* part of the stack a free allocation space.
|
|
|
|
*
|
|
|
|
* Note: this is expected to be multiplied by sizeof(Value), or about 24 bytes.
|
|
|
|
*/
|
|
|
|
constexpr size_t nonRecursiveStackReservation = 128;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Functions that maybe applied to self-similar inputs, such as concatMap on a
|
|
|
|
* tree, should reserve a smaller part of the stack for allocation.
|
|
|
|
*
|
|
|
|
* Note: this is expected to be multiplied by sizeof(Value), or about 24 bytes.
|
|
|
|
*/
|
|
|
|
constexpr size_t conservativeStackReservation = 16;
|
|
|
|
|
2016-04-13 09:15:45 +00:00
|
|
|
struct RegisterPrimOp
|
|
|
|
{
|
2023-05-13 17:52:45 +00:00
|
|
|
typedef std::vector<PrimOp> PrimOps;
|
2016-04-13 09:15:45 +00:00
|
|
|
static PrimOps * primOps;
|
2020-06-17 14:54:32 +00:00
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* You can register a constant by passing an arity of 0. fun
|
|
|
|
* will get called during EvalState initialization, so there
|
|
|
|
* may be primops not yet added and builtins is not yet sorted.
|
|
|
|
*/
|
2023-05-13 17:52:45 +00:00
|
|
|
RegisterPrimOp(PrimOp && primOp);
|
2016-04-13 09:15:45 +00:00
|
|
|
};
|
|
|
|
|
2018-04-09 14:26:50 +00:00
|
|
|
/* These primops are disabled without enableNativeCode, but plugins
|
|
|
|
may wish to use them in limited contexts without globally enabling
|
|
|
|
them. */
|
2022-03-25 13:04:18 +00:00
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* Load a ValueInitializer from a DSO and return whatever it initializes
|
|
|
|
*/
|
2022-03-04 18:31:59 +00:00
|
|
|
void prim_importNative(EvalState & state, const PosIdx pos, Value * * args, Value & v);
|
2020-03-30 14:04:18 +00:00
|
|
|
|
2023-04-07 13:55:28 +00:00
|
|
|
/**
|
|
|
|
* Execute a program and parse its output
|
|
|
|
*/
|
2022-03-04 18:31:59 +00:00
|
|
|
void prim_exec(EvalState & state, const PosIdx pos, Value * * args, Value & v);
|
2018-04-09 14:26:50 +00:00
|
|
|
|
2016-04-13 09:15:45 +00:00
|
|
|
}
|