HomeSort by relevance Sort by last modified time
    Searched refs:savedpc (Results 1 - 8 of 8) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lvm.c 74 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) */
426 Instruction inst = *(ci->u.l.savedpc - 1); /* interrupted instruction */
443 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_JMP);
445 ci->u.l.savedpc++; /* skip jump instruction */
463 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_TFORLOOP);
498 (k + (GETARG_Bx(i) != 0 ? GETARG_Bx(i) - 1 : GETARG_Ax(*ci->u.l.savedpc++)))
505 ci->u.l.savedpc += GETARG_sBx(i) + e;
    [all...]
lstate.h 79 const Instruction *savedpc; member in struct:CallInfo::__anon5192::__anon5193
ldo.c 246 ci->u.l.savedpc++; /* hooks assume 'pc' is already incremented */
248 GET_OPCODE(*(ci->previous->u.l.savedpc - 1)) == OP_TAILCALL) {
253 ci->u.l.savedpc--; /* correct 'pc' */
346 ci->u.l.savedpc = p->code; /* starting point */
372 L->oldpc = ci->previous->u.l.savedpc; /* 'oldpc' for caller function */
ldebug.c 41 return pcRel(ci->u.l.savedpc, ci_func(ci)->p);
59 L->oldpc = L->ci->u.l.savedpc;
  /external/lua/src/
lvm.c 659 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++; /* skip next instruction (if C) *
    [all...]
lstate.h 99 const Instruction *savedpc; member in struct:CallInfo::__anon32372::__anon32373
ldebug.c 47 return pcRel(ci->u.l.savedpc, ci_func(ci)->p);
87 L->oldpc = L->ci->u.l.savedpc;
682 int npc = pcRel(ci->u.l.savedpc, p);
685 ci->u.l.savedpc <= L->oldpc || /* when jump back (loop), or when */
689 L->oldpc = ci->u.l.savedpc;
693 ci->u.l.savedpc--; /* undo increment (resume will increment it again) */
ldo.c 282 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 310 milliseconds