Searched refs:savedpc (Results 1 - 8 of 8) sorted by relevance

/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlvm.c74 int npc = pcRel(ci->u.l.savedpc, p);
77 ci->u.l.savedpc <= L->oldpc || /* when jump back (loop), or when */
81 L->oldpc = ci->u.l.savedpc;
85 ci->u.l.savedpc--; /* undo increment (resume will increment it again) */
486 Instruction inst = *(ci->u.l.savedpc - 1); /* interrupted instruction */
503 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_JMP);
505 ci->u.l.savedpc++; /* skip jump instruction */
523 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_TFORLOOP);
558 (k + (GETARG_Bx(i) != 0 ? GETARG_Bx(i) - 1 : GETARG_Ax(*ci->u.l.savedpc++)))
565 ci->u.l.savedpc
[all...]
H A Dlstate.h79 const Instruction *savedpc; member in struct:CallInfo::__anon9773::__anon9774
H A Dldo.c256 ci->u.l.savedpc++; /* hooks assume 'pc' is already incremented */
258 GET_OPCODE(*(ci->previous->u.l.savedpc - 1)) == OP_TAILCALL) {
263 ci->u.l.savedpc--; /* correct 'pc' */
356 ci->u.l.savedpc = p->code; /* starting point */
382 L->oldpc = ci->previous->u.l.savedpc; /* 'oldpc' for caller function */
H A Dldebug.c38 return pcRel(ci->u.l.savedpc, ci_func(ci)->p);
66 L->oldpc = L->ci->u.l.savedpc;
/freebsd-12-stable/contrib/lua/src/
H A Dlvm.c659 Instruction inst = *(ci->u.l.savedpc - 1); /* interrupted instruction */
678 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_JMP);
680 ci->u.l.savedpc++; /* skip jump instruction */
698 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_TFORLOOP);
741 ci->u.l.savedpc += GETARG_sBx(i) + e; }
744 #define donextjump(ci) { i = *ci->u.l.savedpc; dojump(ci, i, 1); }
757 i = *(ci->u.l.savedpc++); \
814 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_EXTRAARG);
815 rb = k + GETARG_Ax(*ci->u.l.savedpc++);
821 if (GETARG_C(i)) ci->u.l.savedpc
[all...]
H A Dlstate.h99 const Instruction *savedpc; member in struct:CallInfo::__anon6011::__anon6012
H A Dldebug.c47 return pcRel(ci->u.l.savedpc, ci_func(ci)->p);
87 L->oldpc = L->ci->u.l.savedpc;
683 int npc = pcRel(ci->u.l.savedpc, p);
686 ci->u.l.savedpc <= L->oldpc || /* when jump back (loop), or when */
690 L->oldpc = ci->u.l.savedpc;
694 ci->u.l.savedpc--; /* undo increment (resume will increment it again) */
H A Dldo.c282 ci->u.l.savedpc++; /* hooks assume 'pc' is already incremented */
284 GET_OPCODE(*(ci->previous->u.l.savedpc - 1)) == OP_TAILCALL) {
289 ci->u.l.savedpc--; /* correct 'pc' */
385 L->oldpc = ci->previous->u.l.savedpc; /* 'oldpc' for caller function */
459 ci->u.l.savedpc = p->code; /* starting point */

Completed in 306 milliseconds