HomeSort by relevance Sort by last modified time
    Searched refs:dex_method_index (Results 1 - 18 of 18) sorted by null

  /art/runtime/
method_reference.h 28 MethodReference(const DexFile* file, uint32_t index) : dex_file(file), dex_method_index(index) {
31 uint32_t dex_method_index; member in struct:art::MethodReference
37 return mr1.dex_method_index < mr2.dex_method_index;
profiler.h 76 if (mr1.dex_method_index == mr2.dex_method_index) {
79 return mr1.dex_method_index < mr2.dex_method_index;
profiler.cc 610 std::string method_name = PrettyMethod(method.dex_method_index, *(method.dex_file));
627 PrettyMethod(current->GetMethod().dex_method_index, *(current->GetMethod().dex_file)).c_str(),
class_linker.h 560 const DexFile& dex_file, uint32_t dex_method_index, uint32_t method_index)
    [all...]
class_linker.cc     [all...]
  /art/compiler/dex/
mir_method_info.h 117 DCHECK_LE(ref.dex_method_index, 0xffffu);
119 target_method_idx_ = ref.dex_method_index;
verification_results.cc 69 << PrettyMethod(ref.dex_method_index, *ref.dex_file);
114 method_ref.dex_method_index, *(method_ref.dex_file)).find("fibonacci"));
verified_method.cc 86 << PrettyMethod(method_verifier->GetMethodReference().dex_method_index,
94 << PrettyMethod(method_verifier->GetMethodReference().dex_method_index,
109 << PrettyMethod(method_verifier->GetMethodReference().dex_method_index,
mir_method_info.cc 88 it->target_method_idx_ = target_method.dex_method_index;
mir_optimization.cc     [all...]
  /art/compiler/driver/
compiler_driver-inl.h 222 target_method->dex_method_index))) {
243 CHECK(referrer_class->GetDexCache()->GetResolvedMethod(target_method->dex_method_index) ==
267 devirt_target->dex_method_index, dex_cache,
275 devirt_target->dex_method_index,
compiler_driver.cc     [all...]
  /art/runtime/quick/
inline_method_analyser.cc 139 const DexFile::MethodId& method_id = ref.dex_file->GetMethodId(ref.dex_method_index);
333 uint32_t method_idx = verifier->GetMethodReference().dex_method_index;
  /art/compiler/dex/quick/
gen_invoke.cc 536 CHECK_LT(target_method.dex_method_index, target_method.dex_file->NumMethodIds());
544 ObjArray::OffsetOfElement(target_method.dex_method_index).Int32Value(),
621 CHECK_LT(target_method.dex_method_index, target_method.dex_file->NumMethodIds());
622 cg->LoadConstant(cg->TargetReg(kHiddenArg, kNotWide), target_method.dex_method_index);
675 cg->LoadConstant(cg->TargetReg(kArg0, kNotWide), target_method.dex_method_index);
    [all...]
codegen_util.cc 395 if (static_cast<uint32_t>(data_target->operands[0]) == method.dex_method_index &&
    [all...]
dex_file_method_inliner.cc 410 return success && AddInlineMethod(verifier->GetMethodReference().dex_method_index, method);
    [all...]
  /art/compiler/llvm/
gbc_expander.cc 845 EmitCallRuntimeForCalleeMethodObjectAddr(target_method.dex_method_index, invoke_type,
858 EmitLoadSDCalleeMethodObjectAddr(target_method.dex_method_index);
    [all...]
  /art/compiler/dex/quick/x86/
target_x86.cc 965 int target_method_idx = target_method.dex_method_index;
    [all...]

Completed in 536 milliseconds