lua/lvm.c

705 lines
19 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
2000-10-03 18:27:44 +04:00
** $Id: lvm.c,v 1.140 2000/10/03 14:03:21 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_STACK 8
1997-09-16 23:25:59 +04:00
2000-10-03 18:03:21 +04:00
int luaV_tonumber (TObject *obj) {
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...) */
2000-10-03 18:03:21 +04:00
lua_number2str(s, nvalue(obj)); /* convert `s' to number */
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_Tag 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.
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) {
const TObject *im;
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_GETTABLE)) == TAG_NIL)) { /* or no TM? */
/* do a primitive get */
const TObject *h = luaH_get(L, 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) != TAG_NIL ||
(ttype(im=luaT_getim(L, tg, IM_INDEX)) == TAG_NIL))
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-08-23 00:49:29 +04:00
else { /* try a 'gettable' TM */
2000-09-05 23:33:32 +04:00
im = luaT_getimbyObj(L, t, IM_GETTABLE);
}
if (ttype(im) != TAG_NIL) { /* is there a tag method? */
luaD_checkstack(L, 2);
*(L->top+1) = *(L->top-1); /* key */
*L->top = *t; /* table */
*(L->top-1) = *im; /* tag method */
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;
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? */
2000-09-05 23:33:32 +04:00
*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 */
const TObject *im = luaT_getimbyObj(L, t, IM_SETTABLE);
if (ttype(im) != TAG_NIL) {
luaD_checkstack(L, 3);
2000-09-05 23:33:32 +04:00
*(L->top+2) = *(L->top-1);
*(L->top+1) = *key;
*(L->top) = *t;
*(L->top-1) = *im;
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);
2000-10-03 18:27:44 +04:00
const 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? */
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);
2000-09-05 23:33:32 +04:00
*L->top = *im;
ttype(L->top+1) = TAG_STRING;
tsvalue(L->top+1) = s; /* global name */
*(L->top+2) = *value;
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) {
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-09-05 23:33:32 +04:00
*(TObject *)oldvalue = *(L->top - 1);
2000-06-19 22:04:41 +04:00
}
else {
TObject key;
ttype(&key) = TAG_STRING;
tsvalue(&key) = s;
2000-09-05 23:33:32 +04:00
*luaH_set(L, L->gt, &key) = *(L->top - 1);
}
}
1997-09-16 23:25:59 +04:00
else {
luaD_checkstack(L, 3);
2000-09-05 23:33:32 +04:00
*(L->top+2) = *(L->top-1); /* new value */
*(L->top+1) = *oldvalue;
ttype(L->top) = TAG_STRING;
tsvalue(L->top) = s;
*(L->top-1) = *im;
L->top += 3;
luaD_call(L, L->top - 4, 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-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, 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-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-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 */
}
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);
for (i=0; firstelem+i<L->top; i++)
2000-06-06 20:31:41 +04:00
*luaH_setint(L, htab, i+1) = *(firstelem+i);
/* store counter in field `n' */
2000-08-29 18:41:56 +04:00
luaH_setstrnum(L, htab, luaS_new(L, "n"), i);
L->top = firstelem; /* remove elements from the stack */
ttype(L->top) = TAG_TABLE;
hvalue(L->top) = htab;
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) {
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);
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_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: {
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-02-14 19:51:08 +03: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);
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: {
2000-09-05 23:33:32 +04:00
L->top = top;
*top = *luaV_getglobal(L, kstr[GETARG_U(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_GETTABLE: {
2000-09-05 23:33:32 +04:00
L->top = top;
1999-12-01 22:50:08 +03:00
top--;
2000-09-05 23:33:32 +04:00
*(top-1) = *luaV_gettable(L, top-1);
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-09-05 23:33:32 +04:00
tsvalue(top) = kstr[GETARG_U(i)];
L->top = top+1;
*(top-1) = *luaV_gettable(L, top-1);
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETINDEXED: {
2000-09-05 23:33:32 +04:00
*top = *(base+GETARG_U(i));
L->top = top+1;
*(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;
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)];
2000-09-05 23:33:32 +04:00
L->top = top;
*(top-2) = *luaV_gettable(L, top-2);
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: {
2000-09-05 23:33:32 +04:00
L->top = top;
luaV_setglobal(L, kstr[GETARG_U(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_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--)
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);
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)) {
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;
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-09-20 21:57:08 +04:00
if (ttype(--top) != TAG_NIL) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPF: {
2000-09-20 21:57:08 +04:00
if (ttype(--top) == TAG_NIL) dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMPONT: {
2000-09-20 21:57:08 +04:00
if (ttype(top-1) == TAG_NIL) top--;
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-09-20 21:57:08 +04:00
if (ttype(top-1) != TAG_NIL) top--;
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: {
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 */
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: {
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
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;
if (ttype(top-1) != TAG_TABLE)
lua_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 */
2000-08-31 18:08:27 +04:00
*(top-2) = *key(node);
*(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) == TAG_TABLE, "invalid table");
node = luaH_next(L, hvalue(top-3), top-2);
if (node == NULL) /* end loop? */
top -= 3; /* remove table, key, and value */
else {
2000-08-31 18:08:27 +04:00
*(top-2) = *key(node);
*(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-06-29 00:21:06 +04:00
}
1997-09-16 23:25:59 +04:00
}