Home
last modified time | relevance | path

Searched refs:CompilerOptions (Results 1 – 25 of 52) sorted by relevance

123

/art/compiler/driver/
Dcompiler_options.cc23 CompilerOptions::CompilerOptions() in CompilerOptions() function in art::CompilerOptions
53 CompilerOptions::~CompilerOptions() { in ~CompilerOptions()
58 CompilerOptions::CompilerOptions(CompilerFilter::Filter compiler_filter, in CompilerOptions() function in art::CompilerOptions
110 void CompilerOptions::ParseHugeMethodMax(const StringPiece& option, UsageFn Usage) { in ParseHugeMethodMax()
114 void CompilerOptions::ParseLargeMethodMax(const StringPiece& option, UsageFn Usage) { in ParseLargeMethodMax()
118 void CompilerOptions::ParseSmallMethodMax(const StringPiece& option, UsageFn Usage) { in ParseSmallMethodMax()
122 void CompilerOptions::ParseTinyMethodMax(const StringPiece& option, UsageFn Usage) { in ParseTinyMethodMax()
126 void CompilerOptions::ParseNumDexMethods(const StringPiece& option, UsageFn Usage) { in ParseNumDexMethods()
130 void CompilerOptions::ParseInlineMaxCodeUnits(const StringPiece& option, UsageFn Usage) { in ParseInlineMaxCodeUnits()
134 void CompilerOptions::ParseDumpInitFailures(const StringPiece& option, in ParseDumpInitFailures()
[all …]
Dcompiler_options.h38 class CompilerOptions FINAL {
52 CompilerOptions();
53 ~CompilerOptions();
55 CompilerOptions(CompilerFilter::Filter compiler_filter,
329 DISALLOW_COPY_AND_ASSIGN(CompilerOptions);
Dcompiler_driver.h61 class CompilerOptions; variable
90 CompilerDriver(const CompilerOptions* compiler_options,
148 const CompilerOptions& GetCompilerOptions() const { in GetCompilerOptions()
459 const CompilerOptions* const compiler_options_;
Dcompiled_method_storage_test.cc28 CompilerOptions compiler_options; in TEST()
/art/compiler/jit/
Djit_compiler.cc93 compiler_options_.reset(new CompilerOptions( in JitCompiler()
95 CompilerOptions::kDefaultHugeMethodThreshold, in JitCompiler()
96 CompilerOptions::kDefaultLargeMethodThreshold, in JitCompiler()
97 CompilerOptions::kDefaultSmallMethodThreshold, in JitCompiler()
98 CompilerOptions::kDefaultTinyMethodThreshold, in JitCompiler()
99 CompilerOptions::kDefaultNumDexMethodsThreshold, in JitCompiler()
100 CompilerOptions::kDefaultInlineMaxCodeUnits, in JitCompiler()
102 CompilerOptions::kDefaultTopKProfileThreshold, in JitCompiler()
104 CompilerOptions::kDefaultGenerateDebugInfo, in JitCompiler()
Djit_compiler.h42 CompilerOptions* GetCompilerOptions() const { in GetCompilerOptions()
50 std::unique_ptr<CompilerOptions> compiler_options_;
/art/compiler/optimizing/
Dcodegen_test_utils.h64 typedef CodeGenerator* (*CreateCodegenFn)(HGraph*, const CompilerOptions&);
72 CodeGenerator* CreateCodeGenerator(HGraph* graph, const CompilerOptions& compiler_options) { in CreateCodeGenerator()
91 const CompilerOptions& compiler_options) in TestCodeGeneratorARM()
111 const CompilerOptions& compiler_options) in TestCodeGeneratorARMVIXL()
131 const CompilerOptions& compiler_options) in TestCodeGeneratorX86()
285 CompilerOptions compiler_options; in RunCode()
291 CodeGenerator* create_codegen_arm(HGraph* graph, const CompilerOptions& compiler_options) { in create_codegen_arm()
299 CodeGenerator* create_codegen_arm_vixl32(HGraph* graph, const CompilerOptions& compiler_options) { in create_codegen_arm_vixl32()
308 CodeGenerator* create_codegen_arm64(HGraph* graph, const CompilerOptions& compiler_options) { in create_codegen_arm64()
318 CodeGenerator* create_codegen_x86(HGraph* graph, const CompilerOptions& compiler_options) { in create_codegen_x86()
[all …]
Dregister_allocator_test.cc63 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in Check()
82 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F()
321 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in Loop3()
358 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F()
413 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in DeadPhi()
441 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F()
571 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in PhiHint()
589 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in PhiHint()
609 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in PhiHint()
629 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in PhiHint()
[all …]
Dlive_ranges_test.cc67 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F()
115 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F()
166 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F()
245 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F()
324 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F()
402 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TEST_F()
Dbuilder.cc46 const CompilerOptions& compiler_options = compiler_driver_->GetCompilerOptions(); in SkipCompilation()
Ddead_code_elimination_test.cc46 x86::CodeGeneratorX86 codegenX86(graph, *features_x86.get(), CompilerOptions()); in TestCode()
Dcode_generator.h62 class CompilerOptions; variable
187 const CompilerOptions& compiler_options,
254 const CompilerOptions& GetCompilerOptions() const { return compiler_options_; } in GetCompilerOptions()
599 const CompilerOptions& compiler_options, in CodeGenerator()
740 const CompilerOptions& compiler_options_;
Dlinearize_test.cc44 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TestCode()
Dcodegen_test.cc723 arm::CodeGeneratorARMVIXL codegen(graph, *features.get(), CompilerOptions()); in TEST_F()
749 arm64::CodeGeneratorARM64 codegen(graph, *features.get(), CompilerOptions()); in TEST_F()
780 arm64::CodeGeneratorARM64 codegen(graph, *features.get(), CompilerOptions()); in TEST_F()
853 mips::CodeGeneratorMIPS codegenMIPS(graph, *features_mips.get(), CompilerOptions()); in TEST_F()
Dliveness_test.cc54 x86::CodeGeneratorX86 codegen(graph, *features_x86.get(), CompilerOptions()); in TestCode()
Demit_swap_mips_test.cc36 CompilerOptions()); in SetUp()
Dssa_liveness_analysis_test.cc63 CompilerOptions compiler_options_;
Doptimizing_cfi_test.cc152 CompilerOptions opts_;
/art/compiler/
Delf_writer_quick.h28 class CompilerOptions; variable
33 const CompilerOptions* compiler_options,
Dcommon_compiler_test.h35 class CompilerOptions; variable
106 std::unique_ptr<CompilerOptions> compiler_options_;
Delf_writer_quick.cc92 const CompilerOptions* compiler_options,
119 const CompilerOptions* const compiler_options_;
136 const CompilerOptions* compiler_options, in CreateElfWriterQuick()
154 const CompilerOptions* compiler_options, in ElfWriterQuick()
/art/compiler/dex/
Dverification_results.h38 class CompilerOptions; variable
44 explicit VerificationResults(const CompilerOptions* compiler_options);
73 const CompilerOptions* const compiler_options_;
Dverification_results.cc32 VerificationResults::VerificationResults(const CompilerOptions* compiler_options) in VerificationResults()
/art/dex2oat/
Ddex2oat.cc295 UsageError(" Example: --huge-method-max=%d", CompilerOptions::kDefaultHugeMethodThreshold); in Usage()
296 UsageError(" Default: %d", CompilerOptions::kDefaultHugeMethodThreshold); in Usage()
300 UsageError(" Example: --large-method-max=%d", CompilerOptions::kDefaultLargeMethodThreshold); in Usage()
301 UsageError(" Default: %d", CompilerOptions::kDefaultLargeMethodThreshold); in Usage()
305 UsageError(" Example: --small-method-max=%d", CompilerOptions::kDefaultSmallMethodThreshold); in Usage()
306 UsageError(" Default: %d", CompilerOptions::kDefaultSmallMethodThreshold); in Usage()
310 UsageError(" Example: --tiny-method-max=%d", CompilerOptions::kDefaultTinyMethodThreshold); in Usage()
311 UsageError(" Default: %d", CompilerOptions::kDefaultTinyMethodThreshold); in Usage()
317 UsageError(" Example: --num-dex-method=%d", CompilerOptions::kDefaultNumDexMethodsThreshold); in Usage()
318 UsageError(" Default: %d", CompilerOptions::kDefaultNumDexMethodsThreshold); in Usage()
[all …]
/art/cmdline/
Dcmdline_parser_test.cc442 EXPECT_SINGLE_PARSE_VALUE(opt, "-Xcompiler-option hello", M::CompilerOptions); in TEST_F()
449 M::CompilerOptions); in TEST_F()
456 M::CompilerOptions); in TEST_F()

123