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.
132 lines
3.2 KiB
132 lines
3.2 KiB
/*
|
|
** $Id: lfunc.c,v 1.55 2002/03/25 17:47:14 roberto Exp roberto $
|
|
** Auxiliary functions to manipulate prototypes and closures
|
|
** See Copyright Notice in lua.h
|
|
*/
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "lua.h"
|
|
|
|
#include "lfunc.h"
|
|
#include "lmem.h"
|
|
#include "lobject.h"
|
|
#include "lstate.h"
|
|
|
|
|
|
#define sizeCclosure(n) (cast(int, sizeof(CClosure)) + \
|
|
cast(int, sizeof(TObject)*((n)-1)))
|
|
|
|
#define sizeLclosure(n) (cast(int, sizeof(LClosure)) + \
|
|
cast(int, sizeof(TObject *)*((n)-1)))
|
|
|
|
|
|
|
|
Closure *luaF_newCclosure (lua_State *L, int nelems) {
|
|
Closure *c = cast(Closure *, luaM_malloc(L, sizeCclosure(nelems)));
|
|
c->c.isC = 1;
|
|
c->c.next = G(L)->rootcl;
|
|
G(L)->rootcl = c;
|
|
c->c.marked = 0;
|
|
c->c.nupvalues = cast(lu_byte, nelems);
|
|
return c;
|
|
}
|
|
|
|
|
|
Closure *luaF_newLclosure (lua_State *L, int nelems) {
|
|
Closure *c = cast(Closure *, luaM_malloc(L, sizeLclosure(nelems)));
|
|
c->l.isC = 0;
|
|
c->c.next = G(L)->rootcl;
|
|
G(L)->rootcl = c;
|
|
c->l.marked = 0;
|
|
c->l.nupvalues = cast(lu_byte, nelems);
|
|
return c;
|
|
}
|
|
|
|
|
|
UpVal *luaF_findupval (lua_State *L, StkId level) {
|
|
UpVal **pp = &L->openupval;
|
|
UpVal *p;
|
|
while ((p = *pp) != NULL && p->v >= level) {
|
|
if (p->v == level) return p;
|
|
pp = &p->next;
|
|
}
|
|
p = luaM_new(L, UpVal); /* not found: create a new one */
|
|
p->v = level; /* current value lives in the stack */
|
|
p->next = *pp; /* chain it in the proper position */
|
|
*pp = p;
|
|
return p;
|
|
}
|
|
|
|
|
|
void luaF_close (lua_State *L, StkId level) {
|
|
UpVal *p;
|
|
while ((p = L->openupval) != NULL && p->v >= level) {
|
|
setobj(&p->value, p->v); /* save current value */
|
|
p->v = &p->value; /* now current value lives here */
|
|
L->openupval = p->next; /* remove from `open' list */
|
|
p->next = G(L)->rootupval; /* chain in `closed' list */
|
|
G(L)->rootupval = p;
|
|
}
|
|
}
|
|
|
|
|
|
Proto *luaF_newproto (lua_State *L) {
|
|
Proto *f = luaM_new(L, Proto);
|
|
f->k = NULL;
|
|
f->sizek = 0;
|
|
f->p = NULL;
|
|
f->sizep = 0;
|
|
f->code = NULL;
|
|
f->sizecode = 0;
|
|
f->nupvalues = 0;
|
|
f->numparams = 0;
|
|
f->is_vararg = 0;
|
|
f->maxstacksize = 0;
|
|
f->marked = 0;
|
|
f->lineinfo = NULL;
|
|
f->sizelocvars = 0;
|
|
f->locvars = NULL;
|
|
f->lineDefined = 0;
|
|
f->source = NULL;
|
|
f->next = G(L)->rootproto; /* chain in list of protos */
|
|
G(L)->rootproto = f;
|
|
return f;
|
|
}
|
|
|
|
|
|
void luaF_freeproto (lua_State *L, Proto *f) {
|
|
luaM_freearray(L, f->code, f->sizecode, Instruction);
|
|
if (f->lineinfo)
|
|
luaM_freearray(L, f->lineinfo, f->sizecode, int);
|
|
luaM_freearray(L, f->locvars, f->sizelocvars, struct LocVar);
|
|
luaM_freearray(L, f->k, f->sizek, TObject);
|
|
luaM_freearray(L, f->p, f->sizep, Proto *);
|
|
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 */
|
|
}
|
|
|
|
|