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

12

/art/compiler/dex/
H A Dverification_results.cc23 #include "driver/compiler_options.h"
31 VerificationResults::VerificationResults(const CompilerOptions* compiler_options) argument
32 : compiler_options_(compiler_options),
37 UNUSED(compiler_options);
H A Dverification_results.h42 explicit VerificationResults(const CompilerOptions* compiler_options);
H A Dmir_analysis.cc31 #include "driver/compiler_options.h"
1108 const CompilerOptions& compiler_options = cu_->compiler_driver->GetCompilerOptions(); local
1109 CompilerOptions::CompilerFilter compiler_filter = compiler_options.GetCompilerFilter();
1120 DCHECK(compiler_options.IsCompilationEnabled());
1127 small_cutoff = compiler_options.GetSmallMethodThreshold();
1128 default_cutoff = compiler_options.GetLargeMethodThreshold();
1131 small_cutoff = compiler_options.GetTinyMethodThreshold();
1132 default_cutoff = compiler_options.GetSmallMethodThreshold();
1136 small_cutoff = compiler_options.GetHugeMethodThreshold();
1137 default_cutoff = compiler_options
[all...]
/art/compiler/dex/quick/
H A Dquick_cfi_test.cc31 #include "driver/compiler_options.h"
52 CompilerOptions compiler_options(
73 VerificationResults verification_results(&compiler_options);
78 CompilerDriver driver(&compiler_options, &verification_results, &method_inliner_map,
H A Dquick_compiler.cc38 #include "driver/compiler_options.h"
834 const auto& compiler_options = driver->GetCompilerOptions(); local
835 auto* pass_manager_options = compiler_options.GetPassManagerOptions();
/art/compiler/optimizing/
H A Dcodegen_test.cc38 #include "driver/compiler_options.h"
62 const CompilerOptions& compiler_options)
63 : arm::CodeGeneratorARM(graph, isa_features, compiler_options) {
82 const CompilerOptions& compiler_options)
83 : x86::CodeGeneratorX86(graph, isa_features, compiler_options) {
145 CompilerOptions compiler_options; local
148 TestCodeGeneratorX86 codegenX86(graph, *features_x86.get(), compiler_options);
158 TestCodeGeneratorARM codegenARM(graph, *features_arm.get(), compiler_options);
166 x86_64::CodeGeneratorX86_64 codegenX86_64(graph, *features_x86_64.get(), compiler_options);
174 arm64::CodeGeneratorARM64 codegenARM64(graph, *features_arm64.get(), compiler_options);
60 TestCodeGeneratorARM(HGraph* graph, const ArmInstructionSetFeatures& isa_features, const CompilerOptions& compiler_options) argument
80 TestCodeGeneratorX86(HGraph* graph, const X86InstructionSetFeatures& isa_features, const CompilerOptions& compiler_options) argument
216 CompilerOptions compiler_options; local
[all...]
H A Dinliner.cc25 #include "driver/compiler_options.h"
42 const CompilerOptions& compiler_options = compiler_driver_->GetCompilerOptions(); local
43 if ((compiler_options.GetInlineDepthLimit() == 0)
44 || (compiler_options.GetInlineMaxCodeUnits() == 0)) {
H A Dcode_generator.h23 #include "driver/compiler_options.h"
136 const CompilerOptions& compiler_options);
341 const CompilerOptions& compiler_options)
356 compiler_options_(compiler_options),
335 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) argument
H A Dcode_generator.cc448 const CompilerOptions& compiler_options) {
454 compiler_options);
459 compiler_options);
466 compiler_options);
471 compiler_options);
476 compiler_options);
445 Create(HGraph* graph, InstructionSet instruction_set, const InstructionSetFeatures& isa_features, const CompilerOptions& compiler_options) argument
H A Doptimizing_compiler.cc38 #include "driver/compiler_options.h"
519 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions(); local
520 if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace)
H A Dcode_generator_arm.h22 #include "driver/compiler_options.h"
206 const CompilerOptions& compiler_options);
H A Dcode_generator_mips64.h22 #include "driver/compiler_options.h"
209 const CompilerOptions& compiler_options);
H A Dcode_generator_x86.h22 #include "driver/compiler_options.h"
199 const CompilerOptions& compiler_options);
H A Dcode_generator_x86_64.h22 #include "driver/compiler_options.h"
200 const CompilerOptions& compiler_options);
H A Dcode_generator_arm64.h22 #include "driver/compiler_options.h"
226 const CompilerOptions& compiler_options);
H A Dbuilder.cc27 #include "driver/compiler_options.h"
235 const CompilerOptions& compiler_options = compiler_driver_->GetCompilerOptions(); local
236 CompilerOptions::CompilerFilter compiler_filter = compiler_options.GetCompilerFilter();
241 if (compiler_options.IsHugeMethod(code_item.insns_size_in_code_units_)) {
250 if (compiler_options.IsLargeMethod(code_item.insns_size_in_code_units_)
H A Dcode_generator_arm64.cc403 const CompilerOptions& compiler_options)
410 compiler_options),
401 CodeGeneratorARM64(HGraph* graph, const Arm64InstructionSetFeatures& isa_features, const CompilerOptions& compiler_options) argument
H A Dcode_generator_mips64.cc397 const CompilerOptions& compiler_options)
406 compiler_options),
395 CodeGeneratorMIPS64(HGraph* graph, const Mips64InstructionSetFeatures& isa_features, const CompilerOptions& compiler_options) argument
H A Dcode_generator_arm.cc379 const CompilerOptions& compiler_options)
388 compiler_options),
377 CodeGeneratorARM(HGraph* graph, const ArmInstructionSetFeatures& isa_features, const CompilerOptions& compiler_options) argument
H A Dcode_generator_x86.cc372 const CompilerOptions& compiler_options)
381 compiler_options),
370 CodeGeneratorX86(HGraph* graph, const X86InstructionSetFeatures& isa_features, const CompilerOptions& compiler_options) argument
/art/compiler/
H A DAndroid.mk82 driver/compiler_options.cc \
177 driver/compiler_options.h \
/art/runtime/gc/space/
H A Dimage_space.cc224 const std::vector<std::string>& compiler_options = Runtime::Current()->GetImageCompilerOptions(); local
225 for (size_t i = 0; i < compiler_options.size(); ++i) {
226 arg_vector.push_back(compiler_options[i].c_str());
/art/runtime/
H A Doat_file_assistant.cc735 std::vector<std::string> compiler_options = runtime->GetCompilerOptions(); local
736 argv.insert(argv.end(), compiler_options.begin(), compiler_options.end());
/art/compiler/driver/
H A Dcompiler_driver.h99 explicit CompilerDriver(const CompilerOptions* compiler_options,
H A Dcompiler_driver.cc46 #include "driver/compiler_options.h"
347 CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options, argument
361 profile_present_(false), compiler_options_(compiler_options),

Completed in 6177 milliseconds

12