Home
last modified time | relevance | path

Searched refs:sizecode (Results 1 – 15 of 15) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dldebug.c270 #define checkjump(pt,pc) check(0 <= pc && pc < pt->sizecode)
282 check(pt->sizelineinfo == pt->sizecode || pt->sizelineinfo == 0); in precheck()
283 check(pt->sizecode > 0 && GET_OPCODE(pt->code[pt->sizecode-1]) == OP_RETURN); in precheck()
320 last = pt->sizecode-1; /* points to final return (a `neutral' instruction) */ in symbexec()
347 check(0 <= dest && dest < pt->sizecode); in symbexec()
370 check(pc+2 < pt->sizecode); /* check skip */ in symbexec()
376 check(pc+2 < pt->sizecode); /* check its jump */ in symbexec()
446 check(pc < pt->sizecode - 1); in symbexec()
454 check(pc + nup < pt->sizecode); in symbexec()
485 return (symbexec(pt, pt->sizecode, NO_REG) != 0); in luaG_checkcode()
H A Dprint.c77 int pc,n=f->sizecode; in PrintCode()
173 S(f->sizecode),f->sizecode*Sizeof(Instruction),VOID(f)); in PrintHeader()
H A Dlfunc.c123 f->sizecode = 0; in luaF_newproto()
142 luaM_freearray(L, f->code, f->sizecode, Instruction); in luaF_freeproto()
H A Dluac.c132 f->sizecode=pc; in combine()
H A Dldump.c76 #define DumpCode(f,D) DumpVector(f->code,f->sizecode,sizeof(Instruction),D)
H A Dlundump.c94 f->sizecode=n; in LoadCode()
H A Dlobject.h242 int sizecode; member
H A Dlparser.c362 luaM_reallocvector(L, f->code, f->sizecode, fs->pc, Instruction); in close_func()
363 f->sizecode = fs->pc; in close_func()
H A Dlgc.c311 return sizeof(Proto) + sizeof(Instruction) * p->sizecode + in propagatemark()
H A Dlcode.c793 luaM_growvector(fs->L, f->code, fs->pc, f->sizecode, Instruction, in luaK_code()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlfunc.c117 f->sizecode = 0; in luaF_newproto()
135 luaM_freearray(L, f->code, f->sizecode); in luaF_freeproto()
H A Dlobject.h477 int sizecode; member
H A Dlparser.c559 luaM_reallocvector(L, f->code, f->sizecode, fs->pc, Instruction); in close_func()
560 f->sizecode = fs->pc; in close_func()
H A Dlcode.c214 luaM_growvector(fs->ls->L, f->code, fs->pc, f->sizecode, Instruction, in luaK_code()
H A Dlgc.c469 return sizeof(Proto) + sizeof(Instruction) * f->sizecode + in traverseproto()