/art/compiler/optimizing/ |
D | codegen_test.cc | 62 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 …]
|
D | inliner.cc | 42 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()
|
D | code_generator.h | 136 const CompilerOptions& compiler_options); 341 const CompilerOptions& compiler_options) in CodeGenerator() argument 356 compiler_options_(compiler_options), in CodeGenerator()
|
D | code_generator.cc | 448 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()
|
D | optimizing_compiler.cc | 519 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions(); in TryCompile() local 520 if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace) in TryCompile()
|
D | code_generator_arm.h | 206 const CompilerOptions& compiler_options);
|
D | code_generator_mips64.h | 209 const CompilerOptions& compiler_options);
|
D | code_generator_x86.h | 199 const CompilerOptions& compiler_options);
|
D | code_generator_x86_64.h | 200 const CompilerOptions& compiler_options);
|
D | code_generator_arm64.h | 226 const CompilerOptions& compiler_options);
|
D | builder.cc | 235 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()
|
D | code_generator_arm64.cc | 403 const CompilerOptions& compiler_options) in CodeGeneratorARM64() argument 410 compiler_options), in CodeGeneratorARM64()
|
D | code_generator_mips64.cc | 397 const CompilerOptions& compiler_options) in CodeGeneratorMIPS64() argument 406 compiler_options), in CodeGeneratorMIPS64()
|
D | code_generator_arm.cc | 379 const CompilerOptions& compiler_options) in CodeGeneratorARM() argument 388 compiler_options), in CodeGeneratorARM()
|
D | code_generator_x86.cc | 372 const CompilerOptions& compiler_options) in CodeGeneratorX86() argument 381 compiler_options), in CodeGeneratorX86()
|
/art/compiler/dex/ |
D | verification_results.cc | 31 VerificationResults::VerificationResults(const CompilerOptions* compiler_options) in VerificationResults() argument 32 : compiler_options_(compiler_options), in VerificationResults() 37 UNUSED(compiler_options); in VerificationResults()
|
D | mir_analysis.cc | 1108 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 …]
|
D | verification_results.h | 42 explicit VerificationResults(const CompilerOptions* compiler_options);
|
/art/compiler/dex/quick/ |
D | quick_cfi_test.cc | 52 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()
|
D | quick_compiler.cc | 834 const auto& compiler_options = driver->GetCompilerOptions(); in QuickCompiler() local 835 auto* pass_manager_options = compiler_options.GetPassManagerOptions(); in QuickCompiler()
|
/art/compiler/ |
D | Android.mk | 82 driver/compiler_options.cc \ 177 driver/compiler_options.h \
|
/art/runtime/ |
D | oat_file_assistant.cc | 735 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/ |
D | image_space.cc | 224 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/ |
D | compiler_driver.h | 99 explicit CompilerDriver(const CompilerOptions* compiler_options,
|
D | compiler_driver.cc | 347 CompilerDriver::CompilerDriver(const CompilerOptions* compiler_options, in CompilerDriver() argument 361 profile_present_(false), compiler_options_(compiler_options), in CompilerDriver()
|