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

  /art/runtime/
dex_method_iterator_test.cc 40 uint32_t method_idx = it.GetMemberIndex(); local
42 LG << invoke_type << " " << PrettyMethod(method_idx, dex_file);
dex_instruction.cc 322 uint32_t method_idx = VRegB_35c(); local
329 os << "}, " << PrettyMethod(method_idx, *file) << " // method@" << method_idx;
335 uint32_t method_idx = VRegB_35c(); local
342 os << "}, // vtable@" << method_idx; local
360 uint32_t method_idx = VRegB_3rc(); local
362 << PrettyMethod(method_idx, *file) << " // method@" << method_idx;
367 uint32_t method_idx = VRegB_3rc(); local
369 << "// vtable@" << method_idx;
    [all...]
profiler.cc 529 uint32_t method_idx = method->GetDexMethodIndex(); local
531 MethodReference method_ref(dex_file, method_idx);
class_linker.cc 3962 uint32_t method_idx = proxy_method->GetDexMethodIndex(); local
5000 size_t method_idx = local_method->GetMethodIndexDuringLinking(); local
    [all...]
  /art/compiler/dex/
compiler_ir.h 57 uint32_t method_idx; // compiling method's index into method_ids of DexFile. member in struct:art::CompilationUnit
dex_to_dex_compiler.cc 236 uint32_t method_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c(); local
237 MethodReference target_method(&GetDexFile(), method_idx); local
253 << "(" << PrettyMethod(method_idx, GetDexFile(), true) << ")"
255 << " by replacing method index " << method_idx
276 uint16_t class_def_idx, uint32_t method_idx, jobject class_loader,
281 dex_file, code_item, class_def_idx, method_idx, access_flags,
282 driver.GetVerifiedMethod(&dex_file, method_idx));
  /art/compiler/jni/portable/
jni_compiler.cc 72 uint32_t method_idx = dex_compilation_unit_->GetDexMethodIndex(); local
74 MangleForJni(PrettyMethod(method_idx, *dex_file)).c_str()));
280 ::llvm::FunctionType* JniCompiler::GetFunctionType(uint32_t method_idx,
  /art/runtime/interpreter/
interpreter_common.h 108 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
113 method_idx, &receiver, &sf_method, self);
  /art/compiler/
elf_writer_mclinker.cc 247 uint32_t method_idx = it.GetMemberIndex(); local
249 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file, method_idx));
357 uint32_t method_idx = it.GetMemberIndex(); local
366 method = linker->ResolveMethod(dex_file, method_idx, dex_cache,
372 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file, method_idx));
oat_writer.cc 296 uint32_t method_idx = it.GetMemberIndex(); local
298 writer_->compiler_driver_->GetCompiledMethod(MethodReference(dex_file_, method_idx));
    [all...]
  /art/runtime/quick/
inline_method_analyser.cc 333 uint32_t method_idx = verifier->GetMethodReference().dex_method_index; local
334 mirror::ArtMethod* method = dex_cache->GetResolvedMethod(method_idx);
  /art/compiler/dex/quick/
dex_file_method_inliner.cc 516 bool DexFileMethodInliner::GenSpecial(Mir2Lir* backend, uint32_t method_idx) {
520 auto it = inline_methods_.find(method_idx);
530 uint32_t method_idx) {
534 auto it = inline_methods_.find(method_idx);
556 result = GenInlineIGet(mir_graph, bb, invoke, move_result, method, method_idx);
560 result = GenInlineIPut(mir_graph, bb, invoke, move_result, method, method_idx);
687 uint32_t method_idx = FindMethodIndex(dex_file, &cache, def.method_def); local
688 if (method_idx != kIndexNotFound) {
689 DCHECK(inline_methods_.find(method_idx) == inline_methods_.end());
690 inline_methods_.Put(method_idx, def.intrinsic)
    [all...]
  /art/compiler/optimizing/
builder.cc 323 uint32_t method_idx,
328 const DexFile::MethodId& method_id = dex_file_->GetMethodId(method_idx);
339 arena_, number_of_arguments, return_type, dex_offset, method_idx);
606 uint32_t method_idx = instruction.VRegB_35c(); local
610 if (!BuildInvoke(instruction, dex_offset, method_idx, number_of_vreg_arguments, false, args, -1)) {
618 uint32_t method_idx = instruction.VRegB_3rc(); local
621 if (!BuildInvoke(instruction, dex_offset, method_idx,
  /art/runtime/native/
dalvik_system_VMRuntime.cc 301 static void PreloadDexCachesResolveMethod(Handle<mirror::DexCache> dex_cache, uint32_t method_idx,
304 mirror::ArtMethod* method = dex_cache->GetResolvedMethod(method_idx);
309 const DexFile::MethodId& method_id = dex_file->GetMethodId(method_idx);
317 method = klass->FindDirectMethod(dex_cache.Get(), method_idx);
320 method = klass->FindInterfaceMethod(dex_cache.Get(), method_idx);
324 method = klass->FindVirtualMethod(dex_cache.Get(), method_idx);
333 dex_cache->SetResolvedMethod(method_idx, method);
481 uint32_t method_idx = it.GetMemberIndex(); local
483 PreloadDexCachesResolveMethod(dex_cache, method_idx, invoke_type);
486 uint32_t method_idx = it.GetMemberIndex() local
    [all...]
  /art/compiler/driver/
compiler_driver.cc 328 uint32_t method_idx,
555 uint32_t method_idx = method->GetDexMethodIndex(); local
588 CompileMethod(code_item, access_flags, invoke_type, class_def_idx, method_idx, jclass_loader,
1296 uint32_t method_idx = target_method->dex_method_index; local
2050 uint32_t method_idx = it.GetMemberIndex(); local
2067 uint32_t method_idx = it.GetMemberIndex(); local
    [all...]
  /art/runtime/verifier/
method_verifier.cc 164 uint32_t method_idx = it.GetMemberIndex(); local
165 if (method_idx == previous_direct_method_idx) {
166 // smali can create dex files with two encoded_methods sharing the same method_idx
171 previous_direct_method_idx = method_idx;
174 linker->ResolveMethod(*dex_file, method_idx, dex_cache, class_loader,
181 MethodVerifier::FailureKind result = VerifyMethod(method_idx,
200 *error += PrettyMethod(method_idx, *dex_file);
208 uint32_t method_idx = it.GetMemberIndex(); local
209 if (method_idx == previous_virtual_method_idx) {
210 // smali can create dex files with two encoded_methods sharing the same method_idx
2244 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
2267 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
2350 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
2408 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
3175 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
3190 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
3259 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
3298 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
    [all...]

Completed in 614 milliseconds