lua/lvm.c

685 lines
18 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: lvm.c,v 1.157 2001/01/24 16:20:54 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Lua virtual machine
** See Copyright Notice in lua.h
*/
#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"
#ifdef OLD_ANSI
#define strcoll(a,b) strcmp(a,b)
#endif
1997-09-16 23:25:59 +04:00
2000-01-13 18:56:03 +03:00
/*
** Extra stack size to run a function:
2000-03-10 21:37:44 +03:00
** TAG_LINE(1), NAME(1), TM calls(3) (plus some extra...)
2000-01-13 18:56:03 +03:00
*/
#define EXTRA_FSTACK 8
1997-09-16 23:25:59 +04:00
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;
}
}
2000-06-29 00:21:06 +04:00
static void traceexec (lua_State *L, StkId base, StkId top, 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;
L->top = top;
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
}
/*
** Function to index a table.
2000-09-05 23:33:32 +04:00
** Receives the table at `t' and the key at top.
1997-09-16 23:25:59 +04:00
*/
2000-09-05 23:33:32 +04:00
const TObject *luaV_gettable (lua_State *L, StkId t) {
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? */
2000-08-23 00:49:29 +04:00
/* do a primitive get */
const TObject *h = luaH_get(hvalue(t), L->top-1);
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))
2000-09-05 23:33:32 +04:00
return h; /* return result */
/* else call `index' tag method */
1999-02-08 20:07:59 +03:00
}
2000-10-05 16:14:08 +04:00
else { /* try a `gettable' tag method */
tm = luaT_gettmbyObj(G(L), t, TM_GETTABLE);
2000-09-05 23:33:32 +04:00
}
if (tm != NULL) { /* is there a tag method? */
2000-09-05 23:33:32 +04:00
luaD_checkstack(L, 2);
setobj(L->top+1, L->top-1); /* key */
setobj(L->top, t); /* table */
setclvalue(L->top-1, tm); /* tag method */
2000-09-05 23:33:32 +04:00
L->top += 2;
luaD_call(L, L->top - 3, 1);
return L->top - 1; /* call result */
}
else { /* no tag method */
luaG_typeerror(L, t, "index");
return NULL; /* to avoid warnings */
1997-09-16 23:25:59 +04:00
}
}
/*
2000-09-05 23:33:32 +04:00
** Receives table at `t', key at `key' and value at top.
1997-09-16 23:25:59 +04:00
*/
2000-09-05 23:33:32 +04:00
void luaV_settable (lua_State *L, StkId t, StkId key) {
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? */
setobj(luaH_set(L, hvalue(t), key), L->top-1); /* 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) {
2000-08-23 00:49:29 +04:00
luaD_checkstack(L, 3);
setobj(L->top+2, L->top-1);
setobj(L->top+1, key);
setobj(L->top, t);
setclvalue(L->top-1, tm);
2000-09-05 23:33:32 +04:00
L->top += 3;
luaD_call(L, L->top - 4, 0); /* call `settable' tag method */
1997-09-16 23:25:59 +04:00
}
2000-08-23 00:49:29 +04:00
else /* no tag method... */
luaG_typeerror(L, t, "index");
1998-12-30 20:26:49 +03:00
}
}
2000-09-05 23:33:32 +04:00
const TObject *luaV_getglobal (lua_State *L, TString *s) {
const TObject *value = luaH_getstr(L->gt, s);
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)
2000-09-05 23:33:32 +04:00
return value; /* default behavior */
2000-01-13 18:56:03 +03:00
else { /* tag method */
luaD_checkstack(L, 3);
setclvalue(L->top, tm);
setsvalue(L->top+1, s); /* global name */
setobj(L->top+2, value);
2000-09-05 23:33:32 +04:00
L->top += 3;
luaD_call(L, L->top - 3, 1);
return L->top - 1;
1997-09-16 23:25:59 +04:00
}
}
2000-09-05 23:33:32 +04:00
void luaV_setglobal (lua_State *L, TString *s) {
TObject *oldvalue = luaH_setstr(L, L->gt, s);
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) {
setobj(oldvalue, L->top - 1); /* raw set */
}
else { /* call tag method */
luaD_checkstack(L, 3);
setobj(L->top+2, L->top-1); /* new value */
setobj(L->top+1, oldvalue); /* old value */
setsvalue(L->top, s); /* var name */
setclvalue(L->top-1, tm); /* tag method */
2000-09-05 23:33:32 +04:00
L->top += 3;
luaD_call(L, L->top - 4, 0);
1997-09-16 23:25:59 +04:00
}
}
static int call_binTM (lua_State *L, StkId top, TMS event) {
1999-08-17 00:52:00 +04:00
/* try first operand */
Closure *tm = luaT_gettmbyObj(G(L), top-2, event);
1999-12-01 22:50:08 +03:00
L->top = top;
if (tm == NULL) {
tm = luaT_gettmbyObj(G(L), top-1, event); /* try second operand */
if (tm == NULL) {
tm = luaT_gettm(G(L), 0, event); /* try a `global' method */
if (tm == NULL)
2000-08-10 23:50:47 +04:00
return 0; /* error */
1997-09-16 23:25:59 +04:00
}
}
setsvalue(L->top, luaS_new(L, luaT_eventname[event]));
incr_top;
luaD_callTM(L, tm, 3, 1);
2000-08-10 23:50:47 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
static void call_arith (lua_State *L, StkId top, TMS event) {
2000-08-10 23:50:47 +04:00
if (!call_binTM(L, top, event))
2000-10-05 16:14:08 +04:00
luaG_binerror(L, top-2, 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
}
}
2000-03-09 03:19:22 +03:00
int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r, StkId top) {
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));
2000-03-09 03:19:22 +03:00
else { /* call TM */
luaD_checkstack(L, 2);
setobj(top++, l);
setobj(top++, r);
if (!call_binTM(L, top, TM_LT))
2000-08-11 20:17:28 +04:00
luaG_ordererror(L, top-2);
L->top--;
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)) {
if (!call_binTM(L, top, 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
#define dojump(pc, i) { int d = GETARG_S(i); pc += d; }
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;
luaD_checkstack(L, tf->maxstacksize+EXTRA_FSTACK);
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);
else
luaD_adjusttop(L, base, tf->numparams);
1999-12-01 22:50:08 +03:00
top = L->top;
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++;
if (linehook)
traceexec(L, base, top, 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;
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: {
2000-09-05 23:33:32 +04:00
L->top = top;
setobj(top++, luaV_getglobal(L, kstr[GETARG_U(i)]));
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETTABLE: {
2000-09-05 23:33:32 +04:00
L->top = top;
1999-12-01 22:50:08 +03:00
top--;
setobj(top-1, luaV_gettable(L, top-1));
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETDOTTED: {
setsvalue(top, kstr[GETARG_U(i)]);
2000-09-05 23:33:32 +04:00
L->top = top+1;
setobj(top-1, luaV_gettable(L, top-1));
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETINDEXED: {
setobj(top, base+GETARG_U(i));
2000-09-05 23:33:32 +04:00
L->top = top+1;
setobj(top-1, luaV_gettable(L, 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: {
TObject receiver;
setobj(&receiver, top-1);
setsvalue(top, kstr[GETARG_U(i)]);
L->top = ++top;
setobj(top-2, luaV_gettable(L, top-2));
setobj(top-1, &receiver);
1997-09-16 23:25:59 +04:00
break;
}
2000-08-14 21:45:59 +04:00
case OP_CREATETABLE: {
1999-12-01 22:50:08 +03:00
L->top = top;
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: {
L->top = top--;
2000-09-05 23:33:32 +04:00
luaV_setglobal(L, kstr[GETARG_U(i)]);
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);
L->top = top;
luaV_settable(L, t, t+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-12-06 14:40:55 +03:00
L->top = top-n; /* final value of `top' (in case of errors) */
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);
2000-06-05 18:56:18 +04:00
StkId finaltop = top-2*n;
Hash *arr = hvalue(finaltop-1);
1999-12-06 14:40:55 +03:00
L->top = finaltop; /* final value of `top' (in case of errors) */
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))
call_arith(L, top, 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));
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))
call_arith(L, top, 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))
call_arith(L, top, 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))
call_arith(L, top, 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: {
if (!call_binTM(L, top, 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;
1999-12-01 22:50:08 +03:00
L->top = top;
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);
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;
2000-09-20 21:57:08 +04:00
if (luaV_lessthan(L, top, top+1, top+2)) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPLE: { /* a <= b === !(b<a) */
top -= 2;
2000-09-20 21:57:08 +04:00
if (!luaV_lessthan(L, top+1, top, top+2)) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPGT: { /* a > b === (b<a) */
top -= 2;
2000-09-20 21:57:08 +04:00
if (luaV_lessthan(L, top+1, top, top+2)) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPGE: { /* a >= b === !(a<b) */
top -= 2;
2000-09-20 21:57:08 +04:00
if (!luaV_lessthan(L, top, top+1, top+2)) 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: {
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");
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)) { /* `empty' loop? */
top -= 3; /* remove control variables */
2000-09-20 21:57:08 +04:00
dojump(pc, i); /* jump to loop end */
2000-06-26 23:28:31 +04:00
}
2000-04-12 22:57:19 +04:00
break;
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 */
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: {
2000-08-31 18:08:27 +04:00
Node *node;
2000-10-05 16:14:08 +04:00
if (ttype(top-1) != LUA_TTABLE)
luaD_error(L, "`for' table must be a table");
2000-08-31 18:08:27 +04:00
node = luaH_next(L, hvalue(top-1), &luaO_nilobject);
if (node == NULL) { /* `empty' loop? */
top--; /* remove table */
2000-09-20 21:57:08 +04:00
dojump(pc, i); /* jump to loop end */
2000-06-26 23:28:31 +04:00
}
else {
top += 2; /* index,value */
setobj(top-2, key(node));
setobj(top-1, val(node));
2000-06-26 23:28:31 +04:00
}
break;
}
case OP_LFORLOOP: {
2000-08-31 18:08:27 +04:00
Node *node;
lua_assert(ttype(top-3) == LUA_TTABLE);
2000-08-31 18:08:27 +04:00
node = luaH_next(L, hvalue(top-3), top-2);
if (node == NULL) /* end loop? */
top -= 3; /* remove table, key, and value */
else {
setobj(top-2, key(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: {
L->top = top;
luaV_Lclosure(L, tf->kproto[GETARG_A(i)], GETARG_B(i));
top = L->top;
luaC_checkGC(L);
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
}