1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2018-08-23 20:26:12 +03:00
|
|
|
** $Id: lfunc.c $
|
1998-06-19 20:14:09 +04:00
|
|
|
** Auxiliary functions to manipulate prototypes and closures
|
1997-09-16 23:25:59 +04:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
2002-12-04 20:38:31 +03:00
|
|
|
#define lfunc_c
|
2004-05-01 00:13:38 +04:00
|
|
|
#define LUA_CORE
|
2002-12-04 20:38:31 +03:00
|
|
|
|
2014-11-02 22:19:04 +03:00
|
|
|
#include "lprefix.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2000-06-12 17:52:05 +04:00
|
|
|
#include "lua.h"
|
|
|
|
|
2018-11-29 21:02:44 +03:00
|
|
|
#include "ldebug.h"
|
2018-10-17 16:44:42 +03:00
|
|
|
#include "ldo.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lfunc.h"
|
2002-08-30 23:09:21 +04:00
|
|
|
#include "lgc.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lmem.h"
|
2001-09-07 21:39:10 +04:00
|
|
|
#include "lobject.h"
|
1997-11-19 20:29:23 +03:00
|
|
|
#include "lstate.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
2001-11-29 23:22:22 +03:00
|
|
|
|
2019-11-18 20:54:06 +03:00
|
|
|
CClosure *luaF_newCclosure (lua_State *L, int nupvals) {
|
2020-01-31 17:09:53 +03:00
|
|
|
GCObject *o = luaC_newobj(L, LUA_VCCL, sizeCclosure(nupvals));
|
2014-06-19 22:27:20 +04:00
|
|
|
CClosure *c = gco2ccl(o);
|
2019-11-18 20:54:06 +03:00
|
|
|
c->nupvalues = cast_byte(nupvals);
|
1997-09-16 23:25:59 +04:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-11-18 20:54:06 +03:00
|
|
|
LClosure *luaF_newLclosure (lua_State *L, int nupvals) {
|
2020-01-31 17:09:53 +03:00
|
|
|
GCObject *o = luaC_newobj(L, LUA_VLCL, sizeLclosure(nupvals));
|
2014-06-19 22:27:20 +04:00
|
|
|
LClosure *c = gco2lcl(o);
|
|
|
|
c->p = NULL;
|
2019-11-18 20:54:06 +03:00
|
|
|
c->nupvalues = cast_byte(nupvals);
|
|
|
|
while (nupvals--) c->upvals[nupvals] = NULL;
|
2001-09-07 21:39:10 +04:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2018-10-18 22:15:09 +03:00
|
|
|
|
2014-02-18 17:39:37 +04:00
|
|
|
/*
|
|
|
|
** fill a closure with new closed upvalues
|
|
|
|
*/
|
2013-08-27 22:53:35 +04:00
|
|
|
void luaF_initupvals (lua_State *L, LClosure *cl) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < cl->nupvalues; i++) {
|
2020-01-31 17:09:53 +03:00
|
|
|
GCObject *o = luaC_newobj(L, LUA_VUPVAL, sizeof(UpVal));
|
2017-04-11 21:41:09 +03:00
|
|
|
UpVal *uv = gco2upv(o);
|
2013-08-27 22:53:35 +04:00
|
|
|
uv->v = &uv->u.value; /* make it closed */
|
|
|
|
setnilvalue(uv->v);
|
|
|
|
cl->upvals[i] = uv;
|
2017-04-11 21:41:09 +03:00
|
|
|
luaC_objbarrier(L, cl, o);
|
2013-08-27 22:53:35 +04:00
|
|
|
}
|
2003-10-20 21:42:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-18 22:15:09 +03:00
|
|
|
/*
|
2019-07-19 17:12:31 +03:00
|
|
|
** Create a new upvalue at the given level, and link it to the list of
|
|
|
|
** open upvalues of 'L' after entry 'prev'.
|
2018-10-18 22:15:09 +03:00
|
|
|
**/
|
2019-07-19 17:12:31 +03:00
|
|
|
static UpVal *newupval (lua_State *L, int tbc, StkId level, UpVal **prev) {
|
2020-01-31 17:09:53 +03:00
|
|
|
GCObject *o = luaC_newobj(L, LUA_VUPVAL, sizeof(UpVal));
|
2018-10-18 22:15:09 +03:00
|
|
|
UpVal *uv = gco2upv(o);
|
|
|
|
UpVal *next = *prev;
|
|
|
|
uv->v = s2v(level); /* current value lives in the stack */
|
2019-07-19 17:12:31 +03:00
|
|
|
uv->tbc = tbc;
|
2018-10-18 22:15:09 +03:00
|
|
|
uv->u.open.next = next; /* link it to list of open upvalues */
|
|
|
|
uv->u.open.previous = prev;
|
|
|
|
if (next)
|
|
|
|
next->u.open.previous = &uv->u.open.next;
|
|
|
|
*prev = uv;
|
|
|
|
if (!isintwups(L)) { /* thread not in list of threads with upvalues? */
|
|
|
|
L->twups = G(L)->twups; /* link it to the list */
|
|
|
|
G(L)->twups = L;
|
|
|
|
}
|
|
|
|
return uv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2019-07-19 18:13:00 +03:00
|
|
|
** Find and reuse, or create if it does not exist, an upvalue
|
2019-07-22 15:41:10 +03:00
|
|
|
** at the given level.
|
2018-10-18 22:15:09 +03:00
|
|
|
*/
|
2019-07-22 15:41:10 +03:00
|
|
|
UpVal *luaF_findupval (lua_State *L, StkId level) {
|
2013-08-27 22:53:35 +04:00
|
|
|
UpVal **pp = &L->openupval;
|
2002-11-13 14:32:26 +03:00
|
|
|
UpVal *p;
|
2014-02-18 17:39:37 +04:00
|
|
|
lua_assert(isintwups(L) || L->openupval == NULL);
|
2018-10-18 22:15:09 +03:00
|
|
|
while ((p = *pp) != NULL && uplevel(p) >= level) { /* search for it */
|
2019-07-22 15:41:10 +03:00
|
|
|
lua_assert(!isdead(G(L), p));
|
|
|
|
if (uplevel(p) == level) /* corresponding upvalue? */
|
|
|
|
return p; /* return it */
|
2014-02-15 17:12:01 +04:00
|
|
|
pp = &p->u.open.next;
|
2001-09-07 21:39:10 +04:00
|
|
|
}
|
2019-07-22 15:41:10 +03:00
|
|
|
/* not found: create a new upvalue after 'pp' */
|
|
|
|
return newupval(L, 0, level, pp);
|
2001-09-07 21:39:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-17 16:44:42 +03:00
|
|
|
static void callclose (lua_State *L, void *ud) {
|
2018-10-25 18:50:20 +03:00
|
|
|
UNUSED(ud);
|
2019-01-04 18:09:47 +03:00
|
|
|
luaD_callnoyield(L, L->top - 3, 0);
|
2018-10-17 16:44:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-18 22:15:09 +03:00
|
|
|
/*
|
2019-01-04 18:09:47 +03:00
|
|
|
** Prepare closing method plus its arguments for object 'obj' with
|
2018-10-25 18:50:20 +03:00
|
|
|
** error message 'err'. (This function assumes EXTRA_STACK.)
|
2018-10-18 22:15:09 +03:00
|
|
|
*/
|
2018-10-25 18:50:20 +03:00
|
|
|
static int prepclosingmethod (lua_State *L, TValue *obj, TValue *err) {
|
|
|
|
StkId top = L->top;
|
2019-01-04 18:09:47 +03:00
|
|
|
const TValue *tm = luaT_gettmbyobj(L, obj, TM_CLOSE);
|
|
|
|
if (ttisnil(tm)) /* no metamethod? */
|
|
|
|
return 0; /* nothing to call */
|
|
|
|
setobj2s(L, top, tm); /* will call metamethod... */
|
|
|
|
setobj2s(L, top + 1, obj); /* with 'self' as the 1st argument */
|
|
|
|
setobj2s(L, top + 2, err); /* and error msg. as 2nd argument */
|
|
|
|
L->top = top + 3; /* add function and arguments */
|
2018-10-18 22:15:09 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-07-31 16:43:51 +03:00
|
|
|
/*
|
|
|
|
** Raise an error with message 'msg', inserting the name of the
|
|
|
|
** local variable at position 'level' in the stack.
|
|
|
|
*/
|
|
|
|
static void varerror (lua_State *L, StkId level, const char *msg) {
|
|
|
|
int idx = cast_int(level - L->ci->func);
|
|
|
|
const char *vname = luaG_findlocal(L, L->ci, idx, NULL);
|
|
|
|
if (vname == NULL) vname = "?";
|
|
|
|
luaG_runerror(L, msg, vname);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-18 22:15:09 +03:00
|
|
|
/*
|
2018-12-13 18:07:53 +03:00
|
|
|
** Prepare and call a closing method. If status is OK, code is still
|
|
|
|
** inside the original protected call, and so any error will be handled
|
2019-07-31 16:43:51 +03:00
|
|
|
** there. Otherwise, a previous error already activated the original
|
2018-12-13 18:07:53 +03:00
|
|
|
** protected call, and so the call to the closing method must be
|
2019-07-31 16:43:51 +03:00
|
|
|
** protected here. (A status == CLOSEPROTECT behaves like a previous
|
2018-12-13 18:07:53 +03:00
|
|
|
** error, to also run the closing method in protected mode).
|
2018-10-25 18:50:20 +03:00
|
|
|
** If status is OK, the call to the closing method will be pushed
|
|
|
|
** at the top of the stack. Otherwise, values are pushed after
|
|
|
|
** the 'level' of the upvalue being closed, as everything after
|
|
|
|
** that won't be used again.
|
2018-10-18 22:15:09 +03:00
|
|
|
*/
|
2019-07-16 21:17:47 +03:00
|
|
|
static int callclosemth (lua_State *L, StkId level, int status) {
|
|
|
|
TValue *uv = s2v(level); /* value being closed */
|
2018-10-25 18:50:20 +03:00
|
|
|
if (likely(status == LUA_OK)) {
|
|
|
|
if (prepclosingmethod(L, uv, &G(L)->nilvalue)) /* something to call? */
|
|
|
|
callclose(L, NULL); /* call closing method */
|
2019-07-31 16:43:51 +03:00
|
|
|
else if (!l_isfalse(uv)) /* non-closable non-false value? */
|
|
|
|
varerror(L, level, "attempt to close non-closable variable '%s'");
|
2018-10-25 18:50:20 +03:00
|
|
|
}
|
2019-06-05 19:16:25 +03:00
|
|
|
else { /* must close the object in protected mode */
|
2019-07-16 21:17:47 +03:00
|
|
|
ptrdiff_t oldtop;
|
|
|
|
level++; /* space for error message */
|
|
|
|
oldtop = savestack(L, level + 1); /* top will be after that */
|
|
|
|
luaD_seterrorobj(L, status, level); /* set error message */
|
2018-10-25 18:50:20 +03:00
|
|
|
if (prepclosingmethod(L, uv, s2v(level))) { /* something to call? */
|
2019-06-05 19:16:25 +03:00
|
|
|
int newstatus = luaD_pcall(L, callclose, NULL, oldtop, 0);
|
|
|
|
if (newstatus != LUA_OK && status == CLOSEPROTECT) /* first error? */
|
2018-10-25 18:50:20 +03:00
|
|
|
status = newstatus; /* this will be the new error */
|
2019-08-16 15:51:54 +03:00
|
|
|
else {
|
2019-12-30 17:45:08 +03:00
|
|
|
if (newstatus != LUA_OK) /* suppressed error? */
|
2019-08-16 15:51:54 +03:00
|
|
|
luaE_warnerror(L, "__close metamethod");
|
|
|
|
/* leave original error (or nil) on top */
|
2019-06-05 19:16:25 +03:00
|
|
|
L->top = restorestack(L, oldtop);
|
2019-08-16 15:51:54 +03:00
|
|
|
}
|
2018-10-25 18:50:20 +03:00
|
|
|
}
|
2019-01-04 18:09:47 +03:00
|
|
|
/* else no metamethod; ignore this case and keep original error */
|
2018-10-17 16:44:42 +03:00
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-18 22:15:09 +03:00
|
|
|
/*
|
|
|
|
** Try to create a to-be-closed upvalue
|
|
|
|
** (can raise a memory-allocation error)
|
|
|
|
*/
|
|
|
|
static void trynewtbcupval (lua_State *L, void *ud) {
|
2019-07-31 16:43:51 +03:00
|
|
|
newupval(L, 1, cast(StkId, ud), &L->openupval);
|
2018-10-18 22:15:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Create a to-be-closed upvalue. If there is a memory error
|
|
|
|
** when creating the upvalue, the closing method must be called here,
|
|
|
|
** as there is no upvalue to call it later.
|
|
|
|
*/
|
|
|
|
void luaF_newtbcupval (lua_State *L, StkId level) {
|
2019-07-31 16:43:51 +03:00
|
|
|
TValue *obj = s2v(level);
|
|
|
|
lua_assert(L->openupval == NULL || uplevel(L->openupval) < level);
|
|
|
|
if (!l_isfalse(obj)) { /* false doesn't need to be closed */
|
|
|
|
int status;
|
|
|
|
const TValue *tm = luaT_gettmbyobj(L, obj, TM_CLOSE);
|
|
|
|
if (ttisnil(tm)) /* no metamethod? */
|
|
|
|
varerror(L, level, "variable '%s' got a non-closable value");
|
|
|
|
status = luaD_rawrunprotected(L, trynewtbcupval, level);
|
|
|
|
if (unlikely(status != LUA_OK)) { /* memory error creating upvalue? */
|
|
|
|
lua_assert(status == LUA_ERRMEM);
|
|
|
|
luaD_seterrorobj(L, LUA_ERRMEM, level + 1); /* save error message */
|
|
|
|
/* next call must succeed, as object is closable */
|
|
|
|
prepclosingmethod(L, s2v(level), s2v(level + 1));
|
2018-10-25 18:50:20 +03:00
|
|
|
callclose(L, NULL); /* call closing method */
|
2019-07-31 16:43:51 +03:00
|
|
|
luaD_throw(L, LUA_ERRMEM); /* throw memory error */
|
|
|
|
}
|
2018-10-18 22:15:09 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-11 21:41:09 +03:00
|
|
|
void luaF_unlinkupval (UpVal *uv) {
|
|
|
|
lua_assert(upisopen(uv));
|
|
|
|
*uv->u.open.previous = uv->u.open.next;
|
|
|
|
if (uv->u.open.next)
|
|
|
|
uv->u.open.next->u.open.previous = uv->u.open.previous;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-17 16:44:42 +03:00
|
|
|
int luaF_close (lua_State *L, StkId level, int status) {
|
2003-11-19 22:41:30 +03:00
|
|
|
UpVal *uv;
|
2018-10-17 16:44:42 +03:00
|
|
|
while ((uv = L->openupval) != NULL && uplevel(uv) >= level) {
|
2017-04-11 21:41:09 +03:00
|
|
|
TValue *slot = &uv->u.value; /* new position for value */
|
2019-07-18 17:26:03 +03:00
|
|
|
lua_assert(uplevel(uv) < L->top);
|
2019-07-19 17:12:31 +03:00
|
|
|
if (uv->tbc && status != NOCLOSINGMETH) {
|
2019-07-18 17:26:03 +03:00
|
|
|
/* must run closing method, which may change the stack */
|
2019-07-16 21:17:47 +03:00
|
|
|
ptrdiff_t levelrel = savestack(L, level);
|
2019-07-18 17:26:03 +03:00
|
|
|
status = callclosemth(L, uplevel(uv), status);
|
2019-07-16 21:17:47 +03:00
|
|
|
level = restorestack(L, levelrel);
|
|
|
|
}
|
2017-04-11 21:41:09 +03:00
|
|
|
luaF_unlinkupval(uv);
|
|
|
|
setobj(L, slot, uv->v); /* move value to upvalue slot */
|
|
|
|
uv->v = slot; /* now current value lives here */
|
2020-07-27 17:39:42 +03:00
|
|
|
if (!iswhite(uv)) { /* neither white nor dead? */
|
2017-04-11 21:41:09 +03:00
|
|
|
gray2black(uv); /* closed upvalues cannot be gray */
|
2020-07-27 17:39:42 +03:00
|
|
|
luaC_barrier(L, uv, slot);
|
|
|
|
}
|
2001-09-07 21:39:10 +04:00
|
|
|
}
|
2018-10-17 16:44:42 +03:00
|
|
|
return status;
|
2001-09-07 21:39:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-10 21:37:44 +03:00
|
|
|
Proto *luaF_newproto (lua_State *L) {
|
2020-01-31 17:09:53 +03:00
|
|
|
GCObject *o = luaC_newobj(L, LUA_VPROTO, sizeof(Proto));
|
2014-06-19 02:59:29 +04:00
|
|
|
Proto *f = gco2p(o);
|
2001-06-05 22:17:01 +04:00
|
|
|
f->k = NULL;
|
|
|
|
f->sizek = 0;
|
2001-06-28 18:57:17 +04:00
|
|
|
f->p = NULL;
|
|
|
|
f->sizep = 0;
|
1997-09-16 23:25:59 +04:00
|
|
|
f->code = NULL;
|
2000-12-28 15:55:41 +03:00
|
|
|
f->sizecode = 0;
|
2009-09-28 20:32:50 +04:00
|
|
|
f->lineinfo = NULL;
|
2002-10-17 00:40:58 +04:00
|
|
|
f->sizelineinfo = 0;
|
2017-06-27 14:35:31 +03:00
|
|
|
f->abslineinfo = NULL;
|
|
|
|
f->sizeabslineinfo = 0;
|
2002-12-19 14:11:55 +03:00
|
|
|
f->upvalues = NULL;
|
2009-09-28 20:32:50 +04:00
|
|
|
f->sizeupvalues = 0;
|
2000-10-10 23:52:58 +04:00
|
|
|
f->numparams = 0;
|
|
|
|
f->is_vararg = 0;
|
|
|
|
f->maxstacksize = 0;
|
|
|
|
f->locvars = NULL;
|
2009-09-28 20:32:50 +04:00
|
|
|
f->sizelocvars = 0;
|
2005-05-06 00:47:02 +04:00
|
|
|
f->linedefined = 0;
|
|
|
|
f->lastlinedefined = 0;
|
1999-03-05 00:23:39 +03:00
|
|
|
f->source = NULL;
|
1997-09-16 23:25:59 +04:00
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-10 21:37:44 +03:00
|
|
|
void luaF_freeproto (lua_State *L, Proto *f) {
|
2009-04-17 18:40:13 +04:00
|
|
|
luaM_freearray(L, f->code, f->sizecode);
|
|
|
|
luaM_freearray(L, f->p, f->sizep);
|
|
|
|
luaM_freearray(L, f->k, f->sizek);
|
|
|
|
luaM_freearray(L, f->lineinfo, f->sizelineinfo);
|
2017-06-27 14:35:31 +03:00
|
|
|
luaM_freearray(L, f->abslineinfo, f->sizeabslineinfo);
|
2009-04-17 18:40:13 +04:00
|
|
|
luaM_freearray(L, f->locvars, f->sizelocvars);
|
|
|
|
luaM_freearray(L, f->upvalues, f->sizeupvalues);
|
2004-11-24 22:20:21 +03:00
|
|
|
luaM_free(L, f);
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2014-10-25 15:50:46 +04:00
|
|
|
** Look for n-th local variable at line 'line' in function 'func'.
|
1997-09-16 23:25:59 +04:00
|
|
|
** Returns NULL if not found.
|
|
|
|
*/
|
2001-11-28 23:13:13 +03:00
|
|
|
const char *luaF_getlocalname (const Proto *f, int local_number, int pc) {
|
2000-08-22 21:44:17 +04:00
|
|
|
int i;
|
2000-12-28 15:55:41 +03:00
|
|
|
for (i = 0; i<f->sizelocvars && f->locvars[i].startpc <= pc; i++) {
|
2000-08-22 21:44:17 +04:00
|
|
|
if (pc < f->locvars[i].endpc) { /* is variable active? */
|
|
|
|
local_number--;
|
|
|
|
if (local_number == 0)
|
2001-02-09 23:22:29 +03:00
|
|
|
return getstr(f->locvars[i].varname);
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
}
|
2000-08-22 21:44:17 +04:00
|
|
|
return NULL; /* not found */
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|