HomeSort by: relevance | last modified time | path
    Searched refs:savedpc (Results 1 - 4 of 4) sorted by relevancy

  /src/external/mit/lua/dist/src/
ldebug.c 47 return pcRel(ci->u.l.savedpc, ci_func(ci)->p);
894 ci->u.l.savedpc = pc; /* save 'pc' */
904 if (!isIT(*(ci->u.l.savedpc - 1))) /* top not being used? */
922 ci->u.l.savedpc--; /* undo increment (resume will increment it again) */
lstate.h 185 const Instruction *savedpc; member in struct:CallInfo::__anon23876::__anon23877
ldo.c 379 ci->u.l.savedpc++; /* hooks assume 'pc' is already incremented */
381 ci->u.l.savedpc--; /* correct 'pc' */
407 L->oldpc = pcRel(ci->u.l.savedpc, ci_func(ci)->p); /* set 'oldpc' */
569 ci->u.l.savedpc = p->code; /* starting point */
609 ci->u.l.savedpc = p->code; /* starting point */
lvm.c 860 Instruction inst = *(ci->u.l.savedpc - 1); /* interrupted instruction */
864 setobjs2s(L, base + GETARG_A(*(ci->u.l.savedpc - 2)), --L->top.p);
885 lua_assert(GET_OPCODE(*ci->u.l.savedpc) == OP_JMP);
887 ci->u.l.savedpc++; /* skip jump instruction */
900 ci->u.l.savedpc--; /* repeat instruction to close other vars. */
909 ci->u.l.savedpc--;
1184 #define savepc(L) (ci->u.l.savedpc = pc)
1244 pc = ci->u.l.savedpc;

Completed in 53 milliseconds