1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2000-12-04 21:33:40 +03: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>
|
|
|
|
|
2000-06-12 17:52:05 +04:00
|
|
|
#include "lua.h"
|
|
|
|
|
1997-09-16 23:25:59 +04:00
|
|
|
#include "lfunc.h"
|
|
|
|
#include "lmem.h"
|
1997-11-19 20:29:23 +03:00
|
|
|
#include "lstate.h"
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
2000-10-18 21:19:09 +04:00
|
|
|
#define sizeclosure(n) ((int)sizeof(Closure) + (int)sizeof(TObject)*((n)-1))
|
1997-09-16 23:25:59 +04:00
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
Closure *luaF_newclosure (lua_State *L, int nelems) {
|
2000-10-30 15:20:29 +03:00
|
|
|
int size = sizeclosure(nelems);
|
2000-09-29 16:42:13 +04:00
|
|
|
Closure *c = (Closure *)luaM_malloc(L, size);
|
1999-10-04 21:51:04 +04:00
|
|
|
c->next = L->rootcl;
|
|
|
|
L->rootcl = c;
|
2000-08-08 00:21:34 +04:00
|
|
|
c->mark = c;
|
2000-05-30 23:00:31 +04:00
|
|
|
c->nupvalues = nelems;
|
2000-09-29 16:42:13 +04:00
|
|
|
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;
|
2000-09-29 16:42:13 +04:00
|
|
|
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;
|
2000-09-29 16:42:13 +04:00
|
|
|
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;
|
1999-03-05 00:23:39 +03:00
|
|
|
f->source = NULL;
|
2000-10-10 23:52:58 +04:00
|
|
|
f->next = L->rootproto; /* chain in list of protos */
|
1999-10-04 21:51:04 +04:00
|
|
|
L->rootproto = f;
|
1997-09-16 23:25:59 +04:00
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-29 16:42:13 +04:00
|
|
|
static size_t protosize (Proto *f) {
|
|
|
|
return sizeof(Proto)
|
2000-12-04 21:33:40 +03:00
|
|
|
+ f->nknum*sizeof(lua_Number)
|
2000-09-29 16:42:13 +04:00
|
|
|
+ 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) {
|
2000-09-29 16:42:13 +04:00
|
|
|
if (f->ncode > 0) /* function was properly created? */
|
|
|
|
L->nblocks -= protosize(f);
|
1999-11-22 16:12:07 +03:00
|
|
|
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);
|
1999-11-22 16:12:07 +03:00
|
|
|
luaM_free(L, f);
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 16:12:07 +03:00
|
|
|
void luaF_freeclosure (lua_State *L, Closure *c) {
|
2000-09-29 16:42:13 +04:00
|
|
|
L->nblocks -= sizeclosure(c->nupvalues);
|
1999-11-22 16:12:07 +03:00
|
|
|
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.
|
|
|
|
*/
|
2000-08-22 21:44:17 +04:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2000-08-22 21:44:17 +04:00
|
|
|
return NULL; /* not found */
|
1997-09-16 23:25:59 +04:00
|
|
|
}
|
|
|
|
|