/art/runtime/ |
D | art_method-inl.h | 167 uint32_t dex_method_idx = GetDexMethodIndex(); in GetDeclaringClassDescriptor() 184 return dex_file->GetMethodShorty(dex_file->GetMethodId(GetDexMethodIndex()), out_length); in GetShorty() 188 uint32_t dex_method_idx = GetDexMethodIndex(); in GetSignature() 198 uint32_t dex_method_idx = GetDexMethodIndex(); in GetName() 208 uint32_t dex_method_idx = GetDexMethodIndex(); in GetNameView() 221 const dex::MethodId& method_id = GetDexFile()->GetMethodId(GetDexMethodIndex()); in ResolveNameString() 245 return dex_file->GetMethodPrototype(dex_file->GetMethodId(GetDexMethodIndex())); in GetPrototype() 252 dex_file->GetMethodId(GetDexMethodIndex())); in GetParameterTypeList() 341 const dex::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex()); in GetReturnTypeIndex() 406 return CodeItemDebugInfoAccessor(*GetDexFile(), GetCodeItem(), GetDexMethodIndex()); in DexInstructionDebugInfo()
|
D | imtable-inl.h | 49 const dex::MethodId& method_id = dex_file->GetMethodId(method->GetDexMethodIndex()); in GetImtHashComponents() 78 *class_hash = method->GetDexMethodIndex(); in GetImtHashComponents()
|
D | art_method.cc | 77 GetDexMethodIndex(), in GetCanonicalMethod() 144 const dex::TypeIndex declaring_class_type = dex_file->GetMethodId(GetDexMethodIndex()).class_idx_; in FindObsoleteDexClassDefIndex() 193 const dex::MethodId& mid = dex_file->GetMethodId(GetDexMethodIndex()); in HasSameNameAndSignature() 195 const dex::MethodId& mid2 = dex_file->GetMethodId(other->GetDexMethodIndex()); in HasSameNameAndSignature() 199 const dex::MethodId& mid2 = dex_file2->GetMethodId(other->GetDexMethodIndex()); in HasSameNameAndSignature() 245 const uint32_t dex_method_idx = GetDexMethodIndex(); in FindDexMethodIndexInOtherDexFile() 453 method->GetDexMethodIndex()); in FindOatMethodFromDexFileFor() 490 if (method->GetDexMethodIndex() == art_method.GetDexMethodIndex()) { in FindOatMethodFor() 502 method->GetDexMethodIndex())); in FindOatMethodFor() 514 const auto& method_id = dex_file->GetMethodId(GetDexMethodIndex()); in EqualParameters() [all …]
|
/art/runtime/jit/ |
D | profiling_info_test.cc | 77 MethodReference(method->GetDexFile(), method->GetDexMethodIndex())); in SaveProfilingInfo() 137 method->GetDexMethodIndex()), in SaveProfilingInfoWithFakeInlineCaches() 224 Hotness h = info1.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F() 245 Hotness h = info2.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F() 250 Hotness h = info2.GetMethodHotness(MethodReference(m->GetDexFile(), m->GetDexMethodIndex())); in TEST_F() 285 MethodReference method_ref(m->GetDexFile(), m->GetDexMethodIndex()); in TEST_F()
|
D | profile_saver.cc | 392 hot_methods->AddReference(method.GetDexFile(), method.GetDexMethodIndex()); in SampleClassesAndExecutedMethods() 394 sampled_methods->AddReference(method.GetDexFile(), method.GetDexMethodIndex()); in SampleClassesAndExecutedMethods()
|
/art/compiler/optimizing/ |
D | builder.cc | 85 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in SkipCompilation() 94 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in SkipCompilation() 164 uint32_t method_idx = dex_compilation_unit_->GetDexMethodIndex(); in BuildIntrinsicGraph()
|
D | inliner.cc | 177 call->GetDexMethodIndex(), /* with_signature= */ false); in Run() 285 return method->GetDexMethodIndex(); in FindMethodIndexIn() 423 if (!compiler_options.IsMethodVerifiedWithoutFailures(method->GetDexMethodIndex(), in IsMethodUnverified() 508 uint32_t method_index = invoke_instruction->GetDexMethodIndex(); in TryInline() 625 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex()); in TryInlineFromInlineCache() 632 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex()) in TryInlineFromInlineCache() 654 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex()) in TryInlineFromInlineCache() 663 << caller_dex_file.PrettyMethod(invoke_instruction->GetDexMethodIndex()) in TryInlineFromInlineCache() 713 &caller_dex_file, caller_compilation_unit_.GetDexMethodIndex())); in GetInlineCacheAOT() 793 invoke_instruction->GetDexMethodIndex()) << " : " in ExtractClassesFromOfflineProfile() [all …]
|
D | stack_map_stream.cc | 204 uint32_t dex_method_index = method->GetDexMethodIndex(); in BeginInlineInfoEntry() 221 CHECK_EQ(code_info.GetMethodIndexOf(inline_info), method->GetDexMethodIndex()); in BeginInlineInfoEntry()
|
D | instruction_builder.cc | 386 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in Build() 392 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in Build() 438 uint32_t method_idx = dex_compilation_unit_->GetDexMethodIndex(); in BuildIntrinsic() 575 dex_file_->GetMethodId(dex_compilation_unit_->GetDexMethodIndex()); in InitializeParameters() 930 MethodReference(resolved_method->GetDexFile(), resolved_method->GetDexMethodIndex()); in ResolveMethod() 1519 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in SetupInvokeArguments() 1538 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in SetupInvokeArguments() 3423 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex()) in ProcessDexInstruction() 3444 dex_compilation_unit_->GetDexFile()->GetMethodId(dex_compilation_unit_->GetDexMethodIndex()); in LookupReferrerClass()
|
D | graph_visualizer.cc | 459 StartAttributeStream("dex_file_index") << invoke->GetDexMethodIndex(); in VisitInvoke() 467 ? GetGraph()->GetDexFile().PrettyMethod(invoke->GetDexMethodIndex(), kWithSignature) in VisitInvoke()
|
D | optimizing_compiler.cc | 741 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex(); in TryCompile() 909 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex(); in TryCompileIntrinsic() 1230 const uint32_t method_idx = method->GetDexMethodIndex(); in JitCompile()
|
/art/runtime/mirror/ |
D | executable.cc | 38 DexMethodIndexOffset(), method->GetDexMethodIndex()); in InitializeFromArtMethod()
|
D | executable-inl.h | 48 SetDexMethodIndex(new_target->GetDexMethodIndex()); in VisitTarget()
|
D | dex_cache_test.cc | 149 const dex::MethodId& method1_id = dex_file.GetMethodId(method1->GetDexMethodIndex()); in TEST_F() 150 const dex::MethodId& method2_id = dex_file.GetMethodId(method2->GetDexMethodIndex()); in TEST_F()
|
D | class.cc | 739 if (method.GetDexMethodIndex() == dex_method_idx) { in FindClassMethod() 756 DCHECK_NE(method.GetDexMethodIndex(), dex::kDexNoIndex); in FindClassMethod() 758 method.GetDexMethodIndex(), &other_length); in FindClassMethod() 777 const dex::MethodId& cmp_method_id = dex_file.GetMethodId(method.GetDexMethodIndex()); in FindClassMethod()
|
/art/test/595-profile-saving/ |
D | profile-saving.cc | 63 art_method->GetDexMethodIndex())); in Java_Main_presentInProfile()
|
/art/compiler/ |
D | common_compiler_test.cc | 202 method->GetDexMethodIndex(), in CompileMethod() 208 MethodReference(&dex_file, method->GetDexMethodIndex())); in CompileMethod() 213 method->GetDexMethodIndex(), in CompileMethod()
|
/art/compiler/driver/ |
D | dex_compilation_unit.h | 65 uint32_t GetDexMethodIndex() const { in GetDexMethodIndex() function
|
/art/dex2oat/driver/ |
D | compiler_driver-inl.h | 61 mUnit->GetDexFile()->GetMethodId(mUnit->GetDexMethodIndex()); in ResolveCompilingMethodsClass()
|
D | compiler_driver_test.cc | 88 method->GetDexMethodIndex())); in MakeExecutable()
|
/art/dex2oat/dex/ |
D | dex_to_dex_compiler.cc | 387 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true); in CompileReturnVoid() 409 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true); in CompileCheckCast() 444 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true); in CompileInstanceFieldAccess() 493 << GetDexFile().PrettyMethod(unit_.GetDexMethodIndex(), true); in CompileInvokeVirtual()
|
/art/runtime/verifier/ |
D | verifier_deps.cc | 955 const dex::MethodId& method_id = dex_file.GetMethodId(method.GetDexMethodIndex()); in Dump() 1159 const dex::MethodId& method_id = dex_file.GetMethodId(entry.GetDexMethodIndex()); in VerifyMethods() 1187 + GetMethodDescription(dex_file, entry.GetDexMethodIndex()); in VerifyMethods() 1191 + GetMethodDescription(dex_file, entry.GetDexMethodIndex()) in VerifyMethods() 1197 + GetMethodDescription(dex_file, entry.GetDexMethodIndex()) in VerifyMethods() 1204 + GetMethodDescription(dex_file, entry.GetDexMethodIndex()); in VerifyMethods()
|
D | verifier_deps.h | 194 uint32_t GetDexMethodIndex() const { return std::get<0>(*this); } in GetDexMethodIndex() function
|
/art/dex2oat/ |
D | verifier_deps_test.cc | 391 const dex::MethodId& method_id = dex_dep.first->GetMethodId(entry.GetDexMethodIndex()); in HasMethod() 1366 methods->insert(VerifierDeps::MethodResolution(entry.GetDexMethodIndex(), in TEST_F() 1393 methods->insert(VerifierDeps::MethodResolution(entry.GetDexMethodIndex(), in TEST_F() 1407 methods->insert(VerifierDeps::MethodResolution(entry.GetDexMethodIndex(), in TEST_F()
|
/art/profman/ |
D | profile_assistant_test.cc | 340 method->GetDexFile(), method->GetDexMethodIndex())); in AssertInlineCaches() 731 info.GetHotMethodInfo(MethodReference(method.GetDexFile(), method.GetDexMethodIndex())); in TEST_F() 1102 no_inline_cache->GetDexFile(), no_inline_cache->GetDexMethodIndex())); in TEST_F() 1184 info.GetHotMethodInfo(MethodReference(dex_file, inline_monomorphic->GetDexMethodIndex())); in TEST_F()
|