2009-09-16 01:39:44 +00:00
|
|
|
#include <math.h>
|
|
|
|
#include "vm.h"
|
2016-02-08 11:10:53 +00:00
|
|
|
#include "xs_Float.h"
|
2009-09-16 01:39:44 +00:00
|
|
|
|
|
|
|
#define IMPLEMENT_VMEXEC
|
|
|
|
|
|
|
|
#if !defined(COMPGOTO) && defined(__GNUC__)
|
|
|
|
#define COMPGOTO 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if COMPGOTO
|
|
|
|
#define OP(x) x
|
2009-10-17 00:33:23 +00:00
|
|
|
#define NEXTOP do { unsigned op = pc->op; a = pc->a; pc++; goto *ops[op]; } while(0)
|
2009-09-16 01:39:44 +00:00
|
|
|
#else
|
|
|
|
#define OP(x) case OP_##x
|
|
|
|
#define NEXTOP break
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define luai_nummod(a,b) ((a) - floor((a)/(b))*(b))
|
|
|
|
|
2009-10-17 00:33:23 +00:00
|
|
|
#define A (pc[-1].a)
|
|
|
|
#define B (pc[-1].b)
|
|
|
|
#define C (pc[-1].c)
|
|
|
|
#define Cs (pc[-1].cs)
|
|
|
|
#define BC (pc[-1].i16u)
|
|
|
|
#define BCs (pc[-1].i16)
|
|
|
|
#define ABCs (pc[-1].i24)
|
|
|
|
#define JMPOFS(x) ((x)->i24)
|
2009-09-16 01:39:44 +00:00
|
|
|
|
2009-10-11 00:02:14 +00:00
|
|
|
#define KC (konstd[C])
|
|
|
|
#define RC (reg.d[C])
|
2009-09-16 01:39:44 +00:00
|
|
|
|
|
|
|
#define PA (reg.a[A])
|
|
|
|
#define PB (reg.a[B])
|
|
|
|
|
|
|
|
#define ASSERTD(x) assert((unsigned)(x) < f->NumRegD)
|
|
|
|
#define ASSERTF(x) assert((unsigned)(x) < f->NumRegF)
|
|
|
|
#define ASSERTA(x) assert((unsigned)(x) < f->NumRegA)
|
|
|
|
#define ASSERTS(x) assert((unsigned)(x) < f->NumRegS)
|
|
|
|
|
|
|
|
#define ASSERTKD(x) assert(sfunc != NULL && (unsigned)(x) < sfunc->NumKonstD)
|
|
|
|
#define ASSERTKF(x) assert(sfunc != NULL && (unsigned)(x) < sfunc->NumKonstF)
|
|
|
|
#define ASSERTKA(x) assert(sfunc != NULL && (unsigned)(x) < sfunc->NumKonstA)
|
|
|
|
#define ASSERTKS(x) assert(sfunc != NULL && (unsigned)(x) < sfunc->NumKonstS)
|
|
|
|
|
|
|
|
#define THROW(x)
|
|
|
|
|
|
|
|
#define CMPJMP(test) \
|
|
|
|
if ((test) == (a & CMP_CHECK)) { \
|
2009-10-17 00:33:23 +00:00
|
|
|
assert(pc->op == OP_JMP); \
|
|
|
|
pc += 1 + JMPOFS(pc); \
|
2009-09-16 01:39:44 +00:00
|
|
|
} else { \
|
2009-10-17 00:33:23 +00:00
|
|
|
pc += 1; \
|
2009-09-16 01:39:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
X_READ_NIL,
|
|
|
|
X_WRITE_NIL,
|
|
|
|
X_TOO_MANY_TRIES,
|
2009-10-11 00:02:14 +00:00
|
|
|
X_ARRAY_OUT_OF_BOUNDS
|
2009-09-16 01:39:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define GETADDR(a,o,x) \
|
2009-10-11 00:02:14 +00:00
|
|
|
if (a == NULL) { THROW(x); } \
|
|
|
|
ptr = (VM_SBYTE *)a + o
|
2009-09-16 01:39:44 +00:00
|
|
|
|
|
|
|
static const VM_UWORD ZapTable[16] =
|
|
|
|
{
|
|
|
|
0x00000000, 0x000000FF, 0x0000FF00, 0x0000FFFF,
|
|
|
|
0x00FF0000, 0x00FF00FF, 0x00FFFF00, 0x00FFFFFF,
|
|
|
|
0xFF000000, 0xFF0000FF, 0xFF00FF00, 0xFF00FFFF,
|
|
|
|
0xFFFF0000, 0xFFFF00FF, 0xFFFFFF00, 0xFFFFFFFF
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef NDEBUG
|
|
|
|
#define WAS_NDEBUG 1
|
|
|
|
#else
|
|
|
|
#define WAS_NDEBUG 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if WAS_NDEBUG
|
|
|
|
#undef NDEBUG
|
|
|
|
#endif
|
|
|
|
#undef assert
|
|
|
|
#include <assert.h>
|
|
|
|
struct VMExec_Checked
|
|
|
|
{
|
|
|
|
#include "vmexec.h"
|
|
|
|
};
|
|
|
|
#if WAS_NDEBUG
|
|
|
|
#define NDEBUG
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !WAS_NDEBUG
|
|
|
|
#define NDEBUG
|
|
|
|
#endif
|
|
|
|
#undef assert
|
|
|
|
#include <assert.h>
|
|
|
|
struct VMExec_Unchecked
|
|
|
|
{
|
|
|
|
#include "vmexec.h"
|
|
|
|
};
|
|
|
|
#if !WAS_NDEBUG
|
|
|
|
#undef NDEBUG
|
|
|
|
#endif
|
|
|
|
#undef assert
|
|
|
|
#include <assert.h>
|
|
|
|
|
2009-10-17 00:33:23 +00:00
|
|
|
int (*VMExec)(VMFrameStack *stack, const VMOP *pc, VMReturn *ret, int numret) =
|
2009-09-16 01:39:44 +00:00
|
|
|
#ifdef NDEBUG
|
|
|
|
VMExec_Unchecked::Exec
|
|
|
|
#else
|
|
|
|
VMExec_Checked::Exec
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
|
2010-02-14 20:16:05 +00:00
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// VMSelectEngine
|
|
|
|
//
|
|
|
|
// Selects the VM engine, either checked or unchecked. Default will decide
|
|
|
|
// based on the NDEBUG preprocessor definition.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
2009-09-16 01:39:44 +00:00
|
|
|
void VMSelectEngine(EVMEngine engine)
|
|
|
|
{
|
|
|
|
switch (engine)
|
|
|
|
{
|
|
|
|
case VMEngine_Default:
|
|
|
|
#ifdef NDEBUG
|
|
|
|
VMExec = VMExec_Unchecked::Exec;
|
|
|
|
#else
|
|
|
|
#endif
|
2012-10-26 04:04:06 +00:00
|
|
|
VMExec = VMExec_Checked::Exec;
|
2009-09-16 01:39:44 +00:00
|
|
|
break;
|
|
|
|
case VMEngine_Unchecked:
|
|
|
|
VMExec = VMExec_Unchecked::Exec;
|
|
|
|
break;
|
|
|
|
case VMEngine_Checked:
|
|
|
|
VMExec = VMExec_Checked::Exec;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//===========================================================================
|
|
|
|
//
|
|
|
|
// VMFillParams
|
|
|
|
//
|
2010-02-12 06:04:57 +00:00
|
|
|
// Takes parameters from the parameter stack and stores them in the callee's
|
2009-09-16 01:39:44 +00:00
|
|
|
// registers.
|
|
|
|
//
|
|
|
|
//===========================================================================
|
|
|
|
|
|
|
|
void VMFillParams(VMValue *params, VMFrame *callee, int numparam)
|
|
|
|
{
|
|
|
|
unsigned int regd, regf, regs, rega;
|
|
|
|
VMScriptFunction *calleefunc = static_cast<VMScriptFunction *>(callee->Func);
|
|
|
|
const VMRegisters calleereg(callee);
|
|
|
|
|
|
|
|
assert(calleefunc != NULL && !calleefunc->Native);
|
|
|
|
assert(numparam == calleefunc->NumArgs);
|
|
|
|
assert(REGT_INT == 0 && REGT_FLOAT == 1 && REGT_STRING == 2 && REGT_POINTER == 3);
|
|
|
|
|
|
|
|
regd = regf = regs = rega = 0;
|
|
|
|
for (int i = 0; i < numparam; ++i)
|
|
|
|
{
|
|
|
|
VMValue &p = params[i];
|
|
|
|
if (p.Type < REGT_STRING)
|
|
|
|
{
|
|
|
|
if (p.Type == REGT_INT)
|
|
|
|
{
|
|
|
|
calleereg.d[regd++] = p.i;
|
|
|
|
}
|
|
|
|
else // p.Type == REGT_FLOAT
|
|
|
|
{
|
|
|
|
calleereg.f[regf++] = p.f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (p.Type == REGT_STRING)
|
|
|
|
{
|
|
|
|
calleereg.s[regs++] = p.s();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
assert(p.Type == REGT_POINTER);
|
|
|
|
calleereg.a[rega] = p.a;
|
|
|
|
calleereg.atag[rega++] = p.atag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|