Home
last modified time | relevance | path

Searched refs:dex_method_index (Results 1 – 18 of 18) sorted by relevance

/art/runtime/
Dmethod_reference.h28 MethodReference(const DexFile* file, uint32_t index) : dex_file(file), dex_method_index(index) { in MethodReference()
31 uint32_t dex_method_index; member
37 return mr1.dex_method_index < mr2.dex_method_index; in operator()
Dprofiler.h76 if (mr1.dex_method_index == mr2.dex_method_index) { in operator()
79 return mr1.dex_method_index < mr2.dex_method_index; in operator()
Dprofiler.cc610 std::string method_name = PrettyMethod(method.dex_method_index, *(method.dex_file)); in Write()
627 … PrettyMethod(current->GetMethod().dex_method_index, *(current->GetMethod().dex_file)).c_str(), in Write()
Dclass_linker.h560 const DexFile& dex_file, uint32_t dex_method_index, uint32_t method_index)
Dclass_linker.cc2628 const DexFile& dex_file, uint32_t dex_method_index, in LinkCode() argument
/art/compiler/dex/
Dverification_results.cc69 << PrettyMethod(ref.dex_method_index, *ref.dex_file); in ProcessVerifiedMethod()
114 method_ref.dex_method_index, *(method_ref.dex_file)).find("fibonacci")); in IsCandidateForCompilation()
Dmir_method_info.h117 DCHECK_LE(ref.dex_method_index, 0xffffu); in SetDevirtualizationTarget()
119 target_method_idx_ = ref.dex_method_index; in SetDevirtualizationTarget()
Dverified_method.cc86 << PrettyMethod(method_verifier->GetMethodReference().dex_method_index, in GenerateGcMap()
94 << PrettyMethod(method_verifier->GetMethodReference().dex_method_index, in GenerateGcMap()
109 << PrettyMethod(method_verifier->GetMethodReference().dex_method_index, in GenerateGcMap()
Dmir_method_info.cc88 it->target_method_idx_ = target_method.dex_method_index; in Resolve()
Dmir_optimization.cc1220 nullptr /* code_item not used */, 0u /* class_def_idx not used */, target.dex_method_index, in ComputeInlineIFieldLoweringInfo()
1282 ->GenInline(this, bb, mir, target.dex_method_index)) { in InlineSpecialMethods()
1285 … << sharp_type << ") call to \"" << PrettyMethod(target.dex_method_index, *target.dex_file) in InlineSpecialMethods()
/art/compiler/driver/
Dcompiler_driver-inl.h222 target_method->dex_method_index))) { in IsFastInvoke()
243 CHECK(referrer_class->GetDexCache()->GetResolvedMethod(target_method->dex_method_index) == in IsFastInvoke()
267 devirt_target->dex_method_index, dex_cache, in IsFastInvoke()
275 devirt_target->dex_method_index, in IsFastInvoke()
Dcompiler_driver.cc1224 target_method->dex_method_index = method->GetDexMethodIndex(); in GetCodeAndMethodForDirectCall()
1231 *target_method->dex_file, target_method->dex_method_index); in GetCodeAndMethodForDirectCall()
1233 target_method->dex_method_index = dex_method_idx; in GetCodeAndMethodForDirectCall()
1236 target_method->dex_method_index = method->GetDexMethodIndex(); in GetCodeAndMethodForDirectCall()
1261 target_method->dex_method_index = method->GetDexMethodIndex(); in GetCodeAndMethodForDirectCall()
1268 target_method->dex_method_index = method->GetDexMethodIndex(); in GetCodeAndMethodForDirectCall()
1296 uint32_t method_idx = target_method->dex_method_index; in ComputeInvokeInfo()
1320 target_method->dex_method_index)) || in ComputeInvokeInfo()
/art/runtime/quick/
Dinline_method_analyser.cc139 const DexFile::MethodId& method_id = ref.dex_file->GetMethodId(ref.dex_method_index); in IsSyntheticAccessor()
333 uint32_t method_idx = verifier->GetMethodReference().dex_method_index; in ComputeSpecialAccessorInfo()
/art/compiler/dex/quick/
Dgen_invoke.cc536 CHECK_LT(target_method.dex_method_index, target_method.dex_file->NumMethodIds()); in NextSDCallInsn()
544 ObjArray::OffsetOfElement(target_method.dex_method_index).Int32Value(), in NextSDCallInsn()
621 CHECK_LT(target_method.dex_method_index, target_method.dex_file->NumMethodIds()); in NextInterfaceCallInsn()
622 cg->LoadConstant(cg->TargetReg(kHiddenArg, kNotWide), target_method.dex_method_index); in NextInterfaceCallInsn()
675 cg->LoadConstant(cg->TargetReg(kArg0, kNotWide), target_method.dex_method_index); in NextInvokeInsnSP()
Dcodegen_util.cc395 if (static_cast<uint32_t>(data_target->operands[0]) == method.dex_method_index && in ScanLiteralPoolMethod()
1229 data_target = AddWordData(&code_literal_list_, target_method.dex_method_index); in LoadCodeAddress()
1246 data_target = AddWordData(&method_literal_list_, target_method.dex_method_index); in LoadMethodAddress()
Ddex_file_method_inliner.cc410 return success && AddInlineMethod(verifier->GetMethodReference().dex_method_index, method); in AnalyseMethodCode()
/art/compiler/llvm/
Dgbc_expander.cc845 EmitCallRuntimeForCalleeMethodObjectAddr(target_method.dex_method_index, invoke_type, in EmitInvoke()
858 EmitLoadSDCalleeMethodObjectAddr(target_method.dex_method_index); in EmitInvoke()
875 EmitCallRuntimeForCalleeMethodObjectAddr(target_method.dex_method_index, in EmitInvoke()
893 target_method.dex_method_index, is_static); in EmitInvoke()
/art/compiler/dex/quick/x86/
Dtarget_x86.cc965 int target_method_idx = target_method.dex_method_index; in LoadMethodAddress()
1002 int target_method_idx = target_method.dex_method_index; in CallWithLinkerFixup()