/art/runtime/ |
dex_method_iterator_test.cc | 36 InvokeType invoke_type = it.GetInvokeType(); local 39 LG << invoke_type << " " << PrettyMethod(method_idx, dex_file);
|
Android.mk | 243 invoke_type.h \
|
/art/compiler/sea_ir/ |
frontend.cc | 43 uint32_t method_access_flags, InvokeType invoke_type, 71 InvokeType invoke_type, 77 return CompileMethodWithSeaIr(compiler, backend, code_item, method_access_flags, invoke_type, 88 uint32_t method_access_flags, art::InvokeType invoke_type, 94 return art::SeaIrCompileOneMethod(compiler, backend, code_item, method_access_flags, invoke_type,
|
/art/runtime/entrypoints/portable/ |
portable_trampoline_entrypoints.cc | 320 InvokeType invoke_type; local 329 invoke_type = kDirect; 333 invoke_type = kDirect; 337 invoke_type = kStatic; 341 invoke_type = kStatic; 345 invoke_type = kSuper; 349 invoke_type = kSuper; 353 invoke_type = kVirtual; 357 invoke_type = kVirtual; 361 invoke_type = kInterface [all...] |
/art/compiler/dex/ |
compiler_ir.h | 55 invoke_type(kDirect), 84 InvokeType invoke_type; // compiling method's invocation type. member in struct:art::CompilationUnit
|
frontend.cc | 112 uint32_t access_flags, InvokeType invoke_type, 181 cu.mir_graph->InlineMethod(code_item, access_flags, invoke_type, class_def_idx, method_idx, 275 InvokeType invoke_type, 281 return CompileMethod(compiler, backend, code_item, access_flags, invoke_type, class_def_idx, 294 uint32_t access_flags, art::InvokeType invoke_type, 299 return art::CompileOneMethod(compiler, backend, code_item, access_flags, invoke_type,
|
dex_to_dex_compiler.cc | 244 InvokeType invoke_type = kVirtual; local 245 InvokeType original_invoke_type = invoke_type; 249 bool fast_path = driver_.ComputeInvokeInfo(&unit_, dex_pc, invoke_type, 254 if (fast_path && original_invoke_type == invoke_type) { 279 uint32_t access_flags, art::InvokeType invoke_type,
|
frontend.h | 119 art::InvokeType invoke_type,
|
mir_graph.cc | 506 InvokeType invoke_type, uint16_t class_def_idx, 539 cu_->invoke_type = invoke_type; [all...] |
mir_graph.h | 360 InvokeType invoke_type, uint16_t class_def_idx,
|
/art/runtime/entrypoints/quick/ |
quick_trampoline_entrypoints.cc | 451 InvokeType invoke_type; local 468 invoke_type = kDirect; 472 invoke_type = kDirect; 476 invoke_type = kStatic; 480 invoke_type = kStatic; 484 invoke_type = kSuper; 488 invoke_type = kSuper; 492 invoke_type = kVirtual; 496 invoke_type = kVirtual; 500 invoke_type = kInterface [all...] |
/art/compiler/llvm/ |
compiler_llvm.h | 78 InvokeType invoke_type);
|
compiler_llvm.cc | 41 uint32_t access_flags, InvokeType invoke_type, 135 CompileDexMethod(DexCompilationUnit* dex_compilation_unit, InvokeType invoke_type) { 145 invoke_type, 204 art::InvokeType invoke_type, 216 art::CompiledMethod* result = compiler_llvm->CompileDexMethod(&dex_compilation_unit, invoke_type);
|
gbc_expander.cc | 360 art::InvokeType invoke_type, 835 art::InvokeType invoke_type = local 837 bool is_static = (invoke_type == art::kStatic); 849 invoke_type, target_method, 858 EmitCallRuntimeForCalleeMethodObjectAddr(target_method.dex_method_index, invoke_type, 861 switch (invoke_type) { 950 art::InvokeType invoke_type = local 2317 art::InvokeType invoke_type = static_cast<art::InvokeType>(LV2UInt(call_inst.getArgOperand(0))); local [all...] |
/art/compiler/driver/ |
compiler_driver.cc | 295 art::InvokeType invoke_type, 303 art::InvokeType invoke_type, 312 art::InvokeType invoke_type, 321 art::InvokeType invoke_type, [all...] |
compiler_driver.h | 31 #include "invoke_type.h" 369 InvokeType invoke_type, uint16_t class_def_idx, uint32_t method_idx, 419 uint32_t access_flags, InvokeType invoke_type, 425 uint32_t access_flags, InvokeType invoke_type,
|
/art/compiler/ |
elf_writer_mclinker.cc | 355 InvokeType invoke_type = it.GetInvokeType(); local 362 method = linker->ResolveMethod(dex_file, method_idx, dex_cache, NULL, NULL, invoke_type);
|
oat_writer.cc | 278 InvokeType invoke_type, 404 NULL, NULL, invoke_type); [all...] |
/art/compiler/dex/portable/ |
mir_to_gbc.h | 20 #include "invoke_type.h" 128 void ConvertInvoke(BasicBlock* bb, MIR* mir, InvokeType invoke_type,
|
mir_to_gbc.cc | 451 InvokeType invoke_type, bool is_range, bool is_filled_new_array) { 452 CallInfo* info = mir_graph_->NewMemCallInfo(bb, mir, invoke_type, is_range); 454 // Insert the invoke_type 455 args.push_back(irb_->getInt32(static_cast<int>(invoke_type))); [all...] |
/art/compiler/dex/quick/ |
codegen_util.cc | 367 cu_->invoke_type, 383 cu_->invoke_type, [all...] |