lua/lfunc.c

147 lines
3.5 KiB
C
Raw Normal View History

1997-09-16 23:25:59 +04:00
/*
** $Id: lfunc.c,v 2.3 2004/03/15 21:04:33 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
*/
2003-10-02 23:21:09 +04:00
#include <stddef.h>
1997-09-16 23:25:59 +04:00
2002-12-04 20:38:31 +03:00
#define lfunc_c
#define LUA_CORE
2002-12-04 20:38:31 +03:00
#include "lua.h"
1997-09-16 23:25:59 +04:00
#include "lfunc.h"
#include "lgc.h"
1997-09-16 23:25:59 +04:00
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
1997-09-16 23:25:59 +04:00
Closure *luaF_newCclosure (lua_State *L, int nelems) {
Closure *c = cast(Closure *, luaM_malloc(L, sizeCclosure(nelems)));
luaC_link(L, obj2gco(c), LUA_TFUNCTION);
2001-10-02 20:45:03 +04:00
c->c.isC = 1;
c->c.nupvalues = cast(lu_byte, nelems);
1997-09-16 23:25:59 +04:00
return c;
}
Closure *luaF_newLclosure (lua_State *L, int nelems, TValue *e) {
Closure *c = cast(Closure *, luaM_malloc(L, sizeLclosure(nelems)));
luaC_link(L, obj2gco(c), LUA_TFUNCTION);
2001-10-02 20:45:03 +04:00
c->l.isC = 0;
c->l.g = *e;
c->l.nupvalues = cast(lu_byte, nelems);
2004-03-16 00:04:33 +03:00
while (nelems--) c->l.upvals[nelems] = NULL;
return c;
}
UpVal *luaF_newupval (lua_State *L) {
UpVal *uv = luaM_new(L, UpVal);
luaC_link(L, obj2gco(uv), LUA_TUPVAL);
uv->v = &uv->value;
setnilvalue(uv->v);
return uv;
}
UpVal *luaF_findupval (lua_State *L, StkId level) {
GCObject **pp = &L->openupval;
2002-11-13 14:32:26 +03:00
UpVal *p;
UpVal *uv;
2002-11-13 14:32:26 +03:00
while ((p = ngcotouv(*pp)) != NULL && p->v >= level) {
if (p->v == level) return p;
pp = &p->next;
}
uv = luaM_new(L, UpVal); /* not found: create a new one */
uv->tt = LUA_TUPVAL;
uv->marked = luaC_white(G(L));
uv->v = level; /* current value lives in the stack */
uv->next = *pp; /* chain it in the proper position */
*pp = obj2gco(uv);
return uv;
}
void luaF_close (lua_State *L, StkId level) {
UpVal *uv;
2004-03-16 00:04:33 +03:00
global_State *g = G(L);
while ((uv = ngcotouv(L->openupval)) != NULL && uv->v >= level) {
2004-03-16 00:04:33 +03:00
GCObject *o = obj2gco(uv);
lua_assert(!isblack(o));
L->openupval = uv->next; /* remove from `open' list */
2004-03-16 00:04:33 +03:00
if (isdead(g, o))
luaM_freelem(L, uv); /* free upvalue */
else {
setobj(L, &uv->value, uv->v);
uv->v = &uv->value; /* now current value lives here */
luaC_linkupval(L, uv); /* link upvalue into `gcroot' list */
}
}
}
2000-03-10 21:37:44 +03:00
Proto *luaF_newproto (lua_State *L) {
Proto *f = luaM_new(L, Proto);
luaC_link(L, obj2gco(f), LUA_TPROTO);
f->k = NULL;
f->sizek = 0;
2001-06-28 18:57:17 +04:00
f->p = NULL;
f->sizep = 0;
1997-09-16 23:25:59 +04:00
f->code = NULL;
f->sizecode = 0;
f->sizelineinfo = 0;
f->sizeupvalues = 0;
f->nups = 0;
f->upvalues = NULL;
2000-10-10 23:52:58 +04:00
f->numparams = 0;
f->is_vararg = 0;
f->maxstacksize = 0;
2000-08-08 22:26:05 +04:00
f->lineinfo = NULL;
f->sizelocvars = 0;
2000-10-10 23:52:58 +04:00
f->locvars = NULL;
1997-09-16 23:25:59 +04:00
f->lineDefined = 0;
f->source = NULL;
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) {
luaM_freearray(L, f->code, f->sizecode, Instruction);
luaM_freearray(L, f->p, f->sizep, Proto *);
luaM_freearray(L, f->k, f->sizek, TValue);
luaM_freearray(L, f->lineinfo, f->sizelineinfo, int);
luaM_freearray(L, f->locvars, f->sizelocvars, struct LocVar);
luaM_freearray(L, f->upvalues, f->sizeupvalues, TString *);
luaM_freelem(L, f);
1997-09-16 23:25:59 +04:00
}
void luaF_freeclosure (lua_State *L, Closure *c) {
2001-10-02 20:45:03 +04:00
int size = (c->c.isC) ? sizeCclosure(c->c.nupvalues) :
sizeLclosure(c->l.nupvalues);
luaM_free(L, c, size);
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->sizelocvars && f->locvars[i].startpc <= pc; i++) {
if (pc < f->locvars[i].endpc) { /* is variable active? */
local_number--;
if (local_number == 0)
return getstr(f->locvars[i].varname);
1997-09-16 23:25:59 +04:00
}
}
return NULL; /* not found */
1997-09-16 23:25:59 +04:00
}