Lines Matching refs:compiler_options

86                const CompilerOptions& compiler_options)  in PassObserver()  argument
90 timing_logger_enabled_(compiler_options.GetDumpPassTimings()), in PassObserver()
95 visualizer_enabled_(!compiler_options.GetDumpCfgFileName().empty()), in PassObserver()
100 if (!IsVerboseMethod(compiler_options, GetMethodName())) { in PassObserver()
184 static bool IsVerboseMethod(const CompilerOptions& compiler_options, const char* method_name) { in IsVerboseMethod() argument
187 if (compiler_options.HasVerboseMethods()) { in IsVerboseMethod()
188 return compiler_options.IsVerboseMethod(method_name); in IsVerboseMethod()
251 explicit OptimizingCompiler(const CompilerOptions& compiler_options,
390 OptimizingCompiler::OptimizingCompiler(const CompilerOptions& compiler_options, in OptimizingCompiler() argument
392 : Compiler(compiler_options, storage, kMaximumCompilationTimeBeforeWarning) { in OptimizingCompiler()
394 const std::string& cfg_file_name = compiler_options.GetDumpCfgFileName(); in OptimizingCompiler()
397 compiler_options.GetDumpCfgAppend() ? std::ofstream::app : std::ofstream::out; in OptimizingCompiler()
401 if (compiler_options.GetDumpStats()) { in OptimizingCompiler()
413 const CompilerOptions& compiler_options = GetCompilerOptions(); in DumpInstructionSetFeaturesToCfg() local
414 const InstructionSetFeatures* features = compiler_options.GetInstructionSetFeatures(); in DumpInstructionSetFeaturesToCfg()
419 if (compiler_options.EmitReadBarrier()) { in DumpInstructionSetFeaturesToCfg()
769 const CompilerOptions& compiler_options = GetCompilerOptions(); in TryCompile() local
770 InstructionSet instruction_set = compiler_options.GetInstructionSet(); in TryCompile()
795 if ((compiler_options.GetCompilerFilter() == CompilerFilter::kSpace) in TryCompile()
831 compiler_options.GetInstructionSet(), in TryCompile()
834 compiler_options.GetDebuggable(), in TryCompile()
849 compiler_options, in TryCompile()
855 codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo()); in TryCompile()
860 compiler_options); in TryCompile()
919 if (compilation_kind == CompilationKind::kBaseline && compiler_options.ProfileBranches()) { in TryCompile()
975 const CompilerOptions& compiler_options = GetCompilerOptions(); in TryCompileIntrinsic() local
976 InstructionSet instruction_set = compiler_options.GetInstructionSet(); in TryCompileIntrinsic()
995 compiler_options.GetInstructionSet(), in TryCompileIntrinsic()
998 compiler_options.GetDebuggable(), in TryCompileIntrinsic()
1007 compiler_options, in TryCompileIntrinsic()
1012 codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo()); in TryCompileIntrinsic()
1017 compiler_options); in TryCompileIntrinsic()
1075 const CompilerOptions& compiler_options = GetCompilerOptions(); in Compile() local
1076 DCHECK(compiler_options.IsAotCompiler()); in Compile()
1109 DCHECK(compiler_options.IsBootImage()); in Compile()
1126 compiler_options.IsBaseline() in Compile()
1153 compiler_options.CompileArtTest() && in Compile()
1154 IsInstructionSetSupported(compiler_options.GetInstructionSet())) { in Compile()
1193 const CompilerOptions& compiler_options = GetCompilerOptions(); in JniCompile() local
1194 if (compiler_options.IsBootImage()) { in JniCompile()
1234 compiler_options, dex_file.GetMethodShortyView(method_idx), access_flags, &allocator); in JniCompile()
1242 compiler_options.GetDebuggable() && compiler_options.IsJitCompiler()); in JniCompile()
1252 Compiler* CreateOptimizingCompiler(const CompilerOptions& compiler_options, in CreateOptimizingCompiler() argument
1254 return new OptimizingCompiler(compiler_options, storage); in CreateOptimizingCompiler()
1268 const CompilerOptions& compiler_options = GetCompilerOptions(); in JitCompile() local
1269 DCHECK(compiler_options.IsJitCompiler()); in JitCompile()
1270 DCHECK_EQ(compiler_options.IsJitCompilerForSharedCode(), code_cache->IsSharedRegion(*region)); in JitCompile()
1291 if (compiler_options.GetDebuggable() && method->IsCriticalNative()) { in JitCompile()
1292 DCHECK(compiler_options.IsJitCompiler()); in JitCompile()
1301 compiler_options, dex_file->GetMethodShortyView(method_idx), access_flags, &allocator); in JitCompile()
1312 compiler_options.GetDebuggable() && compiler_options.IsJitCompiler()); in JitCompile()
1331 if (compiler_options.GenerateAnyDebugInfo()) { in JitCompile()
1342 info.is_native_debuggable = compiler_options.GetNativeDebuggable(); in JitCompile()
1362 /* is_full_debug_info= */ compiler_options.GetGenerateDebugInfo(), in JitCompile()
1439 if (compiler_options.GenerateAnyDebugInfo()) { in JitCompile()
1449 info.is_native_debuggable = compiler_options.GetNativeDebuggable(); in JitCompile()
1474 /* is_full_debug_info= */ compiler_options.GetGenerateDebugInfo(), in JitCompile()
1505 const CompilerOptions& compiler_options = GetCompilerOptions(); in GenerateJitDebugInfo() local
1506 if (compiler_options.GenerateAnyDebugInfo()) { in GenerateJitDebugInfo()
1508 const bool mini_debug_info = !compiler_options.GetGenerateDebugInfo(); in GenerateJitDebugInfo()
1511 InstructionSet isa = compiler_options.GetInstructionSet(); in GenerateJitDebugInfo()
1512 const InstructionSetFeatures* features = compiler_options.GetInstructionSetFeatures(); in GenerateJitDebugInfo()