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

  /art/compiler/dex/
mir_method_info.cc 64 InvokeType invoke_type = it->GetInvokeType(); local
67 invoke_type);
73 it->vtable_idx_ = compiler_driver->GetResolvedMethodVTableIndex(resolved_method, invoke_type);
77 soa, dex_cache, class_loader, mUnit, referrer_class.Get(), resolved_method, &invoke_type,
85 (static_cast<uint16_t>(invoke_type) << kBitSharpTypeBegin) |
compiler_ir.h 60 InvokeType invoke_type; // compiling method's invocation type. member in struct:art::CompilationUnit
dex_to_dex_compiler.cc 238 InvokeType invoke_type = kVirtual; local
239 InvokeType original_invoke_type = invoke_type;
247 &invoke_type,
250 if (fast_path && original_invoke_type == invoke_type) {
275 uint32_t access_flags, art::InvokeType invoke_type,
mir_analysis.cc 1190 // Map key: target_method_idx, invoke_type, devirt_target. Ordered to avoid padding.
1193 uint16_t invoke_type; member in struct:art::MapEntry
1204 if (lhs.invoke_type != rhs.invoke_type) {
1205 return lhs.invoke_type < rhs.invoke_type;
1289 static_cast<InvokeType>(entry->invoke_type));
  /art/runtime/
dex_method_iterator_test.cc 39 InvokeType invoke_type = it.GetInvokeType(); local
42 LG << invoke_type << " " << PrettyMethod(method_idx, dex_file);
  /art/compiler/
elf_writer_mclinker.cc 358 InvokeType invoke_type = it.GetInvokeType(); local
368 NullHandle<mirror::ArtMethod>(), invoke_type);
oat_writer.cc 552 InvokeType invoke_type = it.GetMethodInvokeType(dex_file_->GetClassDef(class_def_index_)); local
560 invoke_type);
    [all...]
  /art/runtime/entrypoints/portable/
portable_trampoline_entrypoints.cc 327 InvokeType invoke_type; local
336 invoke_type = kDirect;
340 invoke_type = kDirect;
344 invoke_type = kStatic;
348 invoke_type = kStatic;
352 invoke_type = kSuper;
356 invoke_type = kSuper;
360 invoke_type = kVirtual;
364 invoke_type = kVirtual;
368 invoke_type = kInterface
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 302 InvokeType invoke_type)
314 switch (invoke_type) {
327 LOG(FATAL) << "Unreachable - invocation type: " << invoke_type;
482 InvokeType invoke_type = it.GetMethodInvokeType(class_def); local
483 PreloadDexCachesResolveMethod(dex_cache, method_idx, invoke_type);
487 InvokeType invoke_type = it.GetMethodInvokeType(class_def); local
488 PreloadDexCachesResolveMethod(dex_cache, method_idx, invoke_type);
  /art/compiler/driver/
compiler_driver.cc 326 art::InvokeType invoke_type,
557 InvokeType invoke_type = method->GetInvokeType(); local
588 CompileMethod(code_item, access_flags, invoke_type, class_def_idx, method_idx, jclass_loader,
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 714 InvokeType invoke_type; local
728 invoke_type = kDirect;
732 invoke_type = kDirect;
736 invoke_type = kStatic;
740 invoke_type = kStatic;
744 invoke_type = kSuper;
748 invoke_type = kSuper;
752 invoke_type = kVirtual;
756 invoke_type = kVirtual;
760 invoke_type = kInterface
    [all...]
  /art/compiler/llvm/
gbc_expander.cc 357 art::InvokeType invoke_type,
822 art::InvokeType invoke_type = local
824 bool is_static = (invoke_type == art::kStatic);
837 &invoke_type, &target_method,
845 EmitCallRuntimeForCalleeMethodObjectAddr(target_method.dex_method_index, invoke_type,
848 switch (invoke_type) {
937 art::InvokeType invoke_type = local
2308 art::InvokeType invoke_type = static_cast<art::InvokeType>(LV2UInt(call_inst.getArgOperand(0))); local
    [all...]

Completed in 222 milliseconds