Home
last modified time | relevance | path

Searched refs:compiler_options_ (Results 1 – 13 of 13) sorted by relevance

/art/compiler/dex/
Dverification_results.cc33 : compiler_options_(compiler_options), in VerificationResults()
112 bool use_sea = compiler_options_->GetSeaIrMode(); in IsCandidateForCompilation()
119 if (!compiler_options_->IsCompilationEnabled()) { in IsCandidateForCompilation()
Dverification_results.h60 const CompilerOptions* const compiler_options_;
/art/compiler/
Doat_test.cc98 compiler_options_.reset(new CompilerOptions); in TEST_F()
99 verification_results_.reset(new VerificationResults(compiler_options_.get())); in TEST_F()
104 compiler_driver_.reset(new CompilerDriver(compiler_options_.get(), in TEST_F()
Dcommon_compiler_test.cc314 compiler_driver_.reset(new CompilerDriver(compiler_options_.get(), in SetUp()
329 compiler_options_.reset(new CompilerOptions); in SetUpRuntimeOptions()
330 verification_results_.reset(new VerificationResults(compiler_options_.get())); in SetUpRuntimeOptions()
343 compiler_options_.reset(); in TearDown()
Dcommon_compiler_test.h78 std::unique_ptr<CompilerOptions> compiler_options_; variable
Dimage_test.cc73 compiler_options_->SetCompilerFilter(CompilerOptions::kInterpretOnly); in TEST_F()
/art/runtime/
Dparsed_options.h94 std::vector<std::string> compiler_options_; variable
Druntime.h133 return compiler_options_; in GetCompilerOptions()
137 compiler_options_.push_back(option); in AddCompilerOption()
544 std::vector<std::string> compiler_options_; variable
Druntime.cc705 compiler_options_ = options->compiler_options_; in Init()
Dparsed_options.cc609 compiler_options_.push_back(options[i].first); in Parse()
/art/compiler/driver/
Dcompiler_driver.h143 return *compiler_options_; in GetCompilerOptions()
425 return compiler_options_->GetIncludeDebugSymbols(); in DidIncludeDebugSymbols()
775 const CompilerOptions* const compiler_options_; variable
Dcompiler_driver.cc344 profile_present_(false), compiler_options_(compiler_options), in CompilerDriver()
375 DCHECK(compiler_options_ != nullptr); in CompilerDriver()
613 if (!compiler_options_->IsVerificationEnabled()) { in PreCompile()
1351 if (!compiler_options_->IsVerificationEnabled()) { in IsSafeCast()
2105 if (!compiler_options_->IsCompilationEnabled() && in CompileMethod()
2286 <= compiler_options_->GetTopKProfileThreshold(); in SkipCompilation()
2291 << " (topKThreshold=" << compiler_options_->GetTopKProfileThreshold() << ")"; in SkipCompilation()
2294 << " because it's not part of leading " << compiler_options_->GetTopKProfileThreshold() in SkipCompilation()
/art/dex2oat/
Ddex2oat.cc390 std::unique_ptr<CompilerDriver> driver(new CompilerDriver(compiler_options_, in CreateOatFile()
476 compiler_options_->GetCompilePic())) { in CreateImageFile()
485 if (!compiler_options_->GetCompilePic()) { in CreateImageFile()
515 : compiler_options_(compiler_options), in Dex2Oat()
579 const CompilerOptions* const compiler_options_; member in art::Dex2Oat