Home
last modified time | relevance | path

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

/freebsd-14.2/sys/contrib/openzfs/module/lua/
H A Dldo.c346 luaD_checkstack(L, p->maxstacksize); /* check again for new 'base' */ in adjust_varargs()
412 luaD_checkstack(L, p->maxstacksize + p->numparams); in luaD_precall()
427 ci->top = base + p->maxstacksize; in luaD_precall()
H A Dlfunc.c123 f->maxstacksize = 0; in luaF_newproto()
H A Dlcode.c264 if (newstack > fs->f->maxstacksize) { in luaK_checkstack()
267 fs->f->maxstacksize = cast_byte(newstack); in luaK_checkstack()
H A Dlobject.h485 lu_byte maxstacksize; /* maximum stack used by this function */ member
H A Dlparser.c543 f->maxstacksize = 2; /* registers 0/1 are always valid */ in open_func()
1595 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()
/freebsd-14.2/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.c553 int fsize = p->maxstacksize; /* frame size */ in luaD_pretailcall()
602 int fsize = p->maxstacksize; /* frame size */ in luaD_precall()
H A Dluac.c683 S(f->maxstacksize),S(f->sizeupvalues)); in PrintHeader()
H A Dlobject.h556 lu_byte maxstacksize; /* number of registers needed by this function */ member
H A Dlcode.c468 if (newstack > fs->f->maxstacksize) { in luaK_checkstack()
472 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()
1911 lua_assert(ls->fs->f->maxstacksize >= ls->fs->freereg && in statement()