1 //===- CompilerInvocation.cpp ---------------------------------------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // Coding style: https://mlir.llvm.org/getting_started/DeveloperGuide/ 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "flang/Frontend/CompilerInvocation.h" 14 #include "flang/Common/Fortran-features.h" 15 #include "flang/Common/OpenMP-features.h" 16 #include "flang/Common/Version.h" 17 #include "flang/Frontend/CodeGenOptions.h" 18 #include "flang/Frontend/PreprocessorOptions.h" 19 #include "flang/Frontend/TargetOptions.h" 20 #include "flang/Semantics/semantics.h" 21 #include "flang/Tools/TargetSetup.h" 22 #include "flang/Version.inc" 23 #include "clang/Basic/AllDiagnostics.h" 24 #include "clang/Basic/DiagnosticDriver.h" 25 #include "clang/Basic/DiagnosticOptions.h" 26 #include "clang/Driver/DriverDiagnostic.h" 27 #include "clang/Driver/OptionUtils.h" 28 #include "clang/Driver/Options.h" 29 #include "llvm/ADT/StringRef.h" 30 #include "llvm/ADT/StringSwitch.h" 31 #include "llvm/Frontend/Debug/Options.h" 32 #include "llvm/Option/Arg.h" 33 #include "llvm/Option/ArgList.h" 34 #include "llvm/Option/OptTable.h" 35 #include "llvm/Support/CodeGen.h" 36 #include "llvm/Support/FileSystem.h" 37 #include "llvm/Support/FileUtilities.h" 38 #include "llvm/Support/Path.h" 39 #include "llvm/Support/Process.h" 40 #include "llvm/Support/raw_ostream.h" 41 #include "llvm/TargetParser/Host.h" 42 #include "llvm/TargetParser/Triple.h" 43 #include <cstdlib> 44 #include <memory> 45 #include <optional> 46 47 using namespace Fortran::frontend; 48 49 //===----------------------------------------------------------------------===// 50 // Initialization. 51 //===----------------------------------------------------------------------===// 52 CompilerInvocationBase::CompilerInvocationBase() 53 : diagnosticOpts(new clang::DiagnosticOptions()), 54 preprocessorOpts(new PreprocessorOptions()) {} 55 56 CompilerInvocationBase::CompilerInvocationBase(const CompilerInvocationBase &x) 57 : diagnosticOpts(new clang::DiagnosticOptions(x.getDiagnosticOpts())), 58 preprocessorOpts(new PreprocessorOptions(x.getPreprocessorOpts())) {} 59 60 CompilerInvocationBase::~CompilerInvocationBase() = default; 61 62 //===----------------------------------------------------------------------===// 63 // Deserialization (from args) 64 //===----------------------------------------------------------------------===// 65 static bool parseShowColorsArgs(const llvm::opt::ArgList &args, 66 bool defaultColor = true) { 67 // Color diagnostics default to auto ("on" if terminal supports) in the 68 // compiler driver `flang-new` but default to off in the frontend driver 69 // `flang-new -fc1`, needing an explicit OPT_fdiagnostics_color. 70 // Support both clang's -f[no-]color-diagnostics and gcc's 71 // -f[no-]diagnostics-colors[=never|always|auto]. 72 enum { 73 Colors_On, 74 Colors_Off, 75 Colors_Auto 76 } showColors = defaultColor ? Colors_Auto : Colors_Off; 77 78 for (auto *a : args) { 79 const llvm::opt::Option &opt = a->getOption(); 80 if (opt.matches(clang::driver::options::OPT_fcolor_diagnostics)) { 81 showColors = Colors_On; 82 } else if (opt.matches(clang::driver::options::OPT_fno_color_diagnostics)) { 83 showColors = Colors_Off; 84 } else if (opt.matches(clang::driver::options::OPT_fdiagnostics_color_EQ)) { 85 llvm::StringRef value(a->getValue()); 86 if (value == "always") 87 showColors = Colors_On; 88 else if (value == "never") 89 showColors = Colors_Off; 90 else if (value == "auto") 91 showColors = Colors_Auto; 92 } 93 } 94 95 return showColors == Colors_On || 96 (showColors == Colors_Auto && 97 llvm::sys::Process::StandardErrHasColors()); 98 } 99 100 /// Extracts the optimisation level from \a args. 101 static unsigned getOptimizationLevel(llvm::opt::ArgList &args, 102 clang::DiagnosticsEngine &diags) { 103 unsigned defaultOpt = 0; 104 105 if (llvm::opt::Arg *a = 106 args.getLastArg(clang::driver::options::OPT_O_Group)) { 107 if (a->getOption().matches(clang::driver::options::OPT_O0)) 108 return 0; 109 110 assert(a->getOption().matches(clang::driver::options::OPT_O)); 111 112 return getLastArgIntValue(args, clang::driver::options::OPT_O, defaultOpt, 113 diags); 114 } 115 116 return defaultOpt; 117 } 118 119 bool Fortran::frontend::parseDiagnosticArgs(clang::DiagnosticOptions &opts, 120 llvm::opt::ArgList &args) { 121 opts.ShowColors = parseShowColorsArgs(args); 122 123 return true; 124 } 125 126 static bool parseDebugArgs(Fortran::frontend::CodeGenOptions &opts, 127 llvm::opt::ArgList &args, 128 clang::DiagnosticsEngine &diags) { 129 using DebugInfoKind = llvm::codegenoptions::DebugInfoKind; 130 if (llvm::opt::Arg *arg = 131 args.getLastArg(clang::driver::options::OPT_debug_info_kind_EQ)) { 132 std::optional<DebugInfoKind> val = 133 llvm::StringSwitch<std::optional<DebugInfoKind>>(arg->getValue()) 134 .Case("line-tables-only", llvm::codegenoptions::DebugLineTablesOnly) 135 .Case("line-directives-only", 136 llvm::codegenoptions::DebugDirectivesOnly) 137 .Case("constructor", llvm::codegenoptions::DebugInfoConstructor) 138 .Case("limited", llvm::codegenoptions::LimitedDebugInfo) 139 .Case("standalone", llvm::codegenoptions::FullDebugInfo) 140 .Case("unused-types", llvm::codegenoptions::UnusedTypeInfo) 141 .Default(std::nullopt); 142 if (!val.has_value()) { 143 diags.Report(clang::diag::err_drv_invalid_value) 144 << arg->getAsString(args) << arg->getValue(); 145 return false; 146 } 147 opts.setDebugInfo(val.value()); 148 if (val != llvm::codegenoptions::DebugLineTablesOnly && 149 val != llvm::codegenoptions::FullDebugInfo && 150 val != llvm::codegenoptions::NoDebugInfo) { 151 const auto debugWarning = diags.getCustomDiagID( 152 clang::DiagnosticsEngine::Warning, "Unsupported debug option: %0"); 153 diags.Report(debugWarning) << arg->getValue(); 154 } 155 } 156 return true; 157 } 158 159 static bool parseVectorLibArg(Fortran::frontend::CodeGenOptions &opts, 160 llvm::opt::ArgList &args, 161 clang::DiagnosticsEngine &diags) { 162 llvm::opt::Arg *arg = args.getLastArg(clang::driver::options::OPT_fveclib); 163 if (!arg) 164 return true; 165 166 using VectorLibrary = llvm::driver::VectorLibrary; 167 std::optional<VectorLibrary> val = 168 llvm::StringSwitch<std::optional<VectorLibrary>>(arg->getValue()) 169 .Case("Accelerate", VectorLibrary::Accelerate) 170 .Case("LIBMVEC", VectorLibrary::LIBMVEC) 171 .Case("MASSV", VectorLibrary::MASSV) 172 .Case("SVML", VectorLibrary::SVML) 173 .Case("SLEEF", VectorLibrary::SLEEF) 174 .Case("Darwin_libsystem_m", VectorLibrary::Darwin_libsystem_m) 175 .Case("ArmPL", VectorLibrary::ArmPL) 176 .Case("NoLibrary", VectorLibrary::NoLibrary) 177 .Default(std::nullopt); 178 if (!val.has_value()) { 179 diags.Report(clang::diag::err_drv_invalid_value) 180 << arg->getAsString(args) << arg->getValue(); 181 return false; 182 } 183 opts.setVecLib(val.value()); 184 return true; 185 } 186 187 // Generate an OptRemark object containing info on if the -Rgroup 188 // specified is enabled or not. 189 static CodeGenOptions::OptRemark 190 parseOptimizationRemark(clang::DiagnosticsEngine &diags, 191 llvm::opt::ArgList &args, llvm::opt::OptSpecifier optEq, 192 llvm::StringRef remarkOptName) { 193 assert((remarkOptName == "pass" || remarkOptName == "pass-missed" || 194 remarkOptName == "pass-analysis") && 195 "Unsupported remark option name provided."); 196 CodeGenOptions::OptRemark result; 197 198 for (llvm::opt::Arg *a : args) { 199 if (a->getOption().matches(clang::driver::options::OPT_R_Joined)) { 200 llvm::StringRef value = a->getValue(); 201 202 if (value == remarkOptName) { 203 result.Kind = CodeGenOptions::RemarkKind::RK_Enabled; 204 // Enable everything 205 result.Pattern = ".*"; 206 result.Regex = std::make_shared<llvm::Regex>(result.Pattern); 207 208 } else if (value.split('-') == 209 std::make_pair(llvm::StringRef("no"), remarkOptName)) { 210 result.Kind = CodeGenOptions::RemarkKind::RK_Disabled; 211 // Disable everything 212 result.Pattern = ""; 213 result.Regex = nullptr; 214 } 215 } else if (a->getOption().matches(optEq)) { 216 result.Kind = CodeGenOptions::RemarkKind::RK_WithPattern; 217 result.Pattern = a->getValue(); 218 result.Regex = std::make_shared<llvm::Regex>(result.Pattern); 219 std::string regexError; 220 221 if (!result.Regex->isValid(regexError)) { 222 diags.Report(clang::diag::err_drv_optimization_remark_pattern) 223 << regexError << a->getAsString(args); 224 return CodeGenOptions::OptRemark(); 225 } 226 } 227 } 228 return result; 229 } 230 231 static void parseCodeGenArgs(Fortran::frontend::CodeGenOptions &opts, 232 llvm::opt::ArgList &args, 233 clang::DiagnosticsEngine &diags) { 234 opts.OptimizationLevel = getOptimizationLevel(args, diags); 235 236 if (args.hasFlag(clang::driver::options::OPT_fdebug_pass_manager, 237 clang::driver::options::OPT_fno_debug_pass_manager, false)) 238 opts.DebugPassManager = 1; 239 240 if (args.hasFlag(clang::driver::options::OPT_fstack_arrays, 241 clang::driver::options::OPT_fno_stack_arrays, false)) 242 opts.StackArrays = 1; 243 244 if (args.hasFlag(clang::driver::options::OPT_floop_versioning, 245 clang::driver::options::OPT_fno_loop_versioning, false)) 246 opts.LoopVersioning = 1; 247 248 opts.AliasAnalysis = opts.OptimizationLevel > 0; 249 250 // -mframe-pointer=none/non-leaf/all option. 251 if (const llvm::opt::Arg *a = 252 args.getLastArg(clang::driver::options::OPT_mframe_pointer_EQ)) { 253 std::optional<llvm::FramePointerKind> val = 254 llvm::StringSwitch<std::optional<llvm::FramePointerKind>>(a->getValue()) 255 .Case("none", llvm::FramePointerKind::None) 256 .Case("non-leaf", llvm::FramePointerKind::NonLeaf) 257 .Case("all", llvm::FramePointerKind::All) 258 .Default(std::nullopt); 259 260 if (!val.has_value()) { 261 diags.Report(clang::diag::err_drv_invalid_value) 262 << a->getAsString(args) << a->getValue(); 263 } else 264 opts.setFramePointer(val.value()); 265 } 266 267 for (auto *a : args.filtered(clang::driver::options::OPT_fpass_plugin_EQ)) 268 opts.LLVMPassPlugins.push_back(a->getValue()); 269 270 // -fembed-offload-object option 271 for (auto *a : 272 args.filtered(clang::driver::options::OPT_fembed_offload_object_EQ)) 273 opts.OffloadObjects.push_back(a->getValue()); 274 275 // -flto=full/thin option. 276 if (const llvm::opt::Arg *a = 277 args.getLastArg(clang::driver::options::OPT_flto_EQ)) { 278 llvm::StringRef s = a->getValue(); 279 assert((s == "full" || s == "thin") && "Unknown LTO mode."); 280 if (s == "full") 281 opts.PrepareForFullLTO = true; 282 else 283 opts.PrepareForThinLTO = true; 284 } 285 286 if (const llvm::opt::Arg *a = args.getLastArg( 287 clang::driver::options::OPT_mcode_object_version_EQ)) { 288 llvm::StringRef s = a->getValue(); 289 if (s == "6") 290 opts.CodeObjectVersion = llvm::CodeObjectVersionKind::COV_6; 291 if (s == "5") 292 opts.CodeObjectVersion = llvm::CodeObjectVersionKind::COV_5; 293 if (s == "4") 294 opts.CodeObjectVersion = llvm::CodeObjectVersionKind::COV_4; 295 if (s == "none") 296 opts.CodeObjectVersion = llvm::CodeObjectVersionKind::COV_None; 297 } 298 299 // -f[no-]save-optimization-record[=<format>] 300 if (const llvm::opt::Arg *a = 301 args.getLastArg(clang::driver::options::OPT_opt_record_file)) 302 opts.OptRecordFile = a->getValue(); 303 304 // Optimization file format. Defaults to yaml 305 if (const llvm::opt::Arg *a = 306 args.getLastArg(clang::driver::options::OPT_opt_record_format)) 307 opts.OptRecordFormat = a->getValue(); 308 309 // Specifies, using a regex, which successful optimization passes(middle and 310 // backend), to include in the final optimization record file generated. If 311 // not provided -fsave-optimization-record will include all passes. 312 if (const llvm::opt::Arg *a = 313 args.getLastArg(clang::driver::options::OPT_opt_record_passes)) 314 opts.OptRecordPasses = a->getValue(); 315 316 // Create OptRemark that allows printing of all successful optimization 317 // passes applied. 318 opts.OptimizationRemark = 319 parseOptimizationRemark(diags, args, clang::driver::options::OPT_Rpass_EQ, 320 /*remarkOptName=*/"pass"); 321 322 // Create OptRemark that allows all missed optimization passes to be printed. 323 opts.OptimizationRemarkMissed = parseOptimizationRemark( 324 diags, args, clang::driver::options::OPT_Rpass_missed_EQ, 325 /*remarkOptName=*/"pass-missed"); 326 327 // Create OptRemark that allows all optimization decisions made by LLVM 328 // to be printed. 329 opts.OptimizationRemarkAnalysis = parseOptimizationRemark( 330 diags, args, clang::driver::options::OPT_Rpass_analysis_EQ, 331 /*remarkOptName=*/"pass-analysis"); 332 333 if (opts.getDebugInfo() == llvm::codegenoptions::NoDebugInfo) { 334 // If the user requested a flag that requires source locations available in 335 // the backend, make sure that the backend tracks source location 336 // information. 337 bool needLocTracking = !opts.OptRecordFile.empty() || 338 !opts.OptRecordPasses.empty() || 339 !opts.OptRecordFormat.empty() || 340 opts.OptimizationRemark.hasValidPattern() || 341 opts.OptimizationRemarkMissed.hasValidPattern() || 342 opts.OptimizationRemarkAnalysis.hasValidPattern(); 343 344 if (needLocTracking) 345 opts.setDebugInfo(llvm::codegenoptions::LocTrackingOnly); 346 } 347 348 if (auto *a = args.getLastArg(clang::driver::options::OPT_save_temps_EQ)) 349 opts.SaveTempsDir = a->getValue(); 350 351 // -mlink-builtin-bitcode 352 for (auto *a : 353 args.filtered(clang::driver::options::OPT_mlink_builtin_bitcode)) 354 opts.BuiltinBCLibs.push_back(a->getValue()); 355 356 // -mrelocation-model option. 357 if (const llvm::opt::Arg *a = 358 args.getLastArg(clang::driver::options::OPT_mrelocation_model)) { 359 llvm::StringRef modelName = a->getValue(); 360 auto relocModel = 361 llvm::StringSwitch<std::optional<llvm::Reloc::Model>>(modelName) 362 .Case("static", llvm::Reloc::Static) 363 .Case("pic", llvm::Reloc::PIC_) 364 .Case("dynamic-no-pic", llvm::Reloc::DynamicNoPIC) 365 .Case("ropi", llvm::Reloc::ROPI) 366 .Case("rwpi", llvm::Reloc::RWPI) 367 .Case("ropi-rwpi", llvm::Reloc::ROPI_RWPI) 368 .Default(std::nullopt); 369 if (relocModel.has_value()) 370 opts.setRelocationModel(*relocModel); 371 else 372 diags.Report(clang::diag::err_drv_invalid_value) 373 << a->getAsString(args) << modelName; 374 } 375 376 // -pic-level and -pic-is-pie option. 377 if (int picLevel = getLastArgIntValue( 378 args, clang::driver::options::OPT_pic_level, 0, diags)) { 379 if (picLevel > 2) 380 diags.Report(clang::diag::err_drv_invalid_value) 381 << args.getLastArg(clang::driver::options::OPT_pic_level) 382 ->getAsString(args) 383 << picLevel; 384 385 opts.PICLevel = picLevel; 386 if (args.hasArg(clang::driver::options::OPT_pic_is_pie)) 387 opts.IsPIE = 1; 388 } 389 390 // -mcmodel option. 391 if (const llvm::opt::Arg *a = 392 args.getLastArg(clang::driver::options::OPT_mcmodel_EQ)) { 393 llvm::StringRef modelName = a->getValue(); 394 std::optional<llvm::CodeModel::Model> codeModel = getCodeModel(modelName); 395 396 if (codeModel.has_value()) 397 opts.CodeModel = modelName; 398 else 399 diags.Report(clang::diag::err_drv_invalid_value) 400 << a->getAsString(args) << modelName; 401 } 402 403 if (const llvm::opt::Arg *arg = args.getLastArg( 404 clang::driver::options::OPT_mlarge_data_threshold_EQ)) { 405 uint64_t LDT; 406 if (llvm::StringRef(arg->getValue()).getAsInteger(/*Radix=*/10, LDT)) { 407 diags.Report(clang::diag::err_drv_invalid_value) 408 << arg->getSpelling() << arg->getValue(); 409 } 410 opts.LargeDataThreshold = LDT; 411 } 412 413 // This option is compatible with -f[no-]underscoring in gfortran. 414 if (args.hasFlag(clang::driver::options::OPT_fno_underscoring, 415 clang::driver::options::OPT_funderscoring, false)) { 416 opts.Underscoring = 0; 417 } 418 } 419 420 /// Parses all target input arguments and populates the target 421 /// options accordingly. 422 /// 423 /// \param [in] opts The target options instance to update 424 /// \param [in] args The list of input arguments (from the compiler invocation) 425 static void parseTargetArgs(TargetOptions &opts, llvm::opt::ArgList &args) { 426 if (const llvm::opt::Arg *a = 427 args.getLastArg(clang::driver::options::OPT_triple)) 428 opts.triple = a->getValue(); 429 430 if (const llvm::opt::Arg *a = 431 args.getLastArg(clang::driver::options::OPT_target_cpu)) 432 opts.cpu = a->getValue(); 433 434 if (const llvm::opt::Arg *a = 435 args.getLastArg(clang::driver::options::OPT_tune_cpu)) 436 opts.cpuToTuneFor = a->getValue(); 437 438 for (const llvm::opt::Arg *currentArg : 439 args.filtered(clang::driver::options::OPT_target_feature)) 440 opts.featuresAsWritten.emplace_back(currentArg->getValue()); 441 } 442 443 // Tweak the frontend configuration based on the frontend action 444 static void setUpFrontendBasedOnAction(FrontendOptions &opts) { 445 if (opts.programAction == DebugDumpParsingLog) 446 opts.instrumentedParse = true; 447 448 if (opts.programAction == DebugDumpProvenance || 449 opts.programAction == Fortran::frontend::GetDefinition) 450 opts.needProvenanceRangeToCharBlockMappings = true; 451 } 452 453 /// Parse the argument specified for the -fconvert=<value> option 454 static std::optional<const char *> parseConvertArg(const char *s) { 455 return llvm::StringSwitch<std::optional<const char *>>(s) 456 .Case("unknown", "UNKNOWN") 457 .Case("native", "NATIVE") 458 .Case("little-endian", "LITTLE_ENDIAN") 459 .Case("big-endian", "BIG_ENDIAN") 460 .Case("swap", "SWAP") 461 .Default(std::nullopt); 462 } 463 464 static bool parseFrontendArgs(FrontendOptions &opts, llvm::opt::ArgList &args, 465 clang::DiagnosticsEngine &diags) { 466 unsigned numErrorsBefore = diags.getNumErrors(); 467 468 // By default the frontend driver creates a ParseSyntaxOnly action. 469 opts.programAction = ParseSyntaxOnly; 470 471 // Treat multiple action options as an invocation error. Note that `clang 472 // -cc1` does accept multiple action options, but will only consider the 473 // rightmost one. 474 if (args.hasMultipleArgs(clang::driver::options::OPT_Action_Group)) { 475 const unsigned diagID = diags.getCustomDiagID( 476 clang::DiagnosticsEngine::Error, "Only one action option is allowed"); 477 diags.Report(diagID); 478 return false; 479 } 480 481 // Identify the action (i.e. opts.ProgramAction) 482 if (const llvm::opt::Arg *a = 483 args.getLastArg(clang::driver::options::OPT_Action_Group)) { 484 switch (a->getOption().getID()) { 485 default: { 486 llvm_unreachable("Invalid option in group!"); 487 } 488 case clang::driver::options::OPT_test_io: 489 opts.programAction = InputOutputTest; 490 break; 491 case clang::driver::options::OPT_E: 492 opts.programAction = PrintPreprocessedInput; 493 break; 494 case clang::driver::options::OPT_fsyntax_only: 495 opts.programAction = ParseSyntaxOnly; 496 break; 497 case clang::driver::options::OPT_emit_fir: 498 opts.programAction = EmitFIR; 499 break; 500 case clang::driver::options::OPT_emit_hlfir: 501 opts.programAction = EmitHLFIR; 502 break; 503 case clang::driver::options::OPT_emit_llvm: 504 opts.programAction = EmitLLVM; 505 break; 506 case clang::driver::options::OPT_emit_llvm_bc: 507 opts.programAction = EmitLLVMBitcode; 508 break; 509 case clang::driver::options::OPT_emit_obj: 510 opts.programAction = EmitObj; 511 break; 512 case clang::driver::options::OPT_S: 513 opts.programAction = EmitAssembly; 514 break; 515 case clang::driver::options::OPT_fdebug_unparse: 516 opts.programAction = DebugUnparse; 517 break; 518 case clang::driver::options::OPT_fdebug_unparse_no_sema: 519 opts.programAction = DebugUnparseNoSema; 520 break; 521 case clang::driver::options::OPT_fdebug_unparse_with_symbols: 522 opts.programAction = DebugUnparseWithSymbols; 523 break; 524 case clang::driver::options::OPT_fdebug_unparse_with_modules: 525 opts.programAction = DebugUnparseWithModules; 526 break; 527 case clang::driver::options::OPT_fdebug_dump_symbols: 528 opts.programAction = DebugDumpSymbols; 529 break; 530 case clang::driver::options::OPT_fdebug_dump_parse_tree: 531 opts.programAction = DebugDumpParseTree; 532 break; 533 case clang::driver::options::OPT_fdebug_dump_pft: 534 opts.programAction = DebugDumpPFT; 535 break; 536 case clang::driver::options::OPT_fdebug_dump_all: 537 opts.programAction = DebugDumpAll; 538 break; 539 case clang::driver::options::OPT_fdebug_dump_parse_tree_no_sema: 540 opts.programAction = DebugDumpParseTreeNoSema; 541 break; 542 case clang::driver::options::OPT_fdebug_dump_provenance: 543 opts.programAction = DebugDumpProvenance; 544 break; 545 case clang::driver::options::OPT_fdebug_dump_parsing_log: 546 opts.programAction = DebugDumpParsingLog; 547 break; 548 case clang::driver::options::OPT_fdebug_measure_parse_tree: 549 opts.programAction = DebugMeasureParseTree; 550 break; 551 case clang::driver::options::OPT_fdebug_pre_fir_tree: 552 opts.programAction = DebugPreFIRTree; 553 break; 554 case clang::driver::options::OPT_fget_symbols_sources: 555 opts.programAction = GetSymbolsSources; 556 break; 557 case clang::driver::options::OPT_fget_definition: 558 opts.programAction = GetDefinition; 559 break; 560 case clang::driver::options::OPT_init_only: 561 opts.programAction = InitOnly; 562 break; 563 564 // TODO: 565 // case clang::driver::options::OPT_emit_llvm: 566 // case clang::driver::options::OPT_emit_llvm_only: 567 // case clang::driver::options::OPT_emit_codegen_only: 568 // case clang::driver::options::OPT_emit_module: 569 // (...) 570 } 571 572 // Parse the values provided with `-fget-definition` (there should be 3 573 // integers) 574 if (llvm::opt::OptSpecifier(a->getOption().getID()) == 575 clang::driver::options::OPT_fget_definition) { 576 unsigned optVals[3] = {0, 0, 0}; 577 578 for (unsigned i = 0; i < 3; i++) { 579 llvm::StringRef val = a->getValue(i); 580 581 if (val.getAsInteger(10, optVals[i])) { 582 // A non-integer was encountered - that's an error. 583 diags.Report(clang::diag::err_drv_invalid_value) 584 << a->getOption().getName() << val; 585 break; 586 } 587 } 588 opts.getDefVals.line = optVals[0]; 589 opts.getDefVals.startColumn = optVals[1]; 590 opts.getDefVals.endColumn = optVals[2]; 591 } 592 } 593 594 // Parsing -load <dsopath> option and storing shared object path 595 if (llvm::opt::Arg *a = args.getLastArg(clang::driver::options::OPT_load)) { 596 opts.plugins.push_back(a->getValue()); 597 } 598 599 // Parsing -plugin <name> option and storing plugin name and setting action 600 if (const llvm::opt::Arg *a = 601 args.getLastArg(clang::driver::options::OPT_plugin)) { 602 opts.programAction = PluginAction; 603 opts.actionName = a->getValue(); 604 } 605 606 opts.outputFile = args.getLastArgValue(clang::driver::options::OPT_o); 607 opts.showHelp = args.hasArg(clang::driver::options::OPT_help); 608 opts.showVersion = args.hasArg(clang::driver::options::OPT_version); 609 610 // Get the input kind (from the value passed via `-x`) 611 InputKind dashX(Language::Unknown); 612 if (const llvm::opt::Arg *a = 613 args.getLastArg(clang::driver::options::OPT_x)) { 614 llvm::StringRef xValue = a->getValue(); 615 // Principal languages. 616 dashX = llvm::StringSwitch<InputKind>(xValue) 617 // Flang does not differentiate between pre-processed and not 618 // pre-processed inputs. 619 .Case("f95", Language::Fortran) 620 .Case("f95-cpp-input", Language::Fortran) 621 // CUDA Fortran 622 .Case("cuda", Language::Fortran) 623 .Default(Language::Unknown); 624 625 // Flang's intermediate representations. 626 if (dashX.isUnknown()) 627 dashX = llvm::StringSwitch<InputKind>(xValue) 628 .Case("ir", Language::LLVM_IR) 629 .Case("fir", Language::MLIR) 630 .Case("mlir", Language::MLIR) 631 .Default(Language::Unknown); 632 633 if (dashX.isUnknown()) 634 diags.Report(clang::diag::err_drv_invalid_value) 635 << a->getAsString(args) << a->getValue(); 636 } 637 638 // Collect the input files and save them in our instance of FrontendOptions. 639 std::vector<std::string> inputs = 640 args.getAllArgValues(clang::driver::options::OPT_INPUT); 641 opts.inputs.clear(); 642 if (inputs.empty()) 643 // '-' is the default input if none is given. 644 inputs.push_back("-"); 645 for (unsigned i = 0, e = inputs.size(); i != e; ++i) { 646 InputKind ik = dashX; 647 if (ik.isUnknown()) { 648 ik = FrontendOptions::getInputKindForExtension( 649 llvm::StringRef(inputs[i]).rsplit('.').second); 650 if (ik.isUnknown()) 651 ik = Language::Unknown; 652 if (i == 0) 653 dashX = ik; 654 } 655 656 opts.inputs.emplace_back(std::move(inputs[i]), ik); 657 } 658 659 // Set fortranForm based on options -ffree-form and -ffixed-form. 660 if (const auto *arg = 661 args.getLastArg(clang::driver::options::OPT_ffixed_form, 662 clang::driver::options::OPT_ffree_form)) { 663 opts.fortranForm = 664 arg->getOption().matches(clang::driver::options::OPT_ffixed_form) 665 ? FortranForm::FixedForm 666 : FortranForm::FreeForm; 667 } 668 669 // Set fixedFormColumns based on -ffixed-line-length=<value> 670 if (const auto *arg = 671 args.getLastArg(clang::driver::options::OPT_ffixed_line_length_EQ)) { 672 llvm::StringRef argValue = llvm::StringRef(arg->getValue()); 673 std::int64_t columns = -1; 674 if (argValue == "none") { 675 columns = 0; 676 } else if (argValue.getAsInteger(/*Radix=*/10, columns)) { 677 columns = -1; 678 } 679 if (columns < 0) { 680 diags.Report(clang::diag::err_drv_negative_columns) 681 << arg->getOption().getName() << arg->getValue(); 682 } else if (columns == 0) { 683 opts.fixedFormColumns = 1000000; 684 } else if (columns < 7) { 685 diags.Report(clang::diag::err_drv_small_columns) 686 << arg->getOption().getName() << arg->getValue() << "7"; 687 } else { 688 opts.fixedFormColumns = columns; 689 } 690 } 691 692 // Set conversion based on -fconvert=<value> 693 if (const auto *arg = 694 args.getLastArg(clang::driver::options::OPT_fconvert_EQ)) { 695 const char *argValue = arg->getValue(); 696 if (auto convert = parseConvertArg(argValue)) 697 opts.envDefaults.push_back({"FORT_CONVERT", *convert}); 698 else 699 diags.Report(clang::diag::err_drv_invalid_value) 700 << arg->getAsString(args) << argValue; 701 } 702 703 // -f{no-}implicit-none 704 opts.features.Enable( 705 Fortran::common::LanguageFeature::ImplicitNoneTypeAlways, 706 args.hasFlag(clang::driver::options::OPT_fimplicit_none, 707 clang::driver::options::OPT_fno_implicit_none, false)); 708 709 // -f{no-}backslash 710 opts.features.Enable(Fortran::common::LanguageFeature::BackslashEscapes, 711 args.hasFlag(clang::driver::options::OPT_fbackslash, 712 clang::driver::options::OPT_fno_backslash, 713 false)); 714 715 // -f{no-}logical-abbreviations 716 opts.features.Enable( 717 Fortran::common::LanguageFeature::LogicalAbbreviations, 718 args.hasFlag(clang::driver::options::OPT_flogical_abbreviations, 719 clang::driver::options::OPT_fno_logical_abbreviations, 720 false)); 721 722 // -f{no-}xor-operator 723 opts.features.Enable( 724 Fortran::common::LanguageFeature::XOROperator, 725 args.hasFlag(clang::driver::options::OPT_fxor_operator, 726 clang::driver::options::OPT_fno_xor_operator, false)); 727 728 // -fno-automatic 729 if (args.hasArg(clang::driver::options::OPT_fno_automatic)) { 730 opts.features.Enable(Fortran::common::LanguageFeature::DefaultSave); 731 } 732 733 if (args.hasArg( 734 clang::driver::options::OPT_falternative_parameter_statement)) { 735 opts.features.Enable(Fortran::common::LanguageFeature::OldStyleParameter); 736 } 737 if (const llvm::opt::Arg *arg = 738 args.getLastArg(clang::driver::options::OPT_finput_charset_EQ)) { 739 llvm::StringRef argValue = arg->getValue(); 740 if (argValue == "utf-8") { 741 opts.encoding = Fortran::parser::Encoding::UTF_8; 742 } else if (argValue == "latin-1") { 743 opts.encoding = Fortran::parser::Encoding::LATIN_1; 744 } else { 745 diags.Report(clang::diag::err_drv_invalid_value) 746 << arg->getAsString(args) << argValue; 747 } 748 } 749 750 setUpFrontendBasedOnAction(opts); 751 opts.dashX = dashX; 752 753 return diags.getNumErrors() == numErrorsBefore; 754 } 755 756 // Generate the path to look for intrinsic modules 757 static std::string getIntrinsicDir(const char *argv) { 758 // TODO: Find a system independent API 759 llvm::SmallString<128> driverPath; 760 driverPath.assign(llvm::sys::fs::getMainExecutable(argv, nullptr)); 761 llvm::sys::path::remove_filename(driverPath); 762 driverPath.append("/../include/flang/"); 763 return std::string(driverPath); 764 } 765 766 // Generate the path to look for OpenMP headers 767 static std::string getOpenMPHeadersDir(const char *argv) { 768 llvm::SmallString<128> includePath; 769 includePath.assign(llvm::sys::fs::getMainExecutable(argv, nullptr)); 770 llvm::sys::path::remove_filename(includePath); 771 includePath.append("/../include/flang/OpenMP/"); 772 return std::string(includePath); 773 } 774 775 /// Parses all preprocessor input arguments and populates the preprocessor 776 /// options accordingly. 777 /// 778 /// \param [in] opts The preprocessor options instance 779 /// \param [out] args The list of input arguments 780 static void parsePreprocessorArgs(Fortran::frontend::PreprocessorOptions &opts, 781 llvm::opt::ArgList &args) { 782 // Add macros from the command line. 783 for (const auto *currentArg : args.filtered(clang::driver::options::OPT_D, 784 clang::driver::options::OPT_U)) { 785 if (currentArg->getOption().matches(clang::driver::options::OPT_D)) { 786 opts.addMacroDef(currentArg->getValue()); 787 } else { 788 opts.addMacroUndef(currentArg->getValue()); 789 } 790 } 791 792 // Add the ordered list of -I's. 793 for (const auto *currentArg : args.filtered(clang::driver::options::OPT_I)) 794 opts.searchDirectoriesFromDashI.emplace_back(currentArg->getValue()); 795 796 // Prepend the ordered list of -intrinsic-modules-path 797 // to the default location to search. 798 for (const auto *currentArg : 799 args.filtered(clang::driver::options::OPT_fintrinsic_modules_path)) 800 opts.searchDirectoriesFromIntrModPath.emplace_back(currentArg->getValue()); 801 802 // -cpp/-nocpp 803 if (const auto *currentArg = args.getLastArg( 804 clang::driver::options::OPT_cpp, clang::driver::options::OPT_nocpp)) 805 opts.macrosFlag = 806 (currentArg->getOption().matches(clang::driver::options::OPT_cpp)) 807 ? PPMacrosFlag::Include 808 : PPMacrosFlag::Exclude; 809 810 opts.noReformat = args.hasArg(clang::driver::options::OPT_fno_reformat); 811 opts.noLineDirectives = args.hasArg(clang::driver::options::OPT_P); 812 opts.showMacros = args.hasArg(clang::driver::options::OPT_dM); 813 } 814 815 /// Parses all semantic related arguments and populates the variables 816 /// options accordingly. Returns false if new errors are generated. 817 static bool parseSemaArgs(CompilerInvocation &res, llvm::opt::ArgList &args, 818 clang::DiagnosticsEngine &diags) { 819 unsigned numErrorsBefore = diags.getNumErrors(); 820 821 // -J/module-dir option 822 auto moduleDirList = 823 args.getAllArgValues(clang::driver::options::OPT_module_dir); 824 // User can only specify -J/-module-dir once 825 // https://gcc.gnu.org/onlinedocs/gfortran/Directory-Options.html 826 if (moduleDirList.size() > 1) { 827 const unsigned diagID = 828 diags.getCustomDiagID(clang::DiagnosticsEngine::Error, 829 "Only one '-module-dir/-J' option allowed"); 830 diags.Report(diagID); 831 } 832 if (moduleDirList.size() == 1) 833 res.setModuleDir(moduleDirList[0]); 834 835 // -fdebug-module-writer option 836 if (args.hasArg(clang::driver::options::OPT_fdebug_module_writer)) { 837 res.setDebugModuleDir(true); 838 } 839 840 // -fhermetic-module-files option 841 if (args.hasArg(clang::driver::options::OPT_fhermetic_module_files)) { 842 res.setHermeticModuleFileOutput(true); 843 } 844 845 // -module-suffix 846 if (const auto *moduleSuffix = 847 args.getLastArg(clang::driver::options::OPT_module_suffix)) { 848 res.setModuleFileSuffix(moduleSuffix->getValue()); 849 } 850 851 // -f{no-}analyzed-objects-for-unparse 852 res.setUseAnalyzedObjectsForUnparse(args.hasFlag( 853 clang::driver::options::OPT_fanalyzed_objects_for_unparse, 854 clang::driver::options::OPT_fno_analyzed_objects_for_unparse, true)); 855 856 return diags.getNumErrors() == numErrorsBefore; 857 } 858 859 /// Parses all diagnostics related arguments and populates the variables 860 /// options accordingly. Returns false if new errors are generated. 861 static bool parseDiagArgs(CompilerInvocation &res, llvm::opt::ArgList &args, 862 clang::DiagnosticsEngine &diags) { 863 unsigned numErrorsBefore = diags.getNumErrors(); 864 865 // -Werror option 866 // TODO: Currently throws a Diagnostic for anything other than -W<error>, 867 // this has to change when other -W<opt>'s are supported. 868 if (args.hasArg(clang::driver::options::OPT_W_Joined)) { 869 const auto &wArgs = 870 args.getAllArgValues(clang::driver::options::OPT_W_Joined); 871 for (const auto &wArg : wArgs) { 872 if (wArg == "error") { 873 res.setWarnAsErr(true); 874 } else { 875 const unsigned diagID = 876 diags.getCustomDiagID(clang::DiagnosticsEngine::Error, 877 "Only `-Werror` is supported currently."); 878 diags.Report(diagID); 879 } 880 } 881 } 882 883 // Default to off for `flang-new -fc1`. 884 res.getFrontendOpts().showColors = 885 parseShowColorsArgs(args, /*defaultDiagColor=*/false); 886 887 // Honor color diagnostics. 888 res.getDiagnosticOpts().ShowColors = res.getFrontendOpts().showColors; 889 890 return diags.getNumErrors() == numErrorsBefore; 891 } 892 893 /// Parses all Dialect related arguments and populates the variables 894 /// options accordingly. Returns false if new errors are generated. 895 static bool parseDialectArgs(CompilerInvocation &res, llvm::opt::ArgList &args, 896 clang::DiagnosticsEngine &diags) { 897 unsigned numErrorsBefore = diags.getNumErrors(); 898 899 // -fdefault* family 900 if (args.hasArg(clang::driver::options::OPT_fdefault_real_8)) { 901 res.getDefaultKinds().set_defaultRealKind(8); 902 res.getDefaultKinds().set_doublePrecisionKind(16); 903 } 904 if (args.hasArg(clang::driver::options::OPT_fdefault_integer_8)) { 905 res.getDefaultKinds().set_defaultIntegerKind(8); 906 res.getDefaultKinds().set_subscriptIntegerKind(8); 907 res.getDefaultKinds().set_sizeIntegerKind(8); 908 res.getDefaultKinds().set_defaultLogicalKind(8); 909 } 910 if (args.hasArg(clang::driver::options::OPT_fdefault_double_8)) { 911 if (!args.hasArg(clang::driver::options::OPT_fdefault_real_8)) { 912 // -fdefault-double-8 has to be used with -fdefault-real-8 913 // to be compatible with gfortran 914 const unsigned diagID = diags.getCustomDiagID( 915 clang::DiagnosticsEngine::Error, 916 "Use of `-fdefault-double-8` requires `-fdefault-real-8`"); 917 diags.Report(diagID); 918 } 919 // https://gcc.gnu.org/onlinedocs/gfortran/Fortran-Dialect-Options.html 920 res.getDefaultKinds().set_doublePrecisionKind(8); 921 } 922 if (args.hasArg(clang::driver::options::OPT_flarge_sizes)) 923 res.getDefaultKinds().set_sizeIntegerKind(8); 924 925 // -x cuda 926 auto language = args.getLastArgValue(clang::driver::options::OPT_x); 927 if (language == "cuda") { 928 res.getFrontendOpts().features.Enable( 929 Fortran::common::LanguageFeature::CUDA); 930 } 931 932 // -fopenmp and -fopenacc 933 if (args.hasArg(clang::driver::options::OPT_fopenacc)) { 934 res.getFrontendOpts().features.Enable( 935 Fortran::common::LanguageFeature::OpenACC); 936 } 937 if (args.hasArg(clang::driver::options::OPT_fopenmp)) { 938 // By default OpenMP is set to 1.1 version 939 res.getLangOpts().OpenMPVersion = 11; 940 res.getFrontendOpts().features.Enable( 941 Fortran::common::LanguageFeature::OpenMP); 942 if (int Version = getLastArgIntValue( 943 args, clang::driver::options::OPT_fopenmp_version_EQ, 944 res.getLangOpts().OpenMPVersion, diags)) { 945 res.getLangOpts().OpenMPVersion = Version; 946 } 947 if (args.hasArg(clang::driver::options::OPT_fopenmp_force_usm)) { 948 res.getLangOpts().OpenMPForceUSM = 1; 949 } 950 if (args.hasArg(clang::driver::options::OPT_fopenmp_is_target_device)) { 951 res.getLangOpts().OpenMPIsTargetDevice = 1; 952 953 // Get OpenMP host file path if any and report if a non existent file is 954 // found 955 if (auto *arg = args.getLastArg( 956 clang::driver::options::OPT_fopenmp_host_ir_file_path)) { 957 res.getLangOpts().OMPHostIRFile = arg->getValue(); 958 if (!llvm::sys::fs::exists(res.getLangOpts().OMPHostIRFile)) 959 diags.Report(clang::diag::err_drv_omp_host_ir_file_not_found) 960 << res.getLangOpts().OMPHostIRFile; 961 } 962 963 if (args.hasFlag( 964 clang::driver::options::OPT_fopenmp_assume_teams_oversubscription, 965 clang::driver::options:: 966 OPT_fno_openmp_assume_teams_oversubscription, 967 /*Default=*/false)) 968 res.getLangOpts().OpenMPTeamSubscription = true; 969 970 if (args.hasArg( 971 clang::driver::options::OPT_fopenmp_assume_no_thread_state)) 972 res.getLangOpts().OpenMPNoThreadState = 1; 973 974 if (args.hasArg( 975 clang::driver::options::OPT_fopenmp_assume_no_nested_parallelism)) 976 res.getLangOpts().OpenMPNoNestedParallelism = 1; 977 978 if (args.hasFlag(clang::driver::options:: 979 OPT_fopenmp_assume_threads_oversubscription, 980 clang::driver::options:: 981 OPT_fno_openmp_assume_threads_oversubscription, 982 /*Default=*/false)) 983 res.getLangOpts().OpenMPThreadSubscription = true; 984 985 if ((args.hasArg(clang::driver::options::OPT_fopenmp_target_debug) || 986 args.hasArg(clang::driver::options::OPT_fopenmp_target_debug_EQ))) { 987 res.getLangOpts().OpenMPTargetDebug = getLastArgIntValue( 988 args, clang::driver::options::OPT_fopenmp_target_debug_EQ, 989 res.getLangOpts().OpenMPTargetDebug, diags); 990 991 if (!res.getLangOpts().OpenMPTargetDebug && 992 args.hasArg(clang::driver::options::OPT_fopenmp_target_debug)) 993 res.getLangOpts().OpenMPTargetDebug = 1; 994 } 995 if (args.hasArg(clang::driver::options::OPT_nogpulib)) 996 res.getLangOpts().NoGPULib = 1; 997 } 998 999 switch (llvm::Triple(res.getTargetOpts().triple).getArch()) { 1000 case llvm::Triple::nvptx: 1001 case llvm::Triple::nvptx64: 1002 case llvm::Triple::amdgcn: 1003 if (!res.getLangOpts().OpenMPIsTargetDevice) { 1004 const unsigned diagID = diags.getCustomDiagID( 1005 clang::DiagnosticsEngine::Error, 1006 "OpenMP AMDGPU/NVPTX is only prepared to deal with device code."); 1007 diags.Report(diagID); 1008 } 1009 res.getLangOpts().OpenMPIsGPU = 1; 1010 break; 1011 default: 1012 res.getLangOpts().OpenMPIsGPU = 0; 1013 break; 1014 } 1015 } 1016 1017 // -pedantic 1018 if (args.hasArg(clang::driver::options::OPT_pedantic)) { 1019 res.setEnableConformanceChecks(); 1020 res.setEnableUsageChecks(); 1021 } 1022 1023 // -w 1024 if (args.hasArg(clang::driver::options::OPT_w)) 1025 res.setDisableWarnings(); 1026 1027 // -std=f2018 1028 // TODO: Set proper options when more fortran standards 1029 // are supported. 1030 if (args.hasArg(clang::driver::options::OPT_std_EQ)) { 1031 auto standard = args.getLastArgValue(clang::driver::options::OPT_std_EQ); 1032 // We only allow f2018 as the given standard 1033 if (standard == "f2018") { 1034 res.setEnableConformanceChecks(); 1035 } else { 1036 const unsigned diagID = 1037 diags.getCustomDiagID(clang::DiagnosticsEngine::Error, 1038 "Only -std=f2018 is allowed currently."); 1039 diags.Report(diagID); 1040 } 1041 } 1042 return diags.getNumErrors() == numErrorsBefore; 1043 } 1044 1045 /// Parses all floating point related arguments and populates the 1046 /// CompilerInvocation accordingly. 1047 /// Returns false if new errors are generated. 1048 /// 1049 /// \param [out] invoc Stores the processed arguments 1050 /// \param [in] args The compiler invocation arguments to parse 1051 /// \param [out] diags DiagnosticsEngine to report erros with 1052 static bool parseFloatingPointArgs(CompilerInvocation &invoc, 1053 llvm::opt::ArgList &args, 1054 clang::DiagnosticsEngine &diags) { 1055 LangOptions &opts = invoc.getLangOpts(); 1056 1057 if (const llvm::opt::Arg *a = 1058 args.getLastArg(clang::driver::options::OPT_ffp_contract)) { 1059 const llvm::StringRef val = a->getValue(); 1060 enum LangOptions::FPModeKind fpContractMode; 1061 1062 if (val == "off") 1063 fpContractMode = LangOptions::FPM_Off; 1064 else if (val == "fast") 1065 fpContractMode = LangOptions::FPM_Fast; 1066 else { 1067 diags.Report(clang::diag::err_drv_unsupported_option_argument) 1068 << a->getSpelling() << val; 1069 return false; 1070 } 1071 1072 opts.setFPContractMode(fpContractMode); 1073 } 1074 1075 if (args.getLastArg(clang::driver::options::OPT_menable_no_infs)) { 1076 opts.NoHonorInfs = true; 1077 } 1078 1079 if (args.getLastArg(clang::driver::options::OPT_menable_no_nans)) { 1080 opts.NoHonorNaNs = true; 1081 } 1082 1083 if (args.getLastArg(clang::driver::options::OPT_fapprox_func)) { 1084 opts.ApproxFunc = true; 1085 } 1086 1087 if (args.getLastArg(clang::driver::options::OPT_fno_signed_zeros)) { 1088 opts.NoSignedZeros = true; 1089 } 1090 1091 if (args.getLastArg(clang::driver::options::OPT_mreassociate)) { 1092 opts.AssociativeMath = true; 1093 } 1094 1095 if (args.getLastArg(clang::driver::options::OPT_freciprocal_math)) { 1096 opts.ReciprocalMath = true; 1097 } 1098 1099 if (args.getLastArg(clang::driver::options::OPT_ffast_math)) { 1100 opts.NoHonorInfs = true; 1101 opts.NoHonorNaNs = true; 1102 opts.AssociativeMath = true; 1103 opts.ReciprocalMath = true; 1104 opts.ApproxFunc = true; 1105 opts.NoSignedZeros = true; 1106 opts.setFPContractMode(LangOptions::FPM_Fast); 1107 } 1108 1109 return true; 1110 } 1111 1112 /// Parses vscale range options and populates the CompilerInvocation 1113 /// accordingly. 1114 /// Returns false if new errors are generated. 1115 /// 1116 /// \param [out] invoc Stores the processed arguments 1117 /// \param [in] args The compiler invocation arguments to parse 1118 /// \param [out] diags DiagnosticsEngine to report erros with 1119 static bool parseVScaleArgs(CompilerInvocation &invoc, llvm::opt::ArgList &args, 1120 clang::DiagnosticsEngine &diags) { 1121 const auto *vscaleMin = 1122 args.getLastArg(clang::driver::options::OPT_mvscale_min_EQ); 1123 const auto *vscaleMax = 1124 args.getLastArg(clang::driver::options::OPT_mvscale_max_EQ); 1125 1126 if (!vscaleMin && !vscaleMax) 1127 return true; 1128 1129 llvm::Triple triple = llvm::Triple(invoc.getTargetOpts().triple); 1130 if (!triple.isAArch64() && !triple.isRISCV()) { 1131 const unsigned diagID = 1132 diags.getCustomDiagID(clang::DiagnosticsEngine::Error, 1133 "`-mvscale-max` and `-mvscale-min` are not " 1134 "supported for this architecture: %0"); 1135 diags.Report(diagID) << triple.getArchName(); 1136 return false; 1137 } 1138 1139 LangOptions &opts = invoc.getLangOpts(); 1140 if (vscaleMin) { 1141 llvm::StringRef argValue = llvm::StringRef(vscaleMin->getValue()); 1142 unsigned vscaleMinVal; 1143 if (argValue.getAsInteger(/*Radix=*/10, vscaleMinVal)) { 1144 diags.Report(clang::diag::err_drv_unsupported_option_argument) 1145 << vscaleMax->getSpelling() << argValue; 1146 return false; 1147 } 1148 opts.VScaleMin = vscaleMinVal; 1149 } 1150 1151 if (vscaleMax) { 1152 llvm::StringRef argValue = llvm::StringRef(vscaleMax->getValue()); 1153 unsigned vscaleMaxVal; 1154 if (argValue.getAsInteger(/*Radix=w*/ 10, vscaleMaxVal)) { 1155 diags.Report(clang::diag::err_drv_unsupported_option_argument) 1156 << vscaleMax->getSpelling() << argValue; 1157 return false; 1158 } 1159 opts.VScaleMax = vscaleMaxVal; 1160 } 1161 return true; 1162 } 1163 1164 static bool parseLinkerOptionsArgs(CompilerInvocation &invoc, 1165 llvm::opt::ArgList &args, 1166 clang::DiagnosticsEngine &diags) { 1167 llvm::Triple triple = llvm::Triple(invoc.getTargetOpts().triple); 1168 1169 // TODO: support --dependent-lib on other platforms when MLIR supports 1170 // !llvm.dependent.lib 1171 if (args.hasArg(clang::driver::options::OPT_dependent_lib) && 1172 !triple.isOSWindows()) { 1173 const unsigned diagID = 1174 diags.getCustomDiagID(clang::DiagnosticsEngine::Error, 1175 "--dependent-lib is only supported on Windows"); 1176 diags.Report(diagID); 1177 return false; 1178 } 1179 1180 invoc.getCodeGenOpts().DependentLibs = 1181 args.getAllArgValues(clang::driver::options::OPT_dependent_lib); 1182 return true; 1183 } 1184 1185 bool CompilerInvocation::createFromArgs( 1186 CompilerInvocation &invoc, llvm::ArrayRef<const char *> commandLineArgs, 1187 clang::DiagnosticsEngine &diags, const char *argv0) { 1188 1189 bool success = true; 1190 1191 // Set the default triple for this CompilerInvocation. This might be 1192 // overridden by users with `-triple` (see the call to `ParseTargetArgs` 1193 // below). 1194 // NOTE: Like in Clang, it would be nice to use option marshalling 1195 // for this so that the entire logic for setting-up the triple is in one 1196 // place. 1197 invoc.getTargetOpts().triple = 1198 llvm::Triple::normalize(llvm::sys::getDefaultTargetTriple()); 1199 1200 // Parse the arguments 1201 const llvm::opt::OptTable &opts = clang::driver::getDriverOptTable(); 1202 llvm::opt::Visibility visibilityMask(clang::driver::options::FC1Option); 1203 unsigned missingArgIndex, missingArgCount; 1204 llvm::opt::InputArgList args = opts.ParseArgs( 1205 commandLineArgs, missingArgIndex, missingArgCount, visibilityMask); 1206 1207 // Check for missing argument error. 1208 if (missingArgCount) { 1209 diags.Report(clang::diag::err_drv_missing_argument) 1210 << args.getArgString(missingArgIndex) << missingArgCount; 1211 success = false; 1212 } 1213 1214 // Issue errors on unknown arguments 1215 for (const auto *a : args.filtered(clang::driver::options::OPT_UNKNOWN)) { 1216 auto argString = a->getAsString(args); 1217 std::string nearest; 1218 if (opts.findNearest(argString, nearest, visibilityMask) > 1) 1219 diags.Report(clang::diag::err_drv_unknown_argument) << argString; 1220 else 1221 diags.Report(clang::diag::err_drv_unknown_argument_with_suggestion) 1222 << argString << nearest; 1223 success = false; 1224 } 1225 1226 // -flang-experimental-hlfir 1227 if (args.hasArg(clang::driver::options::OPT_flang_experimental_hlfir) || 1228 args.hasArg(clang::driver::options::OPT_emit_hlfir)) { 1229 invoc.loweringOpts.setLowerToHighLevelFIR(true); 1230 } 1231 1232 // -flang-deprecated-no-hlfir 1233 if (args.hasArg(clang::driver::options::OPT_flang_deprecated_no_hlfir) && 1234 !args.hasArg(clang::driver::options::OPT_emit_hlfir)) { 1235 if (args.hasArg(clang::driver::options::OPT_flang_experimental_hlfir)) { 1236 const unsigned diagID = diags.getCustomDiagID( 1237 clang::DiagnosticsEngine::Error, 1238 "Options '-flang-experimental-hlfir' and " 1239 "'-flang-deprecated-no-hlfir' cannot be both specified"); 1240 diags.Report(diagID); 1241 } 1242 invoc.loweringOpts.setLowerToHighLevelFIR(false); 1243 } 1244 1245 // -fno-ppc-native-vector-element-order 1246 if (args.hasArg(clang::driver::options::OPT_fno_ppc_native_vec_elem_order)) { 1247 invoc.loweringOpts.setNoPPCNativeVecElemOrder(true); 1248 } 1249 1250 // -flang-experimental-integer-overflow 1251 if (args.hasArg( 1252 clang::driver::options::OPT_flang_experimental_integer_overflow)) { 1253 invoc.loweringOpts.setNSWOnLoopVarInc(true); 1254 } 1255 1256 // Preserve all the remark options requested, i.e. -Rpass, -Rpass-missed or 1257 // -Rpass-analysis. This will be used later when processing and outputting the 1258 // remarks generated by LLVM in ExecuteCompilerInvocation.cpp. 1259 for (auto *a : args.filtered(clang::driver::options::OPT_R_Group)) { 1260 if (a->getOption().matches(clang::driver::options::OPT_R_value_Group)) 1261 // This is -Rfoo=, where foo is the name of the diagnostic 1262 // group. Add only the remark option name to the diagnostics. e.g. for 1263 // -Rpass= we will add the string "pass". 1264 invoc.getDiagnosticOpts().Remarks.push_back( 1265 std::string(a->getOption().getName().drop_front(1).rtrim("=-"))); 1266 else 1267 // If no regex was provided, add the provided value, e.g. for -Rpass add 1268 // the string "pass". 1269 invoc.getDiagnosticOpts().Remarks.push_back(a->getValue()); 1270 } 1271 1272 success &= parseFrontendArgs(invoc.getFrontendOpts(), args, diags); 1273 parseTargetArgs(invoc.getTargetOpts(), args); 1274 parsePreprocessorArgs(invoc.getPreprocessorOpts(), args); 1275 parseCodeGenArgs(invoc.getCodeGenOpts(), args, diags); 1276 success &= parseDebugArgs(invoc.getCodeGenOpts(), args, diags); 1277 success &= parseVectorLibArg(invoc.getCodeGenOpts(), args, diags); 1278 success &= parseSemaArgs(invoc, args, diags); 1279 success &= parseDialectArgs(invoc, args, diags); 1280 success &= parseDiagArgs(invoc, args, diags); 1281 1282 // Collect LLVM (-mllvm) and MLIR (-mmlir) options. 1283 // NOTE: Try to avoid adding any options directly to `llvmArgs` or 1284 // `mlirArgs`. Instead, you can use 1285 // * `-mllvm <your-llvm-option>`, or 1286 // * `-mmlir <your-mlir-option>`. 1287 invoc.frontendOpts.llvmArgs = 1288 args.getAllArgValues(clang::driver::options::OPT_mllvm); 1289 invoc.frontendOpts.mlirArgs = 1290 args.getAllArgValues(clang::driver::options::OPT_mmlir); 1291 1292 success &= parseFloatingPointArgs(invoc, args, diags); 1293 1294 success &= parseVScaleArgs(invoc, args, diags); 1295 1296 success &= parseLinkerOptionsArgs(invoc, args, diags); 1297 1298 // Set the string to be used as the return value of the COMPILER_OPTIONS 1299 // intrinsic of iso_fortran_env. This is either passed in from the parent 1300 // compiler driver invocation with an environment variable, or failing that 1301 // set to the command line arguments of the frontend driver invocation. 1302 invoc.allCompilerInvocOpts = std::string(); 1303 llvm::raw_string_ostream os(invoc.allCompilerInvocOpts); 1304 char *compilerOptsEnv = std::getenv("FLANG_COMPILER_OPTIONS_STRING"); 1305 if (compilerOptsEnv != nullptr) { 1306 os << compilerOptsEnv; 1307 } else { 1308 os << argv0 << ' '; 1309 for (auto it = commandLineArgs.begin(), e = commandLineArgs.end(); it != e; 1310 ++it) { 1311 os << ' ' << *it; 1312 } 1313 } 1314 1315 invoc.setArgv0(argv0); 1316 1317 return success; 1318 } 1319 1320 void CompilerInvocation::collectMacroDefinitions() { 1321 auto &ppOpts = this->getPreprocessorOpts(); 1322 1323 for (unsigned i = 0, n = ppOpts.macros.size(); i != n; ++i) { 1324 llvm::StringRef macro = ppOpts.macros[i].first; 1325 bool isUndef = ppOpts.macros[i].second; 1326 1327 std::pair<llvm::StringRef, llvm::StringRef> macroPair = macro.split('='); 1328 llvm::StringRef macroName = macroPair.first; 1329 llvm::StringRef macroBody = macroPair.second; 1330 1331 // For an #undef'd macro, we only care about the name. 1332 if (isUndef) { 1333 parserOpts.predefinitions.emplace_back(macroName.str(), 1334 std::optional<std::string>{}); 1335 continue; 1336 } 1337 1338 // For a #define'd macro, figure out the actual definition. 1339 if (macroName.size() == macro.size()) 1340 macroBody = "1"; 1341 else { 1342 // Note: GCC drops anything following an end-of-line character. 1343 llvm::StringRef::size_type end = macroBody.find_first_of("\n\r"); 1344 macroBody = macroBody.substr(0, end); 1345 } 1346 parserOpts.predefinitions.emplace_back( 1347 macroName, std::optional<std::string>(macroBody.str())); 1348 } 1349 } 1350 1351 void CompilerInvocation::setDefaultFortranOpts() { 1352 auto &fortranOptions = getFortranOpts(); 1353 1354 std::vector<std::string> searchDirectories{"."s}; 1355 fortranOptions.searchDirectories = searchDirectories; 1356 1357 // Add the location of omp_lib.h to the search directories. Currently this is 1358 // identical to the modules' directory. 1359 fortranOptions.searchDirectories.emplace_back( 1360 getOpenMPHeadersDir(getArgv0())); 1361 1362 fortranOptions.isFixedForm = false; 1363 } 1364 1365 // TODO: When expanding this method, consider creating a dedicated API for 1366 // this. Also at some point we will need to differentiate between different 1367 // targets and add dedicated predefines for each. 1368 void CompilerInvocation::setDefaultPredefinitions() { 1369 auto &fortranOptions = getFortranOpts(); 1370 const auto &frontendOptions = getFrontendOpts(); 1371 // Populate the macro list with version numbers and other predefinitions. 1372 fortranOptions.predefinitions.emplace_back("__flang__", "1"); 1373 fortranOptions.predefinitions.emplace_back("__flang_major__", 1374 FLANG_VERSION_MAJOR_STRING); 1375 fortranOptions.predefinitions.emplace_back("__flang_minor__", 1376 FLANG_VERSION_MINOR_STRING); 1377 fortranOptions.predefinitions.emplace_back("__flang_patchlevel__", 1378 FLANG_VERSION_PATCHLEVEL_STRING); 1379 1380 // Add predefinitions based on extensions enabled 1381 if (frontendOptions.features.IsEnabled( 1382 Fortran::common::LanguageFeature::OpenACC)) { 1383 fortranOptions.predefinitions.emplace_back("_OPENACC", "202211"); 1384 } 1385 if (frontendOptions.features.IsEnabled( 1386 Fortran::common::LanguageFeature::OpenMP)) { 1387 Fortran::common::setOpenMPMacro(getLangOpts().OpenMPVersion, 1388 fortranOptions.predefinitions); 1389 } 1390 1391 llvm::Triple targetTriple{llvm::Triple(this->targetOpts.triple)}; 1392 if (targetTriple.isPPC()) { 1393 // '__powerpc__' is a generic macro for any PowerPC cases. e.g. Max integer 1394 // size. 1395 fortranOptions.predefinitions.emplace_back("__powerpc__", "1"); 1396 } 1397 if (targetTriple.isOSLinux()) { 1398 fortranOptions.predefinitions.emplace_back("__linux__", "1"); 1399 } 1400 1401 switch (targetTriple.getArch()) { 1402 default: 1403 break; 1404 case llvm::Triple::ArchType::x86_64: 1405 fortranOptions.predefinitions.emplace_back("__x86_64__", "1"); 1406 fortranOptions.predefinitions.emplace_back("__x86_64", "1"); 1407 break; 1408 } 1409 } 1410 1411 void CompilerInvocation::setFortranOpts() { 1412 auto &fortranOptions = getFortranOpts(); 1413 const auto &frontendOptions = getFrontendOpts(); 1414 const auto &preprocessorOptions = getPreprocessorOpts(); 1415 auto &moduleDirJ = getModuleDir(); 1416 1417 if (frontendOptions.fortranForm != FortranForm::Unknown) { 1418 fortranOptions.isFixedForm = 1419 frontendOptions.fortranForm == FortranForm::FixedForm; 1420 } 1421 fortranOptions.fixedFormColumns = frontendOptions.fixedFormColumns; 1422 1423 fortranOptions.features = frontendOptions.features; 1424 fortranOptions.encoding = frontendOptions.encoding; 1425 1426 // Adding search directories specified by -I 1427 fortranOptions.searchDirectories.insert( 1428 fortranOptions.searchDirectories.end(), 1429 preprocessorOptions.searchDirectoriesFromDashI.begin(), 1430 preprocessorOptions.searchDirectoriesFromDashI.end()); 1431 1432 // Add the ordered list of -intrinsic-modules-path 1433 fortranOptions.searchDirectories.insert( 1434 fortranOptions.searchDirectories.end(), 1435 preprocessorOptions.searchDirectoriesFromIntrModPath.begin(), 1436 preprocessorOptions.searchDirectoriesFromIntrModPath.end()); 1437 1438 // Add the default intrinsic module directory 1439 fortranOptions.intrinsicModuleDirectories.emplace_back( 1440 getIntrinsicDir(getArgv0())); 1441 1442 // Add the directory supplied through -J/-module-dir to the list of search 1443 // directories 1444 if (moduleDirJ != ".") 1445 fortranOptions.searchDirectories.emplace_back(moduleDirJ); 1446 1447 if (frontendOptions.instrumentedParse) 1448 fortranOptions.instrumentedParse = true; 1449 1450 if (frontendOptions.showColors) 1451 fortranOptions.showColors = true; 1452 1453 if (frontendOptions.needProvenanceRangeToCharBlockMappings) 1454 fortranOptions.needProvenanceRangeToCharBlockMappings = true; 1455 1456 if (getEnableConformanceChecks()) 1457 fortranOptions.features.WarnOnAllNonstandard(); 1458 1459 if (getEnableUsageChecks()) 1460 fortranOptions.features.WarnOnAllUsage(); 1461 1462 if (getDisableWarnings()) { 1463 fortranOptions.features.DisableAllNonstandardWarnings(); 1464 fortranOptions.features.DisableAllUsageWarnings(); 1465 } 1466 } 1467 1468 std::unique_ptr<Fortran::semantics::SemanticsContext> 1469 CompilerInvocation::getSemanticsCtx( 1470 Fortran::parser::AllCookedSources &allCookedSources, 1471 const llvm::TargetMachine &targetMachine) { 1472 auto &fortranOptions = getFortranOpts(); 1473 1474 auto semanticsContext = std::make_unique<semantics::SemanticsContext>( 1475 getDefaultKinds(), fortranOptions.features, allCookedSources); 1476 1477 semanticsContext->set_moduleDirectory(getModuleDir()) 1478 .set_searchDirectories(fortranOptions.searchDirectories) 1479 .set_intrinsicModuleDirectories(fortranOptions.intrinsicModuleDirectories) 1480 .set_warningsAreErrors(getWarnAsErr()) 1481 .set_moduleFileSuffix(getModuleFileSuffix()) 1482 .set_underscoring(getCodeGenOpts().Underscoring); 1483 1484 std::string compilerVersion = Fortran::common::getFlangFullVersion(); 1485 Fortran::tools::setUpTargetCharacteristics( 1486 semanticsContext->targetCharacteristics(), targetMachine, compilerVersion, 1487 allCompilerInvocOpts); 1488 return semanticsContext; 1489 } 1490 1491 /// Set \p loweringOptions controlling lowering behavior based 1492 /// on the \p optimizationLevel. 1493 void CompilerInvocation::setLoweringOptions() { 1494 const CodeGenOptions &codegenOpts = getCodeGenOpts(); 1495 1496 // Lower TRANSPOSE as a runtime call under -O0. 1497 loweringOpts.setOptimizeTranspose(codegenOpts.OptimizationLevel > 0); 1498 loweringOpts.setUnderscoring(codegenOpts.Underscoring); 1499 1500 const LangOptions &langOptions = getLangOpts(); 1501 Fortran::common::MathOptionsBase &mathOpts = loweringOpts.getMathOptions(); 1502 // TODO: when LangOptions are finalized, we can represent 1503 // the math related options using Fortran::commmon::MathOptionsBase, 1504 // so that we can just copy it into LoweringOptions. 1505 mathOpts 1506 .setFPContractEnabled(langOptions.getFPContractMode() == 1507 LangOptions::FPM_Fast) 1508 .setNoHonorInfs(langOptions.NoHonorInfs) 1509 .setNoHonorNaNs(langOptions.NoHonorNaNs) 1510 .setApproxFunc(langOptions.ApproxFunc) 1511 .setNoSignedZeros(langOptions.NoSignedZeros) 1512 .setAssociativeMath(langOptions.AssociativeMath) 1513 .setReciprocalMath(langOptions.ReciprocalMath); 1514 } 1515