Searched refs:endPC (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/interp/
H A DJit.h51 const u2* endPC; /* ending pc of jitted region */ member in struct:ShadowSpace
H A DJit.cpp137 shadowSpace->endPC = pc;
141 //ALOGD("### selfVerificationRestoreState(%d) pc: %#x fp: %#x endPC: %#x",
149 ALOGD("Dalvik PC: %#x endPC: %#x", (int)shadowSpace->startPC,
150 (int)shadowSpace->endPC);
205 ALOGD("Dalvik PC: %#x endPC: %#x", (int)shadowSpace->startPC,
206 (int)shadowSpace->endPC);
272 //ALOGD("### DbgIntp(%d): PC: %#x endPC: %#x state: %d len: %d %s",
273 // self->threadId, (int)pc, (int)shadowSpace->endPC, state,
292 * Check if the current pc matches the endPC. Only check for non-zero
295 if (pc == shadowSpace->endPC
[all...]
/dalvik/vm/compiler/codegen/x86/
H A DLower.cpp283 bool existATryBlock(Method* method, int startPC, int endPC) { argument
292 //if [start, end] overlaps with [startPC, endPC] returns true
293 if((int)end < startPC || (int)start > endPC) { //no overlap
H A DLowerJump.cpp775 int endPC = insnsSize; local
776 if(ptr->nextItem != NULL) endPC = ptr->nextItem->offsetPC + ptr->nextItem->relativePC;
796 sz = (endPC-tmpPC)*sizeof(u2);
H A DLower.h559 bool existATryBlock(Method* method, int startPC, int endPC);

Completed in 65 milliseconds