mirror of
https://github.com/lua/lua
synced 2024-11-22 21:01:26 +03:00
83 lines
1.7 KiB
C
83 lines
1.7 KiB
C
/*
|
|
** $Id: lfunc.c,v 1.11 1999/08/16 20:52:00 roberto Exp roberto $
|
|
** Auxiliary functions to manipulate prototypes and closures
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "lfunc.h"
|
|
#include "lmem.h"
|
|
#include "lstate.h"
|
|
|
|
#define gcsizeproto(p) 5 /* approximate "weight" for a prototype */
|
|
#define gcsizeclosure(c) 1 /* approximate "weight" for a closure */
|
|
|
|
|
|
|
|
Closure *luaF_newclosure (int nelems) {
|
|
Closure *c = (Closure *)luaM_malloc(sizeof(Closure)+nelems*sizeof(TObject));
|
|
c->next = L->rootcl;
|
|
L->rootcl = c;
|
|
c->marked = 0;
|
|
L->nblocks += gcsizeclosure(c);
|
|
c->nelems = nelems;
|
|
return c;
|
|
}
|
|
|
|
|
|
TProtoFunc *luaF_newproto (void) {
|
|
TProtoFunc *f = luaM_new(TProtoFunc);
|
|
f->code = NULL;
|
|
f->lineDefined = 0;
|
|
f->source = NULL;
|
|
f->consts = NULL;
|
|
f->nconsts = 0;
|
|
f->locvars = NULL;
|
|
f->next = L->rootproto;
|
|
L->rootproto = f;
|
|
f->marked = 0;
|
|
L->nblocks += gcsizeproto(f);
|
|
return f;
|
|
}
|
|
|
|
|
|
void luaF_freeproto (TProtoFunc *f) {
|
|
L->nblocks -= gcsizeproto(f);
|
|
luaM_free(f->code);
|
|
luaM_free(f->locvars);
|
|
luaM_free(f->consts);
|
|
luaM_free(f);
|
|
}
|
|
|
|
|
|
void luaF_freeclosure (Closure *c) {
|
|
L->nblocks -= gcsizeclosure(c);
|
|
luaM_free(c);
|
|
}
|
|
|
|
|
|
/*
|
|
** Look for n-th local variable at line "line" in function "func".
|
|
** Returns NULL if not found.
|
|
*/
|
|
const char *luaF_getlocalname (TProtoFunc *func, int local_number, int line) {
|
|
int count = 0;
|
|
const char *varname = NULL;
|
|
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;
|
|
}
|
|
|