mirror of https://github.com/lua/lua.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
146 lines
3.5 KiB
146 lines
3.5 KiB
/*
|
|
** $Id: lfunc.c,v 2.3 2004/03/15 21:04:33 roberto Exp roberto $
|
|
** Auxiliary functions to manipulate prototypes and closures
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#define lfunc_c
|
|
#define LUA_CORE
|
|
|
|
#include "lua.h"
|
|
|
|
#include "lfunc.h"
|
|
#include "lgc.h"
|
|
#include "lmem.h"
|
|
#include "lobject.h"
|
|
#include "lstate.h"
|
|
|
|
|
|
|
|
Closure *luaF_newCclosure (lua_State *L, int nelems) {
|
|
Closure *c = cast(Closure *, luaM_malloc(L, sizeCclosure(nelems)));
|
|
luaC_link(L, obj2gco(c), LUA_TFUNCTION);
|
|
c->c.isC = 1;
|
|
c->c.nupvalues = cast(lu_byte, nelems);
|
|
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);
|
|
c->l.isC = 0;
|
|
c->l.g = *e;
|
|
c->l.nupvalues = cast(lu_byte, nelems);
|
|
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;
|
|
UpVal *p;
|
|
UpVal *uv;
|
|
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;
|
|
global_State *g = G(L);
|
|
while ((uv = ngcotouv(L->openupval)) != NULL && uv->v >= level) {
|
|
GCObject *o = obj2gco(uv);
|
|
lua_assert(!isblack(o));
|
|
L->openupval = uv->next; /* remove from `open' list */
|
|
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 */
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
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;
|
|
f->p = NULL;
|
|
f->sizep = 0;
|
|
f->code = NULL;
|
|
f->sizecode = 0;
|
|
f->sizelineinfo = 0;
|
|
f->sizeupvalues = 0;
|
|
f->nups = 0;
|
|
f->upvalues = NULL;
|
|
f->numparams = 0;
|
|
f->is_vararg = 0;
|
|
f->maxstacksize = 0;
|
|
f->lineinfo = NULL;
|
|
f->sizelocvars = 0;
|
|
f->locvars = NULL;
|
|
f->lineDefined = 0;
|
|
f->source = NULL;
|
|
return f;
|
|
}
|
|
|
|
|
|
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);
|
|
}
|
|
|
|
|
|
void luaF_freeclosure (lua_State *L, Closure *c) {
|
|
int size = (c->c.isC) ? sizeCclosure(c->c.nupvalues) :
|
|
sizeLclosure(c->l.nupvalues);
|
|
luaM_free(L, c, size);
|
|
}
|
|
|
|
|
|
/*
|
|
** Look for n-th local variable at line `line' in function `func'.
|
|
** 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);
|
|
}
|
|
}
|
|
return NULL; /* not found */
|
|
}
|
|
|
|
|