Searched refs:compiler_options_ (Results 1 - 17 of 17) sorted by relevance

/art/compiler/jit/
H A Djit_compiler.h43 return compiler_options_.get();
50 std::unique_ptr<CompilerOptions> compiler_options_; member in class:art::jit::JitCompiler
H A Djit_compiler.cc90 compiler_options_.reset(new CompilerOptions(
115 compiler_options_->ParseCompilerOption(argument, Usage);
152 compiler_options_.get(),
174 if (compiler_options_->GetGenerateDebugInfo()) {
/art/compiler/dex/
H A Dverification_results.cc32 : compiler_options_(compiler_options),
98 if (!compiler_options_->IsBytecodeCompilationEnabled()) {
102 if ((compiler_options_->GetCompilerFilter() != CompilerFilter::kEverything) &&
H A Dverification_results.h59 const CompilerOptions* const compiler_options_; member in class:art::VerificationResults
/art/compiler/
H A Delf_writer_quick.cc116 const CompilerOptions* const compiler_options_; member in class:art::FINAL
153 compiler_options_(compiler_options),
222 if (!method_infos.empty() && compiler_options_->GetGenerateMiniDebugInfo()) {
242 if (compiler_options_->GetGenerateDebugInfo()) {
246 if (compiler_options_->GetGenerateMiniDebugInfo()) {
260 if (compiler_options_->GetIncludePatchInformation()) {
H A Dcommon_compiler_test.cc176 compiler_driver_.reset(new CompilerDriver(compiler_options_.get(),
200 compiler_options_.reset(new CompilerOptions);
201 verification_results_.reset(new VerificationResults(compiler_options_.get()));
227 compiler_options_.reset();
H A Dcommon_compiler_test.h103 std::unique_ptr<CompilerOptions> compiler_options_; member in class:art::CommonCompilerTest
H A Doat_test.cc97 compiler_options_.reset(new CompilerOptions);
99 compiler_options_->ParseCompilerOption(option, Usage);
101 verification_results_.reset(new VerificationResults(compiler_options_.get()));
108 compiler_driver_.reset(new CompilerDriver(compiler_options_.get(),
H A Dimage_test.cc317 compiler_options_->SetInlineDepthLimit(CompilerOptions::kDefaultInlineDepthLimit);
318 compiler_options_->SetInlineMaxCodeUnits(CompilerOptions::kDefaultInlineMaxCodeUnits);
/art/compiler/linker/
H A Drelative_patcher_test.h44 : compiler_options_(),
45 verification_results_(&compiler_options_),
47 driver_(&compiler_options_,
264 CompilerOptions compiler_options_; member in class:art::linker::RelativePatcherTest
/art/dex2oat/
H A Ddex2oat.cc690 compiler_options_->debuggable_ = true;
834 if (compiler_options_->inline_depth_limit_ == CompilerOptions::kUnsetInlineDepthLimit) {
835 compiler_options_->inline_depth_limit_ =
836 (compiler_options_->compiler_filter_ == CompilerFilter::kSpace)
841 if (compiler_options_->inline_max_code_units_ == CompilerOptions::kUnsetInlineMaxCodeUnits) {
842 compiler_options_->inline_max_code_units_ =
843 (compiler_options_->compiler_filter_ == CompilerFilter::kSpace)
859 compiler_options_->implicit_null_checks_ = true;
860 compiler_options_->implicit_so_checks_ = true;
868 compiler_options_
2423 std::unique_ptr<CompilerOptions> compiler_options_; member in class:art::FINAL
[all...]
/art/runtime/
H A Druntime.h178 return compiler_options_;
182 compiler_options_.push_back(option);
711 std::vector<std::string> compiler_options_; member in class:art::verifier::Runtime
H A Druntime.cc977 compiler_options_ = runtime_options.ReleaseOrDefault(Opt::CompilerOptions);
/art/compiler/driver/
H A Dcompiler_driver.h149 return *compiler_options_;
629 const CompilerOptions* const compiler_options_; member in class:art::CompilerDriver
H A Dcompiler_driver.cc374 : compiler_options_(compiler_options),
406 DCHECK(compiler_options_ != nullptr);
896 const bool verification_enabled = compiler_options_->IsVerificationEnabled();
897 const bool never_verify = compiler_options_->NeverVerify();
898 const bool verify_only_profile = compiler_options_->VerifyOnlyProfile();
990 if (!compiler_options_->VerifyOnlyProfile()) {
1838 if (!compiler_options_->IsVerificationEnabled()) {
2898 compiler_options_->GetNoInlineFromDexFile() != nullptr &&
2899 ContainsElement(*compiler_options_->GetNoInlineFromDexFile(), inlined_from)) {
/art/compiler/optimizing/
H A Dcode_generator.h242 const CompilerOptions& GetCompilerOptions() const { return compiler_options_; }
519 compiler_options_(compiler_options),
619 const CompilerOptions& compiler_options_; member in class:art::CodeGenerator
H A Dcode_generator.cc1070 return compiler_options_.GetImplicitNullChecks() &&

Completed in 1021 milliseconds