lua/lvm.c

627 lines
18 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: lvm.c,v 1.218 2002/03/04 21:33:09 roberto Exp roberto $
1997-09-16 23:25:59 +04:00
** Lua virtual machine
** See Copyright Notice in lua.h
*/
2001-02-07 21:13:49 +03:00
#include <stdarg.h>
1997-09-16 23:25:59 +04:00
#include <stdio.h>
#include <stdlib.h>
1997-09-16 23:25:59 +04:00
#include <string.h>
#include "lua.h"
#include "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"
2002-02-06 01:39:12 +03:00
/* limit for table tag-method chains (to avoid loops) */
#define MAXTAGLOOP 10000
1997-09-16 23:25:59 +04:00
2001-06-05 23:41:24 +04:00
static void luaV_checkGC (lua_State *L, StkId top) {
if (G(L)->nblocks >= G(L)->GCthreshold) {
2002-01-26 01:14:54 +03:00
L->top = top; /* limit for active registers */
2001-06-05 23:41:24 +04:00
luaC_collectgarbage(L);
2002-01-26 01:14:54 +03:00
L->top = L->ci->top; /* restore old top position */
2001-06-05 23:41:24 +04:00
}
}
const TObject *luaV_tonumber (const TObject *obj, TObject *n) {
2001-06-28 18:48:44 +04:00
lua_Number num;
if (ttype(obj) == LUA_TNUMBER) return obj;
2001-06-28 18:48:44 +04:00
if (ttype(obj) == LUA_TSTRING && luaO_str2d(svalue(obj), &num)) {
setnvalue(n, num);
return n;
1997-09-16 23:25:59 +04:00
}
else
return NULL;
1997-09-16 23:25:59 +04:00
}
2001-03-26 18:31:49 +04:00
int luaV_tostring (lua_State *L, TObject *obj) {
2000-10-05 16:14:08 +04:00
if (ttype(obj) != LUA_TNUMBER)
2002-02-07 20:24:05 +03:00
return 0;
1997-09-16 23:25:59 +04:00
else {
char s[32]; /* 16 digits, sign, point and \0 (+ some extra...) */
2002-02-15 00:46:43 +03:00
lua_number2str(s, nvalue(obj));
setsvalue(obj, luaS_new(L, s));
2002-02-07 20:24:05 +03:00
return 1;
1997-09-16 23:25:59 +04:00
}
}
static void traceexec (lua_State *L, lua_Hook linehook) {
CallInfo *ci = L->ci;
2001-10-02 20:45:03 +04:00
int *lineinfo = ci_func(ci)->l.p->lineinfo;
int pc = cast(int, *ci->pc - ci_func(ci)->l.p->code) - 1;
int newline;
2002-02-06 01:39:12 +03:00
if (testOpMode(GET_OPCODE(*(*ci->pc - 1)), OpModeNoTrace))
return;
2002-01-18 20:39:06 +03:00
if (ci->line == -1) return; /* no linehooks for this function */
else if (ci->line == 0) { /* first linehook? */
if (pc == 0) { /* function is starting now? */
ci->line = 1;
ci->refi = 0;
ci->lastpc = pc+1; /* make sure it will call linehook */
}
else { /* function started without hooks: */
ci->line = -1; /* keep it that way */
return;
}
}
newline = luaG_getline(lineinfo, pc, ci->line, &ci->refi);
/* calls linehook when enters a new line or jumps back (loop) */
if (newline != ci->line || pc <= ci->lastpc) {
ci->line = newline;
luaD_lineHook(L, newline, linehook);
2002-01-26 01:14:54 +03:00
ci = L->ci; /* previous call may realocate `ci' */
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
}
2002-01-26 01:14:54 +03:00
static void callTMres (lua_State *L, const TObject *f,
const TObject *p1, const TObject *p2, TObject *result ) {
StkId stack = L->stack;
setobj(L->top, f); /* push function */
setobj(L->top+1, p1); /* 1st argument */
setobj(L->top+2, p2); /* 2nd argument */
luaD_checkstack(L, 3); /* cannot check before (could invalidate p1, p2) */
L->top += 3;
luaD_call(L, L->top - 3, 1);
if (stack != L->stack) /* stack changed? */
result = (result - stack) + L->stack; /* correct pointer */
setobj(result, --L->top); /* get result */
}
1997-09-16 23:25:59 +04:00
2001-06-15 23:17:33 +04:00
2001-12-05 23:15:18 +03:00
static void callTM (lua_State *L, const TObject *f,
2002-01-26 01:14:54 +03:00
const TObject *p1, const TObject *p2, const TObject *p3) {
setobj(L->top, f); /* push function */
setobj(L->top+1, p1); /* 1st argument */
setobj(L->top+2, p2); /* 2nd argument */
setobj(L->top+3, p3); /* 3th argument */
luaD_checkstack(L, 4); /* cannot check before (could invalidate p1...p3) */
L->top += 4;
luaD_call(L, L->top - 4, 0);
2001-02-07 21:13:49 +03:00
}
1997-09-16 23:25:59 +04:00
/*
** Function to index a table.
** Receives the table at `t' and the key at `key'.
** leaves the result at `res'.
1997-09-16 23:25:59 +04:00
*/
2001-02-07 21:13:49 +03:00
void luaV_gettable (lua_State *L, StkId t, TObject *key, StkId res) {
2001-12-05 23:15:18 +03:00
const TObject *tm;
2002-02-06 01:39:12 +03:00
int loop = 0;
2001-12-05 23:15:18 +03:00
init:
2001-02-12 16:04:19 +03:00
if (ttype(t) == LUA_TTABLE) { /* `t' is a table? */
2002-01-30 20:26:44 +03:00
Table *et = hvalue(t)->metatable;
2001-12-05 23:15:18 +03:00
if ((tm = fasttm(L, et, TM_GETTABLE)) == NULL) { /* no gettable TM? */
2001-02-12 16:04:19 +03:00
const TObject *h = luaH_get(hvalue(t), key); /* do a primitive get */
/* result is no nil or there is no `index' tag method? */
if (ttype(h) != LUA_TNIL || /* no nil? */
2001-12-05 23:15:18 +03:00
(tm = fasttm(L, et, TM_INDEX)) == NULL) { /* or no index TM? */
2001-02-12 16:04:19 +03:00
setobj(res, h); /* default get */
return;
}
}
2002-02-07 20:24:05 +03:00
/* else will try the tag method */
} else { /* not a table; try a `gettable' tag method */
if (ttype(tm = luaT_gettmbyobj(L, t, TM_GETTABLE)) == LUA_TNIL) {
luaG_typeerror(L, t, "index");
2001-12-05 23:15:18 +03:00
return; /* to avoid warnings */
}
}
if (ttype(tm) == LUA_TFUNCTION)
2002-01-26 01:14:54 +03:00
callTMres(L, tm, t, key, res);
2001-12-05 23:15:18 +03:00
else {
2002-02-06 01:39:12 +03:00
if (++loop == MAXTAGLOOP) luaD_error(L, "loop in gettable");
2001-12-20 18:13:38 +03:00
t = (StkId)tm; /* ?? */
2001-12-05 23:15:18 +03:00
goto init; /* return luaV_gettable(L, tm, key, res); */
2001-02-12 16:04:19 +03:00
}
1997-09-16 23:25:59 +04:00
}
/*
2001-02-07 21:13:49 +03:00
** Receives table at `t', key at `key' and value at `val'.
1997-09-16 23:25:59 +04:00
*/
void luaV_settable (lua_State *L, StkId t, TObject *key, StkId val) {
2001-12-05 23:15:18 +03:00
const TObject *tm;
2002-02-06 01:39:12 +03:00
int loop = 0;
2001-12-05 23:15:18 +03:00
init:
2001-02-12 16:04:19 +03:00
if (ttype(t) == LUA_TTABLE) { /* `t' is a table? */
2002-01-30 20:26:44 +03:00
Table *et = hvalue(t)->metatable;
2001-12-05 23:15:18 +03:00
if ((tm = fasttm(L, et, TM_SETTABLE)) == NULL) { /* no TM? */
luaH_set(L, hvalue(t), key, val); /* do a primitive set */
2001-02-12 16:04:19 +03:00
return;
}
2002-02-07 20:24:05 +03:00
/* else will try the tag method */
} else { /* not a table; try a `settable' tag method */
if (ttype(tm = luaT_gettmbyobj(L, t, TM_SETTABLE)) == LUA_TNIL) {
luaG_typeerror(L, t, "index");
2001-12-05 23:15:18 +03:00
return; /* to avoid warnings */
}
1998-12-30 20:26:49 +03:00
}
2001-12-05 23:15:18 +03:00
if (ttype(tm) == LUA_TFUNCTION)
2002-01-26 01:14:54 +03:00
callTM(L, tm, t, key, val);
2001-12-05 23:15:18 +03:00
else {
2002-02-06 01:39:12 +03:00
if (++loop == MAXTAGLOOP) luaD_error(L, "loop in settable");
2001-12-20 18:13:38 +03:00
t = (StkId)tm; /* ?? */
2001-12-05 23:15:18 +03:00
goto init; /* luaV_settable(L, tm, key, val); */
2001-06-15 23:17:33 +04:00
}
1997-09-16 23:25:59 +04:00
}
2001-02-07 21:13:49 +03:00
static int call_binTM (lua_State *L, const TObject *p1, const TObject *p2,
TObject *res, TMS event) {
2001-12-05 23:15:18 +03:00
const TObject *tm = luaT_gettmbyobj(L, p1, event); /* try first operand */
if (ttype(tm) == LUA_TNIL)
2001-12-05 23:15:18 +03:00
tm = luaT_gettmbyobj(L, p2, event); /* try second operand */
if (ttype(tm) != LUA_TFUNCTION) return 0;
2002-01-26 01:14:54 +03:00
callTMres(L, tm, p1, p2, res);
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 p1, TObject *p2,
StkId res, TMS event) {
if (!call_binTM(L, p1, p2, res, event))
luaG_aritherror(L, p1, p2);
1997-09-16 23:25:59 +04:00
}
static int luaV_strlessthan (const TString *ls, const TString *rs) {
const char *l = getstr(ls);
size_t ll = ls->tsv.len;
const char *r = getstr(rs);
size_t lr = rs->tsv.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);
2001-02-22 21:59:59 +03: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) */
2001-02-22 21:59:59 +03:00
/* both strings longer than `len'; go on comparing (after the `\0') */
2000-05-24 17:54:49 +04:00
len++;
l += len; ll -= len; r += len; lr -= len;
}
1998-03-06 19:54:42 +03:00
}
}
2001-02-07 21:13:49 +03:00
int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r) {
2000-10-05 16:14:08 +04:00
if (ttype(l) == LUA_TNUMBER && ttype(r) == LUA_TNUMBER)
return (nvalue(l) < nvalue(r));
2000-10-05 16:14:08 +04:00
else if (ttype(l) == LUA_TSTRING && ttype(r) == LUA_TSTRING)
return luaV_strlessthan(tsvalue(l), tsvalue(r));
2001-02-07 21:13:49 +03:00
else { /* try TM */
if (!call_binTM(L, l, r, L->top, TM_LT))
luaG_ordererror(L, l, r);
2001-12-12 01:48:44 +03:00
return !l_isfalse(L->top);
1997-09-16 23:25:59 +04:00
}
}
void luaV_strconc (lua_State *L, int total, int last) {
2000-03-09 03:19:22 +03:00
do {
StkId top = L->ci->base + last + 1;
2000-03-09 03:19:22 +03:00
int n = 2; /* number of elements handled in this pass (at least 2) */
2002-02-07 20:24:05 +03:00
if (!tostring(L, top-2) || !tostring(L, top-1)) {
2001-02-07 21:13:49 +03:00
if (!call_binTM(L, top-2, top-1, top-2, TM_CONCAT))
luaG_concaterror(L, top-2, top-1);
} else if (tsvalue(top-1)->tsv.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 */
2001-08-31 23:46:07 +04:00
lu_mem tl = cast(lu_mem, tsvalue(top-1)->tsv.len) +
cast(lu_mem, tsvalue(top-2)->tsv.len);
char *buffer;
2000-03-09 03:19:22 +03:00
int i;
2002-02-07 20:24:05 +03:00
while (n < total && tostring(L, top-n-1)) { /* collect total length */
tl += tsvalue(top-n-1)->tsv.len;
2000-03-09 03:19:22 +03:00
n++;
}
if (tl > MAX_SIZET) luaD_error(L, "string size overflow");
buffer = luaO_openspace(L, tl, char);
2000-03-09 03:19:22 +03:00
tl = 0;
for (i=n; i>0; i--) { /* concat all strings */
size_t l = tsvalue(top-i)->tsv.len;
memcpy(buffer+tl, svalue(top-i), l);
2000-03-09 03:19:22 +03:00
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 */
last -= n-1;
2000-03-09 03:19:22 +03:00
} while (total > 1); /* repeat until only 1 result left */
}
static void powOp (lua_State *L, StkId ra, StkId rb, StkId rc) {
const TObject *b = rb;
const TObject *c = rc;
TObject tempb, tempc;
2002-02-07 20:24:05 +03:00
if (tonumber(b, &tempb) && tonumber(c, &tempc)) {
2002-01-03 20:42:57 +03:00
TObject f, o;
setsvalue(&o, luaS_newliteral(L, "pow"));
luaV_gettable(L, gt(L), &o, &f);
if (ttype(&f) != LUA_TFUNCTION)
luaD_error(L, "`pow' (for `^' operator) is not a function");
2002-01-26 01:14:54 +03:00
callTMres(L, &f, b, c, ra);
}
else
call_arith(L, rb, rc, ra, TM_POW);
}
2000-09-20 21:57:08 +04:00
/*
** some macros for common tasks in `luaV_execute'
*/
2001-12-20 18:13:38 +03:00
#define runtime_check(L, c) { if (!(c)) return 0; }
#define RA(i) (base+GETARG_A(i))
#define RB(i) (base+GETARG_B(i))
#define RC(i) (base+GETARG_C(i))
#define RKC(i) ((GETARG_C(i) < MAXSTACK) ? \
base+GETARG_C(i) : \
2002-01-10 01:02:47 +03:00
k+GETARG_C(i)-MAXSTACK)
#define KBc(i) (k+GETARG_Bc(i))
#define Arith(op, optm) { \
const TObject *b = RB(i); const TObject *c = RKC(i); \
TObject tempb, tempc; \
2002-02-07 20:24:05 +03:00
if (tonumber(b, &tempb) && tonumber(c, &tempc)) { \
2001-06-08 16:29:27 +04:00
setnvalue(ra, nvalue(b) op nvalue(c)); \
} else \
2001-06-08 16:29:27 +04:00
call_arith(L, RB(i), RKC(i), ra, optm); \
}
#define dojump(pc, i) ((pc) += GETARG_sBc(i))
2000-09-20 21:57:08 +04:00
1997-09-16 23:25:59 +04:00
/*
2002-01-10 01:02:47 +03:00
** Executes current Lua function. Parameters are between [base,top).
2001-12-13 21:10:55 +03:00
** Returns n such that the results are between [n,top).
1997-09-16 23:25:59 +04:00
*/
2002-01-10 01:02:47 +03:00
StkId luaV_execute (lua_State *L) {
StkId base;
LClosure *cl;
TObject *k;
const Instruction *pc;
lua_Hook linehook;
2001-12-20 18:13:38 +03:00
reinit:
2002-01-10 01:02:47 +03:00
base = L->ci->base;
cl = &clvalue(base - 1)->l;
k = cl->p->k;
2002-01-18 20:39:06 +03:00
linehook = L->linehook;
2002-01-03 20:42:57 +03:00
L->ci->pc = &pc;
2002-01-26 01:14:54 +03:00
L->ci->pb = &base;
2002-01-10 01:02:47 +03:00
pc = L->ci->savedpc;
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++;
2002-01-26 01:14:54 +03:00
StkId ra;
2000-06-29 00:21:06 +04:00
if (linehook)
traceexec(L, linehook);
2002-01-26 01:14:54 +03:00
ra = RA(i);
lua_assert(L->top <= L->stack + L->stacksize && L->top >= L->ci->base);
2002-01-03 20:42:57 +03:00
lua_assert(L->top == L->ci->top || GET_OPCODE(i) == OP_CALL ||
GET_OPCODE(i) == OP_RETURN || GET_OPCODE(i) == OP_SETLISTO);
2000-02-14 19:51:08 +03:00
switch (GET_OPCODE(i)) {
case OP_MOVE: {
2001-06-08 16:29:27 +04:00
setobj(ra, RB(i));
break;
2000-08-14 21:45:59 +04:00
}
case OP_LOADK: {
2001-06-08 16:29:27 +04:00
setobj(ra, KBc(i));
break;
2000-08-14 21:45:59 +04:00
}
2001-12-12 01:48:44 +03:00
case OP_LOADBOOL: {
setbvalue(ra, GETARG_B(i));
if (GETARG_C(i)) pc++; /* skip next instruction (if C) */
break;
}
case OP_LOADNIL: {
TObject *rb = RB(i);
do {
2001-06-08 16:29:27 +04:00
setnilvalue(rb--);
} while (rb >= ra);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETUPVAL: {
int b = GETARG_B(i);
setobj(ra, cl->upvals[b]->v);
break;
}
2000-08-14 21:45:59 +04:00
case OP_GETGLOBAL: {
lua_assert(ttype(KBc(i)) == LUA_TSTRING);
2001-12-05 23:15:18 +03:00
luaV_gettable(L, gt(L), KBc(i), ra);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_GETTABLE: {
2001-06-08 16:29:27 +04:00
luaV_gettable(L, RB(i), RKC(i), ra);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_SETGLOBAL: {
lua_assert(ttype(KBc(i)) == LUA_TSTRING);
2001-12-05 23:15:18 +03:00
luaV_settable(L, gt(L), KBc(i), ra);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_SETUPVAL: {
int b = GETARG_B(i);
setobj(cl->upvals[b]->v, ra);
break;
}
2000-08-14 21:45:59 +04:00
case OP_SETTABLE: {
2001-06-08 16:29:27 +04:00
luaV_settable(L, RB(i), RKC(i), ra);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_NEWTABLE: {
2001-10-25 23:14:14 +04:00
int b = GETARG_B(i);
if (b > 0) b = twoto(b-1);
sethvalue(ra, luaH_new(L, b, GETARG_C(i)));
2001-06-05 23:41:24 +04:00
luaV_checkGC(L, ra+1);
1997-09-16 23:25:59 +04:00
break;
}
case OP_SELF: {
StkId rb = RB(i);
setobj(ra+1, rb);
luaV_gettable(L, rb, RKC(i), ra);
1997-09-16 23:25:59 +04:00
break;
}
2000-08-14 21:45:59 +04:00
case OP_ADD: {
Arith( + , TM_ADD);
2000-02-22 16:31:43 +03:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_SUB: {
Arith( - , TM_SUB);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_MUL: {
Arith( * , TM_MUL);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_DIV: {
Arith( / , TM_DIV);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_POW: {
powOp(L, ra, RB(i), RKC(i));
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_UNM: {
const TObject *rb = RB(i);
2002-02-07 20:24:05 +03:00
if (tonumber(rb, ra)) {
setnvalue(ra, -nvalue(rb));
}
else {
TObject temp;
setnilvalue(&temp);
call_arith(L, RB(i), &temp, ra, TM_UNM);
1997-09-16 23:25:59 +04:00
}
break;
2000-08-14 21:45:59 +04:00
}
case OP_NOT: {
2001-12-12 01:48:44 +03:00
int res = l_isfalse(RB(i)); /* next assignment may change this value */
setbvalue(ra, res);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_CONCAT: {
int b = GETARG_B(i);
int c = GETARG_C(i);
2002-02-06 01:39:12 +03:00
luaV_strconc(L, c-b+1, c); /* may change `base' (and `ra') */
2002-01-26 01:14:54 +03:00
setobj(base+GETARG_A(i), base+b);
luaV_checkGC(L, base+c+1);
break;
2000-08-14 21:45:59 +04:00
}
case OP_JMP: {
dojump(pc, i);
break;
2000-08-14 21:45:59 +04:00
}
case OP_TESTEQ: { /* skip next instruction if test fails */
if (!luaO_equalObj(ra, RKC(i))) pc++;
break;
2000-08-14 21:45:59 +04:00
}
case OP_TESTNE: {
if (luaO_equalObj(ra, RKC(i))) pc++;
break;
2000-08-14 21:45:59 +04:00
}
case OP_TESTLT: {
if (!luaV_lessthan(L, ra, RKC(i))) pc++;
break;
2000-08-14 21:45:59 +04:00
}
case OP_TESTLE: { /* b <= c === !(c<b) */
if (luaV_lessthan(L, RKC(i), ra)) pc++;
break;
2000-08-14 21:45:59 +04:00
}
case OP_TESTGT: { /* b > c === (c<b) */
if (!luaV_lessthan(L, RKC(i), ra)) pc++;
break;
2000-08-14 21:45:59 +04:00
}
case OP_TESTGE: { /* b >= c === !(b<c) */
if (luaV_lessthan(L, ra, RKC(i))) pc++;
break;
2000-08-14 21:45:59 +04:00
}
case OP_TESTT: {
StkId rb = RB(i);
if (l_isfalse(rb)) pc++;
else setobj(ra, rb);
1997-09-19 22:40:32 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_TESTF: {
2001-12-12 01:48:44 +03:00
StkId rb = RB(i);
if (!l_isfalse(rb)) pc++;
else setobj(ra, rb);
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_CALL: {
2001-12-20 18:13:38 +03:00
StkId firstResult;
int b = GETARG_B(i);
2002-01-10 01:02:47 +03:00
int nresults;
if (b != 0) L->top = ra+b; /* else previous instruction set top */
nresults = GETARG_C(i) - 1;
2001-12-20 18:13:38 +03:00
firstResult = luaD_precall(L, ra);
if (firstResult) {
2002-01-26 01:14:54 +03:00
if (firstResult > L->top) { /* yield? */
2002-01-10 01:02:47 +03:00
(L->ci-1)->savedpc = pc;
return NULL;
}
2001-12-20 18:13:38 +03:00
/* it was a C function (`precall' called it); adjust results */
2002-01-10 01:02:47 +03:00
luaD_poscall(L, nresults, firstResult);
if (nresults >= 0) L->top = L->ci->top;
2001-12-20 18:13:38 +03:00
}
else { /* it is a Lua function: `call' it */
2002-01-10 01:02:47 +03:00
(L->ci-1)->savedpc = pc;
2001-12-20 18:13:38 +03:00
goto reinit;
}
1997-09-16 23:25:59 +04:00
break;
2000-08-14 21:45:59 +04:00
}
case OP_RETURN: {
2001-12-20 18:13:38 +03:00
CallInfo *ci;
2001-09-28 20:48:16 +04:00
int b;
2002-01-03 20:42:57 +03:00
if (L->openupval) luaF_close(L, base);
2001-09-28 20:48:16 +04:00
b = GETARG_B(i);
2002-01-10 01:02:47 +03:00
if (b != 0) L->top = ra+b-1;
2001-12-20 18:13:38 +03:00
ci = L->ci - 1;
2002-01-26 01:14:54 +03:00
lua_assert((ci+1)->pc == &pc);
if (ci->pc != &pc) /* previous function was running `here'? */
return ra; /* no: return */
else { /* yes: continue its execution */
2002-01-10 01:02:47 +03:00
int nresults;
2001-12-20 18:13:38 +03:00
lua_assert(ttype(ci->base-1) == LUA_TFUNCTION);
base = ci->base; /* restore previous values */
cl = &clvalue(base - 1)->l;
2002-01-10 01:02:47 +03:00
k = cl->p->k;
2001-12-20 18:13:38 +03:00
pc = ci->savedpc;
lua_assert(GET_OPCODE(*(pc-1)) == OP_CALL);
2002-01-10 01:02:47 +03:00
nresults = GETARG_C(*(pc-1)) - 1;
luaD_poscall(L, nresults, ra);
if (nresults >= 0) L->top = L->ci->top;
2001-12-20 18:13:38 +03:00
}
break;
}
2002-02-06 01:39:12 +03:00
case OP_FORLOOP: {
lua_Number step, index, limit;
int j = GETARG_sBc(i);
2002-03-05 00:33:09 +03:00
const TObject *plimit = ra+1;
const TObject *pstep = ra+2;
2002-02-06 01:39:12 +03:00
pc += j; /* jump back before tests (for error messages) */
if (ttype(ra) != LUA_TNUMBER)
luaD_error(L, "`for' initial value must be a number");
2002-03-05 00:33:09 +03:00
if (!tonumber(plimit, ra+1))
luaD_error(L, "`for' limit must be a number");
2002-03-05 00:33:09 +03:00
if (!tonumber(pstep, ra+2))
luaD_error(L, "`for' step must be a number");
2002-03-05 00:33:09 +03:00
step = nvalue(pstep);
2002-02-06 01:39:12 +03:00
index = nvalue(ra) + step; /* increment index */
2002-03-05 00:33:09 +03:00
limit = nvalue(plimit);
2002-02-06 01:39:12 +03:00
if (step > 0 ? index <= limit : index >= limit)
chgnvalue(ra, index); /* update index */
else
pc -= j; /* undo jump */
break;
}
case OP_TFORLOOP: {
2002-02-15 00:46:43 +03:00
if (ttype(ra) == LUA_TTABLE) {
Table *t = hvalue(ra);
if (luaH_next(L, t, ra+1))
pc++; /* skip jump (keep looping) */
2002-02-15 00:46:43 +03:00
}
else if (ttype(ra) == LUA_TFUNCTION) {
setobj(ra+1, ra);
L->top = ra+2; /* no arguments */
luaD_call(L, ra+1, GETARG_C(i));
2002-02-15 00:46:43 +03:00
L->top = L->ci->top;
if (ttype(ra+1) != LUA_TNIL)
pc++; /* skip jump (keep looping) */
}
2002-02-06 01:39:12 +03:00
else
2002-03-04 18:40:04 +03:00
luaD_error(L, "`for' generator must be a table or function");
2000-04-12 22:57:19 +04:00
break;
}
case OP_SETLIST:
case OP_SETLISTO: {
int bc;
int n;
2001-10-25 23:14:14 +04:00
Table *h;
runtime_check(L, ttype(ra) == LUA_TTABLE);
h = hvalue(ra);
bc = GETARG_Bc(i);
if (GET_OPCODE(i) == OP_SETLIST)
n = (bc&(LFIELDS_PER_FLUSH-1)) + 1;
2002-01-03 20:42:57 +03:00
else {
n = L->top - ra - 1;
2002-01-03 20:42:57 +03:00
L->top = L->ci->top;
}
bc &= ~(LFIELDS_PER_FLUSH-1); /* bc = bc - bc%FPF */
for (; n > 0; n--)
luaH_setnum(L, h, bc+n, ra+n);
break;
}
case OP_CLOSE: {
luaF_close(L, ra);
break;
}
2000-08-14 21:45:59 +04:00
case OP_CLOSURE: {
Proto *p;
Closure *ncl;
int nup, j;
2001-12-20 18:13:38 +03:00
p = cl->p->p[GETARG_Bc(i)];
nup = p->nupvalues;
ncl = luaF_newLclosure(L, nup);
2001-10-02 20:45:03 +04:00
ncl->l.p = p;
for (j=0; j<nup; j++, pc++) {
2001-10-02 20:45:03 +04:00
if (GET_OPCODE(*pc) == OP_GETUPVAL)
ncl->l.upvals[j] = cl->upvals[GETARG_B(*pc)];
else {
lua_assert(GET_OPCODE(*pc) == OP_MOVE);
ncl->l.upvals[j] = luaF_findupval(L, base + GETARG_B(*pc));
}
}
setclvalue(ra, ncl);
2002-01-26 01:14:54 +03:00
luaV_checkGC(L, L->top);
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
}