• Home
  • Raw
  • Download

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()
417 static bool ShouldCompileBasedOnProfile(const CompilerOptions& compiler_options, in ShouldCompileBasedOnProfile() argument
422 if (!CompilerFilter::DependsOnProfile(compiler_options.GetCompilerFilter())) { in ShouldCompileBasedOnProfile()
426 DCHECK(compiler_options.GetProfileCompilationInfo() == nullptr || in ShouldCompileBasedOnProfile()
427 compiler_options.GetProfileCompilationInfo()->FindDexFile(*method_ref.dex_file) == in ShouldCompileBasedOnProfile()
431 DCHECK(CompilerFilter::DependsOnProfile(compiler_options.GetCompilerFilter())); in ShouldCompileBasedOnProfile()
433 compiler_options.GetProfileCompilationInfo(); in ShouldCompileBasedOnProfile()
487 const CompilerOptions& compiler_options = driver->GetCompilerOptions(); in CompileMethodQuick() local
488 if (!compiler_options.IsJniCompilationEnabled() && in CompileMethodQuick()
489 InstructionSetHasGenericJniStub(compiler_options.GetInstructionSet())) { in CompileMethodQuick()
515 const CompilerOptions& compiler_options = driver->GetCompilerOptions(); in CompileMethodQuick() local
517 bool compile = (compiler_options.GetCompilerFilter() == CompilerFilter::kEverything) || in CompileMethodQuick()
520 compile = compile && ShouldCompileBasedOnProfile(compiler_options, profile_index, method_ref); in CompileMethodQuick()
532 ProfileMethodsCheck check_type = compiler_options.CheckProfiledMethodsCompiled(); in CompileMethodQuick()
534 DCHECK(ShouldCompileBasedOnProfile(compiler_options, profile_index, method_ref)); in CompileMethodQuick()
2238 const CompilerOptions& compiler_options = manager_->GetCompiler()->GetCompilerOptions(); in TryInitializeClass() local
2239 const bool is_boot_image = compiler_options.IsBootImage(); in TryInitializeClass()
2240 const bool is_boot_image_extension = compiler_options.IsBootImageExtension(); in TryInitializeClass()
2241 const bool is_app_image = compiler_options.IsAppImage(); in TryInitializeClass()
2292 bool have_profile = (compiler_options.GetProfileCompilationInfo() != nullptr) && in TryInitializeClass()
2293 !compiler_options.GetProfileCompilationInfo()->IsEmpty(); in TryInitializeClass()
2299 compiler_options.IsImageClass(descriptor) && in TryInitializeClass()
2318 !compiler_options.GetDebuggable() && in TryInitializeClass()
2319 (compiler_options.InitializeAppImageClasses() || in TryInitializeClass()
2428 !compiler_options.IsPreloadedClass(PrettyDescriptor(descriptor))) { in TryInitializeClass()
2432 if (compiler_options.CompileArtTest()) { in TryInitializeClass()
2678 const CompilerOptions& compiler_options = driver->GetCompilerOptions(); in CompileDexFile() local
2679 bool have_profile = (compiler_options.GetProfileCompilationInfo() != nullptr); in CompileDexFile()
2680 bool use_profile = CompilerFilter::DependsOnProfile(compiler_options.GetCompilerFilter()); in CompileDexFile()
2682 ? compiler_options.GetProfileCompilationInfo()->FindDexFile(dex_file) in CompileDexFile()