Home | History | Annotate | Download | only in interp

Lines Matching full:currentpc

118     saveBlock->xtra.currentPc = NULL;           // not required?
1099 const u2* currentPc = saveArea->xtra.currentPc;
1107 /* check currentPc */
1109 if (currentPc < method->insns ||
1110 currentPc >= method->insns + insnsSize)
1113 currentPc, method->insns, method->insns + insnsSize);
1118 if ((*currentPc & 0xff) != OP_MONITOR_ENTER) {
1120 currentPc, *currentPc & 0xff);
1125 unsigned int reg = *currentPc >> 8;
1183 * an updated version in the fame's "xtra.currentPc", but it's unreliable.
1193 const u2* currentPc = NULL;
1204 * The "currentPc" is updated whenever we execute an instruction that
1210 if (saveArea->xtra.currentPc != NULL)
1211 currentPc = saveArea->xtra.currentPc;
1223 if (currentPc != NULL)
1224 relPc = currentPc - saveArea->method->insns;
1277 currentPc = saveArea->savedPc;