1997-09-16 12:25:59 -07:00
|
|
|
/*
|
1999-11-10 07:39:35 -08:00
|
|
|
** $Id: lfunc.c,v 1.13 1999/10/14 19:46:57 roberto Exp roberto $
|
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>
|
|
|
|
|
|
|
|
#include "lfunc.h"
|
|
|
|
#include "lmem.h"
|
1997-11-19 09:29:23 -08:00
|
|
|
#include "lstate.h"
|
1997-09-16 12:25:59 -07:00
|
|
|
|
1999-11-10 07:39:35 -08:00
|
|
|
#define gcsizeproto(p) numblocks(0, sizeof(TProtoFunc))
|
|
|
|
#define gcsizeclosure(c) numblocks(c->nelems, sizeof(Closure))
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
1999-08-16 13:52:00 -07:00
|
|
|
Closure *luaF_newclosure (int nelems) {
|
1997-09-16 12:25:59 -07:00
|
|
|
Closure *c = (Closure *)luaM_malloc(sizeof(Closure)+nelems*sizeof(TObject));
|
1999-10-04 10:51:04 -07:00
|
|
|
c->next = L->rootcl;
|
|
|
|
L->rootcl = c;
|
|
|
|
c->marked = 0;
|
1997-10-24 10:17:24 -07:00
|
|
|
c->nelems = nelems;
|
1999-11-10 07:39:35 -08:00
|
|
|
L->nblocks += gcsizeclosure(c);
|
1997-09-16 12:25:59 -07:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-08-16 13:52:00 -07:00
|
|
|
TProtoFunc *luaF_newproto (void) {
|
1997-09-16 12:25:59 -07:00
|
|
|
TProtoFunc *f = luaM_new(TProtoFunc);
|
|
|
|
f->code = NULL;
|
|
|
|
f->lineDefined = 0;
|
1999-03-04 13:23:39 -08:00
|
|
|
f->source = NULL;
|
1997-09-16 12:25:59 -07:00
|
|
|
f->consts = NULL;
|
|
|
|
f->nconsts = 0;
|
|
|
|
f->locvars = NULL;
|
1999-10-04 10:51:04 -07:00
|
|
|
f->next = L->rootproto;
|
|
|
|
L->rootproto = f;
|
|
|
|
f->marked = 0;
|
1997-11-19 09:29:23 -08:00
|
|
|
L->nblocks += gcsizeproto(f);
|
1997-09-16 12:25:59 -07:00
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-04 10:51:04 -07:00
|
|
|
void luaF_freeproto (TProtoFunc *f) {
|
|
|
|
L->nblocks -= gcsizeproto(f);
|
1997-09-16 12:25:59 -07:00
|
|
|
luaM_free(f->code);
|
|
|
|
luaM_free(f->locvars);
|
|
|
|
luaM_free(f->consts);
|
|
|
|
luaM_free(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-10-04 10:51:04 -07:00
|
|
|
void luaF_freeclosure (Closure *c) {
|
|
|
|
L->nblocks -= gcsizeclosure(c);
|
|
|
|
luaM_free(c);
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1997-12-09 05:50:08 -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.
|
|
|
|
*/
|
1999-10-14 12:46:57 -07:00
|
|
|
const char *luaF_getlocalname (const TProtoFunc *func,
|
|
|
|
int local_number, int line) {
|
1997-09-16 12:25:59 -07:00
|
|
|
int count = 0;
|
1999-08-16 13:52:00 -07:00
|
|
|
const char *varname = NULL;
|
1997-09-16 12:25:59 -07: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;
|
|
|
|
}
|
|
|
|
|