lua/lvm.c

657 lines
18 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
2001-02-09 21:07:47 +03:00
** $Id: lvm.c,v 1.166 2001/02/07 18:13:49 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Lua virtual machine
** See Copyright Notice in lua.h
*/
2001-02-07 21:13:49 +03:00
#include <stdarg.h>
1997-09-16 23:25:59 +04:00
#include <stdio.h>
#include <stdlib.h>
1997-09-16 23:25:59 +04:00
#include <string.h>
#include "lua.h"
#include "lapi.h"
#include "ldebug.h"
1997-09-16 23:25:59 +04:00
#include "ldo.h"
#include "lfunc.h"
#include "lgc.h"
#include "lobject.h"
1997-09-16 23:25:59 +04:00
#include "lopcodes.h"
#include "lstate.h"
1997-09-16 23:25:59 +04:00
#include "lstring.h"
#include "ltable.h"
#include "ltm.h"
#include "lvm.h"
2000-10-03 18:03:21 +04:00
int luaV_tonumber (TObject *obj) {
2000-10-05 16:14:08 +04:00
if (ttype(obj) != LUA_TSTRING)
1997-09-16 23:25:59 +04:00
return 1;
else {
if (!luaO_str2d(svalue(obj), &nvalue(obj)))
1999-04-13 23:28:49 +04:00
return 2;
2000-10-05 16:14:08 +04:00
ttype(obj) = LUA_TNUMBER;
1997-09-16 23:25:59 +04:00
return 0;
}
}
int luaV_tostring (lua_State *L, TObject *obj) { /* LUA_NUMBER */
2000-10-05 16:14:08 +04:00
if (ttype(obj) != LUA_TNUMBER)
1997-09-16 23:25:59 +04:00
return 1;
else {
1999-12-14 21:33:29 +03:00
char s[32]; /* 16 digits, sign, point and \0 (+ some extra...) */
2000-10-03 18:03:21 +04:00
lua_number2str(s, nvalue(obj)); /* convert `s' to number */
setsvalue(obj, luaS_new(L, s));
1997-09-16 23:25:59 +04:00
return 0;
}
}
2001-02-07 21:13:49 +03:00
static void traceexec (lua_State *L, StkId base, lua_Hook linehook) {
2000-06-26 23:28:31 +04:00
CallInfo *ci = infovalue(base-1);
2000-08-08 22:26:05 +04:00
int *lineinfo = ci->func->f.l->lineinfo;
2000-10-06 16:45:25 +04:00
int pc = (*ci->pc - ci->func->f.l->code) - 1;
int newline;
if (pc == 0) { /* may be first time? */
ci->line = 1;
ci->refi = 0;
2000-08-09 18:49:41 +04:00
ci->lastpc = pc+1; /* make sure it will call linehook */
}
newline = luaG_getline(lineinfo, pc, ci->line, &ci->refi);
/* calls linehook when enters a new line or jumps back (loop) */
if (newline != ci->line || pc <= ci->lastpc) {
ci->line = newline;
luaD_lineHook(L, base-2, newline, linehook);
2000-06-26 23:28:31 +04:00
}
2000-06-29 00:21:06 +04:00
ci->lastpc = pc;
2000-06-26 23:28:31 +04:00
}
2000-10-05 16:14:08 +04:00
static Closure *luaV_closure (lua_State *L, int nelems) {
Closure *c = luaF_newclosure(L, nelems);
L->top -= nelems;
while (nelems--)
setobj(&c->upvalue[nelems], L->top+nelems);
setclvalue(L->top, c);
incr_top;
return c;
}
void luaV_Cclosure (lua_State *L, lua_CFunction c, int nelems) {
2000-10-05 16:14:08 +04:00
Closure *cl = luaV_closure(L, nelems);
cl->f.c = c;
2000-10-05 16:14:08 +04:00
cl->isC = 1;
}
void luaV_Lclosure (lua_State *L, Proto *l, int nelems) {
2000-10-05 16:14:08 +04:00
Closure *cl = luaV_closure(L, nelems);
cl->f.l = l;
2000-10-05 16:14:08 +04:00
cl->isC = 0;
1997-09-16 23:25:59 +04:00
}
2001-02-07 21:13:49 +03:00
static void callTM (lua_State *L, const char *fmt, ...) {
va_list argp;
StkId base = L->top;
int has_result = 0;
va_start(argp, fmt);
2001-02-09 21:07:47 +03:00
while (*fmt) {
2001-02-07 21:13:49 +03:00
switch (*fmt++) {
case 'c':
setclvalue(L->top, va_arg(argp, Closure *));
break;
case 'o':
setobj(L->top, va_arg(argp, TObject *));
break;
case 's':
setsvalue(L->top, va_arg(argp, TString *));
break;
case 'r':
has_result = 1;
2001-02-09 21:07:47 +03:00
continue;
2001-02-07 21:13:49 +03:00
}
incr_top;
2001-02-09 21:07:47 +03:00
}
2001-02-07 21:13:49 +03:00
luaD_call(L, base, has_result);
if (has_result) {
L->top--;
setobj(va_arg(argp, TObject *), L->top);
}
va_end(argp);
}
1997-09-16 23:25:59 +04:00
/*
** Function to index a table.
2001-02-07 21:13:49 +03:00
** Receives the table at `t' and the key at the `key'.
** leaves the result at `res'.
1997-09-16 23:25:59 +04:00
*/
2001-02-07 21:13:49 +03:00
void luaV_gettable (lua_State *L, StkId t, TObject *key, StkId res) {
Closure *tm;
2000-08-23 00:49:29 +04:00
int tg;
2000-10-05 16:14:08 +04:00
if (ttype(t) == LUA_TTABLE && /* `t' is a table? */
((tg = hvalue(t)->htag) == LUA_TTABLE || /* with default tag? */
luaT_gettm(G(L), tg, TM_GETTABLE) == NULL)) { /* or no TM? */
2001-02-09 21:07:47 +03:00
const TObject *h = luaH_get(hvalue(t), key); /* do a primitive get */
2000-08-23 00:49:29 +04:00
/* result is no nil or there is no `index' tag method? */
if (ttype(h) != LUA_TNIL || ((tm=luaT_gettm(G(L), tg, TM_INDEX)) == NULL)) {
setobj(res, h);
return;
}
2001-02-09 21:07:47 +03:00
/* else will call `index' tag method */
1999-02-08 20:07:59 +03:00
}
2001-02-09 21:07:47 +03:00
else /* try a `gettable' tag method */
tm = luaT_gettmbyObj(G(L), t, TM_GETTABLE);
if (tm == NULL) /* no tag method? */
2000-09-05 23:33:32 +04:00
luaG_typeerror(L, t, "index");
2001-02-07 21:13:49 +03:00
else
callTM(L, "coor", tm, t, key, res);
1997-09-16 23:25:59 +04:00
}
2001-02-07 21:13:49 +03:00
1997-09-16 23:25:59 +04:00
/*
2001-02-07 21:13:49 +03:00
** Receives table at `t', key at `key' and value at `val'.
1997-09-16 23:25:59 +04:00
*/
2001-02-07 21:13:49 +03:00
void luaV_settable (lua_State *L, StkId t, StkId key, StkId val) {
2000-08-23 00:49:29 +04:00
int tg;
2000-10-05 16:14:08 +04:00
if (ttype(t) == LUA_TTABLE && /* `t' is a table? */
((tg = hvalue(t)->htag) == LUA_TTABLE || /* with default tag? */
luaT_gettm(G(L), tg, TM_SETTABLE) == NULL)) { /* or no TM? */
2001-02-07 21:13:49 +03:00
setobj(luaH_set(L, hvalue(t), key), val); /* do a primitive set */
}
2000-08-23 00:49:29 +04:00
else { /* try a `settable' tag method */
Closure *tm = luaT_gettmbyObj(G(L), t, TM_SETTABLE);
if (tm == NULL) /* no tag method? */
luaG_typeerror(L, t, "index");
2001-02-07 21:13:49 +03:00
else
callTM(L, "cooo", tm, t, key, val);
1998-12-30 20:26:49 +03:00
}
}
2001-02-07 21:13:49 +03:00
void luaV_getglobal (lua_State *L, TString *name, StkId res) {
const TObject *value = luaH_getstr(L->gt, name);
2001-01-24 19:20:54 +03:00
Closure *tm;
if (!HAS_TM_GETGLOBAL(L, ttype(value)) || /* is there a tag method? */
(tm = luaT_gettmbyObj(G(L), value, TM_GETGLOBAL)) == NULL) {
2001-02-07 21:13:49 +03:00
setobj(res, value); /* default behavior */
1997-09-16 23:25:59 +04:00
}
2001-02-07 21:13:49 +03:00
else
callTM(L, "csor", tm, name, value, res);
1997-09-16 23:25:59 +04:00
}
2001-02-07 21:13:49 +03:00
void luaV_setglobal (lua_State *L, TString *name, StkId val) {
TObject *oldvalue = luaH_setstr(L, L->gt, name);
2001-01-24 19:20:54 +03:00
Closure *tm;
if (!HAS_TM_SETGLOBAL(L, ttype(oldvalue)) || /* no tag methods? */
(tm = luaT_gettmbyObj(G(L), oldvalue, TM_SETGLOBAL)) == NULL) {
2001-02-07 21:13:49 +03:00
setobj(oldvalue, val); /* raw set */
1997-09-16 23:25:59 +04:00
}
2001-02-07 21:13:49 +03:00
else
callTM(L, "csoo", tm, name, oldvalue, val);
1997-09-16 23:25:59 +04:00
}
2001-02-07 21:13:49 +03:00
static int call_binTM (lua_State *L, const TObject *p1, const TObject *p2,
TObject *res, TMS event) {
TString *opname;
Closure *tm = luaT_gettmbyObj(G(L), p1, event); /* try first operand */
if (tm == NULL) {
2001-02-07 21:13:49 +03:00
tm = luaT_gettmbyObj(G(L), p2, event); /* try second operand */
if (tm == NULL) {
tm = luaT_gettm(G(L), 0, event); /* try a `global' method */
if (tm == NULL)
2001-02-07 21:13:49 +03:00
return 0; /* no tag method */
1997-09-16 23:25:59 +04:00
}
}
2001-02-07 21:13:49 +03:00
opname = luaS_new(L, luaT_eventname[event]);
callTM(L, "coosr", tm, p1, p2, opname, res);
2000-08-10 23:50:47 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
2001-02-07 21:13:49 +03:00
static void call_arith (lua_State *L, StkId p1, TMS event) {
if (!call_binTM(L, p1, p1+1, p1, event))
luaG_binerror(L, p1, LUA_TNUMBER, "perform arithmetic on");
1997-09-16 23:25:59 +04:00
}
static int luaV_strlessthan (const TString *ls, const TString *rs) {
const char *l = ls->str;
2000-10-26 16:47:05 +04:00
size_t ll = ls->len;
const char *r = rs->str;
2000-10-26 16:47:05 +04:00
size_t lr = rs->len;
1998-03-06 19:54:42 +03:00
for (;;) {
2000-05-24 17:54:49 +04:00
int temp = strcoll(l, r);
if (temp != 0) return (temp < 0);
2000-05-24 17:54:49 +04:00
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 0; /* l is equal or greater than r */
else if (len == ll) /* l is finished? */
return 1; /* l is smaller than r (because r is not finished) */
2000-05-24 17:54:49 +04:00
/* both strings longer than `len'; go on comparing (after the '\0') */
len++;
l += len; ll -= len; r += len; lr -= len;
}
1998-03-06 19:54:42 +03:00
}
}
2001-02-07 21:13:49 +03:00
int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r) {
2000-10-05 16:14:08 +04:00
if (ttype(l) == LUA_TNUMBER && ttype(r) == LUA_TNUMBER)
return (nvalue(l) < nvalue(r));
2000-10-05 16:14:08 +04:00
else if (ttype(l) == LUA_TSTRING && ttype(r) == LUA_TSTRING)
return luaV_strlessthan(tsvalue(l), tsvalue(r));
2001-02-07 21:13:49 +03:00
else { /* try TM */
if (!call_binTM(L, l, r, L->top, TM_LT))
luaG_ordererror(L, l, r);
2000-10-05 16:14:08 +04:00
return (ttype(L->top) != LUA_TNIL);
1997-09-16 23:25:59 +04:00
}
}
2000-09-05 23:33:32 +04:00
void luaV_strconc (lua_State *L, int total, StkId top) {
2000-03-09 03:19:22 +03:00
do {
int n = 2; /* number of elements handled in this pass (at least 2) */
2000-08-10 23:50:47 +04:00
if (tostring(L, top-2) || tostring(L, top-1)) {
2001-02-07 21:13:49 +03:00
if (!call_binTM(L, top-2, top-1, top-2, TM_CONCAT))
2000-10-05 16:14:08 +04:00
luaG_binerror(L, top-2, LUA_TSTRING, "concat");
2000-08-10 23:50:47 +04:00
}
2000-10-26 16:47:05 +04:00
else if (tsvalue(top-1)->len > 0) { /* if len=0, do nothing */
2000-03-17 16:09:12 +03:00
/* at least two string values; get as many as possible */
luint32 tl = (luint32)tsvalue(top-1)->len +
(luint32)tsvalue(top-2)->len;
2000-03-09 03:19:22 +03:00
char *buffer;
int i;
while (n < total && !tostring(L, top-n-1)) { /* collect total length */
2000-10-26 16:47:05 +04:00
tl += tsvalue(top-n-1)->len;
2000-03-09 03:19:22 +03:00
n++;
}
if (tl > MAX_SIZET) luaD_error(L, "string size overflow");
2000-09-11 21:38:42 +04:00
buffer = luaO_openspace(L, tl);
2000-03-09 03:19:22 +03:00
tl = 0;
for (i=n; i>0; i--) { /* concat all strings */
2000-10-26 16:47:05 +04:00
size_t l = tsvalue(top-i)->len;
2000-03-09 03:19:22 +03:00
memcpy(buffer+tl, tsvalue(top-i)->str, l);
tl += l;
}
setsvalue(top-n, luaS_newlstr(L, buffer, tl));
2000-03-09 03:19:22 +03:00
}
total -= n-1; /* got `n' strings to create 1 new */
top -= n-1;
} while (total > 1); /* repeat until only 1 result left */
}
2000-09-01 01:02:55 +04:00
static void luaV_pack (lua_State *L, StkId firstelem) {
1997-09-16 23:25:59 +04:00
int i;
2000-08-29 18:41:56 +04:00
Hash *htab = luaH_new(L, 0);
TObject *n;
2000-08-29 18:41:56 +04:00
for (i=0; firstelem+i<L->top; i++)
setobj(luaH_setnum(L, htab, i+1), firstelem+i);
2000-06-06 20:31:41 +04:00
/* store counter in field `n' */
n = luaH_setstr(L, htab, luaS_newliteral(L, "n"));
setnvalue(n, i);
2000-08-29 18:41:56 +04:00
L->top = firstelem; /* remove elements from the stack */
sethvalue(L->top, htab);
2000-08-29 18:41:56 +04:00
incr_top;
1997-09-16 23:25:59 +04:00
}
1999-12-01 22:50:08 +03:00
static void adjust_varargs (lua_State *L, StkId base, int nfixargs) {
int nvararg = (L->top-base) - nfixargs;
2000-08-29 18:41:56 +04:00
if (nvararg < 0)
1999-12-01 22:50:08 +03:00
luaD_adjusttop(L, base, nfixargs);
2000-08-29 18:41:56 +04:00
luaV_pack(L, base+nfixargs);
1997-09-16 23:25:59 +04:00
}
2000-09-20 21:57:08 +04:00
2001-01-29 18:26:40 +03:00
#define dojump(pc, i) ((pc) += GETARG_S(i))
2000-09-20 21:57:08 +04:00
1997-09-16 23:25:59 +04:00
/*
1999-12-09 23:01:48 +03:00
** Executes the given Lua function. Parameters are between [base,top).
** Returns n such that the the results are between [n,top).
1997-09-16 23:25:59 +04:00
*/
StkId luaV_execute (lua_State *L, const Closure *cl, StkId base) {
2000-10-06 16:45:25 +04:00
const Proto *const tf = cl->f.l;
StkId top; /* keep top local, for performance */
const Instruction *pc = tf->code;
2000-10-06 16:45:25 +04:00
TString **const kstr = tf->kstr;
const lua_Hook linehook = L->linehook;
2000-06-29 00:21:06 +04:00
infovalue(base-1)->pc = &pc;
2000-10-02 18:47:43 +04:00
if (tf->is_vararg) /* varargs? */
2000-02-14 19:51:08 +03:00
adjust_varargs(L, base, tf->numparams);
2001-02-07 21:13:49 +03:00
luaD_adjusttop(L, base, tf->maxstacksize);
top = base+tf->numparams+tf->is_vararg;
2000-06-26 23:28:31 +04:00
/* main loop of interpreter */
1998-12-03 18:45:15 +03:00
for (;;) {
2000-06-29 00:21:06 +04:00
const Instruction i = *pc++;
2001-02-07 21:13:49 +03:00
lua_assert(L->top == base+tf->maxstacksize);
2000-06-29 00:21:06 +04:00
if (linehook)
2001-02-07 21:13:49 +03:00
traceexec(L, base, linehook);
2000-02-14 19:51:08 +03:00
switch (GET_OPCODE(i)) {
2000-08-14 21:45:59 +04:00
case OP_RETURN: {
L->top = top;
2000-10-06 16:45:25 +04:00
return base+GETARG_U(i);
2000-08-14 21:45:59 +04:00
}
case OP_CALL: {
2000-08-29 18:48:16 +04:00
int nres = GETARG_B(i);
if (nres == MULT_RET) nres = LUA_MULTRET;
1999-12-01 22:50:08 +03:00
L->top = top;
2000-08-29 18:48:16 +04:00
luaD_call(L, base+GETARG_A(i), nres);
1999-12-01 22:50:08 +03:00
top = L->top;
2001-02-07 21:13:49 +03:00
L->top = base+tf->maxstacksize;
1999-03-06 00:16:07 +03:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_TAILCALL: {
1999-12-01 22:50:08 +03:00
L->top = top;
2000-08-29 18:48:16 +04:00
luaD_call(L, base+GETARG_A(i), LUA_MULTRET);
2000-10-06 16:45:25 +04:00
return base+GETARG_B(i);
2000-08-14 21:45:59 +04:00
}
2000-03-10 21:37:44 +03:00
case OP_PUSHNIL: {
2000-03-04 23:18:15 +03:00
int n = GETARG_U(i);
lua_assert(n>0);
2000-04-05 00:48:44 +04:00
do {
setnilvalue(top++);
2000-04-05 00:48:44 +04:00
} while (--n > 0);
1999-02-08 21:54:19 +03:00
break;
2000-02-14 19:51:08 +03:00
}
2000-08-14 21:45:59 +04:00
case OP_POP: {
2000-02-14 19:51:08 +03:00
top -= GETARG_U(i);
1999-02-09 18:59:10 +03:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_PUSHINT: {
setnvalue(top, (lua_Number)GETARG_S(i));
top++;
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_PUSHSTRING: {
setsvalue(top, kstr[GETARG_U(i)]);
top++;
break;
2000-08-14 21:45:59 +04:00
}
case OP_PUSHNUM: {
setnvalue(top, tf->knum[GETARG_U(i)]);
top++;
break;
2000-08-14 21:45:59 +04:00
}
case OP_PUSHNEGNUM: {
setnvalue(top, -tf->knum[GETARG_U(i)]);
top++;
2000-02-22 16:31:43 +03:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_PUSHUPVALUE: {
setobj(top++, &cl->upvalue[GETARG_U(i)]);
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETLOCAL: {
setobj(top++, base+GETARG_U(i));
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETGLOBAL: {
luaV_getglobal(L, kstr[GETARG_U(i)], top);
top++;
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETTABLE: {
1999-12-01 22:50:08 +03:00
top--;
2001-02-07 21:13:49 +03:00
luaV_gettable(L, top-1, top, top-1);
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETDOTTED: {
setsvalue(top, kstr[GETARG_U(i)]);
2001-02-07 21:13:49 +03:00
luaV_gettable(L, top-1, top, top-1);
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETINDEXED: {
2001-02-07 21:13:49 +03:00
luaV_gettable(L, top-1, base+GETARG_U(i), top-1);
2000-04-07 17:13:11 +04:00
break;
2000-08-14 21:45:59 +04:00
}
2000-03-10 21:37:44 +03:00
case OP_PUSHSELF: {
2001-02-07 21:13:49 +03:00
setobj(top, top-1);
setsvalue(top+1, kstr[GETARG_U(i)]);
luaV_gettable(L, top-1, top+1, top-1);
top++;
1997-09-16 23:25:59 +04:00
break;
}
2000-08-14 21:45:59 +04:00
case OP_CREATETABLE: {
luaC_checkGC(L);
sethvalue(top, luaH_new(L, GETARG_U(i)));
top++;
1997-09-19 22:40:32 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_SETLOCAL: {
setobj(base+GETARG_U(i), --top);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_SETGLOBAL: {
top--;
2001-02-07 21:13:49 +03:00
luaV_setglobal(L, kstr[GETARG_U(i)], top);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_SETTABLE: {
2000-09-05 23:33:32 +04:00
StkId t = top-GETARG_A(i);
2001-02-07 21:13:49 +03:00
luaV_settable(L, t, t+1, top-1);
2000-04-07 17:13:11 +04:00
top -= GETARG_B(i); /* pop values */
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
2000-03-10 21:37:44 +03:00
case OP_SETLIST: {
2000-02-14 19:51:08 +03:00
int aux = GETARG_A(i) * LFIELDS_PER_FLUSH;
int n = GETARG_B(i);
Hash *arr = hvalue(top-n-1);
1999-01-25 20:39:28 +03:00
for (; n; n--)
setobj(luaH_setnum(L, arr, n+aux), --top);
1997-09-16 23:25:59 +04:00
break;
}
2000-03-10 21:37:44 +03:00
case OP_SETMAP: {
2000-02-14 19:51:08 +03:00
int n = GETARG_U(i);
2001-02-07 21:13:49 +03:00
Hash *arr = hvalue((top-2*n)-1);
2000-06-05 18:56:18 +04:00
for (; n; n--) {
1999-12-01 22:50:08 +03:00
top-=2;
setobj(luaH_set(L, arr, top), top+1);
2000-06-05 18:56:18 +04:00
}
1997-09-16 23:25:59 +04:00
break;
}
2000-08-14 21:45:59 +04:00
case OP_ADD: {
2000-08-10 23:50:47 +04:00
if (tonumber(top-2) || tonumber(top-1))
2001-02-07 21:13:49 +03:00
call_arith(L, top-2, TM_ADD);
1999-12-01 22:50:08 +03:00
else
nvalue(top-2) += nvalue(top-1);
top--;
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_ADDI: {
2000-06-26 23:28:31 +04:00
if (tonumber(top-1)) {
setnvalue(top, (lua_Number)GETARG_S(i));
2001-02-07 21:13:49 +03:00
call_arith(L, top-1, TM_ADD);
2000-06-26 23:28:31 +04:00
}
2000-02-22 16:31:43 +03:00
else
nvalue(top-1) += (lua_Number)GETARG_S(i);
2000-02-22 16:31:43 +03:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_SUB: {
2000-08-10 23:50:47 +04:00
if (tonumber(top-2) || tonumber(top-1))
2001-02-07 21:13:49 +03:00
call_arith(L, top-2, TM_SUB);
1999-12-01 22:50:08 +03:00
else
nvalue(top-2) -= nvalue(top-1);
top--;
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_MULT: {
2000-08-10 23:50:47 +04:00
if (tonumber(top-2) || tonumber(top-1))
2001-02-07 21:13:49 +03:00
call_arith(L, top-2, TM_MUL);
1999-12-01 22:50:08 +03:00
else
nvalue(top-2) *= nvalue(top-1);
top--;
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_DIV: {
2000-08-10 23:50:47 +04:00
if (tonumber(top-2) || tonumber(top-1))
2001-02-07 21:13:49 +03:00
call_arith(L, top-2, TM_DIV);
1999-12-01 22:50:08 +03:00
else
nvalue(top-2) /= nvalue(top-1);
top--;
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_POW: {
2001-02-07 21:13:49 +03:00
if (!call_binTM(L, top-2, top-1, top-2, TM_POW))
luaD_error(L, "undefined operation");
1999-12-01 22:50:08 +03:00
top--;
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
2000-04-07 17:13:11 +04:00
case OP_CONCAT: {
2000-03-09 03:19:22 +03:00
int n = GETARG_U(i);
2000-09-05 23:33:32 +04:00
luaV_strconc(L, n, top);
2000-03-09 03:19:22 +03:00
top -= n-1;
luaC_checkGC(L);
1997-09-16 23:25:59 +04:00
break;
2000-03-09 03:19:22 +03:00
}
2000-08-14 21:45:59 +04:00
case OP_MINUS: {
1999-12-01 22:50:08 +03:00
if (tonumber(top-1)) {
setnilvalue(top);
2001-02-07 21:13:49 +03:00
call_arith(L, top-1, TM_UNM);
1997-09-16 23:25:59 +04:00
}
else
2000-03-03 17:58:26 +03:00
nvalue(top-1) = -nvalue(top-1);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_NOT: {
1999-12-01 22:50:08 +03:00
ttype(top-1) =
2000-10-05 16:14:08 +04:00
(ttype(top-1) == LUA_TNIL) ? LUA_TNUMBER : LUA_TNIL;
1999-12-01 22:50:08 +03:00
nvalue(top-1) = 1;
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPNE: {
top -= 2;
2000-09-20 21:57:08 +04:00
if (!luaO_equalObj(top, top+1)) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPEQ: {
top -= 2;
2000-09-20 21:57:08 +04:00
if (luaO_equalObj(top, top+1)) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPLT: {
top -= 2;
2001-02-07 21:13:49 +03:00
if (luaV_lessthan(L, top, top+1)) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPLE: { /* a <= b === !(b<a) */
top -= 2;
2001-02-07 21:13:49 +03:00
if (!luaV_lessthan(L, top+1, top)) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPGT: { /* a > b === (b<a) */
top -= 2;
2001-02-07 21:13:49 +03:00
if (luaV_lessthan(L, top+1, top)) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPGE: { /* a >= b === !(a<b) */
top -= 2;
2001-02-07 21:13:49 +03:00
if (!luaV_lessthan(L, top, top+1)) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPT: {
2000-10-05 16:14:08 +04:00
if (ttype(--top) != LUA_TNIL) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPF: {
2000-10-05 16:14:08 +04:00
if (ttype(--top) == LUA_TNIL) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPONT: {
2000-10-05 16:14:08 +04:00
if (ttype(top-1) == LUA_TNIL) top--;
2000-09-20 21:57:08 +04:00
else dojump(pc, i);
1997-09-19 22:40:32 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPONF: {
2000-10-05 16:14:08 +04:00
if (ttype(top-1) != LUA_TNIL) top--;
2000-09-20 21:57:08 +04:00
else dojump(pc, i);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMP: {
2000-09-20 21:57:08 +04:00
dojump(pc, i);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_PUSHNILJMP: {
setnilvalue(top++);
pc++;
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_FORPREP: {
2001-01-29 18:26:40 +03:00
int jmp = GETARG_S(i);
2000-04-12 22:57:19 +04:00
if (tonumber(top-1))
luaD_error(L, "`for' step must be a number");
2000-04-12 22:57:19 +04:00
if (tonumber(top-2))
luaD_error(L, "`for' limit must be a number");
2000-04-12 22:57:19 +04:00
if (tonumber(top-3))
luaD_error(L, "`for' initial value must be a number");
2001-01-29 18:26:40 +03:00
pc += -jmp; /* "jump" to loop end (delta is negated here) */
goto forloop; /* do not increment index */
2000-08-14 21:45:59 +04:00
}
2000-04-12 22:57:19 +04:00
case OP_FORLOOP: {
lua_assert(ttype(top-1) == LUA_TNUMBER);
lua_assert(ttype(top-2) == LUA_TNUMBER);
2000-10-05 16:14:08 +04:00
if (ttype(top-3) != LUA_TNUMBER)
luaD_error(L, "`for' index must be a number");
2000-06-26 23:28:31 +04:00
nvalue(top-3) += nvalue(top-1); /* increment index */
2001-01-29 18:26:40 +03:00
forloop:
2000-06-26 23:28:31 +04:00
if (nvalue(top-1) > 0 ?
nvalue(top-3) > nvalue(top-2) :
nvalue(top-3) < nvalue(top-2))
top -= 3; /* end loop: remove control variables */
2000-06-26 23:28:31 +04:00
else
2000-09-20 21:57:08 +04:00
dojump(pc, i); /* repeat loop */
break;
}
case OP_LFORPREP: {
2001-01-29 18:26:40 +03:00
int jmp = GETARG_S(i);
2000-10-05 16:14:08 +04:00
if (ttype(top-1) != LUA_TTABLE)
luaD_error(L, "`for' table must be a table");
2001-01-29 18:26:40 +03:00
top += 3; /* index,key,value */
setnvalue(top-3, -1); /* initial index */
setnilvalue(top-2);
setnilvalue(top-1);
pc += -jmp; /* "jump" to loop end (delta is negated here) */
/* go through */
}
case OP_LFORLOOP: {
2001-01-29 16:14:49 +03:00
Hash *t = hvalue(top-4);
int n = (int)nvalue(top-3);
lua_assert(ttype(top-3) == LUA_TNUMBER);
lua_assert(ttype(top-4) == LUA_TTABLE);
n = luaH_nexti(t, n);
if (n == -1) /* end loop? */
top -= 4; /* remove table, index, key, and value */
else {
2001-01-29 16:14:49 +03:00
Node *node = node(t, n);
setnvalue(top-3, n); /* index */
setkey2obj(top-2, node);
setobj(top-1, val(node));
2000-09-20 21:57:08 +04:00
dojump(pc, i); /* repeat loop */
}
2000-04-12 22:57:19 +04:00
break;
}
2000-08-14 21:45:59 +04:00
case OP_CLOSURE: {
int nup = GETARG_B(i);
2001-02-07 21:13:49 +03:00
luaC_checkGC(L);
L->top = top;
luaV_Lclosure(L, tf->kproto[GETARG_A(i)], nup);
top -= (nup-1);
2001-02-07 21:13:49 +03:00
L->top = base+tf->maxstacksize;
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
1997-09-16 23:25:59 +04:00
}
2000-10-06 16:45:25 +04:00
}
1997-09-16 23:25:59 +04:00
}