1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2005-01-18 20:18:09 +03:00
|
|
|
** $Id: lfunc.c,v 2.5 2004/11/24 19:20:21 roberto Exp $
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-10-02 23:21:09 +04:00
|
|
|
#include <stddef.h>
|
1997-09-16 23:25:59 +04:00
|
|
|
|
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
|
|
|
|
2000-06-12 17:52:05 +04:00
|
|
|
#include "lua.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
|
|
|
|
2001-09-07 21:39:10 +04:00
|
|
|
Closure *luaF_newCclosure (lua_State *L, int nelems) {
|
|
|
|
Closure *c = cast(Closure *, luaM_malloc(L, sizeCclosure(nelems)));
|
2003-12-10 15:13:36 +03:00
|
|
|
luaC_link(L, obj2gco(c), LUA_TFUNCTION);
|
2001-10-02 20:45:03 +04:00
|
|
|
c->c.isC = 1;
|
2002-03-05 15:42:47 +03:00
|
|
|
c->c.nupvalues = cast(lu_byte, nelems);
|
1997-09-16 23:25:59 +04:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-10 15:13:36 +03:00
|
|
|
Closure *luaF_newLclosure (lua_State *L, int nelems, TValue *e) {
|
2001-09-07 21:39:10 +04:00
|
|
|
Closure *c = cast(Closure *, luaM_malloc(L, sizeLclosure(nelems)));
|
2003-12-10 15:13:36 +03:00
|
|
|
luaC_link(L, obj2gco(c), LUA_TFUNCTION);
|
2001-10-02 20:45:03 +04:00
|
|
|
c->l.isC = 0;
|
2003-03-18 15:50:04 +03:00
|
|
|
c->l.g = *e;
|
2002-03-05 15:42:47 +03:00
|
|
|
c->l.nupvalues = cast(lu_byte, nelems);
|
2004-03-16 00:04:33 +03:00
|
|
|
while (nelems--) c->l.upvals[nelems] = NULL;
|
2001-09-07 21:39:10 +04:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-20 21:42:41 +04:00
|
|
|
UpVal *luaF_newupval (lua_State *L) {
|
2003-11-19 22:41:30 +03:00
|
|
|
UpVal *uv = luaM_new(L, UpVal);
|
2003-12-10 15:13:36 +03:00
|
|
|
luaC_link(L, obj2gco(uv), LUA_TUPVAL);
|
2005-01-18 20:18:09 +03:00
|
|
|
uv->v = &uv->u.value;
|
2003-11-19 22:41:30 +03:00
|
|
|
setnilvalue(uv->v);
|
|
|
|
return uv;
|
2003-10-20 21:42:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-29 23:22:22 +03:00
|
|
|
UpVal *luaF_findupval (lua_State *L, StkId level) {
|
2005-01-18 20:18:09 +03:00
|
|
|
global_State *g = G(L);
|
2002-08-30 23:09:21 +04:00
|
|
|
GCObject **pp = &L->openupval;
|
2002-11-13 14:32:26 +03:00
|
|
|
UpVal *p;
|
2003-11-19 22:41:30 +03:00
|
|
|
UpVal *uv;
|
2002-11-13 14:32:26 +03:00
|
|
|
while ((p = ngcotouv(*pp)) != NULL && p->v >= level) {
|
2005-01-18 20:18:09 +03:00
|
|
|
lua_assert(p->v != &p->u.value);
|
2005-01-19 18:54:26 +03:00
|
|
|
if (p->v == level) { /* found a corresponding upvalue? */
|
|
|
|
if (isdead(G(L), obj2gco(p))) /* is it dead? */
|
|
|
|
changewhite(obj2gco(p)); /* ressurect it */
|
|
|
|
return p;
|
|
|
|
}
|
2002-11-13 14:32:26 +03:00
|
|
|
pp = &p->next;
|
2001-09-07 21:39:10 +04:00
|
|
|
}
|
2003-11-19 22:41:30 +03:00
|
|
|
uv = luaM_new(L, UpVal); /* not found: create a new one */
|
|
|
|
uv->tt = LUA_TUPVAL;
|
2005-01-18 20:18:09 +03:00
|
|
|
uv->marked = luaC_white(g);
|
2003-11-19 22:41:30 +03:00
|
|
|
uv->v = level; /* current value lives in the stack */
|
|
|
|
uv->next = *pp; /* chain it in the proper position */
|
2003-12-10 15:13:36 +03:00
|
|
|
*pp = obj2gco(uv);
|
2005-01-18 20:18:09 +03:00
|
|
|
uv->u.l.prev = &g->uvhead; /* double link it in `uvhead' list */
|
|
|
|
uv->u.l.next = g->uvhead.u.l.next;
|
|
|
|
uv->u.l.next->u.l.prev = uv;
|
|
|
|
g->uvhead.u.l.next = uv;
|
|
|
|
lua_assert(uv->u.l.next->u.l.prev == uv && uv->u.l.prev->u.l.next == uv);
|
2003-11-19 22:41:30 +03:00
|
|
|
return uv;
|
2001-09-07 21:39:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-18 20:18:09 +03:00
|
|
|
static void unlinkupval (UpVal *uv) {
|
|
|
|
lua_assert(uv->u.l.next->u.l.prev == uv && uv->u.l.prev->u.l.next == uv);
|
|
|
|
uv->u.l.next->u.l.prev = uv->u.l.prev; /* remove from `uvhead' list */
|
|
|
|
uv->u.l.prev->u.l.next = uv->u.l.next;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void luaF_freeupval (lua_State *L, UpVal *uv) {
|
|
|
|
if (uv->v != &uv->u.value) /* is it open? */
|
|
|
|
unlinkupval(uv); /* remove from open list */
|
|
|
|
luaM_free(L, uv); /* free upvalue */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-07 21:39:10 +04:00
|
|
|
void luaF_close (lua_State *L, StkId level) {
|
2003-11-19 22:41:30 +03:00
|
|
|
UpVal *uv;
|
2004-03-16 00:04:33 +03:00
|
|
|
global_State *g = G(L);
|
2003-11-19 22:41:30 +03:00
|
|
|
while ((uv = ngcotouv(L->openupval)) != NULL && uv->v >= level) {
|
2004-03-16 00:04:33 +03:00
|
|
|
GCObject *o = obj2gco(uv);
|
2005-01-18 20:18:09 +03:00
|
|
|
lua_assert(!isblack(o) && uv->v != &uv->u.value);
|
2003-11-19 22:41:30 +03:00
|
|
|
L->openupval = uv->next; /* remove from `open' list */
|
2004-03-16 00:04:33 +03:00
|
|
|
if (isdead(g, o))
|
2005-01-18 20:18:09 +03:00
|
|
|
luaF_freeupval(L, uv); /* free upvalue */
|
2004-03-16 00:04:33 +03:00
|
|
|
else {
|
2005-01-18 20:18:09 +03:00
|
|
|
unlinkupval(uv);
|
|
|
|
setobj(L, &uv->u.value, uv->v);
|
2005-01-19 18:54:26 +03:00
|
|
|
if (isgray(o)) {
|
|
|
|
gray2black(o); /* closed upvalues are never gray */
|
|
|
|
luaC_barrier(L, uv, uv->v);
|
|
|
|
}
|
2005-01-18 20:18:09 +03:00
|
|
|
uv->v = &uv->u.value; /* now current value lives here */
|
2004-03-16 00:04:33 +03:00
|
|
|
luaC_linkupval(L, uv); /* link upvalue into `gcroot' list */
|
|
|
|
}
|
2001-09-07 21:39:10 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-10 21:37:44 +03:00
|
|
|
Proto *luaF_newproto (lua_State *L) {
|
|
|
|
Proto *f = luaM_new(L, Proto);
|
2003-12-10 15:13:36 +03:00
|
|
|
luaC_link(L, obj2gco(f), LUA_TPROTO);
|
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;
|
2002-10-17 00:40:58 +04:00
|
|
|
f->sizelineinfo = 0;
|
2003-02-11 13:46:24 +03:00
|
|
|
f->sizeupvalues = 0;
|
|
|
|
f->nups = 0;
|
2002-12-19 14:11:55 +03:00
|
|
|
f->upvalues = NULL;
|
2000-10-10 23:52:58 +04:00
|
|
|
f->numparams = 0;
|
|
|
|
f->is_vararg = 0;
|
|
|
|
f->maxstacksize = 0;
|
2000-08-08 22:26:05 +04:00
|
|
|
f->lineinfo = NULL;
|
2000-12-28 15:55:41 +03:00
|
|
|
f->sizelocvars = 0;
|
2000-10-10 23:52:58 +04:00
|
|
|
f->locvars = NULL;
|
1997-09-16 23:25:59 +04:00
|
|
|
f->lineDefined = 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) {
|
2000-12-28 15:55:41 +03:00
|
|
|
luaM_freearray(L, f->code, f->sizecode, Instruction);
|
2002-10-22 00:41:46 +04:00
|
|
|
luaM_freearray(L, f->p, f->sizep, Proto *);
|
2003-12-10 15:13:36 +03:00
|
|
|
luaM_freearray(L, f->k, f->sizek, TValue);
|
2002-10-17 00:40:58 +04:00
|
|
|
luaM_freearray(L, f->lineinfo, f->sizelineinfo, int);
|
2000-12-28 15:55:41 +03:00
|
|
|
luaM_freearray(L, f->locvars, f->sizelocvars, struct LocVar);
|
2003-02-11 13:46:24 +03:00
|
|
|
luaM_freearray(L, f->upvalues, f->sizeupvalues, TString *);
|
2004-11-24 22:20:21 +03:00
|
|
|
luaM_free(L, f);
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
void luaF_freeclosure (lua_State *L, Closure *c) {
|
2001-10-02 20:45:03 +04:00
|
|
|
int size = (c->c.isC) ? sizeCclosure(c->c.nupvalues) :
|
|
|
|
sizeLclosure(c->l.nupvalues);
|
2004-11-24 22:20:21 +03:00
|
|
|
luaM_freemem(L, c, size);
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-12-27 20:33:22 +03: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
|
|
|
}
|
|
|
|
|