Searched defs:found_dex_pc (Results 1 - 7 of 7) sorted by relevance

/art/runtime/interpreter/
H A Dinterpreter.cc542 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, *shadow_frame, dex_pc, local
544 new_dex_pc = found_dex_pc; // the dex pc of a matching catch handler
H A Dinterpreter_goto_table_impl.cc2582 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, shadow_frame, dex_pc, local
2584 if (found_dex_pc == DexFile::kDexNoIndex) {
2589 int32_t displacement = static_cast<int32_t>(found_dex_pc) - static_cast<int32_t>(dex_pc);
H A Dinterpreter_common.cc436 uint32_t found_dex_pc = shadow_frame.GetMethod()->FindCatchBlock( local
438 if (found_dex_pc == DexFile::kDexNoIndex && instrumentation != nullptr) {
444 // Exception is caught in the current method. We will jump to the found_dex_pc.
449 return found_dex_pc;
/art/runtime/interpreter/mterp/
H A Dmterp.cc422 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, *shadow_frame, local
425 if (found_dex_pc == DexFile::kDexNoIndex) {
429 shadow_frame->SetDexPC(found_dex_pc);
/art/runtime/
H A Dart_method.cc195 uint32_t found_dex_pc = DexFile::kDexNoIndex; local
202 found_dex_pc = it.GetHandlerAddress();
220 found_dex_pc = it.GetHandlerAddress();
224 if (found_dex_pc != DexFile::kDexNoIndex) {
226 Instruction::At(&code_item->insns_[found_dex_pc]);
233 return found_dex_pc;
H A Dquick_exception_handler.cc107 uint32_t found_dex_pc = method->FindCatchBlock(to_find, dex_pc, &clear_exception); local
109 if (found_dex_pc != DexFile::kDexNoIndex) {
111 exception_handler_->SetHandlerDexPc(found_dex_pc);
114 method, found_dex_pc, /* is_catch_handler */ true));
H A Ddebugger.cc2937 uint32_t found_dex_pc; local
2940 found_dex_pc = method->FindCatchBlock(exception_class, dex_pc, &unused_clear_exception);
2941 if (found_dex_pc != DexFile::kDexNoIndex) {
2943 catch_dex_pc_ = found_dex_pc;

Completed in 124 milliseconds