1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2009-04-08 22:04:33 +04:00
|
|
|
** $Id: ldo.c,v 2.57 2009/03/26 12:56:38 roberto Exp roberto $
|
1997-09-16 23:25:59 +04:00
|
|
|
** Stack and Call structure of Lua
|
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2005-03-08 21:09:16 +03:00
|
|
|
#include <setjmp.h>
|
1997-11-07 18:09:49 +03:00
|
|
|
#include <stdlib.h>
|
1997-09-16 23:25:59 +04:00
|
|
|
#include <string.h>
|
|
|
|
|
2002-12-04 20:38:31 +03:00
|
|
|
#define ldo_c
|
2004-05-01 00:13:38 +04:00
|
|
|
#define LUA_CORE
|
2002-12-04 20:38:31 +03:00
|
|
|
|
2000-06-12 17:52:05 +04:00
|
|
|
#include "lua.h"
|
|
|
|
|
2009-03-10 20:14:37 +03: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"
|
2001-09-07 21:39:10 +04:00
|
|
|
#include "lfunc.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lgc.h"
|
|
|
|
#include "lmem.h"
|
|
|
|
#include "lobject.h"
|
2002-01-10 01:02:47 +03:00
|
|
|
#include "lopcodes.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lparser.h"
|
1997-11-19 20:29:23 +03:00
|
|
|
#include "lstate.h"
|
1998-08-21 21:43:44 +04:00
|
|
|
#include "lstring.h"
|
2000-05-08 23:32:53 +04:00
|
|
|
#include "ltable.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "ltm.h"
|
|
|
|
#include "lundump.h"
|
|
|
|
#include "lvm.h"
|
|
|
|
#include "lzio.h"
|
|
|
|
|
|
|
|
|
2000-12-28 15:55:41 +03:00
|
|
|
|
2003-02-27 14:52:30 +03:00
|
|
|
|
2002-08-05 21:36:24 +04:00
|
|
|
/*
|
|
|
|
** {======================================================
|
2004-05-01 00:13:38 +04:00
|
|
|
** Error-recovery functions
|
2002-08-05 21:36:24 +04:00
|
|
|
** =======================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2002-01-26 01:14:54 +03:00
|
|
|
/* chain list of long jump buffers */
|
|
|
|
struct lua_longjmp {
|
|
|
|
struct lua_longjmp *previous;
|
2005-03-09 19:28:07 +03:00
|
|
|
luai_jmpbuf b;
|
2002-01-26 01:14:54 +03:00
|
|
|
volatile int status; /* error code */
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-08-22 23:58:29 +04:00
|
|
|
void luaD_seterrorobj (lua_State *L, int errcode, StkId oldtop) {
|
2002-08-05 21:36:24 +04:00
|
|
|
switch (errcode) {
|
|
|
|
case LUA_ERRMEM: {
|
2003-12-10 15:13:36 +03:00
|
|
|
setsvalue2s(L, oldtop, luaS_newliteral(L, MEMERRMSG));
|
2002-08-05 21:36:24 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LUA_ERRERR: {
|
2003-12-10 15:13:36 +03:00
|
|
|
setsvalue2s(L, oldtop, luaS_newliteral(L, "error in error handling"));
|
2002-08-05 21:36:24 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LUA_ERRSYNTAX:
|
|
|
|
case LUA_ERRRUN: {
|
2003-12-10 15:13:36 +03:00
|
|
|
setobjs2s(L, oldtop, L->top - 1); /* error message on current top */
|
2002-11-06 22:08:00 +03:00
|
|
|
break;
|
2002-08-05 21:36:24 +04:00
|
|
|
}
|
|
|
|
}
|
2002-11-06 22:08:00 +03:00
|
|
|
L->top = oldtop + 1;
|
2002-08-05 21:36:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-07-11 18:00:31 +04:00
|
|
|
static void restore_stack_limit (lua_State *L) {
|
|
|
|
lua_assert(L->stack_last - L->stack == L->stacksize - EXTRA_STACK - 1);
|
|
|
|
if (L->size_ci > LUAI_MAXCALLS) { /* there was an overflow? */
|
2005-12-22 19:19:56 +03:00
|
|
|
int inuse = cast_int(L->ci - L->base_ci);
|
2005-07-11 18:00:31 +04:00
|
|
|
if (inuse + 1 < LUAI_MAXCALLS) /* can `undo' overflow? */
|
|
|
|
luaD_reallocCI(L, LUAI_MAXCALLS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-08-05 21:36:24 +04:00
|
|
|
void luaD_throw (lua_State *L, int errcode) {
|
|
|
|
if (L->errorJmp) {
|
|
|
|
L->errorJmp->status = errcode;
|
2005-03-09 19:28:07 +03:00
|
|
|
LUAI_THROW(L, L->errorJmp);
|
2002-08-05 21:36:24 +04:00
|
|
|
}
|
2009-03-03 21:51:24 +03:00
|
|
|
else { /* thread has no error handler */
|
|
|
|
L->status = cast_byte(errcode); /* mark it as dead */
|
|
|
|
if (G(L)->mainthread->errorJmp) { /* main thread has a handler? */
|
|
|
|
setobjs2s(L, G(L)->mainthread->top++, L->top - 1); /* copy error obj. */
|
|
|
|
luaD_throw(G(L)->mainthread, errcode); /* jump to it */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (G(L)->panic) {
|
|
|
|
lua_unlock(L);
|
|
|
|
G(L)->panic(L);
|
|
|
|
}
|
|
|
|
exit(EXIT_FAILURE);
|
2005-07-11 18:00:31 +04:00
|
|
|
}
|
2002-08-05 21:36:24 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) {
|
2006-08-15 23:59:20 +04:00
|
|
|
unsigned short oldnCcalls = G(L)->nCcalls;
|
2002-08-05 21:36:24 +04:00
|
|
|
struct lua_longjmp lj;
|
2006-10-10 21:40:17 +04:00
|
|
|
lj.status = LUA_OK;
|
2002-08-05 21:36:24 +04:00
|
|
|
lj.previous = L->errorJmp; /* chain new error handler */
|
|
|
|
L->errorJmp = &lj;
|
2005-03-09 19:28:07 +03:00
|
|
|
LUAI_TRY(L, &lj,
|
2002-08-05 21:36:24 +04:00
|
|
|
(*f)(L, ud);
|
2003-05-13 23:22:19 +04:00
|
|
|
);
|
2002-08-05 21:36:24 +04:00
|
|
|
L->errorJmp = lj.previous; /* restore old error handler */
|
2006-08-15 23:59:20 +04:00
|
|
|
G(L)->nCcalls = oldnCcalls;
|
2002-08-05 21:36:24 +04:00
|
|
|
return lj.status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* }====================================================== */
|
|
|
|
|
|
|
|
|
2003-12-10 15:13:36 +03:00
|
|
|
static void correctstack (lua_State *L, TValue *oldstack) {
|
2002-01-26 01:14:54 +03:00
|
|
|
CallInfo *ci;
|
2002-08-30 23:09:21 +04:00
|
|
|
GCObject *up;
|
2002-01-26 01:14:54 +03:00
|
|
|
L->top = (L->top - oldstack) + L->stack;
|
2002-08-30 23:09:21 +04:00
|
|
|
for (up = L->openupval; up != NULL; up = up->gch.next)
|
2003-12-10 15:13:36 +03:00
|
|
|
gco2uv(up)->v = (gco2uv(up)->v - oldstack) + L->stack;
|
2002-01-26 01:14:54 +03:00
|
|
|
for (ci = L->base_ci; ci <= L->ci; ci++) {
|
|
|
|
ci->top = (ci->top - oldstack) + L->stack;
|
2002-11-21 18:46:44 +03:00
|
|
|
ci->base = (ci->base - oldstack) + L->stack;
|
2004-05-31 22:51:50 +04:00
|
|
|
ci->func = (ci->func - oldstack) + L->stack;
|
2002-01-26 01:14:54 +03:00
|
|
|
}
|
2005-08-22 22:54:49 +04:00
|
|
|
L->base = (L->base - oldstack) + L->stack;
|
2002-01-26 01:14:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void luaD_reallocstack (lua_State *L, int newsize) {
|
2003-12-10 15:13:36 +03:00
|
|
|
TValue *oldstack = L->stack;
|
2004-09-08 18:23:09 +04:00
|
|
|
int realsize = newsize + 1 + EXTRA_STACK;
|
|
|
|
lua_assert(L->stack_last - L->stack == L->stacksize - EXTRA_STACK - 1);
|
|
|
|
luaM_reallocvector(L, L->stack, L->stacksize, realsize, TValue);
|
|
|
|
L->stacksize = realsize;
|
|
|
|
L->stack_last = L->stack+newsize;
|
2002-01-26 01:14:54 +03:00
|
|
|
correctstack(L, oldstack);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-26 23:46:10 +03:00
|
|
|
void luaD_reallocCI (lua_State *L, int newsize) {
|
|
|
|
CallInfo *oldci = L->base_ci;
|
|
|
|
luaM_reallocvector(L, L->base_ci, L->size_ci, newsize, CallInfo);
|
2005-03-18 21:55:09 +03:00
|
|
|
L->size_ci = newsize;
|
2002-03-26 23:46:10 +03:00
|
|
|
L->ci = (L->ci - oldci) + L->base_ci;
|
2004-09-08 18:23:09 +04:00
|
|
|
L->end_ci = L->base_ci + L->size_ci - 1;
|
2000-12-28 15:55:41 +03:00
|
|
|
}
|
1999-05-24 21:53:03 +04:00
|
|
|
|
|
|
|
|
2002-01-26 01:14:54 +03:00
|
|
|
void luaD_growstack (lua_State *L, int n) {
|
2002-03-26 23:46:10 +03:00
|
|
|
if (n <= L->stacksize) /* double size is enough? */
|
|
|
|
luaD_reallocstack(L, 2*L->stacksize);
|
|
|
|
else
|
2004-09-08 18:23:09 +04:00
|
|
|
luaD_reallocstack(L, L->stacksize + n);
|
2002-03-26 23:46:10 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-03 23:50:25 +03:00
|
|
|
static CallInfo *growCI (lua_State *L) {
|
2005-03-09 19:28:07 +03:00
|
|
|
if (L->size_ci > LUAI_MAXCALLS) /* overflow while handling overflow? */
|
2002-06-18 19:19:27 +04:00
|
|
|
luaD_throw(L, LUA_ERRERR);
|
2001-06-05 23:41:24 +04:00
|
|
|
else {
|
2002-03-26 23:46:10 +03:00
|
|
|
luaD_reallocCI(L, 2*L->size_ci);
|
2005-03-09 19:28:07 +03:00
|
|
|
if (L->size_ci > LUAI_MAXCALLS)
|
2002-05-15 22:57:44 +04:00
|
|
|
luaG_runerror(L, "stack overflow");
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
2004-09-08 18:23:09 +04:00
|
|
|
return ++L->ci;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-09-03 00:00:41 +04:00
|
|
|
void luaD_callhook (lua_State *L, int event, int line) {
|
2002-07-08 22:21:33 +04:00
|
|
|
lua_Hook hook = L->hook;
|
2002-11-18 14:01:55 +03:00
|
|
|
if (hook && L->allowhook) {
|
2002-07-08 22:21:33 +04:00
|
|
|
ptrdiff_t top = savestack(L, L->top);
|
|
|
|
ptrdiff_t ci_top = savestack(L, L->ci->top);
|
2000-03-30 21:19:48 +04:00
|
|
|
lua_Debug ar;
|
2000-01-19 15:00:45 +03:00
|
|
|
ar.event = event;
|
2002-07-08 22:21:33 +04:00
|
|
|
ar.currentline = line;
|
2003-02-27 14:52:30 +03:00
|
|
|
if (event == LUA_HOOKTAILRET)
|
|
|
|
ar.i_ci = 0; /* tail call; no debug information about it */
|
|
|
|
else
|
2005-12-22 19:19:56 +03:00
|
|
|
ar.i_ci = cast_int(L->ci - L->base_ci);
|
2002-07-08 22:21:33 +04:00
|
|
|
luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */
|
|
|
|
L->ci->top = L->top + LUA_MINSTACK;
|
2004-09-08 18:23:09 +04:00
|
|
|
lua_assert(L->ci->top <= L->stack_last);
|
2002-11-18 14:01:55 +03:00
|
|
|
L->allowhook = 0; /* cannot call hooks inside a hook */
|
2008-08-26 17:27:42 +04:00
|
|
|
L->ci->callstatus |= CIST_HOOKED;
|
2002-07-08 22:21:33 +04:00
|
|
|
lua_unlock(L);
|
|
|
|
(*hook)(L, &ar);
|
|
|
|
lua_lock(L);
|
2002-11-18 14:01:55 +03:00
|
|
|
lua_assert(!L->allowhook);
|
|
|
|
L->allowhook = 1;
|
2002-07-08 22:21:33 +04:00
|
|
|
L->ci->top = restorestack(L, ci_top);
|
|
|
|
L->top = restorestack(L, top);
|
2008-08-26 17:27:42 +04:00
|
|
|
L->ci->callstatus &= ~CIST_HOOKED;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-08-24 20:15:49 +04:00
|
|
|
static StkId adjust_varargs (lua_State *L, Proto *p, int actual) {
|
2002-01-10 01:02:47 +03:00
|
|
|
int i;
|
2005-08-24 20:15:49 +04:00
|
|
|
int nfixargs = p->numparams;
|
2004-05-31 22:51:50 +04:00
|
|
|
StkId base, fixed;
|
2005-08-24 20:15:49 +04:00
|
|
|
for (; actual < nfixargs; ++actual)
|
|
|
|
setnilvalue(L->top++);
|
2004-05-31 22:51:50 +04:00
|
|
|
/* move fixed parameters to final position */
|
|
|
|
fixed = L->top - actual; /* first fixed argument */
|
|
|
|
base = L->top; /* final position of first argument */
|
|
|
|
for (i=0; i<nfixargs; i++) {
|
|
|
|
setobjs2s(L, L->top++, fixed+i);
|
|
|
|
setnilvalue(fixed+i);
|
|
|
|
}
|
|
|
|
return base;
|
2002-01-10 01:02:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-03-07 21:14:29 +03:00
|
|
|
static StkId tryfuncTM (lua_State *L, StkId func) {
|
2003-12-10 15:13:36 +03:00
|
|
|
const TValue *tm = luaT_gettmbyobj(L, func, TM_CALL);
|
2002-07-09 22:19:19 +04:00
|
|
|
StkId p;
|
2002-07-16 18:26:56 +04:00
|
|
|
ptrdiff_t funcr = savestack(L, func);
|
2002-08-05 21:36:24 +04:00
|
|
|
if (!ttisfunction(tm))
|
2002-03-07 21:14:29 +03:00
|
|
|
luaG_typeerror(L, func, "call");
|
2002-07-09 22:19:19 +04:00
|
|
|
/* Open a hole inside the stack at `func' */
|
2003-12-10 15:13:36 +03:00
|
|
|
for (p = L->top; p > func; p--) setobjs2s(L, p, p-1);
|
2002-07-09 22:19:19 +04:00
|
|
|
incr_top(L);
|
2002-07-16 18:26:56 +04:00
|
|
|
func = restorestack(L, funcr); /* previous call may change stack */
|
2003-12-10 15:13:36 +03:00
|
|
|
setobj2s(L, func, tm); /* tag method is the new function to be called */
|
2002-03-07 21:14:29 +03:00
|
|
|
return func;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-09-08 18:23:09 +04:00
|
|
|
|
|
|
|
#define inc_ci(L) \
|
2004-12-03 23:50:25 +03:00
|
|
|
((L->ci == L->end_ci) ? growCI(L) : \
|
2004-09-08 18:23:09 +04:00
|
|
|
(condhardstacktests(luaD_reallocCI(L, L->size_ci)), ++L->ci))
|
|
|
|
|
|
|
|
|
2008-08-13 21:02:42 +04:00
|
|
|
/*
|
|
|
|
** returns true if function has been executed (C function)
|
|
|
|
*/
|
2004-05-14 23:25:09 +04:00
|
|
|
int luaD_precall (lua_State *L, StkId func, int nresults) {
|
2002-01-10 01:02:47 +03:00
|
|
|
LClosure *cl;
|
2004-05-31 22:51:50 +04:00
|
|
|
ptrdiff_t funcr;
|
2002-08-05 21:36:24 +04:00
|
|
|
if (!ttisfunction(func)) /* `func' is not a function? */
|
2002-03-07 21:14:29 +03:00
|
|
|
func = tryfuncTM(L, func); /* check the `function' tag method */
|
2004-05-31 22:51:50 +04:00
|
|
|
funcr = savestack(L, func);
|
2002-01-10 01:02:47 +03:00
|
|
|
cl = &clvalue(func)->l;
|
2005-04-05 17:41:29 +04:00
|
|
|
L->ci->savedpc = L->savedpc;
|
2002-01-10 01:02:47 +03:00
|
|
|
if (!cl->isC) { /* Lua function? prepare its call */
|
2002-07-16 18:26:56 +04:00
|
|
|
CallInfo *ci;
|
2004-05-31 22:51:50 +04:00
|
|
|
StkId st, base;
|
2002-01-10 01:02:47 +03:00
|
|
|
Proto *p = cl->p;
|
2005-08-24 20:15:49 +04:00
|
|
|
luaD_checkstack(L, p->maxstacksize);
|
|
|
|
func = restorestack(L, funcr);
|
2007-03-27 18:11:38 +04:00
|
|
|
if (!p->is_vararg) /* no varargs? */
|
2004-05-31 22:51:50 +04:00
|
|
|
base = func + 1;
|
2005-08-24 20:15:49 +04:00
|
|
|
else { /* vararg function */
|
2005-12-22 19:19:56 +03:00
|
|
|
int nargs = cast_int(L->top - func) - 1;
|
2005-08-24 20:15:49 +04:00
|
|
|
base = adjust_varargs(L, p, nargs);
|
|
|
|
func = restorestack(L, funcr); /* previous call may change the stack */
|
2004-09-03 19:48:56 +04:00
|
|
|
}
|
2004-09-08 18:23:09 +04:00
|
|
|
ci = inc_ci(L); /* now `enter' new function */
|
2004-05-31 22:51:50 +04:00
|
|
|
ci->func = func;
|
|
|
|
L->base = ci->base = base;
|
2002-11-21 18:16:04 +03:00
|
|
|
ci->top = L->base + p->maxstacksize;
|
2004-09-08 18:23:09 +04:00
|
|
|
lua_assert(ci->top <= L->stack_last);
|
2005-04-05 17:41:29 +04:00
|
|
|
L->savedpc = p->code; /* starting point */
|
2009-03-04 16:32:29 +03:00
|
|
|
ci->u.l.tailcalls = 0;
|
2008-08-26 17:27:42 +04:00
|
|
|
ci->callstatus = CIST_LUA;
|
2004-05-14 23:25:09 +04:00
|
|
|
ci->nresults = nresults;
|
2003-07-17 00:49:02 +04:00
|
|
|
for (st = L->top; st < ci->top; st++)
|
|
|
|
setnilvalue(st);
|
2002-01-10 01:02:47 +03:00
|
|
|
L->top = ci->top;
|
2005-08-09 23:49:04 +04:00
|
|
|
if (L->hookmask & LUA_MASKCALL) {
|
|
|
|
L->savedpc++; /* hooks assume 'pc' is already incremented */
|
|
|
|
luaD_callhook(L, LUA_HOOKCALL, -1);
|
|
|
|
L->savedpc--; /* correct 'pc' */
|
|
|
|
}
|
2008-08-13 21:02:42 +04:00
|
|
|
return 0;
|
2002-01-10 01:02:47 +03:00
|
|
|
}
|
|
|
|
else { /* if is a C function, call it */
|
2002-07-16 18:26:56 +04:00
|
|
|
CallInfo *ci;
|
2002-01-10 01:02:47 +03:00
|
|
|
int n;
|
|
|
|
luaD_checkstack(L, LUA_MINSTACK); /* ensure minimum stack size */
|
2004-09-08 18:23:09 +04:00
|
|
|
ci = inc_ci(L); /* now `enter' new function */
|
2004-05-31 22:51:50 +04:00
|
|
|
ci->func = restorestack(L, funcr);
|
|
|
|
L->base = ci->base = ci->func + 1;
|
2002-03-07 21:14:29 +03:00
|
|
|
ci->top = L->top + LUA_MINSTACK;
|
2004-09-08 18:23:09 +04:00
|
|
|
lua_assert(ci->top <= L->stack_last);
|
2005-08-22 22:54:49 +04:00
|
|
|
ci->nresults = nresults;
|
2008-08-26 17:27:42 +04:00
|
|
|
ci->callstatus = 0;
|
2003-04-03 17:35:34 +04:00
|
|
|
if (L->hookmask & LUA_MASKCALL)
|
2002-07-16 18:26:56 +04:00
|
|
|
luaD_callhook(L, LUA_HOOKCALL, -1);
|
2002-01-10 01:02:47 +03:00
|
|
|
lua_unlock(L);
|
2004-03-24 18:46:49 +03:00
|
|
|
n = (*curr_func(L)->c.f)(L); /* do the actual call */
|
2002-01-10 01:02:47 +03:00
|
|
|
lua_lock(L);
|
2008-08-13 21:02:42 +04:00
|
|
|
luaD_poscall(L, L->top - n);
|
|
|
|
return 1;
|
2002-01-10 01:02:47 +03:00
|
|
|
}
|
2001-12-20 18:13:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-27 14:52:30 +03:00
|
|
|
static StkId callrethooks (lua_State *L, StkId firstResult) {
|
|
|
|
ptrdiff_t fr = savestack(L, firstResult); /* next call may change stack */
|
|
|
|
luaD_callhook(L, LUA_HOOKRET, -1);
|
2008-08-26 17:27:42 +04:00
|
|
|
if (isLua(L->ci)) { /* Lua function? */
|
2009-03-04 16:32:29 +03:00
|
|
|
while ((L->hookmask & LUA_MASKRET) && L->ci->u.l.tailcalls--)
|
|
|
|
luaD_callhook(L, LUA_HOOKTAILRET, -1); /* ret. hooks for tail calls */
|
2003-02-27 14:52:30 +03:00
|
|
|
}
|
|
|
|
return restorestack(L, fr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-08-22 22:54:49 +04:00
|
|
|
int luaD_poscall (lua_State *L, StkId firstResult) {
|
2001-12-20 18:13:38 +03:00
|
|
|
StkId res;
|
2005-08-22 22:54:49 +04:00
|
|
|
int wanted, i;
|
|
|
|
CallInfo *ci;
|
2006-09-19 17:57:50 +04:00
|
|
|
if (L->hookmask & (LUA_MASKRET | LUA_MASKLINE)) {
|
|
|
|
if (L->hookmask & LUA_MASKRET)
|
|
|
|
firstResult = callrethooks(L, firstResult);
|
|
|
|
L->oldpc = (L->ci - 1)->savedpc; /* set 'oldpc' for returning function */
|
|
|
|
}
|
2005-08-22 22:54:49 +04:00
|
|
|
ci = L->ci--;
|
|
|
|
res = ci->func; /* res == final position of 1st result */
|
|
|
|
wanted = ci->nresults;
|
|
|
|
L->base = (ci - 1)->base; /* restore base */
|
|
|
|
L->savedpc = (ci - 1)->savedpc; /* restore savedpc */
|
2001-12-20 18:13:38 +03:00
|
|
|
/* move results to correct place */
|
2005-08-22 22:54:49 +04:00
|
|
|
for (i = wanted; i != 0 && firstResult < L->top; i--)
|
2003-12-10 15:13:36 +03:00
|
|
|
setobjs2s(L, res++, firstResult++);
|
2005-08-22 22:54:49 +04:00
|
|
|
while (i-- > 0)
|
2001-12-20 18:13:38 +03:00
|
|
|
setnilvalue(res++);
|
|
|
|
L->top = res;
|
2005-08-22 22:54:49 +04:00
|
|
|
return (wanted - LUA_MULTRET); /* 0 iff wanted == LUA_MULTRET */
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-11-25 21:58:51 +03:00
|
|
|
** Call a function (C or Lua). The function to be called is at *func.
|
|
|
|
** The arguments are on the stack, right after the function.
|
2001-06-08 23:01:38 +04:00
|
|
|
** When returns, all the results are on the stack, starting at the original
|
1999-11-25 21:58:51 +03:00
|
|
|
** function position.
|
2006-09-11 18:07:24 +04:00
|
|
|
*/
|
2009-03-10 20:14:37 +03:00
|
|
|
void luaD_call (lua_State *L, StkId func, int nResults, int allowyield) {
|
2006-08-15 23:59:20 +04:00
|
|
|
global_State *g = G(L);
|
|
|
|
if (++g->nCcalls >= LUAI_MAXCCALLS) {
|
|
|
|
if (g->nCcalls == LUAI_MAXCCALLS)
|
2003-02-28 22:45:15 +03:00
|
|
|
luaG_runerror(L, "C stack overflow");
|
2006-08-15 23:59:20 +04:00
|
|
|
else if (g->nCcalls >= (LUAI_MAXCCALLS + (LUAI_MAXCCALLS>>3)))
|
2002-11-22 20:16:52 +03:00
|
|
|
luaD_throw(L, LUA_ERRERR); /* error while handing stack error */
|
2002-01-10 01:02:47 +03:00
|
|
|
}
|
2009-03-10 20:14:37 +03:00
|
|
|
if (!allowyield) L->nny++;
|
2008-08-13 21:02:42 +04:00
|
|
|
if (!luaD_precall(L, func, nResults)) /* is a Lua function? */
|
2008-08-26 17:27:42 +04:00
|
|
|
luaV_execute(L); /* call it */
|
2009-03-10 20:14:37 +03:00
|
|
|
if (!allowyield) L->nny--;
|
2006-08-15 23:59:20 +04:00
|
|
|
g->nCcalls--;
|
2003-02-28 22:45:15 +03:00
|
|
|
luaC_checkGC(L);
|
1998-07-12 20:14:34 +04:00
|
|
|
}
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
|
2009-03-10 20:14:37 +03:00
|
|
|
static void finishCcall (lua_State *L) {
|
|
|
|
int n;
|
2009-03-23 17:26:12 +03:00
|
|
|
lua_assert(L->ci->u.c.k != NULL); /* must have a continuation */
|
2009-03-10 20:14:37 +03:00
|
|
|
lua_assert(L->nny == 0);
|
|
|
|
/* finish 'luaD_call' */
|
|
|
|
G(L)->nCcalls--;
|
2009-04-08 22:04:33 +04:00
|
|
|
/* finish 'lua_callk' */
|
2009-03-10 20:14:37 +03:00
|
|
|
adjustresults(L, (L->ci + 1)->nresults);
|
|
|
|
/* call continuation function */
|
2009-04-08 22:04:33 +04:00
|
|
|
if (!(L->ci->callstatus & CIST_STAT)) /* no call status? */
|
|
|
|
L->ci->u.c.status = LUA_YIELD; /* 'default' status */
|
|
|
|
lua_assert(L->ci->u.c.status != LUA_OK);
|
|
|
|
L->ci->callstatus = (L->ci->callstatus & ~(CIST_YPCALL | CIST_STAT))
|
|
|
|
| CIST_YIELDED;
|
2009-03-10 20:14:37 +03:00
|
|
|
lua_unlock(L);
|
2009-03-23 17:26:12 +03:00
|
|
|
n = (*L->ci->u.c.k)(L);
|
2009-03-10 20:14:37 +03:00
|
|
|
lua_lock(L);
|
|
|
|
/* finish 'luaD_precall' */
|
|
|
|
luaD_poscall(L, L->top - n);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-08 22:04:33 +04:00
|
|
|
static void unroll (lua_State *L, void *ud) {
|
|
|
|
UNUSED(ud);
|
2008-10-28 19:53:16 +03:00
|
|
|
for (;;) {
|
2009-03-10 20:14:37 +03:00
|
|
|
if (L->ci == L->base_ci) /* stack is empty? */
|
2008-10-28 19:53:16 +03:00
|
|
|
return; /* coroutine finished normally */
|
2009-03-10 20:14:37 +03:00
|
|
|
if (!isLua(L->ci)) /* C function? */
|
|
|
|
finishCcall(L);
|
|
|
|
else { /* Lua function */
|
|
|
|
luaV_finishOp(L); /* finish interrupted instruction */
|
|
|
|
luaV_execute(L); /* execute down to higher C 'boundary' */
|
2008-10-28 19:53:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-02 00:48:12 +04:00
|
|
|
static void resume (lua_State *L, void *ud) {
|
2005-08-09 23:49:04 +04:00
|
|
|
StkId firstArg = cast(StkId, ud);
|
2002-02-06 01:38:37 +03:00
|
|
|
CallInfo *ci = L->ci;
|
2006-10-10 21:40:17 +04:00
|
|
|
if (L->status == LUA_OK) { /* start coroutine? */
|
2005-08-09 23:49:04 +04:00
|
|
|
lua_assert(ci == L->base_ci && firstArg > L->base);
|
2009-03-10 20:14:37 +03:00
|
|
|
if (!luaD_precall(L, firstArg - 1, LUA_MULTRET)) /* Lua function? */
|
|
|
|
luaV_execute(L); /* call it */
|
2002-11-06 22:08:00 +03:00
|
|
|
}
|
2003-11-11 19:34:17 +03:00
|
|
|
else { /* resuming from previous yield */
|
2006-06-05 23:36:45 +04:00
|
|
|
lua_assert(L->status == LUA_YIELD);
|
2006-10-10 21:40:17 +04:00
|
|
|
L->status = LUA_OK;
|
2009-03-10 20:14:37 +03:00
|
|
|
if (isLua(ci)) { /* yielded inside a hook? */
|
2008-10-28 19:53:16 +03:00
|
|
|
L->base = L->ci->base; /* just continue its execution */
|
2009-03-10 20:14:37 +03:00
|
|
|
luaV_execute(L);
|
|
|
|
}
|
2008-10-28 19:53:16 +03:00
|
|
|
else { /* 'common' yield */
|
2009-03-10 20:14:37 +03:00
|
|
|
G(L)->nCcalls--; /* finish 'luaD_call' */
|
|
|
|
luaD_poscall(L, firstArg); /* finish 'luaD_precall' */
|
2005-08-09 23:49:04 +04:00
|
|
|
}
|
2009-04-08 22:04:33 +04:00
|
|
|
unroll(L, NULL);
|
2002-01-11 23:27:41 +03:00
|
|
|
}
|
2002-02-06 01:38:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-05 18:30:59 +04:00
|
|
|
static int resume_error (lua_State *L, const char *msg) {
|
|
|
|
L->top = L->ci->base;
|
2003-12-10 15:13:36 +03:00
|
|
|
setsvalue2s(L, L->top, luaS_new(L, msg));
|
2003-09-05 18:30:59 +04:00
|
|
|
incr_top(L);
|
|
|
|
lua_unlock(L);
|
|
|
|
return LUA_ERRRUN;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-04-08 22:04:33 +04:00
|
|
|
/*
|
|
|
|
** check whether thread has a suspended protected call
|
|
|
|
*/
|
|
|
|
static CallInfo *findpcall (lua_State *L) {
|
|
|
|
CallInfo *ci;
|
|
|
|
for (ci = L->ci; ci > L->base_ci; ci--) { /* search for first pcall */
|
|
|
|
if (ci->callstatus & CIST_YPCALL)
|
|
|
|
return ci;
|
|
|
|
}
|
|
|
|
return NULL; /* no pending pcall */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int recover (lua_State *L, int status) {
|
|
|
|
StkId oldtop;
|
|
|
|
CallInfo *ci = findpcall(L);
|
|
|
|
if (ci == NULL) return 0; /* no recovery point */
|
|
|
|
/* "finish" luaD_pcall */
|
|
|
|
oldtop = restorestack(L, ci->u.c.oldtop);
|
|
|
|
luaF_close(L, oldtop);
|
|
|
|
luaD_seterrorobj(L, status, oldtop);
|
|
|
|
L->ci = ci;
|
|
|
|
L->base = L->ci->base;
|
|
|
|
L->allowhook = ci->u.c.old_allowhook;
|
|
|
|
L->nny = 0; /* should be zero to be yieldable */
|
|
|
|
restore_stack_limit(L);
|
|
|
|
L->errfunc = ci->u.c.old_errfunc;
|
|
|
|
ci->callstatus |= CIST_STAT; /* call has error status */
|
|
|
|
ci->u.c.status = status; /* (here it is) */
|
|
|
|
return 1; /* continue running the coroutine */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-06 22:08:00 +03:00
|
|
|
LUA_API int lua_resume (lua_State *L, int nargs) {
|
2002-02-06 01:38:37 +03:00
|
|
|
int status;
|
|
|
|
lua_lock(L);
|
2004-09-16 00:39:42 +04:00
|
|
|
if (L->status != LUA_YIELD) {
|
2006-10-10 21:40:17 +04:00
|
|
|
if (L->status != LUA_OK)
|
2004-09-16 00:39:42 +04:00
|
|
|
return resume_error(L, "cannot resume dead coroutine");
|
|
|
|
else if (L->ci != L->base_ci)
|
2003-09-05 18:30:59 +04:00
|
|
|
return resume_error(L, "cannot resume non-suspended coroutine");
|
|
|
|
}
|
2005-08-22 23:58:29 +04:00
|
|
|
luai_userstateresume(L, nargs);
|
2006-08-15 23:59:20 +04:00
|
|
|
if (G(L)->nCcalls >= LUAI_MAXCCALLS)
|
|
|
|
return resume_error(L, "C stack overflow");
|
2008-10-28 19:53:16 +03:00
|
|
|
++G(L)->nCcalls; /* count resume */
|
2009-03-10 20:14:37 +03:00
|
|
|
L->nny = 0; /* allow yields */
|
2005-08-09 23:49:04 +04:00
|
|
|
status = luaD_rawrunprotected(L, resume, L->top - nargs);
|
2009-04-08 22:04:33 +04:00
|
|
|
while (status != LUA_OK && status != LUA_YIELD) { /* error? */
|
|
|
|
if (recover(L, status)) /* recover point? */
|
|
|
|
status = luaD_rawrunprotected(L, unroll, NULL); /* run continuation */
|
|
|
|
else { /* unrecoverable error */
|
|
|
|
L->status = cast_byte(status); /* mark thread as `dead' */
|
|
|
|
luaD_seterrorobj(L, status, L->top);
|
|
|
|
L->ci->top = L->top;
|
|
|
|
break;
|
|
|
|
}
|
2006-08-15 23:59:20 +04:00
|
|
|
}
|
2009-04-08 22:04:33 +04:00
|
|
|
lua_assert(status == L->status);
|
2009-03-10 20:14:37 +03:00
|
|
|
L->nny = 1; /* do not allow yields */
|
2006-08-15 23:59:20 +04:00
|
|
|
--G(L)->nCcalls;
|
2002-01-10 01:02:47 +03:00
|
|
|
lua_unlock(L);
|
2002-02-06 01:38:37 +03:00
|
|
|
return status;
|
2002-01-10 01:02:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
LUA_API int lua_yield (lua_State *L, int nresults) {
|
2005-08-22 23:58:29 +04:00
|
|
|
luai_userstateyield(L, nresults);
|
2002-01-10 01:02:47 +03:00
|
|
|
lua_lock(L);
|
2009-03-10 20:14:37 +03:00
|
|
|
if (L->nny > 0)
|
2002-11-22 20:16:52 +03:00
|
|
|
luaG_runerror(L, "attempt to yield across metamethod/C-call boundary");
|
2005-08-09 23:49:04 +04:00
|
|
|
L->base = L->top - nresults; /* protect stack slots below */
|
2004-09-16 00:39:42 +04:00
|
|
|
L->status = LUA_YIELD;
|
2008-08-13 21:02:42 +04:00
|
|
|
if (!isLua(L->ci)) /* not inside a hook? */
|
|
|
|
luaD_throw(L, LUA_YIELD);
|
2008-08-26 17:27:42 +04:00
|
|
|
lua_assert(L->ci->callstatus & CIST_HOOKED); /* must be inside a hook */
|
2002-01-10 01:02:47 +03:00
|
|
|
lua_unlock(L);
|
2008-08-13 21:02:42 +04:00
|
|
|
return 0; /* otherwise, return to 'luaD_callhook' */
|
2002-01-10 01:02:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-04 20:29:32 +03:00
|
|
|
int luaD_pcall (lua_State *L, Pfunc func, void *u,
|
|
|
|
ptrdiff_t old_top, ptrdiff_t ef) {
|
2000-09-25 20:22:42 +04:00
|
|
|
int status;
|
2002-08-06 19:32:22 +04:00
|
|
|
ptrdiff_t old_ci = saveci(L, L->ci);
|
2002-11-18 14:01:55 +03:00
|
|
|
lu_byte old_allowhooks = L->allowhook;
|
2009-03-10 20:14:37 +03:00
|
|
|
unsigned short old_nny = L->nny;
|
2002-08-06 19:32:22 +04:00
|
|
|
ptrdiff_t old_errfunc = L->errfunc;
|
2002-12-04 20:29:32 +03:00
|
|
|
L->errfunc = ef;
|
|
|
|
status = luaD_rawrunprotected(L, func, u);
|
2006-10-10 21:40:17 +04:00
|
|
|
if (status != LUA_OK) { /* an error occurred? */
|
2002-12-04 20:29:32 +03:00
|
|
|
StkId oldtop = restorestack(L, old_top);
|
2006-07-11 19:53:29 +04:00
|
|
|
luaF_close(L, oldtop); /* close possible pending closures */
|
2005-08-22 23:58:29 +04:00
|
|
|
luaD_seterrorobj(L, status, oldtop);
|
2002-08-06 19:32:22 +04:00
|
|
|
L->ci = restoreci(L, old_ci);
|
2002-11-21 18:16:04 +03:00
|
|
|
L->base = L->ci->base;
|
2005-04-05 17:41:29 +04:00
|
|
|
L->savedpc = L->ci->savedpc;
|
2002-11-18 14:01:55 +03:00
|
|
|
L->allowhook = old_allowhooks;
|
2009-03-10 20:14:37 +03:00
|
|
|
L->nny = old_nny;
|
2002-08-06 19:32:22 +04:00
|
|
|
restore_stack_limit(L);
|
2001-09-25 21:05:49 +04:00
|
|
|
}
|
2002-08-06 19:32:22 +04:00
|
|
|
L->errfunc = old_errfunc;
|
2000-09-25 20:22:42 +04:00
|
|
|
return status;
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-04 20:29:32 +03:00
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2000-09-25 20:22:42 +04:00
|
|
|
** Execute a protected parser.
|
1997-09-16 23:25:59 +04:00
|
|
|
*/
|
2001-02-02 18:13:05 +03:00
|
|
|
struct SParser { /* data to `f_parser' */
|
2000-09-25 20:22:42 +04:00
|
|
|
ZIO *z;
|
2002-10-08 22:46:08 +04:00
|
|
|
Mbuffer buff; /* buffer to be used by the scanner */
|
2003-08-25 23:51:54 +04:00
|
|
|
const char *name;
|
2000-09-25 20:22:42 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static void f_parser (lua_State *L, void *ud) {
|
2003-10-20 21:42:41 +04:00
|
|
|
int i;
|
2003-02-28 22:45:15 +03:00
|
|
|
Proto *tf;
|
|
|
|
Closure *cl;
|
2003-08-28 01:01:44 +04:00
|
|
|
struct SParser *p = cast(struct SParser *, ud);
|
|
|
|
int c = luaZ_lookahead(p->z);
|
2003-02-28 22:45:15 +03:00
|
|
|
luaC_checkGC(L);
|
2006-09-11 16:44:56 +04:00
|
|
|
tf = (c == LUA_SIGNATURE[0]) ? luaU_undump(L, p->z, &p->buff, p->name)
|
|
|
|
: luaY_parser(L, p->z, &p->buff, p->name);
|
2006-07-11 19:53:29 +04:00
|
|
|
setptvalue2s(L, L->top, tf);
|
|
|
|
incr_top(L);
|
2005-02-18 15:40:02 +03:00
|
|
|
cl = luaF_newLclosure(L, tf->nups, hvalue(gt(L)));
|
2001-10-02 20:45:03 +04:00
|
|
|
cl->l.p = tf;
|
2006-07-11 19:53:29 +04:00
|
|
|
setclvalue(L, L->top - 1, cl);
|
|
|
|
for (i = 0; i < tf->nups; i++) /* initialize upvalues */
|
2003-10-20 21:42:41 +04:00
|
|
|
cl->l.upvals[i] = luaF_newupval(L);
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-28 01:01:44 +04:00
|
|
|
int luaD_protectedparser (lua_State *L, ZIO *z, const char *name) {
|
2001-02-02 18:13:05 +03:00
|
|
|
struct SParser p;
|
2000-09-25 20:22:42 +04:00
|
|
|
int status;
|
2003-08-28 01:01:44 +04:00
|
|
|
p.z = z; p.name = name;
|
2002-10-08 22:46:08 +04:00
|
|
|
luaZ_initbuffer(L, &p.buff);
|
2003-08-28 01:01:44 +04:00
|
|
|
status = luaD_pcall(L, f_parser, &p, savestack(L, L->top), L->errfunc);
|
2002-10-08 22:46:08 +04:00
|
|
|
luaZ_freebuffer(L, &p.buff);
|
2002-08-05 21:36:24 +04:00
|
|
|
return status;
|
2002-06-18 21:10:43 +04:00
|
|
|
}
|
|
|
|
|
2000-09-25 20:22:42 +04:00
|
|
|
|