lua/lfunc.c

172 lines
4.3 KiB
C
Raw Normal View History

1997-09-16 12:25:59 -07:00
/*
** $Id: lfunc.c,v 1.48 2001/10/02 16:45:03 roberto Exp $
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
*/
#include <stdlib.h>
2001-03-26 06:31:49 -08:00
#define LUA_PRIVATE
#include "lua.h"
1997-09-16 12:25:59 -07:00
#include "lfunc.h"
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
1997-09-16 12:25:59 -07:00
2001-10-02 09:45:03 -07:00
#define sizeCclosure(n) (cast(int, sizeof(CClosure)) + \
2001-08-31 12:46:07 -07:00
cast(int, sizeof(TObject)*((n)-1)))
1997-09-16 12:25:59 -07:00
2001-10-02 09:45:03 -07:00
#define sizeLclosure(n) (cast(int, sizeof(LClosure)) + \
cast(int, sizeof(TObject *)*((n)-1)))
1997-09-16 12:25:59 -07:00
Closure *luaF_newCclosure (lua_State *L, int nelems) {
Closure *c = cast(Closure *, luaM_malloc(L, sizeCclosure(nelems)));
2001-10-02 09:45:03 -07:00
c->c.isC = 1;
c->c.next = G(L)->rootcl;
G(L)->rootcl = c;
2001-10-02 09:45:03 -07:00
c->c.marked = 0;
c->c.nupvalues = nelems;
1997-09-16 12:25:59 -07:00
return c;
}
Closure *luaF_newLclosure (lua_State *L, int nelems) {
Closure *c = cast(Closure *, luaM_malloc(L, sizeLclosure(nelems)));
2001-10-02 09:45:03 -07:00
c->l.isC = 0;
c->l.marked = 0;
c->l.nupvalues = nelems;
return c;
}
/*
** returns the open pointer in a closure that points higher into the stack
*/
2001-10-02 09:45:03 -07:00
static StkId uppoint (LClosure *cl) {
StkId lp = NULL;
int i;
for (i=0; i<cl->nupvalues; i++) {
if (!isclosed(cl->upvals[i]) && (lp == NULL || cl->upvals[i] > lp))
lp = cl->upvals[i];
}
return lp;
}
void luaF_LConlist (lua_State *L, Closure *cl) {
2001-10-02 09:45:03 -07:00
StkId cli = uppoint(&cl->l);
if (cli == NULL) { /* no more open entries? */
cl->l.next = G(L)->rootcl; /* insert in final list */
G(L)->rootcl = cl;
}
else { /* insert in list of open closures, ordered by decreasing uppoints */
Closure **p = &L->opencl;
2001-10-02 09:45:03 -07:00
while (*p != NULL && uppoint(&(*p)->l) > cli) p = &(*p)->l.next;
cl->l.next = *p;
*p = cl;
}
}
2001-10-02 09:45:03 -07:00
static int closeCl (lua_State *L, LClosure *cl, StkId level) {
int got = 0; /* flag: 1 if some pointer in the closure was corrected */
int i;
for (i=0; i<cl->nupvalues; i++) {
StkId var;
if (!isclosed(cl->upvals[i]) && (var=cl->upvals[i]) >= level) {
if (ttype(var) != LUA_TUPVAL) {
TObject *v = luaM_newvector(L, 2, TObject);
v[1] = *var;
setupvalue(v, G(L)->rootupval, LUA_HEAPUPVAL);
G(L)->rootupval = v;
setupvalue(var, &v[1], LUA_TUPVAL);
}
cl->upvals[i] = vvalue(var);
got = 1;
}
}
return got;
}
void luaF_close (lua_State *L, StkId level) {
Closure *affected = NULL; /* closures with open pointers >= level */
Closure *cl;
while ((cl=L->opencl) != NULL) {
2001-10-02 09:45:03 -07:00
if (!closeCl(L, cast(LClosure *, cl), level)) break;
/* some pointer in `cl' changed; will re-insert it in original list */
2001-10-02 09:45:03 -07:00
L->opencl = cl->l.next; /* remove from original list */
cl->l.next = affected;
affected = cl; /* insert in affected list */
}
/* re-insert all affected closures in original list */
while ((cl=affected) != NULL) {
2001-10-02 09:45:03 -07:00
affected = cl->l.next;
luaF_LConlist(L, cl);
}
}
2000-03-10 10:37:44 -08:00
Proto *luaF_newproto (lua_State *L) {
Proto *f = luaM_new(L, Proto);
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;
f->sizecode = 0;
2001-02-20 10:28:11 -08:00
f->nupvalues = 0;
2000-10-10 12:52:58 -07:00
f->numparams = 0;
f->is_vararg = 0;
f->maxstacksize = 0;
f->marked = 0;
2000-08-08 11:26:05 -07:00
f->lineinfo = NULL;
f->sizelocvars = 0;
f->sizelineinfo = 0;
2000-10-10 12:52:58 -07:00
f->locvars = NULL;
1997-09-16 12:25:59 -07:00
f->lineDefined = 0;
f->source = NULL;
f->next = G(L)->rootproto; /* chain in list of protos */
G(L)->rootproto = f;
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) {
luaM_freearray(L, f->code, f->sizecode, Instruction);
luaM_freearray(L, f->locvars, f->sizelocvars, struct LocVar);
luaM_freearray(L, f->k, f->sizek, TObject);
2001-06-28 07:57:17 -07:00
luaM_freearray(L, f->p, f->sizep, Proto *);
luaM_freearray(L, f->lineinfo, f->sizelineinfo, int);
luaM_freelem(L, f);
1997-09-16 12:25:59 -07:00
}
void luaF_freeclosure (lua_State *L, Closure *c) {
2001-10-02 09:45:03 -07:00
int size = (c->c.isC) ? sizeCclosure(c->c.nupvalues) :
sizeLclosure(c->l.nupvalues);
luaM_free(L, c, size);
1997-09-16 12:25:59 -07:00
}
/*
1999-12-27 09:33:22 -08: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-02-23 09:17:25 -08:00
const l_char *luaF_getlocalname (const Proto *f, int local_number, int pc) {
int i;
for (i = 0; i<f->sizelocvars && f->locvars[i].startpc <= pc; i++) {
if (pc < f->locvars[i].endpc) { /* is variable active? */
local_number--;
if (local_number == 0)
return getstr(f->locvars[i].varname);
1997-09-16 12:25:59 -07:00
}
}
return NULL; /* not found */
1997-09-16 12:25:59 -07:00
}