Lines Matching refs:compiler_options

256     const CompilerOptions* compiler_options,  in CompilerDriver()  argument
260 : compiler_options_(compiler_options), in CompilerDriver()
272 compiler_.reset(Compiler::Create(*compiler_options, &compiled_method_storage_)); in CompilerDriver()
415 static bool ShouldCompileBasedOnProfile(const CompilerOptions& compiler_options, in ShouldCompileBasedOnProfile() argument
420 if (!CompilerFilter::DependsOnProfile(compiler_options.GetCompilerFilter())) { in ShouldCompileBasedOnProfile()
424 DCHECK(compiler_options.GetProfileCompilationInfo() == nullptr || in ShouldCompileBasedOnProfile()
425 compiler_options.GetProfileCompilationInfo()->FindDexFile(*method_ref.dex_file) == in ShouldCompileBasedOnProfile()
429 DCHECK(CompilerFilter::DependsOnProfile(compiler_options.GetCompilerFilter())); in ShouldCompileBasedOnProfile()
431 compiler_options.GetProfileCompilationInfo(); in ShouldCompileBasedOnProfile()
483 const CompilerOptions& compiler_options = driver->GetCompilerOptions(); in CompileMethodQuick() local
484 if (!compiler_options.IsJniCompilationEnabled() && in CompileMethodQuick()
485 InstructionSetHasGenericJniStub(compiler_options.GetInstructionSet())) { in CompileMethodQuick()
511 const CompilerOptions& compiler_options = driver->GetCompilerOptions(); in CompileMethodQuick() local
513 bool compile = (compiler_options.GetCompilerFilter() == CompilerFilter::kEverything) || in CompileMethodQuick()
516 compile = compile && ShouldCompileBasedOnProfile(compiler_options, profile_index, method_ref); in CompileMethodQuick()
527 ProfileMethodsCheck check_type = compiler_options.CheckProfiledMethodsCompiled(); in CompileMethodQuick()
529 DCHECK(ShouldCompileBasedOnProfile(compiler_options, profile_index, method_ref)); in CompileMethodQuick()
2227 const CompilerOptions& compiler_options = manager_->GetCompiler()->GetCompilerOptions(); in TryInitializeClass() local
2228 const bool is_boot_image = compiler_options.IsBootImage(); in TryInitializeClass()
2229 const bool is_boot_image_extension = compiler_options.IsBootImageExtension(); in TryInitializeClass()
2230 const bool is_app_image = compiler_options.IsAppImage(); in TryInitializeClass()
2281 bool have_profile = (compiler_options.GetProfileCompilationInfo() != nullptr) && in TryInitializeClass()
2282 !compiler_options.GetProfileCompilationInfo()->IsEmpty(); in TryInitializeClass()
2288 compiler_options.IsImageClass(descriptor) && in TryInitializeClass()
2307 !compiler_options.GetDebuggable() && in TryInitializeClass()
2308 (compiler_options.InitializeAppImageClasses() || in TryInitializeClass()
2417 !compiler_options.IsPreloadedClass(PrettyDescriptor(descriptor))) { in TryInitializeClass()
2421 if (compiler_options.CompileArtTest()) { in TryInitializeClass()
2667 const CompilerOptions& compiler_options = driver->GetCompilerOptions(); in CompileDexFile() local
2668 bool have_profile = (compiler_options.GetProfileCompilationInfo() != nullptr); in CompileDexFile()
2669 bool use_profile = CompilerFilter::DependsOnProfile(compiler_options.GetCompilerFilter()); in CompileDexFile()
2671 ? compiler_options.GetProfileCompilationInfo()->FindDexFile(dex_file) in CompileDexFile()