Home
last modified time | relevance | path

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

12

/art/compiler/optimizing/
Dcodegen_test.cc62 const CompilerOptions& compiler_options) in TestCodeGeneratorARM() argument
63 : arm::CodeGeneratorARM(graph, isa_features, compiler_options) { in TestCodeGeneratorARM()
82 const CompilerOptions& compiler_options) in TestCodeGeneratorX86() argument
83 : x86::CodeGeneratorX86(graph, isa_features, compiler_options) { in TestCodeGeneratorX86()
145 CompilerOptions compiler_options; in RunCodeBaseline() local
148 TestCodeGeneratorX86 codegenX86(graph, *features_x86.get(), compiler_options); in RunCodeBaseline()
158 TestCodeGeneratorARM codegenARM(graph, *features_arm.get(), compiler_options); in RunCodeBaseline()
166 x86_64::CodeGeneratorX86_64 codegenX86_64(graph, *features_x86_64.get(), compiler_options); in RunCodeBaseline()
174 arm64::CodeGeneratorARM64 codegenARM64(graph, *features_arm64.get(), compiler_options); in RunCodeBaseline()
182 mips64::CodeGeneratorMIPS64 codegenMIPS64(graph, *features_mips64.get(), compiler_options); in RunCodeBaseline()
[all …]
Dinliner.cc42 const CompilerOptions& compiler_options = compiler_driver_->GetCompilerOptions(); in Run() local
43 if ((compiler_options.GetInlineDepthLimit() == 0) in Run()
44 || (compiler_options.GetInlineMaxCodeUnits() == 0)) { in Run()
Dcode_generator.h136 const CompilerOptions& compiler_options);
341 const CompilerOptions& compiler_options) in CodeGenerator() argument
356 compiler_options_(compiler_options), in CodeGenerator()
Dcode_generator.cc448 const CompilerOptions& compiler_options) { in Create() argument
454 compiler_options); in Create()
459 compiler_options); in Create()
466 compiler_options); in Create()
471 compiler_options); in Create()
476 compiler_options); in Create()
Doptimizing_compiler.cc519 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions(); in TryCompile() local
520 if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace) in TryCompile()
Dcode_generator_arm.h206 const CompilerOptions& compiler_options);
Dcode_generator_mips64.h209 const CompilerOptions& compiler_options);
Dcode_generator_x86.h199 const CompilerOptions& compiler_options);
Dcode_generator_x86_64.h200 const CompilerOptions& compiler_options);
Dcode_generator_arm64.h226 const CompilerOptions& compiler_options);
Dbuilder.cc235 const CompilerOptions& compiler_options = compiler_driver_->GetCompilerOptions(); in SkipCompilation() local
236 CompilerOptions::CompilerFilter compiler_filter = compiler_options.GetCompilerFilter(); in SkipCompilation()
241 if (compiler_options.IsHugeMethod(code_item.insns_size_in_code_units_)) { in SkipCompilation()
250 if (compiler_options.IsLargeMethod(code_item.insns_size_in_code_units_) in SkipCompilation()
Dcode_generator_arm64.cc403 const CompilerOptions& compiler_options) in CodeGeneratorARM64() argument
410 compiler_options), in CodeGeneratorARM64()
Dcode_generator_mips64.cc397 const CompilerOptions& compiler_options) in CodeGeneratorMIPS64() argument
406 compiler_options), in CodeGeneratorMIPS64()
Dcode_generator_arm.cc379 const CompilerOptions& compiler_options) in CodeGeneratorARM() argument
388 compiler_options), in CodeGeneratorARM()
Dcode_generator_x86.cc372 const CompilerOptions& compiler_options) in CodeGeneratorX86() argument
381 compiler_options), in CodeGeneratorX86()
/art/compiler/dex/
Dverification_results.cc31 VerificationResults::VerificationResults(const CompilerOptions* compiler_options) in VerificationResults() argument
32 : compiler_options_(compiler_options), in VerificationResults()
37 UNUSED(compiler_options); in VerificationResults()
Dmir_analysis.cc1108 const CompilerOptions& compiler_options = cu_->compiler_driver->GetCompilerOptions(); in SkipCompilation() local
1109 CompilerOptions::CompilerFilter compiler_filter = compiler_options.GetCompilerFilter(); in SkipCompilation()
1120 DCHECK(compiler_options.IsCompilationEnabled()); in SkipCompilation()
1127 small_cutoff = compiler_options.GetSmallMethodThreshold(); in SkipCompilation()
1128 default_cutoff = compiler_options.GetLargeMethodThreshold(); in SkipCompilation()
1131 small_cutoff = compiler_options.GetTinyMethodThreshold(); in SkipCompilation()
1132 default_cutoff = compiler_options.GetSmallMethodThreshold(); in SkipCompilation()
1136 small_cutoff = compiler_options.GetHugeMethodThreshold(); in SkipCompilation()
1137 default_cutoff = compiler_options.GetHugeMethodThreshold(); in SkipCompilation()
1154 if (compiler_options.IsHugeMethod(GetNumDalvikInsns())) { in SkipCompilation()
[all …]
Dverification_results.h42 explicit VerificationResults(const CompilerOptions* compiler_options);
/art/compiler/dex/quick/
Dquick_cfi_test.cc52 CompilerOptions compiler_options( in TestImpl() local
73 VerificationResults verification_results(&compiler_options); in TestImpl()
78 CompilerDriver driver(&compiler_options, &verification_results, &method_inliner_map, in TestImpl()
Dquick_compiler.cc834 const auto& compiler_options = driver->GetCompilerOptions(); in QuickCompiler() local
835 auto* pass_manager_options = compiler_options.GetPassManagerOptions(); in QuickCompiler()
/art/compiler/
DAndroid.mk82 driver/compiler_options.cc \
177 driver/compiler_options.h \
/art/runtime/
Doat_file_assistant.cc735 std::vector<std::string> compiler_options = runtime->GetCompilerOptions(); in CopyProfileFile() local
736 argv.insert(argv.end(), compiler_options.begin(), compiler_options.end()); in CopyProfileFile()
/art/runtime/gc/space/
Dimage_space.cc224 const std::vector<std::string>& compiler_options = Runtime::Current()->GetImageCompilerOptions(); in GenerateImage() local
225 for (size_t i = 0; i < compiler_options.size(); ++i) { in GenerateImage()
226 arg_vector.push_back(compiler_options[i].c_str()); in GenerateImage()
/art/compiler/driver/
Dcompiler_driver.h99 explicit CompilerDriver(const CompilerOptions* compiler_options,
Dcompiler_driver.cc347 CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options, in CompilerDriver() argument
361 profile_present_(false), compiler_options_(compiler_options), in CompilerDriver()

12