Home
last modified time | relevance | path

Searched refs:savedpc (Results 1 – 9 of 9) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dlvm.c73 int npc = pcRel(ci->u.l.savedpc, p); in traceexec()
80 L->oldpc = ci->u.l.savedpc; in traceexec()
566 ci->u.l.savedpc += GETARG_sBx(i) + e; }
607 Instruction i = *(ci->u.l.savedpc++); in luaV_execute()
737 ci->u.l.savedpc++; in luaV_execute()
745 ci->u.l.savedpc++; in luaV_execute()
753 ci->u.l.savedpc++; in luaV_execute()
760 ci->u.l.savedpc++; in luaV_execute()
767 ci->u.l.savedpc++; in luaV_execute()
809 oci->u.l.savedpc = nci->u.l.savedpc; in luaV_execute()
[all …]
H A Dldo.c316 ci->u.l.savedpc++; /* hooks assume 'pc' is already incremented */ in callhook()
318 GET_OPCODE(*(ci->previous->u.l.savedpc - 1)) == OP_TAILCALL) { in callhook()
323 ci->u.l.savedpc--; /* correct 'pc' */ in callhook()
416 ci->u.l.savedpc = p->code; /* starting point */ in luaD_precall()
442 L->oldpc = ci->previous->u.l.savedpc; /* 'oldpc' for caller function */ in luaD_poscall()
H A Dlstate.h80 const Instruction *savedpc; member
H A Dldebug.c37 return pcRel(ci->u.l.savedpc, ci_func(ci)->p); in currentpc()
65 L->oldpc = L->ci->u.l.savedpc; in lua_sethook()
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dldo.c272 L->ci->savedpc = L->savedpc; in luaD_precall()
294 L->savedpc = p->code; /* starting point */ in luaD_precall()
301 L->savedpc++; /* hooks assume 'pc' is already incremented */ in luaD_precall()
303 L->savedpc--; /* correct 'pc' */ in luaD_precall()
353 L->savedpc = (ci - 1)->savedpc; /* restore savedpc */ in luaD_poscall()
397 lua_assert(GET_OPCODE(*((ci-1)->savedpc - 1)) == OP_CALL || in resume()
398 GET_OPCODE(*((ci-1)->savedpc - 1)) == OP_TAILCALL); in resume()
472 L->savedpc = L->ci->savedpc; in luaD_pcall()
H A Dlvm.c62 const Instruction *oldpc = L->savedpc; in traceexec()
63 L->savedpc = pc; in traceexec()
361 #define Protect(x) { L->savedpc = pc; {x;}; base = L->base; }
384 pc = L->savedpc; in luaV_execute()
396 L->savedpc = pc - 1; in luaV_execute()
590 L->savedpc = pc; in luaV_execute()
610 L->savedpc = pc; in luaV_execute()
625 ci->savedpc = L->savedpc; in luaV_execute()
643 L->savedpc = pc; in luaV_execute()
650 lua_assert(GET_OPCODE(*((L->ci)->savedpc - 1)) == OP_CALL); in luaV_execute()
[all …]
H A Dlstate.h52 const Instruction *savedpc; member
107 const Instruction *savedpc; /* `savedpc' of current function */ member
H A Dldebug.c39 ci->savedpc = L->savedpc; in currentpc()
40 return pcRel(ci->savedpc, ci_func(ci)->l.p); in currentpc()
H A Dlstate.c99 L->savedpc = NULL; in preinit_state()