Searched refs:found_dex_pc (Results 1 – 6 of 6) sorted by relevance
/art/runtime/mirror/ |
D | art_method.cc | 224 uint32_t found_dex_pc = DexFile::kDexNoIndex; in FindCatchBlock() local 230 found_dex_pc = it.GetHandlerAddress(); in FindCatchBlock() 246 found_dex_pc = it.GetHandlerAddress(); in FindCatchBlock() 250 if (found_dex_pc != DexFile::kDexNoIndex) { in FindCatchBlock() 252 Instruction::At(&code_item->insns_[found_dex_pc]); in FindCatchBlock() 260 return found_dex_pc; in FindCatchBlock()
|
/art/runtime/ |
D | quick_exception_handler.cc | 93 uint32_t found_dex_pc = mirror::ArtMethod::FindCatchBlock(method, to_find, dex_pc, in HandleTryItems() local 96 if (found_dex_pc != DexFile::kDexNoIndex) { in HandleTryItems() 98 exception_handler_->SetHandlerDexPc(found_dex_pc); in HandleTryItems() 99 exception_handler_->SetHandlerQuickFramePc(method->ToNativePc(found_dex_pc)); in HandleTryItems()
|
/art/runtime/interpreter/ |
D | interpreter_common.cc | 409 uint32_t found_dex_pc; in VisitFrame() local 414 found_dex_pc = mirror::ArtMethod::FindCatchBlock(h_method, exception_class, dex_pc, in VisitFrame() 417 if (found_dex_pc != DexFile::kDexNoIndex) { in VisitFrame() 419 catch_dex_pc_ = found_dex_pc; in VisitFrame() 466 uint32_t found_dex_pc; in FindNextInstructionFollowingException() local 470 found_dex_pc = mirror::ArtMethod::FindCatchBlock(h_method, exception_class, dex_pc, in FindNextInstructionFollowingException() 473 if (found_dex_pc == DexFile::kDexNoIndex) { in FindNextInstructionFollowingException() 485 return found_dex_pc; in FindNextInstructionFollowingException()
|
D | interpreter.cc | 508 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, *shadow_frame, dex_pc, in EnterInterpreterFromDeoptimize() local 510 new_dex_pc = found_dex_pc; // the dex pc of a matching catch handler in EnterInterpreterFromDeoptimize()
|
D | interpreter_goto_table_impl.cc | 2402 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, shadow_frame, dex_pc, in ExecuteGotoImpl() local 2404 if (found_dex_pc == DexFile::kDexNoIndex) { in ExecuteGotoImpl() 2407 int32_t displacement = static_cast<int32_t>(found_dex_pc) - static_cast<int32_t>(dex_pc); in ExecuteGotoImpl()
|
D | interpreter_switch_impl.cc | 28 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, shadow_frame, \ 31 if (found_dex_pc == DexFile::kDexNoIndex) { \ 34 int32_t displacement = static_cast<int32_t>(found_dex_pc) - static_cast<int32_t>(dex_pc); \
|