1 //===--- Driver.cpp - Clang GCC Compatible Driver -------------------------===// 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 #include "clang/Driver/Driver.h" 10 #include "InputInfo.h" 11 #include "ToolChains/AIX.h" 12 #include "ToolChains/AMDGPU.h" 13 #include "ToolChains/AMDGPUOpenMP.h" 14 #include "ToolChains/AVR.h" 15 #include "ToolChains/Ananas.h" 16 #include "ToolChains/BareMetal.h" 17 #include "ToolChains/Clang.h" 18 #include "ToolChains/CloudABI.h" 19 #include "ToolChains/Contiki.h" 20 #include "ToolChains/CrossWindows.h" 21 #include "ToolChains/Cuda.h" 22 #include "ToolChains/Darwin.h" 23 #include "ToolChains/DragonFly.h" 24 #include "ToolChains/FreeBSD.h" 25 #include "ToolChains/Fuchsia.h" 26 #include "ToolChains/Gnu.h" 27 #include "ToolChains/HIP.h" 28 #include "ToolChains/Haiku.h" 29 #include "ToolChains/Hexagon.h" 30 #include "ToolChains/Hurd.h" 31 #include "ToolChains/Lanai.h" 32 #include "ToolChains/Linux.h" 33 #include "ToolChains/MSP430.h" 34 #include "ToolChains/MSVC.h" 35 #include "ToolChains/MinGW.h" 36 #include "ToolChains/Minix.h" 37 #include "ToolChains/MipsLinux.h" 38 #include "ToolChains/Myriad.h" 39 #include "ToolChains/NaCl.h" 40 #include "ToolChains/NetBSD.h" 41 #include "ToolChains/OpenBSD.h" 42 #include "ToolChains/PPCLinux.h" 43 #include "ToolChains/PS4CPU.h" 44 #include "ToolChains/RISCVToolchain.h" 45 #include "ToolChains/Solaris.h" 46 #include "ToolChains/TCE.h" 47 #include "ToolChains/VEToolchain.h" 48 #include "ToolChains/WebAssembly.h" 49 #include "ToolChains/XCore.h" 50 #include "ToolChains/ZOS.h" 51 #include "clang/Basic/TargetID.h" 52 #include "clang/Basic/Version.h" 53 #include "clang/Config/config.h" 54 #include "clang/Driver/Action.h" 55 #include "clang/Driver/Compilation.h" 56 #include "clang/Driver/DriverDiagnostic.h" 57 #include "clang/Driver/Job.h" 58 #include "clang/Driver/Options.h" 59 #include "clang/Driver/SanitizerArgs.h" 60 #include "clang/Driver/Tool.h" 61 #include "clang/Driver/ToolChain.h" 62 #include "llvm/ADT/ArrayRef.h" 63 #include "llvm/ADT/STLExtras.h" 64 #include "llvm/ADT/SmallSet.h" 65 #include "llvm/ADT/StringExtras.h" 66 #include "llvm/ADT/StringSet.h" 67 #include "llvm/ADT/StringSwitch.h" 68 #include "llvm/Config/llvm-config.h" 69 #include "llvm/Option/Arg.h" 70 #include "llvm/Option/ArgList.h" 71 #include "llvm/Option/OptSpecifier.h" 72 #include "llvm/Option/OptTable.h" 73 #include "llvm/Option/Option.h" 74 #include "llvm/Support/CommandLine.h" 75 #include "llvm/Support/ErrorHandling.h" 76 #include "llvm/Support/ExitCodes.h" 77 #include "llvm/Support/FileSystem.h" 78 #include "llvm/Support/FormatVariadic.h" 79 #include "llvm/Support/Host.h" 80 #include "llvm/Support/MD5.h" 81 #include "llvm/Support/Path.h" 82 #include "llvm/Support/PrettyStackTrace.h" 83 #include "llvm/Support/Process.h" 84 #include "llvm/Support/Program.h" 85 #include "llvm/Support/StringSaver.h" 86 #include "llvm/Support/TargetRegistry.h" 87 #include "llvm/Support/VirtualFileSystem.h" 88 #include "llvm/Support/raw_ostream.h" 89 #include <map> 90 #include <memory> 91 #include <utility> 92 #if LLVM_ON_UNIX 93 #include <unistd.h> // getpid 94 #endif 95 96 using namespace clang::driver; 97 using namespace clang; 98 using namespace llvm::opt; 99 100 static llvm::Triple getHIPOffloadTargetTriple() { 101 static const llvm::Triple T("amdgcn-amd-amdhsa"); 102 return T; 103 } 104 105 // static 106 std::string Driver::GetResourcesPath(StringRef BinaryPath, 107 StringRef CustomResourceDir) { 108 // Since the resource directory is embedded in the module hash, it's important 109 // that all places that need it call this function, so that they get the 110 // exact same string ("a/../b/" and "b/" get different hashes, for example). 111 112 // Dir is bin/ or lib/, depending on where BinaryPath is. 113 std::string Dir = std::string(llvm::sys::path::parent_path(BinaryPath)); 114 115 SmallString<128> P(Dir); 116 if (CustomResourceDir != "") { 117 llvm::sys::path::append(P, CustomResourceDir); 118 } else { 119 // On Windows, libclang.dll is in bin/. 120 // On non-Windows, libclang.so/.dylib is in lib/. 121 // With a static-library build of libclang, LibClangPath will contain the 122 // path of the embedding binary, which for LLVM binaries will be in bin/. 123 // ../lib gets us to lib/ in both cases. 124 P = llvm::sys::path::parent_path(Dir); 125 llvm::sys::path::append(P, Twine("lib") + CLANG_LIBDIR_SUFFIX, "clang", 126 CLANG_VERSION_STRING); 127 } 128 129 return std::string(P.str()); 130 } 131 132 Driver::Driver(StringRef ClangExecutable, StringRef TargetTriple, 133 DiagnosticsEngine &Diags, std::string Title, 134 IntrusiveRefCntPtr<llvm::vfs::FileSystem> VFS) 135 : Diags(Diags), VFS(std::move(VFS)), Mode(GCCMode), 136 SaveTemps(SaveTempsNone), BitcodeEmbed(EmbedNone), LTOMode(LTOK_None), 137 ClangExecutable(ClangExecutable), SysRoot(DEFAULT_SYSROOT), 138 DriverTitle(Title), CCPrintOptionsFilename(nullptr), 139 CCPrintHeadersFilename(nullptr), CCLogDiagnosticsFilename(nullptr), 140 CCCPrintBindings(false), CCPrintOptions(false), CCPrintHeaders(false), 141 CCLogDiagnostics(false), CCGenDiagnostics(false), 142 TargetTriple(TargetTriple), CCCGenericGCCName(""), Saver(Alloc), 143 CheckInputsExist(true), GenReproducer(false), 144 SuppressMissingInputWarning(false) { 145 // Provide a sane fallback if no VFS is specified. 146 if (!this->VFS) 147 this->VFS = llvm::vfs::getRealFileSystem(); 148 149 Name = std::string(llvm::sys::path::filename(ClangExecutable)); 150 Dir = std::string(llvm::sys::path::parent_path(ClangExecutable)); 151 InstalledDir = Dir; // Provide a sensible default installed dir. 152 153 if ((!SysRoot.empty()) && llvm::sys::path::is_relative(SysRoot)) { 154 // Prepend InstalledDir if SysRoot is relative 155 SmallString<128> P(InstalledDir); 156 llvm::sys::path::append(P, SysRoot); 157 SysRoot = std::string(P); 158 } 159 160 #if defined(CLANG_CONFIG_FILE_SYSTEM_DIR) 161 SystemConfigDir = CLANG_CONFIG_FILE_SYSTEM_DIR; 162 #endif 163 #if defined(CLANG_CONFIG_FILE_USER_DIR) 164 UserConfigDir = CLANG_CONFIG_FILE_USER_DIR; 165 #endif 166 167 // Compute the path to the resource directory. 168 ResourceDir = GetResourcesPath(ClangExecutable, CLANG_RESOURCE_DIR); 169 } 170 171 void Driver::ParseDriverMode(StringRef ProgramName, 172 ArrayRef<const char *> Args) { 173 if (ClangNameParts.isEmpty()) 174 ClangNameParts = ToolChain::getTargetAndModeFromProgramName(ProgramName); 175 setDriverModeFromOption(ClangNameParts.DriverMode); 176 177 for (const char *ArgPtr : Args) { 178 // Ignore nullptrs, they are the response file's EOL markers. 179 if (ArgPtr == nullptr) 180 continue; 181 const StringRef Arg = ArgPtr; 182 setDriverModeFromOption(Arg); 183 } 184 } 185 186 void Driver::setDriverModeFromOption(StringRef Opt) { 187 const std::string OptName = 188 getOpts().getOption(options::OPT_driver_mode).getPrefixedName(); 189 if (!Opt.startswith(OptName)) 190 return; 191 StringRef Value = Opt.drop_front(OptName.size()); 192 193 if (auto M = llvm::StringSwitch<llvm::Optional<DriverMode>>(Value) 194 .Case("gcc", GCCMode) 195 .Case("g++", GXXMode) 196 .Case("cpp", CPPMode) 197 .Case("cl", CLMode) 198 .Case("flang", FlangMode) 199 .Default(None)) 200 Mode = *M; 201 else 202 Diag(diag::err_drv_unsupported_option_argument) << OptName << Value; 203 } 204 205 InputArgList Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings, 206 bool IsClCompatMode, 207 bool &ContainsError) { 208 llvm::PrettyStackTraceString CrashInfo("Command line argument parsing"); 209 ContainsError = false; 210 211 unsigned IncludedFlagsBitmask; 212 unsigned ExcludedFlagsBitmask; 213 std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) = 214 getIncludeExcludeOptionFlagMasks(IsClCompatMode); 215 216 // Make sure that Flang-only options don't pollute the Clang output 217 // TODO: Make sure that Clang-only options don't pollute Flang output 218 if (!IsFlangMode()) 219 ExcludedFlagsBitmask |= options::FlangOnlyOption; 220 221 unsigned MissingArgIndex, MissingArgCount; 222 InputArgList Args = 223 getOpts().ParseArgs(ArgStrings, MissingArgIndex, MissingArgCount, 224 IncludedFlagsBitmask, ExcludedFlagsBitmask); 225 226 // Check for missing argument error. 227 if (MissingArgCount) { 228 Diag(diag::err_drv_missing_argument) 229 << Args.getArgString(MissingArgIndex) << MissingArgCount; 230 ContainsError |= 231 Diags.getDiagnosticLevel(diag::err_drv_missing_argument, 232 SourceLocation()) > DiagnosticsEngine::Warning; 233 } 234 235 // Check for unsupported options. 236 for (const Arg *A : Args) { 237 if (A->getOption().hasFlag(options::Unsupported)) { 238 unsigned DiagID; 239 auto ArgString = A->getAsString(Args); 240 std::string Nearest; 241 if (getOpts().findNearest( 242 ArgString, Nearest, IncludedFlagsBitmask, 243 ExcludedFlagsBitmask | options::Unsupported) > 1) { 244 DiagID = diag::err_drv_unsupported_opt; 245 Diag(DiagID) << ArgString; 246 } else { 247 DiagID = diag::err_drv_unsupported_opt_with_suggestion; 248 Diag(DiagID) << ArgString << Nearest; 249 } 250 ContainsError |= Diags.getDiagnosticLevel(DiagID, SourceLocation()) > 251 DiagnosticsEngine::Warning; 252 continue; 253 } 254 255 // Warn about -mcpu= without an argument. 256 if (A->getOption().matches(options::OPT_mcpu_EQ) && A->containsValue("")) { 257 Diag(diag::warn_drv_empty_joined_argument) << A->getAsString(Args); 258 ContainsError |= Diags.getDiagnosticLevel( 259 diag::warn_drv_empty_joined_argument, 260 SourceLocation()) > DiagnosticsEngine::Warning; 261 } 262 } 263 264 for (const Arg *A : Args.filtered(options::OPT_UNKNOWN)) { 265 unsigned DiagID; 266 auto ArgString = A->getAsString(Args); 267 std::string Nearest; 268 if (getOpts().findNearest( 269 ArgString, Nearest, IncludedFlagsBitmask, ExcludedFlagsBitmask) > 1) { 270 DiagID = IsCLMode() ? diag::warn_drv_unknown_argument_clang_cl 271 : diag::err_drv_unknown_argument; 272 Diags.Report(DiagID) << ArgString; 273 } else { 274 DiagID = IsCLMode() 275 ? diag::warn_drv_unknown_argument_clang_cl_with_suggestion 276 : diag::err_drv_unknown_argument_with_suggestion; 277 Diags.Report(DiagID) << ArgString << Nearest; 278 } 279 ContainsError |= Diags.getDiagnosticLevel(DiagID, SourceLocation()) > 280 DiagnosticsEngine::Warning; 281 } 282 283 return Args; 284 } 285 286 // Determine which compilation mode we are in. We look for options which 287 // affect the phase, starting with the earliest phases, and record which 288 // option we used to determine the final phase. 289 phases::ID Driver::getFinalPhase(const DerivedArgList &DAL, 290 Arg **FinalPhaseArg) const { 291 Arg *PhaseArg = nullptr; 292 phases::ID FinalPhase; 293 294 // -{E,EP,P,M,MM} only run the preprocessor. 295 if (CCCIsCPP() || (PhaseArg = DAL.getLastArg(options::OPT_E)) || 296 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_EP)) || 297 (PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM)) || 298 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_P))) { 299 FinalPhase = phases::Preprocess; 300 301 // --precompile only runs up to precompilation. 302 } else if ((PhaseArg = DAL.getLastArg(options::OPT__precompile))) { 303 FinalPhase = phases::Precompile; 304 305 // -{fsyntax-only,-analyze,emit-ast} only run up to the compiler. 306 } else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) || 307 (PhaseArg = DAL.getLastArg(options::OPT_print_supported_cpus)) || 308 (PhaseArg = DAL.getLastArg(options::OPT_module_file_info)) || 309 (PhaseArg = DAL.getLastArg(options::OPT_verify_pch)) || 310 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) || 311 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_legacy_objc)) || 312 (PhaseArg = DAL.getLastArg(options::OPT__migrate)) || 313 (PhaseArg = DAL.getLastArg(options::OPT__analyze)) || 314 (PhaseArg = DAL.getLastArg(options::OPT_emit_ast))) { 315 FinalPhase = phases::Compile; 316 317 // -S only runs up to the backend. 318 } else if ((PhaseArg = DAL.getLastArg(options::OPT_S))) { 319 FinalPhase = phases::Backend; 320 321 // -c compilation only runs up to the assembler. 322 } else if ((PhaseArg = DAL.getLastArg(options::OPT_c))) { 323 FinalPhase = phases::Assemble; 324 325 // Otherwise do everything. 326 } else 327 FinalPhase = phases::Link; 328 329 if (FinalPhaseArg) 330 *FinalPhaseArg = PhaseArg; 331 332 return FinalPhase; 333 } 334 335 static Arg *MakeInputArg(DerivedArgList &Args, const OptTable &Opts, 336 StringRef Value, bool Claim = true) { 337 Arg *A = new Arg(Opts.getOption(options::OPT_INPUT), Value, 338 Args.getBaseArgs().MakeIndex(Value), Value.data()); 339 Args.AddSynthesizedArg(A); 340 if (Claim) 341 A->claim(); 342 return A; 343 } 344 345 DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const { 346 const llvm::opt::OptTable &Opts = getOpts(); 347 DerivedArgList *DAL = new DerivedArgList(Args); 348 349 bool HasNostdlib = Args.hasArg(options::OPT_nostdlib); 350 bool HasNostdlibxx = Args.hasArg(options::OPT_nostdlibxx); 351 bool HasNodefaultlib = Args.hasArg(options::OPT_nodefaultlibs); 352 for (Arg *A : Args) { 353 // Unfortunately, we have to parse some forwarding options (-Xassembler, 354 // -Xlinker, -Xpreprocessor) because we either integrate their functionality 355 // (assembler and preprocessor), or bypass a previous driver ('collect2'). 356 357 // Rewrite linker options, to replace --no-demangle with a custom internal 358 // option. 359 if ((A->getOption().matches(options::OPT_Wl_COMMA) || 360 A->getOption().matches(options::OPT_Xlinker)) && 361 A->containsValue("--no-demangle")) { 362 // Add the rewritten no-demangle argument. 363 DAL->AddFlagArg(A, Opts.getOption(options::OPT_Z_Xlinker__no_demangle)); 364 365 // Add the remaining values as Xlinker arguments. 366 for (StringRef Val : A->getValues()) 367 if (Val != "--no-demangle") 368 DAL->AddSeparateArg(A, Opts.getOption(options::OPT_Xlinker), Val); 369 370 continue; 371 } 372 373 // Rewrite preprocessor options, to replace -Wp,-MD,FOO which is used by 374 // some build systems. We don't try to be complete here because we don't 375 // care to encourage this usage model. 376 if (A->getOption().matches(options::OPT_Wp_COMMA) && 377 (A->getValue(0) == StringRef("-MD") || 378 A->getValue(0) == StringRef("-MMD"))) { 379 // Rewrite to -MD/-MMD along with -MF. 380 if (A->getValue(0) == StringRef("-MD")) 381 DAL->AddFlagArg(A, Opts.getOption(options::OPT_MD)); 382 else 383 DAL->AddFlagArg(A, Opts.getOption(options::OPT_MMD)); 384 if (A->getNumValues() == 2) 385 DAL->AddSeparateArg(A, Opts.getOption(options::OPT_MF), A->getValue(1)); 386 continue; 387 } 388 389 // Rewrite reserved library names. 390 if (A->getOption().matches(options::OPT_l)) { 391 StringRef Value = A->getValue(); 392 393 // Rewrite unless -nostdlib is present. 394 if (!HasNostdlib && !HasNodefaultlib && !HasNostdlibxx && 395 Value == "stdc++") { 396 DAL->AddFlagArg(A, Opts.getOption(options::OPT_Z_reserved_lib_stdcxx)); 397 continue; 398 } 399 400 // Rewrite unconditionally. 401 if (Value == "cc_kext") { 402 DAL->AddFlagArg(A, Opts.getOption(options::OPT_Z_reserved_lib_cckext)); 403 continue; 404 } 405 } 406 407 // Pick up inputs via the -- option. 408 if (A->getOption().matches(options::OPT__DASH_DASH)) { 409 A->claim(); 410 for (StringRef Val : A->getValues()) 411 DAL->append(MakeInputArg(*DAL, Opts, Val, false)); 412 continue; 413 } 414 415 DAL->append(A); 416 } 417 418 // Enforce -static if -miamcu is present. 419 if (Args.hasFlag(options::OPT_miamcu, options::OPT_mno_iamcu, false)) 420 DAL->AddFlagArg(0, Opts.getOption(options::OPT_static)); 421 422 // Add a default value of -mlinker-version=, if one was given and the user 423 // didn't specify one. 424 #if defined(HOST_LINK_VERSION) 425 if (!Args.hasArg(options::OPT_mlinker_version_EQ) && 426 strlen(HOST_LINK_VERSION) > 0) { 427 DAL->AddJoinedArg(0, Opts.getOption(options::OPT_mlinker_version_EQ), 428 HOST_LINK_VERSION); 429 DAL->getLastArg(options::OPT_mlinker_version_EQ)->claim(); 430 } 431 #endif 432 433 return DAL; 434 } 435 436 /// Compute target triple from args. 437 /// 438 /// This routine provides the logic to compute a target triple from various 439 /// args passed to the driver and the default triple string. 440 static llvm::Triple computeTargetTriple(const Driver &D, 441 StringRef TargetTriple, 442 const ArgList &Args, 443 StringRef DarwinArchName = "") { 444 // FIXME: Already done in Compilation *Driver::BuildCompilation 445 if (const Arg *A = Args.getLastArg(options::OPT_target)) 446 TargetTriple = A->getValue(); 447 448 llvm::Triple Target(llvm::Triple::normalize(TargetTriple)); 449 450 // GNU/Hurd's triples should have been -hurd-gnu*, but were historically made 451 // -gnu* only, and we can not change this, so we have to detect that case as 452 // being the Hurd OS. 453 if (TargetTriple.find("-unknown-gnu") != StringRef::npos || 454 TargetTriple.find("-pc-gnu") != StringRef::npos) 455 Target.setOSName("hurd"); 456 457 // Handle Apple-specific options available here. 458 if (Target.isOSBinFormatMachO()) { 459 // If an explicit Darwin arch name is given, that trumps all. 460 if (!DarwinArchName.empty()) { 461 tools::darwin::setTripleTypeForMachOArchName(Target, DarwinArchName); 462 return Target; 463 } 464 465 // Handle the Darwin '-arch' flag. 466 if (Arg *A = Args.getLastArg(options::OPT_arch)) { 467 StringRef ArchName = A->getValue(); 468 tools::darwin::setTripleTypeForMachOArchName(Target, ArchName); 469 } 470 } 471 472 // Handle pseudo-target flags '-mlittle-endian'/'-EL' and 473 // '-mbig-endian'/'-EB'. 474 if (Arg *A = Args.getLastArg(options::OPT_mlittle_endian, 475 options::OPT_mbig_endian)) { 476 if (A->getOption().matches(options::OPT_mlittle_endian)) { 477 llvm::Triple LE = Target.getLittleEndianArchVariant(); 478 if (LE.getArch() != llvm::Triple::UnknownArch) 479 Target = std::move(LE); 480 } else { 481 llvm::Triple BE = Target.getBigEndianArchVariant(); 482 if (BE.getArch() != llvm::Triple::UnknownArch) 483 Target = std::move(BE); 484 } 485 } 486 487 // Skip further flag support on OSes which don't support '-m32' or '-m64'. 488 if (Target.getArch() == llvm::Triple::tce || 489 Target.getOS() == llvm::Triple::Minix) 490 return Target; 491 492 // On AIX, the env OBJECT_MODE may affect the resulting arch variant. 493 if (Target.isOSAIX()) { 494 if (Optional<std::string> ObjectModeValue = 495 llvm::sys::Process::GetEnv("OBJECT_MODE")) { 496 StringRef ObjectMode = *ObjectModeValue; 497 llvm::Triple::ArchType AT = llvm::Triple::UnknownArch; 498 499 if (ObjectMode.equals("64")) { 500 AT = Target.get64BitArchVariant().getArch(); 501 } else if (ObjectMode.equals("32")) { 502 AT = Target.get32BitArchVariant().getArch(); 503 } else { 504 D.Diag(diag::err_drv_invalid_object_mode) << ObjectMode; 505 } 506 507 if (AT != llvm::Triple::UnknownArch && AT != Target.getArch()) 508 Target.setArch(AT); 509 } 510 } 511 512 // Handle pseudo-target flags '-m64', '-mx32', '-m32' and '-m16'. 513 Arg *A = Args.getLastArg(options::OPT_m64, options::OPT_mx32, 514 options::OPT_m32, options::OPT_m16); 515 if (A) { 516 llvm::Triple::ArchType AT = llvm::Triple::UnknownArch; 517 518 if (A->getOption().matches(options::OPT_m64)) { 519 AT = Target.get64BitArchVariant().getArch(); 520 if (Target.getEnvironment() == llvm::Triple::GNUX32) 521 Target.setEnvironment(llvm::Triple::GNU); 522 } else if (A->getOption().matches(options::OPT_mx32) && 523 Target.get64BitArchVariant().getArch() == llvm::Triple::x86_64) { 524 AT = llvm::Triple::x86_64; 525 Target.setEnvironment(llvm::Triple::GNUX32); 526 } else if (A->getOption().matches(options::OPT_m32)) { 527 AT = Target.get32BitArchVariant().getArch(); 528 if (Target.getEnvironment() == llvm::Triple::GNUX32) 529 Target.setEnvironment(llvm::Triple::GNU); 530 } else if (A->getOption().matches(options::OPT_m16) && 531 Target.get32BitArchVariant().getArch() == llvm::Triple::x86) { 532 AT = llvm::Triple::x86; 533 Target.setEnvironment(llvm::Triple::CODE16); 534 } 535 536 if (AT != llvm::Triple::UnknownArch && AT != Target.getArch()) 537 Target.setArch(AT); 538 } 539 540 // Handle -miamcu flag. 541 if (Args.hasFlag(options::OPT_miamcu, options::OPT_mno_iamcu, false)) { 542 if (Target.get32BitArchVariant().getArch() != llvm::Triple::x86) 543 D.Diag(diag::err_drv_unsupported_opt_for_target) << "-miamcu" 544 << Target.str(); 545 546 if (A && !A->getOption().matches(options::OPT_m32)) 547 D.Diag(diag::err_drv_argument_not_allowed_with) 548 << "-miamcu" << A->getBaseArg().getAsString(Args); 549 550 Target.setArch(llvm::Triple::x86); 551 Target.setArchName("i586"); 552 Target.setEnvironment(llvm::Triple::UnknownEnvironment); 553 Target.setEnvironmentName(""); 554 Target.setOS(llvm::Triple::ELFIAMCU); 555 Target.setVendor(llvm::Triple::UnknownVendor); 556 Target.setVendorName("intel"); 557 } 558 559 // If target is MIPS adjust the target triple 560 // accordingly to provided ABI name. 561 A = Args.getLastArg(options::OPT_mabi_EQ); 562 if (A && Target.isMIPS()) { 563 StringRef ABIName = A->getValue(); 564 if (ABIName == "32") { 565 Target = Target.get32BitArchVariant(); 566 if (Target.getEnvironment() == llvm::Triple::GNUABI64 || 567 Target.getEnvironment() == llvm::Triple::GNUABIN32) 568 Target.setEnvironment(llvm::Triple::GNU); 569 } else if (ABIName == "n32") { 570 Target = Target.get64BitArchVariant(); 571 if (Target.getEnvironment() == llvm::Triple::GNU || 572 Target.getEnvironment() == llvm::Triple::GNUABI64) 573 Target.setEnvironment(llvm::Triple::GNUABIN32); 574 } else if (ABIName == "64") { 575 Target = Target.get64BitArchVariant(); 576 if (Target.getEnvironment() == llvm::Triple::GNU || 577 Target.getEnvironment() == llvm::Triple::GNUABIN32) 578 Target.setEnvironment(llvm::Triple::GNUABI64); 579 } 580 } 581 582 // If target is RISC-V adjust the target triple according to 583 // provided architecture name 584 A = Args.getLastArg(options::OPT_march_EQ); 585 if (A && Target.isRISCV()) { 586 StringRef ArchName = A->getValue(); 587 if (ArchName.startswith_lower("rv32")) 588 Target.setArch(llvm::Triple::riscv32); 589 else if (ArchName.startswith_lower("rv64")) 590 Target.setArch(llvm::Triple::riscv64); 591 } 592 593 return Target; 594 } 595 596 // Parse the LTO options and record the type of LTO compilation 597 // based on which -f(no-)?lto(=.*)? option occurs last. 598 void Driver::setLTOMode(const llvm::opt::ArgList &Args) { 599 LTOMode = LTOK_None; 600 if (!Args.hasFlag(options::OPT_flto, options::OPT_flto_EQ, 601 options::OPT_fno_lto, false)) 602 return; 603 604 StringRef LTOName("full"); 605 606 const Arg *A = Args.getLastArg(options::OPT_flto_EQ); 607 if (A) 608 LTOName = A->getValue(); 609 610 LTOMode = llvm::StringSwitch<LTOKind>(LTOName) 611 .Case("full", LTOK_Full) 612 .Case("thin", LTOK_Thin) 613 .Default(LTOK_Unknown); 614 615 if (LTOMode == LTOK_Unknown) { 616 assert(A); 617 Diag(diag::err_drv_unsupported_option_argument) << A->getOption().getName() 618 << A->getValue(); 619 } 620 } 621 622 /// Compute the desired OpenMP runtime from the flags provided. 623 Driver::OpenMPRuntimeKind Driver::getOpenMPRuntime(const ArgList &Args) const { 624 StringRef RuntimeName(CLANG_DEFAULT_OPENMP_RUNTIME); 625 626 const Arg *A = Args.getLastArg(options::OPT_fopenmp_EQ); 627 if (A) 628 RuntimeName = A->getValue(); 629 630 auto RT = llvm::StringSwitch<OpenMPRuntimeKind>(RuntimeName) 631 .Case("libomp", OMPRT_OMP) 632 .Case("libgomp", OMPRT_GOMP) 633 .Case("libiomp5", OMPRT_IOMP5) 634 .Default(OMPRT_Unknown); 635 636 if (RT == OMPRT_Unknown) { 637 if (A) 638 Diag(diag::err_drv_unsupported_option_argument) 639 << A->getOption().getName() << A->getValue(); 640 else 641 // FIXME: We could use a nicer diagnostic here. 642 Diag(diag::err_drv_unsupported_opt) << "-fopenmp"; 643 } 644 645 return RT; 646 } 647 648 void Driver::CreateOffloadingDeviceToolChains(Compilation &C, 649 InputList &Inputs) { 650 651 // 652 // CUDA/HIP 653 // 654 // We need to generate a CUDA/HIP toolchain if any of the inputs has a CUDA 655 // or HIP type. However, mixed CUDA/HIP compilation is not supported. 656 bool IsCuda = 657 llvm::any_of(Inputs, [](std::pair<types::ID, const llvm::opt::Arg *> &I) { 658 return types::isCuda(I.first); 659 }); 660 bool IsHIP = 661 llvm::any_of(Inputs, 662 [](std::pair<types::ID, const llvm::opt::Arg *> &I) { 663 return types::isHIP(I.first); 664 }) || 665 C.getInputArgs().hasArg(options::OPT_hip_link); 666 if (IsCuda && IsHIP) { 667 Diag(clang::diag::err_drv_mix_cuda_hip); 668 return; 669 } 670 if (IsCuda) { 671 const ToolChain *HostTC = C.getSingleOffloadToolChain<Action::OFK_Host>(); 672 const llvm::Triple &HostTriple = HostTC->getTriple(); 673 StringRef DeviceTripleStr; 674 auto OFK = Action::OFK_Cuda; 675 DeviceTripleStr = 676 HostTriple.isArch64Bit() ? "nvptx64-nvidia-cuda" : "nvptx-nvidia-cuda"; 677 llvm::Triple CudaTriple(DeviceTripleStr); 678 // Use the CUDA and host triples as the key into the ToolChains map, 679 // because the device toolchain we create depends on both. 680 auto &CudaTC = ToolChains[CudaTriple.str() + "/" + HostTriple.str()]; 681 if (!CudaTC) { 682 CudaTC = std::make_unique<toolchains::CudaToolChain>( 683 *this, CudaTriple, *HostTC, C.getInputArgs(), OFK); 684 } 685 C.addOffloadDeviceToolChain(CudaTC.get(), OFK); 686 } else if (IsHIP) { 687 const ToolChain *HostTC = C.getSingleOffloadToolChain<Action::OFK_Host>(); 688 const llvm::Triple &HostTriple = HostTC->getTriple(); 689 auto OFK = Action::OFK_HIP; 690 llvm::Triple HIPTriple = getHIPOffloadTargetTriple(); 691 // Use the HIP and host triples as the key into the ToolChains map, 692 // because the device toolchain we create depends on both. 693 auto &HIPTC = ToolChains[HIPTriple.str() + "/" + HostTriple.str()]; 694 if (!HIPTC) { 695 HIPTC = std::make_unique<toolchains::HIPToolChain>( 696 *this, HIPTriple, *HostTC, C.getInputArgs()); 697 } 698 C.addOffloadDeviceToolChain(HIPTC.get(), OFK); 699 } 700 701 // 702 // OpenMP 703 // 704 // We need to generate an OpenMP toolchain if the user specified targets with 705 // the -fopenmp-targets option. 706 if (Arg *OpenMPTargets = 707 C.getInputArgs().getLastArg(options::OPT_fopenmp_targets_EQ)) { 708 if (OpenMPTargets->getNumValues()) { 709 // We expect that -fopenmp-targets is always used in conjunction with the 710 // option -fopenmp specifying a valid runtime with offloading support, 711 // i.e. libomp or libiomp. 712 bool HasValidOpenMPRuntime = C.getInputArgs().hasFlag( 713 options::OPT_fopenmp, options::OPT_fopenmp_EQ, 714 options::OPT_fno_openmp, false); 715 if (HasValidOpenMPRuntime) { 716 OpenMPRuntimeKind OpenMPKind = getOpenMPRuntime(C.getInputArgs()); 717 HasValidOpenMPRuntime = 718 OpenMPKind == OMPRT_OMP || OpenMPKind == OMPRT_IOMP5; 719 } 720 721 if (HasValidOpenMPRuntime) { 722 llvm::StringMap<const char *> FoundNormalizedTriples; 723 for (const char *Val : OpenMPTargets->getValues()) { 724 llvm::Triple TT(Val); 725 std::string NormalizedName = TT.normalize(); 726 727 // Make sure we don't have a duplicate triple. 728 auto Duplicate = FoundNormalizedTriples.find(NormalizedName); 729 if (Duplicate != FoundNormalizedTriples.end()) { 730 Diag(clang::diag::warn_drv_omp_offload_target_duplicate) 731 << Val << Duplicate->second; 732 continue; 733 } 734 735 // Store the current triple so that we can check for duplicates in the 736 // following iterations. 737 FoundNormalizedTriples[NormalizedName] = Val; 738 739 // If the specified target is invalid, emit a diagnostic. 740 if (TT.getArch() == llvm::Triple::UnknownArch) 741 Diag(clang::diag::err_drv_invalid_omp_target) << Val; 742 else { 743 const ToolChain *TC; 744 // Device toolchains have to be selected differently. They pair host 745 // and device in their implementation. 746 if (TT.isNVPTX() || TT.isAMDGCN()) { 747 const ToolChain *HostTC = 748 C.getSingleOffloadToolChain<Action::OFK_Host>(); 749 assert(HostTC && "Host toolchain should be always defined."); 750 auto &DeviceTC = 751 ToolChains[TT.str() + "/" + HostTC->getTriple().normalize()]; 752 if (!DeviceTC) { 753 if (TT.isNVPTX()) 754 DeviceTC = std::make_unique<toolchains::CudaToolChain>( 755 *this, TT, *HostTC, C.getInputArgs(), Action::OFK_OpenMP); 756 else if (TT.isAMDGCN()) 757 DeviceTC = 758 std::make_unique<toolchains::AMDGPUOpenMPToolChain>( 759 *this, TT, *HostTC, C.getInputArgs()); 760 else 761 assert(DeviceTC && "Device toolchain not defined."); 762 } 763 764 TC = DeviceTC.get(); 765 } else 766 TC = &getToolChain(C.getInputArgs(), TT); 767 C.addOffloadDeviceToolChain(TC, Action::OFK_OpenMP); 768 } 769 } 770 } else 771 Diag(clang::diag::err_drv_expecting_fopenmp_with_fopenmp_targets); 772 } else 773 Diag(clang::diag::warn_drv_empty_joined_argument) 774 << OpenMPTargets->getAsString(C.getInputArgs()); 775 } 776 777 // 778 // TODO: Add support for other offloading programming models here. 779 // 780 } 781 782 /// Looks the given directories for the specified file. 783 /// 784 /// \param[out] FilePath File path, if the file was found. 785 /// \param[in] Dirs Directories used for the search. 786 /// \param[in] FileName Name of the file to search for. 787 /// \return True if file was found. 788 /// 789 /// Looks for file specified by FileName sequentially in directories specified 790 /// by Dirs. 791 /// 792 static bool searchForFile(SmallVectorImpl<char> &FilePath, 793 ArrayRef<StringRef> Dirs, StringRef FileName) { 794 SmallString<128> WPath; 795 for (const StringRef &Dir : Dirs) { 796 if (Dir.empty()) 797 continue; 798 WPath.clear(); 799 llvm::sys::path::append(WPath, Dir, FileName); 800 llvm::sys::path::native(WPath); 801 if (llvm::sys::fs::is_regular_file(WPath)) { 802 FilePath = std::move(WPath); 803 return true; 804 } 805 } 806 return false; 807 } 808 809 bool Driver::readConfigFile(StringRef FileName) { 810 // Try reading the given file. 811 SmallVector<const char *, 32> NewCfgArgs; 812 if (!llvm::cl::readConfigFile(FileName, Saver, NewCfgArgs)) { 813 Diag(diag::err_drv_cannot_read_config_file) << FileName; 814 return true; 815 } 816 817 // Read options from config file. 818 llvm::SmallString<128> CfgFileName(FileName); 819 llvm::sys::path::native(CfgFileName); 820 ConfigFile = std::string(CfgFileName); 821 bool ContainErrors; 822 CfgOptions = std::make_unique<InputArgList>( 823 ParseArgStrings(NewCfgArgs, IsCLMode(), ContainErrors)); 824 if (ContainErrors) { 825 CfgOptions.reset(); 826 return true; 827 } 828 829 if (CfgOptions->hasArg(options::OPT_config)) { 830 CfgOptions.reset(); 831 Diag(diag::err_drv_nested_config_file); 832 return true; 833 } 834 835 // Claim all arguments that come from a configuration file so that the driver 836 // does not warn on any that is unused. 837 for (Arg *A : *CfgOptions) 838 A->claim(); 839 return false; 840 } 841 842 bool Driver::loadConfigFile() { 843 std::string CfgFileName; 844 bool FileSpecifiedExplicitly = false; 845 846 // Process options that change search path for config files. 847 if (CLOptions) { 848 if (CLOptions->hasArg(options::OPT_config_system_dir_EQ)) { 849 SmallString<128> CfgDir; 850 CfgDir.append( 851 CLOptions->getLastArgValue(options::OPT_config_system_dir_EQ)); 852 if (!CfgDir.empty()) { 853 if (llvm::sys::fs::make_absolute(CfgDir).value() != 0) 854 SystemConfigDir.clear(); 855 else 856 SystemConfigDir = std::string(CfgDir.begin(), CfgDir.end()); 857 } 858 } 859 if (CLOptions->hasArg(options::OPT_config_user_dir_EQ)) { 860 SmallString<128> CfgDir; 861 CfgDir.append( 862 CLOptions->getLastArgValue(options::OPT_config_user_dir_EQ)); 863 if (!CfgDir.empty()) { 864 if (llvm::sys::fs::make_absolute(CfgDir).value() != 0) 865 UserConfigDir.clear(); 866 else 867 UserConfigDir = std::string(CfgDir.begin(), CfgDir.end()); 868 } 869 } 870 } 871 872 // First try to find config file specified in command line. 873 if (CLOptions) { 874 std::vector<std::string> ConfigFiles = 875 CLOptions->getAllArgValues(options::OPT_config); 876 if (ConfigFiles.size() > 1) { 877 if (!std::all_of(ConfigFiles.begin(), ConfigFiles.end(), 878 [ConfigFiles](const std::string &s) { 879 return s == ConfigFiles[0]; 880 })) { 881 Diag(diag::err_drv_duplicate_config); 882 return true; 883 } 884 } 885 886 if (!ConfigFiles.empty()) { 887 CfgFileName = ConfigFiles.front(); 888 assert(!CfgFileName.empty()); 889 890 // If argument contains directory separator, treat it as a path to 891 // configuration file. 892 if (llvm::sys::path::has_parent_path(CfgFileName)) { 893 SmallString<128> CfgFilePath; 894 if (llvm::sys::path::is_relative(CfgFileName)) 895 llvm::sys::fs::current_path(CfgFilePath); 896 llvm::sys::path::append(CfgFilePath, CfgFileName); 897 if (!llvm::sys::fs::is_regular_file(CfgFilePath)) { 898 Diag(diag::err_drv_config_file_not_exist) << CfgFilePath; 899 return true; 900 } 901 return readConfigFile(CfgFilePath); 902 } 903 904 FileSpecifiedExplicitly = true; 905 } 906 } 907 908 // If config file is not specified explicitly, try to deduce configuration 909 // from executable name. For instance, an executable 'armv7l-clang' will 910 // search for config file 'armv7l-clang.cfg'. 911 if (CfgFileName.empty() && !ClangNameParts.TargetPrefix.empty()) 912 CfgFileName = ClangNameParts.TargetPrefix + '-' + ClangNameParts.ModeSuffix; 913 914 if (CfgFileName.empty()) 915 return false; 916 917 // Determine architecture part of the file name, if it is present. 918 StringRef CfgFileArch = CfgFileName; 919 size_t ArchPrefixLen = CfgFileArch.find('-'); 920 if (ArchPrefixLen == StringRef::npos) 921 ArchPrefixLen = CfgFileArch.size(); 922 llvm::Triple CfgTriple; 923 CfgFileArch = CfgFileArch.take_front(ArchPrefixLen); 924 CfgTriple = llvm::Triple(llvm::Triple::normalize(CfgFileArch)); 925 if (CfgTriple.getArch() == llvm::Triple::ArchType::UnknownArch) 926 ArchPrefixLen = 0; 927 928 if (!StringRef(CfgFileName).endswith(".cfg")) 929 CfgFileName += ".cfg"; 930 931 // If config file starts with architecture name and command line options 932 // redefine architecture (with options like -m32 -LE etc), try finding new 933 // config file with that architecture. 934 SmallString<128> FixedConfigFile; 935 size_t FixedArchPrefixLen = 0; 936 if (ArchPrefixLen) { 937 // Get architecture name from config file name like 'i386.cfg' or 938 // 'armv7l-clang.cfg'. 939 // Check if command line options changes effective triple. 940 llvm::Triple EffectiveTriple = computeTargetTriple(*this, 941 CfgTriple.getTriple(), *CLOptions); 942 if (CfgTriple.getArch() != EffectiveTriple.getArch()) { 943 FixedConfigFile = EffectiveTriple.getArchName(); 944 FixedArchPrefixLen = FixedConfigFile.size(); 945 // Append the rest of original file name so that file name transforms 946 // like: i386-clang.cfg -> x86_64-clang.cfg. 947 if (ArchPrefixLen < CfgFileName.size()) 948 FixedConfigFile += CfgFileName.substr(ArchPrefixLen); 949 } 950 } 951 952 // Prepare list of directories where config file is searched for. 953 StringRef CfgFileSearchDirs[] = {UserConfigDir, SystemConfigDir, Dir}; 954 955 // Try to find config file. First try file with corrected architecture. 956 llvm::SmallString<128> CfgFilePath; 957 if (!FixedConfigFile.empty()) { 958 if (searchForFile(CfgFilePath, CfgFileSearchDirs, FixedConfigFile)) 959 return readConfigFile(CfgFilePath); 960 // If 'x86_64-clang.cfg' was not found, try 'x86_64.cfg'. 961 FixedConfigFile.resize(FixedArchPrefixLen); 962 FixedConfigFile.append(".cfg"); 963 if (searchForFile(CfgFilePath, CfgFileSearchDirs, FixedConfigFile)) 964 return readConfigFile(CfgFilePath); 965 } 966 967 // Then try original file name. 968 if (searchForFile(CfgFilePath, CfgFileSearchDirs, CfgFileName)) 969 return readConfigFile(CfgFilePath); 970 971 // Finally try removing driver mode part: 'x86_64-clang.cfg' -> 'x86_64.cfg'. 972 if (!ClangNameParts.ModeSuffix.empty() && 973 !ClangNameParts.TargetPrefix.empty()) { 974 CfgFileName.assign(ClangNameParts.TargetPrefix); 975 CfgFileName.append(".cfg"); 976 if (searchForFile(CfgFilePath, CfgFileSearchDirs, CfgFileName)) 977 return readConfigFile(CfgFilePath); 978 } 979 980 // Report error but only if config file was specified explicitly, by option 981 // --config. If it was deduced from executable name, it is not an error. 982 if (FileSpecifiedExplicitly) { 983 Diag(diag::err_drv_config_file_not_found) << CfgFileName; 984 for (const StringRef &SearchDir : CfgFileSearchDirs) 985 if (!SearchDir.empty()) 986 Diag(diag::note_drv_config_file_searched_in) << SearchDir; 987 return true; 988 } 989 990 return false; 991 } 992 993 Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) { 994 llvm::PrettyStackTraceString CrashInfo("Compilation construction"); 995 996 // FIXME: Handle environment options which affect driver behavior, somewhere 997 // (client?). GCC_EXEC_PREFIX, LPATH, CC_PRINT_OPTIONS. 998 999 // We look for the driver mode option early, because the mode can affect 1000 // how other options are parsed. 1001 ParseDriverMode(ClangExecutable, ArgList.slice(1)); 1002 1003 // FIXME: What are we going to do with -V and -b? 1004 1005 // Arguments specified in command line. 1006 bool ContainsError; 1007 CLOptions = std::make_unique<InputArgList>( 1008 ParseArgStrings(ArgList.slice(1), IsCLMode(), ContainsError)); 1009 1010 // Try parsing configuration file. 1011 if (!ContainsError) 1012 ContainsError = loadConfigFile(); 1013 bool HasConfigFile = !ContainsError && (CfgOptions.get() != nullptr); 1014 1015 // All arguments, from both config file and command line. 1016 InputArgList Args = std::move(HasConfigFile ? std::move(*CfgOptions) 1017 : std::move(*CLOptions)); 1018 1019 // The args for config files or /clang: flags belong to different InputArgList 1020 // objects than Args. This copies an Arg from one of those other InputArgLists 1021 // to the ownership of Args. 1022 auto appendOneArg = [&Args](const Arg *Opt, const Arg *BaseArg) { 1023 unsigned Index = Args.MakeIndex(Opt->getSpelling()); 1024 Arg *Copy = new llvm::opt::Arg(Opt->getOption(), Args.getArgString(Index), 1025 Index, BaseArg); 1026 Copy->getValues() = Opt->getValues(); 1027 if (Opt->isClaimed()) 1028 Copy->claim(); 1029 Copy->setOwnsValues(Opt->getOwnsValues()); 1030 Opt->setOwnsValues(false); 1031 Args.append(Copy); 1032 }; 1033 1034 if (HasConfigFile) 1035 for (auto *Opt : *CLOptions) { 1036 if (Opt->getOption().matches(options::OPT_config)) 1037 continue; 1038 const Arg *BaseArg = &Opt->getBaseArg(); 1039 if (BaseArg == Opt) 1040 BaseArg = nullptr; 1041 appendOneArg(Opt, BaseArg); 1042 } 1043 1044 // In CL mode, look for any pass-through arguments 1045 if (IsCLMode() && !ContainsError) { 1046 SmallVector<const char *, 16> CLModePassThroughArgList; 1047 for (const auto *A : Args.filtered(options::OPT__SLASH_clang)) { 1048 A->claim(); 1049 CLModePassThroughArgList.push_back(A->getValue()); 1050 } 1051 1052 if (!CLModePassThroughArgList.empty()) { 1053 // Parse any pass through args using default clang processing rather 1054 // than clang-cl processing. 1055 auto CLModePassThroughOptions = std::make_unique<InputArgList>( 1056 ParseArgStrings(CLModePassThroughArgList, false, ContainsError)); 1057 1058 if (!ContainsError) 1059 for (auto *Opt : *CLModePassThroughOptions) { 1060 appendOneArg(Opt, nullptr); 1061 } 1062 } 1063 } 1064 1065 // Check for working directory option before accessing any files 1066 if (Arg *WD = Args.getLastArg(options::OPT_working_directory)) 1067 if (VFS->setCurrentWorkingDirectory(WD->getValue())) 1068 Diag(diag::err_drv_unable_to_set_working_directory) << WD->getValue(); 1069 1070 // FIXME: This stuff needs to go into the Compilation, not the driver. 1071 bool CCCPrintPhases; 1072 1073 // Silence driver warnings if requested 1074 Diags.setIgnoreAllWarnings(Args.hasArg(options::OPT_w)); 1075 1076 // -no-canonical-prefixes is used very early in main. 1077 Args.ClaimAllArgs(options::OPT_no_canonical_prefixes); 1078 1079 // f(no-)integated-cc1 is also used very early in main. 1080 Args.ClaimAllArgs(options::OPT_fintegrated_cc1); 1081 Args.ClaimAllArgs(options::OPT_fno_integrated_cc1); 1082 1083 // Ignore -pipe. 1084 Args.ClaimAllArgs(options::OPT_pipe); 1085 1086 // Extract -ccc args. 1087 // 1088 // FIXME: We need to figure out where this behavior should live. Most of it 1089 // should be outside in the client; the parts that aren't should have proper 1090 // options, either by introducing new ones or by overloading gcc ones like -V 1091 // or -b. 1092 CCCPrintPhases = Args.hasArg(options::OPT_ccc_print_phases); 1093 CCCPrintBindings = Args.hasArg(options::OPT_ccc_print_bindings); 1094 if (const Arg *A = Args.getLastArg(options::OPT_ccc_gcc_name)) 1095 CCCGenericGCCName = A->getValue(); 1096 GenReproducer = Args.hasFlag(options::OPT_gen_reproducer, 1097 options::OPT_fno_crash_diagnostics, 1098 !!::getenv("FORCE_CLANG_DIAGNOSTICS_CRASH")); 1099 // FIXME: TargetTriple is used by the target-prefixed calls to as/ld 1100 // and getToolChain is const. 1101 if (IsCLMode()) { 1102 // clang-cl targets MSVC-style Win32. 1103 llvm::Triple T(TargetTriple); 1104 T.setOS(llvm::Triple::Win32); 1105 T.setVendor(llvm::Triple::PC); 1106 T.setEnvironment(llvm::Triple::MSVC); 1107 T.setObjectFormat(llvm::Triple::COFF); 1108 TargetTriple = T.str(); 1109 } 1110 if (const Arg *A = Args.getLastArg(options::OPT_target)) 1111 TargetTriple = A->getValue(); 1112 if (const Arg *A = Args.getLastArg(options::OPT_ccc_install_dir)) 1113 Dir = InstalledDir = A->getValue(); 1114 for (const Arg *A : Args.filtered(options::OPT_B)) { 1115 A->claim(); 1116 PrefixDirs.push_back(A->getValue(0)); 1117 } 1118 if (Optional<std::string> CompilerPathValue = 1119 llvm::sys::Process::GetEnv("COMPILER_PATH")) { 1120 StringRef CompilerPath = *CompilerPathValue; 1121 while (!CompilerPath.empty()) { 1122 std::pair<StringRef, StringRef> Split = 1123 CompilerPath.split(llvm::sys::EnvPathSeparator); 1124 PrefixDirs.push_back(std::string(Split.first)); 1125 CompilerPath = Split.second; 1126 } 1127 } 1128 if (const Arg *A = Args.getLastArg(options::OPT__sysroot_EQ)) 1129 SysRoot = A->getValue(); 1130 if (const Arg *A = Args.getLastArg(options::OPT__dyld_prefix_EQ)) 1131 DyldPrefix = A->getValue(); 1132 1133 if (const Arg *A = Args.getLastArg(options::OPT_resource_dir)) 1134 ResourceDir = A->getValue(); 1135 1136 if (const Arg *A = Args.getLastArg(options::OPT_save_temps_EQ)) { 1137 SaveTemps = llvm::StringSwitch<SaveTempsMode>(A->getValue()) 1138 .Case("cwd", SaveTempsCwd) 1139 .Case("obj", SaveTempsObj) 1140 .Default(SaveTempsCwd); 1141 } 1142 1143 setLTOMode(Args); 1144 1145 // Process -fembed-bitcode= flags. 1146 if (Arg *A = Args.getLastArg(options::OPT_fembed_bitcode_EQ)) { 1147 StringRef Name = A->getValue(); 1148 unsigned Model = llvm::StringSwitch<unsigned>(Name) 1149 .Case("off", EmbedNone) 1150 .Case("all", EmbedBitcode) 1151 .Case("bitcode", EmbedBitcode) 1152 .Case("marker", EmbedMarker) 1153 .Default(~0U); 1154 if (Model == ~0U) { 1155 Diags.Report(diag::err_drv_invalid_value) << A->getAsString(Args) 1156 << Name; 1157 } else 1158 BitcodeEmbed = static_cast<BitcodeEmbedMode>(Model); 1159 } 1160 1161 std::unique_ptr<llvm::opt::InputArgList> UArgs = 1162 std::make_unique<InputArgList>(std::move(Args)); 1163 1164 // Perform the default argument translations. 1165 DerivedArgList *TranslatedArgs = TranslateInputArgs(*UArgs); 1166 1167 // Owned by the host. 1168 const ToolChain &TC = getToolChain( 1169 *UArgs, computeTargetTriple(*this, TargetTriple, *UArgs)); 1170 1171 // The compilation takes ownership of Args. 1172 Compilation *C = new Compilation(*this, TC, UArgs.release(), TranslatedArgs, 1173 ContainsError); 1174 1175 if (!HandleImmediateArgs(*C)) 1176 return C; 1177 1178 // Construct the list of inputs. 1179 InputList Inputs; 1180 BuildInputs(C->getDefaultToolChain(), *TranslatedArgs, Inputs); 1181 1182 // Populate the tool chains for the offloading devices, if any. 1183 CreateOffloadingDeviceToolChains(*C, Inputs); 1184 1185 // Construct the list of abstract actions to perform for this compilation. On 1186 // MachO targets this uses the driver-driver and universal actions. 1187 if (TC.getTriple().isOSBinFormatMachO()) 1188 BuildUniversalActions(*C, C->getDefaultToolChain(), Inputs); 1189 else 1190 BuildActions(*C, C->getArgs(), Inputs, C->getActions()); 1191 1192 if (CCCPrintPhases) { 1193 PrintActions(*C); 1194 return C; 1195 } 1196 1197 BuildJobs(*C); 1198 1199 return C; 1200 } 1201 1202 static void printArgList(raw_ostream &OS, const llvm::opt::ArgList &Args) { 1203 llvm::opt::ArgStringList ASL; 1204 for (const auto *A : Args) 1205 A->render(Args, ASL); 1206 1207 for (auto I = ASL.begin(), E = ASL.end(); I != E; ++I) { 1208 if (I != ASL.begin()) 1209 OS << ' '; 1210 llvm::sys::printArg(OS, *I, true); 1211 } 1212 OS << '\n'; 1213 } 1214 1215 bool Driver::getCrashDiagnosticFile(StringRef ReproCrashFilename, 1216 SmallString<128> &CrashDiagDir) { 1217 using namespace llvm::sys; 1218 assert(llvm::Triple(llvm::sys::getProcessTriple()).isOSDarwin() && 1219 "Only knows about .crash files on Darwin"); 1220 1221 // The .crash file can be found on at ~/Library/Logs/DiagnosticReports/ 1222 // (or /Library/Logs/DiagnosticReports for root) and has the filename pattern 1223 // clang-<VERSION>_<YYYY-MM-DD-HHMMSS>_<hostname>.crash. 1224 path::home_directory(CrashDiagDir); 1225 if (CrashDiagDir.startswith("/var/root")) 1226 CrashDiagDir = "/"; 1227 path::append(CrashDiagDir, "Library/Logs/DiagnosticReports"); 1228 int PID = 1229 #if LLVM_ON_UNIX 1230 getpid(); 1231 #else 1232 0; 1233 #endif 1234 std::error_code EC; 1235 fs::file_status FileStatus; 1236 TimePoint<> LastAccessTime; 1237 SmallString<128> CrashFilePath; 1238 // Lookup the .crash files and get the one generated by a subprocess spawned 1239 // by this driver invocation. 1240 for (fs::directory_iterator File(CrashDiagDir, EC), FileEnd; 1241 File != FileEnd && !EC; File.increment(EC)) { 1242 StringRef FileName = path::filename(File->path()); 1243 if (!FileName.startswith(Name)) 1244 continue; 1245 if (fs::status(File->path(), FileStatus)) 1246 continue; 1247 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> CrashFile = 1248 llvm::MemoryBuffer::getFile(File->path()); 1249 if (!CrashFile) 1250 continue; 1251 // The first line should start with "Process:", otherwise this isn't a real 1252 // .crash file. 1253 StringRef Data = CrashFile.get()->getBuffer(); 1254 if (!Data.startswith("Process:")) 1255 continue; 1256 // Parse parent process pid line, e.g: "Parent Process: clang-4.0 [79141]" 1257 size_t ParentProcPos = Data.find("Parent Process:"); 1258 if (ParentProcPos == StringRef::npos) 1259 continue; 1260 size_t LineEnd = Data.find_first_of("\n", ParentProcPos); 1261 if (LineEnd == StringRef::npos) 1262 continue; 1263 StringRef ParentProcess = Data.slice(ParentProcPos+15, LineEnd).trim(); 1264 int OpenBracket = -1, CloseBracket = -1; 1265 for (size_t i = 0, e = ParentProcess.size(); i < e; ++i) { 1266 if (ParentProcess[i] == '[') 1267 OpenBracket = i; 1268 if (ParentProcess[i] == ']') 1269 CloseBracket = i; 1270 } 1271 // Extract the parent process PID from the .crash file and check whether 1272 // it matches this driver invocation pid. 1273 int CrashPID; 1274 if (OpenBracket < 0 || CloseBracket < 0 || 1275 ParentProcess.slice(OpenBracket + 1, CloseBracket) 1276 .getAsInteger(10, CrashPID) || CrashPID != PID) { 1277 continue; 1278 } 1279 1280 // Found a .crash file matching the driver pid. To avoid getting an older 1281 // and misleading crash file, continue looking for the most recent. 1282 // FIXME: the driver can dispatch multiple cc1 invocations, leading to 1283 // multiple crashes poiting to the same parent process. Since the driver 1284 // does not collect pid information for the dispatched invocation there's 1285 // currently no way to distinguish among them. 1286 const auto FileAccessTime = FileStatus.getLastModificationTime(); 1287 if (FileAccessTime > LastAccessTime) { 1288 CrashFilePath.assign(File->path()); 1289 LastAccessTime = FileAccessTime; 1290 } 1291 } 1292 1293 // If found, copy it over to the location of other reproducer files. 1294 if (!CrashFilePath.empty()) { 1295 EC = fs::copy_file(CrashFilePath, ReproCrashFilename); 1296 if (EC) 1297 return false; 1298 return true; 1299 } 1300 1301 return false; 1302 } 1303 1304 // When clang crashes, produce diagnostic information including the fully 1305 // preprocessed source file(s). Request that the developer attach the 1306 // diagnostic information to a bug report. 1307 void Driver::generateCompilationDiagnostics( 1308 Compilation &C, const Command &FailingCommand, 1309 StringRef AdditionalInformation, CompilationDiagnosticReport *Report) { 1310 if (C.getArgs().hasArg(options::OPT_fno_crash_diagnostics)) 1311 return; 1312 1313 // Don't try to generate diagnostics for link or dsymutil jobs. 1314 if (FailingCommand.getCreator().isLinkJob() || 1315 FailingCommand.getCreator().isDsymutilJob()) 1316 return; 1317 1318 // Print the version of the compiler. 1319 PrintVersion(C, llvm::errs()); 1320 1321 // Suppress driver output and emit preprocessor output to temp file. 1322 Mode = CPPMode; 1323 CCGenDiagnostics = true; 1324 1325 // Save the original job command(s). 1326 Command Cmd = FailingCommand; 1327 1328 // Keep track of whether we produce any errors while trying to produce 1329 // preprocessed sources. 1330 DiagnosticErrorTrap Trap(Diags); 1331 1332 // Suppress tool output. 1333 C.initCompilationForDiagnostics(); 1334 1335 // Construct the list of inputs. 1336 InputList Inputs; 1337 BuildInputs(C.getDefaultToolChain(), C.getArgs(), Inputs); 1338 1339 for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) { 1340 bool IgnoreInput = false; 1341 1342 // Ignore input from stdin or any inputs that cannot be preprocessed. 1343 // Check type first as not all linker inputs have a value. 1344 if (types::getPreprocessedType(it->first) == types::TY_INVALID) { 1345 IgnoreInput = true; 1346 } else if (!strcmp(it->second->getValue(), "-")) { 1347 Diag(clang::diag::note_drv_command_failed_diag_msg) 1348 << "Error generating preprocessed source(s) - " 1349 "ignoring input from stdin."; 1350 IgnoreInput = true; 1351 } 1352 1353 if (IgnoreInput) { 1354 it = Inputs.erase(it); 1355 ie = Inputs.end(); 1356 } else { 1357 ++it; 1358 } 1359 } 1360 1361 if (Inputs.empty()) { 1362 Diag(clang::diag::note_drv_command_failed_diag_msg) 1363 << "Error generating preprocessed source(s) - " 1364 "no preprocessable inputs."; 1365 return; 1366 } 1367 1368 // Don't attempt to generate preprocessed files if multiple -arch options are 1369 // used, unless they're all duplicates. 1370 llvm::StringSet<> ArchNames; 1371 for (const Arg *A : C.getArgs()) { 1372 if (A->getOption().matches(options::OPT_arch)) { 1373 StringRef ArchName = A->getValue(); 1374 ArchNames.insert(ArchName); 1375 } 1376 } 1377 if (ArchNames.size() > 1) { 1378 Diag(clang::diag::note_drv_command_failed_diag_msg) 1379 << "Error generating preprocessed source(s) - cannot generate " 1380 "preprocessed source with multiple -arch options."; 1381 return; 1382 } 1383 1384 // Construct the list of abstract actions to perform for this compilation. On 1385 // Darwin OSes this uses the driver-driver and builds universal actions. 1386 const ToolChain &TC = C.getDefaultToolChain(); 1387 if (TC.getTriple().isOSBinFormatMachO()) 1388 BuildUniversalActions(C, TC, Inputs); 1389 else 1390 BuildActions(C, C.getArgs(), Inputs, C.getActions()); 1391 1392 BuildJobs(C); 1393 1394 // If there were errors building the compilation, quit now. 1395 if (Trap.hasErrorOccurred()) { 1396 Diag(clang::diag::note_drv_command_failed_diag_msg) 1397 << "Error generating preprocessed source(s)."; 1398 return; 1399 } 1400 1401 // Generate preprocessed output. 1402 SmallVector<std::pair<int, const Command *>, 4> FailingCommands; 1403 C.ExecuteJobs(C.getJobs(), FailingCommands); 1404 1405 // If any of the preprocessing commands failed, clean up and exit. 1406 if (!FailingCommands.empty()) { 1407 Diag(clang::diag::note_drv_command_failed_diag_msg) 1408 << "Error generating preprocessed source(s)."; 1409 return; 1410 } 1411 1412 const ArgStringList &TempFiles = C.getTempFiles(); 1413 if (TempFiles.empty()) { 1414 Diag(clang::diag::note_drv_command_failed_diag_msg) 1415 << "Error generating preprocessed source(s)."; 1416 return; 1417 } 1418 1419 Diag(clang::diag::note_drv_command_failed_diag_msg) 1420 << "\n********************\n\n" 1421 "PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:\n" 1422 "Preprocessed source(s) and associated run script(s) are located at:"; 1423 1424 SmallString<128> VFS; 1425 SmallString<128> ReproCrashFilename; 1426 for (const char *TempFile : TempFiles) { 1427 Diag(clang::diag::note_drv_command_failed_diag_msg) << TempFile; 1428 if (Report) 1429 Report->TemporaryFiles.push_back(TempFile); 1430 if (ReproCrashFilename.empty()) { 1431 ReproCrashFilename = TempFile; 1432 llvm::sys::path::replace_extension(ReproCrashFilename, ".crash"); 1433 } 1434 if (StringRef(TempFile).endswith(".cache")) { 1435 // In some cases (modules) we'll dump extra data to help with reproducing 1436 // the crash into a directory next to the output. 1437 VFS = llvm::sys::path::filename(TempFile); 1438 llvm::sys::path::append(VFS, "vfs", "vfs.yaml"); 1439 } 1440 } 1441 1442 // Assume associated files are based off of the first temporary file. 1443 CrashReportInfo CrashInfo(TempFiles[0], VFS); 1444 1445 llvm::SmallString<128> Script(CrashInfo.Filename); 1446 llvm::sys::path::replace_extension(Script, "sh"); 1447 std::error_code EC; 1448 llvm::raw_fd_ostream ScriptOS(Script, EC, llvm::sys::fs::CD_CreateNew, 1449 llvm::sys::fs::FA_Write, 1450 llvm::sys::fs::OF_Text); 1451 if (EC) { 1452 Diag(clang::diag::note_drv_command_failed_diag_msg) 1453 << "Error generating run script: " << Script << " " << EC.message(); 1454 } else { 1455 ScriptOS << "# Crash reproducer for " << getClangFullVersion() << "\n" 1456 << "# Driver args: "; 1457 printArgList(ScriptOS, C.getInputArgs()); 1458 ScriptOS << "# Original command: "; 1459 Cmd.Print(ScriptOS, "\n", /*Quote=*/true); 1460 Cmd.Print(ScriptOS, "\n", /*Quote=*/true, &CrashInfo); 1461 if (!AdditionalInformation.empty()) 1462 ScriptOS << "\n# Additional information: " << AdditionalInformation 1463 << "\n"; 1464 if (Report) 1465 Report->TemporaryFiles.push_back(std::string(Script.str())); 1466 Diag(clang::diag::note_drv_command_failed_diag_msg) << Script; 1467 } 1468 1469 // On darwin, provide information about the .crash diagnostic report. 1470 if (llvm::Triple(llvm::sys::getProcessTriple()).isOSDarwin()) { 1471 SmallString<128> CrashDiagDir; 1472 if (getCrashDiagnosticFile(ReproCrashFilename, CrashDiagDir)) { 1473 Diag(clang::diag::note_drv_command_failed_diag_msg) 1474 << ReproCrashFilename.str(); 1475 } else { // Suggest a directory for the user to look for .crash files. 1476 llvm::sys::path::append(CrashDiagDir, Name); 1477 CrashDiagDir += "_<YYYY-MM-DD-HHMMSS>_<hostname>.crash"; 1478 Diag(clang::diag::note_drv_command_failed_diag_msg) 1479 << "Crash backtrace is located in"; 1480 Diag(clang::diag::note_drv_command_failed_diag_msg) 1481 << CrashDiagDir.str(); 1482 Diag(clang::diag::note_drv_command_failed_diag_msg) 1483 << "(choose the .crash file that corresponds to your crash)"; 1484 } 1485 } 1486 1487 for (const auto &A : C.getArgs().filtered(options::OPT_frewrite_map_file_EQ)) 1488 Diag(clang::diag::note_drv_command_failed_diag_msg) << A->getValue(); 1489 1490 Diag(clang::diag::note_drv_command_failed_diag_msg) 1491 << "\n\n********************"; 1492 } 1493 1494 void Driver::setUpResponseFiles(Compilation &C, Command &Cmd) { 1495 // Since commandLineFitsWithinSystemLimits() may underestimate system's 1496 // capacity if the tool does not support response files, there is a chance/ 1497 // that things will just work without a response file, so we silently just 1498 // skip it. 1499 if (Cmd.getResponseFileSupport().ResponseKind == 1500 ResponseFileSupport::RF_None || 1501 llvm::sys::commandLineFitsWithinSystemLimits(Cmd.getExecutable(), 1502 Cmd.getArguments())) 1503 return; 1504 1505 std::string TmpName = GetTemporaryPath("response", "txt"); 1506 Cmd.setResponseFile(C.addTempFile(C.getArgs().MakeArgString(TmpName))); 1507 } 1508 1509 int Driver::ExecuteCompilation( 1510 Compilation &C, 1511 SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands) { 1512 // Just print if -### was present. 1513 if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) { 1514 C.getJobs().Print(llvm::errs(), "\n", true); 1515 return 0; 1516 } 1517 1518 // If there were errors building the compilation, quit now. 1519 if (Diags.hasErrorOccurred()) 1520 return 1; 1521 1522 // Set up response file names for each command, if necessary 1523 for (auto &Job : C.getJobs()) 1524 setUpResponseFiles(C, Job); 1525 1526 C.ExecuteJobs(C.getJobs(), FailingCommands); 1527 1528 // If the command succeeded, we are done. 1529 if (FailingCommands.empty()) 1530 return 0; 1531 1532 // Otherwise, remove result files and print extra information about abnormal 1533 // failures. 1534 int Res = 0; 1535 for (const auto &CmdPair : FailingCommands) { 1536 int CommandRes = CmdPair.first; 1537 const Command *FailingCommand = CmdPair.second; 1538 1539 // Remove result files if we're not saving temps. 1540 if (!isSaveTempsEnabled()) { 1541 const JobAction *JA = cast<JobAction>(&FailingCommand->getSource()); 1542 C.CleanupFileMap(C.getResultFiles(), JA, true); 1543 1544 // Failure result files are valid unless we crashed. 1545 if (CommandRes < 0) 1546 C.CleanupFileMap(C.getFailureResultFiles(), JA, true); 1547 } 1548 1549 #if LLVM_ON_UNIX 1550 // llvm/lib/Support/Unix/Signals.inc will exit with a special return code 1551 // for SIGPIPE. Do not print diagnostics for this case. 1552 if (CommandRes == EX_IOERR) { 1553 Res = CommandRes; 1554 continue; 1555 } 1556 #endif 1557 1558 // Print extra information about abnormal failures, if possible. 1559 // 1560 // This is ad-hoc, but we don't want to be excessively noisy. If the result 1561 // status was 1, assume the command failed normally. In particular, if it 1562 // was the compiler then assume it gave a reasonable error code. Failures 1563 // in other tools are less common, and they generally have worse 1564 // diagnostics, so always print the diagnostic there. 1565 const Tool &FailingTool = FailingCommand->getCreator(); 1566 1567 if (!FailingCommand->getCreator().hasGoodDiagnostics() || CommandRes != 1) { 1568 // FIXME: See FIXME above regarding result code interpretation. 1569 if (CommandRes < 0) 1570 Diag(clang::diag::err_drv_command_signalled) 1571 << FailingTool.getShortName(); 1572 else 1573 Diag(clang::diag::err_drv_command_failed) 1574 << FailingTool.getShortName() << CommandRes; 1575 } 1576 } 1577 return Res; 1578 } 1579 1580 void Driver::PrintHelp(bool ShowHidden) const { 1581 unsigned IncludedFlagsBitmask; 1582 unsigned ExcludedFlagsBitmask; 1583 std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) = 1584 getIncludeExcludeOptionFlagMasks(IsCLMode()); 1585 1586 ExcludedFlagsBitmask |= options::NoDriverOption; 1587 if (!ShowHidden) 1588 ExcludedFlagsBitmask |= HelpHidden; 1589 1590 if (IsFlangMode()) 1591 IncludedFlagsBitmask |= options::FlangOption; 1592 else 1593 ExcludedFlagsBitmask |= options::FlangOnlyOption; 1594 1595 std::string Usage = llvm::formatv("{0} [options] file...", Name).str(); 1596 getOpts().PrintHelp(llvm::outs(), Usage.c_str(), DriverTitle.c_str(), 1597 IncludedFlagsBitmask, ExcludedFlagsBitmask, 1598 /*ShowAllAliases=*/false); 1599 } 1600 1601 void Driver::PrintVersion(const Compilation &C, raw_ostream &OS) const { 1602 if (IsFlangMode()) { 1603 OS << getClangToolFullVersion("flang-new") << '\n'; 1604 } else { 1605 // FIXME: The following handlers should use a callback mechanism, we don't 1606 // know what the client would like to do. 1607 OS << getClangFullVersion() << '\n'; 1608 } 1609 const ToolChain &TC = C.getDefaultToolChain(); 1610 OS << "Target: " << TC.getTripleString() << '\n'; 1611 1612 // Print the threading model. 1613 if (Arg *A = C.getArgs().getLastArg(options::OPT_mthread_model)) { 1614 // Don't print if the ToolChain would have barfed on it already 1615 if (TC.isThreadModelSupported(A->getValue())) 1616 OS << "Thread model: " << A->getValue(); 1617 } else 1618 OS << "Thread model: " << TC.getThreadModel(); 1619 OS << '\n'; 1620 1621 // Print out the install directory. 1622 OS << "InstalledDir: " << InstalledDir << '\n'; 1623 1624 // If configuration file was used, print its path. 1625 if (!ConfigFile.empty()) 1626 OS << "Configuration file: " << ConfigFile << '\n'; 1627 } 1628 1629 /// PrintDiagnosticCategories - Implement the --print-diagnostic-categories 1630 /// option. 1631 static void PrintDiagnosticCategories(raw_ostream &OS) { 1632 // Skip the empty category. 1633 for (unsigned i = 1, max = DiagnosticIDs::getNumberOfCategories(); i != max; 1634 ++i) 1635 OS << i << ',' << DiagnosticIDs::getCategoryNameFromID(i) << '\n'; 1636 } 1637 1638 void Driver::HandleAutocompletions(StringRef PassedFlags) const { 1639 if (PassedFlags == "") 1640 return; 1641 // Print out all options that start with a given argument. This is used for 1642 // shell autocompletion. 1643 std::vector<std::string> SuggestedCompletions; 1644 std::vector<std::string> Flags; 1645 1646 unsigned int DisableFlags = 1647 options::NoDriverOption | options::Unsupported | options::Ignored; 1648 1649 // Make sure that Flang-only options don't pollute the Clang output 1650 // TODO: Make sure that Clang-only options don't pollute Flang output 1651 if (!IsFlangMode()) 1652 DisableFlags |= options::FlangOnlyOption; 1653 1654 // Distinguish "--autocomplete=-someflag" and "--autocomplete=-someflag," 1655 // because the latter indicates that the user put space before pushing tab 1656 // which should end up in a file completion. 1657 const bool HasSpace = PassedFlags.endswith(","); 1658 1659 // Parse PassedFlags by "," as all the command-line flags are passed to this 1660 // function separated by "," 1661 StringRef TargetFlags = PassedFlags; 1662 while (TargetFlags != "") { 1663 StringRef CurFlag; 1664 std::tie(CurFlag, TargetFlags) = TargetFlags.split(","); 1665 Flags.push_back(std::string(CurFlag)); 1666 } 1667 1668 // We want to show cc1-only options only when clang is invoked with -cc1 or 1669 // -Xclang. 1670 if (llvm::is_contained(Flags, "-Xclang") || llvm::is_contained(Flags, "-cc1")) 1671 DisableFlags &= ~options::NoDriverOption; 1672 1673 const llvm::opt::OptTable &Opts = getOpts(); 1674 StringRef Cur; 1675 Cur = Flags.at(Flags.size() - 1); 1676 StringRef Prev; 1677 if (Flags.size() >= 2) { 1678 Prev = Flags.at(Flags.size() - 2); 1679 SuggestedCompletions = Opts.suggestValueCompletions(Prev, Cur); 1680 } 1681 1682 if (SuggestedCompletions.empty()) 1683 SuggestedCompletions = Opts.suggestValueCompletions(Cur, ""); 1684 1685 // If Flags were empty, it means the user typed `clang [tab]` where we should 1686 // list all possible flags. If there was no value completion and the user 1687 // pressed tab after a space, we should fall back to a file completion. 1688 // We're printing a newline to be consistent with what we print at the end of 1689 // this function. 1690 if (SuggestedCompletions.empty() && HasSpace && !Flags.empty()) { 1691 llvm::outs() << '\n'; 1692 return; 1693 } 1694 1695 // When flag ends with '=' and there was no value completion, return empty 1696 // string and fall back to the file autocompletion. 1697 if (SuggestedCompletions.empty() && !Cur.endswith("=")) { 1698 // If the flag is in the form of "--autocomplete=-foo", 1699 // we were requested to print out all option names that start with "-foo". 1700 // For example, "--autocomplete=-fsyn" is expanded to "-fsyntax-only". 1701 SuggestedCompletions = Opts.findByPrefix(Cur, DisableFlags); 1702 1703 // We have to query the -W flags manually as they're not in the OptTable. 1704 // TODO: Find a good way to add them to OptTable instead and them remove 1705 // this code. 1706 for (StringRef S : DiagnosticIDs::getDiagnosticFlags()) 1707 if (S.startswith(Cur)) 1708 SuggestedCompletions.push_back(std::string(S)); 1709 } 1710 1711 // Sort the autocomplete candidates so that shells print them out in a 1712 // deterministic order. We could sort in any way, but we chose 1713 // case-insensitive sorting for consistency with the -help option 1714 // which prints out options in the case-insensitive alphabetical order. 1715 llvm::sort(SuggestedCompletions, [](StringRef A, StringRef B) { 1716 if (int X = A.compare_lower(B)) 1717 return X < 0; 1718 return A.compare(B) > 0; 1719 }); 1720 1721 llvm::outs() << llvm::join(SuggestedCompletions, "\n") << '\n'; 1722 } 1723 1724 bool Driver::HandleImmediateArgs(const Compilation &C) { 1725 // The order these options are handled in gcc is all over the place, but we 1726 // don't expect inconsistencies w.r.t. that to matter in practice. 1727 1728 if (C.getArgs().hasArg(options::OPT_dumpmachine)) { 1729 llvm::outs() << C.getDefaultToolChain().getTripleString() << '\n'; 1730 return false; 1731 } 1732 1733 if (C.getArgs().hasArg(options::OPT_dumpversion)) { 1734 // Since -dumpversion is only implemented for pedantic GCC compatibility, we 1735 // return an answer which matches our definition of __VERSION__. 1736 llvm::outs() << CLANG_VERSION_STRING << "\n"; 1737 return false; 1738 } 1739 1740 if (C.getArgs().hasArg(options::OPT__print_diagnostic_categories)) { 1741 PrintDiagnosticCategories(llvm::outs()); 1742 return false; 1743 } 1744 1745 if (C.getArgs().hasArg(options::OPT_help) || 1746 C.getArgs().hasArg(options::OPT__help_hidden)) { 1747 PrintHelp(C.getArgs().hasArg(options::OPT__help_hidden)); 1748 return false; 1749 } 1750 1751 if (C.getArgs().hasArg(options::OPT__version)) { 1752 // Follow gcc behavior and use stdout for --version and stderr for -v. 1753 PrintVersion(C, llvm::outs()); 1754 return false; 1755 } 1756 1757 if (C.getArgs().hasArg(options::OPT_v) || 1758 C.getArgs().hasArg(options::OPT__HASH_HASH_HASH) || 1759 C.getArgs().hasArg(options::OPT_print_supported_cpus)) { 1760 PrintVersion(C, llvm::errs()); 1761 SuppressMissingInputWarning = true; 1762 } 1763 1764 if (C.getArgs().hasArg(options::OPT_v)) { 1765 if (!SystemConfigDir.empty()) 1766 llvm::errs() << "System configuration file directory: " 1767 << SystemConfigDir << "\n"; 1768 if (!UserConfigDir.empty()) 1769 llvm::errs() << "User configuration file directory: " 1770 << UserConfigDir << "\n"; 1771 } 1772 1773 const ToolChain &TC = C.getDefaultToolChain(); 1774 1775 if (C.getArgs().hasArg(options::OPT_v)) 1776 TC.printVerboseInfo(llvm::errs()); 1777 1778 if (C.getArgs().hasArg(options::OPT_print_resource_dir)) { 1779 llvm::outs() << ResourceDir << '\n'; 1780 return false; 1781 } 1782 1783 if (C.getArgs().hasArg(options::OPT_print_search_dirs)) { 1784 llvm::outs() << "programs: ="; 1785 bool separator = false; 1786 // Print -B and COMPILER_PATH. 1787 for (const std::string &Path : PrefixDirs) { 1788 if (separator) 1789 llvm::outs() << llvm::sys::EnvPathSeparator; 1790 llvm::outs() << Path; 1791 separator = true; 1792 } 1793 for (const std::string &Path : TC.getProgramPaths()) { 1794 if (separator) 1795 llvm::outs() << llvm::sys::EnvPathSeparator; 1796 llvm::outs() << Path; 1797 separator = true; 1798 } 1799 llvm::outs() << "\n"; 1800 llvm::outs() << "libraries: =" << ResourceDir; 1801 1802 StringRef sysroot = C.getSysRoot(); 1803 1804 for (const std::string &Path : TC.getFilePaths()) { 1805 // Always print a separator. ResourceDir was the first item shown. 1806 llvm::outs() << llvm::sys::EnvPathSeparator; 1807 // Interpretation of leading '=' is needed only for NetBSD. 1808 if (Path[0] == '=') 1809 llvm::outs() << sysroot << Path.substr(1); 1810 else 1811 llvm::outs() << Path; 1812 } 1813 llvm::outs() << "\n"; 1814 return false; 1815 } 1816 1817 // FIXME: The following handlers should use a callback mechanism, we don't 1818 // know what the client would like to do. 1819 if (Arg *A = C.getArgs().getLastArg(options::OPT_print_file_name_EQ)) { 1820 llvm::outs() << GetFilePath(A->getValue(), TC) << "\n"; 1821 return false; 1822 } 1823 1824 if (Arg *A = C.getArgs().getLastArg(options::OPT_print_prog_name_EQ)) { 1825 StringRef ProgName = A->getValue(); 1826 1827 // Null program name cannot have a path. 1828 if (! ProgName.empty()) 1829 llvm::outs() << GetProgramPath(ProgName, TC); 1830 1831 llvm::outs() << "\n"; 1832 return false; 1833 } 1834 1835 if (Arg *A = C.getArgs().getLastArg(options::OPT_autocomplete)) { 1836 StringRef PassedFlags = A->getValue(); 1837 HandleAutocompletions(PassedFlags); 1838 return false; 1839 } 1840 1841 if (C.getArgs().hasArg(options::OPT_print_libgcc_file_name)) { 1842 ToolChain::RuntimeLibType RLT = TC.GetRuntimeLibType(C.getArgs()); 1843 const llvm::Triple Triple(TC.ComputeEffectiveClangTriple(C.getArgs())); 1844 RegisterEffectiveTriple TripleRAII(TC, Triple); 1845 switch (RLT) { 1846 case ToolChain::RLT_CompilerRT: 1847 llvm::outs() << TC.getCompilerRT(C.getArgs(), "builtins") << "\n"; 1848 break; 1849 case ToolChain::RLT_Libgcc: 1850 llvm::outs() << GetFilePath("libgcc.a", TC) << "\n"; 1851 break; 1852 } 1853 return false; 1854 } 1855 1856 if (C.getArgs().hasArg(options::OPT_print_multi_lib)) { 1857 for (const Multilib &Multilib : TC.getMultilibs()) 1858 llvm::outs() << Multilib << "\n"; 1859 return false; 1860 } 1861 1862 if (C.getArgs().hasArg(options::OPT_print_multi_directory)) { 1863 const Multilib &Multilib = TC.getMultilib(); 1864 if (Multilib.gccSuffix().empty()) 1865 llvm::outs() << ".\n"; 1866 else { 1867 StringRef Suffix(Multilib.gccSuffix()); 1868 assert(Suffix.front() == '/'); 1869 llvm::outs() << Suffix.substr(1) << "\n"; 1870 } 1871 return false; 1872 } 1873 1874 if (C.getArgs().hasArg(options::OPT_print_target_triple)) { 1875 llvm::outs() << TC.getTripleString() << "\n"; 1876 return false; 1877 } 1878 1879 if (C.getArgs().hasArg(options::OPT_print_effective_triple)) { 1880 const llvm::Triple Triple(TC.ComputeEffectiveClangTriple(C.getArgs())); 1881 llvm::outs() << Triple.getTriple() << "\n"; 1882 return false; 1883 } 1884 1885 if (C.getArgs().hasArg(options::OPT_print_targets)) { 1886 llvm::TargetRegistry::printRegisteredTargetsForVersion(llvm::outs()); 1887 return false; 1888 } 1889 1890 return true; 1891 } 1892 1893 enum { 1894 TopLevelAction = 0, 1895 HeadSibAction = 1, 1896 OtherSibAction = 2, 1897 }; 1898 1899 // Display an action graph human-readably. Action A is the "sink" node 1900 // and latest-occuring action. Traversal is in pre-order, visiting the 1901 // inputs to each action before printing the action itself. 1902 static unsigned PrintActions1(const Compilation &C, Action *A, 1903 std::map<Action *, unsigned> &Ids, 1904 Twine Indent = {}, int Kind = TopLevelAction) { 1905 if (Ids.count(A)) // A was already visited. 1906 return Ids[A]; 1907 1908 std::string str; 1909 llvm::raw_string_ostream os(str); 1910 1911 auto getSibIndent = [](int K) -> Twine { 1912 return (K == HeadSibAction) ? " " : (K == OtherSibAction) ? "| " : ""; 1913 }; 1914 1915 Twine SibIndent = Indent + getSibIndent(Kind); 1916 int SibKind = HeadSibAction; 1917 os << Action::getClassName(A->getKind()) << ", "; 1918 if (InputAction *IA = dyn_cast<InputAction>(A)) { 1919 os << "\"" << IA->getInputArg().getValue() << "\""; 1920 } else if (BindArchAction *BIA = dyn_cast<BindArchAction>(A)) { 1921 os << '"' << BIA->getArchName() << '"' << ", {" 1922 << PrintActions1(C, *BIA->input_begin(), Ids, SibIndent, SibKind) << "}"; 1923 } else if (OffloadAction *OA = dyn_cast<OffloadAction>(A)) { 1924 bool IsFirst = true; 1925 OA->doOnEachDependence( 1926 [&](Action *A, const ToolChain *TC, const char *BoundArch) { 1927 assert(TC && "Unknown host toolchain"); 1928 // E.g. for two CUDA device dependences whose bound arch is sm_20 and 1929 // sm_35 this will generate: 1930 // "cuda-device" (nvptx64-nvidia-cuda:sm_20) {#ID}, "cuda-device" 1931 // (nvptx64-nvidia-cuda:sm_35) {#ID} 1932 if (!IsFirst) 1933 os << ", "; 1934 os << '"'; 1935 os << A->getOffloadingKindPrefix(); 1936 os << " ("; 1937 os << TC->getTriple().normalize(); 1938 if (BoundArch) 1939 os << ":" << BoundArch; 1940 os << ")"; 1941 os << '"'; 1942 os << " {" << PrintActions1(C, A, Ids, SibIndent, SibKind) << "}"; 1943 IsFirst = false; 1944 SibKind = OtherSibAction; 1945 }); 1946 } else { 1947 const ActionList *AL = &A->getInputs(); 1948 1949 if (AL->size()) { 1950 const char *Prefix = "{"; 1951 for (Action *PreRequisite : *AL) { 1952 os << Prefix << PrintActions1(C, PreRequisite, Ids, SibIndent, SibKind); 1953 Prefix = ", "; 1954 SibKind = OtherSibAction; 1955 } 1956 os << "}"; 1957 } else 1958 os << "{}"; 1959 } 1960 1961 // Append offload info for all options other than the offloading action 1962 // itself (e.g. (cuda-device, sm_20) or (cuda-host)). 1963 std::string offload_str; 1964 llvm::raw_string_ostream offload_os(offload_str); 1965 if (!isa<OffloadAction>(A)) { 1966 auto S = A->getOffloadingKindPrefix(); 1967 if (!S.empty()) { 1968 offload_os << ", (" << S; 1969 if (A->getOffloadingArch()) 1970 offload_os << ", " << A->getOffloadingArch(); 1971 offload_os << ")"; 1972 } 1973 } 1974 1975 auto getSelfIndent = [](int K) -> Twine { 1976 return (K == HeadSibAction) ? "+- " : (K == OtherSibAction) ? "|- " : ""; 1977 }; 1978 1979 unsigned Id = Ids.size(); 1980 Ids[A] = Id; 1981 llvm::errs() << Indent + getSelfIndent(Kind) << Id << ": " << os.str() << ", " 1982 << types::getTypeName(A->getType()) << offload_os.str() << "\n"; 1983 1984 return Id; 1985 } 1986 1987 // Print the action graphs in a compilation C. 1988 // For example "clang -c file1.c file2.c" is composed of two subgraphs. 1989 void Driver::PrintActions(const Compilation &C) const { 1990 std::map<Action *, unsigned> Ids; 1991 for (Action *A : C.getActions()) 1992 PrintActions1(C, A, Ids); 1993 } 1994 1995 /// Check whether the given input tree contains any compilation or 1996 /// assembly actions. 1997 static bool ContainsCompileOrAssembleAction(const Action *A) { 1998 if (isa<CompileJobAction>(A) || isa<BackendJobAction>(A) || 1999 isa<AssembleJobAction>(A)) 2000 return true; 2001 2002 for (const Action *Input : A->inputs()) 2003 if (ContainsCompileOrAssembleAction(Input)) 2004 return true; 2005 2006 return false; 2007 } 2008 2009 void Driver::BuildUniversalActions(Compilation &C, const ToolChain &TC, 2010 const InputList &BAInputs) const { 2011 DerivedArgList &Args = C.getArgs(); 2012 ActionList &Actions = C.getActions(); 2013 llvm::PrettyStackTraceString CrashInfo("Building universal build actions"); 2014 // Collect the list of architectures. Duplicates are allowed, but should only 2015 // be handled once (in the order seen). 2016 llvm::StringSet<> ArchNames; 2017 SmallVector<const char *, 4> Archs; 2018 for (Arg *A : Args) { 2019 if (A->getOption().matches(options::OPT_arch)) { 2020 // Validate the option here; we don't save the type here because its 2021 // particular spelling may participate in other driver choices. 2022 llvm::Triple::ArchType Arch = 2023 tools::darwin::getArchTypeForMachOArchName(A->getValue()); 2024 if (Arch == llvm::Triple::UnknownArch) { 2025 Diag(clang::diag::err_drv_invalid_arch_name) << A->getAsString(Args); 2026 continue; 2027 } 2028 2029 A->claim(); 2030 if (ArchNames.insert(A->getValue()).second) 2031 Archs.push_back(A->getValue()); 2032 } 2033 } 2034 2035 // When there is no explicit arch for this platform, make sure we still bind 2036 // the architecture (to the default) so that -Xarch_ is handled correctly. 2037 if (!Archs.size()) 2038 Archs.push_back(Args.MakeArgString(TC.getDefaultUniversalArchName())); 2039 2040 ActionList SingleActions; 2041 BuildActions(C, Args, BAInputs, SingleActions); 2042 2043 // Add in arch bindings for every top level action, as well as lipo and 2044 // dsymutil steps if needed. 2045 for (Action* Act : SingleActions) { 2046 // Make sure we can lipo this kind of output. If not (and it is an actual 2047 // output) then we disallow, since we can't create an output file with the 2048 // right name without overwriting it. We could remove this oddity by just 2049 // changing the output names to include the arch, which would also fix 2050 // -save-temps. Compatibility wins for now. 2051 2052 if (Archs.size() > 1 && !types::canLipoType(Act->getType())) 2053 Diag(clang::diag::err_drv_invalid_output_with_multiple_archs) 2054 << types::getTypeName(Act->getType()); 2055 2056 ActionList Inputs; 2057 for (unsigned i = 0, e = Archs.size(); i != e; ++i) 2058 Inputs.push_back(C.MakeAction<BindArchAction>(Act, Archs[i])); 2059 2060 // Lipo if necessary, we do it this way because we need to set the arch flag 2061 // so that -Xarch_ gets overwritten. 2062 if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing) 2063 Actions.append(Inputs.begin(), Inputs.end()); 2064 else 2065 Actions.push_back(C.MakeAction<LipoJobAction>(Inputs, Act->getType())); 2066 2067 // Handle debug info queries. 2068 Arg *A = Args.getLastArg(options::OPT_g_Group); 2069 bool enablesDebugInfo = A && !A->getOption().matches(options::OPT_g0) && 2070 !A->getOption().matches(options::OPT_gstabs); 2071 if ((enablesDebugInfo || willEmitRemarks(Args)) && 2072 ContainsCompileOrAssembleAction(Actions.back())) { 2073 2074 // Add a 'dsymutil' step if necessary, when debug info is enabled and we 2075 // have a compile input. We need to run 'dsymutil' ourselves in such cases 2076 // because the debug info will refer to a temporary object file which 2077 // will be removed at the end of the compilation process. 2078 if (Act->getType() == types::TY_Image) { 2079 ActionList Inputs; 2080 Inputs.push_back(Actions.back()); 2081 Actions.pop_back(); 2082 Actions.push_back( 2083 C.MakeAction<DsymutilJobAction>(Inputs, types::TY_dSYM)); 2084 } 2085 2086 // Verify the debug info output. 2087 if (Args.hasArg(options::OPT_verify_debug_info)) { 2088 Action* LastAction = Actions.back(); 2089 Actions.pop_back(); 2090 Actions.push_back(C.MakeAction<VerifyDebugInfoJobAction>( 2091 LastAction, types::TY_Nothing)); 2092 } 2093 } 2094 } 2095 } 2096 2097 bool Driver::DiagnoseInputExistence(const DerivedArgList &Args, StringRef Value, 2098 types::ID Ty, bool TypoCorrect) const { 2099 if (!getCheckInputsExist()) 2100 return true; 2101 2102 // stdin always exists. 2103 if (Value == "-") 2104 return true; 2105 2106 if (getVFS().exists(Value)) 2107 return true; 2108 2109 if (IsCLMode()) { 2110 if (!llvm::sys::path::is_absolute(Twine(Value)) && 2111 llvm::sys::Process::FindInEnvPath("LIB", Value, ';')) 2112 return true; 2113 2114 if (Args.hasArg(options::OPT__SLASH_link) && Ty == types::TY_Object) { 2115 // Arguments to the /link flag might cause the linker to search for object 2116 // and library files in paths we don't know about. Don't error in such 2117 // cases. 2118 return true; 2119 } 2120 } 2121 2122 if (TypoCorrect) { 2123 // Check if the filename is a typo for an option flag. OptTable thinks 2124 // that all args that are not known options and that start with / are 2125 // filenames, but e.g. `/diagnostic:caret` is more likely a typo for 2126 // the option `/diagnostics:caret` than a reference to a file in the root 2127 // directory. 2128 unsigned IncludedFlagsBitmask; 2129 unsigned ExcludedFlagsBitmask; 2130 std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) = 2131 getIncludeExcludeOptionFlagMasks(IsCLMode()); 2132 std::string Nearest; 2133 if (getOpts().findNearest(Value, Nearest, IncludedFlagsBitmask, 2134 ExcludedFlagsBitmask) <= 1) { 2135 Diag(clang::diag::err_drv_no_such_file_with_suggestion) 2136 << Value << Nearest; 2137 return false; 2138 } 2139 } 2140 2141 Diag(clang::diag::err_drv_no_such_file) << Value; 2142 return false; 2143 } 2144 2145 // Construct a the list of inputs and their types. 2146 void Driver::BuildInputs(const ToolChain &TC, DerivedArgList &Args, 2147 InputList &Inputs) const { 2148 const llvm::opt::OptTable &Opts = getOpts(); 2149 // Track the current user specified (-x) input. We also explicitly track the 2150 // argument used to set the type; we only want to claim the type when we 2151 // actually use it, so we warn about unused -x arguments. 2152 types::ID InputType = types::TY_Nothing; 2153 Arg *InputTypeArg = nullptr; 2154 2155 // The last /TC or /TP option sets the input type to C or C++ globally. 2156 if (Arg *TCTP = Args.getLastArgNoClaim(options::OPT__SLASH_TC, 2157 options::OPT__SLASH_TP)) { 2158 InputTypeArg = TCTP; 2159 InputType = TCTP->getOption().matches(options::OPT__SLASH_TC) 2160 ? types::TY_C 2161 : types::TY_CXX; 2162 2163 Arg *Previous = nullptr; 2164 bool ShowNote = false; 2165 for (Arg *A : 2166 Args.filtered(options::OPT__SLASH_TC, options::OPT__SLASH_TP)) { 2167 if (Previous) { 2168 Diag(clang::diag::warn_drv_overriding_flag_option) 2169 << Previous->getSpelling() << A->getSpelling(); 2170 ShowNote = true; 2171 } 2172 Previous = A; 2173 } 2174 if (ShowNote) 2175 Diag(clang::diag::note_drv_t_option_is_global); 2176 2177 // No driver mode exposes -x and /TC or /TP; we don't support mixing them. 2178 assert(!Args.hasArg(options::OPT_x) && "-x and /TC or /TP is not allowed"); 2179 } 2180 2181 for (Arg *A : Args) { 2182 if (A->getOption().getKind() == Option::InputClass) { 2183 const char *Value = A->getValue(); 2184 types::ID Ty = types::TY_INVALID; 2185 2186 // Infer the input type if necessary. 2187 if (InputType == types::TY_Nothing) { 2188 // If there was an explicit arg for this, claim it. 2189 if (InputTypeArg) 2190 InputTypeArg->claim(); 2191 2192 // stdin must be handled specially. 2193 if (memcmp(Value, "-", 2) == 0) { 2194 // If running with -E, treat as a C input (this changes the builtin 2195 // macros, for example). This may be overridden by -ObjC below. 2196 // 2197 // Otherwise emit an error but still use a valid type to avoid 2198 // spurious errors (e.g., no inputs). 2199 if (!Args.hasArgNoClaim(options::OPT_E) && !CCCIsCPP()) 2200 Diag(IsCLMode() ? clang::diag::err_drv_unknown_stdin_type_clang_cl 2201 : clang::diag::err_drv_unknown_stdin_type); 2202 Ty = types::TY_C; 2203 } else { 2204 // Otherwise lookup by extension. 2205 // Fallback is C if invoked as C preprocessor, C++ if invoked with 2206 // clang-cl /E, or Object otherwise. 2207 // We use a host hook here because Darwin at least has its own 2208 // idea of what .s is. 2209 if (const char *Ext = strrchr(Value, '.')) 2210 Ty = TC.LookupTypeForExtension(Ext + 1); 2211 2212 if (Ty == types::TY_INVALID) { 2213 if (CCCIsCPP()) 2214 Ty = types::TY_C; 2215 else if (IsCLMode() && Args.hasArgNoClaim(options::OPT_E)) 2216 Ty = types::TY_CXX; 2217 else 2218 Ty = types::TY_Object; 2219 } 2220 2221 // If the driver is invoked as C++ compiler (like clang++ or c++) it 2222 // should autodetect some input files as C++ for g++ compatibility. 2223 if (CCCIsCXX()) { 2224 types::ID OldTy = Ty; 2225 Ty = types::lookupCXXTypeForCType(Ty); 2226 2227 if (Ty != OldTy) 2228 Diag(clang::diag::warn_drv_treating_input_as_cxx) 2229 << getTypeName(OldTy) << getTypeName(Ty); 2230 } 2231 2232 // If running with -fthinlto-index=, extensions that normally identify 2233 // native object files actually identify LLVM bitcode files. 2234 if (Args.hasArgNoClaim(options::OPT_fthinlto_index_EQ) && 2235 Ty == types::TY_Object) 2236 Ty = types::TY_LLVM_BC; 2237 } 2238 2239 // -ObjC and -ObjC++ override the default language, but only for "source 2240 // files". We just treat everything that isn't a linker input as a 2241 // source file. 2242 // 2243 // FIXME: Clean this up if we move the phase sequence into the type. 2244 if (Ty != types::TY_Object) { 2245 if (Args.hasArg(options::OPT_ObjC)) 2246 Ty = types::TY_ObjC; 2247 else if (Args.hasArg(options::OPT_ObjCXX)) 2248 Ty = types::TY_ObjCXX; 2249 } 2250 } else { 2251 assert(InputTypeArg && "InputType set w/o InputTypeArg"); 2252 if (!InputTypeArg->getOption().matches(options::OPT_x)) { 2253 // If emulating cl.exe, make sure that /TC and /TP don't affect input 2254 // object files. 2255 const char *Ext = strrchr(Value, '.'); 2256 if (Ext && TC.LookupTypeForExtension(Ext + 1) == types::TY_Object) 2257 Ty = types::TY_Object; 2258 } 2259 if (Ty == types::TY_INVALID) { 2260 Ty = InputType; 2261 InputTypeArg->claim(); 2262 } 2263 } 2264 2265 if (DiagnoseInputExistence(Args, Value, Ty, /*TypoCorrect=*/true)) 2266 Inputs.push_back(std::make_pair(Ty, A)); 2267 2268 } else if (A->getOption().matches(options::OPT__SLASH_Tc)) { 2269 StringRef Value = A->getValue(); 2270 if (DiagnoseInputExistence(Args, Value, types::TY_C, 2271 /*TypoCorrect=*/false)) { 2272 Arg *InputArg = MakeInputArg(Args, Opts, A->getValue()); 2273 Inputs.push_back(std::make_pair(types::TY_C, InputArg)); 2274 } 2275 A->claim(); 2276 } else if (A->getOption().matches(options::OPT__SLASH_Tp)) { 2277 StringRef Value = A->getValue(); 2278 if (DiagnoseInputExistence(Args, Value, types::TY_CXX, 2279 /*TypoCorrect=*/false)) { 2280 Arg *InputArg = MakeInputArg(Args, Opts, A->getValue()); 2281 Inputs.push_back(std::make_pair(types::TY_CXX, InputArg)); 2282 } 2283 A->claim(); 2284 } else if (A->getOption().hasFlag(options::LinkerInput)) { 2285 // Just treat as object type, we could make a special type for this if 2286 // necessary. 2287 Inputs.push_back(std::make_pair(types::TY_Object, A)); 2288 2289 } else if (A->getOption().matches(options::OPT_x)) { 2290 InputTypeArg = A; 2291 InputType = types::lookupTypeForTypeSpecifier(A->getValue()); 2292 A->claim(); 2293 2294 // Follow gcc behavior and treat as linker input for invalid -x 2295 // options. Its not clear why we shouldn't just revert to unknown; but 2296 // this isn't very important, we might as well be bug compatible. 2297 if (!InputType) { 2298 Diag(clang::diag::err_drv_unknown_language) << A->getValue(); 2299 InputType = types::TY_Object; 2300 } 2301 } else if (A->getOption().getID() == options::OPT_U) { 2302 assert(A->getNumValues() == 1 && "The /U option has one value."); 2303 StringRef Val = A->getValue(0); 2304 if (Val.find_first_of("/\\") != StringRef::npos) { 2305 // Warn about e.g. "/Users/me/myfile.c". 2306 Diag(diag::warn_slash_u_filename) << Val; 2307 Diag(diag::note_use_dashdash); 2308 } 2309 } 2310 } 2311 if (CCCIsCPP() && Inputs.empty()) { 2312 // If called as standalone preprocessor, stdin is processed 2313 // if no other input is present. 2314 Arg *A = MakeInputArg(Args, Opts, "-"); 2315 Inputs.push_back(std::make_pair(types::TY_C, A)); 2316 } 2317 } 2318 2319 namespace { 2320 /// Provides a convenient interface for different programming models to generate 2321 /// the required device actions. 2322 class OffloadingActionBuilder final { 2323 /// Flag used to trace errors in the builder. 2324 bool IsValid = false; 2325 2326 /// The compilation that is using this builder. 2327 Compilation &C; 2328 2329 /// Map between an input argument and the offload kinds used to process it. 2330 std::map<const Arg *, unsigned> InputArgToOffloadKindMap; 2331 2332 /// Builder interface. It doesn't build anything or keep any state. 2333 class DeviceActionBuilder { 2334 public: 2335 typedef const llvm::SmallVectorImpl<phases::ID> PhasesTy; 2336 2337 enum ActionBuilderReturnCode { 2338 // The builder acted successfully on the current action. 2339 ABRT_Success, 2340 // The builder didn't have to act on the current action. 2341 ABRT_Inactive, 2342 // The builder was successful and requested the host action to not be 2343 // generated. 2344 ABRT_Ignore_Host, 2345 }; 2346 2347 protected: 2348 /// Compilation associated with this builder. 2349 Compilation &C; 2350 2351 /// Tool chains associated with this builder. The same programming 2352 /// model may have associated one or more tool chains. 2353 SmallVector<const ToolChain *, 2> ToolChains; 2354 2355 /// The derived arguments associated with this builder. 2356 DerivedArgList &Args; 2357 2358 /// The inputs associated with this builder. 2359 const Driver::InputList &Inputs; 2360 2361 /// The associated offload kind. 2362 Action::OffloadKind AssociatedOffloadKind = Action::OFK_None; 2363 2364 public: 2365 DeviceActionBuilder(Compilation &C, DerivedArgList &Args, 2366 const Driver::InputList &Inputs, 2367 Action::OffloadKind AssociatedOffloadKind) 2368 : C(C), Args(Args), Inputs(Inputs), 2369 AssociatedOffloadKind(AssociatedOffloadKind) {} 2370 virtual ~DeviceActionBuilder() {} 2371 2372 /// Fill up the array \a DA with all the device dependences that should be 2373 /// added to the provided host action \a HostAction. By default it is 2374 /// inactive. 2375 virtual ActionBuilderReturnCode 2376 getDeviceDependences(OffloadAction::DeviceDependences &DA, 2377 phases::ID CurPhase, phases::ID FinalPhase, 2378 PhasesTy &Phases) { 2379 return ABRT_Inactive; 2380 } 2381 2382 /// Update the state to include the provided host action \a HostAction as a 2383 /// dependency of the current device action. By default it is inactive. 2384 virtual ActionBuilderReturnCode addDeviceDepences(Action *HostAction) { 2385 return ABRT_Inactive; 2386 } 2387 2388 /// Append top level actions generated by the builder. 2389 virtual void appendTopLevelActions(ActionList &AL) {} 2390 2391 /// Append linker device actions generated by the builder. 2392 virtual void appendLinkDeviceActions(ActionList &AL) {} 2393 2394 /// Append linker host action generated by the builder. 2395 virtual Action* appendLinkHostActions(ActionList &AL) { return nullptr; } 2396 2397 /// Append linker actions generated by the builder. 2398 virtual void appendLinkDependences(OffloadAction::DeviceDependences &DA) {} 2399 2400 /// Initialize the builder. Return true if any initialization errors are 2401 /// found. 2402 virtual bool initialize() { return false; } 2403 2404 /// Return true if the builder can use bundling/unbundling. 2405 virtual bool canUseBundlerUnbundler() const { return false; } 2406 2407 /// Return true if this builder is valid. We have a valid builder if we have 2408 /// associated device tool chains. 2409 bool isValid() { return !ToolChains.empty(); } 2410 2411 /// Return the associated offload kind. 2412 Action::OffloadKind getAssociatedOffloadKind() { 2413 return AssociatedOffloadKind; 2414 } 2415 }; 2416 2417 /// Base class for CUDA/HIP action builder. It injects device code in 2418 /// the host backend action. 2419 class CudaActionBuilderBase : public DeviceActionBuilder { 2420 protected: 2421 /// Flags to signal if the user requested host-only or device-only 2422 /// compilation. 2423 bool CompileHostOnly = false; 2424 bool CompileDeviceOnly = false; 2425 bool EmitLLVM = false; 2426 bool EmitAsm = false; 2427 2428 /// ID to identify each device compilation. For CUDA it is simply the 2429 /// GPU arch string. For HIP it is either the GPU arch string or GPU 2430 /// arch string plus feature strings delimited by a plus sign, e.g. 2431 /// gfx906+xnack. 2432 struct TargetID { 2433 /// Target ID string which is persistent throughout the compilation. 2434 const char *ID; 2435 TargetID(CudaArch Arch) { ID = CudaArchToString(Arch); } 2436 TargetID(const char *ID) : ID(ID) {} 2437 operator const char *() { return ID; } 2438 operator StringRef() { return StringRef(ID); } 2439 }; 2440 /// List of GPU architectures to use in this compilation. 2441 SmallVector<TargetID, 4> GpuArchList; 2442 2443 /// The CUDA actions for the current input. 2444 ActionList CudaDeviceActions; 2445 2446 /// The CUDA fat binary if it was generated for the current input. 2447 Action *CudaFatBinary = nullptr; 2448 2449 /// Flag that is set to true if this builder acted on the current input. 2450 bool IsActive = false; 2451 2452 /// Flag for -fgpu-rdc. 2453 bool Relocatable = false; 2454 2455 /// Default GPU architecture if there's no one specified. 2456 CudaArch DefaultCudaArch = CudaArch::UNKNOWN; 2457 2458 /// Method to generate compilation unit ID specified by option 2459 /// '-fuse-cuid='. 2460 enum UseCUIDKind { CUID_Hash, CUID_Random, CUID_None, CUID_Invalid }; 2461 UseCUIDKind UseCUID = CUID_Hash; 2462 2463 /// Compilation unit ID specified by option '-cuid='. 2464 StringRef FixedCUID; 2465 2466 public: 2467 CudaActionBuilderBase(Compilation &C, DerivedArgList &Args, 2468 const Driver::InputList &Inputs, 2469 Action::OffloadKind OFKind) 2470 : DeviceActionBuilder(C, Args, Inputs, OFKind) {} 2471 2472 ActionBuilderReturnCode addDeviceDepences(Action *HostAction) override { 2473 // While generating code for CUDA, we only depend on the host input action 2474 // to trigger the creation of all the CUDA device actions. 2475 2476 // If we are dealing with an input action, replicate it for each GPU 2477 // architecture. If we are in host-only mode we return 'success' so that 2478 // the host uses the CUDA offload kind. 2479 if (auto *IA = dyn_cast<InputAction>(HostAction)) { 2480 assert(!GpuArchList.empty() && 2481 "We should have at least one GPU architecture."); 2482 2483 // If the host input is not CUDA or HIP, we don't need to bother about 2484 // this input. 2485 if (!(IA->getType() == types::TY_CUDA || 2486 IA->getType() == types::TY_HIP || 2487 IA->getType() == types::TY_PP_HIP)) { 2488 // The builder will ignore this input. 2489 IsActive = false; 2490 return ABRT_Inactive; 2491 } 2492 2493 // Set the flag to true, so that the builder acts on the current input. 2494 IsActive = true; 2495 2496 if (CompileHostOnly) 2497 return ABRT_Success; 2498 2499 // Replicate inputs for each GPU architecture. 2500 auto Ty = IA->getType() == types::TY_HIP ? types::TY_HIP_DEVICE 2501 : types::TY_CUDA_DEVICE; 2502 std::string CUID = FixedCUID.str(); 2503 if (CUID.empty()) { 2504 if (UseCUID == CUID_Random) 2505 CUID = llvm::utohexstr(llvm::sys::Process::GetRandomNumber(), 2506 /*LowerCase=*/true); 2507 else if (UseCUID == CUID_Hash) { 2508 llvm::MD5 Hasher; 2509 llvm::MD5::MD5Result Hash; 2510 SmallString<256> RealPath; 2511 llvm::sys::fs::real_path(IA->getInputArg().getValue(), RealPath, 2512 /*expand_tilde=*/true); 2513 Hasher.update(RealPath); 2514 for (auto *A : Args) { 2515 if (A->getOption().matches(options::OPT_INPUT)) 2516 continue; 2517 Hasher.update(A->getAsString(Args)); 2518 } 2519 Hasher.final(Hash); 2520 CUID = llvm::utohexstr(Hash.low(), /*LowerCase=*/true); 2521 } 2522 } 2523 IA->setId(CUID); 2524 2525 for (unsigned I = 0, E = GpuArchList.size(); I != E; ++I) { 2526 CudaDeviceActions.push_back( 2527 C.MakeAction<InputAction>(IA->getInputArg(), Ty, IA->getId())); 2528 } 2529 2530 return ABRT_Success; 2531 } 2532 2533 // If this is an unbundling action use it as is for each CUDA toolchain. 2534 if (auto *UA = dyn_cast<OffloadUnbundlingJobAction>(HostAction)) { 2535 2536 // If -fgpu-rdc is disabled, should not unbundle since there is no 2537 // device code to link. 2538 if (UA->getType() == types::TY_Object && !Relocatable) 2539 return ABRT_Inactive; 2540 2541 CudaDeviceActions.clear(); 2542 auto *IA = cast<InputAction>(UA->getInputs().back()); 2543 std::string FileName = IA->getInputArg().getAsString(Args); 2544 // Check if the type of the file is the same as the action. Do not 2545 // unbundle it if it is not. Do not unbundle .so files, for example, 2546 // which are not object files. 2547 if (IA->getType() == types::TY_Object && 2548 (!llvm::sys::path::has_extension(FileName) || 2549 types::lookupTypeForExtension( 2550 llvm::sys::path::extension(FileName).drop_front()) != 2551 types::TY_Object)) 2552 return ABRT_Inactive; 2553 2554 for (auto Arch : GpuArchList) { 2555 CudaDeviceActions.push_back(UA); 2556 UA->registerDependentActionInfo(ToolChains[0], Arch, 2557 AssociatedOffloadKind); 2558 } 2559 return ABRT_Success; 2560 } 2561 2562 return IsActive ? ABRT_Success : ABRT_Inactive; 2563 } 2564 2565 void appendTopLevelActions(ActionList &AL) override { 2566 // Utility to append actions to the top level list. 2567 auto AddTopLevel = [&](Action *A, TargetID TargetID) { 2568 OffloadAction::DeviceDependences Dep; 2569 Dep.add(*A, *ToolChains.front(), TargetID, AssociatedOffloadKind); 2570 AL.push_back(C.MakeAction<OffloadAction>(Dep, A->getType())); 2571 }; 2572 2573 // If we have a fat binary, add it to the list. 2574 if (CudaFatBinary) { 2575 AddTopLevel(CudaFatBinary, CudaArch::UNUSED); 2576 CudaDeviceActions.clear(); 2577 CudaFatBinary = nullptr; 2578 return; 2579 } 2580 2581 if (CudaDeviceActions.empty()) 2582 return; 2583 2584 // If we have CUDA actions at this point, that's because we have a have 2585 // partial compilation, so we should have an action for each GPU 2586 // architecture. 2587 assert(CudaDeviceActions.size() == GpuArchList.size() && 2588 "Expecting one action per GPU architecture."); 2589 assert(ToolChains.size() == 1 && 2590 "Expecting to have a sing CUDA toolchain."); 2591 for (unsigned I = 0, E = GpuArchList.size(); I != E; ++I) 2592 AddTopLevel(CudaDeviceActions[I], GpuArchList[I]); 2593 2594 CudaDeviceActions.clear(); 2595 } 2596 2597 /// Get canonicalized offload arch option. \returns empty StringRef if the 2598 /// option is invalid. 2599 virtual StringRef getCanonicalOffloadArch(StringRef Arch) = 0; 2600 2601 virtual llvm::Optional<std::pair<llvm::StringRef, llvm::StringRef>> 2602 getConflictOffloadArchCombination(const std::set<StringRef> &GpuArchs) = 0; 2603 2604 bool initialize() override { 2605 assert(AssociatedOffloadKind == Action::OFK_Cuda || 2606 AssociatedOffloadKind == Action::OFK_HIP); 2607 2608 // We don't need to support CUDA. 2609 if (AssociatedOffloadKind == Action::OFK_Cuda && 2610 !C.hasOffloadToolChain<Action::OFK_Cuda>()) 2611 return false; 2612 2613 // We don't need to support HIP. 2614 if (AssociatedOffloadKind == Action::OFK_HIP && 2615 !C.hasOffloadToolChain<Action::OFK_HIP>()) 2616 return false; 2617 2618 Relocatable = Args.hasFlag(options::OPT_fgpu_rdc, 2619 options::OPT_fno_gpu_rdc, /*Default=*/false); 2620 2621 const ToolChain *HostTC = C.getSingleOffloadToolChain<Action::OFK_Host>(); 2622 assert(HostTC && "No toolchain for host compilation."); 2623 if (HostTC->getTriple().isNVPTX() || 2624 HostTC->getTriple().getArch() == llvm::Triple::amdgcn) { 2625 // We do not support targeting NVPTX/AMDGCN for host compilation. Throw 2626 // an error and abort pipeline construction early so we don't trip 2627 // asserts that assume device-side compilation. 2628 C.getDriver().Diag(diag::err_drv_cuda_host_arch) 2629 << HostTC->getTriple().getArchName(); 2630 return true; 2631 } 2632 2633 ToolChains.push_back( 2634 AssociatedOffloadKind == Action::OFK_Cuda 2635 ? C.getSingleOffloadToolChain<Action::OFK_Cuda>() 2636 : C.getSingleOffloadToolChain<Action::OFK_HIP>()); 2637 2638 Arg *PartialCompilationArg = Args.getLastArg( 2639 options::OPT_cuda_host_only, options::OPT_cuda_device_only, 2640 options::OPT_cuda_compile_host_device); 2641 CompileHostOnly = PartialCompilationArg && 2642 PartialCompilationArg->getOption().matches( 2643 options::OPT_cuda_host_only); 2644 CompileDeviceOnly = PartialCompilationArg && 2645 PartialCompilationArg->getOption().matches( 2646 options::OPT_cuda_device_only); 2647 EmitLLVM = Args.getLastArg(options::OPT_emit_llvm); 2648 EmitAsm = Args.getLastArg(options::OPT_S); 2649 FixedCUID = Args.getLastArgValue(options::OPT_cuid_EQ); 2650 if (Arg *A = Args.getLastArg(options::OPT_fuse_cuid_EQ)) { 2651 StringRef UseCUIDStr = A->getValue(); 2652 UseCUID = llvm::StringSwitch<UseCUIDKind>(UseCUIDStr) 2653 .Case("hash", CUID_Hash) 2654 .Case("random", CUID_Random) 2655 .Case("none", CUID_None) 2656 .Default(CUID_Invalid); 2657 if (UseCUID == CUID_Invalid) { 2658 C.getDriver().Diag(diag::err_drv_invalid_value) 2659 << A->getAsString(Args) << UseCUIDStr; 2660 C.setContainsError(); 2661 return true; 2662 } 2663 } 2664 2665 // Collect all cuda_gpu_arch parameters, removing duplicates. 2666 std::set<StringRef> GpuArchs; 2667 bool Error = false; 2668 for (Arg *A : Args) { 2669 if (!(A->getOption().matches(options::OPT_offload_arch_EQ) || 2670 A->getOption().matches(options::OPT_no_offload_arch_EQ))) 2671 continue; 2672 A->claim(); 2673 2674 StringRef ArchStr = A->getValue(); 2675 if (A->getOption().matches(options::OPT_no_offload_arch_EQ) && 2676 ArchStr == "all") { 2677 GpuArchs.clear(); 2678 continue; 2679 } 2680 ArchStr = getCanonicalOffloadArch(ArchStr); 2681 if (ArchStr.empty()) { 2682 Error = true; 2683 } else if (A->getOption().matches(options::OPT_offload_arch_EQ)) 2684 GpuArchs.insert(ArchStr); 2685 else if (A->getOption().matches(options::OPT_no_offload_arch_EQ)) 2686 GpuArchs.erase(ArchStr); 2687 else 2688 llvm_unreachable("Unexpected option."); 2689 } 2690 2691 auto &&ConflictingArchs = getConflictOffloadArchCombination(GpuArchs); 2692 if (ConflictingArchs) { 2693 C.getDriver().Diag(clang::diag::err_drv_bad_offload_arch_combo) 2694 << ConflictingArchs.getValue().first 2695 << ConflictingArchs.getValue().second; 2696 C.setContainsError(); 2697 return true; 2698 } 2699 2700 // Collect list of GPUs remaining in the set. 2701 for (auto Arch : GpuArchs) 2702 GpuArchList.push_back(Arch.data()); 2703 2704 // Default to sm_20 which is the lowest common denominator for 2705 // supported GPUs. sm_20 code should work correctly, if 2706 // suboptimally, on all newer GPUs. 2707 if (GpuArchList.empty()) 2708 GpuArchList.push_back(DefaultCudaArch); 2709 2710 return Error; 2711 } 2712 }; 2713 2714 /// \brief CUDA action builder. It injects device code in the host backend 2715 /// action. 2716 class CudaActionBuilder final : public CudaActionBuilderBase { 2717 public: 2718 CudaActionBuilder(Compilation &C, DerivedArgList &Args, 2719 const Driver::InputList &Inputs) 2720 : CudaActionBuilderBase(C, Args, Inputs, Action::OFK_Cuda) { 2721 DefaultCudaArch = CudaArch::SM_20; 2722 } 2723 2724 StringRef getCanonicalOffloadArch(StringRef ArchStr) override { 2725 CudaArch Arch = StringToCudaArch(ArchStr); 2726 if (Arch == CudaArch::UNKNOWN) { 2727 C.getDriver().Diag(clang::diag::err_drv_cuda_bad_gpu_arch) << ArchStr; 2728 return StringRef(); 2729 } 2730 return CudaArchToString(Arch); 2731 } 2732 2733 llvm::Optional<std::pair<llvm::StringRef, llvm::StringRef>> 2734 getConflictOffloadArchCombination( 2735 const std::set<StringRef> &GpuArchs) override { 2736 return llvm::None; 2737 } 2738 2739 ActionBuilderReturnCode 2740 getDeviceDependences(OffloadAction::DeviceDependences &DA, 2741 phases::ID CurPhase, phases::ID FinalPhase, 2742 PhasesTy &Phases) override { 2743 if (!IsActive) 2744 return ABRT_Inactive; 2745 2746 // If we don't have more CUDA actions, we don't have any dependences to 2747 // create for the host. 2748 if (CudaDeviceActions.empty()) 2749 return ABRT_Success; 2750 2751 assert(CudaDeviceActions.size() == GpuArchList.size() && 2752 "Expecting one action per GPU architecture."); 2753 assert(!CompileHostOnly && 2754 "Not expecting CUDA actions in host-only compilation."); 2755 2756 // If we are generating code for the device or we are in a backend phase, 2757 // we attempt to generate the fat binary. We compile each arch to ptx and 2758 // assemble to cubin, then feed the cubin *and* the ptx into a device 2759 // "link" action, which uses fatbinary to combine these cubins into one 2760 // fatbin. The fatbin is then an input to the host action if not in 2761 // device-only mode. 2762 if (CompileDeviceOnly || CurPhase == phases::Backend) { 2763 ActionList DeviceActions; 2764 for (unsigned I = 0, E = GpuArchList.size(); I != E; ++I) { 2765 // Produce the device action from the current phase up to the assemble 2766 // phase. 2767 for (auto Ph : Phases) { 2768 // Skip the phases that were already dealt with. 2769 if (Ph < CurPhase) 2770 continue; 2771 // We have to be consistent with the host final phase. 2772 if (Ph > FinalPhase) 2773 break; 2774 2775 CudaDeviceActions[I] = C.getDriver().ConstructPhaseAction( 2776 C, Args, Ph, CudaDeviceActions[I], Action::OFK_Cuda); 2777 2778 if (Ph == phases::Assemble) 2779 break; 2780 } 2781 2782 // If we didn't reach the assemble phase, we can't generate the fat 2783 // binary. We don't need to generate the fat binary if we are not in 2784 // device-only mode. 2785 if (!isa<AssembleJobAction>(CudaDeviceActions[I]) || 2786 CompileDeviceOnly) 2787 continue; 2788 2789 Action *AssembleAction = CudaDeviceActions[I]; 2790 assert(AssembleAction->getType() == types::TY_Object); 2791 assert(AssembleAction->getInputs().size() == 1); 2792 2793 Action *BackendAction = AssembleAction->getInputs()[0]; 2794 assert(BackendAction->getType() == types::TY_PP_Asm); 2795 2796 for (auto &A : {AssembleAction, BackendAction}) { 2797 OffloadAction::DeviceDependences DDep; 2798 DDep.add(*A, *ToolChains.front(), GpuArchList[I], Action::OFK_Cuda); 2799 DeviceActions.push_back( 2800 C.MakeAction<OffloadAction>(DDep, A->getType())); 2801 } 2802 } 2803 2804 // We generate the fat binary if we have device input actions. 2805 if (!DeviceActions.empty()) { 2806 CudaFatBinary = 2807 C.MakeAction<LinkJobAction>(DeviceActions, types::TY_CUDA_FATBIN); 2808 2809 if (!CompileDeviceOnly) { 2810 DA.add(*CudaFatBinary, *ToolChains.front(), /*BoundArch=*/nullptr, 2811 Action::OFK_Cuda); 2812 // Clear the fat binary, it is already a dependence to an host 2813 // action. 2814 CudaFatBinary = nullptr; 2815 } 2816 2817 // Remove the CUDA actions as they are already connected to an host 2818 // action or fat binary. 2819 CudaDeviceActions.clear(); 2820 } 2821 2822 // We avoid creating host action in device-only mode. 2823 return CompileDeviceOnly ? ABRT_Ignore_Host : ABRT_Success; 2824 } else if (CurPhase > phases::Backend) { 2825 // If we are past the backend phase and still have a device action, we 2826 // don't have to do anything as this action is already a device 2827 // top-level action. 2828 return ABRT_Success; 2829 } 2830 2831 assert(CurPhase < phases::Backend && "Generating single CUDA " 2832 "instructions should only occur " 2833 "before the backend phase!"); 2834 2835 // By default, we produce an action for each device arch. 2836 for (Action *&A : CudaDeviceActions) 2837 A = C.getDriver().ConstructPhaseAction(C, Args, CurPhase, A); 2838 2839 return ABRT_Success; 2840 } 2841 }; 2842 /// \brief HIP action builder. It injects device code in the host backend 2843 /// action. 2844 class HIPActionBuilder final : public CudaActionBuilderBase { 2845 /// The linker inputs obtained for each device arch. 2846 SmallVector<ActionList, 8> DeviceLinkerInputs; 2847 bool GPUSanitize; 2848 2849 public: 2850 HIPActionBuilder(Compilation &C, DerivedArgList &Args, 2851 const Driver::InputList &Inputs) 2852 : CudaActionBuilderBase(C, Args, Inputs, Action::OFK_HIP) { 2853 DefaultCudaArch = CudaArch::GFX803; 2854 GPUSanitize = Args.hasFlag(options::OPT_fgpu_sanitize, 2855 options::OPT_fno_gpu_sanitize, false); 2856 } 2857 2858 bool canUseBundlerUnbundler() const override { return true; } 2859 2860 StringRef getCanonicalOffloadArch(StringRef IdStr) override { 2861 llvm::StringMap<bool> Features; 2862 auto ArchStr = 2863 parseTargetID(getHIPOffloadTargetTriple(), IdStr, &Features); 2864 if (!ArchStr) { 2865 C.getDriver().Diag(clang::diag::err_drv_bad_target_id) << IdStr; 2866 C.setContainsError(); 2867 return StringRef(); 2868 } 2869 auto CanId = getCanonicalTargetID(ArchStr.getValue(), Features); 2870 return Args.MakeArgStringRef(CanId); 2871 }; 2872 2873 llvm::Optional<std::pair<llvm::StringRef, llvm::StringRef>> 2874 getConflictOffloadArchCombination( 2875 const std::set<StringRef> &GpuArchs) override { 2876 return getConflictTargetIDCombination(GpuArchs); 2877 } 2878 2879 ActionBuilderReturnCode 2880 getDeviceDependences(OffloadAction::DeviceDependences &DA, 2881 phases::ID CurPhase, phases::ID FinalPhase, 2882 PhasesTy &Phases) override { 2883 // amdgcn does not support linking of object files, therefore we skip 2884 // backend and assemble phases to output LLVM IR. Except for generating 2885 // non-relocatable device coee, where we generate fat binary for device 2886 // code and pass to host in Backend phase. 2887 if (CudaDeviceActions.empty()) 2888 return ABRT_Success; 2889 2890 assert(((CurPhase == phases::Link && Relocatable) || 2891 CudaDeviceActions.size() == GpuArchList.size()) && 2892 "Expecting one action per GPU architecture."); 2893 assert(!CompileHostOnly && 2894 "Not expecting CUDA actions in host-only compilation."); 2895 2896 if (!Relocatable && CurPhase == phases::Backend && !EmitLLVM && 2897 !EmitAsm) { 2898 // If we are in backend phase, we attempt to generate the fat binary. 2899 // We compile each arch to IR and use a link action to generate code 2900 // object containing ISA. Then we use a special "link" action to create 2901 // a fat binary containing all the code objects for different GPU's. 2902 // The fat binary is then an input to the host action. 2903 for (unsigned I = 0, E = GpuArchList.size(); I != E; ++I) { 2904 if (GPUSanitize) { 2905 // When GPU sanitizer is enabled, since we need to link in the 2906 // the sanitizer runtime library after the sanitize pass, we have 2907 // to skip the backend and assemble phases and use lld to link 2908 // the bitcode. 2909 ActionList AL; 2910 AL.push_back(CudaDeviceActions[I]); 2911 // Create a link action to link device IR with device library 2912 // and generate ISA. 2913 CudaDeviceActions[I] = 2914 C.MakeAction<LinkJobAction>(AL, types::TY_Image); 2915 } else { 2916 // When GPU sanitizer is not enabled, we follow the conventional 2917 // compiler phases, including backend and assemble phases. 2918 ActionList AL; 2919 auto BackendAction = C.getDriver().ConstructPhaseAction( 2920 C, Args, phases::Backend, CudaDeviceActions[I], 2921 AssociatedOffloadKind); 2922 auto AssembleAction = C.getDriver().ConstructPhaseAction( 2923 C, Args, phases::Assemble, BackendAction, 2924 AssociatedOffloadKind); 2925 AL.push_back(AssembleAction); 2926 // Create a link action to link device IR with device library 2927 // and generate ISA. 2928 CudaDeviceActions[I] = 2929 C.MakeAction<LinkJobAction>(AL, types::TY_Image); 2930 } 2931 2932 // OffloadingActionBuilder propagates device arch until an offload 2933 // action. Since the next action for creating fatbin does 2934 // not have device arch, whereas the above link action and its input 2935 // have device arch, an offload action is needed to stop the null 2936 // device arch of the next action being propagated to the above link 2937 // action. 2938 OffloadAction::DeviceDependences DDep; 2939 DDep.add(*CudaDeviceActions[I], *ToolChains.front(), GpuArchList[I], 2940 AssociatedOffloadKind); 2941 CudaDeviceActions[I] = C.MakeAction<OffloadAction>( 2942 DDep, CudaDeviceActions[I]->getType()); 2943 } 2944 // Create HIP fat binary with a special "link" action. 2945 CudaFatBinary = 2946 C.MakeAction<LinkJobAction>(CudaDeviceActions, 2947 types::TY_HIP_FATBIN); 2948 2949 if (!CompileDeviceOnly) { 2950 DA.add(*CudaFatBinary, *ToolChains.front(), /*BoundArch=*/nullptr, 2951 AssociatedOffloadKind); 2952 // Clear the fat binary, it is already a dependence to an host 2953 // action. 2954 CudaFatBinary = nullptr; 2955 } 2956 2957 // Remove the CUDA actions as they are already connected to an host 2958 // action or fat binary. 2959 CudaDeviceActions.clear(); 2960 2961 return CompileDeviceOnly ? ABRT_Ignore_Host : ABRT_Success; 2962 } else if (CurPhase == phases::Link) { 2963 // Save CudaDeviceActions to DeviceLinkerInputs for each GPU subarch. 2964 // This happens to each device action originated from each input file. 2965 // Later on, device actions in DeviceLinkerInputs are used to create 2966 // device link actions in appendLinkDependences and the created device 2967 // link actions are passed to the offload action as device dependence. 2968 DeviceLinkerInputs.resize(CudaDeviceActions.size()); 2969 auto LI = DeviceLinkerInputs.begin(); 2970 for (auto *A : CudaDeviceActions) { 2971 LI->push_back(A); 2972 ++LI; 2973 } 2974 2975 // We will pass the device action as a host dependence, so we don't 2976 // need to do anything else with them. 2977 CudaDeviceActions.clear(); 2978 return ABRT_Success; 2979 } 2980 2981 // By default, we produce an action for each device arch. 2982 for (Action *&A : CudaDeviceActions) 2983 A = C.getDriver().ConstructPhaseAction(C, Args, CurPhase, A, 2984 AssociatedOffloadKind); 2985 2986 return (CompileDeviceOnly && CurPhase == FinalPhase) ? ABRT_Ignore_Host 2987 : ABRT_Success; 2988 } 2989 2990 void appendLinkDeviceActions(ActionList &AL) override { 2991 if (DeviceLinkerInputs.size() == 0) 2992 return; 2993 2994 assert(DeviceLinkerInputs.size() == GpuArchList.size() && 2995 "Linker inputs and GPU arch list sizes do not match."); 2996 2997 // Append a new link action for each device. 2998 unsigned I = 0; 2999 for (auto &LI : DeviceLinkerInputs) { 3000 // Each entry in DeviceLinkerInputs corresponds to a GPU arch. 3001 auto *DeviceLinkAction = 3002 C.MakeAction<LinkJobAction>(LI, types::TY_Image); 3003 // Linking all inputs for the current GPU arch. 3004 // LI contains all the inputs for the linker. 3005 OffloadAction::DeviceDependences DeviceLinkDeps; 3006 DeviceLinkDeps.add(*DeviceLinkAction, *ToolChains[0], 3007 GpuArchList[I], AssociatedOffloadKind); 3008 AL.push_back(C.MakeAction<OffloadAction>(DeviceLinkDeps, 3009 DeviceLinkAction->getType())); 3010 ++I; 3011 } 3012 DeviceLinkerInputs.clear(); 3013 3014 // Create a host object from all the device images by embedding them 3015 // in a fat binary. 3016 OffloadAction::DeviceDependences DDeps; 3017 auto *TopDeviceLinkAction = 3018 C.MakeAction<LinkJobAction>(AL, types::TY_Object); 3019 DDeps.add(*TopDeviceLinkAction, *ToolChains[0], 3020 nullptr, AssociatedOffloadKind); 3021 3022 // Offload the host object to the host linker. 3023 AL.push_back(C.MakeAction<OffloadAction>(DDeps, TopDeviceLinkAction->getType())); 3024 } 3025 3026 Action* appendLinkHostActions(ActionList &AL) override { return AL.back(); } 3027 3028 void appendLinkDependences(OffloadAction::DeviceDependences &DA) override {} 3029 }; 3030 3031 /// OpenMP action builder. The host bitcode is passed to the device frontend 3032 /// and all the device linked images are passed to the host link phase. 3033 class OpenMPActionBuilder final : public DeviceActionBuilder { 3034 /// The OpenMP actions for the current input. 3035 ActionList OpenMPDeviceActions; 3036 3037 /// The linker inputs obtained for each toolchain. 3038 SmallVector<ActionList, 8> DeviceLinkerInputs; 3039 3040 public: 3041 OpenMPActionBuilder(Compilation &C, DerivedArgList &Args, 3042 const Driver::InputList &Inputs) 3043 : DeviceActionBuilder(C, Args, Inputs, Action::OFK_OpenMP) {} 3044 3045 ActionBuilderReturnCode 3046 getDeviceDependences(OffloadAction::DeviceDependences &DA, 3047 phases::ID CurPhase, phases::ID FinalPhase, 3048 PhasesTy &Phases) override { 3049 if (OpenMPDeviceActions.empty()) 3050 return ABRT_Inactive; 3051 3052 // We should always have an action for each input. 3053 assert(OpenMPDeviceActions.size() == ToolChains.size() && 3054 "Number of OpenMP actions and toolchains do not match."); 3055 3056 // The host only depends on device action in the linking phase, when all 3057 // the device images have to be embedded in the host image. 3058 if (CurPhase == phases::Link) { 3059 assert(ToolChains.size() == DeviceLinkerInputs.size() && 3060 "Toolchains and linker inputs sizes do not match."); 3061 auto LI = DeviceLinkerInputs.begin(); 3062 for (auto *A : OpenMPDeviceActions) { 3063 LI->push_back(A); 3064 ++LI; 3065 } 3066 3067 // We passed the device action as a host dependence, so we don't need to 3068 // do anything else with them. 3069 OpenMPDeviceActions.clear(); 3070 return ABRT_Success; 3071 } 3072 3073 // By default, we produce an action for each device arch. 3074 for (Action *&A : OpenMPDeviceActions) 3075 A = C.getDriver().ConstructPhaseAction(C, Args, CurPhase, A); 3076 3077 return ABRT_Success; 3078 } 3079 3080 ActionBuilderReturnCode addDeviceDepences(Action *HostAction) override { 3081 3082 // If this is an input action replicate it for each OpenMP toolchain. 3083 if (auto *IA = dyn_cast<InputAction>(HostAction)) { 3084 OpenMPDeviceActions.clear(); 3085 for (unsigned I = 0; I < ToolChains.size(); ++I) 3086 OpenMPDeviceActions.push_back( 3087 C.MakeAction<InputAction>(IA->getInputArg(), IA->getType())); 3088 return ABRT_Success; 3089 } 3090 3091 // If this is an unbundling action use it as is for each OpenMP toolchain. 3092 if (auto *UA = dyn_cast<OffloadUnbundlingJobAction>(HostAction)) { 3093 OpenMPDeviceActions.clear(); 3094 auto *IA = cast<InputAction>(UA->getInputs().back()); 3095 std::string FileName = IA->getInputArg().getAsString(Args); 3096 // Check if the type of the file is the same as the action. Do not 3097 // unbundle it if it is not. Do not unbundle .so files, for example, 3098 // which are not object files. 3099 if (IA->getType() == types::TY_Object && 3100 (!llvm::sys::path::has_extension(FileName) || 3101 types::lookupTypeForExtension( 3102 llvm::sys::path::extension(FileName).drop_front()) != 3103 types::TY_Object)) 3104 return ABRT_Inactive; 3105 for (unsigned I = 0; I < ToolChains.size(); ++I) { 3106 OpenMPDeviceActions.push_back(UA); 3107 UA->registerDependentActionInfo( 3108 ToolChains[I], /*BoundArch=*/StringRef(), Action::OFK_OpenMP); 3109 } 3110 return ABRT_Success; 3111 } 3112 3113 // When generating code for OpenMP we use the host compile phase result as 3114 // a dependence to the device compile phase so that it can learn what 3115 // declarations should be emitted. However, this is not the only use for 3116 // the host action, so we prevent it from being collapsed. 3117 if (isa<CompileJobAction>(HostAction)) { 3118 HostAction->setCannotBeCollapsedWithNextDependentAction(); 3119 assert(ToolChains.size() == OpenMPDeviceActions.size() && 3120 "Toolchains and device action sizes do not match."); 3121 OffloadAction::HostDependence HDep( 3122 *HostAction, *C.getSingleOffloadToolChain<Action::OFK_Host>(), 3123 /*BoundArch=*/nullptr, Action::OFK_OpenMP); 3124 auto TC = ToolChains.begin(); 3125 for (Action *&A : OpenMPDeviceActions) { 3126 assert(isa<CompileJobAction>(A)); 3127 OffloadAction::DeviceDependences DDep; 3128 DDep.add(*A, **TC, /*BoundArch=*/nullptr, Action::OFK_OpenMP); 3129 A = C.MakeAction<OffloadAction>(HDep, DDep); 3130 ++TC; 3131 } 3132 } 3133 return ABRT_Success; 3134 } 3135 3136 void appendTopLevelActions(ActionList &AL) override { 3137 if (OpenMPDeviceActions.empty()) 3138 return; 3139 3140 // We should always have an action for each input. 3141 assert(OpenMPDeviceActions.size() == ToolChains.size() && 3142 "Number of OpenMP actions and toolchains do not match."); 3143 3144 // Append all device actions followed by the proper offload action. 3145 auto TI = ToolChains.begin(); 3146 for (auto *A : OpenMPDeviceActions) { 3147 OffloadAction::DeviceDependences Dep; 3148 Dep.add(*A, **TI, /*BoundArch=*/nullptr, Action::OFK_OpenMP); 3149 AL.push_back(C.MakeAction<OffloadAction>(Dep, A->getType())); 3150 ++TI; 3151 } 3152 // We no longer need the action stored in this builder. 3153 OpenMPDeviceActions.clear(); 3154 } 3155 3156 void appendLinkDeviceActions(ActionList &AL) override { 3157 assert(ToolChains.size() == DeviceLinkerInputs.size() && 3158 "Toolchains and linker inputs sizes do not match."); 3159 3160 // Append a new link action for each device. 3161 auto TC = ToolChains.begin(); 3162 for (auto &LI : DeviceLinkerInputs) { 3163 auto *DeviceLinkAction = 3164 C.MakeAction<LinkJobAction>(LI, types::TY_Image); 3165 OffloadAction::DeviceDependences DeviceLinkDeps; 3166 DeviceLinkDeps.add(*DeviceLinkAction, **TC, /*BoundArch=*/nullptr, 3167 Action::OFK_OpenMP); 3168 AL.push_back(C.MakeAction<OffloadAction>(DeviceLinkDeps, 3169 DeviceLinkAction->getType())); 3170 ++TC; 3171 } 3172 DeviceLinkerInputs.clear(); 3173 } 3174 3175 Action* appendLinkHostActions(ActionList &AL) override { 3176 // Create wrapper bitcode from the result of device link actions and compile 3177 // it to an object which will be added to the host link command. 3178 auto *BC = C.MakeAction<OffloadWrapperJobAction>(AL, types::TY_LLVM_BC); 3179 auto *ASM = C.MakeAction<BackendJobAction>(BC, types::TY_PP_Asm); 3180 return C.MakeAction<AssembleJobAction>(ASM, types::TY_Object); 3181 } 3182 3183 void appendLinkDependences(OffloadAction::DeviceDependences &DA) override {} 3184 3185 bool initialize() override { 3186 // Get the OpenMP toolchains. If we don't get any, the action builder will 3187 // know there is nothing to do related to OpenMP offloading. 3188 auto OpenMPTCRange = C.getOffloadToolChains<Action::OFK_OpenMP>(); 3189 for (auto TI = OpenMPTCRange.first, TE = OpenMPTCRange.second; TI != TE; 3190 ++TI) 3191 ToolChains.push_back(TI->second); 3192 3193 DeviceLinkerInputs.resize(ToolChains.size()); 3194 return false; 3195 } 3196 3197 bool canUseBundlerUnbundler() const override { 3198 // OpenMP should use bundled files whenever possible. 3199 return true; 3200 } 3201 }; 3202 3203 /// 3204 /// TODO: Add the implementation for other specialized builders here. 3205 /// 3206 3207 /// Specialized builders being used by this offloading action builder. 3208 SmallVector<DeviceActionBuilder *, 4> SpecializedBuilders; 3209 3210 /// Flag set to true if all valid builders allow file bundling/unbundling. 3211 bool CanUseBundler; 3212 3213 public: 3214 OffloadingActionBuilder(Compilation &C, DerivedArgList &Args, 3215 const Driver::InputList &Inputs) 3216 : C(C) { 3217 // Create a specialized builder for each device toolchain. 3218 3219 IsValid = true; 3220 3221 // Create a specialized builder for CUDA. 3222 SpecializedBuilders.push_back(new CudaActionBuilder(C, Args, Inputs)); 3223 3224 // Create a specialized builder for HIP. 3225 SpecializedBuilders.push_back(new HIPActionBuilder(C, Args, Inputs)); 3226 3227 // Create a specialized builder for OpenMP. 3228 SpecializedBuilders.push_back(new OpenMPActionBuilder(C, Args, Inputs)); 3229 3230 // 3231 // TODO: Build other specialized builders here. 3232 // 3233 3234 // Initialize all the builders, keeping track of errors. If all valid 3235 // builders agree that we can use bundling, set the flag to true. 3236 unsigned ValidBuilders = 0u; 3237 unsigned ValidBuildersSupportingBundling = 0u; 3238 for (auto *SB : SpecializedBuilders) { 3239 IsValid = IsValid && !SB->initialize(); 3240 3241 // Update the counters if the builder is valid. 3242 if (SB->isValid()) { 3243 ++ValidBuilders; 3244 if (SB->canUseBundlerUnbundler()) 3245 ++ValidBuildersSupportingBundling; 3246 } 3247 } 3248 CanUseBundler = 3249 ValidBuilders && ValidBuilders == ValidBuildersSupportingBundling; 3250 } 3251 3252 ~OffloadingActionBuilder() { 3253 for (auto *SB : SpecializedBuilders) 3254 delete SB; 3255 } 3256 3257 /// Generate an action that adds device dependences (if any) to a host action. 3258 /// If no device dependence actions exist, just return the host action \a 3259 /// HostAction. If an error is found or if no builder requires the host action 3260 /// to be generated, return nullptr. 3261 Action * 3262 addDeviceDependencesToHostAction(Action *HostAction, const Arg *InputArg, 3263 phases::ID CurPhase, phases::ID FinalPhase, 3264 DeviceActionBuilder::PhasesTy &Phases) { 3265 if (!IsValid) 3266 return nullptr; 3267 3268 if (SpecializedBuilders.empty()) 3269 return HostAction; 3270 3271 assert(HostAction && "Invalid host action!"); 3272 3273 OffloadAction::DeviceDependences DDeps; 3274 // Check if all the programming models agree we should not emit the host 3275 // action. Also, keep track of the offloading kinds employed. 3276 auto &OffloadKind = InputArgToOffloadKindMap[InputArg]; 3277 unsigned InactiveBuilders = 0u; 3278 unsigned IgnoringBuilders = 0u; 3279 for (auto *SB : SpecializedBuilders) { 3280 if (!SB->isValid()) { 3281 ++InactiveBuilders; 3282 continue; 3283 } 3284 3285 auto RetCode = 3286 SB->getDeviceDependences(DDeps, CurPhase, FinalPhase, Phases); 3287 3288 // If the builder explicitly says the host action should be ignored, 3289 // we need to increment the variable that tracks the builders that request 3290 // the host object to be ignored. 3291 if (RetCode == DeviceActionBuilder::ABRT_Ignore_Host) 3292 ++IgnoringBuilders; 3293 3294 // Unless the builder was inactive for this action, we have to record the 3295 // offload kind because the host will have to use it. 3296 if (RetCode != DeviceActionBuilder::ABRT_Inactive) 3297 OffloadKind |= SB->getAssociatedOffloadKind(); 3298 } 3299 3300 // If all builders agree that the host object should be ignored, just return 3301 // nullptr. 3302 if (IgnoringBuilders && 3303 SpecializedBuilders.size() == (InactiveBuilders + IgnoringBuilders)) 3304 return nullptr; 3305 3306 if (DDeps.getActions().empty()) 3307 return HostAction; 3308 3309 // We have dependences we need to bundle together. We use an offload action 3310 // for that. 3311 OffloadAction::HostDependence HDep( 3312 *HostAction, *C.getSingleOffloadToolChain<Action::OFK_Host>(), 3313 /*BoundArch=*/nullptr, DDeps); 3314 return C.MakeAction<OffloadAction>(HDep, DDeps); 3315 } 3316 3317 /// Generate an action that adds a host dependence to a device action. The 3318 /// results will be kept in this action builder. Return true if an error was 3319 /// found. 3320 bool addHostDependenceToDeviceActions(Action *&HostAction, 3321 const Arg *InputArg) { 3322 if (!IsValid) 3323 return true; 3324 3325 // If we are supporting bundling/unbundling and the current action is an 3326 // input action of non-source file, we replace the host action by the 3327 // unbundling action. The bundler tool has the logic to detect if an input 3328 // is a bundle or not and if the input is not a bundle it assumes it is a 3329 // host file. Therefore it is safe to create an unbundling action even if 3330 // the input is not a bundle. 3331 if (CanUseBundler && isa<InputAction>(HostAction) && 3332 InputArg->getOption().getKind() == llvm::opt::Option::InputClass && 3333 (!types::isSrcFile(HostAction->getType()) || 3334 HostAction->getType() == types::TY_PP_HIP)) { 3335 auto UnbundlingHostAction = 3336 C.MakeAction<OffloadUnbundlingJobAction>(HostAction); 3337 UnbundlingHostAction->registerDependentActionInfo( 3338 C.getSingleOffloadToolChain<Action::OFK_Host>(), 3339 /*BoundArch=*/StringRef(), Action::OFK_Host); 3340 HostAction = UnbundlingHostAction; 3341 } 3342 3343 assert(HostAction && "Invalid host action!"); 3344 3345 // Register the offload kinds that are used. 3346 auto &OffloadKind = InputArgToOffloadKindMap[InputArg]; 3347 for (auto *SB : SpecializedBuilders) { 3348 if (!SB->isValid()) 3349 continue; 3350 3351 auto RetCode = SB->addDeviceDepences(HostAction); 3352 3353 // Host dependences for device actions are not compatible with that same 3354 // action being ignored. 3355 assert(RetCode != DeviceActionBuilder::ABRT_Ignore_Host && 3356 "Host dependence not expected to be ignored.!"); 3357 3358 // Unless the builder was inactive for this action, we have to record the 3359 // offload kind because the host will have to use it. 3360 if (RetCode != DeviceActionBuilder::ABRT_Inactive) 3361 OffloadKind |= SB->getAssociatedOffloadKind(); 3362 } 3363 3364 // Do not use unbundler if the Host does not depend on device action. 3365 if (OffloadKind == Action::OFK_None && CanUseBundler) 3366 if (auto *UA = dyn_cast<OffloadUnbundlingJobAction>(HostAction)) 3367 HostAction = UA->getInputs().back(); 3368 3369 return false; 3370 } 3371 3372 /// Add the offloading top level actions to the provided action list. This 3373 /// function can replace the host action by a bundling action if the 3374 /// programming models allow it. 3375 bool appendTopLevelActions(ActionList &AL, Action *HostAction, 3376 const Arg *InputArg) { 3377 // Get the device actions to be appended. 3378 ActionList OffloadAL; 3379 for (auto *SB : SpecializedBuilders) { 3380 if (!SB->isValid()) 3381 continue; 3382 SB->appendTopLevelActions(OffloadAL); 3383 } 3384 3385 // If we can use the bundler, replace the host action by the bundling one in 3386 // the resulting list. Otherwise, just append the device actions. For 3387 // device only compilation, HostAction is a null pointer, therefore only do 3388 // this when HostAction is not a null pointer. 3389 if (CanUseBundler && HostAction && 3390 HostAction->getType() != types::TY_Nothing && !OffloadAL.empty()) { 3391 // Add the host action to the list in order to create the bundling action. 3392 OffloadAL.push_back(HostAction); 3393 3394 // We expect that the host action was just appended to the action list 3395 // before this method was called. 3396 assert(HostAction == AL.back() && "Host action not in the list??"); 3397 HostAction = C.MakeAction<OffloadBundlingJobAction>(OffloadAL); 3398 AL.back() = HostAction; 3399 } else 3400 AL.append(OffloadAL.begin(), OffloadAL.end()); 3401 3402 // Propagate to the current host action (if any) the offload information 3403 // associated with the current input. 3404 if (HostAction) 3405 HostAction->propagateHostOffloadInfo(InputArgToOffloadKindMap[InputArg], 3406 /*BoundArch=*/nullptr); 3407 return false; 3408 } 3409 3410 Action* makeHostLinkAction() { 3411 // Build a list of device linking actions. 3412 ActionList DeviceAL; 3413 for (DeviceActionBuilder *SB : SpecializedBuilders) { 3414 if (!SB->isValid()) 3415 continue; 3416 SB->appendLinkDeviceActions(DeviceAL); 3417 } 3418 3419 if (DeviceAL.empty()) 3420 return nullptr; 3421 3422 // Let builders add host linking actions. 3423 Action* HA; 3424 for (DeviceActionBuilder *SB : SpecializedBuilders) { 3425 if (!SB->isValid()) 3426 continue; 3427 HA = SB->appendLinkHostActions(DeviceAL); 3428 } 3429 return HA; 3430 } 3431 3432 /// Processes the host linker action. This currently consists of replacing it 3433 /// with an offload action if there are device link objects and propagate to 3434 /// the host action all the offload kinds used in the current compilation. The 3435 /// resulting action is returned. 3436 Action *processHostLinkAction(Action *HostAction) { 3437 // Add all the dependences from the device linking actions. 3438 OffloadAction::DeviceDependences DDeps; 3439 for (auto *SB : SpecializedBuilders) { 3440 if (!SB->isValid()) 3441 continue; 3442 3443 SB->appendLinkDependences(DDeps); 3444 } 3445 3446 // Calculate all the offload kinds used in the current compilation. 3447 unsigned ActiveOffloadKinds = 0u; 3448 for (auto &I : InputArgToOffloadKindMap) 3449 ActiveOffloadKinds |= I.second; 3450 3451 // If we don't have device dependencies, we don't have to create an offload 3452 // action. 3453 if (DDeps.getActions().empty()) { 3454 // Propagate all the active kinds to host action. Given that it is a link 3455 // action it is assumed to depend on all actions generated so far. 3456 HostAction->propagateHostOffloadInfo(ActiveOffloadKinds, 3457 /*BoundArch=*/nullptr); 3458 return HostAction; 3459 } 3460 3461 // Create the offload action with all dependences. When an offload action 3462 // is created the kinds are propagated to the host action, so we don't have 3463 // to do that explicitly here. 3464 OffloadAction::HostDependence HDep( 3465 *HostAction, *C.getSingleOffloadToolChain<Action::OFK_Host>(), 3466 /*BoundArch*/ nullptr, ActiveOffloadKinds); 3467 return C.MakeAction<OffloadAction>(HDep, DDeps); 3468 } 3469 }; 3470 } // anonymous namespace. 3471 3472 void Driver::handleArguments(Compilation &C, DerivedArgList &Args, 3473 const InputList &Inputs, 3474 ActionList &Actions) const { 3475 3476 // Ignore /Yc/Yu if both /Yc and /Yu passed but with different filenames. 3477 Arg *YcArg = Args.getLastArg(options::OPT__SLASH_Yc); 3478 Arg *YuArg = Args.getLastArg(options::OPT__SLASH_Yu); 3479 if (YcArg && YuArg && strcmp(YcArg->getValue(), YuArg->getValue()) != 0) { 3480 Diag(clang::diag::warn_drv_ycyu_different_arg_clang_cl); 3481 Args.eraseArg(options::OPT__SLASH_Yc); 3482 Args.eraseArg(options::OPT__SLASH_Yu); 3483 YcArg = YuArg = nullptr; 3484 } 3485 if (YcArg && Inputs.size() > 1) { 3486 Diag(clang::diag::warn_drv_yc_multiple_inputs_clang_cl); 3487 Args.eraseArg(options::OPT__SLASH_Yc); 3488 YcArg = nullptr; 3489 } 3490 3491 Arg *FinalPhaseArg; 3492 phases::ID FinalPhase = getFinalPhase(Args, &FinalPhaseArg); 3493 3494 if (FinalPhase == phases::Link) { 3495 if (Args.hasArg(options::OPT_emit_llvm)) 3496 Diag(clang::diag::err_drv_emit_llvm_link); 3497 if (IsCLMode() && LTOMode != LTOK_None && 3498 !Args.getLastArgValue(options::OPT_fuse_ld_EQ).equals_lower("lld")) 3499 Diag(clang::diag::err_drv_lto_without_lld); 3500 } 3501 3502 if (FinalPhase == phases::Preprocess || Args.hasArg(options::OPT__SLASH_Y_)) { 3503 // If only preprocessing or /Y- is used, all pch handling is disabled. 3504 // Rather than check for it everywhere, just remove clang-cl pch-related 3505 // flags here. 3506 Args.eraseArg(options::OPT__SLASH_Fp); 3507 Args.eraseArg(options::OPT__SLASH_Yc); 3508 Args.eraseArg(options::OPT__SLASH_Yu); 3509 YcArg = YuArg = nullptr; 3510 } 3511 3512 unsigned LastPLSize = 0; 3513 for (auto &I : Inputs) { 3514 types::ID InputType = I.first; 3515 const Arg *InputArg = I.second; 3516 3517 auto PL = types::getCompilationPhases(InputType); 3518 LastPLSize = PL.size(); 3519 3520 // If the first step comes after the final phase we are doing as part of 3521 // this compilation, warn the user about it. 3522 phases::ID InitialPhase = PL[0]; 3523 if (InitialPhase > FinalPhase) { 3524 if (InputArg->isClaimed()) 3525 continue; 3526 3527 // Claim here to avoid the more general unused warning. 3528 InputArg->claim(); 3529 3530 // Suppress all unused style warnings with -Qunused-arguments 3531 if (Args.hasArg(options::OPT_Qunused_arguments)) 3532 continue; 3533 3534 // Special case when final phase determined by binary name, rather than 3535 // by a command-line argument with a corresponding Arg. 3536 if (CCCIsCPP()) 3537 Diag(clang::diag::warn_drv_input_file_unused_by_cpp) 3538 << InputArg->getAsString(Args) << getPhaseName(InitialPhase); 3539 // Special case '-E' warning on a previously preprocessed file to make 3540 // more sense. 3541 else if (InitialPhase == phases::Compile && 3542 (Args.getLastArg(options::OPT__SLASH_EP, 3543 options::OPT__SLASH_P) || 3544 Args.getLastArg(options::OPT_E) || 3545 Args.getLastArg(options::OPT_M, options::OPT_MM)) && 3546 getPreprocessedType(InputType) == types::TY_INVALID) 3547 Diag(clang::diag::warn_drv_preprocessed_input_file_unused) 3548 << InputArg->getAsString(Args) << !!FinalPhaseArg 3549 << (FinalPhaseArg ? FinalPhaseArg->getOption().getName() : ""); 3550 else 3551 Diag(clang::diag::warn_drv_input_file_unused) 3552 << InputArg->getAsString(Args) << getPhaseName(InitialPhase) 3553 << !!FinalPhaseArg 3554 << (FinalPhaseArg ? FinalPhaseArg->getOption().getName() : ""); 3555 continue; 3556 } 3557 3558 if (YcArg) { 3559 // Add a separate precompile phase for the compile phase. 3560 if (FinalPhase >= phases::Compile) { 3561 const types::ID HeaderType = lookupHeaderTypeForSourceType(InputType); 3562 // Build the pipeline for the pch file. 3563 Action *ClangClPch = C.MakeAction<InputAction>(*InputArg, HeaderType); 3564 for (phases::ID Phase : types::getCompilationPhases(HeaderType)) 3565 ClangClPch = ConstructPhaseAction(C, Args, Phase, ClangClPch); 3566 assert(ClangClPch); 3567 Actions.push_back(ClangClPch); 3568 // The driver currently exits after the first failed command. This 3569 // relies on that behavior, to make sure if the pch generation fails, 3570 // the main compilation won't run. 3571 // FIXME: If the main compilation fails, the PCH generation should 3572 // probably not be considered successful either. 3573 } 3574 } 3575 } 3576 3577 // If we are linking, claim any options which are obviously only used for 3578 // compilation. 3579 // FIXME: Understand why the last Phase List length is used here. 3580 if (FinalPhase == phases::Link && LastPLSize == 1) { 3581 Args.ClaimAllArgs(options::OPT_CompileOnly_Group); 3582 Args.ClaimAllArgs(options::OPT_cl_compile_Group); 3583 } 3584 } 3585 3586 void Driver::BuildActions(Compilation &C, DerivedArgList &Args, 3587 const InputList &Inputs, ActionList &Actions) const { 3588 llvm::PrettyStackTraceString CrashInfo("Building compilation actions"); 3589 3590 if (!SuppressMissingInputWarning && Inputs.empty()) { 3591 Diag(clang::diag::err_drv_no_input_files); 3592 return; 3593 } 3594 3595 // Reject -Z* at the top level, these options should never have been exposed 3596 // by gcc. 3597 if (Arg *A = Args.getLastArg(options::OPT_Z_Joined)) 3598 Diag(clang::diag::err_drv_use_of_Z_option) << A->getAsString(Args); 3599 3600 // Diagnose misuse of /Fo. 3601 if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fo)) { 3602 StringRef V = A->getValue(); 3603 if (Inputs.size() > 1 && !V.empty() && 3604 !llvm::sys::path::is_separator(V.back())) { 3605 // Check whether /Fo tries to name an output file for multiple inputs. 3606 Diag(clang::diag::err_drv_out_file_argument_with_multiple_sources) 3607 << A->getSpelling() << V; 3608 Args.eraseArg(options::OPT__SLASH_Fo); 3609 } 3610 } 3611 3612 // Diagnose misuse of /Fa. 3613 if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fa)) { 3614 StringRef V = A->getValue(); 3615 if (Inputs.size() > 1 && !V.empty() && 3616 !llvm::sys::path::is_separator(V.back())) { 3617 // Check whether /Fa tries to name an asm file for multiple inputs. 3618 Diag(clang::diag::err_drv_out_file_argument_with_multiple_sources) 3619 << A->getSpelling() << V; 3620 Args.eraseArg(options::OPT__SLASH_Fa); 3621 } 3622 } 3623 3624 // Diagnose misuse of /o. 3625 if (Arg *A = Args.getLastArg(options::OPT__SLASH_o)) { 3626 if (A->getValue()[0] == '\0') { 3627 // It has to have a value. 3628 Diag(clang::diag::err_drv_missing_argument) << A->getSpelling() << 1; 3629 Args.eraseArg(options::OPT__SLASH_o); 3630 } 3631 } 3632 3633 handleArguments(C, Args, Inputs, Actions); 3634 3635 // Builder to be used to build offloading actions. 3636 OffloadingActionBuilder OffloadBuilder(C, Args, Inputs); 3637 3638 // Construct the actions to perform. 3639 HeaderModulePrecompileJobAction *HeaderModuleAction = nullptr; 3640 ActionList LinkerInputs; 3641 ActionList MergerInputs; 3642 3643 for (auto &I : Inputs) { 3644 types::ID InputType = I.first; 3645 const Arg *InputArg = I.second; 3646 3647 auto PL = types::getCompilationPhases(*this, Args, InputType); 3648 if (PL.empty()) 3649 continue; 3650 3651 auto FullPL = types::getCompilationPhases(InputType); 3652 3653 // Build the pipeline for this file. 3654 Action *Current = C.MakeAction<InputAction>(*InputArg, InputType); 3655 3656 // Use the current host action in any of the offloading actions, if 3657 // required. 3658 if (OffloadBuilder.addHostDependenceToDeviceActions(Current, InputArg)) 3659 break; 3660 3661 for (phases::ID Phase : PL) { 3662 3663 // Add any offload action the host action depends on. 3664 Current = OffloadBuilder.addDeviceDependencesToHostAction( 3665 Current, InputArg, Phase, PL.back(), FullPL); 3666 if (!Current) 3667 break; 3668 3669 // Queue linker inputs. 3670 if (Phase == phases::Link) { 3671 assert(Phase == PL.back() && "linking must be final compilation step."); 3672 LinkerInputs.push_back(Current); 3673 Current = nullptr; 3674 break; 3675 } 3676 3677 // TODO: Consider removing this because the merged may not end up being 3678 // the final Phase in the pipeline. Perhaps the merged could just merge 3679 // and then pass an artifact of some sort to the Link Phase. 3680 // Queue merger inputs. 3681 if (Phase == phases::IfsMerge) { 3682 assert(Phase == PL.back() && "merging must be final compilation step."); 3683 MergerInputs.push_back(Current); 3684 Current = nullptr; 3685 break; 3686 } 3687 3688 // Each precompiled header file after a module file action is a module 3689 // header of that same module file, rather than being compiled to a 3690 // separate PCH. 3691 if (Phase == phases::Precompile && HeaderModuleAction && 3692 getPrecompiledType(InputType) == types::TY_PCH) { 3693 HeaderModuleAction->addModuleHeaderInput(Current); 3694 Current = nullptr; 3695 break; 3696 } 3697 3698 // FIXME: Should we include any prior module file outputs as inputs of 3699 // later actions in the same command line? 3700 3701 // Otherwise construct the appropriate action. 3702 Action *NewCurrent = ConstructPhaseAction(C, Args, Phase, Current); 3703 3704 // We didn't create a new action, so we will just move to the next phase. 3705 if (NewCurrent == Current) 3706 continue; 3707 3708 if (auto *HMA = dyn_cast<HeaderModulePrecompileJobAction>(NewCurrent)) 3709 HeaderModuleAction = HMA; 3710 3711 Current = NewCurrent; 3712 3713 // Use the current host action in any of the offloading actions, if 3714 // required. 3715 if (OffloadBuilder.addHostDependenceToDeviceActions(Current, InputArg)) 3716 break; 3717 3718 if (Current->getType() == types::TY_Nothing) 3719 break; 3720 } 3721 3722 // If we ended with something, add to the output list. 3723 if (Current) 3724 Actions.push_back(Current); 3725 3726 // Add any top level actions generated for offloading. 3727 OffloadBuilder.appendTopLevelActions(Actions, Current, InputArg); 3728 } 3729 3730 // Add a link action if necessary. 3731 if (!LinkerInputs.empty()) { 3732 if (Action *Wrapper = OffloadBuilder.makeHostLinkAction()) 3733 LinkerInputs.push_back(Wrapper); 3734 Action *LA; 3735 // Check if this Linker Job should emit a static library. 3736 if (ShouldEmitStaticLibrary(Args)) { 3737 LA = C.MakeAction<StaticLibJobAction>(LinkerInputs, types::TY_Image); 3738 } else { 3739 LA = C.MakeAction<LinkJobAction>(LinkerInputs, types::TY_Image); 3740 } 3741 LA = OffloadBuilder.processHostLinkAction(LA); 3742 Actions.push_back(LA); 3743 } 3744 3745 // Add an interface stubs merge action if necessary. 3746 if (!MergerInputs.empty()) 3747 Actions.push_back( 3748 C.MakeAction<IfsMergeJobAction>(MergerInputs, types::TY_Image)); 3749 3750 if (Args.hasArg(options::OPT_emit_interface_stubs)) { 3751 auto PhaseList = types::getCompilationPhases( 3752 types::TY_IFS_CPP, 3753 Args.hasArg(options::OPT_c) ? phases::Compile : phases::LastPhase); 3754 3755 ActionList MergerInputs; 3756 3757 for (auto &I : Inputs) { 3758 types::ID InputType = I.first; 3759 const Arg *InputArg = I.second; 3760 3761 // Currently clang and the llvm assembler do not support generating symbol 3762 // stubs from assembly, so we skip the input on asm files. For ifs files 3763 // we rely on the normal pipeline setup in the pipeline setup code above. 3764 if (InputType == types::TY_IFS || InputType == types::TY_PP_Asm || 3765 InputType == types::TY_Asm) 3766 continue; 3767 3768 Action *Current = C.MakeAction<InputAction>(*InputArg, InputType); 3769 3770 for (auto Phase : PhaseList) { 3771 switch (Phase) { 3772 default: 3773 llvm_unreachable( 3774 "IFS Pipeline can only consist of Compile followed by IfsMerge."); 3775 case phases::Compile: { 3776 // Only IfsMerge (llvm-ifs) can handle .o files by looking for ifs 3777 // files where the .o file is located. The compile action can not 3778 // handle this. 3779 if (InputType == types::TY_Object) 3780 break; 3781 3782 Current = C.MakeAction<CompileJobAction>(Current, types::TY_IFS_CPP); 3783 break; 3784 } 3785 case phases::IfsMerge: { 3786 assert(Phase == PhaseList.back() && 3787 "merging must be final compilation step."); 3788 MergerInputs.push_back(Current); 3789 Current = nullptr; 3790 break; 3791 } 3792 } 3793 } 3794 3795 // If we ended with something, add to the output list. 3796 if (Current) 3797 Actions.push_back(Current); 3798 } 3799 3800 // Add an interface stubs merge action if necessary. 3801 if (!MergerInputs.empty()) 3802 Actions.push_back( 3803 C.MakeAction<IfsMergeJobAction>(MergerInputs, types::TY_Image)); 3804 } 3805 3806 // If --print-supported-cpus, -mcpu=? or -mtune=? is specified, build a custom 3807 // Compile phase that prints out supported cpu models and quits. 3808 if (Arg *A = Args.getLastArg(options::OPT_print_supported_cpus)) { 3809 // Use the -mcpu=? flag as the dummy input to cc1. 3810 Actions.clear(); 3811 Action *InputAc = C.MakeAction<InputAction>(*A, types::TY_C); 3812 Actions.push_back( 3813 C.MakeAction<PrecompileJobAction>(InputAc, types::TY_Nothing)); 3814 for (auto &I : Inputs) 3815 I.second->claim(); 3816 } 3817 3818 // Claim ignored clang-cl options. 3819 Args.ClaimAllArgs(options::OPT_cl_ignored_Group); 3820 3821 // Claim --cuda-host-only and --cuda-compile-host-device, which may be passed 3822 // to non-CUDA compilations and should not trigger warnings there. 3823 Args.ClaimAllArgs(options::OPT_cuda_host_only); 3824 Args.ClaimAllArgs(options::OPT_cuda_compile_host_device); 3825 } 3826 3827 Action *Driver::ConstructPhaseAction( 3828 Compilation &C, const ArgList &Args, phases::ID Phase, Action *Input, 3829 Action::OffloadKind TargetDeviceOffloadKind) const { 3830 llvm::PrettyStackTraceString CrashInfo("Constructing phase actions"); 3831 3832 // Some types skip the assembler phase (e.g., llvm-bc), but we can't 3833 // encode this in the steps because the intermediate type depends on 3834 // arguments. Just special case here. 3835 if (Phase == phases::Assemble && Input->getType() != types::TY_PP_Asm) 3836 return Input; 3837 3838 // Build the appropriate action. 3839 switch (Phase) { 3840 case phases::Link: 3841 llvm_unreachable("link action invalid here."); 3842 case phases::IfsMerge: 3843 llvm_unreachable("ifsmerge action invalid here."); 3844 case phases::Preprocess: { 3845 types::ID OutputTy; 3846 // -M and -MM specify the dependency file name by altering the output type, 3847 // -if -MD and -MMD are not specified. 3848 if (Args.hasArg(options::OPT_M, options::OPT_MM) && 3849 !Args.hasArg(options::OPT_MD, options::OPT_MMD)) { 3850 OutputTy = types::TY_Dependencies; 3851 } else { 3852 OutputTy = Input->getType(); 3853 if (!Args.hasFlag(options::OPT_frewrite_includes, 3854 options::OPT_fno_rewrite_includes, false) && 3855 !Args.hasFlag(options::OPT_frewrite_imports, 3856 options::OPT_fno_rewrite_imports, false) && 3857 !CCGenDiagnostics) 3858 OutputTy = types::getPreprocessedType(OutputTy); 3859 assert(OutputTy != types::TY_INVALID && 3860 "Cannot preprocess this input type!"); 3861 } 3862 return C.MakeAction<PreprocessJobAction>(Input, OutputTy); 3863 } 3864 case phases::Precompile: { 3865 types::ID OutputTy = getPrecompiledType(Input->getType()); 3866 assert(OutputTy != types::TY_INVALID && 3867 "Cannot precompile this input type!"); 3868 3869 // If we're given a module name, precompile header file inputs as a 3870 // module, not as a precompiled header. 3871 const char *ModName = nullptr; 3872 if (OutputTy == types::TY_PCH) { 3873 if (Arg *A = Args.getLastArg(options::OPT_fmodule_name_EQ)) 3874 ModName = A->getValue(); 3875 if (ModName) 3876 OutputTy = types::TY_ModuleFile; 3877 } 3878 3879 if (Args.hasArg(options::OPT_fsyntax_only)) { 3880 // Syntax checks should not emit a PCH file 3881 OutputTy = types::TY_Nothing; 3882 } 3883 3884 if (ModName) 3885 return C.MakeAction<HeaderModulePrecompileJobAction>(Input, OutputTy, 3886 ModName); 3887 return C.MakeAction<PrecompileJobAction>(Input, OutputTy); 3888 } 3889 case phases::Compile: { 3890 if (Args.hasArg(options::OPT_fsyntax_only)) 3891 return C.MakeAction<CompileJobAction>(Input, types::TY_Nothing); 3892 if (Args.hasArg(options::OPT_rewrite_objc)) 3893 return C.MakeAction<CompileJobAction>(Input, types::TY_RewrittenObjC); 3894 if (Args.hasArg(options::OPT_rewrite_legacy_objc)) 3895 return C.MakeAction<CompileJobAction>(Input, 3896 types::TY_RewrittenLegacyObjC); 3897 if (Args.hasArg(options::OPT__analyze)) 3898 return C.MakeAction<AnalyzeJobAction>(Input, types::TY_Plist); 3899 if (Args.hasArg(options::OPT__migrate)) 3900 return C.MakeAction<MigrateJobAction>(Input, types::TY_Remap); 3901 if (Args.hasArg(options::OPT_emit_ast)) 3902 return C.MakeAction<CompileJobAction>(Input, types::TY_AST); 3903 if (Args.hasArg(options::OPT_module_file_info)) 3904 return C.MakeAction<CompileJobAction>(Input, types::TY_ModuleFile); 3905 if (Args.hasArg(options::OPT_verify_pch)) 3906 return C.MakeAction<VerifyPCHJobAction>(Input, types::TY_Nothing); 3907 return C.MakeAction<CompileJobAction>(Input, types::TY_LLVM_BC); 3908 } 3909 case phases::Backend: { 3910 if (isUsingLTO() && TargetDeviceOffloadKind == Action::OFK_None) { 3911 types::ID Output = 3912 Args.hasArg(options::OPT_S) ? types::TY_LTO_IR : types::TY_LTO_BC; 3913 return C.MakeAction<BackendJobAction>(Input, Output); 3914 } 3915 if (Args.hasArg(options::OPT_emit_llvm) || 3916 (TargetDeviceOffloadKind == Action::OFK_HIP && 3917 Args.hasFlag(options::OPT_fgpu_rdc, options::OPT_fno_gpu_rdc, 3918 false))) { 3919 types::ID Output = 3920 Args.hasArg(options::OPT_S) ? types::TY_LLVM_IR : types::TY_LLVM_BC; 3921 return C.MakeAction<BackendJobAction>(Input, Output); 3922 } 3923 return C.MakeAction<BackendJobAction>(Input, types::TY_PP_Asm); 3924 } 3925 case phases::Assemble: 3926 return C.MakeAction<AssembleJobAction>(std::move(Input), types::TY_Object); 3927 } 3928 3929 llvm_unreachable("invalid phase in ConstructPhaseAction"); 3930 } 3931 3932 void Driver::BuildJobs(Compilation &C) const { 3933 llvm::PrettyStackTraceString CrashInfo("Building compilation jobs"); 3934 3935 Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o); 3936 3937 // It is an error to provide a -o option if we are making multiple output 3938 // files. There are exceptions: 3939 // 3940 // IfsMergeJob: when generating interface stubs enabled we want to be able to 3941 // generate the stub file at the same time that we generate the real 3942 // library/a.out. So when a .o, .so, etc are the output, with clang interface 3943 // stubs there will also be a .ifs and .ifso at the same location. 3944 // 3945 // CompileJob of type TY_IFS_CPP: when generating interface stubs is enabled 3946 // and -c is passed, we still want to be able to generate a .ifs file while 3947 // we are also generating .o files. So we allow more than one output file in 3948 // this case as well. 3949 // 3950 if (FinalOutput) { 3951 unsigned NumOutputs = 0; 3952 unsigned NumIfsOutputs = 0; 3953 for (const Action *A : C.getActions()) 3954 if (A->getType() != types::TY_Nothing && 3955 !(A->getKind() == Action::IfsMergeJobClass || 3956 (A->getType() == clang::driver::types::TY_IFS_CPP && 3957 A->getKind() == clang::driver::Action::CompileJobClass && 3958 0 == NumIfsOutputs++) || 3959 (A->getKind() == Action::BindArchClass && A->getInputs().size() && 3960 A->getInputs().front()->getKind() == Action::IfsMergeJobClass))) 3961 ++NumOutputs; 3962 3963 if (NumOutputs > 1) { 3964 Diag(clang::diag::err_drv_output_argument_with_multiple_files); 3965 FinalOutput = nullptr; 3966 } 3967 } 3968 3969 const llvm::Triple &RawTriple = C.getDefaultToolChain().getTriple(); 3970 if (RawTriple.isOSAIX()) 3971 if (Arg *A = C.getArgs().getLastArg(options::OPT_G)) 3972 Diag(diag::err_drv_unsupported_opt_for_target) 3973 << A->getSpelling() << RawTriple.str(); 3974 3975 // Collect the list of architectures. 3976 llvm::StringSet<> ArchNames; 3977 if (RawTriple.isOSBinFormatMachO()) 3978 for (const Arg *A : C.getArgs()) 3979 if (A->getOption().matches(options::OPT_arch)) 3980 ArchNames.insert(A->getValue()); 3981 3982 // Set of (Action, canonical ToolChain triple) pairs we've built jobs for. 3983 std::map<std::pair<const Action *, std::string>, InputInfo> CachedResults; 3984 for (Action *A : C.getActions()) { 3985 // If we are linking an image for multiple archs then the linker wants 3986 // -arch_multiple and -final_output <final image name>. Unfortunately, this 3987 // doesn't fit in cleanly because we have to pass this information down. 3988 // 3989 // FIXME: This is a hack; find a cleaner way to integrate this into the 3990 // process. 3991 const char *LinkingOutput = nullptr; 3992 if (isa<LipoJobAction>(A)) { 3993 if (FinalOutput) 3994 LinkingOutput = FinalOutput->getValue(); 3995 else 3996 LinkingOutput = getDefaultImageName(); 3997 } 3998 3999 BuildJobsForAction(C, A, &C.getDefaultToolChain(), 4000 /*BoundArch*/ StringRef(), 4001 /*AtTopLevel*/ true, 4002 /*MultipleArchs*/ ArchNames.size() > 1, 4003 /*LinkingOutput*/ LinkingOutput, CachedResults, 4004 /*TargetDeviceOffloadKind*/ Action::OFK_None); 4005 } 4006 4007 StringRef StatReportFile; 4008 bool PrintProcessStat = false; 4009 if (const Arg *A = C.getArgs().getLastArg(options::OPT_fproc_stat_report_EQ)) 4010 StatReportFile = A->getValue(); 4011 if (C.getArgs().hasArg(options::OPT_fproc_stat_report)) 4012 PrintProcessStat = true; 4013 4014 // If we have more than one job, then disable integrated-cc1 for now. Do this 4015 // also when we need to report process execution statistics. 4016 if (C.getJobs().size() > 1 || !StatReportFile.empty() || PrintProcessStat) 4017 for (auto &J : C.getJobs()) 4018 J.InProcess = false; 4019 4020 if (!StatReportFile.empty() || PrintProcessStat) { 4021 C.setPostCallback([=](const Command &Cmd, int Res) { 4022 Optional<llvm::sys::ProcessStatistics> ProcStat = 4023 Cmd.getProcessStatistics(); 4024 if (!ProcStat) 4025 return; 4026 if (PrintProcessStat) { 4027 using namespace llvm; 4028 // Human readable output. 4029 outs() << sys::path::filename(Cmd.getExecutable()) << ": " 4030 << "output="; 4031 if (Cmd.getOutputFilenames().empty()) 4032 outs() << "\"\""; 4033 else 4034 outs() << Cmd.getOutputFilenames().front(); 4035 outs() << ", total=" 4036 << format("%.3f", ProcStat->TotalTime.count() / 1000.) << " ms" 4037 << ", user=" 4038 << format("%.3f", ProcStat->UserTime.count() / 1000.) << " ms" 4039 << ", mem=" << ProcStat->PeakMemory << " Kb\n"; 4040 } 4041 if (!StatReportFile.empty()) { 4042 // CSV format. 4043 std::string Buffer; 4044 llvm::raw_string_ostream Out(Buffer); 4045 llvm::sys::printArg(Out, llvm::sys::path::filename(Cmd.getExecutable()), 4046 /*Quote*/ true); 4047 Out << ','; 4048 if (Cmd.getOutputFilenames().empty()) 4049 Out << "\"\""; 4050 else 4051 llvm::sys::printArg(Out, Cmd.getOutputFilenames().front(), true); 4052 Out << ',' << ProcStat->TotalTime.count() << ',' 4053 << ProcStat->UserTime.count() << ',' << ProcStat->PeakMemory 4054 << '\n'; 4055 Out.flush(); 4056 std::error_code EC; 4057 llvm::raw_fd_ostream OS(StatReportFile, EC, llvm::sys::fs::OF_Append); 4058 if (EC) 4059 return; 4060 auto L = OS.lock(); 4061 if (!L) { 4062 llvm::errs() << "ERROR: Cannot lock file " << StatReportFile << ": " 4063 << toString(L.takeError()) << "\n"; 4064 return; 4065 } 4066 OS << Buffer; 4067 } 4068 }); 4069 } 4070 4071 // If the user passed -Qunused-arguments or there were errors, don't warn 4072 // about any unused arguments. 4073 if (Diags.hasErrorOccurred() || 4074 C.getArgs().hasArg(options::OPT_Qunused_arguments)) 4075 return; 4076 4077 // Claim -### here. 4078 (void)C.getArgs().hasArg(options::OPT__HASH_HASH_HASH); 4079 4080 // Claim --driver-mode, --rsp-quoting, it was handled earlier. 4081 (void)C.getArgs().hasArg(options::OPT_driver_mode); 4082 (void)C.getArgs().hasArg(options::OPT_rsp_quoting); 4083 4084 for (Arg *A : C.getArgs()) { 4085 // FIXME: It would be nice to be able to send the argument to the 4086 // DiagnosticsEngine, so that extra values, position, and so on could be 4087 // printed. 4088 if (!A->isClaimed()) { 4089 if (A->getOption().hasFlag(options::NoArgumentUnused)) 4090 continue; 4091 4092 // Suppress the warning automatically if this is just a flag, and it is an 4093 // instance of an argument we already claimed. 4094 const Option &Opt = A->getOption(); 4095 if (Opt.getKind() == Option::FlagClass) { 4096 bool DuplicateClaimed = false; 4097 4098 for (const Arg *AA : C.getArgs().filtered(&Opt)) { 4099 if (AA->isClaimed()) { 4100 DuplicateClaimed = true; 4101 break; 4102 } 4103 } 4104 4105 if (DuplicateClaimed) 4106 continue; 4107 } 4108 4109 // In clang-cl, don't mention unknown arguments here since they have 4110 // already been warned about. 4111 if (!IsCLMode() || !A->getOption().matches(options::OPT_UNKNOWN)) 4112 Diag(clang::diag::warn_drv_unused_argument) 4113 << A->getAsString(C.getArgs()); 4114 } 4115 } 4116 } 4117 4118 namespace { 4119 /// Utility class to control the collapse of dependent actions and select the 4120 /// tools accordingly. 4121 class ToolSelector final { 4122 /// The tool chain this selector refers to. 4123 const ToolChain &TC; 4124 4125 /// The compilation this selector refers to. 4126 const Compilation &C; 4127 4128 /// The base action this selector refers to. 4129 const JobAction *BaseAction; 4130 4131 /// Set to true if the current toolchain refers to host actions. 4132 bool IsHostSelector; 4133 4134 /// Set to true if save-temps and embed-bitcode functionalities are active. 4135 bool SaveTemps; 4136 bool EmbedBitcode; 4137 4138 /// Get previous dependent action or null if that does not exist. If 4139 /// \a CanBeCollapsed is false, that action must be legal to collapse or 4140 /// null will be returned. 4141 const JobAction *getPrevDependentAction(const ActionList &Inputs, 4142 ActionList &SavedOffloadAction, 4143 bool CanBeCollapsed = true) { 4144 // An option can be collapsed only if it has a single input. 4145 if (Inputs.size() != 1) 4146 return nullptr; 4147 4148 Action *CurAction = *Inputs.begin(); 4149 if (CanBeCollapsed && 4150 !CurAction->isCollapsingWithNextDependentActionLegal()) 4151 return nullptr; 4152 4153 // If the input action is an offload action. Look through it and save any 4154 // offload action that can be dropped in the event of a collapse. 4155 if (auto *OA = dyn_cast<OffloadAction>(CurAction)) { 4156 // If the dependent action is a device action, we will attempt to collapse 4157 // only with other device actions. Otherwise, we would do the same but 4158 // with host actions only. 4159 if (!IsHostSelector) { 4160 if (OA->hasSingleDeviceDependence(/*DoNotConsiderHostActions=*/true)) { 4161 CurAction = 4162 OA->getSingleDeviceDependence(/*DoNotConsiderHostActions=*/true); 4163 if (CanBeCollapsed && 4164 !CurAction->isCollapsingWithNextDependentActionLegal()) 4165 return nullptr; 4166 SavedOffloadAction.push_back(OA); 4167 return dyn_cast<JobAction>(CurAction); 4168 } 4169 } else if (OA->hasHostDependence()) { 4170 CurAction = OA->getHostDependence(); 4171 if (CanBeCollapsed && 4172 !CurAction->isCollapsingWithNextDependentActionLegal()) 4173 return nullptr; 4174 SavedOffloadAction.push_back(OA); 4175 return dyn_cast<JobAction>(CurAction); 4176 } 4177 return nullptr; 4178 } 4179 4180 return dyn_cast<JobAction>(CurAction); 4181 } 4182 4183 /// Return true if an assemble action can be collapsed. 4184 bool canCollapseAssembleAction() const { 4185 return TC.useIntegratedAs() && !SaveTemps && 4186 !C.getArgs().hasArg(options::OPT_via_file_asm) && 4187 !C.getArgs().hasArg(options::OPT__SLASH_FA) && 4188 !C.getArgs().hasArg(options::OPT__SLASH_Fa); 4189 } 4190 4191 /// Return true if a preprocessor action can be collapsed. 4192 bool canCollapsePreprocessorAction() const { 4193 return !C.getArgs().hasArg(options::OPT_no_integrated_cpp) && 4194 !C.getArgs().hasArg(options::OPT_traditional_cpp) && !SaveTemps && 4195 !C.getArgs().hasArg(options::OPT_rewrite_objc); 4196 } 4197 4198 /// Struct that relates an action with the offload actions that would be 4199 /// collapsed with it. 4200 struct JobActionInfo final { 4201 /// The action this info refers to. 4202 const JobAction *JA = nullptr; 4203 /// The offload actions we need to take care off if this action is 4204 /// collapsed. 4205 ActionList SavedOffloadAction; 4206 }; 4207 4208 /// Append collapsed offload actions from the give nnumber of elements in the 4209 /// action info array. 4210 static void AppendCollapsedOffloadAction(ActionList &CollapsedOffloadAction, 4211 ArrayRef<JobActionInfo> &ActionInfo, 4212 unsigned ElementNum) { 4213 assert(ElementNum <= ActionInfo.size() && "Invalid number of elements."); 4214 for (unsigned I = 0; I < ElementNum; ++I) 4215 CollapsedOffloadAction.append(ActionInfo[I].SavedOffloadAction.begin(), 4216 ActionInfo[I].SavedOffloadAction.end()); 4217 } 4218 4219 /// Functions that attempt to perform the combining. They detect if that is 4220 /// legal, and if so they update the inputs \a Inputs and the offload action 4221 /// that were collapsed in \a CollapsedOffloadAction. A tool that deals with 4222 /// the combined action is returned. If the combining is not legal or if the 4223 /// tool does not exist, null is returned. 4224 /// Currently three kinds of collapsing are supported: 4225 /// - Assemble + Backend + Compile; 4226 /// - Assemble + Backend ; 4227 /// - Backend + Compile. 4228 const Tool * 4229 combineAssembleBackendCompile(ArrayRef<JobActionInfo> ActionInfo, 4230 ActionList &Inputs, 4231 ActionList &CollapsedOffloadAction) { 4232 if (ActionInfo.size() < 3 || !canCollapseAssembleAction()) 4233 return nullptr; 4234 auto *AJ = dyn_cast<AssembleJobAction>(ActionInfo[0].JA); 4235 auto *BJ = dyn_cast<BackendJobAction>(ActionInfo[1].JA); 4236 auto *CJ = dyn_cast<CompileJobAction>(ActionInfo[2].JA); 4237 if (!AJ || !BJ || !CJ) 4238 return nullptr; 4239 4240 // Get compiler tool. 4241 const Tool *T = TC.SelectTool(*CJ); 4242 if (!T) 4243 return nullptr; 4244 4245 // When using -fembed-bitcode, it is required to have the same tool (clang) 4246 // for both CompilerJA and BackendJA. Otherwise, combine two stages. 4247 if (EmbedBitcode) { 4248 const Tool *BT = TC.SelectTool(*BJ); 4249 if (BT == T) 4250 return nullptr; 4251 } 4252 4253 if (!T->hasIntegratedAssembler()) 4254 return nullptr; 4255 4256 Inputs = CJ->getInputs(); 4257 AppendCollapsedOffloadAction(CollapsedOffloadAction, ActionInfo, 4258 /*NumElements=*/3); 4259 return T; 4260 } 4261 const Tool *combineAssembleBackend(ArrayRef<JobActionInfo> ActionInfo, 4262 ActionList &Inputs, 4263 ActionList &CollapsedOffloadAction) { 4264 if (ActionInfo.size() < 2 || !canCollapseAssembleAction()) 4265 return nullptr; 4266 auto *AJ = dyn_cast<AssembleJobAction>(ActionInfo[0].JA); 4267 auto *BJ = dyn_cast<BackendJobAction>(ActionInfo[1].JA); 4268 if (!AJ || !BJ) 4269 return nullptr; 4270 4271 // Get backend tool. 4272 const Tool *T = TC.SelectTool(*BJ); 4273 if (!T) 4274 return nullptr; 4275 4276 if (!T->hasIntegratedAssembler()) 4277 return nullptr; 4278 4279 Inputs = BJ->getInputs(); 4280 AppendCollapsedOffloadAction(CollapsedOffloadAction, ActionInfo, 4281 /*NumElements=*/2); 4282 return T; 4283 } 4284 const Tool *combineBackendCompile(ArrayRef<JobActionInfo> ActionInfo, 4285 ActionList &Inputs, 4286 ActionList &CollapsedOffloadAction) { 4287 if (ActionInfo.size() < 2) 4288 return nullptr; 4289 auto *BJ = dyn_cast<BackendJobAction>(ActionInfo[0].JA); 4290 auto *CJ = dyn_cast<CompileJobAction>(ActionInfo[1].JA); 4291 if (!BJ || !CJ) 4292 return nullptr; 4293 4294 // Check if the initial input (to the compile job or its predessor if one 4295 // exists) is LLVM bitcode. In that case, no preprocessor step is required 4296 // and we can still collapse the compile and backend jobs when we have 4297 // -save-temps. I.e. there is no need for a separate compile job just to 4298 // emit unoptimized bitcode. 4299 bool InputIsBitcode = true; 4300 for (size_t i = 1; i < ActionInfo.size(); i++) 4301 if (ActionInfo[i].JA->getType() != types::TY_LLVM_BC && 4302 ActionInfo[i].JA->getType() != types::TY_LTO_BC) { 4303 InputIsBitcode = false; 4304 break; 4305 } 4306 if (!InputIsBitcode && !canCollapsePreprocessorAction()) 4307 return nullptr; 4308 4309 // Get compiler tool. 4310 const Tool *T = TC.SelectTool(*CJ); 4311 if (!T) 4312 return nullptr; 4313 4314 if (T->canEmitIR() && ((SaveTemps && !InputIsBitcode) || EmbedBitcode)) 4315 return nullptr; 4316 4317 Inputs = CJ->getInputs(); 4318 AppendCollapsedOffloadAction(CollapsedOffloadAction, ActionInfo, 4319 /*NumElements=*/2); 4320 return T; 4321 } 4322 4323 /// Updates the inputs if the obtained tool supports combining with 4324 /// preprocessor action, and the current input is indeed a preprocessor 4325 /// action. If combining results in the collapse of offloading actions, those 4326 /// are appended to \a CollapsedOffloadAction. 4327 void combineWithPreprocessor(const Tool *T, ActionList &Inputs, 4328 ActionList &CollapsedOffloadAction) { 4329 if (!T || !canCollapsePreprocessorAction() || !T->hasIntegratedCPP()) 4330 return; 4331 4332 // Attempt to get a preprocessor action dependence. 4333 ActionList PreprocessJobOffloadActions; 4334 ActionList NewInputs; 4335 for (Action *A : Inputs) { 4336 auto *PJ = getPrevDependentAction({A}, PreprocessJobOffloadActions); 4337 if (!PJ || !isa<PreprocessJobAction>(PJ)) { 4338 NewInputs.push_back(A); 4339 continue; 4340 } 4341 4342 // This is legal to combine. Append any offload action we found and add the 4343 // current input to preprocessor inputs. 4344 CollapsedOffloadAction.append(PreprocessJobOffloadActions.begin(), 4345 PreprocessJobOffloadActions.end()); 4346 NewInputs.append(PJ->input_begin(), PJ->input_end()); 4347 } 4348 Inputs = NewInputs; 4349 } 4350 4351 public: 4352 ToolSelector(const JobAction *BaseAction, const ToolChain &TC, 4353 const Compilation &C, bool SaveTemps, bool EmbedBitcode) 4354 : TC(TC), C(C), BaseAction(BaseAction), SaveTemps(SaveTemps), 4355 EmbedBitcode(EmbedBitcode) { 4356 assert(BaseAction && "Invalid base action."); 4357 IsHostSelector = BaseAction->getOffloadingDeviceKind() == Action::OFK_None; 4358 } 4359 4360 /// Check if a chain of actions can be combined and return the tool that can 4361 /// handle the combination of actions. The pointer to the current inputs \a 4362 /// Inputs and the list of offload actions \a CollapsedOffloadActions 4363 /// connected to collapsed actions are updated accordingly. The latter enables 4364 /// the caller of the selector to process them afterwards instead of just 4365 /// dropping them. If no suitable tool is found, null will be returned. 4366 const Tool *getTool(ActionList &Inputs, 4367 ActionList &CollapsedOffloadAction) { 4368 // 4369 // Get the largest chain of actions that we could combine. 4370 // 4371 4372 SmallVector<JobActionInfo, 5> ActionChain(1); 4373 ActionChain.back().JA = BaseAction; 4374 while (ActionChain.back().JA) { 4375 const Action *CurAction = ActionChain.back().JA; 4376 4377 // Grow the chain by one element. 4378 ActionChain.resize(ActionChain.size() + 1); 4379 JobActionInfo &AI = ActionChain.back(); 4380 4381 // Attempt to fill it with the 4382 AI.JA = 4383 getPrevDependentAction(CurAction->getInputs(), AI.SavedOffloadAction); 4384 } 4385 4386 // Pop the last action info as it could not be filled. 4387 ActionChain.pop_back(); 4388 4389 // 4390 // Attempt to combine actions. If all combining attempts failed, just return 4391 // the tool of the provided action. At the end we attempt to combine the 4392 // action with any preprocessor action it may depend on. 4393 // 4394 4395 const Tool *T = combineAssembleBackendCompile(ActionChain, Inputs, 4396 CollapsedOffloadAction); 4397 if (!T) 4398 T = combineAssembleBackend(ActionChain, Inputs, CollapsedOffloadAction); 4399 if (!T) 4400 T = combineBackendCompile(ActionChain, Inputs, CollapsedOffloadAction); 4401 if (!T) { 4402 Inputs = BaseAction->getInputs(); 4403 T = TC.SelectTool(*BaseAction); 4404 } 4405 4406 combineWithPreprocessor(T, Inputs, CollapsedOffloadAction); 4407 return T; 4408 } 4409 }; 4410 } 4411 4412 /// Return a string that uniquely identifies the result of a job. The bound arch 4413 /// is not necessarily represented in the toolchain's triple -- for example, 4414 /// armv7 and armv7s both map to the same triple -- so we need both in our map. 4415 /// Also, we need to add the offloading device kind, as the same tool chain can 4416 /// be used for host and device for some programming models, e.g. OpenMP. 4417 static std::string GetTriplePlusArchString(const ToolChain *TC, 4418 StringRef BoundArch, 4419 Action::OffloadKind OffloadKind) { 4420 std::string TriplePlusArch = TC->getTriple().normalize(); 4421 if (!BoundArch.empty()) { 4422 TriplePlusArch += "-"; 4423 TriplePlusArch += BoundArch; 4424 } 4425 TriplePlusArch += "-"; 4426 TriplePlusArch += Action::GetOffloadKindName(OffloadKind); 4427 return TriplePlusArch; 4428 } 4429 4430 InputInfo Driver::BuildJobsForAction( 4431 Compilation &C, const Action *A, const ToolChain *TC, StringRef BoundArch, 4432 bool AtTopLevel, bool MultipleArchs, const char *LinkingOutput, 4433 std::map<std::pair<const Action *, std::string>, InputInfo> &CachedResults, 4434 Action::OffloadKind TargetDeviceOffloadKind) const { 4435 std::pair<const Action *, std::string> ActionTC = { 4436 A, GetTriplePlusArchString(TC, BoundArch, TargetDeviceOffloadKind)}; 4437 auto CachedResult = CachedResults.find(ActionTC); 4438 if (CachedResult != CachedResults.end()) { 4439 return CachedResult->second; 4440 } 4441 InputInfo Result = BuildJobsForActionNoCache( 4442 C, A, TC, BoundArch, AtTopLevel, MultipleArchs, LinkingOutput, 4443 CachedResults, TargetDeviceOffloadKind); 4444 CachedResults[ActionTC] = Result; 4445 return Result; 4446 } 4447 4448 InputInfo Driver::BuildJobsForActionNoCache( 4449 Compilation &C, const Action *A, const ToolChain *TC, StringRef BoundArch, 4450 bool AtTopLevel, bool MultipleArchs, const char *LinkingOutput, 4451 std::map<std::pair<const Action *, std::string>, InputInfo> &CachedResults, 4452 Action::OffloadKind TargetDeviceOffloadKind) const { 4453 llvm::PrettyStackTraceString CrashInfo("Building compilation jobs"); 4454 4455 InputInfoList OffloadDependencesInputInfo; 4456 bool BuildingForOffloadDevice = TargetDeviceOffloadKind != Action::OFK_None; 4457 if (const OffloadAction *OA = dyn_cast<OffloadAction>(A)) { 4458 // The 'Darwin' toolchain is initialized only when its arguments are 4459 // computed. Get the default arguments for OFK_None to ensure that 4460 // initialization is performed before processing the offload action. 4461 // FIXME: Remove when darwin's toolchain is initialized during construction. 4462 C.getArgsForToolChain(TC, BoundArch, Action::OFK_None); 4463 4464 // The offload action is expected to be used in four different situations. 4465 // 4466 // a) Set a toolchain/architecture/kind for a host action: 4467 // Host Action 1 -> OffloadAction -> Host Action 2 4468 // 4469 // b) Set a toolchain/architecture/kind for a device action; 4470 // Device Action 1 -> OffloadAction -> Device Action 2 4471 // 4472 // c) Specify a device dependence to a host action; 4473 // Device Action 1 _ 4474 // \ 4475 // Host Action 1 ---> OffloadAction -> Host Action 2 4476 // 4477 // d) Specify a host dependence to a device action. 4478 // Host Action 1 _ 4479 // \ 4480 // Device Action 1 ---> OffloadAction -> Device Action 2 4481 // 4482 // For a) and b), we just return the job generated for the dependence. For 4483 // c) and d) we override the current action with the host/device dependence 4484 // if the current toolchain is host/device and set the offload dependences 4485 // info with the jobs obtained from the device/host dependence(s). 4486 4487 // If there is a single device option, just generate the job for it. 4488 if (OA->hasSingleDeviceDependence()) { 4489 InputInfo DevA; 4490 OA->doOnEachDeviceDependence([&](Action *DepA, const ToolChain *DepTC, 4491 const char *DepBoundArch) { 4492 DevA = 4493 BuildJobsForAction(C, DepA, DepTC, DepBoundArch, AtTopLevel, 4494 /*MultipleArchs*/ !!DepBoundArch, LinkingOutput, 4495 CachedResults, DepA->getOffloadingDeviceKind()); 4496 }); 4497 return DevA; 4498 } 4499 4500 // If 'Action 2' is host, we generate jobs for the device dependences and 4501 // override the current action with the host dependence. Otherwise, we 4502 // generate the host dependences and override the action with the device 4503 // dependence. The dependences can't therefore be a top-level action. 4504 OA->doOnEachDependence( 4505 /*IsHostDependence=*/BuildingForOffloadDevice, 4506 [&](Action *DepA, const ToolChain *DepTC, const char *DepBoundArch) { 4507 OffloadDependencesInputInfo.push_back(BuildJobsForAction( 4508 C, DepA, DepTC, DepBoundArch, /*AtTopLevel=*/false, 4509 /*MultipleArchs*/ !!DepBoundArch, LinkingOutput, CachedResults, 4510 DepA->getOffloadingDeviceKind())); 4511 }); 4512 4513 A = BuildingForOffloadDevice 4514 ? OA->getSingleDeviceDependence(/*DoNotConsiderHostActions=*/true) 4515 : OA->getHostDependence(); 4516 } 4517 4518 if (const InputAction *IA = dyn_cast<InputAction>(A)) { 4519 // FIXME: It would be nice to not claim this here; maybe the old scheme of 4520 // just using Args was better? 4521 const Arg &Input = IA->getInputArg(); 4522 Input.claim(); 4523 if (Input.getOption().matches(options::OPT_INPUT)) { 4524 const char *Name = Input.getValue(); 4525 return InputInfo(A, Name, /* _BaseInput = */ Name); 4526 } 4527 return InputInfo(A, &Input, /* _BaseInput = */ ""); 4528 } 4529 4530 if (const BindArchAction *BAA = dyn_cast<BindArchAction>(A)) { 4531 const ToolChain *TC; 4532 StringRef ArchName = BAA->getArchName(); 4533 4534 if (!ArchName.empty()) 4535 TC = &getToolChain(C.getArgs(), 4536 computeTargetTriple(*this, TargetTriple, 4537 C.getArgs(), ArchName)); 4538 else 4539 TC = &C.getDefaultToolChain(); 4540 4541 return BuildJobsForAction(C, *BAA->input_begin(), TC, ArchName, AtTopLevel, 4542 MultipleArchs, LinkingOutput, CachedResults, 4543 TargetDeviceOffloadKind); 4544 } 4545 4546 4547 ActionList Inputs = A->getInputs(); 4548 4549 const JobAction *JA = cast<JobAction>(A); 4550 ActionList CollapsedOffloadActions; 4551 4552 ToolSelector TS(JA, *TC, C, isSaveTempsEnabled(), 4553 embedBitcodeInObject() && !isUsingLTO()); 4554 const Tool *T = TS.getTool(Inputs, CollapsedOffloadActions); 4555 4556 if (!T) 4557 return InputInfo(); 4558 4559 // If we've collapsed action list that contained OffloadAction we 4560 // need to build jobs for host/device-side inputs it may have held. 4561 for (const auto *OA : CollapsedOffloadActions) 4562 cast<OffloadAction>(OA)->doOnEachDependence( 4563 /*IsHostDependence=*/BuildingForOffloadDevice, 4564 [&](Action *DepA, const ToolChain *DepTC, const char *DepBoundArch) { 4565 OffloadDependencesInputInfo.push_back(BuildJobsForAction( 4566 C, DepA, DepTC, DepBoundArch, /* AtTopLevel */ false, 4567 /*MultipleArchs=*/!!DepBoundArch, LinkingOutput, CachedResults, 4568 DepA->getOffloadingDeviceKind())); 4569 }); 4570 4571 // Only use pipes when there is exactly one input. 4572 InputInfoList InputInfos; 4573 for (const Action *Input : Inputs) { 4574 // Treat dsymutil and verify sub-jobs as being at the top-level too, they 4575 // shouldn't get temporary output names. 4576 // FIXME: Clean this up. 4577 bool SubJobAtTopLevel = 4578 AtTopLevel && (isa<DsymutilJobAction>(A) || isa<VerifyJobAction>(A)); 4579 InputInfos.push_back(BuildJobsForAction( 4580 C, Input, TC, BoundArch, SubJobAtTopLevel, MultipleArchs, LinkingOutput, 4581 CachedResults, A->getOffloadingDeviceKind())); 4582 } 4583 4584 // Always use the first input as the base input. 4585 const char *BaseInput = InputInfos[0].getBaseInput(); 4586 4587 // ... except dsymutil actions, which use their actual input as the base 4588 // input. 4589 if (JA->getType() == types::TY_dSYM) 4590 BaseInput = InputInfos[0].getFilename(); 4591 4592 // ... and in header module compilations, which use the module name. 4593 if (auto *ModuleJA = dyn_cast<HeaderModulePrecompileJobAction>(JA)) 4594 BaseInput = ModuleJA->getModuleName(); 4595 4596 // Append outputs of offload device jobs to the input list 4597 if (!OffloadDependencesInputInfo.empty()) 4598 InputInfos.append(OffloadDependencesInputInfo.begin(), 4599 OffloadDependencesInputInfo.end()); 4600 4601 // Set the effective triple of the toolchain for the duration of this job. 4602 llvm::Triple EffectiveTriple; 4603 const ToolChain &ToolTC = T->getToolChain(); 4604 const ArgList &Args = 4605 C.getArgsForToolChain(TC, BoundArch, A->getOffloadingDeviceKind()); 4606 if (InputInfos.size() != 1) { 4607 EffectiveTriple = llvm::Triple(ToolTC.ComputeEffectiveClangTriple(Args)); 4608 } else { 4609 // Pass along the input type if it can be unambiguously determined. 4610 EffectiveTriple = llvm::Triple( 4611 ToolTC.ComputeEffectiveClangTriple(Args, InputInfos[0].getType())); 4612 } 4613 RegisterEffectiveTriple TripleRAII(ToolTC, EffectiveTriple); 4614 4615 // Determine the place to write output to, if any. 4616 InputInfo Result; 4617 InputInfoList UnbundlingResults; 4618 if (auto *UA = dyn_cast<OffloadUnbundlingJobAction>(JA)) { 4619 // If we have an unbundling job, we need to create results for all the 4620 // outputs. We also update the results cache so that other actions using 4621 // this unbundling action can get the right results. 4622 for (auto &UI : UA->getDependentActionsInfo()) { 4623 assert(UI.DependentOffloadKind != Action::OFK_None && 4624 "Unbundling with no offloading??"); 4625 4626 // Unbundling actions are never at the top level. When we generate the 4627 // offloading prefix, we also do that for the host file because the 4628 // unbundling action does not change the type of the output which can 4629 // cause a overwrite. 4630 std::string OffloadingPrefix = Action::GetOffloadingFileNamePrefix( 4631 UI.DependentOffloadKind, 4632 UI.DependentToolChain->getTriple().normalize(), 4633 /*CreatePrefixForHost=*/true); 4634 auto CurI = InputInfo( 4635 UA, 4636 GetNamedOutputPath(C, *UA, BaseInput, UI.DependentBoundArch, 4637 /*AtTopLevel=*/false, 4638 MultipleArchs || 4639 UI.DependentOffloadKind == Action::OFK_HIP, 4640 OffloadingPrefix), 4641 BaseInput); 4642 // Save the unbundling result. 4643 UnbundlingResults.push_back(CurI); 4644 4645 // Get the unique string identifier for this dependence and cache the 4646 // result. 4647 StringRef Arch; 4648 if (TargetDeviceOffloadKind == Action::OFK_HIP) { 4649 if (UI.DependentOffloadKind == Action::OFK_Host) 4650 Arch = StringRef(); 4651 else 4652 Arch = UI.DependentBoundArch; 4653 } else 4654 Arch = BoundArch; 4655 4656 CachedResults[{A, GetTriplePlusArchString(UI.DependentToolChain, Arch, 4657 UI.DependentOffloadKind)}] = 4658 CurI; 4659 } 4660 4661 // Now that we have all the results generated, select the one that should be 4662 // returned for the current depending action. 4663 std::pair<const Action *, std::string> ActionTC = { 4664 A, GetTriplePlusArchString(TC, BoundArch, TargetDeviceOffloadKind)}; 4665 assert(CachedResults.find(ActionTC) != CachedResults.end() && 4666 "Result does not exist??"); 4667 Result = CachedResults[ActionTC]; 4668 } else if (JA->getType() == types::TY_Nothing) 4669 Result = InputInfo(A, BaseInput); 4670 else { 4671 // We only have to generate a prefix for the host if this is not a top-level 4672 // action. 4673 std::string OffloadingPrefix = Action::GetOffloadingFileNamePrefix( 4674 A->getOffloadingDeviceKind(), TC->getTriple().normalize(), 4675 /*CreatePrefixForHost=*/!!A->getOffloadingHostActiveKinds() && 4676 !AtTopLevel); 4677 if (isa<OffloadWrapperJobAction>(JA)) { 4678 OffloadingPrefix += "-wrapper"; 4679 if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o)) 4680 BaseInput = FinalOutput->getValue(); 4681 else 4682 BaseInput = getDefaultImageName(); 4683 } 4684 Result = InputInfo(A, GetNamedOutputPath(C, *JA, BaseInput, BoundArch, 4685 AtTopLevel, MultipleArchs, 4686 OffloadingPrefix), 4687 BaseInput); 4688 } 4689 4690 if (CCCPrintBindings && !CCGenDiagnostics) { 4691 llvm::errs() << "# \"" << T->getToolChain().getTripleString() << '"' 4692 << " - \"" << T->getName() << "\", inputs: ["; 4693 for (unsigned i = 0, e = InputInfos.size(); i != e; ++i) { 4694 llvm::errs() << InputInfos[i].getAsString(); 4695 if (i + 1 != e) 4696 llvm::errs() << ", "; 4697 } 4698 if (UnbundlingResults.empty()) 4699 llvm::errs() << "], output: " << Result.getAsString() << "\n"; 4700 else { 4701 llvm::errs() << "], outputs: ["; 4702 for (unsigned i = 0, e = UnbundlingResults.size(); i != e; ++i) { 4703 llvm::errs() << UnbundlingResults[i].getAsString(); 4704 if (i + 1 != e) 4705 llvm::errs() << ", "; 4706 } 4707 llvm::errs() << "] \n"; 4708 } 4709 } else { 4710 if (UnbundlingResults.empty()) 4711 T->ConstructJob( 4712 C, *JA, Result, InputInfos, 4713 C.getArgsForToolChain(TC, BoundArch, JA->getOffloadingDeviceKind()), 4714 LinkingOutput); 4715 else 4716 T->ConstructJobMultipleOutputs( 4717 C, *JA, UnbundlingResults, InputInfos, 4718 C.getArgsForToolChain(TC, BoundArch, JA->getOffloadingDeviceKind()), 4719 LinkingOutput); 4720 } 4721 return Result; 4722 } 4723 4724 const char *Driver::getDefaultImageName() const { 4725 llvm::Triple Target(llvm::Triple::normalize(TargetTriple)); 4726 return Target.isOSWindows() ? "a.exe" : "a.out"; 4727 } 4728 4729 /// Create output filename based on ArgValue, which could either be a 4730 /// full filename, filename without extension, or a directory. If ArgValue 4731 /// does not provide a filename, then use BaseName, and use the extension 4732 /// suitable for FileType. 4733 static const char *MakeCLOutputFilename(const ArgList &Args, StringRef ArgValue, 4734 StringRef BaseName, 4735 types::ID FileType) { 4736 SmallString<128> Filename = ArgValue; 4737 4738 if (ArgValue.empty()) { 4739 // If the argument is empty, output to BaseName in the current dir. 4740 Filename = BaseName; 4741 } else if (llvm::sys::path::is_separator(Filename.back())) { 4742 // If the argument is a directory, output to BaseName in that dir. 4743 llvm::sys::path::append(Filename, BaseName); 4744 } 4745 4746 if (!llvm::sys::path::has_extension(ArgValue)) { 4747 // If the argument didn't provide an extension, then set it. 4748 const char *Extension = types::getTypeTempSuffix(FileType, true); 4749 4750 if (FileType == types::TY_Image && 4751 Args.hasArg(options::OPT__SLASH_LD, options::OPT__SLASH_LDd)) { 4752 // The output file is a dll. 4753 Extension = "dll"; 4754 } 4755 4756 llvm::sys::path::replace_extension(Filename, Extension); 4757 } 4758 4759 return Args.MakeArgString(Filename.c_str()); 4760 } 4761 4762 static bool HasPreprocessOutput(const Action &JA) { 4763 if (isa<PreprocessJobAction>(JA)) 4764 return true; 4765 if (isa<OffloadAction>(JA) && isa<PreprocessJobAction>(JA.getInputs()[0])) 4766 return true; 4767 if (isa<OffloadBundlingJobAction>(JA) && 4768 HasPreprocessOutput(*(JA.getInputs()[0]))) 4769 return true; 4770 return false; 4771 } 4772 4773 const char *Driver::GetNamedOutputPath(Compilation &C, const JobAction &JA, 4774 const char *BaseInput, 4775 StringRef OrigBoundArch, bool AtTopLevel, 4776 bool MultipleArchs, 4777 StringRef OffloadingPrefix) const { 4778 std::string BoundArch = OrigBoundArch.str(); 4779 #if defined(_WIN32) 4780 // BoundArch may contains ':', which is invalid in file names on Windows, 4781 // therefore replace it with '%'. 4782 std::replace(BoundArch.begin(), BoundArch.end(), ':', '@'); 4783 #endif 4784 4785 llvm::PrettyStackTraceString CrashInfo("Computing output path"); 4786 // Output to a user requested destination? 4787 if (AtTopLevel && !isa<DsymutilJobAction>(JA) && !isa<VerifyJobAction>(JA)) { 4788 if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o)) 4789 return C.addResultFile(FinalOutput->getValue(), &JA); 4790 } 4791 4792 // For /P, preprocess to file named after BaseInput. 4793 if (C.getArgs().hasArg(options::OPT__SLASH_P)) { 4794 assert(AtTopLevel && isa<PreprocessJobAction>(JA)); 4795 StringRef BaseName = llvm::sys::path::filename(BaseInput); 4796 StringRef NameArg; 4797 if (Arg *A = C.getArgs().getLastArg(options::OPT__SLASH_Fi)) 4798 NameArg = A->getValue(); 4799 return C.addResultFile( 4800 MakeCLOutputFilename(C.getArgs(), NameArg, BaseName, types::TY_PP_C), 4801 &JA); 4802 } 4803 4804 // Default to writing to stdout? 4805 if (AtTopLevel && !CCGenDiagnostics && HasPreprocessOutput(JA)) { 4806 return "-"; 4807 } 4808 4809 // Is this the assembly listing for /FA? 4810 if (JA.getType() == types::TY_PP_Asm && 4811 (C.getArgs().hasArg(options::OPT__SLASH_FA) || 4812 C.getArgs().hasArg(options::OPT__SLASH_Fa))) { 4813 // Use /Fa and the input filename to determine the asm file name. 4814 StringRef BaseName = llvm::sys::path::filename(BaseInput); 4815 StringRef FaValue = C.getArgs().getLastArgValue(options::OPT__SLASH_Fa); 4816 return C.addResultFile( 4817 MakeCLOutputFilename(C.getArgs(), FaValue, BaseName, JA.getType()), 4818 &JA); 4819 } 4820 4821 // Output to a temporary file? 4822 if ((!AtTopLevel && !isSaveTempsEnabled() && 4823 !C.getArgs().hasArg(options::OPT__SLASH_Fo)) || 4824 CCGenDiagnostics) { 4825 StringRef Name = llvm::sys::path::filename(BaseInput); 4826 std::pair<StringRef, StringRef> Split = Name.split('.'); 4827 SmallString<128> TmpName; 4828 const char *Suffix = types::getTypeTempSuffix(JA.getType(), IsCLMode()); 4829 Arg *A = C.getArgs().getLastArg(options::OPT_fcrash_diagnostics_dir); 4830 if (CCGenDiagnostics && A) { 4831 SmallString<128> CrashDirectory(A->getValue()); 4832 if (!getVFS().exists(CrashDirectory)) 4833 llvm::sys::fs::create_directories(CrashDirectory); 4834 llvm::sys::path::append(CrashDirectory, Split.first); 4835 const char *Middle = Suffix ? "-%%%%%%." : "-%%%%%%"; 4836 std::error_code EC = llvm::sys::fs::createUniqueFile( 4837 CrashDirectory + Middle + Suffix, TmpName); 4838 if (EC) { 4839 Diag(clang::diag::err_unable_to_make_temp) << EC.message(); 4840 return ""; 4841 } 4842 } else { 4843 TmpName = GetTemporaryPath(Split.first, Suffix); 4844 } 4845 return C.addTempFile(C.getArgs().MakeArgString(TmpName)); 4846 } 4847 4848 SmallString<128> BasePath(BaseInput); 4849 SmallString<128> ExternalPath(""); 4850 StringRef BaseName; 4851 4852 // Dsymutil actions should use the full path. 4853 if (isa<DsymutilJobAction>(JA) && C.getArgs().hasArg(options::OPT_dsym_dir)) { 4854 ExternalPath += C.getArgs().getLastArg(options::OPT_dsym_dir)->getValue(); 4855 // We use posix style here because the tests (specifically 4856 // darwin-dsymutil.c) demonstrate that posix style paths are acceptable 4857 // even on Windows and if we don't then the similar test covering this 4858 // fails. 4859 llvm::sys::path::append(ExternalPath, llvm::sys::path::Style::posix, 4860 llvm::sys::path::filename(BasePath)); 4861 BaseName = ExternalPath; 4862 } else if (isa<DsymutilJobAction>(JA) || isa<VerifyJobAction>(JA)) 4863 BaseName = BasePath; 4864 else 4865 BaseName = llvm::sys::path::filename(BasePath); 4866 4867 // Determine what the derived output name should be. 4868 const char *NamedOutput; 4869 4870 if ((JA.getType() == types::TY_Object || JA.getType() == types::TY_LTO_BC) && 4871 C.getArgs().hasArg(options::OPT__SLASH_Fo, options::OPT__SLASH_o)) { 4872 // The /Fo or /o flag decides the object filename. 4873 StringRef Val = 4874 C.getArgs() 4875 .getLastArg(options::OPT__SLASH_Fo, options::OPT__SLASH_o) 4876 ->getValue(); 4877 NamedOutput = 4878 MakeCLOutputFilename(C.getArgs(), Val, BaseName, types::TY_Object); 4879 } else if (JA.getType() == types::TY_Image && 4880 C.getArgs().hasArg(options::OPT__SLASH_Fe, 4881 options::OPT__SLASH_o)) { 4882 // The /Fe or /o flag names the linked file. 4883 StringRef Val = 4884 C.getArgs() 4885 .getLastArg(options::OPT__SLASH_Fe, options::OPT__SLASH_o) 4886 ->getValue(); 4887 NamedOutput = 4888 MakeCLOutputFilename(C.getArgs(), Val, BaseName, types::TY_Image); 4889 } else if (JA.getType() == types::TY_Image) { 4890 if (IsCLMode()) { 4891 // clang-cl uses BaseName for the executable name. 4892 NamedOutput = 4893 MakeCLOutputFilename(C.getArgs(), "", BaseName, types::TY_Image); 4894 } else { 4895 SmallString<128> Output(getDefaultImageName()); 4896 // HIP image for device compilation with -fno-gpu-rdc is per compilation 4897 // unit. 4898 bool IsHIPNoRDC = JA.getOffloadingDeviceKind() == Action::OFK_HIP && 4899 !C.getArgs().hasFlag(options::OPT_fgpu_rdc, 4900 options::OPT_fno_gpu_rdc, false); 4901 if (IsHIPNoRDC) { 4902 Output = BaseName; 4903 llvm::sys::path::replace_extension(Output, ""); 4904 } 4905 Output += OffloadingPrefix; 4906 if (MultipleArchs && !BoundArch.empty()) { 4907 Output += "-"; 4908 Output.append(BoundArch); 4909 } 4910 if (IsHIPNoRDC) 4911 Output += ".out"; 4912 NamedOutput = C.getArgs().MakeArgString(Output.c_str()); 4913 } 4914 } else if (JA.getType() == types::TY_PCH && IsCLMode()) { 4915 NamedOutput = C.getArgs().MakeArgString(GetClPchPath(C, BaseName)); 4916 } else { 4917 const char *Suffix = types::getTypeTempSuffix(JA.getType(), IsCLMode()); 4918 assert(Suffix && "All types used for output should have a suffix."); 4919 4920 std::string::size_type End = std::string::npos; 4921 if (!types::appendSuffixForType(JA.getType())) 4922 End = BaseName.rfind('.'); 4923 SmallString<128> Suffixed(BaseName.substr(0, End)); 4924 Suffixed += OffloadingPrefix; 4925 if (MultipleArchs && !BoundArch.empty()) { 4926 Suffixed += "-"; 4927 Suffixed.append(BoundArch); 4928 } 4929 // When using both -save-temps and -emit-llvm, use a ".tmp.bc" suffix for 4930 // the unoptimized bitcode so that it does not get overwritten by the ".bc" 4931 // optimized bitcode output. 4932 auto IsHIPRDCInCompilePhase = [](const JobAction &JA, 4933 const llvm::opt::DerivedArgList &Args) { 4934 // The relocatable compilation in HIP implies -emit-llvm. Similarly, use a 4935 // ".tmp.bc" suffix for the unoptimized bitcode (generated in the compile 4936 // phase.) 4937 return isa<CompileJobAction>(JA) && 4938 JA.getOffloadingDeviceKind() == Action::OFK_HIP && 4939 Args.hasFlag(options::OPT_fgpu_rdc, options::OPT_fno_gpu_rdc, 4940 false); 4941 }; 4942 if (!AtTopLevel && JA.getType() == types::TY_LLVM_BC && 4943 (C.getArgs().hasArg(options::OPT_emit_llvm) || 4944 IsHIPRDCInCompilePhase(JA, C.getArgs()))) 4945 Suffixed += ".tmp"; 4946 Suffixed += '.'; 4947 Suffixed += Suffix; 4948 NamedOutput = C.getArgs().MakeArgString(Suffixed.c_str()); 4949 } 4950 4951 // Prepend object file path if -save-temps=obj 4952 if (!AtTopLevel && isSaveTempsObj() && C.getArgs().hasArg(options::OPT_o) && 4953 JA.getType() != types::TY_PCH) { 4954 Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o); 4955 SmallString<128> TempPath(FinalOutput->getValue()); 4956 llvm::sys::path::remove_filename(TempPath); 4957 StringRef OutputFileName = llvm::sys::path::filename(NamedOutput); 4958 llvm::sys::path::append(TempPath, OutputFileName); 4959 NamedOutput = C.getArgs().MakeArgString(TempPath.c_str()); 4960 } 4961 4962 // If we're saving temps and the temp file conflicts with the input file, 4963 // then avoid overwriting input file. 4964 if (!AtTopLevel && isSaveTempsEnabled() && NamedOutput == BaseName) { 4965 bool SameFile = false; 4966 SmallString<256> Result; 4967 llvm::sys::fs::current_path(Result); 4968 llvm::sys::path::append(Result, BaseName); 4969 llvm::sys::fs::equivalent(BaseInput, Result.c_str(), SameFile); 4970 // Must share the same path to conflict. 4971 if (SameFile) { 4972 StringRef Name = llvm::sys::path::filename(BaseInput); 4973 std::pair<StringRef, StringRef> Split = Name.split('.'); 4974 std::string TmpName = GetTemporaryPath( 4975 Split.first, types::getTypeTempSuffix(JA.getType(), IsCLMode())); 4976 return C.addTempFile(C.getArgs().MakeArgString(TmpName)); 4977 } 4978 } 4979 4980 // As an annoying special case, PCH generation doesn't strip the pathname. 4981 if (JA.getType() == types::TY_PCH && !IsCLMode()) { 4982 llvm::sys::path::remove_filename(BasePath); 4983 if (BasePath.empty()) 4984 BasePath = NamedOutput; 4985 else 4986 llvm::sys::path::append(BasePath, NamedOutput); 4987 return C.addResultFile(C.getArgs().MakeArgString(BasePath.c_str()), &JA); 4988 } else { 4989 return C.addResultFile(NamedOutput, &JA); 4990 } 4991 } 4992 4993 std::string Driver::GetFilePath(StringRef Name, const ToolChain &TC) const { 4994 // Search for Name in a list of paths. 4995 auto SearchPaths = [&](const llvm::SmallVectorImpl<std::string> &P) 4996 -> llvm::Optional<std::string> { 4997 // Respect a limited subset of the '-Bprefix' functionality in GCC by 4998 // attempting to use this prefix when looking for file paths. 4999 for (const auto &Dir : P) { 5000 if (Dir.empty()) 5001 continue; 5002 SmallString<128> P(Dir[0] == '=' ? SysRoot + Dir.substr(1) : Dir); 5003 llvm::sys::path::append(P, Name); 5004 if (llvm::sys::fs::exists(Twine(P))) 5005 return std::string(P); 5006 } 5007 return None; 5008 }; 5009 5010 if (auto P = SearchPaths(PrefixDirs)) 5011 return *P; 5012 5013 SmallString<128> R(ResourceDir); 5014 llvm::sys::path::append(R, Name); 5015 if (llvm::sys::fs::exists(Twine(R))) 5016 return std::string(R.str()); 5017 5018 SmallString<128> P(TC.getCompilerRTPath()); 5019 llvm::sys::path::append(P, Name); 5020 if (llvm::sys::fs::exists(Twine(P))) 5021 return std::string(P.str()); 5022 5023 SmallString<128> D(Dir); 5024 llvm::sys::path::append(D, "..", Name); 5025 if (llvm::sys::fs::exists(Twine(D))) 5026 return std::string(D.str()); 5027 5028 if (auto P = SearchPaths(TC.getLibraryPaths())) 5029 return *P; 5030 5031 if (auto P = SearchPaths(TC.getFilePaths())) 5032 return *P; 5033 5034 return std::string(Name); 5035 } 5036 5037 void Driver::generatePrefixedToolNames( 5038 StringRef Tool, const ToolChain &TC, 5039 SmallVectorImpl<std::string> &Names) const { 5040 // FIXME: Needs a better variable than TargetTriple 5041 Names.emplace_back((TargetTriple + "-" + Tool).str()); 5042 Names.emplace_back(Tool); 5043 5044 // Allow the discovery of tools prefixed with LLVM's default target triple. 5045 std::string DefaultTargetTriple = llvm::sys::getDefaultTargetTriple(); 5046 if (DefaultTargetTriple != TargetTriple) 5047 Names.emplace_back((DefaultTargetTriple + "-" + Tool).str()); 5048 } 5049 5050 static bool ScanDirForExecutable(SmallString<128> &Dir, StringRef Name) { 5051 llvm::sys::path::append(Dir, Name); 5052 if (llvm::sys::fs::can_execute(Twine(Dir))) 5053 return true; 5054 llvm::sys::path::remove_filename(Dir); 5055 return false; 5056 } 5057 5058 std::string Driver::GetProgramPath(StringRef Name, const ToolChain &TC) const { 5059 SmallVector<std::string, 2> TargetSpecificExecutables; 5060 generatePrefixedToolNames(Name, TC, TargetSpecificExecutables); 5061 5062 // Respect a limited subset of the '-Bprefix' functionality in GCC by 5063 // attempting to use this prefix when looking for program paths. 5064 for (const auto &PrefixDir : PrefixDirs) { 5065 if (llvm::sys::fs::is_directory(PrefixDir)) { 5066 SmallString<128> P(PrefixDir); 5067 if (ScanDirForExecutable(P, Name)) 5068 return std::string(P.str()); 5069 } else { 5070 SmallString<128> P((PrefixDir + Name).str()); 5071 if (llvm::sys::fs::can_execute(Twine(P))) 5072 return std::string(P.str()); 5073 } 5074 } 5075 5076 const ToolChain::path_list &List = TC.getProgramPaths(); 5077 for (const auto &TargetSpecificExecutable : TargetSpecificExecutables) { 5078 // For each possible name of the tool look for it in 5079 // program paths first, then the path. 5080 // Higher priority names will be first, meaning that 5081 // a higher priority name in the path will be found 5082 // instead of a lower priority name in the program path. 5083 // E.g. <triple>-gcc on the path will be found instead 5084 // of gcc in the program path 5085 for (const auto &Path : List) { 5086 SmallString<128> P(Path); 5087 if (ScanDirForExecutable(P, TargetSpecificExecutable)) 5088 return std::string(P.str()); 5089 } 5090 5091 // Fall back to the path 5092 if (llvm::ErrorOr<std::string> P = 5093 llvm::sys::findProgramByName(TargetSpecificExecutable)) 5094 return *P; 5095 } 5096 5097 return std::string(Name); 5098 } 5099 5100 std::string Driver::GetTemporaryPath(StringRef Prefix, StringRef Suffix) const { 5101 SmallString<128> Path; 5102 std::error_code EC = llvm::sys::fs::createTemporaryFile(Prefix, Suffix, Path); 5103 if (EC) { 5104 Diag(clang::diag::err_unable_to_make_temp) << EC.message(); 5105 return ""; 5106 } 5107 5108 return std::string(Path.str()); 5109 } 5110 5111 std::string Driver::GetTemporaryDirectory(StringRef Prefix) const { 5112 SmallString<128> Path; 5113 std::error_code EC = llvm::sys::fs::createUniqueDirectory(Prefix, Path); 5114 if (EC) { 5115 Diag(clang::diag::err_unable_to_make_temp) << EC.message(); 5116 return ""; 5117 } 5118 5119 return std::string(Path.str()); 5120 } 5121 5122 std::string Driver::GetClPchPath(Compilation &C, StringRef BaseName) const { 5123 SmallString<128> Output; 5124 if (Arg *FpArg = C.getArgs().getLastArg(options::OPT__SLASH_Fp)) { 5125 // FIXME: If anybody needs it, implement this obscure rule: 5126 // "If you specify a directory without a file name, the default file name 5127 // is VCx0.pch., where x is the major version of Visual C++ in use." 5128 Output = FpArg->getValue(); 5129 5130 // "If you do not specify an extension as part of the path name, an 5131 // extension of .pch is assumed. " 5132 if (!llvm::sys::path::has_extension(Output)) 5133 Output += ".pch"; 5134 } else { 5135 if (Arg *YcArg = C.getArgs().getLastArg(options::OPT__SLASH_Yc)) 5136 Output = YcArg->getValue(); 5137 if (Output.empty()) 5138 Output = BaseName; 5139 llvm::sys::path::replace_extension(Output, ".pch"); 5140 } 5141 return std::string(Output.str()); 5142 } 5143 5144 const ToolChain &Driver::getToolChain(const ArgList &Args, 5145 const llvm::Triple &Target) const { 5146 5147 auto &TC = ToolChains[Target.str()]; 5148 if (!TC) { 5149 switch (Target.getOS()) { 5150 case llvm::Triple::AIX: 5151 TC = std::make_unique<toolchains::AIX>(*this, Target, Args); 5152 break; 5153 case llvm::Triple::Haiku: 5154 TC = std::make_unique<toolchains::Haiku>(*this, Target, Args); 5155 break; 5156 case llvm::Triple::Ananas: 5157 TC = std::make_unique<toolchains::Ananas>(*this, Target, Args); 5158 break; 5159 case llvm::Triple::CloudABI: 5160 TC = std::make_unique<toolchains::CloudABI>(*this, Target, Args); 5161 break; 5162 case llvm::Triple::Darwin: 5163 case llvm::Triple::MacOSX: 5164 case llvm::Triple::IOS: 5165 case llvm::Triple::TvOS: 5166 case llvm::Triple::WatchOS: 5167 TC = std::make_unique<toolchains::DarwinClang>(*this, Target, Args); 5168 break; 5169 case llvm::Triple::DragonFly: 5170 TC = std::make_unique<toolchains::DragonFly>(*this, Target, Args); 5171 break; 5172 case llvm::Triple::OpenBSD: 5173 TC = std::make_unique<toolchains::OpenBSD>(*this, Target, Args); 5174 break; 5175 case llvm::Triple::NetBSD: 5176 TC = std::make_unique<toolchains::NetBSD>(*this, Target, Args); 5177 break; 5178 case llvm::Triple::FreeBSD: 5179 TC = std::make_unique<toolchains::FreeBSD>(*this, Target, Args); 5180 break; 5181 case llvm::Triple::Minix: 5182 TC = std::make_unique<toolchains::Minix>(*this, Target, Args); 5183 break; 5184 case llvm::Triple::Linux: 5185 case llvm::Triple::ELFIAMCU: 5186 if (Target.getArch() == llvm::Triple::hexagon) 5187 TC = std::make_unique<toolchains::HexagonToolChain>(*this, Target, 5188 Args); 5189 else if ((Target.getVendor() == llvm::Triple::MipsTechnologies) && 5190 !Target.hasEnvironment()) 5191 TC = std::make_unique<toolchains::MipsLLVMToolChain>(*this, Target, 5192 Args); 5193 else if (Target.isPPC()) 5194 TC = std::make_unique<toolchains::PPCLinuxToolChain>(*this, Target, 5195 Args); 5196 else if (Target.getArch() == llvm::Triple::ve) 5197 TC = std::make_unique<toolchains::VEToolChain>(*this, Target, Args); 5198 5199 else 5200 TC = std::make_unique<toolchains::Linux>(*this, Target, Args); 5201 break; 5202 case llvm::Triple::NaCl: 5203 TC = std::make_unique<toolchains::NaClToolChain>(*this, Target, Args); 5204 break; 5205 case llvm::Triple::Fuchsia: 5206 TC = std::make_unique<toolchains::Fuchsia>(*this, Target, Args); 5207 break; 5208 case llvm::Triple::Solaris: 5209 TC = std::make_unique<toolchains::Solaris>(*this, Target, Args); 5210 break; 5211 case llvm::Triple::AMDHSA: 5212 TC = std::make_unique<toolchains::ROCMToolChain>(*this, Target, Args); 5213 break; 5214 case llvm::Triple::AMDPAL: 5215 case llvm::Triple::Mesa3D: 5216 TC = std::make_unique<toolchains::AMDGPUToolChain>(*this, Target, Args); 5217 break; 5218 case llvm::Triple::Win32: 5219 switch (Target.getEnvironment()) { 5220 default: 5221 if (Target.isOSBinFormatELF()) 5222 TC = std::make_unique<toolchains::Generic_ELF>(*this, Target, Args); 5223 else if (Target.isOSBinFormatMachO()) 5224 TC = std::make_unique<toolchains::MachO>(*this, Target, Args); 5225 else 5226 TC = std::make_unique<toolchains::Generic_GCC>(*this, Target, Args); 5227 break; 5228 case llvm::Triple::GNU: 5229 TC = std::make_unique<toolchains::MinGW>(*this, Target, Args); 5230 break; 5231 case llvm::Triple::Itanium: 5232 TC = std::make_unique<toolchains::CrossWindowsToolChain>(*this, Target, 5233 Args); 5234 break; 5235 case llvm::Triple::MSVC: 5236 case llvm::Triple::UnknownEnvironment: 5237 if (Args.getLastArgValue(options::OPT_fuse_ld_EQ) 5238 .startswith_lower("bfd")) 5239 TC = std::make_unique<toolchains::CrossWindowsToolChain>( 5240 *this, Target, Args); 5241 else 5242 TC = 5243 std::make_unique<toolchains::MSVCToolChain>(*this, Target, Args); 5244 break; 5245 } 5246 break; 5247 case llvm::Triple::PS4: 5248 TC = std::make_unique<toolchains::PS4CPU>(*this, Target, Args); 5249 break; 5250 case llvm::Triple::Contiki: 5251 TC = std::make_unique<toolchains::Contiki>(*this, Target, Args); 5252 break; 5253 case llvm::Triple::Hurd: 5254 TC = std::make_unique<toolchains::Hurd>(*this, Target, Args); 5255 break; 5256 case llvm::Triple::ZOS: 5257 TC = std::make_unique<toolchains::ZOS>(*this, Target, Args); 5258 break; 5259 default: 5260 // Of these targets, Hexagon is the only one that might have 5261 // an OS of Linux, in which case it got handled above already. 5262 switch (Target.getArch()) { 5263 case llvm::Triple::tce: 5264 TC = std::make_unique<toolchains::TCEToolChain>(*this, Target, Args); 5265 break; 5266 case llvm::Triple::tcele: 5267 TC = std::make_unique<toolchains::TCELEToolChain>(*this, Target, Args); 5268 break; 5269 case llvm::Triple::hexagon: 5270 TC = std::make_unique<toolchains::HexagonToolChain>(*this, Target, 5271 Args); 5272 break; 5273 case llvm::Triple::lanai: 5274 TC = std::make_unique<toolchains::LanaiToolChain>(*this, Target, Args); 5275 break; 5276 case llvm::Triple::xcore: 5277 TC = std::make_unique<toolchains::XCoreToolChain>(*this, Target, Args); 5278 break; 5279 case llvm::Triple::wasm32: 5280 case llvm::Triple::wasm64: 5281 TC = std::make_unique<toolchains::WebAssembly>(*this, Target, Args); 5282 break; 5283 case llvm::Triple::avr: 5284 TC = std::make_unique<toolchains::AVRToolChain>(*this, Target, Args); 5285 break; 5286 case llvm::Triple::msp430: 5287 TC = 5288 std::make_unique<toolchains::MSP430ToolChain>(*this, Target, Args); 5289 break; 5290 case llvm::Triple::riscv32: 5291 case llvm::Triple::riscv64: 5292 if (toolchains::RISCVToolChain::hasGCCToolchain(*this, Args)) 5293 TC = 5294 std::make_unique<toolchains::RISCVToolChain>(*this, Target, Args); 5295 else 5296 TC = std::make_unique<toolchains::BareMetal>(*this, Target, Args); 5297 break; 5298 case llvm::Triple::ve: 5299 TC = std::make_unique<toolchains::VEToolChain>(*this, Target, Args); 5300 break; 5301 default: 5302 if (Target.getVendor() == llvm::Triple::Myriad) 5303 TC = std::make_unique<toolchains::MyriadToolChain>(*this, Target, 5304 Args); 5305 else if (toolchains::BareMetal::handlesTarget(Target)) 5306 TC = std::make_unique<toolchains::BareMetal>(*this, Target, Args); 5307 else if (Target.isOSBinFormatELF()) 5308 TC = std::make_unique<toolchains::Generic_ELF>(*this, Target, Args); 5309 else if (Target.isOSBinFormatMachO()) 5310 TC = std::make_unique<toolchains::MachO>(*this, Target, Args); 5311 else 5312 TC = std::make_unique<toolchains::Generic_GCC>(*this, Target, Args); 5313 } 5314 } 5315 } 5316 5317 // Intentionally omitted from the switch above: llvm::Triple::CUDA. CUDA 5318 // compiles always need two toolchains, the CUDA toolchain and the host 5319 // toolchain. So the only valid way to create a CUDA toolchain is via 5320 // CreateOffloadingDeviceToolChains. 5321 5322 return *TC; 5323 } 5324 5325 bool Driver::ShouldUseClangCompiler(const JobAction &JA) const { 5326 // Say "no" if there is not exactly one input of a type clang understands. 5327 if (JA.size() != 1 || 5328 !types::isAcceptedByClang((*JA.input_begin())->getType())) 5329 return false; 5330 5331 // And say "no" if this is not a kind of action clang understands. 5332 if (!isa<PreprocessJobAction>(JA) && !isa<PrecompileJobAction>(JA) && 5333 !isa<CompileJobAction>(JA) && !isa<BackendJobAction>(JA)) 5334 return false; 5335 5336 return true; 5337 } 5338 5339 bool Driver::ShouldUseFlangCompiler(const JobAction &JA) const { 5340 // Say "no" if there is not exactly one input of a type flang understands. 5341 if (JA.size() != 1 || 5342 !types::isFortran((*JA.input_begin())->getType())) 5343 return false; 5344 5345 // And say "no" if this is not a kind of action flang understands. 5346 if (!isa<PreprocessJobAction>(JA) && !isa<CompileJobAction>(JA) && !isa<BackendJobAction>(JA)) 5347 return false; 5348 5349 return true; 5350 } 5351 5352 bool Driver::ShouldEmitStaticLibrary(const ArgList &Args) const { 5353 // Only emit static library if the flag is set explicitly. 5354 if (Args.hasArg(options::OPT_emit_static_lib)) 5355 return true; 5356 return false; 5357 } 5358 5359 /// GetReleaseVersion - Parse (([0-9]+)(.([0-9]+)(.([0-9]+)?))?)? and return the 5360 /// grouped values as integers. Numbers which are not provided are set to 0. 5361 /// 5362 /// \return True if the entire string was parsed (9.2), or all groups were 5363 /// parsed (10.3.5extrastuff). 5364 bool Driver::GetReleaseVersion(StringRef Str, unsigned &Major, unsigned &Minor, 5365 unsigned &Micro, bool &HadExtra) { 5366 HadExtra = false; 5367 5368 Major = Minor = Micro = 0; 5369 if (Str.empty()) 5370 return false; 5371 5372 if (Str.consumeInteger(10, Major)) 5373 return false; 5374 if (Str.empty()) 5375 return true; 5376 if (Str[0] != '.') 5377 return false; 5378 5379 Str = Str.drop_front(1); 5380 5381 if (Str.consumeInteger(10, Minor)) 5382 return false; 5383 if (Str.empty()) 5384 return true; 5385 if (Str[0] != '.') 5386 return false; 5387 Str = Str.drop_front(1); 5388 5389 if (Str.consumeInteger(10, Micro)) 5390 return false; 5391 if (!Str.empty()) 5392 HadExtra = true; 5393 return true; 5394 } 5395 5396 /// Parse digits from a string \p Str and fulfill \p Digits with 5397 /// the parsed numbers. This method assumes that the max number of 5398 /// digits to look for is equal to Digits.size(). 5399 /// 5400 /// \return True if the entire string was parsed and there are 5401 /// no extra characters remaining at the end. 5402 bool Driver::GetReleaseVersion(StringRef Str, 5403 MutableArrayRef<unsigned> Digits) { 5404 if (Str.empty()) 5405 return false; 5406 5407 unsigned CurDigit = 0; 5408 while (CurDigit < Digits.size()) { 5409 unsigned Digit; 5410 if (Str.consumeInteger(10, Digit)) 5411 return false; 5412 Digits[CurDigit] = Digit; 5413 if (Str.empty()) 5414 return true; 5415 if (Str[0] != '.') 5416 return false; 5417 Str = Str.drop_front(1); 5418 CurDigit++; 5419 } 5420 5421 // More digits than requested, bail out... 5422 return false; 5423 } 5424 5425 std::pair<unsigned, unsigned> 5426 Driver::getIncludeExcludeOptionFlagMasks(bool IsClCompatMode) const { 5427 unsigned IncludedFlagsBitmask = 0; 5428 unsigned ExcludedFlagsBitmask = options::NoDriverOption; 5429 5430 if (IsClCompatMode) { 5431 // Include CL and Core options. 5432 IncludedFlagsBitmask |= options::CLOption; 5433 IncludedFlagsBitmask |= options::CoreOption; 5434 } else { 5435 ExcludedFlagsBitmask |= options::CLOption; 5436 } 5437 5438 return std::make_pair(IncludedFlagsBitmask, ExcludedFlagsBitmask); 5439 } 5440 5441 bool clang::driver::isOptimizationLevelFast(const ArgList &Args) { 5442 return Args.hasFlag(options::OPT_Ofast, options::OPT_O_Group, false); 5443 } 5444 5445 bool clang::driver::willEmitRemarks(const ArgList &Args) { 5446 // -fsave-optimization-record enables it. 5447 if (Args.hasFlag(options::OPT_fsave_optimization_record, 5448 options::OPT_fno_save_optimization_record, false)) 5449 return true; 5450 5451 // -fsave-optimization-record=<format> enables it as well. 5452 if (Args.hasFlag(options::OPT_fsave_optimization_record_EQ, 5453 options::OPT_fno_save_optimization_record, false)) 5454 return true; 5455 5456 // -foptimization-record-file alone enables it too. 5457 if (Args.hasFlag(options::OPT_foptimization_record_file_EQ, 5458 options::OPT_fno_save_optimization_record, false)) 5459 return true; 5460 5461 // -foptimization-record-passes alone enables it too. 5462 if (Args.hasFlag(options::OPT_foptimization_record_passes_EQ, 5463 options::OPT_fno_save_optimization_record, false)) 5464 return true; 5465 return false; 5466 } 5467