Lines Matching refs:compiler_options

110                const CompilerOptions& compiler_options,  in PassObserver()  argument
115 timing_logger_enabled_(compiler_options.GetDumpPassTimings()), in PassObserver()
120 visualizer_enabled_(!compiler_options.GetDumpCfgFileName().empty()), in PassObserver()
125 if (!IsVerboseMethod(compiler_options, GetMethodName())) { in PassObserver()
203 static bool IsVerboseMethod(const CompilerOptions& compiler_options, const char* method_name) { in IsVerboseMethod() argument
206 if (compiler_options.HasVerboseMethods()) { in IsVerboseMethod()
207 return compiler_options.IsVerboseMethod(method_name); in IsVerboseMethod()
270 explicit OptimizingCompiler(const CompilerOptions& compiler_options,
422 OptimizingCompiler::OptimizingCompiler(const CompilerOptions& compiler_options, in OptimizingCompiler() argument
424 : Compiler(compiler_options, storage, kMaximumCompilationTimeBeforeWarning), in OptimizingCompiler()
427 const std::string& cfg_file_name = compiler_options.GetDumpCfgFileName(); in OptimizingCompiler()
430 compiler_options.GetDumpCfgAppend() ? std::ofstream::app : std::ofstream::out; in OptimizingCompiler()
433 if (compiler_options.GetDumpStats()) { in OptimizingCompiler()
787 const CompilerOptions& compiler_options = GetCompilerOptions(); in TryCompile() local
788 InstructionSet instruction_set = compiler_options.GetInstructionSet(); in TryCompile()
812 if ((compiler_options.GetCompilerFilter() == CompilerFilter::kSpace) in TryCompile()
848 compiler_options.GetInstructionSet(), in TryCompile()
851 compiler_options.GetDebuggable(), in TryCompile()
860 compiler_options, in TryCompile()
866 codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo()); in TryCompile()
871 compiler_options, in TryCompile()
928 compiler_options.GetRegisterAllocationStrategy(); in TryCompile()
950 const CompilerOptions& compiler_options = GetCompilerOptions(); in TryCompileIntrinsic() local
951 InstructionSet instruction_set = compiler_options.GetInstructionSet(); in TryCompileIntrinsic()
969 compiler_options.GetInstructionSet(), in TryCompileIntrinsic()
972 compiler_options.GetDebuggable(), in TryCompileIntrinsic()
981 compiler_options, in TryCompileIntrinsic()
986 codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo()); in TryCompileIntrinsic()
991 compiler_options, in TryCompileIntrinsic()
1025 compiler_options.GetRegisterAllocationStrategy(), in TryCompileIntrinsic()
1050 const CompilerOptions& compiler_options = GetCompilerOptions(); in Compile() local
1054 const VerifiedMethod* verified_method = compiler_options.GetVerifiedMethod(&dex_file, method_idx); in Compile()
1056 if (compiler_options.IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) || in Compile()
1088 DCHECK(compiler_options.IsBootImage()); in Compile()
1107 compiler_options.IsBaseline(), in Compile()
1136 if (compiler_options.VerifyAtRuntime()) { in Compile()
1145 compiler_options.CompilingWithCoreImage() && in Compile()
1146 IsInstructionSetSupported(compiler_options.GetInstructionSet())) { in Compile()
1182 const CompilerOptions& compiler_options = GetCompilerOptions(); in JniCompile() local
1183 if (compiler_options.IsBootImage()) { in JniCompile()
1224 compiler_options, access_flags, method_idx, dex_file); in JniCompile()
1239 Compiler* CreateOptimizingCompiler(const CompilerOptions& compiler_options, in CreateOptimizingCompiler() argument
1241 return new OptimizingCompiler(compiler_options, storage); in CreateOptimizingCompiler()
1271 const CompilerOptions& compiler_options = GetCompilerOptions(); in JitCompile() local
1273 compiler_options, access_flags, method_idx, *dex_file); in JitCompile()
1312 if (compiler_options.GenerateAnyDebugInfo()) { in JitCompile()
1324 info.is_native_debuggable = compiler_options.GetNativeDebuggable(); in JitCompile()
1420 const CompilerOptions& compiler_options = GetCompilerOptions(); in JitCompile() local
1421 if (compiler_options.GenerateAnyDebugInfo()) { in JitCompile()
1433 info.is_native_debuggable = compiler_options.GetNativeDebuggable(); in JitCompile()
1467 const CompilerOptions& compiler_options = GetCompilerOptions(); in GenerateJitDebugInfo() local
1468 DCHECK(compiler_options.GenerateAnyDebugInfo()); in GenerateJitDebugInfo()
1474 const bool mini_debug_info = !compiler_options.GetGenerateDebugInfo(); in GenerateJitDebugInfo()
1478 compiler_options.GetInstructionSet(), in GenerateJitDebugInfo()
1479 compiler_options.GetInstructionSetFeatures(), in GenerateJitDebugInfo()
1486 compiler_options.GetInstructionSet(), in GenerateJitDebugInfo()
1487 compiler_options.GetInstructionSetFeatures()); in GenerateJitDebugInfo()