1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2001-01-29 18:26:40 +03:00
|
|
|
** $Id: lvm.c,v 1.159 2001/01/29 13:02:20 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Lua virtual machine
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
1998-12-24 17:57:23 +03:00
|
|
|
#include <stdlib.h>
|
1997-09-16 23:25:59 +04:00
|
|
|
#include <string.h>
|
|
|
|
|
2000-06-12 17:52:05 +04:00
|
|
|
#include "lua.h"
|
|
|
|
|
2000-05-15 23:48:04 +04:00
|
|
|
#include "lapi.h"
|
1999-12-29 19:31:15 +03:00
|
|
|
#include "ldebug.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "ldo.h"
|
|
|
|
#include "lfunc.h"
|
|
|
|
#include "lgc.h"
|
1998-12-27 23:25:20 +03:00
|
|
|
#include "lobject.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lopcodes.h"
|
1997-11-19 20:29:23 +03:00
|
|
|
#include "lstate.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lstring.h"
|
|
|
|
#include "ltable.h"
|
|
|
|
#include "ltm.h"
|
|
|
|
#include "lvm.h"
|
|
|
|
|
|
|
|
|
1998-01-14 16:49:15 +03:00
|
|
|
#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
|
|
|
*/
|
2000-12-28 15:55:41 +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;
|
1998-12-24 17:57:23 +03:00
|
|
|
else {
|
1999-09-07 00:34:18 +04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
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 */
|
2001-01-18 18:59:09 +03:00
|
|
|
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;
|
2000-08-09 00:42:07 +04:00
|
|
|
int newline;
|
2000-10-04 16:16:08 +04:00
|
|
|
if (pc == 0) { /* may be first time? */
|
2000-08-09 00:42:07 +04:00
|
|
|
ci->line = 1;
|
|
|
|
ci->refi = 0;
|
2000-08-09 18:49:41 +04:00
|
|
|
ci->lastpc = pc+1; /* make sure it will call linehook */
|
2000-08-09 00:42:07 +04:00
|
|
|
}
|
|
|
|
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) {
|
2000-03-30 00:19:20 +04:00
|
|
|
Closure *c = luaF_newclosure(L, nelems);
|
|
|
|
L->top -= nelems;
|
|
|
|
while (nelems--)
|
2001-01-18 18:59:09 +03:00
|
|
|
setobj(&c->upvalue[nelems], L->top+nelems);
|
|
|
|
setclvalue(L->top, c);
|
2000-03-30 00:19:20 +04:00
|
|
|
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);
|
2000-03-30 00:19:20 +04:00
|
|
|
cl->f.c = c;
|
2000-10-05 16:14:08 +04:00
|
|
|
cl->isC = 1;
|
2000-03-30 00:19:20 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void luaV_Lclosure (lua_State *L, Proto *l, int nelems) {
|
2000-10-05 16:14:08 +04:00
|
|
|
Closure *cl = luaV_closure(L, nelems);
|
2000-03-30 00:19:20 +04:00
|
|
|
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) {
|
2000-10-05 17:00:17 +04:00
|
|
|
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? */
|
2001-01-19 16:20:30 +03:00
|
|
|
luaT_gettm(G(L), tg, TM_GETTABLE) == NULL)) { /* or no TM? */
|
2000-08-23 00:49:29 +04:00
|
|
|
/* do a primitive get */
|
2001-01-10 21:56:11 +03:00
|
|
|
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? */
|
2001-01-19 16:20:30 +03:00
|
|
|
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 */
|
2001-01-19 16:20:30 +03:00
|
|
|
tm = luaT_gettmbyObj(G(L), t, TM_GETTABLE);
|
2000-09-05 23:33:32 +04:00
|
|
|
}
|
2000-10-05 17:00:17 +04:00
|
|
|
if (tm != NULL) { /* is there a tag method? */
|
2000-09-05 23:33:32 +04:00
|
|
|
luaD_checkstack(L, 2);
|
2001-01-18 18:59:09 +03:00
|
|
|
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? */
|
2001-01-19 16:20:30 +03:00
|
|
|
luaT_gettm(G(L), tg, TM_SETTABLE) == NULL)) { /* or no TM? */
|
2001-01-18 18:59:09 +03:00
|
|
|
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 */
|
2001-01-19 16:20:30 +03:00
|
|
|
Closure *tm = luaT_gettmbyObj(G(L), t, TM_SETTABLE);
|
2000-10-05 17:00:17 +04:00
|
|
|
if (tm != NULL) {
|
2000-08-23 00:49:29 +04:00
|
|
|
luaD_checkstack(L, 3);
|
2001-01-18 18:59:09 +03:00
|
|
|
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) {
|
2000-05-08 23:32:53 +04:00
|
|
|
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 */
|
2000-02-22 21:12:46 +03:00
|
|
|
luaD_checkstack(L, 3);
|
2001-01-18 18:59:09 +03:00
|
|
|
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) {
|
2001-01-10 21:56:11 +03:00
|
|
|
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) {
|
2001-01-18 18:59:09 +03:00
|
|
|
setobj(oldvalue, L->top - 1); /* raw set */
|
|
|
|
}
|
2001-01-10 21:56:11 +03:00
|
|
|
else { /* call tag method */
|
2000-02-22 21:12:46 +03:00
|
|
|
luaD_checkstack(L, 3);
|
2001-01-18 18:59:09 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-05 17:00:17 +04:00
|
|
|
static int call_binTM (lua_State *L, StkId top, TMS event) {
|
1999-08-17 00:52:00 +04:00
|
|
|
/* try first operand */
|
2001-01-19 16:20:30 +03:00
|
|
|
Closure *tm = luaT_gettmbyObj(G(L), top-2, event);
|
1999-12-01 22:50:08 +03:00
|
|
|
L->top = top;
|
2000-10-05 17:00:17 +04:00
|
|
|
if (tm == NULL) {
|
2001-01-19 16:20:30 +03:00
|
|
|
tm = luaT_gettmbyObj(G(L), top-1, event); /* try second operand */
|
2000-10-05 17:00:17 +04:00
|
|
|
if (tm == NULL) {
|
2001-01-19 16:20:30 +03:00
|
|
|
tm = luaT_gettm(G(L), 0, event); /* try a `global' method */
|
2000-10-05 17:00:17 +04:00
|
|
|
if (tm == NULL)
|
2000-08-10 23:50:47 +04:00
|
|
|
return 0; /* error */
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
}
|
2001-01-24 18:45:33 +03:00
|
|
|
setsvalue(L->top, luaS_new(L, luaT_eventname[event]));
|
|
|
|
incr_top;
|
2000-10-05 17:00:17 +04:00
|
|
|
luaD_callTM(L, tm, 3, 1);
|
2000-08-10 23:50:47 +04:00
|
|
|
return 1;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-05 17:00:17 +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
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-01-11 21:59:32 +03:00
|
|
|
static int luaV_strlessthan (const TString *ls, const TString *rs) {
|
2000-01-19 19:50:30 +03:00
|
|
|
const char *l = ls->str;
|
2000-10-26 16:47:05 +04:00
|
|
|
size_t ll = ls->len;
|
2000-01-19 19:50:30 +03:00
|
|
|
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);
|
2001-01-11 21:59:32 +03:00
|
|
|
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 */
|
2001-01-11 21:59:32 +03:00
|
|
|
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-02-22 21:12:46 +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)
|
2000-02-22 21:12:46 +03:00
|
|
|
return (nvalue(l) < nvalue(r));
|
2000-10-05 16:14:08 +04:00
|
|
|
else if (ttype(l) == LUA_TSTRING && ttype(r) == LUA_TSTRING)
|
2001-01-11 21:59:32 +03:00
|
|
|
return luaV_strlessthan(tsvalue(l), tsvalue(r));
|
2000-03-09 03:19:22 +03:00
|
|
|
else { /* call TM */
|
|
|
|
luaD_checkstack(L, 2);
|
2001-01-18 18:59:09 +03:00
|
|
|
setobj(top++, l);
|
|
|
|
setobj(top++, r);
|
2000-10-05 17:00:17 +04:00
|
|
|
if (!call_binTM(L, top, TM_LT))
|
2000-08-11 20:17:28 +04:00
|
|
|
luaG_ordererror(L, top-2);
|
2000-02-22 21:12:46 +03:00
|
|
|
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)) {
|
2000-10-05 17:00:17 +04:00
|
|
|
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 */
|
2000-11-24 20:39:56 +03:00
|
|
|
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++;
|
|
|
|
}
|
2001-01-24 18:45:33 +03:00
|
|
|
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;
|
|
|
|
}
|
2001-01-18 18:59:09 +03:00
|
|
|
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);
|
2001-01-26 21:43:22 +03:00
|
|
|
TObject *n;
|
2000-08-29 18:41:56 +04:00
|
|
|
for (i=0; firstelem+i<L->top; i++)
|
2001-01-18 18:59:09 +03:00
|
|
|
setobj(luaH_setnum(L, htab, i+1), firstelem+i);
|
2000-06-06 20:31:41 +04:00
|
|
|
/* store counter in field `n' */
|
2001-01-26 21:43:22 +03:00
|
|
|
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 */
|
2001-01-18 18:59:09 +03:00
|
|
|
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
|
|
|
*/
|
2000-04-19 17:36:25 +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;
|
2000-04-19 17:36:25 +04:00
|
|
|
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-12-28 15:55:41 +03:00
|
|
|
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: {
|
1999-12-21 21:04:41 +03:00
|
|
|
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);
|
2001-01-19 16:20:30 +03:00
|
|
|
lua_assert(n>0);
|
2000-04-05 00:48:44 +04:00
|
|
|
do {
|
2001-01-18 18:59:09 +03:00
|
|
|
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: {
|
2001-01-26 21:43:22 +03:00
|
|
|
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: {
|
2001-01-26 21:43:22 +03:00
|
|
|
setsvalue(top, kstr[GETARG_U(i)]);
|
|
|
|
top++;
|
2000-01-25 16:57:18 +03:00
|
|
|
break;
|
2000-08-14 21:45:59 +04:00
|
|
|
}
|
|
|
|
case OP_PUSHNUM: {
|
2001-01-26 21:43:22 +03:00
|
|
|
setnvalue(top, tf->knum[GETARG_U(i)]);
|
|
|
|
top++;
|
1999-02-02 22:41:17 +03:00
|
|
|
break;
|
2000-08-14 21:45:59 +04:00
|
|
|
}
|
|
|
|
case OP_PUSHNEGNUM: {
|
2001-01-26 21:43:22 +03:00
|
|
|
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: {
|
2001-01-18 18:59:09 +03:00
|
|
|
setobj(top++, &cl->upvalue[GETARG_U(i)]);
|
1999-02-02 22:41:17 +03:00
|
|
|
break;
|
2000-08-14 21:45:59 +04:00
|
|
|
}
|
|
|
|
case OP_GETLOCAL: {
|
2001-01-18 18:59:09 +03:00
|
|
|
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;
|
2001-01-18 18:59:09 +03:00
|
|
|
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--;
|
2001-01-18 18:59:09 +03:00
|
|
|
setobj(top-1, luaV_gettable(L, top-1));
|
1999-02-04 19:36:16 +03:00
|
|
|
break;
|
2000-08-14 21:45:59 +04:00
|
|
|
}
|
|
|
|
case OP_GETDOTTED: {
|
2001-01-18 18:59:09 +03:00
|
|
|
setsvalue(top, kstr[GETARG_U(i)]);
|
2000-09-05 23:33:32 +04:00
|
|
|
L->top = top+1;
|
2001-01-18 18:59:09 +03:00
|
|
|
setobj(top-1, luaV_gettable(L, top-1));
|
1997-10-24 22:40:29 +04:00
|
|
|
break;
|
2000-08-14 21:45:59 +04:00
|
|
|
}
|
|
|
|
case OP_GETINDEXED: {
|
2001-01-18 18:59:09 +03:00
|
|
|
setobj(top, base+GETARG_U(i));
|
2000-09-05 23:33:32 +04:00
|
|
|
L->top = top+1;
|
2001-01-18 18:59:09 +03:00
|
|
|
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: {
|
1999-05-21 23:41:49 +04:00
|
|
|
TObject receiver;
|
2001-01-18 18:59:09 +03:00
|
|
|
setobj(&receiver, top-1);
|
2001-01-26 21:43:22 +03:00
|
|
|
setsvalue(top, kstr[GETARG_U(i)]);
|
|
|
|
L->top = ++top;
|
2001-01-18 18:59:09 +03:00
|
|
|
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;
|
1999-11-22 16:12:07 +03:00
|
|
|
luaC_checkGC(L);
|
2001-01-26 21:43:22 +03:00
|
|
|
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: {
|
2001-01-18 18:59:09 +03:00
|
|
|
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: {
|
2001-01-18 18:59:09 +03:00
|
|
|
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;
|
2000-05-22 22:44:46 +04:00
|
|
|
int n = GETARG_B(i);
|
2000-06-08 22:27:13 +04:00
|
|
|
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--)
|
2001-01-18 18:59:09 +03:00
|
|
|
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;
|
2000-06-08 22:27:13 +04:00
|
|
|
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;
|
2001-01-18 18:59:09 +03:00
|
|
|
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))
|
2000-10-05 17:00:17 +04:00
|
|
|
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)) {
|
2001-01-18 18:59:09 +03:00
|
|
|
setnvalue(top, (lua_Number)GETARG_S(i));
|
2000-10-05 17:00:17 +04: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
|
2000-12-04 21:33:40 +03:00
|
|
|
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))
|
2000-10-05 17:00:17 +04:00
|
|
|
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))
|
2000-10-05 17:00:17 +04:00
|
|
|
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))
|
2000-10-05 17:00:17 +04:00
|
|
|
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: {
|
2000-10-05 17:00:17 +04:00
|
|
|
if (!call_binTM(L, top, TM_POW))
|
2001-01-24 18:45:33 +03:00
|
|
|
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;
|
1999-11-22 16:12:07 +03:00
|
|
|
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)) {
|
2001-01-18 18:59:09 +03:00
|
|
|
setnilvalue(top);
|
2000-10-05 17:00:17 +04: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: {
|
2000-03-09 16:57:37 +03:00
|
|
|
top -= 2;
|
2000-09-20 21:57:08 +04:00
|
|
|
if (!luaO_equalObj(top, top+1)) dojump(pc, i);
|
2000-03-09 16:57:37 +03:00
|
|
|
break;
|
2000-08-14 21:45:59 +04:00
|
|
|
}
|
|
|
|
case OP_JMPEQ: {
|
2000-03-09 16:57:37 +03:00
|
|
|
top -= 2;
|
2000-09-20 21:57:08 +04:00
|
|
|
if (luaO_equalObj(top, top+1)) dojump(pc, i);
|
2000-03-09 16:57:37 +03:00
|
|
|
break;
|
2000-08-14 21:45:59 +04:00
|
|
|
}
|
|
|
|
case OP_JMPLT: {
|
2000-03-09 16:57:37 +03:00
|
|
|
top -= 2;
|
2000-09-20 21:57:08 +04:00
|
|
|
if (luaV_lessthan(L, top, top+1, top+2)) dojump(pc, i);
|
2000-03-09 16:57:37 +03:00
|
|
|
break;
|
2000-08-14 21:45:59 +04:00
|
|
|
}
|
|
|
|
case OP_JMPLE: { /* a <= b === !(b<a) */
|
2000-03-09 16:57:37 +03:00
|
|
|
top -= 2;
|
2000-09-20 21:57:08 +04:00
|
|
|
if (!luaV_lessthan(L, top+1, top, top+2)) dojump(pc, i);
|
2000-03-09 16:57:37 +03:00
|
|
|
break;
|
2000-08-14 21:45:59 +04:00
|
|
|
}
|
|
|
|
case OP_JMPGT: { /* a > b === (b<a) */
|
2000-03-09 16:57:37 +03:00
|
|
|
top -= 2;
|
2000-09-20 21:57:08 +04:00
|
|
|
if (luaV_lessthan(L, top+1, top, top+2)) dojump(pc, i);
|
2000-03-09 16:57:37 +03:00
|
|
|
break;
|
2000-08-14 21:45:59 +04:00
|
|
|
}
|
|
|
|
case OP_JMPGE: { /* a >= b === !(a<b) */
|
2000-03-09 16:57:37 +03:00
|
|
|
top -= 2;
|
2000-09-20 21:57:08 +04:00
|
|
|
if (!luaV_lessthan(L, top, top+1, top+2)) dojump(pc, i);
|
2000-03-09 16:57:37 +03:00
|
|
|
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);
|
2000-03-09 16:57:37 +03:00
|
|
|
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);
|
2000-03-09 16:57:37 +03:00
|
|
|
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: {
|
2001-01-18 18:59:09 +03:00
|
|
|
setnilvalue(top++);
|
2000-03-09 16:57:37 +03:00
|
|
|
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))
|
2001-01-24 18:45:33 +03:00
|
|
|
luaD_error(L, "`for' step must be a number");
|
2000-04-12 22:57:19 +04:00
|
|
|
if (tonumber(top-2))
|
2001-01-24 18:45:33 +03:00
|
|
|
luaD_error(L, "`for' limit must be a number");
|
2000-04-12 22:57:19 +04:00
|
|
|
if (tonumber(top-3))
|
2001-01-24 18:45:33 +03:00
|
|
|
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: {
|
2001-01-19 16:20:30 +03:00
|
|
|
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)
|
2001-01-24 18:45:33 +03:00
|
|
|
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))
|
2000-05-15 23:48:04 +04:00
|
|
|
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 */
|
2000-05-15 23:48:04 +04:00
|
|
|
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)
|
2001-01-24 18:45:33 +03:00
|
|
|
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 */
|
2000-05-15 23:48:04 +04:00
|
|
|
}
|
|
|
|
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 */
|
2000-05-15 23:48:04 +04:00
|
|
|
else {
|
2001-01-29 16:14:49 +03:00
|
|
|
Node *node = node(t, n);
|
|
|
|
setnvalue(top-3, n); /* index */
|
2001-01-18 18:59:09 +03:00
|
|
|
setobj(top-2, key(node));
|
|
|
|
setobj(top-1, val(node));
|
2000-09-20 21:57:08 +04:00
|
|
|
dojump(pc, i); /* repeat loop */
|
2000-05-15 23:48:04 +04:00
|
|
|
}
|
2000-04-12 22:57:19 +04:00
|
|
|
break;
|
|
|
|
}
|
2000-08-14 21:45:59 +04:00
|
|
|
case OP_CLOSURE: {
|
2000-03-30 00:19:20 +04:00
|
|
|
L->top = top;
|
|
|
|
luaV_Lclosure(L, tf->kproto[GETARG_A(i)], GETARG_B(i));
|
|
|
|
top = L->top;
|
1999-11-22 16:12:07 +03:00
|
|
|
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
|
|
|
}
|