Searched refs:CompilerDriver (Results 1 - 25 of 32) sorted by path

12

/art/compiler/
H A Dcompiled_method.cc22 CompiledCode::CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set,
28 CompiledCode::CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set,
119 CompiledMethod::CompiledMethod(CompilerDriver& driver,
135 CompiledMethod::CompiledMethod(CompilerDriver& driver,
150 CompiledMethod::CompiledMethod(CompilerDriver& driver, InstructionSet instruction_set,
160 CompiledMethod::CompiledMethod(CompilerDriver& driver, InstructionSet instruction_set,
H A Dcompiled_method.h33 class CompilerDriver;
38 CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set,
42 CompiledCode(CompilerDriver* compiler_driver, InstructionSet instruction_set,
82 CompilerDriver* compiler_driver_;
102 CompiledMethod(CompilerDriver& driver,
113 CompiledMethod(CompilerDriver& driver,
121 CompiledMethod(CompilerDriver& driver, InstructionSet instruction_set, const std::string& code,
125 CompiledMethod(CompilerDriver& driver, InstructionSet instruction_set, const std::string& code,
H A Delf_writer.cc34 ElfWriter::ElfWriter(const CompilerDriver& driver, File* elf_file)
H A Delf_writer.h33 class CompilerDriver;
50 ElfWriter(const CompilerDriver& driver, File* elf_file);
60 const CompilerDriver* compiler_driver_;
H A Delf_writer_mclinker.cc45 ElfWriterMclinker::ElfWriterMclinker(const CompilerDriver& driver, File* elf_file)
55 const CompilerDriver& driver) {
101 CompilerDriver::InstructionSetToLLVMTarget(compiler_driver_->GetInstructionSet(),
H A Delf_writer_mclinker.h47 const CompilerDriver& driver)
58 ElfWriterMclinker(const CompilerDriver& driver, File* elf_file);
H A Delf_writer_quick.cc31 ElfWriterQuick::ElfWriterQuick(const CompilerDriver& driver, File* elf_file)
41 const CompilerDriver& driver) {
H A Delf_writer_quick.h32 const CompilerDriver& driver)
43 ElfWriterQuick(const CompilerDriver& driver, File* elf_file);
H A Dimage_test.cc104 CompilerDriver::DescriptorSet image_classes(*compiler_driver_->GetImageClasses());
H A Dimage_writer.cc335 CompilerDriver::DescriptorSet* image_classes = compiler_driver_.GetImageClasses();
649 static ArtMethod* GetTargetMethod(const CompilerDriver::PatchInformation* patch)
675 typedef std::vector<const CompilerDriver::PatchInformation*> Patches;
678 const CompilerDriver::PatchInformation* patch = code_to_patch[i];
688 const CompilerDriver::PatchInformation* patch = methods_to_patch[i];
699 void ImageWriter::SetPatchLocation(const CompilerDriver::PatchInformation* patch, uint32_t value) {
H A Dimage_writer.h40 explicit ImageWriter(const CompilerDriver& compiler_driver)
176 void SetPatchLocation(const CompilerDriver::PatchInformation* patch, uint32_t value)
180 const CompilerDriver& compiler_driver_;
/art/compiler/dex/
H A Dcompiler_ir.h76 CompilerDriver* compiler_driver;
H A Ddex_to_dex_compiler.cc38 DexCompiler(art::CompilerDriver& compiler,
91 CompilerDriver& driver_;
278 extern "C" void ArtCompileDEX(art::CompilerDriver& compiler, const art::DexFile::CodeItem* code_item,
H A Dfrontend.cc63 extern "C" void ArtInitQuickCompilerContext(art::CompilerDriver& compiler) {
69 extern "C" void ArtUnInitQuickCompilerContext(art::CompilerDriver& compiler) {
109 static CompiledMethod* CompileMethod(CompilerDriver& compiler,
271 CompiledMethod* CompileOneMethod(CompilerDriver& compiler,
292 ArtQuickCompileMethod(art::CompilerDriver& compiler,
H A Dfrontend.h116 extern "C" art::CompiledMethod* ArtCompileMethod(art::CompilerDriver& driver,
/art/compiler/driver/
H A Dcompiler_driver.cc286 extern "C" void ArtInitCompilerContext(art::CompilerDriver& driver);
287 extern "C" void ArtInitQuickCompilerContext(art::CompilerDriver& compiler);
289 extern "C" void ArtUnInitCompilerContext(art::CompilerDriver& driver);
290 extern "C" void ArtUnInitQuickCompilerContext(art::CompilerDriver& compiler);
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
338 CompilerDriver::CompilerDriver(CompilerBackend compiler_backend, InstructionSet instruction_set, function in class:art::CompilerDriver
[all...]
H A Dcompiler_driver.h84 class CompilerDriver { class in namespace:art
93 explicit CompilerDriver(CompilerBackend compiler_backend, InstructionSet instruction_set,
97 ~CompilerDriver();
299 friend class CompilerDriver;
412 typedef void (*CompilerCallbackFn)(CompilerDriver& driver);
413 typedef MutexLock* (*CompilerMutexLockFn)(CompilerDriver& driver);
417 typedef CompiledMethod* (*CompilerFn)(CompilerDriver& driver,
423 typedef void (*DexToDexCompilerFn)(CompilerDriver& driver,
438 typedef CompiledMethod* (*JniCompilerFn)(CompilerDriver& driver,
448 typedef void (*CompilerEnableAutoElfLoadingFn)(CompilerDriver
[all...]
/art/compiler/jni/portable/
H A Djni_compiler.cc53 CompilerDriver& driver,
H A Djni_compiler.h27 class CompilerDriver;
57 CompilerDriver& driver,
70 CompilerDriver* driver_;
/art/compiler/jni/quick/
H A Djni_compiler.cc55 CompiledMethod* ArtJniCompileMethodInternal(CompilerDriver& compiler,
486 extern "C" art::CompiledMethod* ArtQuickJniCompileMethod(art::CompilerDriver& compiler,
/art/compiler/llvm/
H A Dcompiler_llvm.cc38 void CompileOneMethod(CompilerDriver& driver,
109 CompilerLLVM::CompilerLLVM(CompilerDriver* driver, InstructionSet insn_set)
176 inline static art::llvm::CompilerLLVM* ContextOf(art::CompilerDriver& driver) {
182 inline static const art::llvm::CompilerLLVM* ContextOf(const art::CompilerDriver& driver) {
188 extern "C" void ArtInitCompilerContext(art::CompilerDriver& driver) {
197 extern "C" void ArtUnInitCompilerContext(art::CompilerDriver& driver) {
201 extern "C" art::CompiledMethod* ArtCompileMethod(art::CompilerDriver& driver,
220 extern "C" art::CompiledMethod* ArtLLVMJniCompileMethod(art::CompilerDriver& driver,
234 extern "C" void compilerLLVMSetBitcodeFileName(art::CompilerDriver& driver,
H A Dcompiler_llvm.h34 class CompilerDriver;
61 CompilerLLVM(CompilerDriver* driver, InstructionSet insn_set);
65 CompilerDriver* GetCompiler() const {
87 CompilerDriver* const compiler_driver_;
H A Dgbc_expander.cc133 art::CompilerDriver* const driver_;
411 art::CompilerDriver* driver, const art::DexCompilationUnit* dex_compilation_unit)
3803 CompilerDriver* driver, const DexCompilationUnit* dex_compilation_unit) {
H A Dllvm_compilation_unit.cc94 CompilerDriver* compiler, const DexCompilationUnit* dex_compilation_unit);
205 CompilerDriver::InstructionSetToLLVMTarget(GetInstructionSet(), target_triple, target_cpu, target_attr);
H A Dllvm_compilation_unit.h81 void SetCompilerDriver(CompilerDriver* driver) {
115 CompilerDriver* driver_;

Completed in 166 milliseconds

12