HomeSort by relevance Sort by last modified time
    Searched refs:CompilerDriver (Results 1 - 25 of 33) sorted by null

1 2

  /art/compiler/
elf_writer.h 33 class CompilerDriver;
50 ElfWriter(const CompilerDriver& driver, File* elf_file);
60 const CompilerDriver* compiler_driver_;
compiled_method.h 33 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,
elf_writer_quick.h 32 const CompilerDriver& driver)
43 ElfWriterQuick(const CompilerDriver& driver, File* elf_file);
elf_writer_mclinker.h 47 const CompilerDriver& driver)
58 ElfWriterMclinker(const CompilerDriver& driver, File* elf_file);
elf_writer.cc 34 ElfWriter::ElfWriter(const CompilerDriver& driver, File* elf_file)
compiled_method.cc 22 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,
image_writer.h 40 explicit ImageWriter(const CompilerDriver& compiler_driver)
176 void SetPatchLocation(const CompilerDriver::PatchInformation* patch, uint32_t value)
180 const CompilerDriver& compiler_driver_;
oat_writer.h 69 const CompilerDriver* compiler);
167 const CompilerDriver* const compiler_driver_;
elf_writer_mclinker.cc 45 ElfWriterMclinker::ElfWriterMclinker(const CompilerDriver& driver, File* elf_file)
55 const CompilerDriver& driver) {
101 CompilerDriver::InstructionSetToLLVMTarget(compiler_driver_->GetInstructionSet(),
image_writer.cc 335 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) {
  /art/compiler/llvm/
compiler_llvm.h 34 class CompilerDriver;
61 CompilerLLVM(CompilerDriver* driver, InstructionSet insn_set);
65 CompilerDriver* GetCompiler() const {
87 CompilerDriver* const compiler_driver_;
compiler_llvm.cc 38 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,
llvm_compilation_unit.h 81 void SetCompilerDriver(CompilerDriver* driver) {
115 CompilerDriver* driver_;
llvm_compilation_unit.cc 94 CompilerDriver* compiler, const DexCompilationUnit* dex_compilation_unit);
205 CompilerDriver::InstructionSetToLLVMTarget(GetInstructionSet(), target_triple, target_cpu, target_attr);
  /art/compiler/jni/portable/
jni_compiler.h 27 class CompilerDriver;
57 CompilerDriver& driver,
70 CompilerDriver* driver_;
  /art/compiler/driver/
compiler_driver.cc 286 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& compiler
    [all...]
compiler_driver.h 84 class CompilerDriver {
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& driver)
    [all...]
  /art/compiler/sea_ir/
frontend.cc 40 static CompiledMethod* CompileMethodWithSeaIr(CompilerDriver& compiler,
67 CompiledMethod* SeaIrCompileOneMethod(CompilerDriver& compiler,
86 SeaIrCompileMethod(art::CompilerDriver& compiler,
  /art/compiler/dex/
frontend.cc 63 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,
compiler_ir.h 76 CompilerDriver* compiler_driver;
frontend.h 116 extern "C" art::CompiledMethod* ArtCompileMethod(art::CompilerDriver& driver,
dex_to_dex_compiler.cc 38 DexCompiler(art::CompilerDriver& compiler,
91 CompilerDriver& driver_;
278 extern "C" void ArtCompileDEX(art::CompilerDriver& compiler, const art::DexFile::CodeItem* code_item,
  /art/dex2oat/
dex2oat.cc 176 CompilerDriver::DescriptorSet* ReadImageClassesFromFile(const char* image_classes_filename) {
183 UniquePtr<CompilerDriver::DescriptorSet> result(ReadImageClasses(*image_classes_file.get()));
188 CompilerDriver::DescriptorSet* ReadImageClasses(std::istream& image_classes_stream) {
189 UniquePtr<CompilerDriver::DescriptorSet> image_classes(new CompilerDriver::DescriptorSet);
203 CompilerDriver::DescriptorSet* ReadImageClassesFromZip(const std::string& zip_filename,
226 const CompilerDriver* CreateOatFile(const std::string& boot_image_option,
234 UniquePtr<CompilerDriver::DescriptorSet>& image_classes,
255 UniquePtr<CompilerDriver> driver(new CompilerDriver(compiler_backend_
    [all...]
  /external/clang/lib/Tooling/
Tooling.cpp 51 clang::driver::Driver *CompilerDriver = new clang::driver::Driver(
54 CompilerDriver->setTitle("clang_based_tool");
55 return CompilerDriver;
  /art/compiler/sea_ir/code_gen/
code_gen_data.cc 39 art::CompilerDriver::InstructionSetToLLVMTarget(instruction_set,

Completed in 85 milliseconds

1 2