1997-09-16 23:25:59 +04:00
|
|
|
/*
|
2000-08-22 21:44:17 +04:00
|
|
|
** $Id: lfunc.c,v 1.29 2000/08/09 19:16:57 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-03-10 21:37:44 +03:00
|
|
|
#define gcsizeproto(L, p) numblocks(L, 0, sizeof(Proto))
|
2000-05-30 23:00:31 +04:00
|
|
|
#define gcsizeclosure(L, c) numblocks(L, c->nupvalues, sizeof(Closure))
|
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-03-30 00:19:20 +04:00
|
|
|
Closure *c = (Closure *)luaM_malloc(L, sizeof(Closure) +
|
2000-05-24 17:54:49 +04:00
|
|
|
(lint32)sizeof(TObject)*(nelems-1));
|
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;
|
1999-11-22 16:12:07 +03:00
|
|
|
L->nblocks += gcsizeclosure(L, c);
|
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);
|
1997-09-16 23:25:59 +04:00
|
|
|
f->code = NULL;
|
2000-08-08 22:26:05 +04:00
|
|
|
f->lineinfo = NULL;
|
1997-09-16 23:25:59 +04:00
|
|
|
f->lineDefined = 0;
|
1999-03-05 00:23:39 +03:00
|
|
|
f->source = NULL;
|
2000-01-28 19:53:00 +03:00
|
|
|
f->kstr = NULL;
|
|
|
|
f->nkstr = 0;
|
|
|
|
f->knum = NULL;
|
|
|
|
f->nknum = 0;
|
|
|
|
f->kproto = NULL;
|
|
|
|
f->nkproto = 0;
|
1997-09-16 23:25:59 +04:00
|
|
|
f->locvars = NULL;
|
2000-08-22 21:44:17 +04:00
|
|
|
f->nlocvars = 0;
|
1999-10-04 21:51:04 +04:00
|
|
|
f->next = L->rootproto;
|
|
|
|
L->rootproto = f;
|
|
|
|
f->marked = 0;
|
1999-11-22 16:12:07 +03:00
|
|
|
L->nblocks += gcsizeproto(L, f);
|
1997-09-16 23:25:59 +04:00
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-10 21:37:44 +03:00
|
|
|
void luaF_freeproto (lua_State *L, Proto *f) {
|
1999-11-22 16:12:07 +03:00
|
|
|
L->nblocks -= gcsizeproto(L, 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);
|
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) {
|
|
|
|
L->nblocks -= gcsizeclosure(L, c);
|
|
|
|
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
|
|
|
}
|
|
|
|
|