1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2018-08-23 10:26:12 -07:00
|
|
|
** $Id: lfunc.c $
|
1998-06-19 09:14:09 -07:00
|
|
|
** Auxiliary functions to manipulate prototypes and closures
|
1997-09-16 12:25:59 -07:00
|
|
|
** See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
2002-12-04 09:38:31 -08:00
|
|
|
#define lfunc_c
|
2004-04-30 13:13:38 -07:00
|
|
|
#define LUA_CORE
|
2002-12-04 09:38:31 -08:00
|
|
|
|
2014-11-02 11:19:04 -08:00
|
|
|
#include "lprefix.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2000-06-12 06:52:05 -07:00
|
|
|
#include "lua.h"
|
|
|
|
|
2018-10-17 06:44:42 -07:00
|
|
|
#include "ldo.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "lfunc.h"
|
2002-08-30 12:09:21 -07:00
|
|
|
#include "lgc.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
#include "lmem.h"
|
2001-09-07 10:39:10 -07:00
|
|
|
#include "lobject.h"
|
1997-11-19 09:29:23 -08:00
|
|
|
#include "lstate.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
2001-11-29 12:22:22 -08:00
|
|
|
|
2014-06-19 11:27:20 -07:00
|
|
|
CClosure *luaF_newCclosure (lua_State *L, int n) {
|
2014-06-18 15:59:29 -07:00
|
|
|
GCObject *o = luaC_newobj(L, LUA_TCCL, sizeCclosure(n));
|
2014-06-19 11:27:20 -07:00
|
|
|
CClosure *c = gco2ccl(o);
|
|
|
|
c->nupvalues = cast_byte(n);
|
1997-09-16 12:25:59 -07:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-06-19 11:27:20 -07:00
|
|
|
LClosure *luaF_newLclosure (lua_State *L, int n) {
|
2014-06-18 15:59:29 -07:00
|
|
|
GCObject *o = luaC_newobj(L, LUA_TLCL, sizeLclosure(n));
|
2014-06-19 11:27:20 -07:00
|
|
|
LClosure *c = gco2lcl(o);
|
|
|
|
c->p = NULL;
|
|
|
|
c->nupvalues = cast_byte(n);
|
|
|
|
while (n--) c->upvals[n] = NULL;
|
2001-09-07 10:39:10 -07:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2014-02-18 05:39:37 -08:00
|
|
|
/*
|
|
|
|
** fill a closure with new closed upvalues
|
|
|
|
*/
|
2013-08-27 11:53:35 -07:00
|
|
|
void luaF_initupvals (lua_State *L, LClosure *cl) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < cl->nupvalues; i++) {
|
2017-04-11 11:41:09 -07:00
|
|
|
GCObject *o = luaC_newobj(L, LUA_TUPVAL, sizeof(UpVal));
|
|
|
|
UpVal *uv = gco2upv(o);
|
2013-08-27 11:53:35 -07:00
|
|
|
uv->v = &uv->u.value; /* make it closed */
|
|
|
|
setnilvalue(uv->v);
|
|
|
|
cl->upvals[i] = uv;
|
2017-04-11 11:41:09 -07:00
|
|
|
luaC_objbarrier(L, cl, o);
|
2013-08-27 11:53:35 -07:00
|
|
|
}
|
2003-10-20 10:42:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-29 12:22:22 -08:00
|
|
|
UpVal *luaF_findupval (lua_State *L, StkId level) {
|
2013-08-27 11:53:35 -07:00
|
|
|
UpVal **pp = &L->openupval;
|
2017-04-11 11:41:09 -07:00
|
|
|
GCObject *o;
|
2002-11-13 03:32:26 -08:00
|
|
|
UpVal *p;
|
2003-11-19 11:41:30 -08:00
|
|
|
UpVal *uv;
|
2014-02-18 05:39:37 -08:00
|
|
|
lua_assert(isintwups(L) || L->openupval == NULL);
|
2017-06-29 08:06:44 -07:00
|
|
|
while ((p = *pp) != NULL && uplevel(p) >= level) {
|
|
|
|
if (uplevel(p) == level && !isdead(G(L), p)) /* corresponding upvalue? */
|
2013-08-27 11:53:35 -07:00
|
|
|
return p; /* return it */
|
2014-02-15 05:12:01 -08:00
|
|
|
pp = &p->u.open.next;
|
2001-09-07 10:39:10 -07:00
|
|
|
}
|
2017-04-11 11:41:09 -07:00
|
|
|
/* not found: create a new upvalue between 'pp' and 'p' */
|
|
|
|
o = luaC_newobj(L, LUA_TUPVAL, sizeof(UpVal));
|
|
|
|
uv = gco2upv(o);
|
|
|
|
uv->u.open.next = p; /* link it to list of open upvalues */
|
|
|
|
uv->u.open.previous = pp;
|
|
|
|
if (p)
|
|
|
|
p->u.open.previous = &uv->u.open.next;
|
2013-08-27 11:53:35 -07:00
|
|
|
*pp = uv;
|
2017-06-29 08:06:44 -07:00
|
|
|
uv->v = s2v(level); /* current value lives in the stack */
|
2014-02-18 05:39:37 -08:00
|
|
|
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;
|
|
|
|
}
|
2003-11-19 11:41:30 -08:00
|
|
|
return uv;
|
2001-09-07 10:39:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-17 06:44:42 -07:00
|
|
|
static void callclose (lua_State *L, void *ud) {
|
|
|
|
luaD_callnoyield(L, cast(StkId, ud), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int closeupval (lua_State *L, UpVal *uv, StkId level, int status) {
|
|
|
|
StkId func = level + 1; /* save slot for old error message */
|
|
|
|
if (status != LUA_OK) /* was there an error? */
|
|
|
|
luaD_seterrorobj(L, status, level); /* save error message */
|
|
|
|
else
|
|
|
|
setnilvalue(s2v(level));
|
|
|
|
if (ttisfunction(uv->v)) { /* object to-be-closed is a function? */
|
|
|
|
setobj2s(L, func, uv->v); /* will call it */
|
|
|
|
setobjs2s(L, func + 1, level); /* error msg. as argument */
|
|
|
|
}
|
|
|
|
else { /* try '__close' metamethod */
|
|
|
|
const TValue *tm = luaT_gettmbyobj(L, uv->v, TM_CLOSE);
|
|
|
|
if (ttisnil(tm))
|
|
|
|
return status; /* no metamethod */
|
|
|
|
setobj2s(L, func, tm); /* will call metamethod */
|
|
|
|
setobj2s(L, func + 1, uv->v); /* with 'self' as argument */
|
|
|
|
}
|
|
|
|
L->top = func + 2; /* add function and argument */
|
|
|
|
if (status == LUA_OK) /* not in "error mode"? */
|
|
|
|
callclose(L, func); /* call closing method */
|
|
|
|
else { /* already inside error handler; cannot raise another error */
|
|
|
|
int newstatus = luaD_pcall(L, callclose, func, savestack(L, level), 0);
|
|
|
|
if (newstatus != LUA_OK) /* error when closing? */
|
|
|
|
status = newstatus; /* this will be the new error */
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-11 11:41:09 -07: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 06:44:42 -07:00
|
|
|
int luaF_close (lua_State *L, StkId level, int status) {
|
2003-11-19 11:41:30 -08:00
|
|
|
UpVal *uv;
|
2018-10-17 06:44:42 -07:00
|
|
|
while ((uv = L->openupval) != NULL && uplevel(uv) >= level) {
|
|
|
|
StkId upl = uplevel(uv);
|
2017-04-11 11:41:09 -07:00
|
|
|
TValue *slot = &uv->u.value; /* new position for value */
|
|
|
|
luaF_unlinkupval(uv);
|
|
|
|
setobj(L, slot, uv->v); /* move value to upvalue slot */
|
|
|
|
uv->v = slot; /* now current value lives here */
|
|
|
|
if (!iswhite(uv))
|
|
|
|
gray2black(uv); /* closed upvalues cannot be gray */
|
|
|
|
luaC_barrier(L, uv, slot);
|
2018-10-17 06:44:42 -07:00
|
|
|
if (status >= 0 && uv->tt == LUA_TUPVALTBC) { /* must be closed? */
|
|
|
|
ptrdiff_t levelrel = savestack(L, level);
|
|
|
|
status = closeupval(L, uv, upl, status); /* may reallocate the stack */
|
|
|
|
level = restorestack(L, levelrel);
|
|
|
|
}
|
2001-09-07 10:39:10 -07:00
|
|
|
}
|
2018-10-17 06:44:42 -07:00
|
|
|
return status;
|
2001-09-07 10:39:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-10 10:37:44 -08:00
|
|
|
Proto *luaF_newproto (lua_State *L) {
|
2014-06-18 15:59:29 -07:00
|
|
|
GCObject *o = luaC_newobj(L, LUA_TPROTO, sizeof(Proto));
|
|
|
|
Proto *f = gco2p(o);
|
2001-06-05 11:17:01 -07:00
|
|
|
f->k = NULL;
|
|
|
|
f->sizek = 0;
|
2001-06-28 07:57:17 -07:00
|
|
|
f->p = NULL;
|
|
|
|
f->sizep = 0;
|
1997-09-16 12:25:59 -07:00
|
|
|
f->code = NULL;
|
2010-06-04 06:25:10 -07:00
|
|
|
f->cache = NULL;
|
2017-04-30 13:43:26 -07:00
|
|
|
f->cachemiss = 0;
|
2000-12-28 04:55:41 -08:00
|
|
|
f->sizecode = 0;
|
2009-09-28 09:32:50 -07:00
|
|
|
f->lineinfo = NULL;
|
2002-10-16 13:40:58 -07:00
|
|
|
f->sizelineinfo = 0;
|
2017-06-27 04:35:31 -07:00
|
|
|
f->abslineinfo = NULL;
|
|
|
|
f->sizeabslineinfo = 0;
|
2002-12-19 03:11:55 -08:00
|
|
|
f->upvalues = NULL;
|
2009-09-28 09:32:50 -07:00
|
|
|
f->sizeupvalues = 0;
|
2000-10-10 12:52:58 -07:00
|
|
|
f->numparams = 0;
|
|
|
|
f->is_vararg = 0;
|
|
|
|
f->maxstacksize = 0;
|
|
|
|
f->locvars = NULL;
|
2009-09-28 09:32:50 -07:00
|
|
|
f->sizelocvars = 0;
|
2005-05-05 13:47:02 -07:00
|
|
|
f->linedefined = 0;
|
|
|
|
f->lastlinedefined = 0;
|
1999-03-04 13:23:39 -08:00
|
|
|
f->source = NULL;
|
1997-09-16 12:25:59 -07:00
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-10 10:37:44 -08:00
|
|
|
void luaF_freeproto (lua_State *L, Proto *f) {
|
2009-04-17 07:40:13 -07: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 04:35:31 -07:00
|
|
|
luaM_freearray(L, f->abslineinfo, f->sizeabslineinfo);
|
2009-04-17 07:40:13 -07:00
|
|
|
luaM_freearray(L, f->locvars, f->sizelocvars);
|
|
|
|
luaM_freearray(L, f->upvalues, f->sizeupvalues);
|
2004-11-24 11:20:21 -08:00
|
|
|
luaM_free(L, f);
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2014-10-25 04:50:46 -07:00
|
|
|
** Look for n-th local variable at line 'line' in function 'func'.
|
1997-09-16 12:25:59 -07:00
|
|
|
** Returns NULL if not found.
|
|
|
|
*/
|
2001-11-28 12:13:13 -08:00
|
|
|
const char *luaF_getlocalname (const Proto *f, int local_number, int pc) {
|
2000-08-22 10:44:17 -07:00
|
|
|
int i;
|
2000-12-28 04:55:41 -08:00
|
|
|
for (i = 0; i<f->sizelocvars && f->locvars[i].startpc <= pc; i++) {
|
2000-08-22 10:44:17 -07:00
|
|
|
if (pc < f->locvars[i].endpc) { /* is variable active? */
|
|
|
|
local_number--;
|
|
|
|
if (local_number == 0)
|
2001-02-09 12:22:29 -08:00
|
|
|
return getstr(f->locvars[i].varname);
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
}
|
2000-08-22 10:44:17 -07:00
|
|
|
return NULL; /* not found */
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|