Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/lua/
H A Dldo.c347 luaD_checkstack(L, p->maxstacksize); /* check again for new 'base' */ in adjust_varargs()
413 luaD_checkstack(L, p->maxstacksize + p->numparams); in luaD_precall()
428 ci->top = base + p->maxstacksize; in luaD_precall()
H A Dlfunc.c124 f->maxstacksize = 0; in luaF_newproto()
H A Dlcode.c265 if (newstack > fs->f->maxstacksize) { in luaK_checkstack()
268 fs->f->maxstacksize = cast_byte(newstack); in luaK_checkstack()
H A Dlobject.h489 lu_byte maxstacksize; /* maximum stack used by this function */ member
H A Dlparser.c544 f->maxstacksize = 2; /* registers 0/1 are always valid */ in open_func()
1596 lua_assert(ls->fs->f->maxstacksize >= ls->fs->freereg && in statement()
H A Dlvm.c812 lua_assert(L->top == oci->u.l.base + getproto(ofunc)->maxstacksize); in luaV_execute()
/freebsd/contrib/lua/src/
H A Dldump.c192 dumpByte(D, f->maxstacksize); in dumpFunction()
H A Dltm.c244 luaD_checkstack(L, p->maxstacksize + 1); in luaT_adjustvarargs()
H A Dlfunc.c257 f->maxstacksize = 0; in luaF_newproto()
H A Dlundump.c266 f->maxstacksize = loadByte(S); in loadFunction()
H A Dldo.c560 int fsize = p->maxstacksize; /* frame size */ in luaD_pretailcall()
609 int fsize = p->maxstacksize; /* frame size */ in luaD_precall()
H A Dluac.c683 S(f->maxstacksize),S(f->sizeupvalues)); in PrintHeader()
H A Dlobject.h554 lu_byte maxstacksize; /* number of registers needed by this function */ member
H A Dlcode.c469 if (newstack > fs->f->maxstacksize) { in luaK_checkstack()
473 fs->f->maxstacksize = cast_byte(newstack); in luaK_checkstack()
H A Dltests.c736 setnameval(L, "maxstack", p->maxstacksize); in listcode()
754 printf("maxstack: %d\n", p->maxstacksize); in printcode()
H A Dlparser.c751 f->maxstacksize = 2; /* registers 0/1 are always valid */ in open_func()
1910 lua_assert(ls->fs->f->maxstacksize >= ls->fs->freereg && in statement()