|
|
|
/*
|
|
|
|
** $Id: lvm.c,v 2.30 2005/03/08 18:09:16 roberto Exp roberto $
|
|
|
|
** Lua virtual machine
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define lvm_c
|
|
|
|
#define LUA_CORE
|
|
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
|
|
|
|
#include "ldebug.h"
|
|
|
|
#include "ldo.h"
|
|
|
|
#include "lfunc.h"
|
|
|
|
#include "lgc.h"
|
|
|
|
#include "lobject.h"
|
|
|
|
#include "lopcodes.h"
|
|
|
|
#include "lstate.h"
|
|
|
|
#include "lstring.h"
|
|
|
|
#include "ltable.h"
|
|
|
|
#include "ltm.h"
|
|
|
|
#include "lvm.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* limit for table tag-method chains (to avoid loops) */
|
|
|
|
#define MAXTAGLOOP 100
|
|
|
|
|
|
|
|
|
|
|
|
const TValue *luaV_tonumber (const TValue *obj, TValue *n) {
|
|
|
|
lua_Number num;
|
|
|
|
if (ttisnumber(obj)) return obj;
|
|
|
|
if (ttisstring(obj) && luaO_str2d(svalue(obj), &num)) {
|
|
|
|
setnvalue(n, num);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int luaV_tostring (lua_State *L, StkId obj) {
|
|
|
|
if (!ttisnumber(obj))
|
|
|
|
return 0;
|
|
|
|
else {
|
|
|
|
char s[LUAC_MAXNUMBER2STR];
|
|
|
|
lua_number2str(s, nvalue(obj));
|
|
|
|
setsvalue2s(L, obj, luaS_new(L, s));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void traceexec (lua_State *L, const Instruction *pc) {
|
|
|
|
lu_byte mask = L->hookmask;
|
|
|
|
CallInfo *ci = L->ci;
|
|
|
|
const Instruction *oldpc = ci->savedpc;
|
|
|
|
ci->savedpc = pc;
|
|
|
|
if (mask > LUA_MASKLINE) { /* instruction-hook set? */
|
|
|
|
if (L->hookcount == 0) {
|
|
|
|
resethookcount(L);
|
|
|
|
luaD_callhook(L, LUA_HOOKCOUNT, -1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mask & LUA_MASKLINE) {
|
|
|
|
Proto *p = ci_func(ci)->l.p;
|
|
|
|
int npc = pcRel(pc, p);
|
|
|
|
int newline = getline(p, npc);
|
|
|
|
/* call linehook when enter a new function, when jump back (loop),
|
|
|
|
or when enter a new line */
|
|
|
|
if (npc == 0 || pc <= oldpc || newline != getline(p, pcRel(oldpc, p)))
|
|
|
|
luaD_callhook(L, LUA_HOOKLINE, newline);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void prepTMcall (lua_State *L, const TValue *f,
|
|
|
|
const TValue *p1, const TValue *p2) {
|
|
|
|
setobj2s(L, L->top, f); /* push function */
|
|
|
|
setobj2s(L, L->top+1, p1); /* 1st argument */
|
|
|
|
setobj2s(L, L->top+2, p2); /* 2nd argument */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void callTMres (lua_State *L, StkId res) {
|
|
|
|
ptrdiff_t result = savestack(L, res);
|
|
|
|
luaD_checkstack(L, 3);
|
|
|
|
L->top += 3;
|
|
|
|
luaD_call(L, L->top - 3, 1);
|
|
|
|
res = restorestack(L, result);
|
|
|
|
L->top--;
|
|
|
|
setobjs2s(L, res, L->top);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void callTM (lua_State *L) {
|
|
|
|
luaD_checkstack(L, 4);
|
|
|
|
L->top += 4;
|
|
|
|
luaD_call(L, L->top - 4, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
StkId luaV_gettable (lua_State *L, const TValue *t, TValue *key, StkId val,
|
|
|
|
const Instruction *pc) {
|
|
|
|
int loop;
|
|
|
|
for (loop = 0; loop < MAXTAGLOOP; loop++) {
|
|
|
|
const TValue *tm;
|
|
|
|
if (ttistable(t)) { /* `t' is a table? */
|
|
|
|
Table *h = hvalue(t);
|
|
|
|
const TValue *res = luaH_get(h, key); /* do a primitive get */
|
|
|
|
if (!ttisnil(res) || /* result is no nil? */
|
|
|
|
(tm = fasttm(L, h->metatable, TM_INDEX)) == NULL) { /* or no TM? */
|
|
|
|
setobj2s(L, val, res);
|
|
|
|
return L->base;
|
|
|
|
}
|
|
|
|
/* else will try the tag method */
|
|
|
|
}
|
|
|
|
else if (ttisnil(tm = luaT_gettmbyobj(L, t, TM_INDEX))) {
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
luaG_typeerror(L, t, "index");
|
|
|
|
}
|
|
|
|
if (ttisfunction(tm)) {
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
prepTMcall(L, tm, t, key);
|
|
|
|
callTMres(L, val);
|
|
|
|
return L->base;
|
|
|
|
}
|
|
|
|
t = tm; /* else repeat with `tm' */
|
|
|
|
}
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
luaG_runerror(L, "loop in gettable");
|
|
|
|
return NULL; /* to avoid warnings */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
StkId luaV_settable (lua_State *L, const TValue *t, TValue *key, StkId val,
|
|
|
|
const Instruction *pc) {
|
|
|
|
int loop;
|
|
|
|
for (loop = 0; loop < MAXTAGLOOP; loop++) {
|
|
|
|
const TValue *tm;
|
|
|
|
if (ttistable(t)) { /* `t' is a table? */
|
|
|
|
Table *h = hvalue(t);
|
|
|
|
TValue *oldval = luaH_set(L, h, key); /* do a primitive set */
|
|
|
|
if (!ttisnil(oldval) || /* result is no nil? */
|
|
|
|
(tm = fasttm(L, h->metatable, TM_NEWINDEX)) == NULL) { /* or no TM? */
|
|
|
|
setobj2t(L, oldval, val);
|
|
|
|
luaC_barriert(L, h, val);
|
|
|
|
return L->base;
|
|
|
|
}
|
|
|
|
/* else will try the tag method */
|
|
|
|
}
|
|
|
|
else if (ttisnil(tm = luaT_gettmbyobj(L, t, TM_NEWINDEX))) {
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
luaG_typeerror(L, t, "index");
|
|
|
|
}
|
|
|
|
if (ttisfunction(tm)) {
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
prepTMcall(L, tm, t, key);
|
|
|
|
setobj2s(L, L->top+3, val); /* 3th argument */
|
|
|
|
callTM(L);
|
|
|
|
return L->base;
|
|
|
|
}
|
|
|
|
t = tm; /* else repeat with `tm' */
|
|
|
|
}
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
luaG_runerror(L, "loop in settable");
|
|
|
|
return NULL; /* to avoid warnings */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int call_binTM (lua_State *L, const TValue *p1, const TValue *p2,
|
|
|
|
StkId res, TMS event) {
|
|
|
|
const TValue *tm = luaT_gettmbyobj(L, p1, event); /* try first operand */
|
|
|
|
if (ttisnil(tm))
|
|
|
|
tm = luaT_gettmbyobj(L, p2, event); /* try second operand */
|
|
|
|
if (!ttisfunction(tm)) return 0;
|
|
|
|
prepTMcall(L, tm, p1, p2);
|
|
|
|
callTMres(L, res);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const TValue *get_compTM (lua_State *L, Table *mt1, Table *mt2,
|
|
|
|
TMS event) {
|
|
|
|
const TValue *tm1 = fasttm(L, mt1, event);
|
|
|
|
const TValue *tm2;
|
|
|
|
if (tm1 == NULL) return NULL; /* no metamethod */
|
|
|
|
if (mt1 == mt2) return tm1; /* same metatables => same metamethods */
|
|
|
|
tm2 = fasttm(L, mt2, event);
|
|
|
|
if (tm2 == NULL) return NULL; /* no metamethod */
|
|
|
|
if (luaO_rawequalObj(tm1, tm2)) /* same metamethods? */
|
|
|
|
return tm1;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int call_orderTM (lua_State *L, const TValue *p1, const TValue *p2,
|
|
|
|
TMS event) {
|
|
|
|
const TValue *tm1 = luaT_gettmbyobj(L, p1, event);
|
|
|
|
const TValue *tm2;
|
|
|
|
if (ttisnil(tm1)) return -1; /* no metamethod? */
|
|
|
|
tm2 = luaT_gettmbyobj(L, p2, event);
|
|
|
|
if (!luaO_rawequalObj(tm1, tm2)) /* different metamethods? */
|
|
|
|
return -1;
|
|
|
|
prepTMcall(L, tm1, p1, p2);
|
|
|
|
callTMres(L, L->top);
|
|
|
|
return !l_isfalse(L->top);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int l_strcmp (const TString *ls, const TString *rs) {
|
|
|
|
const char *l = getstr(ls);
|
|
|
|
size_t ll = ls->tsv.len;
|
|
|
|
const char *r = getstr(rs);
|
|
|
|
size_t lr = rs->tsv.len;
|
|
|
|
for (;;) {
|
|
|
|
int temp = strcoll(l, r);
|
|
|
|
if (temp != 0) return temp;
|
|
|
|
else { /* strings are equal up to a `\0' */
|
|
|
|
size_t len = strlen(l); /* index of first `\0' in both strings */
|
|
|
|
if (len == lr) /* r is finished? */
|
|
|
|
return (len == ll) ? 0 : 1;
|
|
|
|
else if (len == ll) /* l is finished? */
|
|
|
|
return -1; /* l is smaller than r (because r is not finished) */
|
|
|
|
/* both strings longer than `len'; go on comparing (after the `\0') */
|
|
|
|
len++;
|
|
|
|
l += len; ll -= len; r += len; lr -= len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int luaV_lessthan (lua_State *L, const TValue *l, const TValue *r) {
|
|
|
|
int res;
|
|
|
|
if (ttype(l) != ttype(r))
|
|
|
|
return luaG_ordererror(L, l, r);
|
|
|
|
else if (ttisnumber(l))
|
|
|
|
return luac_numlt(nvalue(l), nvalue(r));
|
|
|
|
else if (ttisstring(l))
|
|
|
|
return l_strcmp(rawtsvalue(l), rawtsvalue(r)) < 0;
|
|
|
|
else if ((res = call_orderTM(L, l, r, TM_LT)) != -1)
|
|
|
|
return res;
|
|
|
|
return luaG_ordererror(L, l, r);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int lessequal (lua_State *L, const TValue *l, const TValue *r) {
|
|
|
|
int res;
|
|
|
|
if (ttype(l) != ttype(r))
|
|
|
|
return luaG_ordererror(L, l, r);
|
|
|
|
else if (ttisnumber(l))
|
|
|
|
return luac_numle(nvalue(l), nvalue(r));
|
|
|
|
else if (ttisstring(l))
|
|
|
|
return l_strcmp(rawtsvalue(l), rawtsvalue(r)) <= 0;
|
|
|
|
else if ((res = call_orderTM(L, l, r, TM_LE)) != -1) /* first try `le' */
|
|
|
|
return res;
|
|
|
|
else if ((res = call_orderTM(L, r, l, TM_LT)) != -1) /* else try `lt' */
|
|
|
|
return !res;
|
|
|
|
return luaG_ordererror(L, l, r);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int luaV_equalval (lua_State *L, const TValue *t1, const TValue *t2) {
|
|
|
|
const TValue *tm;
|
|
|
|
lua_assert(ttype(t1) == ttype(t2));
|
|
|
|
switch (ttype(t1)) {
|
|
|
|
case LUA_TNIL: return 1;
|
|
|
|
case LUA_TNUMBER: return luac_numeq(nvalue(t1), nvalue(t2));
|
|
|
|
case LUA_TBOOLEAN: return bvalue(t1) == bvalue(t2); /* true must be 1 !! */
|
|
|
|
case LUA_TLIGHTUSERDATA: return pvalue(t1) == pvalue(t2);
|
|
|
|
case LUA_TUSERDATA: {
|
|
|
|
if (uvalue(t1) == uvalue(t2)) return 1;
|
|
|
|
tm = get_compTM(L, uvalue(t1)->metatable, uvalue(t2)->metatable,
|
|
|
|
TM_EQ);
|
|
|
|
break; /* will try TM */
|
|
|
|
}
|
|
|
|
case LUA_TTABLE: {
|
|
|
|
if (hvalue(t1) == hvalue(t2)) return 1;
|
|
|
|
tm = get_compTM(L, hvalue(t1)->metatable, hvalue(t2)->metatable, TM_EQ);
|
|
|
|
break; /* will try TM */
|
|
|
|
}
|
|
|
|
default: return gcvalue(t1) == gcvalue(t2);
|
|
|
|
}
|
|
|
|
if (tm == NULL) return 0; /* no TM? */
|
|
|
|
prepTMcall(L, tm, t1, t2);
|
|
|
|
callTMres(L, L->top); /* call TM */
|
|
|
|
return !l_isfalse(L->top);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void luaV_concat (lua_State *L, int total, int last) {
|
|
|
|
do {
|
|
|
|
StkId top = L->base + last + 1;
|
|
|
|
int n = 2; /* number of elements handled in this pass (at least 2) */
|
|
|
|
if (!tostring(L, top-2) || !tostring(L, top-1)) {
|
|
|
|
if (!call_binTM(L, top-2, top-1, top-2, TM_CONCAT))
|
|
|
|
luaG_concaterror(L, top-2, top-1);
|
|
|
|
} else if (tsvalue(top-1)->len > 0) { /* if len=0, do nothing */
|
|
|
|
/* at least two string values; get as many as possible */
|
|
|
|
size_t tl = tsvalue(top-1)->len;
|
|
|
|
char *buffer;
|
|
|
|
int i;
|
|
|
|
/* collect total length */
|
|
|
|
for (n = 1; n < total && tostring(L, top-n-1); n++) {
|
|
|
|
size_t l = tsvalue(top-n-1)->len;
|
|
|
|
if (l >= MAX_SIZET - tl) luaG_runerror(L, "string length overflow");
|
|
|
|
tl += l;
|
|
|
|
}
|
|
|
|
buffer = luaZ_openspace(L, &G(L)->buff, tl);
|
|
|
|
tl = 0;
|
|
|
|
for (i=n; i>0; i--) { /* concat all strings */
|
|
|
|
size_t l = tsvalue(top-i)->len;
|
|
|
|
memcpy(buffer+tl, svalue(top-i), l);
|
|
|
|
tl += l;
|
|
|
|
}
|
|
|
|
setsvalue2s(L, top-n, luaS_newlstr(L, buffer, tl));
|
|
|
|
}
|
|
|
|
total -= n-1; /* got `n' strings to create 1 new */
|
|
|
|
last -= n-1;
|
|
|
|
} while (total > 1); /* repeat until only 1 result left */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static StkId Arith (lua_State *L, StkId ra, const TValue *rb,
|
|
|
|
const TValue *rc, TMS op, const Instruction *pc) {
|
|
|
|
TValue tempb, tempc;
|
|
|
|
const TValue *b, *c;
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
if ((b = luaV_tonumber(rb, &tempb)) != NULL &&
|
|
|
|
(c = luaV_tonumber(rc, &tempc)) != NULL) {
|
|
|
|
lua_Number nb = nvalue(b), nc = nvalue(c);
|
|
|
|
switch (op) {
|
|
|
|
case TM_ADD: setnvalue(ra, luac_numadd(nb, nc)); break;
|
|
|
|
case TM_SUB: setnvalue(ra, luac_numsub(nb, nc)); break;
|
|
|
|
case TM_MUL: setnvalue(ra, luac_nummul(nb, nc)); break;
|
|
|
|
case TM_DIV: setnvalue(ra, luac_numdiv(nb, nc)); break;
|
|
|
|
case TM_MOD: setnvalue(ra, luac_nummod(nb, nc)); break;
|
|
|
|
case TM_POW: setnvalue(ra, luac_numpow(nb, nc)); break;
|
|
|
|
default: lua_assert(0); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!call_binTM(L, rb, rc, ra, op))
|
|
|
|
luaG_aritherror(L, rb, rc);
|
|
|
|
return L->base;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** some macros for common tasks in `luaV_execute'
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define runtime_check(L, c) { if (!(c)) break; }
|
|
|
|
|
|
|
|
#define RA(i) (base+GETARG_A(i))
|
|
|
|
/* to be used after possible stack reallocation */
|
|
|
|
#define RB(i) check_exp(getBMode(GET_OPCODE(i)) == OpArgR, base+GETARG_B(i))
|
|
|
|
#define RC(i) check_exp(getCMode(GET_OPCODE(i)) == OpArgR, base+GETARG_C(i))
|
|
|
|
#define RKB(i) check_exp(getBMode(GET_OPCODE(i)) == OpArgK, \
|
|
|
|
ISK(GETARG_B(i)) ? k+INDEXK(GETARG_B(i)) : base+GETARG_B(i))
|
|
|
|
#define RKC(i) check_exp(getCMode(GET_OPCODE(i)) == OpArgK, \
|
|
|
|
ISK(GETARG_C(i)) ? k+INDEXK(GETARG_C(i)) : base+GETARG_C(i))
|
|
|
|
#define KBx(i) check_exp(getBMode(GET_OPCODE(i)) == OpArgK, k+GETARG_Bx(i))
|
|
|
|
|
|
|
|
|
|
|
|
#define dojump(L,pc,i) {(pc) += (i); lua_threadyield(L);}
|
|
|
|
|
|
|
|
|
|
|
|
StkId luaV_execute (lua_State *L, int nexeccalls) {
|
|
|
|
LClosure *cl;
|
|
|
|
TValue *k;
|
|
|
|
StkId base;
|
|
|
|
const Instruction *pc;
|
|
|
|
callentry: /* entry point when calling new functions */
|
|
|
|
if (L->hookmask & LUA_MASKCALL)
|
|
|
|
luaD_callhook(L, LUA_HOOKCALL, -1);
|
|
|
|
retentry: /* entry point when returning to old functions */
|
|
|
|
pc = L->ci->savedpc;
|
|
|
|
cl = &clvalue(L->ci->func)->l;
|
|
|
|
base = L->base;
|
|
|
|
k = cl->p->k;
|
|
|
|
/* main loop of interpreter */
|
|
|
|
for (;;) {
|
|
|
|
const Instruction i = *pc++;
|
|
|
|
StkId ra;
|
|
|
|
if ((L->hookmask & (LUA_MASKLINE | LUA_MASKCOUNT)) &&
|
|
|
|
(--L->hookcount == 0 || L->hookmask & LUA_MASKLINE)) {
|
|
|
|
traceexec(L, pc); /***/
|
|
|
|
if (L->status == LUA_YIELD) { /* did hook yield? */
|
|
|
|
L->ci->savedpc = pc - 1;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
base = L->base;
|
|
|
|
}
|
|
|
|
/* warning!! several calls may realloc the stack and invalidate `ra' */
|
|
|
|
ra = RA(i);
|
|
|
|
lua_assert(base == L->ci->base && base == L->base);
|
|
|
|
lua_assert(base <= L->top && L->top <= L->stack + L->stacksize);
|
|
|
|
lua_assert(L->top == L->ci->top || luaG_checkopenop(i));
|
|
|
|
switch (GET_OPCODE(i)) {
|
|
|
|
case OP_MOVE: {
|
|
|
|
setobjs2s(L, ra, RB(i));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_LOADK: {
|
|
|
|
setobj2s(L, ra, KBx(i));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_LOADBOOL: {
|
|
|
|
setbvalue(ra, GETARG_B(i));
|
|
|
|
if (GETARG_C(i)) pc++; /* skip next instruction (if C) */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_LOADNIL: {
|
|
|
|
TValue *rb = RB(i);
|
|
|
|
do {
|
|
|
|
setnilvalue(rb--);
|
|
|
|
} while (rb >= ra);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_GETUPVAL: {
|
|
|
|
int b = GETARG_B(i);
|
|
|
|
setobj2s(L, ra, cl->upvals[b]->v);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_GETGLOBAL: {
|
|
|
|
TValue g;
|
|
|
|
TValue *rb = KBx(i);
|
|
|
|
sethvalue(L, &g, cl->env);
|
|
|
|
lua_assert(ttisstring(rb));
|
|
|
|
base = luaV_gettable(L, &g, rb, ra, pc); /***/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_GETTABLE: {
|
|
|
|
base = luaV_gettable(L, RB(i), RKC(i), ra, pc); /***/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_SETGLOBAL: {
|
|
|
|
TValue g;
|
|
|
|
sethvalue(L, &g, cl->env);
|
|
|
|
lua_assert(ttisstring(KBx(i)));
|
|
|
|
base = luaV_settable(L, &g, KBx(i), ra, pc); /***/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_SETUPVAL: {
|
|
|
|
UpVal *uv = cl->upvals[GETARG_B(i)];
|
|
|
|
setobj(L, uv->v, ra);
|
|
|
|
luaC_barrier(L, uv, ra);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_SETTABLE: {
|
|
|
|
base = luaV_settable(L, ra, RKB(i), RKC(i), pc); /***/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_NEWTABLE: {
|
|
|
|
int b = GETARG_B(i);
|
|
|
|
int c = GETARG_C(i);
|
|
|
|
sethvalue(L, ra, luaH_new(L, luaO_fb2int(b), luaO_fb2int(c)));
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
luaC_checkGC(L); /***/
|
|
|
|
base = L->base;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_SELF: {
|
|
|
|
StkId rb = RB(i);
|
|
|
|
setobjs2s(L, ra+1, rb);
|
|
|
|
base = luaV_gettable(L, rb, RKC(i), ra, pc); /***/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_ADD: {
|
|
|
|
TValue *rb = RKB(i);
|
|
|
|
TValue *rc = RKC(i);
|
|
|
|
if (ttisnumber(rb) && ttisnumber(rc)) {
|
|
|
|
lua_Number nb = nvalue(rb), nc = nvalue(rc);
|
|
|
|
setnvalue(ra, luac_numadd(nb, nc));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
base = Arith(L, ra, rb, rc, TM_ADD, pc); /***/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_SUB: {
|
|
|
|
TValue *rb = RKB(i);
|
|
|
|
TValue *rc = RKC(i);
|
|
|
|
if (ttisnumber(rb) && ttisnumber(rc)) {
|
|
|
|
lua_Number nb = nvalue(rb), nc = nvalue(rc);
|
|
|
|
setnvalue(ra, luac_numsub(nb, nc));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
base = Arith(L, ra, rb, rc, TM_SUB, pc); /***/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_MUL: {
|
|
|
|
TValue *rb = RKB(i);
|
|
|
|
TValue *rc = RKC(i);
|
|
|
|
if (ttisnumber(rb) && ttisnumber(rc)) {
|
|
|
|
lua_Number nb = nvalue(rb), nc = nvalue(rc);
|
|
|
|
setnvalue(ra, luac_nummul(nb, nc));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
base = Arith(L, ra, rb, rc, TM_MUL, pc); /***/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_DIV: {
|
|
|
|
TValue *rb = RKB(i);
|
|
|
|
TValue *rc = RKC(i);
|
|
|
|
if (ttisnumber(rb) && ttisnumber(rc)) {
|
|
|
|
lua_Number nb = nvalue(rb), nc = nvalue(rc);
|
|
|
|
setnvalue(ra, luac_numdiv(nb, nc));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
base = Arith(L, ra, rb, rc, TM_DIV, pc); /***/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_MOD: {
|
|
|
|
TValue *rb = RKB(i);
|
|
|
|
TValue *rc = RKC(i);
|
|
|
|
if (ttisnumber(rb) && ttisnumber(rc)) {
|
|
|
|
lua_Number nb = nvalue(rb), nc = nvalue(rc);
|
|
|
|
setnvalue(ra, luac_nummod(nb, nc));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
base = Arith(L, ra, rb, rc, TM_MOD, pc); /***/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_POW: {
|
|
|
|
TValue *rb = RKB(i);
|
|
|
|
TValue *rc = RKC(i);
|
|
|
|
if (ttisnumber(rb) && ttisnumber(rc)) {
|
|
|
|
lua_Number nb = nvalue(rb), nc = nvalue(rc);
|
|
|
|
setnvalue(ra, luac_numpow(nb, nc));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
base = Arith(L, ra, rb, rc, TM_POW, pc); /***/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_UNM: {
|
|
|
|
const TValue *rb = RB(i);
|
|
|
|
TValue temp;
|
|
|
|
if (tonumber(rb, &temp)) {
|
|
|
|
lua_Number nb = nvalue(rb);
|
|
|
|
setnvalue(ra, luac_numunm(nb));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
setnilvalue(&temp);
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
if (!call_binTM(L, RB(i), &temp, ra, TM_UNM)) /***/
|
|
|
|
luaG_aritherror(L, RB(i), &temp);
|
|
|
|
base = L->base;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_NOT: {
|
|
|
|
int res = l_isfalse(RB(i)); /* next assignment may change this value */
|
|
|
|
setbvalue(ra, res);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_CONCAT: {
|
|
|
|
int b = GETARG_B(i);
|
|
|
|
int c = GETARG_C(i);
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
luaV_concat(L, c-b+1, c); /* may change `base' (and `ra') */ /***/
|
|
|
|
luaC_checkGC(L); /***/
|
|
|
|
base = L->base;
|
|
|
|
setobjs2s(L, RA(i), base+b);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_JMP: {
|
|
|
|
dojump(L, pc, GETARG_sBx(i));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_EQ: {
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
if (equalobj(L, RKB(i), RKC(i)) != GETARG_A(i)) pc++; /***/
|
|
|
|
else dojump(L, pc, GETARG_sBx(*pc) + 1);
|
|
|
|
base = L->base;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_LT: {
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
if (luaV_lessthan(L, RKB(i), RKC(i)) != GETARG_A(i)) pc++; /***/
|
|
|
|
else dojump(L, pc, GETARG_sBx(*pc) + 1);
|
|
|
|
base = L->base;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_LE: {
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
if (lessequal(L, RKB(i), RKC(i)) != GETARG_A(i)) pc++; /***/
|
|
|
|
else dojump(L, pc, GETARG_sBx(*pc) + 1);
|
|
|
|
base = L->base;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_TEST: {
|
|
|
|
TValue *rb = RB(i);
|
|
|
|
if (l_isfalse(rb) == GETARG_C(i)) pc++;
|
|
|
|
else {
|
|
|
|
setobjs2s(L, ra, rb);
|
|
|
|
dojump(L, pc, GETARG_sBx(*pc) + 1);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_CALL: { /***/
|
|
|
|
int pcr;
|
|
|
|
int b = GETARG_B(i);
|
|
|
|
int nresults = GETARG_C(i) - 1;
|
|
|
|
if (b != 0) L->top = ra+b; /* else previous instruction set top */
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
pcr = luaD_precall(L, ra, nresults);
|
|
|
|
if (pcr == PCRLUA) {
|
|
|
|
nexeccalls++;
|
|
|
|
goto callentry; /* restart luaV_execute over new Lua function */
|
|
|
|
}
|
|
|
|
else if (pcr == PCRC) {
|
|
|
|
/* it was a C function (`precall' called it); adjust results */
|
|
|
|
if (nresults >= 0) L->top = L->ci->top;
|
|
|
|
base = L->base;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lua_assert(pcr == PCRYIELD);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case OP_TAILCALL: { /***/
|
|
|
|
int pcr;
|
|
|
|
int b = GETARG_B(i);
|
|
|
|
if (b != 0) L->top = ra+b; /* else previous instruction set top */
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
lua_assert(GETARG_C(i) - 1 == LUA_MULTRET);
|
|
|
|
pcr = luaD_precall(L, ra, LUA_MULTRET);
|
|
|
|
if (pcr == PCRLUA) {
|
|
|
|
/* tail call: put new frame in place of previous one */
|
|
|
|
CallInfo *ci = L->ci - 1; /* previous frame */
|
|
|
|
int aux;
|
|
|
|
StkId func = ci->func;
|
|
|
|
StkId pfunc = (ci+1)->func; /* previous function index */
|
|
|
|
if (L->openupval) luaF_close(L, ci->base);
|
|
|
|
base = ci->base = ci->func + ((ci+1)->base - pfunc);
|
|
|
|
L->base = base;
|
|
|
|
for (aux = 0; pfunc+aux < L->top; aux++) /* move frame down */
|
|
|
|
setobjs2s(L, func+aux, pfunc+aux);
|
|
|
|
ci->top = L->top = func+aux; /* correct top */
|
|
|
|
lua_assert(L->top == L->base + clvalue(func)->l.p->maxstacksize);
|
|
|
|
ci->savedpc = L->ci->savedpc;
|
|
|
|
ci->tailcalls++; /* one more call lost */
|
|
|
|
L->ci--; /* remove new frame */
|
|
|
|
goto callentry;
|
|
|
|
}
|
|
|
|
else if (pcr == PCRC) {
|
|
|
|
/* it was a C function (`precall' called it) */
|
|
|
|
base = L->base;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lua_assert(pcr == PCRYIELD);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case OP_RETURN: {
|
|
|
|
CallInfo *ci = L->ci - 1; /* previous function frame */
|
|
|
|
int b = GETARG_B(i);
|
|
|
|
if (b != 0) L->top = ra+b-1;
|
|
|
|
if (L->openupval) luaF_close(L, base);
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
if (--nexeccalls == 0) /* was previous function running `here'? */
|
|
|
|
return ra; /* no: return */
|
|
|
|
else { /* yes: continue its execution */
|
|
|
|
int nresults = (ci+1)->nresults;
|
|
|
|
lua_assert(isLua(ci));
|
|
|
|
lua_assert(GET_OPCODE(*(ci->savedpc - 1)) == OP_CALL);
|
|
|
|
luaD_poscall(L, nresults, ra);
|
|
|
|
if (nresults >= 0) L->top = L->ci->top;
|
|
|
|
goto retentry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case OP_FORLOOP: {
|
|
|
|
lua_Number step = nvalue(ra+2);
|
|
|
|
lua_Number idx = luac_numadd(nvalue(ra), step); /* increment index */
|
|
|
|
lua_Number limit = nvalue(ra+1);
|
|
|
|
if (step > 0 ? luac_numle(idx, limit) : luac_numle(limit, idx)) {
|
|
|
|
dojump(L, pc, GETARG_sBx(i)); /* jump back */
|
|
|
|
setnvalue(ra, idx); /* update internal index... */
|
|
|
|
setnvalue(ra+3, idx); /* ...and external index */
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_FORPREP: { /***/
|
|
|
|
const TValue *init = ra;
|
|
|
|
const TValue *plimit = ra+1;
|
|
|
|
const TValue *pstep = ra+2;
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
if (!tonumber(init, ra))
|
|
|
|
luaG_runerror(L, "`for' initial value must be a number");
|
|
|
|
else if (!tonumber(plimit, ra+1))
|
|
|
|
luaG_runerror(L, "`for' limit must be a number");
|
|
|
|
else if (!tonumber(pstep, ra+2))
|
|
|
|
luaG_runerror(L, "`for' step must be a number");
|
|
|
|
setnvalue(ra, luac_numsub(nvalue(ra), nvalue(pstep)));
|
|
|
|
dojump(L, pc, GETARG_sBx(i));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_TFORLOOP: {
|
|
|
|
StkId cb = ra + 3; /* call base */
|
|
|
|
setobjs2s(L, cb+2, ra+2);
|
|
|
|
setobjs2s(L, cb+1, ra+1);
|
|
|
|
setobjs2s(L, cb, ra);
|
|
|
|
L->top = cb+3; /* func. + 2 args (state and index) */
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
luaD_call(L, cb, GETARG_C(i)); /***/
|
|
|
|
L->top = L->ci->top;
|
|
|
|
base = L->base;
|
|
|
|
cb = RA(i) + 3; /* previous call may change the stack */
|
|
|
|
if (ttisnil(cb)) /* break loop? */
|
|
|
|
pc++; /* skip jump (break loop) */
|
|
|
|
else {
|
|
|
|
setobjs2s(L, cb-1, cb); /* save control variable */
|
|
|
|
dojump(L, pc, GETARG_sBx(*pc) + 1); /* jump back */
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_TFORPREP: { /* for compatibility only */
|
|
|
|
if (ttistable(ra)) {
|
|
|
|
setobjs2s(L, ra+1, ra);
|
|
|
|
setobj2s(L, ra, luaH_getstr(hvalue(gt(L)), luaS_new(L, "next")));
|
|
|
|
}
|
|
|
|
dojump(L, pc, GETARG_sBx(i));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_SETLIST: {
|
|
|
|
int n = GETARG_B(i);
|
|
|
|
int c = GETARG_C(i);
|
|
|
|
int last;
|
|
|
|
Table *h;
|
|
|
|
if (n == 0) {
|
|
|
|
n = L->top - ra - 1;
|
|
|
|
L->top = L->ci->top;
|
|
|
|
}
|
|
|
|
if (c == 0) c = cast(int, *pc++);
|
|
|
|
runtime_check(L, ttistable(ra));
|
|
|
|
h = hvalue(ra);
|
|
|
|
last = ((c-1)*LFIELDS_PER_FLUSH) + n + LUA_FIRSTINDEX - 1;
|
|
|
|
if (last > h->sizearray) /* needs more space? */
|
|
|
|
luaH_resizearray(L, h, last); /* pre-alloc it at once */
|
|
|
|
for (; n > 0; n--) {
|
|
|
|
TValue *val = ra+n;
|
|
|
|
setobj2t(L, luaH_setnum(L, h, last--), val);
|
|
|
|
luaC_barriert(L, h, val);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_CLOSE: {
|
|
|
|
luaF_close(L, ra);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_CLOSURE: {
|
|
|
|
Proto *p;
|
|
|
|
Closure *ncl;
|
|
|
|
int nup, j;
|
|
|
|
p = cl->p->p[GETARG_Bx(i)];
|
|
|
|
nup = p->nups;
|
|
|
|
ncl = luaF_newLclosure(L, nup, cl->env);
|
|
|
|
ncl->l.p = p;
|
|
|
|
for (j=0; j<nup; j++, pc++) {
|
|
|
|
if (GET_OPCODE(*pc) == OP_GETUPVAL)
|
|
|
|
ncl->l.upvals[j] = cl->upvals[GETARG_B(*pc)];
|
|
|
|
else {
|
|
|
|
lua_assert(GET_OPCODE(*pc) == OP_MOVE);
|
|
|
|
ncl->l.upvals[j] = luaF_findupval(L, base + GETARG_B(*pc));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setclvalue(L, ra, ncl);
|
|
|
|
L->ci->savedpc = pc;
|
|
|
|
luaC_checkGC(L); /***/
|
|
|
|
base = L->base;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
case OP_VARARG: {
|
|
|
|
int b = GETARG_B(i) - 1;
|
|
|
|
int j;
|
|
|
|
CallInfo *ci = L->ci;
|
|
|
|
int n = ci->base - ci->func - cl->p->numparams - 1;
|
|
|
|
if (b == LUA_MULTRET) {
|
|
|
|
b = n;
|
|
|
|
L->top = ra + n;
|
|
|
|
}
|
|
|
|
for (j=0; j<b && j<n; j++)
|
|
|
|
setobjs2s(L, ra+j, ci->base - n + j);
|
|
|
|
for (; j<b; j++)
|
|
|
|
setnilvalue(ra+j);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|