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

/art/runtime/
H A Dart_method.cc260 uint32_t found_dex_pc = DexFile::kDexNoIndex; local
266 found_dex_pc = it.GetHandlerAddress();
282 found_dex_pc = it.GetHandlerAddress();
286 if (found_dex_pc != DexFile::kDexNoIndex) {
288 Instruction::At(&code_item->insns_[found_dex_pc]);
295 return found_dex_pc;
H A Dquick_exception_handler.cc95 uint32_t found_dex_pc = method->FindCatchBlock(to_find, dex_pc, &clear_exception); local
97 if (found_dex_pc != DexFile::kDexNoIndex) {
99 exception_handler_->SetHandlerDexPc(found_dex_pc);
100 exception_handler_->SetHandlerQuickFramePc(method->ToNativeQuickPc(found_dex_pc));
H A Ddebugger.cc2971 uint32_t found_dex_pc; local
2974 found_dex_pc = method->FindCatchBlock(exception_class, dex_pc, &unused_clear_exception);
2975 if (found_dex_pc != DexFile::kDexNoIndex) {
2977 catch_dex_pc_ = found_dex_pc;
/art/runtime/interpreter/
H A Dinterpreter_common.cc427 uint32_t found_dex_pc = shadow_frame.GetMethod()->FindCatchBlock( local
429 if (found_dex_pc == DexFile::kDexNoIndex) {
435 // Exception is caught in the current method. We will jump to the found_dex_pc.
440 return found_dex_pc;
H A Dinterpreter.cc410 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, *shadow_frame, dex_pc, local
412 new_dex_pc = found_dex_pc; // the dex pc of a matching catch handler
H A Dinterpreter_goto_table_impl.cc2484 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, shadow_frame, dex_pc, local
2486 if (found_dex_pc == DexFile::kDexNoIndex) {
2489 int32_t displacement = static_cast<int32_t>(found_dex_pc) - static_cast<int32_t>(dex_pc);
H A Dinterpreter_switch_impl.cc27 uint32_t found_dex_pc = FindNextInstructionFollowingException(self, shadow_frame, \
30 if (found_dex_pc == DexFile::kDexNoIndex) { \
33 int32_t displacement = static_cast<int32_t>(found_dex_pc) - static_cast<int32_t>(dex_pc); \

Completed in 119 milliseconds