/art/compiler/dex/ |
backend.h | 29 virtual CompiledMethod* GetCompiledMethod() = 0;
|
frontend.cc | 109 static CompiledMethod* CompileMethod(CompilerDriver& compiler, 222 CompiledMethod* result = NULL; 271 CompiledMethod* CompileOneMethod(CompilerDriver& compiler, 291 extern "C" art::CompiledMethod*
|
frontend.h | 116 extern "C" art::CompiledMethod* ArtCompileMethod(art::CompilerDriver& driver,
|
/art/compiler/llvm/ |
compiler_llvm.h | 33 class CompiledMethod; 77 CompiledMethod* CompileDexMethod(DexCompilationUnit* dex_compilation_unit, 80 CompiledMethod* CompileGBCMethod(DexCompilationUnit* dex_compilation_unit, std::string* func); 82 CompiledMethod* CompileNativeMethod(DexCompilationUnit* dex_compilation_unit);
|
compiler_llvm.cc | 134 CompiledMethod* CompilerLLVM:: 156 return new CompiledMethod(*compiler_driver_, compiler_driver_->GetInstructionSet(), 162 CompiledMethod* CompilerLLVM:: 201 extern "C" art::CompiledMethod* ArtCompileMethod(art::CompilerDriver& driver, 216 art::CompiledMethod* result = compiler_llvm->CompileDexMethod(&dex_compilation_unit, invoke_type); 220 extern "C" art::CompiledMethod* ArtLLVMJniCompileMethod(art::CompilerDriver& driver, 230 art::CompiledMethod* result = compiler_llvm->CompileNativeMethod(&dex_compilation_unit);
|
llvm_compilation_unit.h | 36 class CompiledMethod; 122 SafeMap<const ::llvm::Function*, CompiledMethod*> compiled_methods_map_;
|
/art/compiler/ |
compiled_method.h | 99 class CompiledMethod : public CompiledCode { 101 // Constructs a CompiledMethod for the non-LLVM compilers. 102 CompiledMethod(CompilerDriver& driver, 112 // Constructs a CompiledMethod for the JniCompiler. 113 CompiledMethod(CompilerDriver& driver, 120 // Constructs a CompiledMethod for the Portable compiler. 121 CompiledMethod(CompilerDriver& driver, InstructionSet instruction_set, const std::string& code, 124 // Constructs a CompiledMethod for the Portable JniCompiler. 125 CompiledMethod(CompilerDriver& driver, InstructionSet instruction_set, const std::string& code, 128 ~CompiledMethod() {} [all...] |
compiled_method.cc | 119 CompiledMethod::CompiledMethod(CompilerDriver& driver, 135 CompiledMethod::CompiledMethod(CompilerDriver& driver, 149 // Constructs a CompiledMethod for the Portable compiler. 150 CompiledMethod::CompiledMethod(CompilerDriver& driver, InstructionSet instruction_set, 160 CompiledMethod::CompiledMethod(CompilerDriver& driver, InstructionSet instruction_set,
|
elf_writer_mclinker.cc | 244 const CompiledMethod* compiled_method = 365 const CompiledMethod* compiled_method =
|
oat_test.cc | 35 const CompiledMethod* compiled_method =
|
oat_writer.cc | 280 // derived from CompiledMethod if available 295 CompiledMethod* compiled_method = 667 const CompiledMethod* compiled_method = [all...] |
/art/compiler/jni/portable/ |
jni_compiler.h | 26 class CompiledMethod; 60 CompiledMethod* Compile();
|
jni_compiler.cc | 63 CompiledMethod* JniCompiler::Compile() { 254 return new CompiledMethod(*driver_, cunit_->GetInstructionSet(), cunit_->GetElfObject(),
|
/art/compiler/sea_ir/ |
frontend.cc | 40 static CompiledMethod* CompileMethodWithSeaIr(CompilerDriver& compiler, 60 CompiledMethod* compiled_method = 61 new CompiledMethod(compiler, compiler.GetInstructionSet(), llvm_code, 67 CompiledMethod* SeaIrCompileOneMethod(CompilerDriver& compiler, 85 extern "C" art::CompiledMethod*
|
/art/compiler/driver/ |
compiler_driver.h | 145 CompiledMethod* GetCompiledMethod(MethodReference ref) const 393 typedef SafeMap<const MethodReference, CompiledMethod*, MethodReferenceComparator> MethodTable; 417 typedef CompiledMethod* (*CompilerFn)(CompilerDriver& driver, 438 typedef CompiledMethod* (*JniCompilerFn)(CompilerDriver& driver, 452 (const CompilerDriver& driver, const CompiledMethod* cm, const mirror::ArtMethod* method);
|
compiler_driver.cc | 292 extern "C" art::CompiledMethod* ArtCompileMethod(art::CompilerDriver& driver, 300 extern "C" art::CompiledMethod* ArtQuickCompileMethod(art::CompilerDriver& compiler, 309 extern "C" art::CompiledMethod* ArtCompileDEX(art::CompilerDriver& compiler, 318 extern "C" art::CompiledMethod* SeaIrCompileMethod(art::CompilerDriver& compiler, 327 extern "C" art::CompiledMethod* ArtLLVMJniCompileMethod(art::CompilerDriver& driver, 331 extern "C" art::CompiledMethod* ArtQuickJniCompileMethod(art::CompilerDriver& compiler, [all...] |
/art/runtime/ |
exception_test.cc | 77 method_f_->SetEntryPointFromCompiledCode(CompiledMethod::CodePointer(&fake_code_[sizeof(code_size)], kThumb2)); 85 method_g_->SetEntryPointFromCompiledCode(CompiledMethod::CodePointer(&fake_code_[sizeof(code_size)], kThumb2));
|
common_test.h | 189 const CompiledMethod* compiled_method = NULL; 200 const void* method_code = CompiledMethod::CodePointer(&code[0],
|
/art/compiler/jni/quick/ |
jni_compiler.cc | 55 CompiledMethod* ArtJniCompileMethodInternal(CompilerDriver& compiler, 373 return new CompiledMethod(compiler, 486 extern "C" art::CompiledMethod* ArtQuickJniCompileMethod(art::CompilerDriver& compiler,
|
/art/compiler/dex/portable/ |
mir_to_gbc.h | 74 CompiledMethod* GetCompiledMethod() {
|
/art/compiler/dex/quick/ |
codegen_util.cc | [all...] |
mir_to_lir.h | 251 virtual CompiledMethod* GetCompiledMethod(); [all...] |