lua/lvm.c

704 lines
19 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
2000-08-23 00:53:30 +04:00
** $Id: lvm.c,v 1.128 2000/08/22 20:49:29 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"
1997-09-16 23:25:59 +04:00
#include "lauxlib.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_STACK 8
1997-09-16 23:25:59 +04:00
int luaV_tonumber (TObject *obj) { /* LUA_NUMBER */
2000-03-10 21:37:44 +03:00
if (ttype(obj) != TAG_STRING)
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-03-10 21:37:44 +03:00
ttype(obj) = TAG_NUMBER;
1997-09-16 23:25:59 +04:00
return 0;
}
}
int luaV_tostring (lua_State *L, TObject *obj) { /* LUA_NUMBER */
2000-03-10 21:37:44 +03:00
if (ttype(obj) != TAG_NUMBER)
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...) */
sprintf(s, "%.16g", (double)nvalue(obj));
tsvalue(obj) = luaS_new(L, s);
2000-03-10 21:37:44 +03:00
ttype(obj) = TAG_STRING;
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-06-29 00:21:06 +04:00
int pc = (*ci->pc - 1) - ci->func->f.l->code;
int newline;
if (ci->line == 0) { /* 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
}
static Closure *luaV_closure (lua_State *L, lua_Type t, int nelems) {
Closure *c = luaF_newclosure(L, nelems);
L->top -= nelems;
while (nelems--)
2000-05-30 23:00:31 +04:00
c->upvalue[nelems] = *(L->top+nelems);
ttype(L->top) = t;
clvalue(L->top) = c;
incr_top;
return c;
}
void luaV_Cclosure (lua_State *L, lua_CFunction c, int nelems) {
Closure *cl = luaV_closure(L, TAG_CCLOSURE, nelems);
cl->f.c = c;
}
void luaV_Lclosure (lua_State *L, Proto *l, int nelems) {
Closure *cl = luaV_closure(L, TAG_LCLOSURE, nelems);
cl->f.l = l;
1997-09-16 23:25:59 +04:00
}
/*
** Function to index a table.
** Receives the table at top-2 and the index at top-1.
*/
void luaV_gettable (lua_State *L, StkId top) {
2000-08-23 00:49:29 +04:00
StkId t = top-2;
int tg;
if (ttype(t) == TAG_TABLE && /* `t' is a table? */
((tg = hvalue(t)->htag) == TAG_TABLE || /* with default tag? */
ttype(luaT_getim(L, tg, IM_GETTABLE)) == TAG_NIL)) { /* or no TM? */
/* do a primitive get */
const TObject *h = luaH_get(L, hvalue(t), t+1);
/* result is no nil or there is no `index' tag method? */
const TObject *im;
if (ttype(h) != TAG_NIL ||
(ttype(im=luaT_getim(L, tg, IM_INDEX)) == TAG_NIL))
*t = *h; /* put result into table position */
else { /* call `index' tag method */
L->top = top;
2000-08-23 00:49:29 +04:00
luaD_callTM(L, im, 2, 1);
}
1999-02-08 20:07:59 +03:00
}
2000-08-23 00:49:29 +04:00
else { /* try a 'gettable' TM */
const TObject *im = luaT_getimbyObj(L, t, IM_GETTABLE);
L->top = top;
if (ttype(im) != TAG_NIL) /* call `gettable' tag method */
luaD_callTM(L, im, 2, 1);
else /* no tag method */
luaG_typeerror(L, t, "index");
1997-09-16 23:25:59 +04:00
}
}
/*
** Receives table at *t, index at *(t+1) and value at `top'.
1997-09-16 23:25:59 +04:00
*/
void luaV_settable (lua_State *L, StkId t, StkId top) {
2000-08-23 00:49:29 +04:00
int tg;
if (ttype(t) == TAG_TABLE && /* `t' is a table? */
((tg = hvalue(t)->htag) == TAG_TABLE || /* with default tag? */
ttype(luaT_getim(L, tg, IM_SETTABLE)) == TAG_NIL)) /* or no TM? */
*luaH_set(L, hvalue(t), t+1) = *(top-1); /* do a primitive set */
else { /* try a `settable' tag method */
const TObject *im = luaT_getimbyObj(L, t, IM_SETTABLE);
L->top = top;
2000-08-23 00:49:29 +04:00
if (ttype(im) != TAG_NIL) {
luaD_checkstack(L, 3);
*(top+2) = *(top-1);
*(top+1) = *(t+1);
*(top) = *t;
*(top-1) = *im;
L->top = top+3;
luaD_call(L, top-1, 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
}
}
void luaV_getglobal (lua_State *L, TString *s, StkId top) {
const TObject *value = luaH_getstr(L->gt, s);
TObject *im = luaT_getimbyObj(L, value, IM_GETGLOBAL);
2000-03-10 21:37:44 +03:00
if (ttype(im) == TAG_NIL) /* is there a tag method? */
*top = *value; /* default behavior */
2000-01-13 18:56:03 +03:00
else { /* tag method */
2000-08-23 00:53:30 +04:00
L->top = top;
luaD_checkstack(L, 3);
*top = *im;
2000-03-10 21:37:44 +03:00
ttype(top+1) = TAG_STRING;
tsvalue(top+1) = s; /* global name */
*(top+2) = *value;
L->top = top+3;
luaD_call(L, top, 1);
1997-09-16 23:25:59 +04:00
}
}
void luaV_setglobal (lua_State *L, TString *s, StkId top) {
const TObject *oldvalue = luaH_getstr(L->gt, s);
const TObject *im = luaT_getimbyObj(L, oldvalue, IM_SETGLOBAL);
if (ttype(im) == TAG_NIL) { /* is there a tag method? */
2000-06-19 22:04:41 +04:00
if (oldvalue != &luaO_nilobject) {
/* cast to remove `const' is OK, because `oldvalue' != luaO_nilobject */
2000-05-24 17:54:49 +04:00
*(TObject *)oldvalue = *(top-1);
2000-06-19 22:04:41 +04:00
}
else {
TObject key;
ttype(&key) = TAG_STRING;
tsvalue(&key) = s;
2000-06-06 20:31:41 +04:00
*luaH_set(L, L->gt, &key) = *(top-1);
}
}
1997-09-16 23:25:59 +04:00
else {
2000-08-23 00:53:30 +04:00
L->top = top;
luaD_checkstack(L, 3);
*(top+2) = *(top-1); /* new value */
*(top+1) = *oldvalue;
2000-03-10 21:37:44 +03:00
ttype(top) = TAG_STRING;
tsvalue(top) = s;
*(top-1) = *im;
L->top = top+3;
luaD_call(L, top-1, 0);
1997-09-16 23:25:59 +04:00
}
}
2000-08-10 23:50:47 +04:00
static int call_binTM (lua_State *L, StkId top, IMS event) {
1999-08-17 00:52:00 +04:00
/* try first operand */
1999-12-01 22:50:08 +03:00
const TObject *im = luaT_getimbyObj(L, top-2, event);
L->top = top;
2000-03-10 21:37:44 +03:00
if (ttype(im) == TAG_NIL) {
1999-12-01 22:50:08 +03:00
im = luaT_getimbyObj(L, top-1, event); /* try second operand */
2000-03-10 21:37:44 +03:00
if (ttype(im) == TAG_NIL) {
1999-12-27 20:33:22 +03:00
im = luaT_getim(L, 0, event); /* try a `global' method */
2000-03-10 21:37:44 +03:00
if (ttype(im) == TAG_NIL)
2000-08-10 23:50:47 +04:00
return 0; /* error */
1997-09-16 23:25:59 +04:00
}
}
lua_pushstring(L, luaT_eventname[event]);
luaD_callTM(L, im, 3, 1);
2000-08-10 23:50:47 +04:00
return 1;
1997-09-16 23:25:59 +04:00
}
1999-12-01 22:50:08 +03:00
static void call_arith (lua_State *L, StkId top, IMS event) {
2000-08-10 23:50:47 +04:00
if (!call_binTM(L, top, event))
luaG_binerror(L, top-2, TAG_NUMBER, "perform arithmetic on");
1997-09-16 23:25:59 +04:00
}
2000-03-10 21:37:44 +03:00
static int luaV_strcomp (const TString *ls, const TString *rs) {
const char *l = ls->str;
2000-05-24 17:54:49 +04:00
size_t ll = ls->u.s.len;
const char *r = rs->str;
2000-05-24 17:54:49 +04:00
size_t lr = rs->u.s.len;
1998-03-06 19:54:42 +03:00
for (;;) {
2000-05-24 17:54:49 +04:00
int temp = strcoll(l, r);
1998-03-06 19:54:42 +03:00
if (temp != 0) return temp;
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 == ll) /* l is finished? */
return (len == lr) ? 0 : -1; /* l is equal or smaller than r */
else if (len == lr) /* r is finished? */
return 1; /* l is greater than r (because l is not finished) */
/* 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-03-10 21:37:44 +03:00
if (ttype(l) == TAG_NUMBER && ttype(r) == TAG_NUMBER)
return (nvalue(l) < nvalue(r));
2000-03-10 21:37:44 +03:00
else if (ttype(l) == TAG_STRING && ttype(r) == TAG_STRING)
return (luaV_strcomp(tsvalue(l), tsvalue(r)) < 0);
2000-03-09 03:19:22 +03:00
else { /* call TM */
luaD_checkstack(L, 2);
*top++ = *l;
*top++ = *r;
2000-08-10 23:50:47 +04:00
if (!call_binTM(L, top, IM_LT))
2000-08-11 20:17:28 +04:00
luaG_ordererror(L, top-2);
L->top--;
2000-03-10 21:37:44 +03:00
return (ttype(L->top) != TAG_NIL);
1997-09-16 23:25:59 +04:00
}
}
2000-03-09 03:19:22 +03:00
static void strconc (lua_State *L, int total, StkId top) {
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, IM_CONCAT))
luaG_binerror(L, top-2, TAG_STRING, "concat");
}
2000-03-17 16:09:12 +03:00
else if (tsvalue(top-1)->u.s.len > 0) { /* if len=0, do nothing */
/* at least two string values; get as many as possible */
2000-05-25 23:02:21 +04:00
lint32 tl = (lint32)tsvalue(top-1)->u.s.len +
(lint32)tsvalue(top-2)->u.s.len;
2000-03-09 03:19:22 +03:00
char *buffer;
int i;
while (n < total && !tostring(L, top-n-1)) { /* collect total length */
tl += tsvalue(top-n-1)->u.s.len;
n++;
}
2000-05-24 17:54:49 +04:00
if (tl > MAX_SIZET) lua_error(L, "string size overflow");
2000-03-09 03:19:22 +03:00
buffer = luaL_openspace(L, tl);
tl = 0;
for (i=n; i>0; i--) { /* concat all strings */
2000-05-25 23:02:21 +04:00
size_t l = tsvalue(top-i)->u.s.len;
2000-03-09 03:19:22 +03:00
memcpy(buffer+tl, tsvalue(top-i)->str, l);
tl += l;
}
tsvalue(top-n) = luaS_newlstr(L, buffer, tl);
}
total -= n-1; /* got `n' strings to create 1 new */
top -= n-1;
} while (total > 1); /* repeat until only 1 result left */
}
1999-12-01 22:50:08 +03:00
void luaV_pack (lua_State *L, StkId firstelem, int nvararg, TObject *tab) {
1997-09-16 23:25:59 +04:00
int i;
Hash *htab;
htab = hvalue(tab) = luaH_new(L, nvararg+1); /* +1 for field `n' */
2000-03-28 00:10:21 +04:00
ttype(tab) = TAG_TABLE;
for (i=0; i<nvararg; i++)
2000-06-06 20:31:41 +04:00
*luaH_setint(L, htab, i+1) = *(firstelem+i);
/* store counter in field `n' */
luaH_setstrnum(L, htab, luaS_new(L, "n"), nvararg);
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) {
1997-09-16 23:25:59 +04:00
TObject arg;
1999-12-01 22:50:08 +03:00
int nvararg = (L->top-base) - nfixargs;
if (nvararg < 0) {
luaV_pack(L, base, 0, &arg);
luaD_adjusttop(L, base, nfixargs);
}
else {
luaV_pack(L, base+nfixargs, nvararg, &arg);
L->top = base+nfixargs;
}
*L->top++ = arg;
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) {
const Proto *tf = cl->f.l;
StkId top; /* keep top local, for performance */
const Instruction *pc = tf->code;
2000-03-10 21:37:44 +03:00
TString **kstr = tf->kstr;
2000-06-29 00:21:06 +04:00
lua_Hook linehook = L->linehook;
infovalue(base-1)->pc = &pc;
2000-02-14 19:51:08 +03:00
luaD_checkstack(L, tf->maxstacksize+EXTRA_STACK);
if (tf->is_vararg) { /* varargs? */
adjust_varargs(L, base, tf->numparams);
luaC_checkGC(L);
1998-01-12 16:35:37 +03:00
}
2000-02-14 19:51:08 +03:00
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_END: {
return L->top; /* no results */
2000-08-14 21:45:59 +04:00
}
case OP_RETURN: {
L->top = top;
2000-02-14 19:51:08 +03:00
return base+GETARG_U(i);
2000-08-14 21:45:59 +04:00
}
case OP_CALL: {
1999-12-01 22:50:08 +03:00
L->top = top;
2000-02-14 19:51:08 +03:00
luaD_call(L, base+GETARG_A(i), GETARG_B(i));
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-02-14 19:51:08 +03:00
luaD_call(L, base+GETARG_A(i), MULT_RET);
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);
2000-06-30 18:35:17 +04:00
LUA_ASSERT(n>0, "invalid argument");
2000-04-05 00:48:44 +04:00
do {
2000-03-10 21:37:44 +03:00
ttype(top++) = TAG_NIL;
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: {
2000-03-10 21:37:44 +03:00
ttype(top) = TAG_NUMBER;
nvalue(top) = (Number)GETARG_S(i);
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
}
case OP_PUSHSTRING: {
2000-03-10 21:37:44 +03:00
ttype(top) = TAG_STRING;
2000-02-14 19:51:08 +03:00
tsvalue(top) = kstr[GETARG_U(i)];
top++;
break;
2000-08-14 21:45:59 +04:00
}
case OP_PUSHNUM: {
2000-03-10 21:37:44 +03:00
ttype(top) = TAG_NUMBER;
2000-02-14 19:51:08 +03:00
nvalue(top) = tf->knum[GETARG_U(i)];
top++;
break;
2000-08-14 21:45:59 +04:00
}
case OP_PUSHNEGNUM: {
2000-03-10 21:37:44 +03:00
ttype(top) = TAG_NUMBER;
2000-02-22 16:31:43 +03:00
nvalue(top) = -tf->knum[GETARG_U(i)];
top++;
break;
2000-08-14 21:45:59 +04:00
}
case OP_PUSHUPVALUE: {
2000-05-30 23:00:31 +04:00
*top++ = cl->upvalue[GETARG_U(i)];
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETLOCAL: {
2000-02-14 19:51:08 +03:00
*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);
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
}
case OP_GETTABLE: {
luaV_gettable(L, top);
1999-12-01 22:50:08 +03:00
top--;
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETDOTTED: {
2000-03-10 21:37:44 +03:00
ttype(top) = TAG_STRING;
2000-02-14 19:51:08 +03:00
tsvalue(top++) = kstr[GETARG_U(i)];
luaV_gettable(L, top);
1999-12-01 22:50:08 +03:00
top--;
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETINDEXED: {
2000-04-07 17:13:11 +04:00
*top++ = *(base+GETARG_U(i));
luaV_gettable(L, top);
top--;
break;
2000-08-14 21:45:59 +04:00
}
2000-03-10 21:37:44 +03:00
case OP_PUSHSELF: {
TObject receiver;
1999-12-01 22:50:08 +03:00
receiver = *(top-1);
2000-03-10 21:37:44 +03:00
ttype(top) = TAG_STRING;
2000-02-14 19:51:08 +03:00
tsvalue(top++) = kstr[GETARG_U(i)];
luaV_gettable(L, top);
1999-12-01 22:50:08 +03:00
*(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);
hvalue(top) = luaH_new(L, GETARG_U(i));
2000-03-28 00:10:21 +04:00
ttype(top) = TAG_TABLE;
1999-12-01 22:50:08 +03:00
top++;
1997-09-19 22:40:32 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_SETLOCAL: {
*(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: {
luaV_setglobal(L, kstr[GETARG_U(i)], top);
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
}
case OP_SETTABLE: {
2000-04-07 17:13:11 +04:00
luaV_settable(L, top-GETARG_A(i), top);
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--)
2000-06-06 20:31:41 +04:00
*luaH_setint(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;
2000-06-06 20:31:41 +04:00
*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))
1999-12-01 22:50:08 +03:00
call_arith(L, top, IM_ADD);
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)) {
ttype(top) = TAG_NUMBER;
nvalue(top) = (Number)GETARG_S(i);
call_arith(L, top+1, IM_ADD);
}
2000-02-22 16:31:43 +03:00
else
2000-03-10 21:37:44 +03:00
nvalue(top-1) += (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))
1999-12-01 22:50:08 +03:00
call_arith(L, top, IM_SUB);
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))
1999-12-01 22:50:08 +03:00
call_arith(L, top, IM_MUL);
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))
1999-12-01 22:50:08 +03:00
call_arith(L, top, IM_DIV);
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: {
2000-08-10 23:50:47 +04:00
if (!call_binTM(L, top, IM_POW))
lua_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);
strconc(L, n, top);
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)) {
2000-03-10 21:37:44 +03:00
ttype(top) = TAG_NIL;
1999-12-01 22:50:08 +03:00
call_arith(L, top+1, IM_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-03-10 21:37:44 +03:00
(ttype(top-1) == TAG_NIL) ? TAG_NUMBER : TAG_NIL;
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;
if (!luaO_equalObj(top, top+1)) pc += GETARG_S(i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPEQ: {
top -= 2;
if (luaO_equalObj(top, top+1)) pc += GETARG_S(i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPLT: {
top -= 2;
if (luaV_lessthan(L, top, top+1, top+2)) pc += GETARG_S(i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPLE: { /* a <= b === !(b<a) */
top -= 2;
if (!luaV_lessthan(L, top+1, top, top+2)) pc += GETARG_S(i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPGT: { /* a > b === (b<a) */
top -= 2;
if (luaV_lessthan(L, top+1, top, top+2)) pc += GETARG_S(i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPGE: { /* a >= b === !(a<b) */
top -= 2;
if (!luaV_lessthan(L, top, top+1, top+2)) pc += GETARG_S(i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPT: {
2000-03-10 21:37:44 +03:00
if (ttype(--top) != TAG_NIL) pc += GETARG_S(i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPF: {
2000-03-10 21:37:44 +03:00
if (ttype(--top) == TAG_NIL) pc += GETARG_S(i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPONT: {
2000-03-10 21:37:44 +03:00
if (ttype(top-1) != TAG_NIL) pc += GETARG_S(i);
1999-12-01 22:50:08 +03:00
else top--;
1997-09-19 22:40:32 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPONF: {
2000-03-10 21:37:44 +03:00
if (ttype(top-1) == TAG_NIL) pc += GETARG_S(i);
1999-12-01 22:50:08 +03:00
else top--;
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMP: {
2000-02-14 19:51:08 +03:00
pc += GETARG_S(i);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_PUSHNILJMP: {
2000-03-10 21:37:44 +03:00
ttype(top++) = TAG_NIL;
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))
lua_error(L, "`for' step must be a number");
if (tonumber(top-2))
lua_error(L, "`for' limit must be a number");
if (tonumber(top-3))
lua_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 */
pc += GETARG_S(i)+1; /* jump to loop end */
}
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: {
2000-06-30 18:35:17 +04:00
LUA_ASSERT(ttype(top-1) == TAG_NUMBER, "invalid step");
LUA_ASSERT(ttype(top-2) == TAG_NUMBER, "invalid limit");
2000-06-26 23:28:31 +04:00
if (ttype(top-3) != TAG_NUMBER)
lua_error(L, "`for' index must be a number");
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
pc += GETARG_S(i); /* repeat loop */
break;
}
case OP_LFORPREP: {
if (ttype(top-1) != TAG_TABLE)
lua_error(L, "`for' table must be a table");
2000-06-26 23:28:31 +04:00
top++; /* counter */
L->top = top;
ttype(top-1) = TAG_NUMBER;
nvalue(top-1) = (Number)luaA_next(L, hvalue(top-2), 0); /* counter */
if (nvalue(top-1) == 0) { /* `empty' loop? */
top -= 2; /* remove table and counter */
pc += GETARG_S(i)+1; /* jump to loop end */
}
else {
top += 2; /* index,value */
2000-06-30 18:35:17 +04:00
LUA_ASSERT(top==L->top, "bad top");
2000-06-26 23:28:31 +04:00
}
break;
}
case OP_LFORLOOP: {
int n;
top -= 2; /* remove old index,value */
2000-06-30 18:35:17 +04:00
LUA_ASSERT(ttype(top-2) == TAG_TABLE, "invalid table");
LUA_ASSERT(ttype(top-1) == TAG_NUMBER, "invalid counter");
L->top = top;
n = luaA_next(L, hvalue(top-2), (int)nvalue(top-1));
if (n == 0) /* end loop? */
top -= 2; /* remove table and counter */
else {
nvalue(top-1) = (Number)n;
top += 2; /* new index,value */
pc += GETARG_S(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-06-29 00:21:06 +04:00
}
1997-09-16 23:25:59 +04:00
}