Searched refs:compiler_options (Results 1 - 25 of 31) sorted by relevance

12

/art/compiler/
H A Delf_writer_quick.h33 const CompilerOptions* compiler_options,
H A Delf_writer_quick.cc28 #include "driver/compiler_options.h"
91 const CompilerOptions* compiler_options,
131 const CompilerOptions* compiler_options,
136 compiler_options,
141 compiler_options,
149 const CompilerOptions* compiler_options,
153 compiler_options_(compiler_options),
129 CreateElfWriterQuick(InstructionSet instruction_set, const InstructionSetFeatures* features, const CompilerOptions* compiler_options, File* elf_file) argument
147 ElfWriterQuick(InstructionSet instruction_set, const InstructionSetFeatures* features, const CompilerOptions* compiler_options, File* elf_file) argument
H A Doat_test.cc29 #include "driver/compiler_options.h"
92 const std::vector<std::string>& compiler_options,
98 for (const std::string& option : compiler_options) {
478 std::vector<std::string> compiler_options; local
479 compiler_options.push_back("--compiler-filter=verify-at-runtime");
480 SetupCompiler(compiler_kind, insn_set, compiler_options, /*out*/ &error_msg);
90 SetupCompiler(Compiler::Kind compiler_kind, InstructionSet insn_set, const std::vector<std::string>& compiler_options, std::string* error_msg) argument
H A DAndroid.mk32 driver/compiler_options.cc \
157 driver/compiler_options.h \
H A Doat_writer.cc36 #include "driver/compiler_options.h"
762 const CompilerOptions& compiler_options = writer_->compiler_driver_->GetCompilerOptions();
764 if (compiler_options.GenerateAnyDebugInfo() && code_size != 0) {
776 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
/art/compiler/optimizing/
H A Dbuilder.cc24 #include "driver/compiler_options.h"
46 const CompilerOptions& compiler_options = compiler_driver_->GetCompilerOptions(); local
47 CompilerFilter::Filter compiler_filter = compiler_options.GetCompilerFilter();
52 if (compiler_options.IsHugeMethod(code_item_.insns_size_in_code_units_)) {
61 if (compiler_options.IsLargeMethod(code_item_.insns_size_in_code_units_)
H A Dcodegen_test.cc42 #include "driver/compiler_options.h"
68 const CompilerOptions& compiler_options)
69 : arm::CodeGeneratorARM(graph, isa_features, compiler_options) {
88 const CompilerOptions& compiler_options)
89 : x86::CodeGeneratorX86(graph, isa_features, compiler_options) {
236 CompilerOptions compiler_options; local
240 TestCodeGeneratorARM codegenARM(graph, *features_arm.get(), compiler_options);
245 arm64::CodeGeneratorARM64 codegenARM64(graph, *features_arm64.get(), compiler_options);
250 x86::CodeGeneratorX86 codegenX86(graph, *features_x86.get(), compiler_options);
255 x86_64::CodeGeneratorX86_64 codegenX86_64(graph, *features_x86_64.get(), compiler_options);
66 TestCodeGeneratorARM(HGraph* graph, const ArmInstructionSetFeatures& isa_features, const CompilerOptions& compiler_options) argument
86 TestCodeGeneratorX86(HGraph* graph, const X86InstructionSetFeatures& isa_features, const CompilerOptions& compiler_options) argument
[all...]
H A Doptimizing_compiler.cc54 #include "driver/compiler_options.h"
406 const CompilerOptions& compiler_options = driver->GetCompilerOptions(); local
407 bool should_inline = (compiler_options.GetInlineDepthLimit() > 0)
408 && (compiler_options.GetInlineMaxCodeUnits() > 0);
650 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions(); local
651 if ((compiler_options.GetCompilerFilter() == CompilerFilter::kSpace)
940 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions(); local
941 if (compiler_options.GetGenerateDebugInfo()) {
953 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
H A Dcode_generator.cc559 const CompilerOptions& compiler_options,
569 compiler_options,
578 compiler_options,
587 compiler_options,
596 compiler_options,
605 compiler_options,
614 compiler_options,
556 Create(HGraph* graph, InstructionSet instruction_set, const InstructionSetFeatures& isa_features, const CompilerOptions& compiler_options, OptimizingCompilerStats* stats) argument
H A Dcode_generator.h26 #include "driver/compiler_options.h"
176 const CompilerOptions& compiler_options,
497 const CompilerOptions& compiler_options,
519 compiler_options_(compiler_options),
491 CodeGenerator(HGraph* graph, size_t number_of_core_registers, size_t number_of_fpu_registers, size_t number_of_register_pairs, uint32_t core_callee_save_mask, uint32_t fpu_callee_save_mask, const CompilerOptions& compiler_options, OptimizingCompilerStats* stats) argument
H A Dinliner.cc27 #include "driver/compiler_options.h"
58 const CompilerOptions& compiler_options = compiler_driver_->GetCompilerOptions(); local
59 if ((compiler_options.GetInlineDepthLimit() == 0)
60 || (compiler_options.GetInlineMaxCodeUnits() == 0)) {
H A Dcode_generator_mips.h22 #include "driver/compiler_options.h"
261 const CompilerOptions& compiler_options,
H A Dcode_generator_mips64.h22 #include "driver/compiler_options.h"
261 const CompilerOptions& compiler_options,
H A Dcode_generator_arm.h22 #include "driver/compiler_options.h"
301 const CompilerOptions& compiler_options,
H A Dcode_generator_arm64.h24 #include "driver/compiler_options.h"
343 const CompilerOptions& compiler_options,
H A Dcode_generator_x86.h23 #include "driver/compiler_options.h"
312 const CompilerOptions& compiler_options,
H A Dcode_generator_x86_64.h23 #include "driver/compiler_options.h"
294 const CompilerOptions& compiler_options,
/art/compiler/dex/
H A Dverification_results.h42 explicit VerificationResults(const CompilerOptions* compiler_options);
H A Dverification_results.cc23 #include "driver/compiler_options.h"
31 VerificationResults::VerificationResults(const CompilerOptions* compiler_options) argument
32 : compiler_options_(compiler_options),
/art/compiler/driver/
H A Dcompiled_method_storage_test.cc22 #include "compiler_options.h"
29 CompilerOptions compiler_options; local
30 VerificationResults verification_results(&compiler_options);
32 CompilerDriver driver(&compiler_options,
H A Dcompiler_driver.h89 CompilerDriver(const CompilerOptions* compiler_options,
H A Dcompiler_driver.cc47 #include "driver/compiler_options.h"
357 const CompilerOptions* compiler_options,
374 : compiler_options_(compiler_options),
411 if (compiler_options->VerifyOnlyProfile()) {
356 CompilerDriver( const CompilerOptions* compiler_options, VerificationResults* verification_results, DexFileToMethodInlinerMap* method_inliner_map, Compiler::Kind compiler_kind, InstructionSet instruction_set, const InstructionSetFeatures* instruction_set_features, bool boot_image, bool app_image, std::unordered_set<std::string>* image_classes, std::unordered_set<std::string>* compiled_classes, std::unordered_set<std::string>* compiled_methods, size_t thread_count, bool dump_stats, bool dump_passes, CumulativeLogger* timer, int swap_fd, const ProfileCompilationInfo* profile_compilation_info) argument
/art/dex2oat/
H A Ddex2oat_test.cc147 std::vector<std::string> compiler_options = runtime->GetCompilerOptions(); local
148 argv.insert(argv.end(), compiler_options.begin(), compiler_options.end());
/art/runtime/
H A Doat_file_assistant.cc780 std::vector<std::string> compiler_options = runtime->GetCompilerOptions(); local
781 argv.insert(argv.end(), compiler_options.begin(), compiler_options.end());
/art/runtime/gc/space/
H A Dimage_space.cc130 const std::vector<std::string>& compiler_options = Runtime::Current()->GetImageCompilerOptions(); local
131 for (size_t i = 0; i < compiler_options.size(); ++i) {
132 arg_vector.push_back(compiler_options[i].c_str());

Completed in 197 milliseconds

12