1997-09-16 12:25:59 -07:00
|
|
|
/*
|
2000-09-29 05:42:13 -07:00
|
|
|
** $Id: lfunc.c,v 1.30 2000/08/22 17:44:17 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>
|
|
|
|
|
2000-06-12 06:52:05 -07:00
|
|
|
#include "lua.h"
|
|
|
|
|
1997-09-16 12:25:59 -07:00
|
|
|
#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
|
|
|
|
|
|
|
|
2000-09-29 05:42:13 -07:00
|
|
|
#define sizeclosure(n) (sizeof(Closure) + (lint32)sizeof(TObject)*((n)-1))
|
1997-09-16 12:25:59 -07:00
|
|
|
|
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
Closure *luaF_newclosure (lua_State *L, int nelems) {
|
2000-09-29 05:42:13 -07:00
|
|
|
lint32 size = sizeclosure(nelems);
|
|
|
|
Closure *c = (Closure *)luaM_malloc(L, size);
|
1999-10-04 10:51:04 -07:00
|
|
|
c->next = L->rootcl;
|
|
|
|
L->rootcl = c;
|
2000-08-07 13:21:34 -07:00
|
|
|
c->mark = c;
|
2000-05-30 12:00:31 -07:00
|
|
|
c->nupvalues = nelems;
|
2000-09-29 05:42:13 -07:00
|
|
|
L->nblocks += size;
|
1997-09-16 12:25:59 -07:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-03-10 10:37:44 -08:00
|
|
|
Proto *luaF_newproto (lua_State *L) {
|
|
|
|
Proto *f = luaM_new(L, Proto);
|
1997-09-16 12:25:59 -07:00
|
|
|
f->code = NULL;
|
2000-09-29 05:42:13 -07:00
|
|
|
f->ncode = 0;
|
2000-08-08 11:26:05 -07:00
|
|
|
f->lineinfo = NULL;
|
2000-09-29 05:42:13 -07:00
|
|
|
f->nlineinfo = 0;
|
1997-09-16 12:25:59 -07:00
|
|
|
f->lineDefined = 0;
|
1999-03-04 13:23:39 -08:00
|
|
|
f->source = NULL;
|
2000-01-28 08:53:00 -08:00
|
|
|
f->kstr = NULL;
|
|
|
|
f->nkstr = 0;
|
|
|
|
f->knum = NULL;
|
|
|
|
f->nknum = 0;
|
|
|
|
f->kproto = NULL;
|
|
|
|
f->nkproto = 0;
|
1997-09-16 12:25:59 -07:00
|
|
|
f->locvars = NULL;
|
2000-08-22 10:44:17 -07:00
|
|
|
f->nlocvars = 0;
|
1999-10-04 10:51:04 -07:00
|
|
|
f->next = L->rootproto;
|
|
|
|
L->rootproto = f;
|
|
|
|
f->marked = 0;
|
1997-09-16 12:25:59 -07:00
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-29 05:42:13 -07:00
|
|
|
static size_t protosize (Proto *f) {
|
|
|
|
return sizeof(Proto)
|
|
|
|
+ f->nknum*sizeof(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 10:37:44 -08:00
|
|
|
void luaF_freeproto (lua_State *L, Proto *f) {
|
2000-09-29 05:42:13 -07:00
|
|
|
if (f->ncode > 0) /* function was properly created? */
|
|
|
|
L->nblocks -= protosize(f);
|
1999-11-22 05:12:07 -08:00
|
|
|
luaM_free(L, f->code);
|
|
|
|
luaM_free(L, f->locvars);
|
2000-01-28 08:53:00 -08:00
|
|
|
luaM_free(L, f->kstr);
|
|
|
|
luaM_free(L, f->knum);
|
|
|
|
luaM_free(L, f->kproto);
|
2000-08-08 11:26:05 -07:00
|
|
|
luaM_free(L, f->lineinfo);
|
1999-11-22 05:12:07 -08:00
|
|
|
luaM_free(L, f);
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-11-22 05:12:07 -08:00
|
|
|
void luaF_freeclosure (lua_State *L, Closure *c) {
|
2000-09-29 05:42:13 -07:00
|
|
|
L->nblocks -= sizeclosure(c->nupvalues);
|
1999-11-22 05:12:07 -08:00
|
|
|
luaM_free(L, c);
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
1999-12-27 09:33:22 -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.
|
|
|
|
*/
|
2000-08-22 10:44:17 -07: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 12:25:59 -07:00
|
|
|
}
|
|
|
|
}
|
2000-08-22 10:44:17 -07:00
|
|
|
return NULL; /* not found */
|
1997-09-16 12:25:59 -07:00
|
|
|
}
|
|
|
|
|