Home
last modified time | relevance | path

Searched refs:found_dex_pc (Results 1 – 6 of 6) sorted by relevance

/art/runtime/mirror/
Dart_method.cc224 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/
Dquick_exception_handler.cc93 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/
Dinterpreter_common.cc409 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()
Dinterpreter.cc508 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()
Dinterpreter_goto_table_impl.cc2402 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()
Dinterpreter_switch_impl.cc28 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); \