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

  /art/compiler/optimizing/
stack_map_stream.h 112 uint32_t method_index; member in struct:art::StackMapStream::InlineInfoEntry
129 void BeginInlineInfoEntry(uint32_t method_index,
inliner.cc 254 uint32_t method_index = invoke_instruction->GetDexMethodIndex(); local
257 VLOG(compiler) << "Try inlining " << PrettyMethod(method_index, caller_dex_file);
278 method_index, class_linker->GetImagePointerSize());
288 VLOG(compiler) << "Method cannot be resolved " << PrettyMethod(method_index, caller_dex_file);
313 << PrettyMethod(method_index, caller_dex_file)
331 << PrettyMethod(method_index, caller_dex_file)
340 << PrettyMethod(method_index, caller_dex_file)
640 size_t method_index = invoke_instruction->IsInvokeVirtual() local
653 method_index % mirror::Class::kImtSize, pointer_size);
661 new_method = ic.GetTypeAt(i)->GetEmbeddedVTableEntry(method_index, pointer_size)
1035 uint32_t method_index = resolved_method->GetDexMethodIndex(); local
    [all...]
  /art/runtime/entrypoints/
entrypoint_utils-inl.h 48 uint32_t method_index = inline_info.GetMethodIndexAtDepth(encoding, inlining_depth); local
51 ArtMethod* caller = outer_method->GetDexCacheResolvedMethod(method_index, sizeof(void*));
80 *outer_method->GetDexFile(), method_index, dex_cache, class_loader, nullptr, invoke_type);
    [all...]
  /art/runtime/
art_method-inl.h 128 inline ArtMethod* ArtMethod::GetDexCacheResolvedMethod(uint16_t method_index, size_t ptr_size) {
131 DCHECK_LT(method_index,
135 method_index,
146 inline void ArtMethod::SetDexCacheResolvedMethod(uint16_t method_index, ArtMethod* new_method,
150 DCHECK_LT(method_index,
155 method_index, local
art_method.cc 129 uint16_t method_index = GetMethodIndex(); local
133 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
134 result = super_class->GetVTableEntry(method_index, pointer_size);
dex_file_verifier_test.cc 313 uint32_t method_index = it.GetMemberIndex(); local
314 uint32_t name_index = dex_file->GetMethodId(method_index).name_idx_;
319 *method_idx = method_index;
    [all...]
dex_file.cc 1251 uint32_t method_index = method->GetDexMethodIndex(); local
1272 uint32_t method_index = method->GetDexMethodIndex(); local
    [all...]
  /art/runtime/quick/
inline_method_analyser.cc 147 uint32_t method_index = invoke_direct->VRegB_35c(); local
150 method->GetDexCache()->GetResolvedMethod(method_index, pointer_size);
  /art/compiler/
oat_test.cc 422 size_t method_index = 0; local
424 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
425 ++method_index;
433 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
434 ++method_index;
    [all...]
  /art/oatdump/
oatdump.cc 505 size_t method_index = m->GetMethodIndex(); local
506 return oat_class.GetOatMethod(method_index).GetQuickCode();
    [all...]

Completed in 278 milliseconds