• Home
  • Raw
  • Download

Lines Matching refs:caller

799   ArtMethod* caller = QuickArgumentVisitor::GetCallingMethod(sp);  in artQuickToInterpreterBridge()  local
805 caller != nullptr && in artQuickToInterpreterBridge()
807 (self->IsForceInterpreter() || Dbg::IsForcedInterpreterNeededForUpcall(self, caller)))) { in artQuickToInterpreterBridge()
810 << caller->PrettyMethod(); in artQuickToInterpreterBridge()
813 << " to " << caller->PrettyMethod() in artQuickToInterpreterBridge()
1267 ArtMethod* caller = outer_method; in DumpB74410240DebugData() local
1274 caller = inline_info.GetArtMethod(); in DumpB74410240DebugData()
1280 caller = jni::DecodeArtMethod(WellKnownClasses::java_lang_String_charAt); in DumpB74410240DebugData()
1281 CHECK_EQ(caller->GetDexMethodIndex(), method_index); in DumpB74410240DebugData()
1283 ObjPtr<mirror::DexCache> dex_cache = caller->GetDexCache(); in DumpB74410240DebugData()
1284 ObjPtr<mirror::ClassLoader> class_loader = caller->GetClassLoader(); in DumpB74410240DebugData()
1285 caller = class_linker->LookupResolvedMethod(method_index, dex_cache, class_loader); in DumpB74410240DebugData()
1286 CHECK(caller != nullptr); in DumpB74410240DebugData()
1290 << ": " << tag << caller->PrettyMethod() in DumpB74410240DebugData()
1292 << " dex file: " << caller->GetDexFile()->GetLocation() in DumpB74410240DebugData()
1294 << class_linker->ClassTableForClassLoader(caller->GetClassLoader()); in DumpB74410240DebugData()
1295 DumpB74410240ClassData(caller->GetDeclaringClass()); in DumpB74410240DebugData()
1296 LOG(FATAL_WITHOUT_ABORT) << " instruction: " << DumpInstruction(caller, dex_pc); in DumpB74410240DebugData()
1319 ArtMethod* caller = nullptr; in artQuickResolutionTrampoline() local
1321 caller = QuickArgumentVisitor::GetCallingMethod(sp); in artQuickResolutionTrampoline()
1322 called_method.dex_file = caller->GetDexFile(); in artQuickResolutionTrampoline()
1326 CodeItemInstructionAccessor accessor(caller->DexInstructions()); in artQuickResolutionTrampoline()
1399 DCHECK_EQ(caller->GetDexFile(), called_method.dex_file); in artQuickResolutionTrampoline()
1401 self, called_method.index, caller, invoke_type); in artQuickResolutionTrampoline()
1439 CHECK(caller != nullptr) << invoke_type; in artQuickResolutionTrampoline()
1441 caller->GetDexFile()->GetMethodId(called_method.index).class_idx_, caller); in artQuickResolutionTrampoline()
1445 called = caller->GetDeclaringClass()->GetSuperClass()->GetVTableEntry( in artQuickResolutionTrampoline()
1467 } else if (UNLIKELY(Dbg::IsForcedInstrumentationNeededForResolution(self, caller))) { in artQuickResolutionTrampoline()