/art/compiler/llvm/ |
compiler_llvm.h | 66 return compiler_driver_; 87 CompilerDriver* const compiler_driver_; member in class:art::llvm::CompilerLLVM
|
compiler_llvm.cc | 110 : compiler_driver_(driver), insn_set_(insn_set), 139 cunit->SetCompilerDriver(compiler_driver_); 141 CompileOneMethod(*compiler_driver_, 156 return new CompiledMethod(*compiler_driver_, compiler_driver_->GetInstructionSet(), 167 new JniCompiler(cunit.get(), *compiler_driver_, dex_compilation_unit));
|
/art/compiler/ |
elf_writer.h | 60 const CompilerDriver* compiler_driver_; member in class:art::ElfWriter
|
image_test.cc | 57 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings); 61 0, 0, "", compiler_driver_.get()); 62 bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(), 77 ImageWriter writer(*compiler_driver_.get()); 103 ASSERT_TRUE(compiler_driver_->GetImageClasses() != NULL); 104 CompilerDriver::DescriptorSet image_classes(*compiler_driver_->GetImageClasses()); 107 compiler_driver_.reset();
|
elf_writer.cc | 35 : compiler_driver_(&driver), elf_file_(elf_file) {}
|
oat_test.cc | 36 compiler_driver_->GetCompiledMethod(MethodReference(dex_file, 78 compiler_driver_.reset(new CompilerDriver(compiler_backend, insn_set, false, NULL, 2, true)); 82 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings); 91 compiler_driver_.get()); 92 bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(), 101 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings);
|
compiled_method.cc | 24 : compiler_driver_(compiler_driver), instruction_set_(instruction_set), code_(nullptr) { 30 : compiler_driver_(compiler_driver), instruction_set_(instruction_set), symbol_(symbol) { 46 code_ = compiler_driver_->DeduplicateCode(code);
|
oat_writer.cc | 43 : compiler_driver_(compiler), 95 oat_header_ = new OatHeader(compiler_driver_->GetInstructionSet(), 154 CompiledClass* compiled_class = compiler_driver_->GetCompiledClass(class_ref); 180 if (compiler_driver_->IsImage()) { 181 InstructionSet instruction_set = compiler_driver_->GetInstructionSet(); 186 field.reset(compiler_driver_->Create ## fn_name()); \ 296 compiler_driver_->GetCompiledMethod(MethodReference(dex_file, method_idx)); 362 CompiledClass* compiled_class = compiler_driver_->GetCompiledClass(class_ref); 398 if (compiler_driver_->IsImage()) { 552 if (compiler_driver_->IsImage()) [all...] |
elf_writer_mclinker.cc | 101 CompilerDriver::InstructionSetToLLVMTarget(compiler_driver_->GetInstructionSet(), 127 if (compiler_driver_->GetInstructionSet() == kMips) { 245 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file, method_idx)); 357 if (compiler_driver_->IsImage()) { 366 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file, method_idx));
|
compiled_method.h | 82 CompilerDriver* compiler_driver_; member in class:art::CompiledCode
|
image_writer.h | 41 : compiler_driver_(compiler_driver), oat_file_(NULL), image_end_(0), image_begin_(NULL), 180 const CompilerDriver& compiler_driver_; member in class:art::ImageWriter
|
image_writer.cc | 244 return compiler_driver_.IsImageClass(ClassHelper(klass).GetDescriptor()); 253 if (compiler_driver_.GetImageClasses() == NULL) { 306 if (compiler_driver_.GetImageClasses() == NULL) { 335 CompilerDriver::DescriptorSet* image_classes = compiler_driver_.GetImageClasses(); 676 const Patches& code_to_patch = compiler_driver_.GetCodeToPatch(); 686 const Patches& methods_to_patch = compiler_driver_.GetMethodsToPatch();
|
oat_writer.h | 167 const CompilerDriver* const compiler_driver_; member in class:art::OatWriter
|
elf_writer_quick.cc | 307 switch (compiler_driver_->GetInstructionSet()) { 329 LOG(FATAL) << "Unknown instruction set: " << compiler_driver_->GetInstructionSet();
|
/art/runtime/ |
common_test.h | 194 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file, 345 compiler_driver_.reset(new CompilerDriver(compiler_backend, instruction_set, 350 compiler_driver_->SetSupportBootImageFixup(false); 391 compiler_driver_.reset(); 475 compiler_driver_->CompileOne(method, timings); 528 UniquePtr<CompilerDriver> compiler_driver_; member in class:art::CommonTest
|
/art/compiler/driver/ |
compiler_driver_test.cc | 41 compiler_driver_->CompileAll(class_loader,
|