Home
last modified time | relevance | path

Searched refs:maxstacksize (Results 1 – 17 of 17) sorted by relevance

/freebsd-12.1/contrib/lua/src/
H A Dlfunc.c115 f->maxstacksize = 0; in luaF_newproto()
H A Dldump.c175 DumpByte(f->maxstacksize, D); in DumpFunction()
H A Dlundump.c210 f->maxstacksize = LoadByte(S); in LoadFunction()
H A Dluac.c411 S(f->maxstacksize),S(f->sizeupvalues)); in PrintHeader()
H A Dlcode.c363 if (newstack > fs->f->maxstacksize) { in luaK_checkstack()
367 fs->f->maxstacksize = cast_byte(newstack); in luaK_checkstack()
H A Dlobject.h411 lu_byte maxstacksize; /* number of registers needed by this function */ member
H A Dlparser.c547 f->maxstacksize = 2; /* registers 0/1 are always valid */ in open_func()
1599 lua_assert(ls->fs->f->maxstacksize >= ls->fs->freereg && in statement()
H A Dldo.c444 int fsize = p->maxstacksize; /* frame size */ in luaD_precall()
H A Dlvm.c1171 lua_assert(L->top == oci->u.l.base + getproto(ofunc)->maxstacksize); in luaV_execute()
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dldo.c273 luaD_checkstack(L, p->maxstacksize); /* check again for new 'base' */ in adjust_varargs()
339 luaD_checkstack(L, p->maxstacksize); in luaD_precall()
354 ci->top = base + p->maxstacksize; in luaD_precall()
H A Dldump.c145 DumpChar(f->maxstacksize,D); in DumpFunction()
H A Dlfunc.c125 f->maxstacksize = 0; in luaF_newproto()
H A Dlundump.c177 f->maxstacksize=LoadByte(S); in LoadFunction()
H A Dlcode.c262 if (newstack > fs->f->maxstacksize) { in luaK_checkstack()
265 fs->f->maxstacksize = cast_byte(newstack); in luaK_checkstack()
H A Dlobject.h487 lu_byte maxstacksize; /* maximum stack used by this function */ member
H A Dlparser.c545 f->maxstacksize = 2; /* registers 0/1 are always valid */ in open_func()
1590 lua_assert(ls->fs->f->maxstacksize >= ls->fs->freereg && in statement()
H A Dlvm.c811 lua_assert(L->top == oci->u.l.base + getproto(ofunc)->maxstacksize); in luaV_execute()