1 //===--- Driver.cpp - Clang GCC Compatible Driver -------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "clang/Driver/Driver.h" 11 #include "InputInfo.h" 12 #include "ToolChains.h" 13 #include "clang/Basic/Version.h" 14 #include "clang/Basic/VirtualFileSystem.h" 15 #include "clang/Config/config.h" 16 #include "clang/Driver/Action.h" 17 #include "clang/Driver/Compilation.h" 18 #include "clang/Driver/DriverDiagnostic.h" 19 #include "clang/Driver/Job.h" 20 #include "clang/Driver/Options.h" 21 #include "clang/Driver/SanitizerArgs.h" 22 #include "clang/Driver/Tool.h" 23 #include "clang/Driver/ToolChain.h" 24 #include "llvm/ADT/ArrayRef.h" 25 #include "llvm/ADT/STLExtras.h" 26 #include "llvm/ADT/SmallSet.h" 27 #include "llvm/ADT/StringExtras.h" 28 #include "llvm/ADT/StringSet.h" 29 #include "llvm/ADT/StringSwitch.h" 30 #include "llvm/Option/Arg.h" 31 #include "llvm/Option/ArgList.h" 32 #include "llvm/Option/OptSpecifier.h" 33 #include "llvm/Option/OptTable.h" 34 #include "llvm/Option/Option.h" 35 #include "llvm/Support/ErrorHandling.h" 36 #include "llvm/Support/FileSystem.h" 37 #include "llvm/Support/Path.h" 38 #include "llvm/Support/PrettyStackTrace.h" 39 #include "llvm/Support/Process.h" 40 #include "llvm/Support/Program.h" 41 #include "llvm/Support/raw_ostream.h" 42 #include <map> 43 #include <memory> 44 #include <utility> 45 46 using namespace clang::driver; 47 using namespace clang; 48 using namespace llvm::opt; 49 50 Driver::Driver(StringRef ClangExecutable, StringRef DefaultTargetTriple, 51 DiagnosticsEngine &Diags, 52 IntrusiveRefCntPtr<vfs::FileSystem> VFS) 53 : Opts(createDriverOptTable()), Diags(Diags), VFS(std::move(VFS)), 54 Mode(GCCMode), SaveTemps(SaveTempsNone), BitcodeEmbed(EmbedNone), 55 LTOMode(LTOK_None), ClangExecutable(ClangExecutable), 56 SysRoot(DEFAULT_SYSROOT), UseStdLib(true), 57 DriverTitle("clang LLVM compiler"), CCPrintOptionsFilename(nullptr), 58 CCPrintHeadersFilename(nullptr), CCLogDiagnosticsFilename(nullptr), 59 CCCPrintBindings(false), CCPrintHeaders(false), CCLogDiagnostics(false), 60 CCGenDiagnostics(false), DefaultTargetTriple(DefaultTargetTriple), 61 CCCGenericGCCName(""), CheckInputsExist(true), CCCUsePCH(true), 62 SuppressMissingInputWarning(false) { 63 64 // Provide a sane fallback if no VFS is specified. 65 if (!this->VFS) 66 this->VFS = vfs::getRealFileSystem(); 67 68 Name = llvm::sys::path::filename(ClangExecutable); 69 Dir = llvm::sys::path::parent_path(ClangExecutable); 70 InstalledDir = Dir; // Provide a sensible default installed dir. 71 72 // Compute the path to the resource directory. 73 StringRef ClangResourceDir(CLANG_RESOURCE_DIR); 74 SmallString<128> P(Dir); 75 if (ClangResourceDir != "") { 76 llvm::sys::path::append(P, ClangResourceDir); 77 } else { 78 StringRef ClangLibdirSuffix(CLANG_LIBDIR_SUFFIX); 79 llvm::sys::path::append(P, "..", Twine("lib") + ClangLibdirSuffix, "clang", 80 CLANG_VERSION_STRING); 81 } 82 ResourceDir = P.str(); 83 } 84 85 Driver::~Driver() { 86 delete Opts; 87 88 llvm::DeleteContainerSeconds(ToolChains); 89 } 90 91 void Driver::ParseDriverMode(StringRef ProgramName, 92 ArrayRef<const char *> Args) { 93 auto Default = ToolChain::getTargetAndModeFromProgramName(ProgramName); 94 StringRef DefaultMode(Default.second); 95 setDriverModeFromOption(DefaultMode); 96 97 for (const char *ArgPtr : Args) { 98 // Ingore nullptrs, they are response file's EOL markers 99 if (ArgPtr == nullptr) 100 continue; 101 const StringRef Arg = ArgPtr; 102 setDriverModeFromOption(Arg); 103 } 104 } 105 106 void Driver::setDriverModeFromOption(StringRef Opt) { 107 const std::string OptName = 108 getOpts().getOption(options::OPT_driver_mode).getPrefixedName(); 109 if (!Opt.startswith(OptName)) 110 return; 111 StringRef Value = Opt.drop_front(OptName.size()); 112 113 const unsigned M = llvm::StringSwitch<unsigned>(Value) 114 .Case("gcc", GCCMode) 115 .Case("g++", GXXMode) 116 .Case("cpp", CPPMode) 117 .Case("cl", CLMode) 118 .Default(~0U); 119 120 if (M != ~0U) 121 Mode = static_cast<DriverMode>(M); 122 else 123 Diag(diag::err_drv_unsupported_option_argument) << OptName << Value; 124 } 125 126 InputArgList Driver::ParseArgStrings(ArrayRef<const char *> ArgStrings) { 127 llvm::PrettyStackTraceString CrashInfo("Command line argument parsing"); 128 129 unsigned IncludedFlagsBitmask; 130 unsigned ExcludedFlagsBitmask; 131 std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) = 132 getIncludeExcludeOptionFlagMasks(); 133 134 unsigned MissingArgIndex, MissingArgCount; 135 InputArgList Args = 136 getOpts().ParseArgs(ArgStrings, MissingArgIndex, MissingArgCount, 137 IncludedFlagsBitmask, ExcludedFlagsBitmask); 138 139 // Check for missing argument error. 140 if (MissingArgCount) 141 Diag(clang::diag::err_drv_missing_argument) 142 << Args.getArgString(MissingArgIndex) << MissingArgCount; 143 144 // Check for unsupported options. 145 for (const Arg *A : Args) { 146 if (A->getOption().hasFlag(options::Unsupported)) { 147 Diag(clang::diag::err_drv_unsupported_opt) << A->getAsString(Args); 148 continue; 149 } 150 151 // Warn about -mcpu= without an argument. 152 if (A->getOption().matches(options::OPT_mcpu_EQ) && A->containsValue("")) { 153 Diag(clang::diag::warn_drv_empty_joined_argument) << A->getAsString(Args); 154 } 155 } 156 157 for (const Arg *A : Args.filtered(options::OPT_UNKNOWN)) 158 Diags.Report(IsCLMode() ? diag::warn_drv_unknown_argument_clang_cl : 159 diag::err_drv_unknown_argument) 160 << A->getAsString(Args); 161 162 return Args; 163 } 164 165 // Determine which compilation mode we are in. We look for options which 166 // affect the phase, starting with the earliest phases, and record which 167 // option we used to determine the final phase. 168 phases::ID Driver::getFinalPhase(const DerivedArgList &DAL, 169 Arg **FinalPhaseArg) const { 170 Arg *PhaseArg = nullptr; 171 phases::ID FinalPhase; 172 173 // -{E,EP,P,M,MM} only run the preprocessor. 174 if (CCCIsCPP() || (PhaseArg = DAL.getLastArg(options::OPT_E)) || 175 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_EP)) || 176 (PhaseArg = DAL.getLastArg(options::OPT_M, options::OPT_MM)) || 177 (PhaseArg = DAL.getLastArg(options::OPT__SLASH_P))) { 178 FinalPhase = phases::Preprocess; 179 180 // --precompile only runs up to precompilation. 181 } else if ((PhaseArg = DAL.getLastArg(options::OPT__precompile))) { 182 FinalPhase = phases::Precompile; 183 184 // -{fsyntax-only,-analyze,emit-ast} only run up to the compiler. 185 } else if ((PhaseArg = DAL.getLastArg(options::OPT_fsyntax_only)) || 186 (PhaseArg = DAL.getLastArg(options::OPT_module_file_info)) || 187 (PhaseArg = DAL.getLastArg(options::OPT_verify_pch)) || 188 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_objc)) || 189 (PhaseArg = DAL.getLastArg(options::OPT_rewrite_legacy_objc)) || 190 (PhaseArg = DAL.getLastArg(options::OPT__migrate)) || 191 (PhaseArg = DAL.getLastArg(options::OPT__analyze, 192 options::OPT__analyze_auto)) || 193 (PhaseArg = DAL.getLastArg(options::OPT_emit_ast))) { 194 FinalPhase = phases::Compile; 195 196 // -S only runs up to the backend. 197 } else if ((PhaseArg = DAL.getLastArg(options::OPT_S))) { 198 FinalPhase = phases::Backend; 199 200 // -c compilation only runs up to the assembler. 201 } else if ((PhaseArg = DAL.getLastArg(options::OPT_c))) { 202 FinalPhase = phases::Assemble; 203 204 // Otherwise do everything. 205 } else 206 FinalPhase = phases::Link; 207 208 if (FinalPhaseArg) 209 *FinalPhaseArg = PhaseArg; 210 211 return FinalPhase; 212 } 213 214 static Arg *MakeInputArg(DerivedArgList &Args, OptTable *Opts, 215 StringRef Value) { 216 Arg *A = new Arg(Opts->getOption(options::OPT_INPUT), Value, 217 Args.getBaseArgs().MakeIndex(Value), Value.data()); 218 Args.AddSynthesizedArg(A); 219 A->claim(); 220 return A; 221 } 222 223 DerivedArgList *Driver::TranslateInputArgs(const InputArgList &Args) const { 224 DerivedArgList *DAL = new DerivedArgList(Args); 225 226 bool HasNostdlib = Args.hasArg(options::OPT_nostdlib); 227 bool HasNodefaultlib = Args.hasArg(options::OPT_nodefaultlibs); 228 for (Arg *A : Args) { 229 // Unfortunately, we have to parse some forwarding options (-Xassembler, 230 // -Xlinker, -Xpreprocessor) because we either integrate their functionality 231 // (assembler and preprocessor), or bypass a previous driver ('collect2'). 232 233 // Rewrite linker options, to replace --no-demangle with a custom internal 234 // option. 235 if ((A->getOption().matches(options::OPT_Wl_COMMA) || 236 A->getOption().matches(options::OPT_Xlinker)) && 237 A->containsValue("--no-demangle")) { 238 // Add the rewritten no-demangle argument. 239 DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_Xlinker__no_demangle)); 240 241 // Add the remaining values as Xlinker arguments. 242 for (StringRef Val : A->getValues()) 243 if (Val != "--no-demangle") 244 DAL->AddSeparateArg(A, Opts->getOption(options::OPT_Xlinker), Val); 245 246 continue; 247 } 248 249 // Rewrite preprocessor options, to replace -Wp,-MD,FOO which is used by 250 // some build systems. We don't try to be complete here because we don't 251 // care to encourage this usage model. 252 if (A->getOption().matches(options::OPT_Wp_COMMA) && 253 (A->getValue(0) == StringRef("-MD") || 254 A->getValue(0) == StringRef("-MMD"))) { 255 // Rewrite to -MD/-MMD along with -MF. 256 if (A->getValue(0) == StringRef("-MD")) 257 DAL->AddFlagArg(A, Opts->getOption(options::OPT_MD)); 258 else 259 DAL->AddFlagArg(A, Opts->getOption(options::OPT_MMD)); 260 if (A->getNumValues() == 2) 261 DAL->AddSeparateArg(A, Opts->getOption(options::OPT_MF), 262 A->getValue(1)); 263 continue; 264 } 265 266 // Rewrite reserved library names. 267 if (A->getOption().matches(options::OPT_l)) { 268 StringRef Value = A->getValue(); 269 270 // Rewrite unless -nostdlib is present. 271 if (!HasNostdlib && !HasNodefaultlib && Value == "stdc++") { 272 DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_reserved_lib_stdcxx)); 273 continue; 274 } 275 276 // Rewrite unconditionally. 277 if (Value == "cc_kext") { 278 DAL->AddFlagArg(A, Opts->getOption(options::OPT_Z_reserved_lib_cckext)); 279 continue; 280 } 281 } 282 283 // Pick up inputs via the -- option. 284 if (A->getOption().matches(options::OPT__DASH_DASH)) { 285 A->claim(); 286 for (StringRef Val : A->getValues()) 287 DAL->append(MakeInputArg(*DAL, Opts, Val)); 288 continue; 289 } 290 291 DAL->append(A); 292 } 293 294 // Enforce -static if -miamcu is present. 295 if (Args.hasFlag(options::OPT_miamcu, options::OPT_mno_iamcu, false)) 296 DAL->AddFlagArg(0, Opts->getOption(options::OPT_static)); 297 298 // Add a default value of -mlinker-version=, if one was given and the user 299 // didn't specify one. 300 #if defined(HOST_LINK_VERSION) 301 if (!Args.hasArg(options::OPT_mlinker_version_EQ) && 302 strlen(HOST_LINK_VERSION) > 0) { 303 DAL->AddJoinedArg(0, Opts->getOption(options::OPT_mlinker_version_EQ), 304 HOST_LINK_VERSION); 305 DAL->getLastArg(options::OPT_mlinker_version_EQ)->claim(); 306 } 307 #endif 308 309 return DAL; 310 } 311 312 /// \brief Compute target triple from args. 313 /// 314 /// This routine provides the logic to compute a target triple from various 315 /// args passed to the driver and the default triple string. 316 static llvm::Triple computeTargetTriple(const Driver &D, 317 StringRef DefaultTargetTriple, 318 const ArgList &Args, 319 StringRef DarwinArchName = "") { 320 // FIXME: Already done in Compilation *Driver::BuildCompilation 321 if (const Arg *A = Args.getLastArg(options::OPT_target)) 322 DefaultTargetTriple = A->getValue(); 323 324 llvm::Triple Target(llvm::Triple::normalize(DefaultTargetTriple)); 325 326 // Handle Apple-specific options available here. 327 if (Target.isOSBinFormatMachO()) { 328 // If an explict Darwin arch name is given, that trumps all. 329 if (!DarwinArchName.empty()) { 330 tools::darwin::setTripleTypeForMachOArchName(Target, DarwinArchName); 331 return Target; 332 } 333 334 // Handle the Darwin '-arch' flag. 335 if (Arg *A = Args.getLastArg(options::OPT_arch)) { 336 StringRef ArchName = A->getValue(); 337 tools::darwin::setTripleTypeForMachOArchName(Target, ArchName); 338 } 339 } 340 341 // Handle pseudo-target flags '-mlittle-endian'/'-EL' and 342 // '-mbig-endian'/'-EB'. 343 if (Arg *A = Args.getLastArg(options::OPT_mlittle_endian, 344 options::OPT_mbig_endian)) { 345 if (A->getOption().matches(options::OPT_mlittle_endian)) { 346 llvm::Triple LE = Target.getLittleEndianArchVariant(); 347 if (LE.getArch() != llvm::Triple::UnknownArch) 348 Target = std::move(LE); 349 } else { 350 llvm::Triple BE = Target.getBigEndianArchVariant(); 351 if (BE.getArch() != llvm::Triple::UnknownArch) 352 Target = std::move(BE); 353 } 354 } 355 356 // Skip further flag support on OSes which don't support '-m32' or '-m64'. 357 if (Target.getArch() == llvm::Triple::tce || 358 Target.getOS() == llvm::Triple::Minix) 359 return Target; 360 361 // Handle pseudo-target flags '-m64', '-mx32', '-m32' and '-m16'. 362 Arg *A = Args.getLastArg(options::OPT_m64, options::OPT_mx32, 363 options::OPT_m32, options::OPT_m16); 364 if (A) { 365 llvm::Triple::ArchType AT = llvm::Triple::UnknownArch; 366 367 if (A->getOption().matches(options::OPT_m64)) { 368 AT = Target.get64BitArchVariant().getArch(); 369 if (Target.getEnvironment() == llvm::Triple::GNUX32) 370 Target.setEnvironment(llvm::Triple::GNU); 371 } else if (A->getOption().matches(options::OPT_mx32) && 372 Target.get64BitArchVariant().getArch() == llvm::Triple::x86_64) { 373 AT = llvm::Triple::x86_64; 374 Target.setEnvironment(llvm::Triple::GNUX32); 375 } else if (A->getOption().matches(options::OPT_m32)) { 376 AT = Target.get32BitArchVariant().getArch(); 377 if (Target.getEnvironment() == llvm::Triple::GNUX32) 378 Target.setEnvironment(llvm::Triple::GNU); 379 } else if (A->getOption().matches(options::OPT_m16) && 380 Target.get32BitArchVariant().getArch() == llvm::Triple::x86) { 381 AT = llvm::Triple::x86; 382 Target.setEnvironment(llvm::Triple::CODE16); 383 } 384 385 if (AT != llvm::Triple::UnknownArch && AT != Target.getArch()) 386 Target.setArch(AT); 387 } 388 389 // Handle -miamcu flag. 390 if (Args.hasFlag(options::OPT_miamcu, options::OPT_mno_iamcu, false)) { 391 if (Target.get32BitArchVariant().getArch() != llvm::Triple::x86) 392 D.Diag(diag::err_drv_unsupported_opt_for_target) << "-miamcu" 393 << Target.str(); 394 395 if (A && !A->getOption().matches(options::OPT_m32)) 396 D.Diag(diag::err_drv_argument_not_allowed_with) 397 << "-miamcu" << A->getBaseArg().getAsString(Args); 398 399 Target.setArch(llvm::Triple::x86); 400 Target.setArchName("i586"); 401 Target.setEnvironment(llvm::Triple::UnknownEnvironment); 402 Target.setEnvironmentName(""); 403 Target.setOS(llvm::Triple::ELFIAMCU); 404 Target.setVendor(llvm::Triple::UnknownVendor); 405 Target.setVendorName("intel"); 406 } 407 408 return Target; 409 } 410 411 // \brief Parse the LTO options and record the type of LTO compilation 412 // based on which -f(no-)?lto(=.*)? option occurs last. 413 void Driver::setLTOMode(const llvm::opt::ArgList &Args) { 414 LTOMode = LTOK_None; 415 if (!Args.hasFlag(options::OPT_flto, options::OPT_flto_EQ, 416 options::OPT_fno_lto, false)) 417 return; 418 419 StringRef LTOName("full"); 420 421 const Arg *A = Args.getLastArg(options::OPT_flto_EQ); 422 if (A) 423 LTOName = A->getValue(); 424 425 LTOMode = llvm::StringSwitch<LTOKind>(LTOName) 426 .Case("full", LTOK_Full) 427 .Case("thin", LTOK_Thin) 428 .Default(LTOK_Unknown); 429 430 if (LTOMode == LTOK_Unknown) { 431 assert(A); 432 Diag(diag::err_drv_unsupported_option_argument) << A->getOption().getName() 433 << A->getValue(); 434 } 435 } 436 437 /// Compute the desired OpenMP runtime from the flags provided. 438 Driver::OpenMPRuntimeKind Driver::getOpenMPRuntime(const ArgList &Args) const { 439 StringRef RuntimeName(CLANG_DEFAULT_OPENMP_RUNTIME); 440 441 const Arg *A = Args.getLastArg(options::OPT_fopenmp_EQ); 442 if (A) 443 RuntimeName = A->getValue(); 444 445 auto RT = llvm::StringSwitch<OpenMPRuntimeKind>(RuntimeName) 446 .Case("libomp", OMPRT_OMP) 447 .Case("libgomp", OMPRT_GOMP) 448 .Case("libiomp5", OMPRT_IOMP5) 449 .Default(OMPRT_Unknown); 450 451 if (RT == OMPRT_Unknown) { 452 if (A) 453 Diag(diag::err_drv_unsupported_option_argument) 454 << A->getOption().getName() << A->getValue(); 455 else 456 // FIXME: We could use a nicer diagnostic here. 457 Diag(diag::err_drv_unsupported_opt) << "-fopenmp"; 458 } 459 460 return RT; 461 } 462 463 void Driver::CreateOffloadingDeviceToolChains(Compilation &C, 464 InputList &Inputs) { 465 466 // 467 // CUDA 468 // 469 // We need to generate a CUDA toolchain if any of the inputs has a CUDA type. 470 if (llvm::any_of(Inputs, [](std::pair<types::ID, const llvm::opt::Arg *> &I) { 471 return types::isCuda(I.first); 472 })) { 473 const ToolChain &TC = getToolChain( 474 C.getInputArgs(), 475 llvm::Triple(C.getSingleOffloadToolChain<Action::OFK_Host>() 476 ->getTriple() 477 .isArch64Bit() 478 ? "nvptx64-nvidia-cuda" 479 : "nvptx-nvidia-cuda")); 480 C.addOffloadDeviceToolChain(&TC, Action::OFK_Cuda); 481 } 482 483 // 484 // OpenMP 485 // 486 // We need to generate an OpenMP toolchain if the user specified targets with 487 // the -fopenmp-targets option. 488 if (Arg *OpenMPTargets = 489 C.getInputArgs().getLastArg(options::OPT_fopenmp_targets_EQ)) { 490 if (OpenMPTargets->getNumValues()) { 491 // We expect that -fopenmp-targets is always used in conjunction with the 492 // option -fopenmp specifying a valid runtime with offloading support, 493 // i.e. libomp or libiomp. 494 bool HasValidOpenMPRuntime = C.getInputArgs().hasFlag( 495 options::OPT_fopenmp, options::OPT_fopenmp_EQ, 496 options::OPT_fno_openmp, false); 497 if (HasValidOpenMPRuntime) { 498 OpenMPRuntimeKind OpenMPKind = getOpenMPRuntime(C.getInputArgs()); 499 HasValidOpenMPRuntime = 500 OpenMPKind == OMPRT_OMP || OpenMPKind == OMPRT_IOMP5; 501 } 502 503 if (HasValidOpenMPRuntime) { 504 llvm::StringMap<const char *> FoundNormalizedTriples; 505 for (const char *Val : OpenMPTargets->getValues()) { 506 llvm::Triple TT(Val); 507 std::string NormalizedName = TT.normalize(); 508 509 // Make sure we don't have a duplicate triple. 510 auto Duplicate = FoundNormalizedTriples.find(NormalizedName); 511 if (Duplicate != FoundNormalizedTriples.end()) { 512 Diag(clang::diag::warn_drv_omp_offload_target_duplicate) 513 << Val << Duplicate->second; 514 continue; 515 } 516 517 // Store the current triple so that we can check for duplicates in the 518 // following iterations. 519 FoundNormalizedTriples[NormalizedName] = Val; 520 521 // If the specified target is invalid, emit a diagnostic. 522 if (TT.getArch() == llvm::Triple::UnknownArch) 523 Diag(clang::diag::err_drv_invalid_omp_target) << Val; 524 else { 525 const ToolChain &TC = getToolChain(C.getInputArgs(), TT); 526 C.addOffloadDeviceToolChain(&TC, Action::OFK_OpenMP); 527 } 528 } 529 } else 530 Diag(clang::diag::err_drv_expecting_fopenmp_with_fopenmp_targets); 531 } else 532 Diag(clang::diag::warn_drv_empty_joined_argument) 533 << OpenMPTargets->getAsString(C.getInputArgs()); 534 } 535 536 // 537 // TODO: Add support for other offloading programming models here. 538 // 539 540 return; 541 } 542 543 Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) { 544 llvm::PrettyStackTraceString CrashInfo("Compilation construction"); 545 546 // FIXME: Handle environment options which affect driver behavior, somewhere 547 // (client?). GCC_EXEC_PREFIX, LPATH, CC_PRINT_OPTIONS. 548 549 if (Optional<std::string> CompilerPathValue = 550 llvm::sys::Process::GetEnv("COMPILER_PATH")) { 551 StringRef CompilerPath = *CompilerPathValue; 552 while (!CompilerPath.empty()) { 553 std::pair<StringRef, StringRef> Split = 554 CompilerPath.split(llvm::sys::EnvPathSeparator); 555 PrefixDirs.push_back(Split.first); 556 CompilerPath = Split.second; 557 } 558 } 559 560 // We look for the driver mode option early, because the mode can affect 561 // how other options are parsed. 562 ParseDriverMode(ClangExecutable, ArgList.slice(1)); 563 564 // FIXME: What are we going to do with -V and -b? 565 566 // FIXME: This stuff needs to go into the Compilation, not the driver. 567 bool CCCPrintPhases; 568 569 InputArgList Args = ParseArgStrings(ArgList.slice(1)); 570 571 // Silence driver warnings if requested 572 Diags.setIgnoreAllWarnings(Args.hasArg(options::OPT_w)); 573 574 // -no-canonical-prefixes is used very early in main. 575 Args.ClaimAllArgs(options::OPT_no_canonical_prefixes); 576 577 // Ignore -pipe. 578 Args.ClaimAllArgs(options::OPT_pipe); 579 580 // Extract -ccc args. 581 // 582 // FIXME: We need to figure out where this behavior should live. Most of it 583 // should be outside in the client; the parts that aren't should have proper 584 // options, either by introducing new ones or by overloading gcc ones like -V 585 // or -b. 586 CCCPrintPhases = Args.hasArg(options::OPT_ccc_print_phases); 587 CCCPrintBindings = Args.hasArg(options::OPT_ccc_print_bindings); 588 if (const Arg *A = Args.getLastArg(options::OPT_ccc_gcc_name)) 589 CCCGenericGCCName = A->getValue(); 590 CCCUsePCH = 591 Args.hasFlag(options::OPT_ccc_pch_is_pch, options::OPT_ccc_pch_is_pth); 592 // FIXME: DefaultTargetTriple is used by the target-prefixed calls to as/ld 593 // and getToolChain is const. 594 if (IsCLMode()) { 595 // clang-cl targets MSVC-style Win32. 596 llvm::Triple T(DefaultTargetTriple); 597 T.setOS(llvm::Triple::Win32); 598 T.setVendor(llvm::Triple::PC); 599 T.setEnvironment(llvm::Triple::MSVC); 600 DefaultTargetTriple = T.str(); 601 } 602 if (const Arg *A = Args.getLastArg(options::OPT_target)) 603 DefaultTargetTriple = A->getValue(); 604 if (const Arg *A = Args.getLastArg(options::OPT_ccc_install_dir)) 605 Dir = InstalledDir = A->getValue(); 606 for (const Arg *A : Args.filtered(options::OPT_B)) { 607 A->claim(); 608 PrefixDirs.push_back(A->getValue(0)); 609 } 610 if (const Arg *A = Args.getLastArg(options::OPT__sysroot_EQ)) 611 SysRoot = A->getValue(); 612 if (const Arg *A = Args.getLastArg(options::OPT__dyld_prefix_EQ)) 613 DyldPrefix = A->getValue(); 614 if (Args.hasArg(options::OPT_nostdlib)) 615 UseStdLib = false; 616 617 if (const Arg *A = Args.getLastArg(options::OPT_resource_dir)) 618 ResourceDir = A->getValue(); 619 620 if (const Arg *A = Args.getLastArg(options::OPT_save_temps_EQ)) { 621 SaveTemps = llvm::StringSwitch<SaveTempsMode>(A->getValue()) 622 .Case("cwd", SaveTempsCwd) 623 .Case("obj", SaveTempsObj) 624 .Default(SaveTempsCwd); 625 } 626 627 setLTOMode(Args); 628 629 // Ignore -fembed-bitcode options with LTO 630 // since the output will be bitcode anyway. 631 if (getLTOMode() == LTOK_None) { 632 if (Arg *A = Args.getLastArg(options::OPT_fembed_bitcode_EQ)) { 633 StringRef Name = A->getValue(); 634 unsigned Model = llvm::StringSwitch<unsigned>(Name) 635 .Case("off", EmbedNone) 636 .Case("all", EmbedBitcode) 637 .Case("bitcode", EmbedBitcode) 638 .Case("marker", EmbedMarker) 639 .Default(~0U); 640 if (Model == ~0U) { 641 Diags.Report(diag::err_drv_invalid_value) << A->getAsString(Args) 642 << Name; 643 } else 644 BitcodeEmbed = static_cast<BitcodeEmbedMode>(Model); 645 } 646 } else { 647 // claim the bitcode option under LTO so no warning is issued. 648 Args.ClaimAllArgs(options::OPT_fembed_bitcode_EQ); 649 } 650 651 std::unique_ptr<llvm::opt::InputArgList> UArgs = 652 llvm::make_unique<InputArgList>(std::move(Args)); 653 654 // Perform the default argument translations. 655 DerivedArgList *TranslatedArgs = TranslateInputArgs(*UArgs); 656 657 // Owned by the host. 658 const ToolChain &TC = getToolChain( 659 *UArgs, computeTargetTriple(*this, DefaultTargetTriple, *UArgs)); 660 661 // The compilation takes ownership of Args. 662 Compilation *C = new Compilation(*this, TC, UArgs.release(), TranslatedArgs); 663 664 if (!HandleImmediateArgs(*C)) 665 return C; 666 667 // Construct the list of inputs. 668 InputList Inputs; 669 BuildInputs(C->getDefaultToolChain(), *TranslatedArgs, Inputs); 670 671 // Populate the tool chains for the offloading devices, if any. 672 CreateOffloadingDeviceToolChains(*C, Inputs); 673 674 // Construct the list of abstract actions to perform for this compilation. On 675 // MachO targets this uses the driver-driver and universal actions. 676 if (TC.getTriple().isOSBinFormatMachO()) 677 BuildUniversalActions(*C, C->getDefaultToolChain(), Inputs); 678 else 679 BuildActions(*C, C->getArgs(), Inputs, C->getActions()); 680 681 if (CCCPrintPhases) { 682 PrintActions(*C); 683 return C; 684 } 685 686 BuildJobs(*C); 687 688 return C; 689 } 690 691 static void printArgList(raw_ostream &OS, const llvm::opt::ArgList &Args) { 692 llvm::opt::ArgStringList ASL; 693 for (const auto *A : Args) 694 A->render(Args, ASL); 695 696 for (auto I = ASL.begin(), E = ASL.end(); I != E; ++I) { 697 if (I != ASL.begin()) 698 OS << ' '; 699 Command::printArg(OS, *I, true); 700 } 701 OS << '\n'; 702 } 703 704 // When clang crashes, produce diagnostic information including the fully 705 // preprocessed source file(s). Request that the developer attach the 706 // diagnostic information to a bug report. 707 void Driver::generateCompilationDiagnostics(Compilation &C, 708 const Command &FailingCommand) { 709 if (C.getArgs().hasArg(options::OPT_fno_crash_diagnostics)) 710 return; 711 712 // Don't try to generate diagnostics for link or dsymutil jobs. 713 if (FailingCommand.getCreator().isLinkJob() || 714 FailingCommand.getCreator().isDsymutilJob()) 715 return; 716 717 // Print the version of the compiler. 718 PrintVersion(C, llvm::errs()); 719 720 Diag(clang::diag::note_drv_command_failed_diag_msg) 721 << "PLEASE submit a bug report to " BUG_REPORT_URL " and include the " 722 "crash backtrace, preprocessed source, and associated run script."; 723 724 // Suppress driver output and emit preprocessor output to temp file. 725 Mode = CPPMode; 726 CCGenDiagnostics = true; 727 728 // Save the original job command(s). 729 Command Cmd = FailingCommand; 730 731 // Keep track of whether we produce any errors while trying to produce 732 // preprocessed sources. 733 DiagnosticErrorTrap Trap(Diags); 734 735 // Suppress tool output. 736 C.initCompilationForDiagnostics(); 737 738 // Construct the list of inputs. 739 InputList Inputs; 740 BuildInputs(C.getDefaultToolChain(), C.getArgs(), Inputs); 741 742 for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) { 743 bool IgnoreInput = false; 744 745 // Ignore input from stdin or any inputs that cannot be preprocessed. 746 // Check type first as not all linker inputs have a value. 747 if (types::getPreprocessedType(it->first) == types::TY_INVALID) { 748 IgnoreInput = true; 749 } else if (!strcmp(it->second->getValue(), "-")) { 750 Diag(clang::diag::note_drv_command_failed_diag_msg) 751 << "Error generating preprocessed source(s) - " 752 "ignoring input from stdin."; 753 IgnoreInput = true; 754 } 755 756 if (IgnoreInput) { 757 it = Inputs.erase(it); 758 ie = Inputs.end(); 759 } else { 760 ++it; 761 } 762 } 763 764 if (Inputs.empty()) { 765 Diag(clang::diag::note_drv_command_failed_diag_msg) 766 << "Error generating preprocessed source(s) - " 767 "no preprocessable inputs."; 768 return; 769 } 770 771 // Don't attempt to generate preprocessed files if multiple -arch options are 772 // used, unless they're all duplicates. 773 llvm::StringSet<> ArchNames; 774 for (const Arg *A : C.getArgs()) { 775 if (A->getOption().matches(options::OPT_arch)) { 776 StringRef ArchName = A->getValue(); 777 ArchNames.insert(ArchName); 778 } 779 } 780 if (ArchNames.size() > 1) { 781 Diag(clang::diag::note_drv_command_failed_diag_msg) 782 << "Error generating preprocessed source(s) - cannot generate " 783 "preprocessed source with multiple -arch options."; 784 return; 785 } 786 787 // Construct the list of abstract actions to perform for this compilation. On 788 // Darwin OSes this uses the driver-driver and builds universal actions. 789 const ToolChain &TC = C.getDefaultToolChain(); 790 if (TC.getTriple().isOSBinFormatMachO()) 791 BuildUniversalActions(C, TC, Inputs); 792 else 793 BuildActions(C, C.getArgs(), Inputs, C.getActions()); 794 795 BuildJobs(C); 796 797 // If there were errors building the compilation, quit now. 798 if (Trap.hasErrorOccurred()) { 799 Diag(clang::diag::note_drv_command_failed_diag_msg) 800 << "Error generating preprocessed source(s)."; 801 return; 802 } 803 804 // Generate preprocessed output. 805 SmallVector<std::pair<int, const Command *>, 4> FailingCommands; 806 C.ExecuteJobs(C.getJobs(), FailingCommands); 807 808 // If any of the preprocessing commands failed, clean up and exit. 809 if (!FailingCommands.empty()) { 810 if (!isSaveTempsEnabled()) 811 C.CleanupFileList(C.getTempFiles(), true); 812 813 Diag(clang::diag::note_drv_command_failed_diag_msg) 814 << "Error generating preprocessed source(s)."; 815 return; 816 } 817 818 const ArgStringList &TempFiles = C.getTempFiles(); 819 if (TempFiles.empty()) { 820 Diag(clang::diag::note_drv_command_failed_diag_msg) 821 << "Error generating preprocessed source(s)."; 822 return; 823 } 824 825 Diag(clang::diag::note_drv_command_failed_diag_msg) 826 << "\n********************\n\n" 827 "PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:\n" 828 "Preprocessed source(s) and associated run script(s) are located at:"; 829 830 SmallString<128> VFS; 831 for (const char *TempFile : TempFiles) { 832 Diag(clang::diag::note_drv_command_failed_diag_msg) << TempFile; 833 if (StringRef(TempFile).endswith(".cache")) { 834 // In some cases (modules) we'll dump extra data to help with reproducing 835 // the crash into a directory next to the output. 836 VFS = llvm::sys::path::filename(TempFile); 837 llvm::sys::path::append(VFS, "vfs", "vfs.yaml"); 838 } 839 } 840 841 // Assume associated files are based off of the first temporary file. 842 CrashReportInfo CrashInfo(TempFiles[0], VFS); 843 844 std::string Script = CrashInfo.Filename.rsplit('.').first.str() + ".sh"; 845 std::error_code EC; 846 llvm::raw_fd_ostream ScriptOS(Script, EC, llvm::sys::fs::F_Excl); 847 if (EC) { 848 Diag(clang::diag::note_drv_command_failed_diag_msg) 849 << "Error generating run script: " + Script + " " + EC.message(); 850 } else { 851 ScriptOS << "# Crash reproducer for " << getClangFullVersion() << "\n" 852 << "# Driver args: "; 853 printArgList(ScriptOS, C.getInputArgs()); 854 ScriptOS << "# Original command: "; 855 Cmd.Print(ScriptOS, "\n", /*Quote=*/true); 856 Cmd.Print(ScriptOS, "\n", /*Quote=*/true, &CrashInfo); 857 Diag(clang::diag::note_drv_command_failed_diag_msg) << Script; 858 } 859 860 for (const auto &A : C.getArgs().filtered(options::OPT_frewrite_map_file, 861 options::OPT_frewrite_map_file_EQ)) 862 Diag(clang::diag::note_drv_command_failed_diag_msg) << A->getValue(); 863 864 Diag(clang::diag::note_drv_command_failed_diag_msg) 865 << "\n\n********************"; 866 } 867 868 void Driver::setUpResponseFiles(Compilation &C, Command &Cmd) { 869 // Since commandLineFitsWithinSystemLimits() may underestimate system's capacity 870 // if the tool does not support response files, there is a chance/ that things 871 // will just work without a response file, so we silently just skip it. 872 if (Cmd.getCreator().getResponseFilesSupport() == Tool::RF_None || 873 llvm::sys::commandLineFitsWithinSystemLimits(Cmd.getExecutable(), Cmd.getArguments())) 874 return; 875 876 std::string TmpName = GetTemporaryPath("response", "txt"); 877 Cmd.setResponseFile(C.addTempFile(C.getArgs().MakeArgString(TmpName))); 878 } 879 880 int Driver::ExecuteCompilation( 881 Compilation &C, 882 SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands) { 883 // Just print if -### was present. 884 if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) { 885 C.getJobs().Print(llvm::errs(), "\n", true); 886 return 0; 887 } 888 889 // If there were errors building the compilation, quit now. 890 if (Diags.hasErrorOccurred()) 891 return 1; 892 893 // Set up response file names for each command, if necessary 894 for (auto &Job : C.getJobs()) 895 setUpResponseFiles(C, Job); 896 897 C.ExecuteJobs(C.getJobs(), FailingCommands); 898 899 // Remove temp files. 900 C.CleanupFileList(C.getTempFiles()); 901 902 // If the command succeeded, we are done. 903 if (FailingCommands.empty()) 904 return 0; 905 906 // Otherwise, remove result files and print extra information about abnormal 907 // failures. 908 for (const auto &CmdPair : FailingCommands) { 909 int Res = CmdPair.first; 910 const Command *FailingCommand = CmdPair.second; 911 912 // Remove result files if we're not saving temps. 913 if (!isSaveTempsEnabled()) { 914 const JobAction *JA = cast<JobAction>(&FailingCommand->getSource()); 915 C.CleanupFileMap(C.getResultFiles(), JA, true); 916 917 // Failure result files are valid unless we crashed. 918 if (Res < 0) 919 C.CleanupFileMap(C.getFailureResultFiles(), JA, true); 920 } 921 922 // Print extra information about abnormal failures, if possible. 923 // 924 // This is ad-hoc, but we don't want to be excessively noisy. If the result 925 // status was 1, assume the command failed normally. In particular, if it 926 // was the compiler then assume it gave a reasonable error code. Failures 927 // in other tools are less common, and they generally have worse 928 // diagnostics, so always print the diagnostic there. 929 const Tool &FailingTool = FailingCommand->getCreator(); 930 931 if (!FailingCommand->getCreator().hasGoodDiagnostics() || Res != 1) { 932 // FIXME: See FIXME above regarding result code interpretation. 933 if (Res < 0) 934 Diag(clang::diag::err_drv_command_signalled) 935 << FailingTool.getShortName(); 936 else 937 Diag(clang::diag::err_drv_command_failed) << FailingTool.getShortName() 938 << Res; 939 } 940 } 941 return 0; 942 } 943 944 void Driver::PrintHelp(bool ShowHidden) const { 945 unsigned IncludedFlagsBitmask; 946 unsigned ExcludedFlagsBitmask; 947 std::tie(IncludedFlagsBitmask, ExcludedFlagsBitmask) = 948 getIncludeExcludeOptionFlagMasks(); 949 950 ExcludedFlagsBitmask |= options::NoDriverOption; 951 if (!ShowHidden) 952 ExcludedFlagsBitmask |= HelpHidden; 953 954 getOpts().PrintHelp(llvm::outs(), Name.c_str(), DriverTitle.c_str(), 955 IncludedFlagsBitmask, ExcludedFlagsBitmask); 956 } 957 958 void Driver::PrintVersion(const Compilation &C, raw_ostream &OS) const { 959 // FIXME: The following handlers should use a callback mechanism, we don't 960 // know what the client would like to do. 961 OS << getClangFullVersion() << '\n'; 962 const ToolChain &TC = C.getDefaultToolChain(); 963 OS << "Target: " << TC.getTripleString() << '\n'; 964 965 // Print the threading model. 966 if (Arg *A = C.getArgs().getLastArg(options::OPT_mthread_model)) { 967 // Don't print if the ToolChain would have barfed on it already 968 if (TC.isThreadModelSupported(A->getValue())) 969 OS << "Thread model: " << A->getValue(); 970 } else 971 OS << "Thread model: " << TC.getThreadModel(); 972 OS << '\n'; 973 974 // Print out the install directory. 975 OS << "InstalledDir: " << InstalledDir << '\n'; 976 } 977 978 /// PrintDiagnosticCategories - Implement the --print-diagnostic-categories 979 /// option. 980 static void PrintDiagnosticCategories(raw_ostream &OS) { 981 // Skip the empty category. 982 for (unsigned i = 1, max = DiagnosticIDs::getNumberOfCategories(); i != max; 983 ++i) 984 OS << i << ',' << DiagnosticIDs::getCategoryNameFromID(i) << '\n'; 985 } 986 987 bool Driver::HandleImmediateArgs(const Compilation &C) { 988 // The order these options are handled in gcc is all over the place, but we 989 // don't expect inconsistencies w.r.t. that to matter in practice. 990 991 if (C.getArgs().hasArg(options::OPT_dumpmachine)) { 992 llvm::outs() << C.getDefaultToolChain().getTripleString() << '\n'; 993 return false; 994 } 995 996 if (C.getArgs().hasArg(options::OPT_dumpversion)) { 997 // Since -dumpversion is only implemented for pedantic GCC compatibility, we 998 // return an answer which matches our definition of __VERSION__. 999 // 1000 // If we want to return a more correct answer some day, then we should 1001 // introduce a non-pedantically GCC compatible mode to Clang in which we 1002 // provide sensible definitions for -dumpversion, __VERSION__, etc. 1003 llvm::outs() << "4.2.1\n"; 1004 return false; 1005 } 1006 1007 if (C.getArgs().hasArg(options::OPT__print_diagnostic_categories)) { 1008 PrintDiagnosticCategories(llvm::outs()); 1009 return false; 1010 } 1011 1012 if (C.getArgs().hasArg(options::OPT_help) || 1013 C.getArgs().hasArg(options::OPT__help_hidden)) { 1014 PrintHelp(C.getArgs().hasArg(options::OPT__help_hidden)); 1015 return false; 1016 } 1017 1018 if (C.getArgs().hasArg(options::OPT__version)) { 1019 // Follow gcc behavior and use stdout for --version and stderr for -v. 1020 PrintVersion(C, llvm::outs()); 1021 return false; 1022 } 1023 1024 if (C.getArgs().hasArg(options::OPT_v) || 1025 C.getArgs().hasArg(options::OPT__HASH_HASH_HASH)) { 1026 PrintVersion(C, llvm::errs()); 1027 SuppressMissingInputWarning = true; 1028 } 1029 1030 const ToolChain &TC = C.getDefaultToolChain(); 1031 1032 if (C.getArgs().hasArg(options::OPT_v)) 1033 TC.printVerboseInfo(llvm::errs()); 1034 1035 if (C.getArgs().hasArg(options::OPT_print_search_dirs)) { 1036 llvm::outs() << "programs: ="; 1037 bool separator = false; 1038 for (const std::string &Path : TC.getProgramPaths()) { 1039 if (separator) 1040 llvm::outs() << ':'; 1041 llvm::outs() << Path; 1042 separator = true; 1043 } 1044 llvm::outs() << "\n"; 1045 llvm::outs() << "libraries: =" << ResourceDir; 1046 1047 StringRef sysroot = C.getSysRoot(); 1048 1049 for (const std::string &Path : TC.getFilePaths()) { 1050 // Always print a separator. ResourceDir was the first item shown. 1051 llvm::outs() << ':'; 1052 // Interpretation of leading '=' is needed only for NetBSD. 1053 if (Path[0] == '=') 1054 llvm::outs() << sysroot << Path.substr(1); 1055 else 1056 llvm::outs() << Path; 1057 } 1058 llvm::outs() << "\n"; 1059 return false; 1060 } 1061 1062 // FIXME: The following handlers should use a callback mechanism, we don't 1063 // know what the client would like to do. 1064 if (Arg *A = C.getArgs().getLastArg(options::OPT_print_file_name_EQ)) { 1065 llvm::outs() << GetFilePath(A->getValue(), TC) << "\n"; 1066 return false; 1067 } 1068 1069 if (Arg *A = C.getArgs().getLastArg(options::OPT_print_prog_name_EQ)) { 1070 llvm::outs() << GetProgramPath(A->getValue(), TC) << "\n"; 1071 return false; 1072 } 1073 1074 if (C.getArgs().hasArg(options::OPT_print_libgcc_file_name)) { 1075 ToolChain::RuntimeLibType RLT = TC.GetRuntimeLibType(C.getArgs()); 1076 switch (RLT) { 1077 case ToolChain::RLT_CompilerRT: 1078 llvm::outs() << TC.getCompilerRT(C.getArgs(), "builtins") << "\n"; 1079 break; 1080 case ToolChain::RLT_Libgcc: 1081 llvm::outs() << GetFilePath("libgcc.a", TC) << "\n"; 1082 break; 1083 } 1084 return false; 1085 } 1086 1087 if (C.getArgs().hasArg(options::OPT_print_multi_lib)) { 1088 for (const Multilib &Multilib : TC.getMultilibs()) 1089 llvm::outs() << Multilib << "\n"; 1090 return false; 1091 } 1092 1093 if (C.getArgs().hasArg(options::OPT_print_multi_directory)) { 1094 for (const Multilib &Multilib : TC.getMultilibs()) { 1095 if (Multilib.gccSuffix().empty()) 1096 llvm::outs() << ".\n"; 1097 else { 1098 StringRef Suffix(Multilib.gccSuffix()); 1099 assert(Suffix.front() == '/'); 1100 llvm::outs() << Suffix.substr(1) << "\n"; 1101 } 1102 } 1103 return false; 1104 } 1105 return true; 1106 } 1107 1108 // Display an action graph human-readably. Action A is the "sink" node 1109 // and latest-occuring action. Traversal is in pre-order, visiting the 1110 // inputs to each action before printing the action itself. 1111 static unsigned PrintActions1(const Compilation &C, Action *A, 1112 std::map<Action *, unsigned> &Ids) { 1113 if (Ids.count(A)) // A was already visited. 1114 return Ids[A]; 1115 1116 std::string str; 1117 llvm::raw_string_ostream os(str); 1118 1119 os << Action::getClassName(A->getKind()) << ", "; 1120 if (InputAction *IA = dyn_cast<InputAction>(A)) { 1121 os << "\"" << IA->getInputArg().getValue() << "\""; 1122 } else if (BindArchAction *BIA = dyn_cast<BindArchAction>(A)) { 1123 os << '"' << BIA->getArchName() << '"' << ", {" 1124 << PrintActions1(C, *BIA->input_begin(), Ids) << "}"; 1125 } else if (OffloadAction *OA = dyn_cast<OffloadAction>(A)) { 1126 bool IsFirst = true; 1127 OA->doOnEachDependence( 1128 [&](Action *A, const ToolChain *TC, const char *BoundArch) { 1129 // E.g. for two CUDA device dependences whose bound arch is sm_20 and 1130 // sm_35 this will generate: 1131 // "cuda-device" (nvptx64-nvidia-cuda:sm_20) {#ID}, "cuda-device" 1132 // (nvptx64-nvidia-cuda:sm_35) {#ID} 1133 if (!IsFirst) 1134 os << ", "; 1135 os << '"'; 1136 if (TC) 1137 os << A->getOffloadingKindPrefix(); 1138 else 1139 os << "host"; 1140 os << " ("; 1141 os << TC->getTriple().normalize(); 1142 1143 if (BoundArch) 1144 os << ":" << BoundArch; 1145 os << ")"; 1146 os << '"'; 1147 os << " {" << PrintActions1(C, A, Ids) << "}"; 1148 IsFirst = false; 1149 }); 1150 } else { 1151 const ActionList *AL = &A->getInputs(); 1152 1153 if (AL->size()) { 1154 const char *Prefix = "{"; 1155 for (Action *PreRequisite : *AL) { 1156 os << Prefix << PrintActions1(C, PreRequisite, Ids); 1157 Prefix = ", "; 1158 } 1159 os << "}"; 1160 } else 1161 os << "{}"; 1162 } 1163 1164 // Append offload info for all options other than the offloading action 1165 // itself (e.g. (cuda-device, sm_20) or (cuda-host)). 1166 std::string offload_str; 1167 llvm::raw_string_ostream offload_os(offload_str); 1168 if (!isa<OffloadAction>(A)) { 1169 auto S = A->getOffloadingKindPrefix(); 1170 if (!S.empty()) { 1171 offload_os << ", (" << S; 1172 if (A->getOffloadingArch()) 1173 offload_os << ", " << A->getOffloadingArch(); 1174 offload_os << ")"; 1175 } 1176 } 1177 1178 unsigned Id = Ids.size(); 1179 Ids[A] = Id; 1180 llvm::errs() << Id << ": " << os.str() << ", " 1181 << types::getTypeName(A->getType()) << offload_os.str() << "\n"; 1182 1183 return Id; 1184 } 1185 1186 // Print the action graphs in a compilation C. 1187 // For example "clang -c file1.c file2.c" is composed of two subgraphs. 1188 void Driver::PrintActions(const Compilation &C) const { 1189 std::map<Action *, unsigned> Ids; 1190 for (Action *A : C.getActions()) 1191 PrintActions1(C, A, Ids); 1192 } 1193 1194 /// \brief Check whether the given input tree contains any compilation or 1195 /// assembly actions. 1196 static bool ContainsCompileOrAssembleAction(const Action *A) { 1197 if (isa<CompileJobAction>(A) || isa<BackendJobAction>(A) || 1198 isa<AssembleJobAction>(A)) 1199 return true; 1200 1201 for (const Action *Input : A->inputs()) 1202 if (ContainsCompileOrAssembleAction(Input)) 1203 return true; 1204 1205 return false; 1206 } 1207 1208 void Driver::BuildUniversalActions(Compilation &C, const ToolChain &TC, 1209 const InputList &BAInputs) const { 1210 DerivedArgList &Args = C.getArgs(); 1211 ActionList &Actions = C.getActions(); 1212 llvm::PrettyStackTraceString CrashInfo("Building universal build actions"); 1213 // Collect the list of architectures. Duplicates are allowed, but should only 1214 // be handled once (in the order seen). 1215 llvm::StringSet<> ArchNames; 1216 SmallVector<const char *, 4> Archs; 1217 for (Arg *A : Args) { 1218 if (A->getOption().matches(options::OPT_arch)) { 1219 // Validate the option here; we don't save the type here because its 1220 // particular spelling may participate in other driver choices. 1221 llvm::Triple::ArchType Arch = 1222 tools::darwin::getArchTypeForMachOArchName(A->getValue()); 1223 if (Arch == llvm::Triple::UnknownArch) { 1224 Diag(clang::diag::err_drv_invalid_arch_name) << A->getAsString(Args); 1225 continue; 1226 } 1227 1228 A->claim(); 1229 if (ArchNames.insert(A->getValue()).second) 1230 Archs.push_back(A->getValue()); 1231 } 1232 } 1233 1234 // When there is no explicit arch for this platform, make sure we still bind 1235 // the architecture (to the default) so that -Xarch_ is handled correctly. 1236 if (!Archs.size()) 1237 Archs.push_back(Args.MakeArgString(TC.getDefaultUniversalArchName())); 1238 1239 ActionList SingleActions; 1240 BuildActions(C, Args, BAInputs, SingleActions); 1241 1242 // Add in arch bindings for every top level action, as well as lipo and 1243 // dsymutil steps if needed. 1244 for (Action* Act : SingleActions) { 1245 // Make sure we can lipo this kind of output. If not (and it is an actual 1246 // output) then we disallow, since we can't create an output file with the 1247 // right name without overwriting it. We could remove this oddity by just 1248 // changing the output names to include the arch, which would also fix 1249 // -save-temps. Compatibility wins for now. 1250 1251 if (Archs.size() > 1 && !types::canLipoType(Act->getType())) 1252 Diag(clang::diag::err_drv_invalid_output_with_multiple_archs) 1253 << types::getTypeName(Act->getType()); 1254 1255 ActionList Inputs; 1256 for (unsigned i = 0, e = Archs.size(); i != e; ++i) 1257 Inputs.push_back(C.MakeAction<BindArchAction>(Act, Archs[i])); 1258 1259 // Lipo if necessary, we do it this way because we need to set the arch flag 1260 // so that -Xarch_ gets overwritten. 1261 if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing) 1262 Actions.append(Inputs.begin(), Inputs.end()); 1263 else 1264 Actions.push_back(C.MakeAction<LipoJobAction>(Inputs, Act->getType())); 1265 1266 // Handle debug info queries. 1267 Arg *A = Args.getLastArg(options::OPT_g_Group); 1268 if (A && !A->getOption().matches(options::OPT_g0) && 1269 !A->getOption().matches(options::OPT_gstabs) && 1270 ContainsCompileOrAssembleAction(Actions.back())) { 1271 1272 // Add a 'dsymutil' step if necessary, when debug info is enabled and we 1273 // have a compile input. We need to run 'dsymutil' ourselves in such cases 1274 // because the debug info will refer to a temporary object file which 1275 // will be removed at the end of the compilation process. 1276 if (Act->getType() == types::TY_Image) { 1277 ActionList Inputs; 1278 Inputs.push_back(Actions.back()); 1279 Actions.pop_back(); 1280 Actions.push_back( 1281 C.MakeAction<DsymutilJobAction>(Inputs, types::TY_dSYM)); 1282 } 1283 1284 // Verify the debug info output. 1285 if (Args.hasArg(options::OPT_verify_debug_info)) { 1286 Action* LastAction = Actions.back(); 1287 Actions.pop_back(); 1288 Actions.push_back(C.MakeAction<VerifyDebugInfoJobAction>( 1289 LastAction, types::TY_Nothing)); 1290 } 1291 } 1292 } 1293 } 1294 1295 /// \brief Check that the file referenced by Value exists. If it doesn't, 1296 /// issue a diagnostic and return false. 1297 static bool DiagnoseInputExistence(const Driver &D, const DerivedArgList &Args, 1298 StringRef Value, types::ID Ty) { 1299 if (!D.getCheckInputsExist()) 1300 return true; 1301 1302 // stdin always exists. 1303 if (Value == "-") 1304 return true; 1305 1306 SmallString<64> Path(Value); 1307 if (Arg *WorkDir = Args.getLastArg(options::OPT_working_directory)) { 1308 if (!llvm::sys::path::is_absolute(Path)) { 1309 SmallString<64> Directory(WorkDir->getValue()); 1310 llvm::sys::path::append(Directory, Value); 1311 Path.assign(Directory); 1312 } 1313 } 1314 1315 if (llvm::sys::fs::exists(Twine(Path))) 1316 return true; 1317 1318 if (D.IsCLMode()) { 1319 if (!llvm::sys::path::is_absolute(Twine(Path)) && 1320 llvm::sys::Process::FindInEnvPath("LIB", Value)) 1321 return true; 1322 1323 if (Args.hasArg(options::OPT__SLASH_link) && Ty == types::TY_Object) { 1324 // Arguments to the /link flag might cause the linker to search for object 1325 // and library files in paths we don't know about. Don't error in such 1326 // cases. 1327 return true; 1328 } 1329 } 1330 1331 D.Diag(clang::diag::err_drv_no_such_file) << Path; 1332 return false; 1333 } 1334 1335 // Construct a the list of inputs and their types. 1336 void Driver::BuildInputs(const ToolChain &TC, DerivedArgList &Args, 1337 InputList &Inputs) const { 1338 // Track the current user specified (-x) input. We also explicitly track the 1339 // argument used to set the type; we only want to claim the type when we 1340 // actually use it, so we warn about unused -x arguments. 1341 types::ID InputType = types::TY_Nothing; 1342 Arg *InputTypeArg = nullptr; 1343 1344 // The last /TC or /TP option sets the input type to C or C++ globally. 1345 if (Arg *TCTP = Args.getLastArgNoClaim(options::OPT__SLASH_TC, 1346 options::OPT__SLASH_TP)) { 1347 InputTypeArg = TCTP; 1348 InputType = TCTP->getOption().matches(options::OPT__SLASH_TC) 1349 ? types::TY_C 1350 : types::TY_CXX; 1351 1352 arg_iterator it = 1353 Args.filtered_begin(options::OPT__SLASH_TC, options::OPT__SLASH_TP); 1354 const arg_iterator ie = Args.filtered_end(); 1355 Arg *Previous = *it++; 1356 bool ShowNote = false; 1357 while (it != ie) { 1358 Diag(clang::diag::warn_drv_overriding_flag_option) 1359 << Previous->getSpelling() << (*it)->getSpelling(); 1360 Previous = *it++; 1361 ShowNote = true; 1362 } 1363 if (ShowNote) 1364 Diag(clang::diag::note_drv_t_option_is_global); 1365 1366 // No driver mode exposes -x and /TC or /TP; we don't support mixing them. 1367 assert(!Args.hasArg(options::OPT_x) && "-x and /TC or /TP is not allowed"); 1368 } 1369 1370 for (Arg *A : Args) { 1371 if (A->getOption().getKind() == Option::InputClass) { 1372 const char *Value = A->getValue(); 1373 types::ID Ty = types::TY_INVALID; 1374 1375 // Infer the input type if necessary. 1376 if (InputType == types::TY_Nothing) { 1377 // If there was an explicit arg for this, claim it. 1378 if (InputTypeArg) 1379 InputTypeArg->claim(); 1380 1381 // stdin must be handled specially. 1382 if (memcmp(Value, "-", 2) == 0) { 1383 // If running with -E, treat as a C input (this changes the builtin 1384 // macros, for example). This may be overridden by -ObjC below. 1385 // 1386 // Otherwise emit an error but still use a valid type to avoid 1387 // spurious errors (e.g., no inputs). 1388 if (!Args.hasArgNoClaim(options::OPT_E) && !CCCIsCPP()) 1389 Diag(IsCLMode() ? clang::diag::err_drv_unknown_stdin_type_clang_cl 1390 : clang::diag::err_drv_unknown_stdin_type); 1391 Ty = types::TY_C; 1392 } else { 1393 // Otherwise lookup by extension. 1394 // Fallback is C if invoked as C preprocessor or Object otherwise. 1395 // We use a host hook here because Darwin at least has its own 1396 // idea of what .s is. 1397 if (const char *Ext = strrchr(Value, '.')) 1398 Ty = TC.LookupTypeForExtension(Ext + 1); 1399 1400 if (Ty == types::TY_INVALID) { 1401 if (CCCIsCPP()) 1402 Ty = types::TY_C; 1403 else 1404 Ty = types::TY_Object; 1405 } 1406 1407 // If the driver is invoked as C++ compiler (like clang++ or c++) it 1408 // should autodetect some input files as C++ for g++ compatibility. 1409 if (CCCIsCXX()) { 1410 types::ID OldTy = Ty; 1411 Ty = types::lookupCXXTypeForCType(Ty); 1412 1413 if (Ty != OldTy) 1414 Diag(clang::diag::warn_drv_treating_input_as_cxx) 1415 << getTypeName(OldTy) << getTypeName(Ty); 1416 } 1417 } 1418 1419 // -ObjC and -ObjC++ override the default language, but only for "source 1420 // files". We just treat everything that isn't a linker input as a 1421 // source file. 1422 // 1423 // FIXME: Clean this up if we move the phase sequence into the type. 1424 if (Ty != types::TY_Object) { 1425 if (Args.hasArg(options::OPT_ObjC)) 1426 Ty = types::TY_ObjC; 1427 else if (Args.hasArg(options::OPT_ObjCXX)) 1428 Ty = types::TY_ObjCXX; 1429 } 1430 } else { 1431 assert(InputTypeArg && "InputType set w/o InputTypeArg"); 1432 if (!InputTypeArg->getOption().matches(options::OPT_x)) { 1433 // If emulating cl.exe, make sure that /TC and /TP don't affect input 1434 // object files. 1435 const char *Ext = strrchr(Value, '.'); 1436 if (Ext && TC.LookupTypeForExtension(Ext + 1) == types::TY_Object) 1437 Ty = types::TY_Object; 1438 } 1439 if (Ty == types::TY_INVALID) { 1440 Ty = InputType; 1441 InputTypeArg->claim(); 1442 } 1443 } 1444 1445 if (DiagnoseInputExistence(*this, Args, Value, Ty)) 1446 Inputs.push_back(std::make_pair(Ty, A)); 1447 1448 } else if (A->getOption().matches(options::OPT__SLASH_Tc)) { 1449 StringRef Value = A->getValue(); 1450 if (DiagnoseInputExistence(*this, Args, Value, types::TY_C)) { 1451 Arg *InputArg = MakeInputArg(Args, Opts, A->getValue()); 1452 Inputs.push_back(std::make_pair(types::TY_C, InputArg)); 1453 } 1454 A->claim(); 1455 } else if (A->getOption().matches(options::OPT__SLASH_Tp)) { 1456 StringRef Value = A->getValue(); 1457 if (DiagnoseInputExistence(*this, Args, Value, types::TY_CXX)) { 1458 Arg *InputArg = MakeInputArg(Args, Opts, A->getValue()); 1459 Inputs.push_back(std::make_pair(types::TY_CXX, InputArg)); 1460 } 1461 A->claim(); 1462 } else if (A->getOption().hasFlag(options::LinkerInput)) { 1463 // Just treat as object type, we could make a special type for this if 1464 // necessary. 1465 Inputs.push_back(std::make_pair(types::TY_Object, A)); 1466 1467 } else if (A->getOption().matches(options::OPT_x)) { 1468 InputTypeArg = A; 1469 InputType = types::lookupTypeForTypeSpecifier(A->getValue()); 1470 A->claim(); 1471 1472 // Follow gcc behavior and treat as linker input for invalid -x 1473 // options. Its not clear why we shouldn't just revert to unknown; but 1474 // this isn't very important, we might as well be bug compatible. 1475 if (!InputType) { 1476 Diag(clang::diag::err_drv_unknown_language) << A->getValue(); 1477 InputType = types::TY_Object; 1478 } 1479 } 1480 } 1481 if (CCCIsCPP() && Inputs.empty()) { 1482 // If called as standalone preprocessor, stdin is processed 1483 // if no other input is present. 1484 Arg *A = MakeInputArg(Args, Opts, "-"); 1485 Inputs.push_back(std::make_pair(types::TY_C, A)); 1486 } 1487 } 1488 1489 namespace { 1490 /// Provides a convenient interface for different programming models to generate 1491 /// the required device actions. 1492 class OffloadingActionBuilder final { 1493 /// Flag used to trace errors in the builder. 1494 bool IsValid = false; 1495 1496 /// The compilation that is using this builder. 1497 Compilation &C; 1498 1499 /// Map between an input argument and the offload kinds used to process it. 1500 std::map<const Arg *, unsigned> InputArgToOffloadKindMap; 1501 1502 /// Builder interface. It doesn't build anything or keep any state. 1503 class DeviceActionBuilder { 1504 public: 1505 typedef llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PhasesTy; 1506 1507 enum ActionBuilderReturnCode { 1508 // The builder acted successfully on the current action. 1509 ABRT_Success, 1510 // The builder didn't have to act on the current action. 1511 ABRT_Inactive, 1512 // The builder was successful and requested the host action to not be 1513 // generated. 1514 ABRT_Ignore_Host, 1515 }; 1516 1517 protected: 1518 /// Compilation associated with this builder. 1519 Compilation &C; 1520 1521 /// Tool chains associated with this builder. The same programming 1522 /// model may have associated one or more tool chains. 1523 SmallVector<const ToolChain *, 2> ToolChains; 1524 1525 /// The derived arguments associated with this builder. 1526 DerivedArgList &Args; 1527 1528 /// The inputs associated with this builder. 1529 const Driver::InputList &Inputs; 1530 1531 /// The associated offload kind. 1532 Action::OffloadKind AssociatedOffloadKind = Action::OFK_None; 1533 1534 public: 1535 DeviceActionBuilder(Compilation &C, DerivedArgList &Args, 1536 const Driver::InputList &Inputs, 1537 Action::OffloadKind AssociatedOffloadKind) 1538 : C(C), Args(Args), Inputs(Inputs), 1539 AssociatedOffloadKind(AssociatedOffloadKind) {} 1540 virtual ~DeviceActionBuilder() {} 1541 1542 /// Fill up the array \a DA with all the device dependences that should be 1543 /// added to the provided host action \a HostAction. By default it is 1544 /// inactive. 1545 virtual ActionBuilderReturnCode 1546 getDeviceDependences(OffloadAction::DeviceDependences &DA, 1547 phases::ID CurPhase, phases::ID FinalPhase, 1548 PhasesTy &Phases) { 1549 return ABRT_Inactive; 1550 } 1551 1552 /// Update the state to include the provided host action \a HostAction as a 1553 /// dependency of the current device action. By default it is inactive. 1554 virtual ActionBuilderReturnCode addDeviceDepences(Action *HostAction) { 1555 return ABRT_Inactive; 1556 } 1557 1558 /// Append top level actions generated by the builder. Return true if errors 1559 /// were found. 1560 virtual void appendTopLevelActions(ActionList &AL) {} 1561 1562 /// Append linker actions generated by the builder. Return true if errors 1563 /// were found. 1564 virtual void appendLinkDependences(OffloadAction::DeviceDependences &DA) {} 1565 1566 /// Initialize the builder. Return true if any initialization errors are 1567 /// found. 1568 virtual bool initialize() { return false; } 1569 1570 /// Return true if the builder can use bundling/unbundling. 1571 virtual bool canUseBundlerUnbundler() const { return false; } 1572 1573 /// Return true if this builder is valid. We have a valid builder if we have 1574 /// associated device tool chains. 1575 bool isValid() { return !ToolChains.empty(); } 1576 1577 /// Return the associated offload kind. 1578 Action::OffloadKind getAssociatedOffloadKind() { 1579 return AssociatedOffloadKind; 1580 } 1581 }; 1582 1583 /// \brief CUDA action builder. It injects device code in the host backend 1584 /// action. 1585 class CudaActionBuilder final : public DeviceActionBuilder { 1586 /// Flags to signal if the user requested host-only or device-only 1587 /// compilation. 1588 bool CompileHostOnly = false; 1589 bool CompileDeviceOnly = false; 1590 1591 /// List of GPU architectures to use in this compilation. 1592 SmallVector<CudaArch, 4> GpuArchList; 1593 1594 /// The CUDA actions for the current input. 1595 ActionList CudaDeviceActions; 1596 1597 /// The CUDA fat binary if it was generated for the current input. 1598 Action *CudaFatBinary = nullptr; 1599 1600 /// Flag that is set to true if this builder acted on the current input. 1601 bool IsActive = false; 1602 1603 public: 1604 CudaActionBuilder(Compilation &C, DerivedArgList &Args, 1605 const Driver::InputList &Inputs) 1606 : DeviceActionBuilder(C, Args, Inputs, Action::OFK_Cuda) {} 1607 1608 ActionBuilderReturnCode 1609 getDeviceDependences(OffloadAction::DeviceDependences &DA, 1610 phases::ID CurPhase, phases::ID FinalPhase, 1611 PhasesTy &Phases) override { 1612 if (!IsActive) 1613 return ABRT_Inactive; 1614 1615 // If we don't have more CUDA actions, we don't have any dependences to 1616 // create for the host. 1617 if (CudaDeviceActions.empty()) 1618 return ABRT_Success; 1619 1620 assert(CudaDeviceActions.size() == GpuArchList.size() && 1621 "Expecting one action per GPU architecture."); 1622 assert(!CompileHostOnly && 1623 "Not expecting CUDA actions in host-only compilation."); 1624 1625 // If we are generating code for the device or we are in a backend phase, 1626 // we attempt to generate the fat binary. We compile each arch to ptx and 1627 // assemble to cubin, then feed the cubin *and* the ptx into a device 1628 // "link" action, which uses fatbinary to combine these cubins into one 1629 // fatbin. The fatbin is then an input to the host action if not in 1630 // device-only mode. 1631 if (CompileDeviceOnly || CurPhase == phases::Backend) { 1632 ActionList DeviceActions; 1633 for (unsigned I = 0, E = GpuArchList.size(); I != E; ++I) { 1634 // Produce the device action from the current phase up to the assemble 1635 // phase. 1636 for (auto Ph : Phases) { 1637 // Skip the phases that were already dealt with. 1638 if (Ph < CurPhase) 1639 continue; 1640 // We have to be consistent with the host final phase. 1641 if (Ph > FinalPhase) 1642 break; 1643 1644 CudaDeviceActions[I] = C.getDriver().ConstructPhaseAction( 1645 C, Args, Ph, CudaDeviceActions[I]); 1646 1647 if (Ph == phases::Assemble) 1648 break; 1649 } 1650 1651 // If we didn't reach the assemble phase, we can't generate the fat 1652 // binary. We don't need to generate the fat binary if we are not in 1653 // device-only mode. 1654 if (!isa<AssembleJobAction>(CudaDeviceActions[I]) || 1655 CompileDeviceOnly) 1656 continue; 1657 1658 Action *AssembleAction = CudaDeviceActions[I]; 1659 assert(AssembleAction->getType() == types::TY_Object); 1660 assert(AssembleAction->getInputs().size() == 1); 1661 1662 Action *BackendAction = AssembleAction->getInputs()[0]; 1663 assert(BackendAction->getType() == types::TY_PP_Asm); 1664 1665 for (auto &A : {AssembleAction, BackendAction}) { 1666 OffloadAction::DeviceDependences DDep; 1667 DDep.add(*A, *ToolChains.front(), CudaArchToString(GpuArchList[I]), 1668 Action::OFK_Cuda); 1669 DeviceActions.push_back( 1670 C.MakeAction<OffloadAction>(DDep, A->getType())); 1671 } 1672 } 1673 1674 // We generate the fat binary if we have device input actions. 1675 if (!DeviceActions.empty()) { 1676 CudaFatBinary = 1677 C.MakeAction<LinkJobAction>(DeviceActions, types::TY_CUDA_FATBIN); 1678 1679 if (!CompileDeviceOnly) { 1680 DA.add(*CudaFatBinary, *ToolChains.front(), /*BoundArch=*/nullptr, 1681 Action::OFK_Cuda); 1682 // Clear the fat binary, it is already a dependence to an host 1683 // action. 1684 CudaFatBinary = nullptr; 1685 } 1686 1687 // Remove the CUDA actions as they are already connected to an host 1688 // action or fat binary. 1689 CudaDeviceActions.clear(); 1690 } 1691 1692 // We avoid creating host action in device-only mode. 1693 return CompileDeviceOnly ? ABRT_Ignore_Host : ABRT_Success; 1694 } else if (CurPhase > phases::Backend) { 1695 // If we are past the backend phase and still have a device action, we 1696 // don't have to do anything as this action is already a device 1697 // top-level action. 1698 return ABRT_Success; 1699 } 1700 1701 assert(CurPhase < phases::Backend && "Generating single CUDA " 1702 "instructions should only occur " 1703 "before the backend phase!"); 1704 1705 // By default, we produce an action for each device arch. 1706 for (Action *&A : CudaDeviceActions) 1707 A = C.getDriver().ConstructPhaseAction(C, Args, CurPhase, A); 1708 1709 return ABRT_Success; 1710 } 1711 1712 ActionBuilderReturnCode addDeviceDepences(Action *HostAction) override { 1713 // While generating code for CUDA, we only depend on the host input action 1714 // to trigger the creation of all the CUDA device actions. 1715 1716 // If we are dealing with an input action, replicate it for each GPU 1717 // architecture. If we are in host-only mode we return 'success' so that 1718 // the host uses the CUDA offload kind. 1719 if (auto *IA = dyn_cast<InputAction>(HostAction)) { 1720 assert(!GpuArchList.empty() && 1721 "We should have at least one GPU architecture."); 1722 1723 // If the host input is not CUDA, we don't need to bother about this 1724 // input. 1725 if (IA->getType() != types::TY_CUDA) { 1726 // The builder will ignore this input. 1727 IsActive = false; 1728 return ABRT_Inactive; 1729 } 1730 1731 // Set the flag to true, so that the builder acts on the current input. 1732 IsActive = true; 1733 1734 if (CompileHostOnly) 1735 return ABRT_Success; 1736 1737 // Replicate inputs for each GPU architecture. 1738 for (unsigned I = 0, E = GpuArchList.size(); I != E; ++I) 1739 CudaDeviceActions.push_back(C.MakeAction<InputAction>( 1740 IA->getInputArg(), types::TY_CUDA_DEVICE)); 1741 1742 return ABRT_Success; 1743 } 1744 1745 return IsActive ? ABRT_Success : ABRT_Inactive; 1746 } 1747 1748 void appendTopLevelActions(ActionList &AL) override { 1749 // Utility to append actions to the top level list. 1750 auto AddTopLevel = [&](Action *A, CudaArch BoundArch) { 1751 OffloadAction::DeviceDependences Dep; 1752 Dep.add(*A, *ToolChains.front(), CudaArchToString(BoundArch), 1753 Action::OFK_Cuda); 1754 AL.push_back(C.MakeAction<OffloadAction>(Dep, A->getType())); 1755 }; 1756 1757 // If we have a fat binary, add it to the list. 1758 if (CudaFatBinary) { 1759 AddTopLevel(CudaFatBinary, CudaArch::UNKNOWN); 1760 CudaDeviceActions.clear(); 1761 CudaFatBinary = nullptr; 1762 return; 1763 } 1764 1765 if (CudaDeviceActions.empty()) 1766 return; 1767 1768 // If we have CUDA actions at this point, that's because we have a have 1769 // partial compilation, so we should have an action for each GPU 1770 // architecture. 1771 assert(CudaDeviceActions.size() == GpuArchList.size() && 1772 "Expecting one action per GPU architecture."); 1773 assert(ToolChains.size() == 1 && 1774 "Expecting to have a sing CUDA toolchain."); 1775 for (unsigned I = 0, E = GpuArchList.size(); I != E; ++I) 1776 AddTopLevel(CudaDeviceActions[I], GpuArchList[I]); 1777 1778 CudaDeviceActions.clear(); 1779 } 1780 1781 bool initialize() override { 1782 // We don't need to support CUDA. 1783 if (!C.hasOffloadToolChain<Action::OFK_Cuda>()) 1784 return false; 1785 1786 const ToolChain *HostTC = C.getSingleOffloadToolChain<Action::OFK_Host>(); 1787 assert(HostTC && "No toolchain for host compilation."); 1788 if (HostTC->getTriple().isNVPTX()) { 1789 // We do not support targeting NVPTX for host compilation. Throw 1790 // an error and abort pipeline construction early so we don't trip 1791 // asserts that assume device-side compilation. 1792 C.getDriver().Diag(diag::err_drv_cuda_nvptx_host); 1793 return true; 1794 } 1795 1796 ToolChains.push_back(C.getSingleOffloadToolChain<Action::OFK_Cuda>()); 1797 1798 Arg *PartialCompilationArg = Args.getLastArg( 1799 options::OPT_cuda_host_only, options::OPT_cuda_device_only, 1800 options::OPT_cuda_compile_host_device); 1801 CompileHostOnly = PartialCompilationArg && 1802 PartialCompilationArg->getOption().matches( 1803 options::OPT_cuda_host_only); 1804 CompileDeviceOnly = PartialCompilationArg && 1805 PartialCompilationArg->getOption().matches( 1806 options::OPT_cuda_device_only); 1807 1808 // Collect all cuda_gpu_arch parameters, removing duplicates. 1809 llvm::SmallSet<CudaArch, 4> GpuArchs; 1810 bool Error = false; 1811 for (Arg *A : Args) { 1812 if (!A->getOption().matches(options::OPT_cuda_gpu_arch_EQ)) 1813 continue; 1814 A->claim(); 1815 1816 const auto &ArchStr = A->getValue(); 1817 CudaArch Arch = StringToCudaArch(ArchStr); 1818 if (Arch == CudaArch::UNKNOWN) { 1819 C.getDriver().Diag(clang::diag::err_drv_cuda_bad_gpu_arch) << ArchStr; 1820 Error = true; 1821 } else if (GpuArchs.insert(Arch).second) 1822 GpuArchList.push_back(Arch); 1823 } 1824 1825 // Default to sm_20 which is the lowest common denominator for supported 1826 // GPUs. 1827 // sm_20 code should work correctly, if suboptimally, on all newer GPUs. 1828 if (GpuArchList.empty()) 1829 GpuArchList.push_back(CudaArch::SM_20); 1830 1831 return Error; 1832 } 1833 }; 1834 1835 /// OpenMP action builder. The host bitcode is passed to the device frontend 1836 /// and all the device linked images are passed to the host link phase. 1837 class OpenMPActionBuilder final : public DeviceActionBuilder { 1838 /// The OpenMP actions for the current input. 1839 ActionList OpenMPDeviceActions; 1840 1841 /// The linker inputs obtained for each toolchain. 1842 SmallVector<ActionList, 8> DeviceLinkerInputs; 1843 1844 public: 1845 OpenMPActionBuilder(Compilation &C, DerivedArgList &Args, 1846 const Driver::InputList &Inputs) 1847 : DeviceActionBuilder(C, Args, Inputs, Action::OFK_OpenMP) {} 1848 1849 ActionBuilderReturnCode 1850 getDeviceDependences(OffloadAction::DeviceDependences &DA, 1851 phases::ID CurPhase, phases::ID FinalPhase, 1852 PhasesTy &Phases) override { 1853 1854 // We should always have an action for each input. 1855 assert(OpenMPDeviceActions.size() == ToolChains.size() && 1856 "Number of OpenMP actions and toolchains do not match."); 1857 1858 // The host only depends on device action in the linking phase, when all 1859 // the device images have to be embedded in the host image. 1860 if (CurPhase == phases::Link) { 1861 assert(ToolChains.size() == DeviceLinkerInputs.size() && 1862 "Toolchains and linker inputs sizes do not match."); 1863 auto LI = DeviceLinkerInputs.begin(); 1864 for (auto *A : OpenMPDeviceActions) { 1865 LI->push_back(A); 1866 ++LI; 1867 } 1868 1869 // We passed the device action as a host dependence, so we don't need to 1870 // do anything else with them. 1871 OpenMPDeviceActions.clear(); 1872 return ABRT_Success; 1873 } 1874 1875 // By default, we produce an action for each device arch. 1876 for (Action *&A : OpenMPDeviceActions) 1877 A = C.getDriver().ConstructPhaseAction(C, Args, CurPhase, A); 1878 1879 return ABRT_Success; 1880 } 1881 1882 ActionBuilderReturnCode addDeviceDepences(Action *HostAction) override { 1883 1884 // If this is an input action replicate it for each OpenMP toolchain. 1885 if (auto *IA = dyn_cast<InputAction>(HostAction)) { 1886 OpenMPDeviceActions.clear(); 1887 for (unsigned I = 0; I < ToolChains.size(); ++I) 1888 OpenMPDeviceActions.push_back( 1889 C.MakeAction<InputAction>(IA->getInputArg(), IA->getType())); 1890 return ABRT_Success; 1891 } 1892 1893 // If this is an unbundling action use it as is for each OpenMP toolchain. 1894 if (auto *UA = dyn_cast<OffloadUnbundlingJobAction>(HostAction)) { 1895 OpenMPDeviceActions.clear(); 1896 for (unsigned I = 0; I < ToolChains.size(); ++I) { 1897 OpenMPDeviceActions.push_back(UA); 1898 UA->registerDependentActionInfo( 1899 ToolChains[I], /*BoundArch=*/StringRef(), Action::OFK_OpenMP); 1900 } 1901 return ABRT_Success; 1902 } 1903 1904 // When generating code for OpenMP we use the host compile phase result as 1905 // a dependence to the device compile phase so that it can learn what 1906 // declarations should be emitted. However, this is not the only use for 1907 // the host action, so we prevent it from being collapsed. 1908 if (isa<CompileJobAction>(HostAction)) { 1909 HostAction->setCannotBeCollapsedWithNextDependentAction(); 1910 assert(ToolChains.size() == OpenMPDeviceActions.size() && 1911 "Toolchains and device action sizes do not match."); 1912 OffloadAction::HostDependence HDep( 1913 *HostAction, *C.getSingleOffloadToolChain<Action::OFK_Host>(), 1914 /*BoundArch=*/nullptr, Action::OFK_OpenMP); 1915 auto TC = ToolChains.begin(); 1916 for (Action *&A : OpenMPDeviceActions) { 1917 assert(isa<CompileJobAction>(A)); 1918 OffloadAction::DeviceDependences DDep; 1919 DDep.add(*A, **TC, /*BoundArch=*/nullptr, Action::OFK_OpenMP); 1920 A = C.MakeAction<OffloadAction>(HDep, DDep); 1921 ++TC; 1922 } 1923 } 1924 return ABRT_Success; 1925 } 1926 1927 void appendTopLevelActions(ActionList &AL) override { 1928 if (OpenMPDeviceActions.empty()) 1929 return; 1930 1931 // We should always have an action for each input. 1932 assert(OpenMPDeviceActions.size() == ToolChains.size() && 1933 "Number of OpenMP actions and toolchains do not match."); 1934 1935 // Append all device actions followed by the proper offload action. 1936 auto TI = ToolChains.begin(); 1937 for (auto *A : OpenMPDeviceActions) { 1938 OffloadAction::DeviceDependences Dep; 1939 Dep.add(*A, **TI, /*BoundArch=*/nullptr, Action::OFK_OpenMP); 1940 AL.push_back(C.MakeAction<OffloadAction>(Dep, A->getType())); 1941 ++TI; 1942 } 1943 // We no longer need the action stored in this builder. 1944 OpenMPDeviceActions.clear(); 1945 } 1946 1947 void appendLinkDependences(OffloadAction::DeviceDependences &DA) override { 1948 assert(ToolChains.size() == DeviceLinkerInputs.size() && 1949 "Toolchains and linker inputs sizes do not match."); 1950 1951 // Append a new link action for each device. 1952 auto TC = ToolChains.begin(); 1953 for (auto &LI : DeviceLinkerInputs) { 1954 auto *DeviceLinkAction = 1955 C.MakeAction<LinkJobAction>(LI, types::TY_Image); 1956 DA.add(*DeviceLinkAction, **TC, /*BoundArch=*/nullptr, 1957 Action::OFK_OpenMP); 1958 ++TC; 1959 } 1960 } 1961 1962 bool initialize() override { 1963 // Get the OpenMP toolchains. If we don't get any, the action builder will 1964 // know there is nothing to do related to OpenMP offloading. 1965 auto OpenMPTCRange = C.getOffloadToolChains<Action::OFK_OpenMP>(); 1966 for (auto TI = OpenMPTCRange.first, TE = OpenMPTCRange.second; TI != TE; 1967 ++TI) 1968 ToolChains.push_back(TI->second); 1969 1970 DeviceLinkerInputs.resize(ToolChains.size()); 1971 return false; 1972 } 1973 1974 bool canUseBundlerUnbundler() const override { 1975 // OpenMP should use bundled files whenever possible. 1976 return true; 1977 } 1978 }; 1979 1980 /// 1981 /// TODO: Add the implementation for other specialized builders here. 1982 /// 1983 1984 /// Specialized builders being used by this offloading action builder. 1985 SmallVector<DeviceActionBuilder *, 4> SpecializedBuilders; 1986 1987 /// Flag set to true if all valid builders allow file bundling/unbundling. 1988 bool CanUseBundler; 1989 1990 public: 1991 OffloadingActionBuilder(Compilation &C, DerivedArgList &Args, 1992 const Driver::InputList &Inputs) 1993 : C(C) { 1994 // Create a specialized builder for each device toolchain. 1995 1996 IsValid = true; 1997 1998 // Create a specialized builder for CUDA. 1999 SpecializedBuilders.push_back(new CudaActionBuilder(C, Args, Inputs)); 2000 2001 // Create a specialized builder for OpenMP. 2002 SpecializedBuilders.push_back(new OpenMPActionBuilder(C, Args, Inputs)); 2003 2004 // 2005 // TODO: Build other specialized builders here. 2006 // 2007 2008 // Initialize all the builders, keeping track of errors. If all valid 2009 // builders agree that we can use bundling, set the flag to true. 2010 unsigned ValidBuilders = 0u; 2011 unsigned ValidBuildersSupportingBundling = 0u; 2012 for (auto *SB : SpecializedBuilders) { 2013 IsValid = IsValid && !SB->initialize(); 2014 2015 // Update the counters if the builder is valid. 2016 if (SB->isValid()) { 2017 ++ValidBuilders; 2018 if (SB->canUseBundlerUnbundler()) 2019 ++ValidBuildersSupportingBundling; 2020 } 2021 } 2022 CanUseBundler = 2023 ValidBuilders && ValidBuilders == ValidBuildersSupportingBundling; 2024 } 2025 2026 ~OffloadingActionBuilder() { 2027 for (auto *SB : SpecializedBuilders) 2028 delete SB; 2029 } 2030 2031 /// Generate an action that adds device dependences (if any) to a host action. 2032 /// If no device dependence actions exist, just return the host action \a 2033 /// HostAction. If an error is found or if no builder requires the host action 2034 /// to be generated, return nullptr. 2035 Action * 2036 addDeviceDependencesToHostAction(Action *HostAction, const Arg *InputArg, 2037 phases::ID CurPhase, phases::ID FinalPhase, 2038 DeviceActionBuilder::PhasesTy &Phases) { 2039 if (!IsValid) 2040 return nullptr; 2041 2042 if (SpecializedBuilders.empty()) 2043 return HostAction; 2044 2045 assert(HostAction && "Invalid host action!"); 2046 2047 OffloadAction::DeviceDependences DDeps; 2048 // Check if all the programming models agree we should not emit the host 2049 // action. Also, keep track of the offloading kinds employed. 2050 auto &OffloadKind = InputArgToOffloadKindMap[InputArg]; 2051 unsigned InactiveBuilders = 0u; 2052 unsigned IgnoringBuilders = 0u; 2053 for (auto *SB : SpecializedBuilders) { 2054 if (!SB->isValid()) { 2055 ++InactiveBuilders; 2056 continue; 2057 } 2058 2059 auto RetCode = 2060 SB->getDeviceDependences(DDeps, CurPhase, FinalPhase, Phases); 2061 2062 // If the builder explicitly says the host action should be ignored, 2063 // we need to increment the variable that tracks the builders that request 2064 // the host object to be ignored. 2065 if (RetCode == DeviceActionBuilder::ABRT_Ignore_Host) 2066 ++IgnoringBuilders; 2067 2068 // Unless the builder was inactive for this action, we have to record the 2069 // offload kind because the host will have to use it. 2070 if (RetCode != DeviceActionBuilder::ABRT_Inactive) 2071 OffloadKind |= SB->getAssociatedOffloadKind(); 2072 } 2073 2074 // If all builders agree that the host object should be ignored, just return 2075 // nullptr. 2076 if (IgnoringBuilders && 2077 SpecializedBuilders.size() == (InactiveBuilders + IgnoringBuilders)) 2078 return nullptr; 2079 2080 if (DDeps.getActions().empty()) 2081 return HostAction; 2082 2083 // We have dependences we need to bundle together. We use an offload action 2084 // for that. 2085 OffloadAction::HostDependence HDep( 2086 *HostAction, *C.getSingleOffloadToolChain<Action::OFK_Host>(), 2087 /*BoundArch=*/nullptr, DDeps); 2088 return C.MakeAction<OffloadAction>(HDep, DDeps); 2089 } 2090 2091 /// Generate an action that adds a host dependence to a device action. The 2092 /// results will be kept in this action builder. Return true if an error was 2093 /// found. 2094 bool addHostDependenceToDeviceActions(Action *&HostAction, 2095 const Arg *InputArg) { 2096 if (!IsValid) 2097 return true; 2098 2099 // If we are supporting bundling/unbundling and the current action is an 2100 // input action of non-source file, we replace the host action by the 2101 // unbundling action. The bundler tool has the logic to detect if an input 2102 // is a bundle or not and if the input is not a bundle it assumes it is a 2103 // host file. Therefore it is safe to create an unbundling action even if 2104 // the input is not a bundle. 2105 if (CanUseBundler && isa<InputAction>(HostAction) && 2106 InputArg->getOption().getKind() == llvm::opt::Option::InputClass && 2107 !types::isSrcFile(HostAction->getType())) { 2108 auto UnbundlingHostAction = 2109 C.MakeAction<OffloadUnbundlingJobAction>(HostAction); 2110 UnbundlingHostAction->registerDependentActionInfo( 2111 C.getSingleOffloadToolChain<Action::OFK_Host>(), 2112 /*BoundArch=*/StringRef(), Action::OFK_Host); 2113 HostAction = UnbundlingHostAction; 2114 } 2115 2116 assert(HostAction && "Invalid host action!"); 2117 2118 // Register the offload kinds that are used. 2119 auto &OffloadKind = InputArgToOffloadKindMap[InputArg]; 2120 for (auto *SB : SpecializedBuilders) { 2121 if (!SB->isValid()) 2122 continue; 2123 2124 auto RetCode = SB->addDeviceDepences(HostAction); 2125 2126 // Host dependences for device actions are not compatible with that same 2127 // action being ignored. 2128 assert(RetCode != DeviceActionBuilder::ABRT_Ignore_Host && 2129 "Host dependence not expected to be ignored.!"); 2130 2131 // Unless the builder was inactive for this action, we have to record the 2132 // offload kind because the host will have to use it. 2133 if (RetCode != DeviceActionBuilder::ABRT_Inactive) 2134 OffloadKind |= SB->getAssociatedOffloadKind(); 2135 } 2136 2137 return false; 2138 } 2139 2140 /// Add the offloading top level actions to the provided action list. This 2141 /// function can replace the host action by a bundling action if the 2142 /// programming models allow it. 2143 bool appendTopLevelActions(ActionList &AL, Action *HostAction, 2144 const Arg *InputArg) { 2145 // Get the device actions to be appended. 2146 ActionList OffloadAL; 2147 for (auto *SB : SpecializedBuilders) { 2148 if (!SB->isValid()) 2149 continue; 2150 SB->appendTopLevelActions(OffloadAL); 2151 } 2152 2153 // If we can use the bundler, replace the host action by the bundling one in 2154 // the resulting list. Otherwise, just append the device actions. 2155 if (CanUseBundler && !OffloadAL.empty()) { 2156 // Add the host action to the list in order to create the bundling action. 2157 OffloadAL.push_back(HostAction); 2158 2159 // We expect that the host action was just appended to the action list 2160 // before this method was called. 2161 assert(HostAction == AL.back() && "Host action not in the list??"); 2162 HostAction = C.MakeAction<OffloadBundlingJobAction>(OffloadAL); 2163 AL.back() = HostAction; 2164 } else 2165 AL.append(OffloadAL.begin(), OffloadAL.end()); 2166 2167 // Propagate to the current host action (if any) the offload information 2168 // associated with the current input. 2169 if (HostAction) 2170 HostAction->propagateHostOffloadInfo(InputArgToOffloadKindMap[InputArg], 2171 /*BoundArch=*/nullptr); 2172 return false; 2173 } 2174 2175 /// Processes the host linker action. This currently consists of replacing it 2176 /// with an offload action if there are device link objects and propagate to 2177 /// the host action all the offload kinds used in the current compilation. The 2178 /// resulting action is returned. 2179 Action *processHostLinkAction(Action *HostAction) { 2180 // Add all the dependences from the device linking actions. 2181 OffloadAction::DeviceDependences DDeps; 2182 for (auto *SB : SpecializedBuilders) { 2183 if (!SB->isValid()) 2184 continue; 2185 2186 SB->appendLinkDependences(DDeps); 2187 } 2188 2189 // Calculate all the offload kinds used in the current compilation. 2190 unsigned ActiveOffloadKinds = 0u; 2191 for (auto &I : InputArgToOffloadKindMap) 2192 ActiveOffloadKinds |= I.second; 2193 2194 // If we don't have device dependencies, we don't have to create an offload 2195 // action. 2196 if (DDeps.getActions().empty()) { 2197 // Propagate all the active kinds to host action. Given that it is a link 2198 // action it is assumed to depend on all actions generated so far. 2199 HostAction->propagateHostOffloadInfo(ActiveOffloadKinds, 2200 /*BoundArch=*/nullptr); 2201 return HostAction; 2202 } 2203 2204 // Create the offload action with all dependences. When an offload action 2205 // is created the kinds are propagated to the host action, so we don't have 2206 // to do that explicitly here. 2207 OffloadAction::HostDependence HDep( 2208 *HostAction, *C.getSingleOffloadToolChain<Action::OFK_Host>(), 2209 /*BoundArch*/ nullptr, ActiveOffloadKinds); 2210 return C.MakeAction<OffloadAction>(HDep, DDeps); 2211 } 2212 }; 2213 } // anonymous namespace. 2214 2215 void Driver::BuildActions(Compilation &C, DerivedArgList &Args, 2216 const InputList &Inputs, ActionList &Actions) const { 2217 llvm::PrettyStackTraceString CrashInfo("Building compilation actions"); 2218 2219 if (!SuppressMissingInputWarning && Inputs.empty()) { 2220 Diag(clang::diag::err_drv_no_input_files); 2221 return; 2222 } 2223 2224 Arg *FinalPhaseArg; 2225 phases::ID FinalPhase = getFinalPhase(Args, &FinalPhaseArg); 2226 2227 if (FinalPhase == phases::Link && Args.hasArg(options::OPT_emit_llvm)) { 2228 Diag(clang::diag::err_drv_emit_llvm_link); 2229 } 2230 2231 // Reject -Z* at the top level, these options should never have been exposed 2232 // by gcc. 2233 if (Arg *A = Args.getLastArg(options::OPT_Z_Joined)) 2234 Diag(clang::diag::err_drv_use_of_Z_option) << A->getAsString(Args); 2235 2236 // Diagnose misuse of /Fo. 2237 if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fo)) { 2238 StringRef V = A->getValue(); 2239 if (Inputs.size() > 1 && !V.empty() && 2240 !llvm::sys::path::is_separator(V.back())) { 2241 // Check whether /Fo tries to name an output file for multiple inputs. 2242 Diag(clang::diag::err_drv_out_file_argument_with_multiple_sources) 2243 << A->getSpelling() << V; 2244 Args.eraseArg(options::OPT__SLASH_Fo); 2245 } 2246 } 2247 2248 // Diagnose misuse of /Fa. 2249 if (Arg *A = Args.getLastArg(options::OPT__SLASH_Fa)) { 2250 StringRef V = A->getValue(); 2251 if (Inputs.size() > 1 && !V.empty() && 2252 !llvm::sys::path::is_separator(V.back())) { 2253 // Check whether /Fa tries to name an asm file for multiple inputs. 2254 Diag(clang::diag::err_drv_out_file_argument_with_multiple_sources) 2255 << A->getSpelling() << V; 2256 Args.eraseArg(options::OPT__SLASH_Fa); 2257 } 2258 } 2259 2260 // Diagnose misuse of /o. 2261 if (Arg *A = Args.getLastArg(options::OPT__SLASH_o)) { 2262 if (A->getValue()[0] == '\0') { 2263 // It has to have a value. 2264 Diag(clang::diag::err_drv_missing_argument) << A->getSpelling() << 1; 2265 Args.eraseArg(options::OPT__SLASH_o); 2266 } 2267 } 2268 2269 // Diagnose unsupported forms of /Yc /Yu. Ignore /Yc/Yu for now if: 2270 // * no filename after it 2271 // * both /Yc and /Yu passed but with different filenames 2272 // * corresponding file not also passed as /FI 2273 Arg *YcArg = Args.getLastArg(options::OPT__SLASH_Yc); 2274 Arg *YuArg = Args.getLastArg(options::OPT__SLASH_Yu); 2275 if (YcArg && YcArg->getValue()[0] == '\0') { 2276 Diag(clang::diag::warn_drv_ycyu_no_arg_clang_cl) << YcArg->getSpelling(); 2277 Args.eraseArg(options::OPT__SLASH_Yc); 2278 YcArg = nullptr; 2279 } 2280 if (YuArg && YuArg->getValue()[0] == '\0') { 2281 Diag(clang::diag::warn_drv_ycyu_no_arg_clang_cl) << YuArg->getSpelling(); 2282 Args.eraseArg(options::OPT__SLASH_Yu); 2283 YuArg = nullptr; 2284 } 2285 if (YcArg && YuArg && strcmp(YcArg->getValue(), YuArg->getValue()) != 0) { 2286 Diag(clang::diag::warn_drv_ycyu_different_arg_clang_cl); 2287 Args.eraseArg(options::OPT__SLASH_Yc); 2288 Args.eraseArg(options::OPT__SLASH_Yu); 2289 YcArg = YuArg = nullptr; 2290 } 2291 if (YcArg || YuArg) { 2292 StringRef Val = YcArg ? YcArg->getValue() : YuArg->getValue(); 2293 bool FoundMatchingInclude = false; 2294 for (const Arg *Inc : Args.filtered(options::OPT_include)) { 2295 // FIXME: Do case-insensitive matching and consider / and \ as equal. 2296 if (Inc->getValue() == Val) 2297 FoundMatchingInclude = true; 2298 } 2299 if (!FoundMatchingInclude) { 2300 Diag(clang::diag::warn_drv_ycyu_no_fi_arg_clang_cl) 2301 << (YcArg ? YcArg : YuArg)->getSpelling(); 2302 Args.eraseArg(options::OPT__SLASH_Yc); 2303 Args.eraseArg(options::OPT__SLASH_Yu); 2304 YcArg = YuArg = nullptr; 2305 } 2306 } 2307 if (YcArg && Inputs.size() > 1) { 2308 Diag(clang::diag::warn_drv_yc_multiple_inputs_clang_cl); 2309 Args.eraseArg(options::OPT__SLASH_Yc); 2310 YcArg = nullptr; 2311 } 2312 if (Args.hasArg(options::OPT__SLASH_Y_)) { 2313 // /Y- disables all pch handling. Rather than check for it everywhere, 2314 // just remove clang-cl pch-related flags here. 2315 Args.eraseArg(options::OPT__SLASH_Fp); 2316 Args.eraseArg(options::OPT__SLASH_Yc); 2317 Args.eraseArg(options::OPT__SLASH_Yu); 2318 YcArg = YuArg = nullptr; 2319 } 2320 2321 // Builder to be used to build offloading actions. 2322 OffloadingActionBuilder OffloadBuilder(C, Args, Inputs); 2323 2324 // Construct the actions to perform. 2325 ActionList LinkerInputs; 2326 2327 llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PL; 2328 for (auto &I : Inputs) { 2329 types::ID InputType = I.first; 2330 const Arg *InputArg = I.second; 2331 2332 PL.clear(); 2333 types::getCompilationPhases(InputType, PL); 2334 2335 // If the first step comes after the final phase we are doing as part of 2336 // this compilation, warn the user about it. 2337 phases::ID InitialPhase = PL[0]; 2338 if (InitialPhase > FinalPhase) { 2339 // Claim here to avoid the more general unused warning. 2340 InputArg->claim(); 2341 2342 // Suppress all unused style warnings with -Qunused-arguments 2343 if (Args.hasArg(options::OPT_Qunused_arguments)) 2344 continue; 2345 2346 // Special case when final phase determined by binary name, rather than 2347 // by a command-line argument with a corresponding Arg. 2348 if (CCCIsCPP()) 2349 Diag(clang::diag::warn_drv_input_file_unused_by_cpp) 2350 << InputArg->getAsString(Args) << getPhaseName(InitialPhase); 2351 // Special case '-E' warning on a previously preprocessed file to make 2352 // more sense. 2353 else if (InitialPhase == phases::Compile && 2354 FinalPhase == phases::Preprocess && 2355 getPreprocessedType(InputType) == types::TY_INVALID) 2356 Diag(clang::diag::warn_drv_preprocessed_input_file_unused) 2357 << InputArg->getAsString(Args) << !!FinalPhaseArg 2358 << (FinalPhaseArg ? FinalPhaseArg->getOption().getName() : ""); 2359 else 2360 Diag(clang::diag::warn_drv_input_file_unused) 2361 << InputArg->getAsString(Args) << getPhaseName(InitialPhase) 2362 << !!FinalPhaseArg 2363 << (FinalPhaseArg ? FinalPhaseArg->getOption().getName() : ""); 2364 continue; 2365 } 2366 2367 if (YcArg) { 2368 // Add a separate precompile phase for the compile phase. 2369 if (FinalPhase >= phases::Compile) { 2370 const types::ID HeaderType = lookupHeaderTypeForSourceType(InputType); 2371 llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> PCHPL; 2372 types::getCompilationPhases(HeaderType, PCHPL); 2373 Arg *PchInputArg = MakeInputArg(Args, Opts, YcArg->getValue()); 2374 2375 // Build the pipeline for the pch file. 2376 Action *ClangClPch = 2377 C.MakeAction<InputAction>(*PchInputArg, HeaderType); 2378 for (phases::ID Phase : PCHPL) 2379 ClangClPch = ConstructPhaseAction(C, Args, Phase, ClangClPch); 2380 assert(ClangClPch); 2381 Actions.push_back(ClangClPch); 2382 // The driver currently exits after the first failed command. This 2383 // relies on that behavior, to make sure if the pch generation fails, 2384 // the main compilation won't run. 2385 } 2386 } 2387 2388 // Build the pipeline for this file. 2389 Action *Current = C.MakeAction<InputAction>(*InputArg, InputType); 2390 2391 // Use the current host action in any of the offloading actions, if 2392 // required. 2393 if (OffloadBuilder.addHostDependenceToDeviceActions(Current, InputArg)) 2394 break; 2395 2396 for (SmallVectorImpl<phases::ID>::iterator i = PL.begin(), e = PL.end(); 2397 i != e; ++i) { 2398 phases::ID Phase = *i; 2399 2400 // We are done if this step is past what the user requested. 2401 if (Phase > FinalPhase) 2402 break; 2403 2404 // Add any offload action the host action depends on. 2405 Current = OffloadBuilder.addDeviceDependencesToHostAction( 2406 Current, InputArg, Phase, FinalPhase, PL); 2407 if (!Current) 2408 break; 2409 2410 // Queue linker inputs. 2411 if (Phase == phases::Link) { 2412 assert((i + 1) == e && "linking must be final compilation step."); 2413 LinkerInputs.push_back(Current); 2414 Current = nullptr; 2415 break; 2416 } 2417 2418 // Otherwise construct the appropriate action. 2419 auto *NewCurrent = ConstructPhaseAction(C, Args, Phase, Current); 2420 2421 // We didn't create a new action, so we will just move to the next phase. 2422 if (NewCurrent == Current) 2423 continue; 2424 2425 Current = NewCurrent; 2426 2427 // Use the current host action in any of the offloading actions, if 2428 // required. 2429 if (OffloadBuilder.addHostDependenceToDeviceActions(Current, InputArg)) 2430 break; 2431 2432 if (Current->getType() == types::TY_Nothing) 2433 break; 2434 } 2435 2436 // If we ended with something, add to the output list. 2437 if (Current) 2438 Actions.push_back(Current); 2439 2440 // Add any top level actions generated for offloading. 2441 OffloadBuilder.appendTopLevelActions(Actions, Current, InputArg); 2442 } 2443 2444 // Add a link action if necessary. 2445 if (!LinkerInputs.empty()) { 2446 Action *LA = C.MakeAction<LinkJobAction>(LinkerInputs, types::TY_Image); 2447 LA = OffloadBuilder.processHostLinkAction(LA); 2448 Actions.push_back(LA); 2449 } 2450 2451 // If we are linking, claim any options which are obviously only used for 2452 // compilation. 2453 if (FinalPhase == phases::Link && PL.size() == 1) { 2454 Args.ClaimAllArgs(options::OPT_CompileOnly_Group); 2455 Args.ClaimAllArgs(options::OPT_cl_compile_Group); 2456 } 2457 2458 // Claim ignored clang-cl options. 2459 Args.ClaimAllArgs(options::OPT_cl_ignored_Group); 2460 2461 // Claim --cuda-host-only and --cuda-compile-host-device, which may be passed 2462 // to non-CUDA compilations and should not trigger warnings there. 2463 Args.ClaimAllArgs(options::OPT_cuda_host_only); 2464 Args.ClaimAllArgs(options::OPT_cuda_compile_host_device); 2465 } 2466 2467 Action *Driver::ConstructPhaseAction(Compilation &C, const ArgList &Args, 2468 phases::ID Phase, Action *Input) const { 2469 llvm::PrettyStackTraceString CrashInfo("Constructing phase actions"); 2470 2471 // Some types skip the assembler phase (e.g., llvm-bc), but we can't 2472 // encode this in the steps because the intermediate type depends on 2473 // arguments. Just special case here. 2474 if (Phase == phases::Assemble && Input->getType() != types::TY_PP_Asm) 2475 return Input; 2476 2477 // Build the appropriate action. 2478 switch (Phase) { 2479 case phases::Link: 2480 llvm_unreachable("link action invalid here."); 2481 case phases::Preprocess: { 2482 types::ID OutputTy; 2483 // -{M, MM} alter the output type. 2484 if (Args.hasArg(options::OPT_M, options::OPT_MM)) { 2485 OutputTy = types::TY_Dependencies; 2486 } else { 2487 OutputTy = Input->getType(); 2488 if (!Args.hasFlag(options::OPT_frewrite_includes, 2489 options::OPT_fno_rewrite_includes, false) && 2490 !CCGenDiagnostics) 2491 OutputTy = types::getPreprocessedType(OutputTy); 2492 assert(OutputTy != types::TY_INVALID && 2493 "Cannot preprocess this input type!"); 2494 } 2495 return C.MakeAction<PreprocessJobAction>(Input, OutputTy); 2496 } 2497 case phases::Precompile: { 2498 types::ID OutputTy = getPrecompiledType(Input->getType()); 2499 assert(OutputTy != types::TY_INVALID && 2500 "Cannot precompile this input type!"); 2501 if (Args.hasArg(options::OPT_fsyntax_only)) { 2502 // Syntax checks should not emit a PCH file 2503 OutputTy = types::TY_Nothing; 2504 } 2505 return C.MakeAction<PrecompileJobAction>(Input, OutputTy); 2506 } 2507 case phases::Compile: { 2508 if (Args.hasArg(options::OPT_fsyntax_only)) 2509 return C.MakeAction<CompileJobAction>(Input, types::TY_Nothing); 2510 if (Args.hasArg(options::OPT_rewrite_objc)) 2511 return C.MakeAction<CompileJobAction>(Input, types::TY_RewrittenObjC); 2512 if (Args.hasArg(options::OPT_rewrite_legacy_objc)) 2513 return C.MakeAction<CompileJobAction>(Input, 2514 types::TY_RewrittenLegacyObjC); 2515 if (Args.hasArg(options::OPT__analyze, options::OPT__analyze_auto)) 2516 return C.MakeAction<AnalyzeJobAction>(Input, types::TY_Plist); 2517 if (Args.hasArg(options::OPT__migrate)) 2518 return C.MakeAction<MigrateJobAction>(Input, types::TY_Remap); 2519 if (Args.hasArg(options::OPT_emit_ast)) 2520 return C.MakeAction<CompileJobAction>(Input, types::TY_AST); 2521 if (Args.hasArg(options::OPT_module_file_info)) 2522 return C.MakeAction<CompileJobAction>(Input, types::TY_ModuleFile); 2523 if (Args.hasArg(options::OPT_verify_pch)) 2524 return C.MakeAction<VerifyPCHJobAction>(Input, types::TY_Nothing); 2525 return C.MakeAction<CompileJobAction>(Input, types::TY_LLVM_BC); 2526 } 2527 case phases::Backend: { 2528 if (isUsingLTO()) { 2529 types::ID Output = 2530 Args.hasArg(options::OPT_S) ? types::TY_LTO_IR : types::TY_LTO_BC; 2531 return C.MakeAction<BackendJobAction>(Input, Output); 2532 } 2533 if (Args.hasArg(options::OPT_emit_llvm)) { 2534 types::ID Output = 2535 Args.hasArg(options::OPT_S) ? types::TY_LLVM_IR : types::TY_LLVM_BC; 2536 return C.MakeAction<BackendJobAction>(Input, Output); 2537 } 2538 return C.MakeAction<BackendJobAction>(Input, types::TY_PP_Asm); 2539 } 2540 case phases::Assemble: 2541 return C.MakeAction<AssembleJobAction>(std::move(Input), types::TY_Object); 2542 } 2543 2544 llvm_unreachable("invalid phase in ConstructPhaseAction"); 2545 } 2546 2547 void Driver::BuildJobs(Compilation &C) const { 2548 llvm::PrettyStackTraceString CrashInfo("Building compilation jobs"); 2549 2550 Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o); 2551 2552 // It is an error to provide a -o option if we are making multiple output 2553 // files. 2554 if (FinalOutput) { 2555 unsigned NumOutputs = 0; 2556 for (const Action *A : C.getActions()) 2557 if (A->getType() != types::TY_Nothing) 2558 ++NumOutputs; 2559 2560 if (NumOutputs > 1) { 2561 Diag(clang::diag::err_drv_output_argument_with_multiple_files); 2562 FinalOutput = nullptr; 2563 } 2564 } 2565 2566 // Collect the list of architectures. 2567 llvm::StringSet<> ArchNames; 2568 if (C.getDefaultToolChain().getTriple().isOSBinFormatMachO()) 2569 for (const Arg *A : C.getArgs()) 2570 if (A->getOption().matches(options::OPT_arch)) 2571 ArchNames.insert(A->getValue()); 2572 2573 // Set of (Action, canonical ToolChain triple) pairs we've built jobs for. 2574 std::map<std::pair<const Action *, std::string>, InputInfo> CachedResults; 2575 for (Action *A : C.getActions()) { 2576 // If we are linking an image for multiple archs then the linker wants 2577 // -arch_multiple and -final_output <final image name>. Unfortunately, this 2578 // doesn't fit in cleanly because we have to pass this information down. 2579 // 2580 // FIXME: This is a hack; find a cleaner way to integrate this into the 2581 // process. 2582 const char *LinkingOutput = nullptr; 2583 if (isa<LipoJobAction>(A)) { 2584 if (FinalOutput) 2585 LinkingOutput = FinalOutput->getValue(); 2586 else 2587 LinkingOutput = getDefaultImageName(); 2588 } 2589 2590 BuildJobsForAction(C, A, &C.getDefaultToolChain(), 2591 /*BoundArch*/ StringRef(), 2592 /*AtTopLevel*/ true, 2593 /*MultipleArchs*/ ArchNames.size() > 1, 2594 /*LinkingOutput*/ LinkingOutput, CachedResults, 2595 /*TargetDeviceOffloadKind*/ Action::OFK_None); 2596 } 2597 2598 // If the user passed -Qunused-arguments or there were errors, don't warn 2599 // about any unused arguments. 2600 if (Diags.hasErrorOccurred() || 2601 C.getArgs().hasArg(options::OPT_Qunused_arguments)) 2602 return; 2603 2604 // Claim -### here. 2605 (void)C.getArgs().hasArg(options::OPT__HASH_HASH_HASH); 2606 2607 // Claim --driver-mode, --rsp-quoting, it was handled earlier. 2608 (void)C.getArgs().hasArg(options::OPT_driver_mode); 2609 (void)C.getArgs().hasArg(options::OPT_rsp_quoting); 2610 2611 for (Arg *A : C.getArgs()) { 2612 // FIXME: It would be nice to be able to send the argument to the 2613 // DiagnosticsEngine, so that extra values, position, and so on could be 2614 // printed. 2615 if (!A->isClaimed()) { 2616 if (A->getOption().hasFlag(options::NoArgumentUnused)) 2617 continue; 2618 2619 // Suppress the warning automatically if this is just a flag, and it is an 2620 // instance of an argument we already claimed. 2621 const Option &Opt = A->getOption(); 2622 if (Opt.getKind() == Option::FlagClass) { 2623 bool DuplicateClaimed = false; 2624 2625 for (const Arg *AA : C.getArgs().filtered(&Opt)) { 2626 if (AA->isClaimed()) { 2627 DuplicateClaimed = true; 2628 break; 2629 } 2630 } 2631 2632 if (DuplicateClaimed) 2633 continue; 2634 } 2635 2636 // In clang-cl, don't mention unknown arguments here since they have 2637 // already been warned about. 2638 if (!IsCLMode() || !A->getOption().matches(options::OPT_UNKNOWN)) 2639 Diag(clang::diag::warn_drv_unused_argument) 2640 << A->getAsString(C.getArgs()); 2641 } 2642 } 2643 } 2644 2645 namespace { 2646 /// Utility class to control the collapse of dependent actions and select the 2647 /// tools accordingly. 2648 class ToolSelector final { 2649 /// The tool chain this selector refers to. 2650 const ToolChain &TC; 2651 2652 /// The compilation this selector refers to. 2653 const Compilation &C; 2654 2655 /// The base action this selector refers to. 2656 const JobAction *BaseAction; 2657 2658 /// Set to true if the current toolchain refers to host actions. 2659 bool IsHostSelector; 2660 2661 /// Set to true if save-temps and embed-bitcode functionalities are active. 2662 bool SaveTemps; 2663 bool EmbedBitcode; 2664 2665 /// Get previous dependent action or null if that does not exist. If 2666 /// \a CanBeCollapsed is false, that action must be legal to collapse or 2667 /// null will be returned. 2668 const JobAction *getPrevDependentAction(const ActionList &Inputs, 2669 ActionList &SavedOffloadAction, 2670 bool CanBeCollapsed = true) { 2671 // An option can be collapsed only if it has a single input. 2672 if (Inputs.size() != 1) 2673 return nullptr; 2674 2675 Action *CurAction = *Inputs.begin(); 2676 if (CanBeCollapsed && 2677 !CurAction->isCollapsingWithNextDependentActionLegal()) 2678 return nullptr; 2679 2680 // If the input action is an offload action. Look through it and save any 2681 // offload action that can be dropped in the event of a collapse. 2682 if (auto *OA = dyn_cast<OffloadAction>(CurAction)) { 2683 // If the dependent action is a device action, we will attempt to collapse 2684 // only with other device actions. Otherwise, we would do the same but 2685 // with host actions only. 2686 if (!IsHostSelector) { 2687 if (OA->hasSingleDeviceDependence(/*DoNotConsiderHostActions=*/true)) { 2688 CurAction = 2689 OA->getSingleDeviceDependence(/*DoNotConsiderHostActions=*/true); 2690 if (CanBeCollapsed && 2691 !CurAction->isCollapsingWithNextDependentActionLegal()) 2692 return nullptr; 2693 SavedOffloadAction.push_back(OA); 2694 return dyn_cast<JobAction>(CurAction); 2695 } 2696 } else if (OA->hasHostDependence()) { 2697 CurAction = OA->getHostDependence(); 2698 if (CanBeCollapsed && 2699 !CurAction->isCollapsingWithNextDependentActionLegal()) 2700 return nullptr; 2701 SavedOffloadAction.push_back(OA); 2702 return dyn_cast<JobAction>(CurAction); 2703 } 2704 return nullptr; 2705 } 2706 2707 return dyn_cast<JobAction>(CurAction); 2708 } 2709 2710 /// Return true if an assemble action can be collapsed. 2711 bool canCollapseAssembleAction() const { 2712 return TC.useIntegratedAs() && !SaveTemps && 2713 !C.getArgs().hasArg(options::OPT_via_file_asm) && 2714 !C.getArgs().hasArg(options::OPT__SLASH_FA) && 2715 !C.getArgs().hasArg(options::OPT__SLASH_Fa); 2716 } 2717 2718 /// Return true if a preprocessor action can be collapsed. 2719 bool canCollapsePreprocessorAction() const { 2720 return !C.getArgs().hasArg(options::OPT_no_integrated_cpp) && 2721 !C.getArgs().hasArg(options::OPT_traditional_cpp) && !SaveTemps && 2722 !C.getArgs().hasArg(options::OPT_rewrite_objc); 2723 } 2724 2725 /// Struct that relates an action with the offload actions that would be 2726 /// collapsed with it. 2727 struct JobActionInfo final { 2728 /// The action this info refers to. 2729 const JobAction *JA = nullptr; 2730 /// The offload actions we need to take care off if this action is 2731 /// collapsed. 2732 ActionList SavedOffloadAction; 2733 }; 2734 2735 /// Append collapsed offload actions from the give nnumber of elements in the 2736 /// action info array. 2737 static void AppendCollapsedOffloadAction(ActionList &CollapsedOffloadAction, 2738 ArrayRef<JobActionInfo> &ActionInfo, 2739 unsigned ElementNum) { 2740 assert(ElementNum <= ActionInfo.size() && "Invalid number of elements."); 2741 for (unsigned I = 0; I < ElementNum; ++I) 2742 CollapsedOffloadAction.append(ActionInfo[I].SavedOffloadAction.begin(), 2743 ActionInfo[I].SavedOffloadAction.end()); 2744 } 2745 2746 /// Functions that attempt to perform the combining. They detect if that is 2747 /// legal, and if so they update the inputs \a Inputs and the offload action 2748 /// that were collapsed in \a CollapsedOffloadAction. A tool that deals with 2749 /// the combined action is returned. If the combining is not legal or if the 2750 /// tool does not exist, null is returned. 2751 /// Currently three kinds of collapsing are supported: 2752 /// - Assemble + Backend + Compile; 2753 /// - Assemble + Backend ; 2754 /// - Backend + Compile. 2755 const Tool * 2756 combineAssembleBackendCompile(ArrayRef<JobActionInfo> ActionInfo, 2757 const ActionList *&Inputs, 2758 ActionList &CollapsedOffloadAction) { 2759 if (ActionInfo.size() < 3 || !canCollapseAssembleAction()) 2760 return nullptr; 2761 auto *AJ = dyn_cast<AssembleJobAction>(ActionInfo[0].JA); 2762 auto *BJ = dyn_cast<BackendJobAction>(ActionInfo[1].JA); 2763 auto *CJ = dyn_cast<CompileJobAction>(ActionInfo[2].JA); 2764 if (!AJ || !BJ || !CJ) 2765 return nullptr; 2766 2767 // Get compiler tool. 2768 const Tool *T = TC.SelectTool(*CJ); 2769 if (!T) 2770 return nullptr; 2771 2772 // When using -fembed-bitcode, it is required to have the same tool (clang) 2773 // for both CompilerJA and BackendJA. Otherwise, combine two stages. 2774 if (EmbedBitcode) { 2775 const Tool *BT = TC.SelectTool(*BJ); 2776 if (BT == T) 2777 return nullptr; 2778 } 2779 2780 if (!T->hasIntegratedAssembler()) 2781 return nullptr; 2782 2783 Inputs = &CJ->getInputs(); 2784 AppendCollapsedOffloadAction(CollapsedOffloadAction, ActionInfo, 2785 /*NumElements=*/3); 2786 return T; 2787 } 2788 const Tool *combineAssembleBackend(ArrayRef<JobActionInfo> ActionInfo, 2789 const ActionList *&Inputs, 2790 ActionList &CollapsedOffloadAction) { 2791 if (ActionInfo.size() < 2 || !canCollapseAssembleAction()) 2792 return nullptr; 2793 auto *AJ = dyn_cast<AssembleJobAction>(ActionInfo[0].JA); 2794 auto *BJ = dyn_cast<BackendJobAction>(ActionInfo[1].JA); 2795 if (!AJ || !BJ) 2796 return nullptr; 2797 2798 // Retrieve the compile job, backend action must always be preceded by one. 2799 ActionList CompileJobOffloadActions; 2800 auto *CJ = getPrevDependentAction(BJ->getInputs(), CompileJobOffloadActions, 2801 /*CanBeCollapsed=*/false); 2802 if (!AJ || !BJ || !CJ) 2803 return nullptr; 2804 2805 assert(isa<CompileJobAction>(CJ) && 2806 "Expecting compile job preceding backend job."); 2807 2808 // Get compiler tool. 2809 const Tool *T = TC.SelectTool(*CJ); 2810 if (!T) 2811 return nullptr; 2812 2813 if (!T->hasIntegratedAssembler()) 2814 return nullptr; 2815 2816 Inputs = &BJ->getInputs(); 2817 AppendCollapsedOffloadAction(CollapsedOffloadAction, ActionInfo, 2818 /*NumElements=*/2); 2819 return T; 2820 } 2821 const Tool *combineBackendCompile(ArrayRef<JobActionInfo> ActionInfo, 2822 const ActionList *&Inputs, 2823 ActionList &CollapsedOffloadAction) { 2824 if (ActionInfo.size() < 2 || !canCollapsePreprocessorAction()) 2825 return nullptr; 2826 auto *BJ = dyn_cast<BackendJobAction>(ActionInfo[0].JA); 2827 auto *CJ = dyn_cast<CompileJobAction>(ActionInfo[1].JA); 2828 if (!BJ || !CJ) 2829 return nullptr; 2830 2831 // Get compiler tool. 2832 const Tool *T = TC.SelectTool(*CJ); 2833 if (!T) 2834 return nullptr; 2835 2836 if (T->canEmitIR() && (SaveTemps || EmbedBitcode)) 2837 return nullptr; 2838 2839 Inputs = &CJ->getInputs(); 2840 AppendCollapsedOffloadAction(CollapsedOffloadAction, ActionInfo, 2841 /*NumElements=*/2); 2842 return T; 2843 } 2844 2845 /// Updates the inputs if the obtained tool supports combining with 2846 /// preprocessor action, and the current input is indeed a preprocessor 2847 /// action. If combining results in the collapse of offloading actions, those 2848 /// are appended to \a CollapsedOffloadAction. 2849 void combineWithPreprocessor(const Tool *T, const ActionList *&Inputs, 2850 ActionList &CollapsedOffloadAction) { 2851 if (!T || !canCollapsePreprocessorAction() || !T->hasIntegratedCPP()) 2852 return; 2853 2854 // Attempt to get a preprocessor action dependence. 2855 ActionList PreprocessJobOffloadActions; 2856 auto *PJ = getPrevDependentAction(*Inputs, PreprocessJobOffloadActions); 2857 if (!PJ || !isa<PreprocessJobAction>(PJ)) 2858 return; 2859 2860 // This is legal to combine. Append any offload action we found and set the 2861 // current inputs to preprocessor inputs. 2862 CollapsedOffloadAction.append(PreprocessJobOffloadActions.begin(), 2863 PreprocessJobOffloadActions.end()); 2864 Inputs = &PJ->getInputs(); 2865 } 2866 2867 public: 2868 ToolSelector(const JobAction *BaseAction, const ToolChain &TC, 2869 const Compilation &C, bool SaveTemps, bool EmbedBitcode) 2870 : TC(TC), C(C), BaseAction(BaseAction), SaveTemps(SaveTemps), 2871 EmbedBitcode(EmbedBitcode) { 2872 assert(BaseAction && "Invalid base action."); 2873 IsHostSelector = BaseAction->getOffloadingDeviceKind() == Action::OFK_None; 2874 } 2875 2876 /// Check if a chain of actions can be combined and return the tool that can 2877 /// handle the combination of actions. The pointer to the current inputs \a 2878 /// Inputs and the list of offload actions \a CollapsedOffloadActions 2879 /// connected to collapsed actions are updated accordingly. The latter enables 2880 /// the caller of the selector to process them afterwards instead of just 2881 /// dropping them. If no suitable tool is found, null will be returned. 2882 const Tool *getTool(const ActionList *&Inputs, 2883 ActionList &CollapsedOffloadAction) { 2884 // 2885 // Get the largest chain of actions that we could combine. 2886 // 2887 2888 SmallVector<JobActionInfo, 5> ActionChain(1); 2889 ActionChain.back().JA = BaseAction; 2890 while (ActionChain.back().JA) { 2891 const Action *CurAction = ActionChain.back().JA; 2892 2893 // Grow the chain by one element. 2894 ActionChain.resize(ActionChain.size() + 1); 2895 JobActionInfo &AI = ActionChain.back(); 2896 2897 // Attempt to fill it with the 2898 AI.JA = 2899 getPrevDependentAction(CurAction->getInputs(), AI.SavedOffloadAction); 2900 } 2901 2902 // Pop the last action info as it could not be filled. 2903 ActionChain.pop_back(); 2904 2905 // 2906 // Attempt to combine actions. If all combining attempts failed, just return 2907 // the tool of the provided action. At the end we attempt to combine the 2908 // action with any preprocessor action it may depend on. 2909 // 2910 2911 const Tool *T = combineAssembleBackendCompile(ActionChain, Inputs, 2912 CollapsedOffloadAction); 2913 if (!T) 2914 T = combineAssembleBackend(ActionChain, Inputs, CollapsedOffloadAction); 2915 if (!T) 2916 T = combineBackendCompile(ActionChain, Inputs, CollapsedOffloadAction); 2917 if (!T) { 2918 Inputs = &BaseAction->getInputs(); 2919 T = TC.SelectTool(*BaseAction); 2920 } 2921 2922 combineWithPreprocessor(T, Inputs, CollapsedOffloadAction); 2923 return T; 2924 } 2925 }; 2926 } 2927 2928 /// Return a string that uniquely identifies the result of a job. The bound arch 2929 /// is not necessarily represented in the toolchain's triple -- for example, 2930 /// armv7 and armv7s both map to the same triple -- so we need both in our map. 2931 /// Also, we need to add the offloading device kind, as the same tool chain can 2932 /// be used for host and device for some programming models, e.g. OpenMP. 2933 static std::string GetTriplePlusArchString(const ToolChain *TC, 2934 StringRef BoundArch, 2935 Action::OffloadKind OffloadKind) { 2936 std::string TriplePlusArch = TC->getTriple().normalize(); 2937 if (!BoundArch.empty()) { 2938 TriplePlusArch += "-"; 2939 TriplePlusArch += BoundArch; 2940 } 2941 TriplePlusArch += "-"; 2942 TriplePlusArch += Action::GetOffloadKindName(OffloadKind); 2943 return TriplePlusArch; 2944 } 2945 2946 InputInfo Driver::BuildJobsForAction( 2947 Compilation &C, const Action *A, const ToolChain *TC, StringRef BoundArch, 2948 bool AtTopLevel, bool MultipleArchs, const char *LinkingOutput, 2949 std::map<std::pair<const Action *, std::string>, InputInfo> &CachedResults, 2950 Action::OffloadKind TargetDeviceOffloadKind) const { 2951 std::pair<const Action *, std::string> ActionTC = { 2952 A, GetTriplePlusArchString(TC, BoundArch, TargetDeviceOffloadKind)}; 2953 auto CachedResult = CachedResults.find(ActionTC); 2954 if (CachedResult != CachedResults.end()) { 2955 return CachedResult->second; 2956 } 2957 InputInfo Result = BuildJobsForActionNoCache( 2958 C, A, TC, BoundArch, AtTopLevel, MultipleArchs, LinkingOutput, 2959 CachedResults, TargetDeviceOffloadKind); 2960 CachedResults[ActionTC] = Result; 2961 return Result; 2962 } 2963 2964 InputInfo Driver::BuildJobsForActionNoCache( 2965 Compilation &C, const Action *A, const ToolChain *TC, StringRef BoundArch, 2966 bool AtTopLevel, bool MultipleArchs, const char *LinkingOutput, 2967 std::map<std::pair<const Action *, std::string>, InputInfo> &CachedResults, 2968 Action::OffloadKind TargetDeviceOffloadKind) const { 2969 llvm::PrettyStackTraceString CrashInfo("Building compilation jobs"); 2970 2971 InputInfoList OffloadDependencesInputInfo; 2972 bool BuildingForOffloadDevice = TargetDeviceOffloadKind != Action::OFK_None; 2973 if (const OffloadAction *OA = dyn_cast<OffloadAction>(A)) { 2974 // The offload action is expected to be used in four different situations. 2975 // 2976 // a) Set a toolchain/architecture/kind for a host action: 2977 // Host Action 1 -> OffloadAction -> Host Action 2 2978 // 2979 // b) Set a toolchain/architecture/kind for a device action; 2980 // Device Action 1 -> OffloadAction -> Device Action 2 2981 // 2982 // c) Specify a device dependence to a host action; 2983 // Device Action 1 _ 2984 // \ 2985 // Host Action 1 ---> OffloadAction -> Host Action 2 2986 // 2987 // d) Specify a host dependence to a device action. 2988 // Host Action 1 _ 2989 // \ 2990 // Device Action 1 ---> OffloadAction -> Device Action 2 2991 // 2992 // For a) and b), we just return the job generated for the dependence. For 2993 // c) and d) we override the current action with the host/device dependence 2994 // if the current toolchain is host/device and set the offload dependences 2995 // info with the jobs obtained from the device/host dependence(s). 2996 2997 // If there is a single device option, just generate the job for it. 2998 if (OA->hasSingleDeviceDependence()) { 2999 InputInfo DevA; 3000 OA->doOnEachDeviceDependence([&](Action *DepA, const ToolChain *DepTC, 3001 const char *DepBoundArch) { 3002 DevA = 3003 BuildJobsForAction(C, DepA, DepTC, DepBoundArch, AtTopLevel, 3004 /*MultipleArchs*/ !!DepBoundArch, LinkingOutput, 3005 CachedResults, DepA->getOffloadingDeviceKind()); 3006 }); 3007 return DevA; 3008 } 3009 3010 // If 'Action 2' is host, we generate jobs for the device dependences and 3011 // override the current action with the host dependence. Otherwise, we 3012 // generate the host dependences and override the action with the device 3013 // dependence. The dependences can't therefore be a top-level action. 3014 OA->doOnEachDependence( 3015 /*IsHostDependence=*/BuildingForOffloadDevice, 3016 [&](Action *DepA, const ToolChain *DepTC, const char *DepBoundArch) { 3017 OffloadDependencesInputInfo.push_back(BuildJobsForAction( 3018 C, DepA, DepTC, DepBoundArch, /*AtTopLevel=*/false, 3019 /*MultipleArchs*/ !!DepBoundArch, LinkingOutput, CachedResults, 3020 DepA->getOffloadingDeviceKind())); 3021 }); 3022 3023 A = BuildingForOffloadDevice 3024 ? OA->getSingleDeviceDependence(/*DoNotConsiderHostActions=*/true) 3025 : OA->getHostDependence(); 3026 } 3027 3028 if (const InputAction *IA = dyn_cast<InputAction>(A)) { 3029 // FIXME: It would be nice to not claim this here; maybe the old scheme of 3030 // just using Args was better? 3031 const Arg &Input = IA->getInputArg(); 3032 Input.claim(); 3033 if (Input.getOption().matches(options::OPT_INPUT)) { 3034 const char *Name = Input.getValue(); 3035 return InputInfo(A, Name, /* BaseInput = */ Name); 3036 } 3037 return InputInfo(A, &Input, /* BaseInput = */ ""); 3038 } 3039 3040 if (const BindArchAction *BAA = dyn_cast<BindArchAction>(A)) { 3041 const ToolChain *TC; 3042 StringRef ArchName = BAA->getArchName(); 3043 3044 if (!ArchName.empty()) 3045 TC = &getToolChain(C.getArgs(), 3046 computeTargetTriple(*this, DefaultTargetTriple, 3047 C.getArgs(), ArchName)); 3048 else 3049 TC = &C.getDefaultToolChain(); 3050 3051 return BuildJobsForAction(C, *BAA->input_begin(), TC, ArchName, AtTopLevel, 3052 MultipleArchs, LinkingOutput, CachedResults, 3053 TargetDeviceOffloadKind); 3054 } 3055 3056 3057 const ActionList *Inputs = &A->getInputs(); 3058 3059 const JobAction *JA = cast<JobAction>(A); 3060 ActionList CollapsedOffloadActions; 3061 3062 ToolSelector TS(JA, *TC, C, isSaveTempsEnabled(), embedBitcodeEnabled()); 3063 const Tool *T = TS.getTool(Inputs, CollapsedOffloadActions); 3064 3065 if (!T) 3066 return InputInfo(); 3067 3068 // If we've collapsed action list that contained OffloadAction we 3069 // need to build jobs for host/device-side inputs it may have held. 3070 for (const auto *OA : CollapsedOffloadActions) 3071 cast<OffloadAction>(OA)->doOnEachDependence( 3072 /*IsHostDependence=*/BuildingForOffloadDevice, 3073 [&](Action *DepA, const ToolChain *DepTC, const char *DepBoundArch) { 3074 OffloadDependencesInputInfo.push_back(BuildJobsForAction( 3075 C, DepA, DepTC, DepBoundArch, /* AtTopLevel */ false, 3076 /*MultipleArchs=*/!!DepBoundArch, LinkingOutput, CachedResults, 3077 DepA->getOffloadingDeviceKind())); 3078 }); 3079 3080 // Only use pipes when there is exactly one input. 3081 InputInfoList InputInfos; 3082 for (const Action *Input : *Inputs) { 3083 // Treat dsymutil and verify sub-jobs as being at the top-level too, they 3084 // shouldn't get temporary output names. 3085 // FIXME: Clean this up. 3086 bool SubJobAtTopLevel = 3087 AtTopLevel && (isa<DsymutilJobAction>(A) || isa<VerifyJobAction>(A)); 3088 InputInfos.push_back(BuildJobsForAction( 3089 C, Input, TC, BoundArch, SubJobAtTopLevel, MultipleArchs, LinkingOutput, 3090 CachedResults, A->getOffloadingDeviceKind())); 3091 } 3092 3093 // Always use the first input as the base input. 3094 const char *BaseInput = InputInfos[0].getBaseInput(); 3095 3096 // ... except dsymutil actions, which use their actual input as the base 3097 // input. 3098 if (JA->getType() == types::TY_dSYM) 3099 BaseInput = InputInfos[0].getFilename(); 3100 3101 // Append outputs of offload device jobs to the input list 3102 if (!OffloadDependencesInputInfo.empty()) 3103 InputInfos.append(OffloadDependencesInputInfo.begin(), 3104 OffloadDependencesInputInfo.end()); 3105 3106 // Set the effective triple of the toolchain for the duration of this job. 3107 llvm::Triple EffectiveTriple; 3108 const ToolChain &ToolTC = T->getToolChain(); 3109 const ArgList &Args = 3110 C.getArgsForToolChain(TC, BoundArch, A->getOffloadingDeviceKind()); 3111 if (InputInfos.size() != 1) { 3112 EffectiveTriple = llvm::Triple(ToolTC.ComputeEffectiveClangTriple(Args)); 3113 } else { 3114 // Pass along the input type if it can be unambiguously determined. 3115 EffectiveTriple = llvm::Triple( 3116 ToolTC.ComputeEffectiveClangTriple(Args, InputInfos[0].getType())); 3117 } 3118 RegisterEffectiveTriple TripleRAII(ToolTC, EffectiveTriple); 3119 3120 // Determine the place to write output to, if any. 3121 InputInfo Result; 3122 InputInfoList UnbundlingResults; 3123 if (auto *UA = dyn_cast<OffloadUnbundlingJobAction>(JA)) { 3124 // If we have an unbundling job, we need to create results for all the 3125 // outputs. We also update the results cache so that other actions using 3126 // this unbundling action can get the right results. 3127 for (auto &UI : UA->getDependentActionsInfo()) { 3128 assert(UI.DependentOffloadKind != Action::OFK_None && 3129 "Unbundling with no offloading??"); 3130 3131 // Unbundling actions are never at the top level. When we generate the 3132 // offloading prefix, we also do that for the host file because the 3133 // unbundling action does not change the type of the output which can 3134 // cause a overwrite. 3135 std::string OffloadingPrefix = Action::GetOffloadingFileNamePrefix( 3136 UI.DependentOffloadKind, 3137 UI.DependentToolChain->getTriple().normalize(), 3138 /*CreatePrefixForHost=*/true); 3139 auto CurI = InputInfo( 3140 UA, GetNamedOutputPath(C, *UA, BaseInput, UI.DependentBoundArch, 3141 /*AtTopLevel=*/false, MultipleArchs, 3142 OffloadingPrefix), 3143 BaseInput); 3144 // Save the unbundling result. 3145 UnbundlingResults.push_back(CurI); 3146 3147 // Get the unique string identifier for this dependence and cache the 3148 // result. 3149 CachedResults[{A, GetTriplePlusArchString( 3150 UI.DependentToolChain, UI.DependentBoundArch, 3151 UI.DependentOffloadKind)}] = CurI; 3152 } 3153 3154 // Now that we have all the results generated, select the one that should be 3155 // returned for the current depending action. 3156 std::pair<const Action *, std::string> ActionTC = { 3157 A, GetTriplePlusArchString(TC, BoundArch, TargetDeviceOffloadKind)}; 3158 assert(CachedResults.find(ActionTC) != CachedResults.end() && 3159 "Result does not exist??"); 3160 Result = CachedResults[ActionTC]; 3161 } else if (JA->getType() == types::TY_Nothing) 3162 Result = InputInfo(A, BaseInput); 3163 else { 3164 // We only have to generate a prefix for the host if this is not a top-level 3165 // action. 3166 std::string OffloadingPrefix = Action::GetOffloadingFileNamePrefix( 3167 A->getOffloadingDeviceKind(), TC->getTriple().normalize(), 3168 /*CreatePrefixForHost=*/!!A->getOffloadingHostActiveKinds() && 3169 !AtTopLevel); 3170 Result = InputInfo(A, GetNamedOutputPath(C, *JA, BaseInput, BoundArch, 3171 AtTopLevel, MultipleArchs, 3172 OffloadingPrefix), 3173 BaseInput); 3174 } 3175 3176 if (CCCPrintBindings && !CCGenDiagnostics) { 3177 llvm::errs() << "# \"" << T->getToolChain().getTripleString() << '"' 3178 << " - \"" << T->getName() << "\", inputs: ["; 3179 for (unsigned i = 0, e = InputInfos.size(); i != e; ++i) { 3180 llvm::errs() << InputInfos[i].getAsString(); 3181 if (i + 1 != e) 3182 llvm::errs() << ", "; 3183 } 3184 if (UnbundlingResults.empty()) 3185 llvm::errs() << "], output: " << Result.getAsString() << "\n"; 3186 else { 3187 llvm::errs() << "], outputs: ["; 3188 for (unsigned i = 0, e = UnbundlingResults.size(); i != e; ++i) { 3189 llvm::errs() << UnbundlingResults[i].getAsString(); 3190 if (i + 1 != e) 3191 llvm::errs() << ", "; 3192 } 3193 llvm::errs() << "] \n"; 3194 } 3195 } else { 3196 if (UnbundlingResults.empty()) 3197 T->ConstructJob( 3198 C, *JA, Result, InputInfos, 3199 C.getArgsForToolChain(TC, BoundArch, JA->getOffloadingDeviceKind()), 3200 LinkingOutput); 3201 else 3202 T->ConstructJobMultipleOutputs( 3203 C, *JA, UnbundlingResults, InputInfos, 3204 C.getArgsForToolChain(TC, BoundArch, JA->getOffloadingDeviceKind()), 3205 LinkingOutput); 3206 } 3207 return Result; 3208 } 3209 3210 const char *Driver::getDefaultImageName() const { 3211 llvm::Triple Target(llvm::Triple::normalize(DefaultTargetTriple)); 3212 return Target.isOSWindows() ? "a.exe" : "a.out"; 3213 } 3214 3215 /// \brief Create output filename based on ArgValue, which could either be a 3216 /// full filename, filename without extension, or a directory. If ArgValue 3217 /// does not provide a filename, then use BaseName, and use the extension 3218 /// suitable for FileType. 3219 static const char *MakeCLOutputFilename(const ArgList &Args, StringRef ArgValue, 3220 StringRef BaseName, 3221 types::ID FileType) { 3222 SmallString<128> Filename = ArgValue; 3223 3224 if (ArgValue.empty()) { 3225 // If the argument is empty, output to BaseName in the current dir. 3226 Filename = BaseName; 3227 } else if (llvm::sys::path::is_separator(Filename.back())) { 3228 // If the argument is a directory, output to BaseName in that dir. 3229 llvm::sys::path::append(Filename, BaseName); 3230 } 3231 3232 if (!llvm::sys::path::has_extension(ArgValue)) { 3233 // If the argument didn't provide an extension, then set it. 3234 const char *Extension = types::getTypeTempSuffix(FileType, true); 3235 3236 if (FileType == types::TY_Image && 3237 Args.hasArg(options::OPT__SLASH_LD, options::OPT__SLASH_LDd)) { 3238 // The output file is a dll. 3239 Extension = "dll"; 3240 } 3241 3242 llvm::sys::path::replace_extension(Filename, Extension); 3243 } 3244 3245 return Args.MakeArgString(Filename.c_str()); 3246 } 3247 3248 const char *Driver::GetNamedOutputPath(Compilation &C, const JobAction &JA, 3249 const char *BaseInput, 3250 StringRef BoundArch, bool AtTopLevel, 3251 bool MultipleArchs, 3252 StringRef OffloadingPrefix) const { 3253 llvm::PrettyStackTraceString CrashInfo("Computing output path"); 3254 // Output to a user requested destination? 3255 if (AtTopLevel && !isa<DsymutilJobAction>(JA) && !isa<VerifyJobAction>(JA)) { 3256 if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o)) 3257 return C.addResultFile(FinalOutput->getValue(), &JA); 3258 } 3259 3260 // For /P, preprocess to file named after BaseInput. 3261 if (C.getArgs().hasArg(options::OPT__SLASH_P)) { 3262 assert(AtTopLevel && isa<PreprocessJobAction>(JA)); 3263 StringRef BaseName = llvm::sys::path::filename(BaseInput); 3264 StringRef NameArg; 3265 if (Arg *A = C.getArgs().getLastArg(options::OPT__SLASH_Fi)) 3266 NameArg = A->getValue(); 3267 return C.addResultFile( 3268 MakeCLOutputFilename(C.getArgs(), NameArg, BaseName, types::TY_PP_C), 3269 &JA); 3270 } 3271 3272 // Default to writing to stdout? 3273 if (AtTopLevel && !CCGenDiagnostics && 3274 (isa<PreprocessJobAction>(JA) || JA.getType() == types::TY_ModuleFile)) 3275 return "-"; 3276 3277 // Is this the assembly listing for /FA? 3278 if (JA.getType() == types::TY_PP_Asm && 3279 (C.getArgs().hasArg(options::OPT__SLASH_FA) || 3280 C.getArgs().hasArg(options::OPT__SLASH_Fa))) { 3281 // Use /Fa and the input filename to determine the asm file name. 3282 StringRef BaseName = llvm::sys::path::filename(BaseInput); 3283 StringRef FaValue = C.getArgs().getLastArgValue(options::OPT__SLASH_Fa); 3284 return C.addResultFile( 3285 MakeCLOutputFilename(C.getArgs(), FaValue, BaseName, JA.getType()), 3286 &JA); 3287 } 3288 3289 // Output to a temporary file? 3290 if ((!AtTopLevel && !isSaveTempsEnabled() && 3291 !C.getArgs().hasArg(options::OPT__SLASH_Fo)) || 3292 CCGenDiagnostics) { 3293 StringRef Name = llvm::sys::path::filename(BaseInput); 3294 std::pair<StringRef, StringRef> Split = Name.split('.'); 3295 std::string TmpName = GetTemporaryPath( 3296 Split.first, types::getTypeTempSuffix(JA.getType(), IsCLMode())); 3297 return C.addTempFile(C.getArgs().MakeArgString(TmpName)); 3298 } 3299 3300 SmallString<128> BasePath(BaseInput); 3301 StringRef BaseName; 3302 3303 // Dsymutil actions should use the full path. 3304 if (isa<DsymutilJobAction>(JA) || isa<VerifyJobAction>(JA)) 3305 BaseName = BasePath; 3306 else 3307 BaseName = llvm::sys::path::filename(BasePath); 3308 3309 // Determine what the derived output name should be. 3310 const char *NamedOutput; 3311 3312 if ((JA.getType() == types::TY_Object || JA.getType() == types::TY_LTO_BC) && 3313 C.getArgs().hasArg(options::OPT__SLASH_Fo, options::OPT__SLASH_o)) { 3314 // The /Fo or /o flag decides the object filename. 3315 StringRef Val = 3316 C.getArgs() 3317 .getLastArg(options::OPT__SLASH_Fo, options::OPT__SLASH_o) 3318 ->getValue(); 3319 NamedOutput = 3320 MakeCLOutputFilename(C.getArgs(), Val, BaseName, types::TY_Object); 3321 } else if (JA.getType() == types::TY_Image && 3322 C.getArgs().hasArg(options::OPT__SLASH_Fe, 3323 options::OPT__SLASH_o)) { 3324 // The /Fe or /o flag names the linked file. 3325 StringRef Val = 3326 C.getArgs() 3327 .getLastArg(options::OPT__SLASH_Fe, options::OPT__SLASH_o) 3328 ->getValue(); 3329 NamedOutput = 3330 MakeCLOutputFilename(C.getArgs(), Val, BaseName, types::TY_Image); 3331 } else if (JA.getType() == types::TY_Image) { 3332 if (IsCLMode()) { 3333 // clang-cl uses BaseName for the executable name. 3334 NamedOutput = 3335 MakeCLOutputFilename(C.getArgs(), "", BaseName, types::TY_Image); 3336 } else { 3337 SmallString<128> Output(getDefaultImageName()); 3338 Output += OffloadingPrefix; 3339 if (MultipleArchs && !BoundArch.empty()) { 3340 Output += "-"; 3341 Output.append(BoundArch); 3342 } 3343 NamedOutput = C.getArgs().MakeArgString(Output.c_str()); 3344 } 3345 } else if (JA.getType() == types::TY_PCH && IsCLMode()) { 3346 NamedOutput = C.getArgs().MakeArgString(GetClPchPath(C, BaseName)); 3347 } else { 3348 const char *Suffix = types::getTypeTempSuffix(JA.getType(), IsCLMode()); 3349 assert(Suffix && "All types used for output should have a suffix."); 3350 3351 std::string::size_type End = std::string::npos; 3352 if (!types::appendSuffixForType(JA.getType())) 3353 End = BaseName.rfind('.'); 3354 SmallString<128> Suffixed(BaseName.substr(0, End)); 3355 Suffixed += OffloadingPrefix; 3356 if (MultipleArchs && !BoundArch.empty()) { 3357 Suffixed += "-"; 3358 Suffixed.append(BoundArch); 3359 } 3360 // When using both -save-temps and -emit-llvm, use a ".tmp.bc" suffix for 3361 // the unoptimized bitcode so that it does not get overwritten by the ".bc" 3362 // optimized bitcode output. 3363 if (!AtTopLevel && C.getArgs().hasArg(options::OPT_emit_llvm) && 3364 JA.getType() == types::TY_LLVM_BC) 3365 Suffixed += ".tmp"; 3366 Suffixed += '.'; 3367 Suffixed += Suffix; 3368 NamedOutput = C.getArgs().MakeArgString(Suffixed.c_str()); 3369 } 3370 3371 // Prepend object file path if -save-temps=obj 3372 if (!AtTopLevel && isSaveTempsObj() && C.getArgs().hasArg(options::OPT_o) && 3373 JA.getType() != types::TY_PCH) { 3374 Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o); 3375 SmallString<128> TempPath(FinalOutput->getValue()); 3376 llvm::sys::path::remove_filename(TempPath); 3377 StringRef OutputFileName = llvm::sys::path::filename(NamedOutput); 3378 llvm::sys::path::append(TempPath, OutputFileName); 3379 NamedOutput = C.getArgs().MakeArgString(TempPath.c_str()); 3380 } 3381 3382 // If we're saving temps and the temp file conflicts with the input file, 3383 // then avoid overwriting input file. 3384 if (!AtTopLevel && isSaveTempsEnabled() && NamedOutput == BaseName) { 3385 bool SameFile = false; 3386 SmallString<256> Result; 3387 llvm::sys::fs::current_path(Result); 3388 llvm::sys::path::append(Result, BaseName); 3389 llvm::sys::fs::equivalent(BaseInput, Result.c_str(), SameFile); 3390 // Must share the same path to conflict. 3391 if (SameFile) { 3392 StringRef Name = llvm::sys::path::filename(BaseInput); 3393 std::pair<StringRef, StringRef> Split = Name.split('.'); 3394 std::string TmpName = GetTemporaryPath( 3395 Split.first, types::getTypeTempSuffix(JA.getType(), IsCLMode())); 3396 return C.addTempFile(C.getArgs().MakeArgString(TmpName)); 3397 } 3398 } 3399 3400 // As an annoying special case, PCH generation doesn't strip the pathname. 3401 if (JA.getType() == types::TY_PCH && !IsCLMode()) { 3402 llvm::sys::path::remove_filename(BasePath); 3403 if (BasePath.empty()) 3404 BasePath = NamedOutput; 3405 else 3406 llvm::sys::path::append(BasePath, NamedOutput); 3407 return C.addResultFile(C.getArgs().MakeArgString(BasePath.c_str()), &JA); 3408 } else { 3409 return C.addResultFile(NamedOutput, &JA); 3410 } 3411 } 3412 3413 std::string Driver::GetFilePath(StringRef Name, const ToolChain &TC) const { 3414 // Respect a limited subset of the '-Bprefix' functionality in GCC by 3415 // attempting to use this prefix when looking for file paths. 3416 for (const std::string &Dir : PrefixDirs) { 3417 if (Dir.empty()) 3418 continue; 3419 SmallString<128> P(Dir[0] == '=' ? SysRoot + Dir.substr(1) : Dir); 3420 llvm::sys::path::append(P, Name); 3421 if (llvm::sys::fs::exists(Twine(P))) 3422 return P.str(); 3423 } 3424 3425 SmallString<128> P(ResourceDir); 3426 llvm::sys::path::append(P, Name); 3427 if (llvm::sys::fs::exists(Twine(P))) 3428 return P.str(); 3429 3430 for (const std::string &Dir : TC.getFilePaths()) { 3431 if (Dir.empty()) 3432 continue; 3433 SmallString<128> P(Dir[0] == '=' ? SysRoot + Dir.substr(1) : Dir); 3434 llvm::sys::path::append(P, Name); 3435 if (llvm::sys::fs::exists(Twine(P))) 3436 return P.str(); 3437 } 3438 3439 return Name; 3440 } 3441 3442 void Driver::generatePrefixedToolNames( 3443 StringRef Tool, const ToolChain &TC, 3444 SmallVectorImpl<std::string> &Names) const { 3445 // FIXME: Needs a better variable than DefaultTargetTriple 3446 Names.emplace_back((DefaultTargetTriple + "-" + Tool).str()); 3447 Names.emplace_back(Tool); 3448 3449 // Allow the discovery of tools prefixed with LLVM's default target triple. 3450 std::string LLVMDefaultTargetTriple = llvm::sys::getDefaultTargetTriple(); 3451 if (LLVMDefaultTargetTriple != DefaultTargetTriple) 3452 Names.emplace_back((LLVMDefaultTargetTriple + "-" + Tool).str()); 3453 } 3454 3455 static bool ScanDirForExecutable(SmallString<128> &Dir, 3456 ArrayRef<std::string> Names) { 3457 for (const auto &Name : Names) { 3458 llvm::sys::path::append(Dir, Name); 3459 if (llvm::sys::fs::can_execute(Twine(Dir))) 3460 return true; 3461 llvm::sys::path::remove_filename(Dir); 3462 } 3463 return false; 3464 } 3465 3466 std::string Driver::GetProgramPath(StringRef Name, const ToolChain &TC) const { 3467 SmallVector<std::string, 2> TargetSpecificExecutables; 3468 generatePrefixedToolNames(Name, TC, TargetSpecificExecutables); 3469 3470 // Respect a limited subset of the '-Bprefix' functionality in GCC by 3471 // attempting to use this prefix when looking for program paths. 3472 for (const auto &PrefixDir : PrefixDirs) { 3473 if (llvm::sys::fs::is_directory(PrefixDir)) { 3474 SmallString<128> P(PrefixDir); 3475 if (ScanDirForExecutable(P, TargetSpecificExecutables)) 3476 return P.str(); 3477 } else { 3478 SmallString<128> P((PrefixDir + Name).str()); 3479 if (llvm::sys::fs::can_execute(Twine(P))) 3480 return P.str(); 3481 } 3482 } 3483 3484 const ToolChain::path_list &List = TC.getProgramPaths(); 3485 for (const auto &Path : List) { 3486 SmallString<128> P(Path); 3487 if (ScanDirForExecutable(P, TargetSpecificExecutables)) 3488 return P.str(); 3489 } 3490 3491 // If all else failed, search the path. 3492 for (const auto &TargetSpecificExecutable : TargetSpecificExecutables) 3493 if (llvm::ErrorOr<std::string> P = 3494 llvm::sys::findProgramByName(TargetSpecificExecutable)) 3495 return *P; 3496 3497 return Name; 3498 } 3499 3500 std::string Driver::GetTemporaryPath(StringRef Prefix, StringRef Suffix) const { 3501 SmallString<128> Path; 3502 std::error_code EC = llvm::sys::fs::createTemporaryFile(Prefix, Suffix, Path); 3503 if (EC) { 3504 Diag(clang::diag::err_unable_to_make_temp) << EC.message(); 3505 return ""; 3506 } 3507 3508 return Path.str(); 3509 } 3510 3511 std::string Driver::GetClPchPath(Compilation &C, StringRef BaseName) const { 3512 SmallString<128> Output; 3513 if (Arg *FpArg = C.getArgs().getLastArg(options::OPT__SLASH_Fp)) { 3514 // FIXME: If anybody needs it, implement this obscure rule: 3515 // "If you specify a directory without a file name, the default file name 3516 // is VCx0.pch., where x is the major version of Visual C++ in use." 3517 Output = FpArg->getValue(); 3518 3519 // "If you do not specify an extension as part of the path name, an 3520 // extension of .pch is assumed. " 3521 if (!llvm::sys::path::has_extension(Output)) 3522 Output += ".pch"; 3523 } else { 3524 Output = BaseName; 3525 llvm::sys::path::replace_extension(Output, ".pch"); 3526 } 3527 return Output.str(); 3528 } 3529 3530 const ToolChain &Driver::getToolChain(const ArgList &Args, 3531 const llvm::Triple &Target) const { 3532 3533 ToolChain *&TC = ToolChains[Target.str()]; 3534 if (!TC) { 3535 switch (Target.getOS()) { 3536 case llvm::Triple::Haiku: 3537 TC = new toolchains::Haiku(*this, Target, Args); 3538 break; 3539 case llvm::Triple::CloudABI: 3540 TC = new toolchains::CloudABI(*this, Target, Args); 3541 break; 3542 case llvm::Triple::Darwin: 3543 case llvm::Triple::MacOSX: 3544 case llvm::Triple::IOS: 3545 case llvm::Triple::TvOS: 3546 case llvm::Triple::WatchOS: 3547 TC = new toolchains::DarwinClang(*this, Target, Args); 3548 break; 3549 case llvm::Triple::DragonFly: 3550 TC = new toolchains::DragonFly(*this, Target, Args); 3551 break; 3552 case llvm::Triple::OpenBSD: 3553 TC = new toolchains::OpenBSD(*this, Target, Args); 3554 break; 3555 case llvm::Triple::Bitrig: 3556 TC = new toolchains::Bitrig(*this, Target, Args); 3557 break; 3558 case llvm::Triple::NetBSD: 3559 TC = new toolchains::NetBSD(*this, Target, Args); 3560 break; 3561 case llvm::Triple::FreeBSD: 3562 TC = new toolchains::FreeBSD(*this, Target, Args); 3563 break; 3564 case llvm::Triple::Minix: 3565 TC = new toolchains::Minix(*this, Target, Args); 3566 break; 3567 case llvm::Triple::Linux: 3568 case llvm::Triple::ELFIAMCU: 3569 if (Target.getArch() == llvm::Triple::hexagon) 3570 TC = new toolchains::HexagonToolChain(*this, Target, Args); 3571 else if ((Target.getVendor() == llvm::Triple::MipsTechnologies) && 3572 !Target.hasEnvironment()) 3573 TC = new toolchains::MipsLLVMToolChain(*this, Target, Args); 3574 else 3575 TC = new toolchains::Linux(*this, Target, Args); 3576 break; 3577 case llvm::Triple::NaCl: 3578 TC = new toolchains::NaClToolChain(*this, Target, Args); 3579 break; 3580 case llvm::Triple::Fuchsia: 3581 TC = new toolchains::Fuchsia(*this, Target, Args); 3582 break; 3583 case llvm::Triple::Solaris: 3584 TC = new toolchains::Solaris(*this, Target, Args); 3585 break; 3586 case llvm::Triple::AMDHSA: 3587 TC = new toolchains::AMDGPUToolChain(*this, Target, Args); 3588 break; 3589 case llvm::Triple::Win32: 3590 switch (Target.getEnvironment()) { 3591 default: 3592 if (Target.isOSBinFormatELF()) 3593 TC = new toolchains::Generic_ELF(*this, Target, Args); 3594 else if (Target.isOSBinFormatMachO()) 3595 TC = new toolchains::MachO(*this, Target, Args); 3596 else 3597 TC = new toolchains::Generic_GCC(*this, Target, Args); 3598 break; 3599 case llvm::Triple::GNU: 3600 TC = new toolchains::MinGW(*this, Target, Args); 3601 break; 3602 case llvm::Triple::Itanium: 3603 TC = new toolchains::CrossWindowsToolChain(*this, Target, Args); 3604 break; 3605 case llvm::Triple::MSVC: 3606 case llvm::Triple::UnknownEnvironment: 3607 TC = new toolchains::MSVCToolChain(*this, Target, Args); 3608 break; 3609 } 3610 break; 3611 case llvm::Triple::CUDA: 3612 TC = new toolchains::CudaToolChain(*this, Target, Args); 3613 break; 3614 case llvm::Triple::PS4: 3615 TC = new toolchains::PS4CPU(*this, Target, Args); 3616 break; 3617 case llvm::Triple::Contiki: 3618 TC = new toolchains::Contiki(*this, Target, Args); 3619 break; 3620 default: 3621 // Of these targets, Hexagon is the only one that might have 3622 // an OS of Linux, in which case it got handled above already. 3623 switch (Target.getArch()) { 3624 case llvm::Triple::tce: 3625 TC = new toolchains::TCEToolChain(*this, Target, Args); 3626 break; 3627 case llvm::Triple::hexagon: 3628 TC = new toolchains::HexagonToolChain(*this, Target, Args); 3629 break; 3630 case llvm::Triple::lanai: 3631 TC = new toolchains::LanaiToolChain(*this, Target, Args); 3632 break; 3633 case llvm::Triple::xcore: 3634 TC = new toolchains::XCoreToolChain(*this, Target, Args); 3635 break; 3636 case llvm::Triple::wasm32: 3637 case llvm::Triple::wasm64: 3638 TC = new toolchains::WebAssembly(*this, Target, Args); 3639 break; 3640 default: 3641 if (Target.getVendor() == llvm::Triple::Myriad) 3642 TC = new toolchains::MyriadToolChain(*this, Target, Args); 3643 else if (Target.isOSBinFormatELF()) 3644 TC = new toolchains::Generic_ELF(*this, Target, Args); 3645 else if (Target.isOSBinFormatMachO()) 3646 TC = new toolchains::MachO(*this, Target, Args); 3647 else 3648 TC = new toolchains::Generic_GCC(*this, Target, Args); 3649 } 3650 } 3651 } 3652 return *TC; 3653 } 3654 3655 bool Driver::ShouldUseClangCompiler(const JobAction &JA) const { 3656 // Say "no" if there is not exactly one input of a type clang understands. 3657 if (JA.size() != 1 || 3658 !types::isAcceptedByClang((*JA.input_begin())->getType())) 3659 return false; 3660 3661 // And say "no" if this is not a kind of action clang understands. 3662 if (!isa<PreprocessJobAction>(JA) && !isa<PrecompileJobAction>(JA) && 3663 !isa<CompileJobAction>(JA) && !isa<BackendJobAction>(JA)) 3664 return false; 3665 3666 return true; 3667 } 3668 3669 /// GetReleaseVersion - Parse (([0-9]+)(.([0-9]+)(.([0-9]+)?))?)? and return the 3670 /// grouped values as integers. Numbers which are not provided are set to 0. 3671 /// 3672 /// \return True if the entire string was parsed (9.2), or all groups were 3673 /// parsed (10.3.5extrastuff). 3674 bool Driver::GetReleaseVersion(StringRef Str, unsigned &Major, unsigned &Minor, 3675 unsigned &Micro, bool &HadExtra) { 3676 HadExtra = false; 3677 3678 Major = Minor = Micro = 0; 3679 if (Str.empty()) 3680 return false; 3681 3682 if (Str.consumeInteger(10, Major)) 3683 return false; 3684 if (Str.empty()) 3685 return true; 3686 if (Str[0] != '.') 3687 return false; 3688 3689 Str = Str.drop_front(1); 3690 3691 if (Str.consumeInteger(10, Minor)) 3692 return false; 3693 if (Str.empty()) 3694 return true; 3695 if (Str[0] != '.') 3696 return false; 3697 Str = Str.drop_front(1); 3698 3699 if (Str.consumeInteger(10, Micro)) 3700 return false; 3701 if (!Str.empty()) 3702 HadExtra = true; 3703 return true; 3704 } 3705 3706 /// Parse digits from a string \p Str and fulfill \p Digits with 3707 /// the parsed numbers. This method assumes that the max number of 3708 /// digits to look for is equal to Digits.size(). 3709 /// 3710 /// \return True if the entire string was parsed and there are 3711 /// no extra characters remaining at the end. 3712 bool Driver::GetReleaseVersion(StringRef Str, 3713 MutableArrayRef<unsigned> Digits) { 3714 if (Str.empty()) 3715 return false; 3716 3717 unsigned CurDigit = 0; 3718 while (CurDigit < Digits.size()) { 3719 unsigned Digit; 3720 if (Str.consumeInteger(10, Digit)) 3721 return false; 3722 Digits[CurDigit] = Digit; 3723 if (Str.empty()) 3724 return true; 3725 if (Str[0] != '.') 3726 return false; 3727 Str = Str.drop_front(1); 3728 CurDigit++; 3729 } 3730 3731 // More digits than requested, bail out... 3732 return false; 3733 } 3734 3735 std::pair<unsigned, unsigned> Driver::getIncludeExcludeOptionFlagMasks() const { 3736 unsigned IncludedFlagsBitmask = 0; 3737 unsigned ExcludedFlagsBitmask = options::NoDriverOption; 3738 3739 if (Mode == CLMode) { 3740 // Include CL and Core options. 3741 IncludedFlagsBitmask |= options::CLOption; 3742 IncludedFlagsBitmask |= options::CoreOption; 3743 } else { 3744 ExcludedFlagsBitmask |= options::CLOption; 3745 } 3746 3747 return std::make_pair(IncludedFlagsBitmask, ExcludedFlagsBitmask); 3748 } 3749 3750 bool clang::driver::isOptimizationLevelFast(const ArgList &Args) { 3751 return Args.hasFlag(options::OPT_Ofast, options::OPT_O_Group, false); 3752 } 3753