lua/lfunc.c

93 lines
1.9 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
1999-08-17 00:52:00 +04:00
** $Id: lfunc.c,v 1.10 1999/03/04 21:17:26 roberto Exp roberto $
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
*/
#include <stdlib.h>
#include "lfunc.h"
#include "lmem.h"
#include "lstate.h"
1997-09-16 23:25:59 +04:00
1997-12-09 16:50:08 +03:00
#define gcsizeproto(p) 5 /* approximate "weight" for a prototype */
#define gcsizeclosure(c) 1 /* approximate "weight" for a closure */
1997-09-16 23:25:59 +04:00
1999-08-17 00:52:00 +04:00
Closure *luaF_newclosure (int nelems) {
1997-09-16 23:25:59 +04:00
Closure *c = (Closure *)luaM_malloc(sizeof(Closure)+nelems*sizeof(TObject));
luaO_insertlist(&(L->rootcl), (GCnode *)c);
L->nblocks += gcsizeclosure(c);
1997-10-24 21:17:24 +04:00
c->nelems = nelems;
1997-09-16 23:25:59 +04:00
return c;
}
1999-08-17 00:52:00 +04:00
TProtoFunc *luaF_newproto (void) {
1997-09-16 23:25:59 +04:00
TProtoFunc *f = luaM_new(TProtoFunc);
f->code = NULL;
f->lineDefined = 0;
f->source = NULL;
1997-09-16 23:25:59 +04:00
f->consts = NULL;
f->nconsts = 0;
f->locvars = NULL;
luaO_insertlist(&(L->rootproto), (GCnode *)f);
L->nblocks += gcsizeproto(f);
1997-09-16 23:25:59 +04:00
return f;
}
1999-08-17 00:52:00 +04:00
static void freefunc (TProtoFunc *f) {
1997-09-16 23:25:59 +04:00
luaM_free(f->code);
luaM_free(f->locvars);
luaM_free(f->consts);
luaM_free(f);
}
1999-08-17 00:52:00 +04:00
void luaF_freeproto (TProtoFunc *l) {
1997-09-16 23:25:59 +04:00
while (l) {
TProtoFunc *next = (TProtoFunc *)l->head.next;
L->nblocks -= gcsizeproto(l);
1997-09-16 23:25:59 +04:00
freefunc(l);
l = next;
}
}
1999-08-17 00:52:00 +04:00
void luaF_freeclosure (Closure *l) {
1997-09-16 23:25:59 +04:00
while (l) {
Closure *next = (Closure *)l->head.next;
L->nblocks -= gcsizeclosure(l);
1997-09-16 23:25:59 +04:00
luaM_free(l);
l = next;
}
}
/*
1997-12-09 16:50:08 +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.
*/
1999-08-17 00:52:00 +04:00
const char *luaF_getlocalname (TProtoFunc *func, int local_number, int line) {
1997-09-16 23:25:59 +04:00
int count = 0;
1999-08-17 00:52:00 +04:00
const char *varname = NULL;
1997-09-16 23:25:59 +04:00
LocVar *lv = func->locvars;
if (lv == NULL)
return NULL;
for (; lv->line != -1 && lv->line < line; lv++) {
if (lv->varname) { /* register */
if (++count == local_number)
varname = lv->varname->str;
}
else /* unregister */
if (--count < local_number)
varname = NULL;
}
return varname;
}