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

  /art/runtime/
dex_method_iterator_test.cc 40 InvokeType invoke_type = it.GetInvokeType(); local
43 LOG(INFO) << invoke_type << " " << PrettyMethod(method_idx, dex_file);
  /art/compiler/dex/
mir_method_info.cc 85 InvokeType invoke_type = it->GetInvokeType(); local
91 invoke_type = kDirect;
99 it->target_method_idx_, invoke_type, true);
104 CHECK_EQ(invoke_type, kVirtual);
116 it->target_method_idx_, invoke_type, false);
148 compiler_driver->GetResolvedMethodVTableIndex(resolved_method, invoke_type);
154 &invoke_type, &target_method, devirt_target, &it->direct_code_, &it->direct_method_);
176 (static_cast<uint16_t>(invoke_type) << kBitSharpTypeBegin) |
dex_to_dex_compiler.cc 261 InvokeType invoke_type = kVirtual; local
262 InvokeType original_invoke_type = invoke_type;
270 &invoke_type,
273 if (fast_path && original_invoke_type == invoke_type) {
298 uint32_t access_flags, art::InvokeType invoke_type,
302 UNUSED(invoke_type);
compiler_ir.h 28 #include "invoke_type.h"
181 InvokeType invoke_type; // compiling method's invocation type. member in struct:art::CompilationUnit
mir_analysis.cc 1309 // Map key: target_method_idx, invoke_type, devirt_target. Ordered to avoid padding.
1313 uint16_t invoke_type; member in struct:art::MapEntry
1323 if (lhs.invoke_type != rhs.invoke_type) {
1324 return lhs.invoke_type < rhs.invoke_type;
    [all...]
mir_optimization_test.cc 46 InvokeType invoke_type; member in struct:art::MirOptimizationTest::MethodDef
257 MirMethodLoweringInfo method_info(def->method_idx, def->invoke_type, false);
263 ASSERT_EQ(def->invoke_type != kStatic, def->sharp_type != kStatic);
265 ((def->invoke_type == kStatic) ? MirMethodLoweringInfo::kFlagIsStatic : 0u) |
267 (static_cast<uint16_t>(def->invoke_type) << MirMethodLoweringInfo::kBitInvokeTypeBegin) |
    [all...]
  /art/compiler/optimizing/
intrinsics.cc 22 #include "invoke_type.h"
311 InvokeType invoke_type = invoke->IsInvokeStaticOrDirect() ? local
316 return (invoke_type == kStatic);
318 return (invoke_type == kDirect);
321 return (invoke_type == kVirtual || invoke_type == kDirect);
builder.cc 577 InvokeType invoke_type; local
581 invoke_type = kStatic;
585 invoke_type = kDirect;
589 invoke_type = kVirtual;
593 invoke_type = kInterface;
597 invoke_type = kSuper;
608 bool is_instance_call = invoke_type != kStatic;
620 InvokeType optimized_invoke_type = invoke_type;
646 invoke_type = kStatic;
661 DCHECK((optimized_invoke_type == invoke_type) || (optimized_invoke_type != kDirect
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 351 InvokeType invoke_type)
363 switch (invoke_type) {
376 LOG(FATAL) << "Unreachable - invocation type: " << invoke_type;
531 InvokeType invoke_type = it.GetMethodInvokeType(class_def); local
532 PreloadDexCachesResolveMethod(dex_cache, method_idx, invoke_type);
536 InvokeType invoke_type = it.GetMethodInvokeType(class_def); local
537 PreloadDexCachesResolveMethod(dex_cache, method_idx, invoke_type);
  /art/compiler/
oat_writer.cc 613 InvokeType invoke_type = it.GetMethodInvokeType(dex_file_->GetClassDef(class_def_index_)); local
620 invoke_type);
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 827 InvokeType invoke_type; local
    [all...]
  /art/compiler/driver/
compiler_driver.cc 341 art::InvokeType invoke_type,
553 InvokeType invoke_type = method->GetInvokeType(); local
583 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
593 const InvokeType invoke_type = method->GetInvokeType(); local
605 CompileMethod(self, code_item, access_flags, invoke_type, class_def_idx, method_idx,
    [all...]

Completed in 226 milliseconds