Home | History | Annotate | Download | only in interpreter

Lines Matching defs:dex_pc

26 // - "dex_pc": the current pc.
36 dex_pc = static_cast<uint32_t>(static_cast<int32_t>(dex_pc) + disp); \
37 shadow_frame.SetDexPC(dex_pc); \
38 TraceExecution(shadow_frame, inst, dex_pc, mh); \
144 uint32_t dex_pc = shadow_frame.GetDexPC();
145 const Instruction* inst = Instruction::At(code_item->insns_ + dex_pc);
150 if (LIKELY(dex_pc == 0)) { // We are entering the method as opposed to deoptimizing.
262 shadow_frame.GetMethod(), dex_pc,
266 shadow_frame.GetMethod(), dex_pc);
281 shadow_frame.GetMethod(), dex_pc,
285 shadow_frame.GetMethod(), dex_pc);
301 shadow_frame.GetMethod(), dex_pc,
305 shadow_frame.GetMethod(), dex_pc);
320 shadow_frame.GetMethod(), dex_pc,
324 shadow_frame.GetMethod(), dex_pc);
361 shadow_frame.GetMethod(), dex_pc,
365 shadow_frame.GetMethod(), dex_pc);
2402 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, shadow_frame, dex_pc,
2407 int32_t displacement = static_cast<int32_t>(found_dex_pc) - static_cast<int32_t>(dex_pc);
2430 instrumentation->DexPcMovedEvent(self, this_object, shadow_frame.GetMethod(), dex_pc); \