HomeSort by relevance Sort by last modified time
    Searched defs:method_index (Results 1 - 15 of 15) sorted by null

  /art/runtime/
method_info.h 60 void SetMethodIndex(size_t index, MethodIndexType method_index) {
62 method_index, local
cha.cc 261 uint16_t method_index = method_in_super->GetMethodIndex(); local
268 method_index,
331 method_index < super_super->GetVTableLength()) {
332 ArtMethod* method_in_super_super = super_super->GetVTableEntry(method_index, pointer_size);
354 method_index,
art_method-inl.h 107 inline ArtMethod* ArtMethod::GetDexCacheResolvedMethod(uint16_t method_index,
111 DCHECK_LT(method_index,
114 method_index,
125 inline void ArtMethod::SetDexCacheResolvedMethod(uint16_t method_index,
130 DCHECK_LT(method_index,
134 method_index, local
art_method.cc 193 uint16_t method_index = GetMethodIndex(); local
197 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
198 result = super_class->GetVTableEntry(method_index, pointer_size);
    [all...]
dex_file_annotations.cc 271 uint32_t method_index = method->GetDexMethodIndex(); local
274 if (method_annotations[i].method_idx_ == method_index) {
294 uint32_t method_index = method->GetDexMethodIndex(); local
297 if (parameter_annotations[i].method_idx_ == method_index) {
    [all...]
dex_file_verifier_test.cc 249 uint32_t method_index = it.GetMemberIndex(); local
250 dex::StringIndex name_index = dex_file->GetMethodId(method_index).name_idx_;
255 *method_idx = method_index;
    [all...]
  /art/compiler/optimizing/
stack_map_stream.h 131 uint32_t method_index; member in struct:art::StackMapStream::InlineInfoEntry
stack_map_stream.cc 118 current_inline_info_.method_index = method->GetDexMethodIndexUnchecked();
563 const uint32_t method_index = stack_map.dex_method_index; local
564 if (method_index != DexFile::kDexNoIndex) {
565 stack_map.dex_method_index_idx = dedupe.emplace(method_index, index).first->second;
566 method_indices_[index] = method_index;
571 const uint32_t method_index = inline_info.method_index; local
572 CHECK_NE(method_index, DexFile::kDexNoIndex);
573 inline_info.dex_method_index_idx = dedupe.emplace(method_index, index).first->second;
574 method_indices_[index] = method_index;
    [all...]
inliner.cc 391 uint32_t method_index = invoke_instruction->GetDexMethodIndex(); local
393 LOG_TRY() << caller_dex_file.PrettyMethod(method_index);
1087 size_t method_index = invoke_instruction->IsInvokeVirtual() local
1598 uint32_t method_index = resolved_method->GetDexMethodIndex(); local
    [all...]
  /art/compiler/dex/
inline_method_analyser.cc 147 uint32_t method_index = invoke_direct->VRegB_35c(); local
150 method->GetDexCache()->GetResolvedMethod(method_index, pointer_size);
  /art/runtime/entrypoints/
entrypoint_utils-inl.h 62 uint32_t method_index = inline_info.GetMethodIndexAtDepth(encoding, method_info, inlining_depth); local
66 DCHECK_EQ(inlined_method->GetDexMethodIndex(), method_index);
82 const DexFile::MethodId& method_id = dex_file->GetMethodId(method_index);
83 ArtMethod* inlined_method = caller->GetDexCacheResolvedMethod(method_index, kRuntimePointerSize);
113 caller->SetDexCacheResolvedMethod(method_index, inlined_method, kRuntimePointerSize);
    [all...]
  /art/compiler/
oat_test.cc 464 size_t method_index = 0; local
466 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
467 ++method_index;
475 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
476 ++method_index;
    [all...]
  /art/profman/
profman.cc 653 uint16_t method_index,
658 method_index);
666 << dex_file->PrettyMethod(method_index);
674 LOG(ERROR) << "Could not find any INVOKE_VIRTUAL: " << dex_file->PrettyMethod(method_index);
763 const uint32_t method_index = FindMethodIndex(class_ref, method_spec); local
764 if (method_index == DexFile::kDexNoIndex) {
772 if (!HasSingleInvoke(class_ref, method_index, &dex_pc)) {
785 pmi.emplace_back(class_ref.dex_file, method_index, inline_caches);
    [all...]
  /art/dexlayout/
dex_ir.cc 311 const uint32_t method_index = static_cast<uint32_t>(ReadVarWidth(data, length, false)); local
312 item->SetMethodId(GetMethodId(method_index));
    [all...]
  /art/oatdump/
oatdump.cc 575 size_t method_index = m->GetMethodIndex(); local
576 return oat_class.GetOatMethod(method_index).GetQuickCode();
    [all...]

Completed in 454 milliseconds