lua/lfunc.c

110 lines
2.4 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: lfunc.c,v 1.34 2000/10/30 12:20:29 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 "lua.h"
1997-09-16 23:25:59 +04:00
#include "lfunc.h"
#include "lmem.h"
#include "lstate.h"
1997-09-16 23:25:59 +04:00
#define sizeclosure(n) ((int)sizeof(Closure) + (int)sizeof(TObject)*((n)-1))
1997-09-16 23:25:59 +04:00
Closure *luaF_newclosure (lua_State *L, int nelems) {
2000-10-30 15:20:29 +03:00
int size = sizeclosure(nelems);
Closure *c = (Closure *)luaM_malloc(L, size);
c->next = L->rootcl;
L->rootcl = c;
c->mark = c;
2000-05-30 23:00:31 +04:00
c->nupvalues = nelems;
L->nblocks += size;
1997-09-16 23:25:59 +04:00
return c;
}
2000-03-10 21:37:44 +03:00
Proto *luaF_newproto (lua_State *L) {
Proto *f = luaM_new(L, Proto);
2000-10-10 23:52:58 +04:00
f->knum = NULL;
f->nknum = 0;
f->kstr = NULL;
f->nkstr = 0;
f->kproto = NULL;
f->nkproto = 0;
1997-09-16 23:25:59 +04:00
f->code = NULL;
f->ncode = 0;
2000-10-10 23:52:58 +04:00
f->numparams = 0;
f->is_vararg = 0;
f->maxstacksize = 0;
f->marked = 0;
2000-08-08 22:26:05 +04:00
f->lineinfo = NULL;
f->nlineinfo = 0;
2000-10-10 23:52:58 +04:00
f->nlocvars = 0;
f->locvars = NULL;
1997-09-16 23:25:59 +04:00
f->lineDefined = 0;
f->source = NULL;
2000-10-10 23:52:58 +04:00
f->next = L->rootproto; /* chain in list of protos */
L->rootproto = f;
1997-09-16 23:25:59 +04:00
return f;
}
static size_t protosize (Proto *f) {
return sizeof(Proto)
+ f->nknum*sizeof(lua_Number)
+ f->nkstr*sizeof(TString *)
+ f->nkproto*sizeof(Proto *)
+ f->ncode*sizeof(Instruction)
+ f->nlocvars*sizeof(struct LocVar)
+ f->nlineinfo*sizeof(int);
}
void luaF_protook (lua_State *L, Proto *f, int pc) {
f->ncode = pc; /* signal that proto was properly created */
L->nblocks += protosize(f);
}
2000-03-10 21:37:44 +03:00
void luaF_freeproto (lua_State *L, Proto *f) {
if (f->ncode > 0) /* function was properly created? */
L->nblocks -= protosize(f);
luaM_free(L, f->code);
luaM_free(L, f->locvars);
2000-01-28 19:53:00 +03:00
luaM_free(L, f->kstr);
luaM_free(L, f->knum);
luaM_free(L, f->kproto);
2000-08-08 22:26:05 +04:00
luaM_free(L, f->lineinfo);
luaM_free(L, f);
1997-09-16 23:25:59 +04:00
}
void luaF_freeclosure (lua_State *L, Closure *c) {
L->nblocks -= sizeclosure(c->nupvalues);
luaM_free(L, c);
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.
*/
const char *luaF_getlocalname (const Proto *f, int local_number, int pc) {
int i;
for (i = 0; i<f->nlocvars && f->locvars[i].startpc <= pc; i++) {
if (pc < f->locvars[i].endpc) { /* is variable active? */
local_number--;
if (local_number == 0)
return f->locvars[i].varname->str;
1997-09-16 23:25:59 +04:00
}
}
return NULL; /* not found */
1997-09-16 23:25:59 +04:00
}