1 //===--- CommonArgs.cpp - Args handling for multiple toolchains -*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "CommonArgs.h" 10 #include "Arch/AArch64.h" 11 #include "Arch/ARM.h" 12 #include "Arch/M68k.h" 13 #include "Arch/Mips.h" 14 #include "Arch/PPC.h" 15 #include "Arch/SystemZ.h" 16 #include "Arch/VE.h" 17 #include "Arch/X86.h" 18 #include "HIPAMD.h" 19 #include "Hexagon.h" 20 #include "clang/Basic/CharInfo.h" 21 #include "clang/Basic/LangOptions.h" 22 #include "clang/Basic/ObjCRuntime.h" 23 #include "clang/Basic/Version.h" 24 #include "clang/Config/config.h" 25 #include "clang/Driver/Action.h" 26 #include "clang/Driver/Compilation.h" 27 #include "clang/Driver/Driver.h" 28 #include "clang/Driver/DriverDiagnostic.h" 29 #include "clang/Driver/InputInfo.h" 30 #include "clang/Driver/Job.h" 31 #include "clang/Driver/Options.h" 32 #include "clang/Driver/SanitizerArgs.h" 33 #include "clang/Driver/ToolChain.h" 34 #include "clang/Driver/Util.h" 35 #include "clang/Driver/XRayArgs.h" 36 #include "llvm/ADT/STLExtras.h" 37 #include "llvm/ADT/SmallSet.h" 38 #include "llvm/ADT/SmallString.h" 39 #include "llvm/ADT/StringExtras.h" 40 #include "llvm/ADT/StringSwitch.h" 41 #include "llvm/ADT/Twine.h" 42 #include "llvm/Config/llvm-config.h" 43 #include "llvm/Option/Arg.h" 44 #include "llvm/Option/ArgList.h" 45 #include "llvm/Option/Option.h" 46 #include "llvm/Support/CodeGen.h" 47 #include "llvm/Support/Compression.h" 48 #include "llvm/Support/Debug.h" 49 #include "llvm/Support/ErrorHandling.h" 50 #include "llvm/Support/FileSystem.h" 51 #include "llvm/Support/Host.h" 52 #include "llvm/Support/Path.h" 53 #include "llvm/Support/Process.h" 54 #include "llvm/Support/Program.h" 55 #include "llvm/Support/ScopedPrinter.h" 56 #include "llvm/Support/TargetParser.h" 57 #include "llvm/Support/Threading.h" 58 #include "llvm/Support/VirtualFileSystem.h" 59 #include "llvm/Support/YAMLParser.h" 60 61 using namespace clang::driver; 62 using namespace clang::driver::tools; 63 using namespace clang; 64 using namespace llvm::opt; 65 66 static void renderRpassOptions(const ArgList &Args, ArgStringList &CmdArgs) { 67 if (const Arg *A = Args.getLastArg(options::OPT_Rpass_EQ)) 68 CmdArgs.push_back(Args.MakeArgString(Twine("--plugin-opt=-pass-remarks=") + 69 A->getValue())); 70 71 if (const Arg *A = Args.getLastArg(options::OPT_Rpass_missed_EQ)) 72 CmdArgs.push_back(Args.MakeArgString( 73 Twine("--plugin-opt=-pass-remarks-missed=") + A->getValue())); 74 75 if (const Arg *A = Args.getLastArg(options::OPT_Rpass_analysis_EQ)) 76 CmdArgs.push_back(Args.MakeArgString( 77 Twine("--plugin-opt=-pass-remarks-analysis=") + A->getValue())); 78 } 79 80 static void renderRemarksOptions(const ArgList &Args, ArgStringList &CmdArgs, 81 const llvm::Triple &Triple, 82 const InputInfo &Input, 83 const InputInfo &Output) { 84 StringRef Format = "yaml"; 85 if (const Arg *A = Args.getLastArg(options::OPT_fsave_optimization_record_EQ)) 86 Format = A->getValue(); 87 88 SmallString<128> F; 89 const Arg *A = Args.getLastArg(options::OPT_foptimization_record_file_EQ); 90 if (A) 91 F = A->getValue(); 92 else if (Output.isFilename()) 93 F = Output.getFilename(); 94 95 assert(!F.empty() && "Cannot determine remarks output name."); 96 // Append "opt.ld.<format>" to the end of the file name. 97 CmdArgs.push_back( 98 Args.MakeArgString(Twine("--plugin-opt=opt-remarks-filename=") + F + 99 Twine(".opt.ld.") + Format)); 100 101 if (const Arg *A = 102 Args.getLastArg(options::OPT_foptimization_record_passes_EQ)) 103 CmdArgs.push_back(Args.MakeArgString( 104 Twine("--plugin-opt=opt-remarks-passes=") + A->getValue())); 105 106 CmdArgs.push_back(Args.MakeArgString( 107 Twine("--plugin-opt=opt-remarks-format=") + Format.data())); 108 } 109 110 static void renderRemarksHotnessOptions(const ArgList &Args, 111 ArgStringList &CmdArgs) { 112 if (Args.hasFlag(options::OPT_fdiagnostics_show_hotness, 113 options::OPT_fno_diagnostics_show_hotness, false)) 114 CmdArgs.push_back("--plugin-opt=opt-remarks-with-hotness"); 115 116 if (const Arg *A = 117 Args.getLastArg(options::OPT_fdiagnostics_hotness_threshold_EQ)) 118 CmdArgs.push_back(Args.MakeArgString( 119 Twine("--plugin-opt=opt-remarks-hotness-threshold=") + A->getValue())); 120 } 121 122 void tools::addPathIfExists(const Driver &D, const Twine &Path, 123 ToolChain::path_list &Paths) { 124 if (D.getVFS().exists(Path)) 125 Paths.push_back(Path.str()); 126 } 127 128 void tools::handleTargetFeaturesGroup(const ArgList &Args, 129 std::vector<StringRef> &Features, 130 OptSpecifier Group) { 131 for (const Arg *A : Args.filtered(Group)) { 132 StringRef Name = A->getOption().getName(); 133 A->claim(); 134 135 // Skip over "-m". 136 assert(Name.startswith("m") && "Invalid feature name."); 137 Name = Name.substr(1); 138 139 bool IsNegative = Name.startswith("no-"); 140 if (IsNegative) 141 Name = Name.substr(3); 142 Features.push_back(Args.MakeArgString((IsNegative ? "-" : "+") + Name)); 143 } 144 } 145 146 std::vector<StringRef> 147 tools::unifyTargetFeatures(const std::vector<StringRef> &Features) { 148 std::vector<StringRef> UnifiedFeatures; 149 // Find the last of each feature. 150 llvm::StringMap<unsigned> LastOpt; 151 for (unsigned I = 0, N = Features.size(); I < N; ++I) { 152 StringRef Name = Features[I]; 153 assert(Name[0] == '-' || Name[0] == '+'); 154 LastOpt[Name.drop_front(1)] = I; 155 } 156 157 for (unsigned I = 0, N = Features.size(); I < N; ++I) { 158 // If this feature was overridden, ignore it. 159 StringRef Name = Features[I]; 160 llvm::StringMap<unsigned>::iterator LastI = LastOpt.find(Name.drop_front(1)); 161 assert(LastI != LastOpt.end()); 162 unsigned Last = LastI->second; 163 if (Last != I) 164 continue; 165 166 UnifiedFeatures.push_back(Name); 167 } 168 return UnifiedFeatures; 169 } 170 171 void tools::addDirectoryList(const ArgList &Args, ArgStringList &CmdArgs, 172 const char *ArgName, const char *EnvVar) { 173 const char *DirList = ::getenv(EnvVar); 174 bool CombinedArg = false; 175 176 if (!DirList) 177 return; // Nothing to do. 178 179 StringRef Name(ArgName); 180 if (Name.equals("-I") || Name.equals("-L") || Name.empty()) 181 CombinedArg = true; 182 183 StringRef Dirs(DirList); 184 if (Dirs.empty()) // Empty string should not add '.'. 185 return; 186 187 StringRef::size_type Delim; 188 while ((Delim = Dirs.find(llvm::sys::EnvPathSeparator)) != StringRef::npos) { 189 if (Delim == 0) { // Leading colon. 190 if (CombinedArg) { 191 CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + ".")); 192 } else { 193 CmdArgs.push_back(ArgName); 194 CmdArgs.push_back("."); 195 } 196 } else { 197 if (CombinedArg) { 198 CmdArgs.push_back( 199 Args.MakeArgString(std::string(ArgName) + Dirs.substr(0, Delim))); 200 } else { 201 CmdArgs.push_back(ArgName); 202 CmdArgs.push_back(Args.MakeArgString(Dirs.substr(0, Delim))); 203 } 204 } 205 Dirs = Dirs.substr(Delim + 1); 206 } 207 208 if (Dirs.empty()) { // Trailing colon. 209 if (CombinedArg) { 210 CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + ".")); 211 } else { 212 CmdArgs.push_back(ArgName); 213 CmdArgs.push_back("."); 214 } 215 } else { // Add the last path. 216 if (CombinedArg) { 217 CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + Dirs)); 218 } else { 219 CmdArgs.push_back(ArgName); 220 CmdArgs.push_back(Args.MakeArgString(Dirs)); 221 } 222 } 223 } 224 225 void tools::AddLinkerInputs(const ToolChain &TC, const InputInfoList &Inputs, 226 const ArgList &Args, ArgStringList &CmdArgs, 227 const JobAction &JA) { 228 const Driver &D = TC.getDriver(); 229 230 // Add extra linker input arguments which are not treated as inputs 231 // (constructed via -Xarch_). 232 Args.AddAllArgValues(CmdArgs, options::OPT_Zlinker_input); 233 234 // LIBRARY_PATH are included before user inputs and only supported on native 235 // toolchains. 236 if (!TC.isCrossCompiling()) 237 addDirectoryList(Args, CmdArgs, "-L", "LIBRARY_PATH"); 238 239 for (const auto &II : Inputs) { 240 // If the current tool chain refers to an OpenMP offloading host, we 241 // should ignore inputs that refer to OpenMP offloading devices - 242 // they will be embedded according to a proper linker script. 243 if (auto *IA = II.getAction()) 244 if ((JA.isHostOffloading(Action::OFK_OpenMP) && 245 IA->isDeviceOffloading(Action::OFK_OpenMP))) 246 continue; 247 248 if (!TC.HasNativeLLVMSupport() && types::isLLVMIR(II.getType())) 249 // Don't try to pass LLVM inputs unless we have native support. 250 D.Diag(diag::err_drv_no_linker_llvm_support) << TC.getTripleString(); 251 252 // Add filenames immediately. 253 if (II.isFilename()) { 254 CmdArgs.push_back(II.getFilename()); 255 continue; 256 } 257 258 // In some error cases, the input could be Nothing; skip those. 259 if (II.isNothing()) 260 continue; 261 262 // Otherwise, this is a linker input argument. 263 const Arg &A = II.getInputArg(); 264 265 // Handle reserved library options. 266 if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx)) 267 TC.AddCXXStdlibLibArgs(Args, CmdArgs); 268 else if (A.getOption().matches(options::OPT_Z_reserved_lib_cckext)) 269 TC.AddCCKextLibArgs(Args, CmdArgs); 270 else if (A.getOption().matches(options::OPT_z)) { 271 // Pass -z prefix for gcc linker compatibility. 272 A.claim(); 273 A.render(Args, CmdArgs); 274 } else if (A.getOption().matches(options::OPT_b)) { 275 const llvm::Triple &T = TC.getTriple(); 276 if (!T.isOSAIX()) { 277 TC.getDriver().Diag(diag::err_drv_unsupported_opt_for_target) 278 << A.getSpelling() << T.str(); 279 } 280 // Pass -b prefix for AIX linker. 281 A.claim(); 282 A.render(Args, CmdArgs); 283 } else { 284 A.renderAsInput(Args, CmdArgs); 285 } 286 } 287 } 288 289 void tools::addLinkerCompressDebugSectionsOption( 290 const ToolChain &TC, const llvm::opt::ArgList &Args, 291 llvm::opt::ArgStringList &CmdArgs) { 292 // GNU ld supports --compress-debug-sections=none|zlib|zlib-gnu|zlib-gabi 293 // whereas zlib is an alias to zlib-gabi and zlib-gnu is obsoleted. Therefore 294 // -gz=none|zlib are translated to --compress-debug-sections=none|zlib. -gz 295 // is not translated since ld --compress-debug-sections option requires an 296 // argument. 297 if (const Arg *A = Args.getLastArg(options::OPT_gz_EQ)) { 298 StringRef V = A->getValue(); 299 if (V == "none" || V == "zlib") 300 CmdArgs.push_back(Args.MakeArgString("--compress-debug-sections=" + V)); 301 else 302 TC.getDriver().Diag(diag::err_drv_unsupported_option_argument) 303 << A->getOption().getName() << V; 304 } 305 } 306 307 void tools::AddTargetFeature(const ArgList &Args, 308 std::vector<StringRef> &Features, 309 OptSpecifier OnOpt, OptSpecifier OffOpt, 310 StringRef FeatureName) { 311 if (Arg *A = Args.getLastArg(OnOpt, OffOpt)) { 312 if (A->getOption().matches(OnOpt)) 313 Features.push_back(Args.MakeArgString("+" + FeatureName)); 314 else 315 Features.push_back(Args.MakeArgString("-" + FeatureName)); 316 } 317 } 318 319 /// Get the (LLVM) name of the AMDGPU gpu we are targeting. 320 static std::string getAMDGPUTargetGPU(const llvm::Triple &T, 321 const ArgList &Args) { 322 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) { 323 auto GPUName = getProcessorFromTargetID(T, A->getValue()); 324 return llvm::StringSwitch<std::string>(GPUName) 325 .Cases("rv630", "rv635", "r600") 326 .Cases("rv610", "rv620", "rs780", "rs880") 327 .Case("rv740", "rv770") 328 .Case("palm", "cedar") 329 .Cases("sumo", "sumo2", "sumo") 330 .Case("hemlock", "cypress") 331 .Case("aruba", "cayman") 332 .Default(GPUName.str()); 333 } 334 return ""; 335 } 336 337 static std::string getLanaiTargetCPU(const ArgList &Args) { 338 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) { 339 return A->getValue(); 340 } 341 return ""; 342 } 343 344 /// Get the (LLVM) name of the WebAssembly cpu we are targeting. 345 static StringRef getWebAssemblyTargetCPU(const ArgList &Args) { 346 // If we have -mcpu=, use that. 347 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) { 348 StringRef CPU = A->getValue(); 349 350 #ifdef __wasm__ 351 // Handle "native" by examining the host. "native" isn't meaningful when 352 // cross compiling, so only support this when the host is also WebAssembly. 353 if (CPU == "native") 354 return llvm::sys::getHostCPUName(); 355 #endif 356 357 return CPU; 358 } 359 360 return "generic"; 361 } 362 363 std::string tools::getCPUName(const Driver &D, const ArgList &Args, 364 const llvm::Triple &T, bool FromAs) { 365 Arg *A; 366 367 switch (T.getArch()) { 368 default: 369 return ""; 370 371 case llvm::Triple::aarch64: 372 case llvm::Triple::aarch64_32: 373 case llvm::Triple::aarch64_be: 374 return aarch64::getAArch64TargetCPU(Args, T, A); 375 376 case llvm::Triple::arm: 377 case llvm::Triple::armeb: 378 case llvm::Triple::thumb: 379 case llvm::Triple::thumbeb: { 380 StringRef MArch, MCPU; 381 arm::getARMArchCPUFromArgs(Args, MArch, MCPU, FromAs); 382 return arm::getARMTargetCPU(MCPU, MArch, T); 383 } 384 385 case llvm::Triple::avr: 386 if (const Arg *A = Args.getLastArg(options::OPT_mmcu_EQ)) 387 return A->getValue(); 388 return ""; 389 390 case llvm::Triple::m68k: 391 return m68k::getM68kTargetCPU(Args); 392 393 case llvm::Triple::mips: 394 case llvm::Triple::mipsel: 395 case llvm::Triple::mips64: 396 case llvm::Triple::mips64el: { 397 StringRef CPUName; 398 StringRef ABIName; 399 mips::getMipsCPUAndABI(Args, T, CPUName, ABIName); 400 return std::string(CPUName); 401 } 402 403 case llvm::Triple::nvptx: 404 case llvm::Triple::nvptx64: 405 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) 406 return A->getValue(); 407 return ""; 408 409 case llvm::Triple::ppc: 410 case llvm::Triple::ppcle: 411 case llvm::Triple::ppc64: 412 case llvm::Triple::ppc64le: { 413 std::string TargetCPUName = ppc::getPPCTargetCPU(Args); 414 // LLVM may default to generating code for the native CPU, 415 // but, like gcc, we default to a more generic option for 416 // each architecture. (except on AIX) 417 if (!TargetCPUName.empty()) 418 return TargetCPUName; 419 420 if (T.isOSAIX()) 421 TargetCPUName = "pwr7"; 422 else if (T.getArch() == llvm::Triple::ppc64le) 423 TargetCPUName = "ppc64le"; 424 else if (T.getArch() == llvm::Triple::ppc64) 425 TargetCPUName = "ppc64"; 426 else 427 TargetCPUName = "ppc"; 428 429 return TargetCPUName; 430 } 431 case llvm::Triple::csky: 432 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) 433 return A->getValue(); 434 else if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) 435 return A->getValue(); 436 else 437 return "ck810"; 438 case llvm::Triple::riscv32: 439 case llvm::Triple::riscv64: 440 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) 441 return A->getValue(); 442 return ""; 443 444 case llvm::Triple::bpfel: 445 case llvm::Triple::bpfeb: 446 case llvm::Triple::sparc: 447 case llvm::Triple::sparcel: 448 case llvm::Triple::sparcv9: 449 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) 450 return A->getValue(); 451 if (T.getArch() == llvm::Triple::sparc && T.isOSSolaris()) 452 return "v9"; 453 return ""; 454 455 case llvm::Triple::x86: 456 case llvm::Triple::x86_64: 457 return x86::getX86TargetCPU(D, Args, T); 458 459 case llvm::Triple::hexagon: 460 return "hexagon" + 461 toolchains::HexagonToolChain::GetTargetCPUVersion(Args).str(); 462 463 case llvm::Triple::lanai: 464 return getLanaiTargetCPU(Args); 465 466 case llvm::Triple::systemz: 467 return systemz::getSystemZTargetCPU(Args); 468 469 case llvm::Triple::r600: 470 case llvm::Triple::amdgcn: 471 return getAMDGPUTargetGPU(T, Args); 472 473 case llvm::Triple::wasm32: 474 case llvm::Triple::wasm64: 475 return std::string(getWebAssemblyTargetCPU(Args)); 476 } 477 } 478 479 llvm::StringRef tools::getLTOParallelism(const ArgList &Args, const Driver &D) { 480 Arg *LtoJobsArg = Args.getLastArg(options::OPT_flto_jobs_EQ); 481 if (!LtoJobsArg) 482 return {}; 483 if (!llvm::get_threadpool_strategy(LtoJobsArg->getValue())) 484 D.Diag(diag::err_drv_invalid_int_value) 485 << LtoJobsArg->getAsString(Args) << LtoJobsArg->getValue(); 486 return LtoJobsArg->getValue(); 487 } 488 489 // CloudABI and PS4/PS5 use -ffunction-sections and -fdata-sections by default. 490 bool tools::isUseSeparateSections(const llvm::Triple &Triple) { 491 return Triple.getOS() == llvm::Triple::CloudABI || Triple.isPS(); 492 } 493 494 void tools::addLTOOptions(const ToolChain &ToolChain, const ArgList &Args, 495 ArgStringList &CmdArgs, const InputInfo &Output, 496 const InputInfo &Input, bool IsThinLTO) { 497 const char *Linker = Args.MakeArgString(ToolChain.GetLinkerPath()); 498 const Driver &D = ToolChain.getDriver(); 499 if (llvm::sys::path::filename(Linker) != "ld.lld" && 500 llvm::sys::path::stem(Linker) != "ld.lld") { 501 // Tell the linker to load the plugin. This has to come before 502 // AddLinkerInputs as gold requires -plugin to come before any -plugin-opt 503 // that -Wl might forward. 504 CmdArgs.push_back("-plugin"); 505 506 #if defined(_WIN32) 507 const char *Suffix = ".dll"; 508 #elif defined(__APPLE__) 509 const char *Suffix = ".dylib"; 510 #else 511 const char *Suffix = ".so"; 512 #endif 513 514 SmallString<1024> Plugin; 515 llvm::sys::path::native( 516 Twine(D.Dir) + "/../lib" CLANG_LIBDIR_SUFFIX "/LLVMgold" + Suffix, 517 Plugin); 518 CmdArgs.push_back(Args.MakeArgString(Plugin)); 519 } 520 521 // Try to pass driver level flags relevant to LTO code generation down to 522 // the plugin. 523 524 // Handle flags for selecting CPU variants. 525 std::string CPU = getCPUName(D, Args, ToolChain.getTriple()); 526 if (!CPU.empty()) 527 CmdArgs.push_back(Args.MakeArgString(Twine("-plugin-opt=mcpu=") + CPU)); 528 529 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) { 530 // The optimization level matches 531 // CompilerInvocation.cpp:getOptimizationLevel(). 532 StringRef OOpt; 533 if (A->getOption().matches(options::OPT_O4) || 534 A->getOption().matches(options::OPT_Ofast)) 535 OOpt = "3"; 536 else if (A->getOption().matches(options::OPT_O)) { 537 OOpt = A->getValue(); 538 if (OOpt == "g") 539 OOpt = "1"; 540 else if (OOpt == "s" || OOpt == "z") 541 OOpt = "2"; 542 } else if (A->getOption().matches(options::OPT_O0)) 543 OOpt = "0"; 544 if (!OOpt.empty()) 545 CmdArgs.push_back(Args.MakeArgString(Twine("-plugin-opt=O") + OOpt)); 546 } 547 548 if (Args.hasArg(options::OPT_gsplit_dwarf)) { 549 CmdArgs.push_back( 550 Args.MakeArgString(Twine("-plugin-opt=dwo_dir=") + 551 Output.getFilename() + "_dwo")); 552 } 553 554 if (IsThinLTO) 555 CmdArgs.push_back("-plugin-opt=thinlto"); 556 557 StringRef Parallelism = getLTOParallelism(Args, D); 558 if (!Parallelism.empty()) 559 CmdArgs.push_back( 560 Args.MakeArgString("-plugin-opt=jobs=" + Twine(Parallelism))); 561 562 if (!CLANG_ENABLE_OPAQUE_POINTERS_INTERNAL) 563 CmdArgs.push_back(Args.MakeArgString("-plugin-opt=no-opaque-pointers")); 564 565 // If an explicit debugger tuning argument appeared, pass it along. 566 if (Arg *A = Args.getLastArg(options::OPT_gTune_Group, 567 options::OPT_ggdbN_Group)) { 568 if (A->getOption().matches(options::OPT_glldb)) 569 CmdArgs.push_back("-plugin-opt=-debugger-tune=lldb"); 570 else if (A->getOption().matches(options::OPT_gsce)) 571 CmdArgs.push_back("-plugin-opt=-debugger-tune=sce"); 572 else if (A->getOption().matches(options::OPT_gdbx)) 573 CmdArgs.push_back("-plugin-opt=-debugger-tune=dbx"); 574 else 575 CmdArgs.push_back("-plugin-opt=-debugger-tune=gdb"); 576 } 577 578 bool UseSeparateSections = 579 isUseSeparateSections(ToolChain.getEffectiveTriple()); 580 581 if (Args.hasFlag(options::OPT_ffunction_sections, 582 options::OPT_fno_function_sections, UseSeparateSections)) { 583 CmdArgs.push_back("-plugin-opt=-function-sections"); 584 } 585 586 if (Args.hasFlag(options::OPT_fdata_sections, options::OPT_fno_data_sections, 587 UseSeparateSections)) { 588 CmdArgs.push_back("-plugin-opt=-data-sections"); 589 } 590 591 // Pass an option to enable split machine functions. 592 if (auto *A = Args.getLastArg(options::OPT_fsplit_machine_functions, 593 options::OPT_fno_split_machine_functions)) { 594 if (A->getOption().matches(options::OPT_fsplit_machine_functions)) 595 CmdArgs.push_back("-plugin-opt=-split-machine-functions"); 596 } 597 598 if (Arg *A = getLastProfileSampleUseArg(Args)) { 599 StringRef FName = A->getValue(); 600 if (!llvm::sys::fs::exists(FName)) 601 D.Diag(diag::err_drv_no_such_file) << FName; 602 else 603 CmdArgs.push_back( 604 Args.MakeArgString(Twine("-plugin-opt=sample-profile=") + FName)); 605 } 606 607 auto *CSPGOGenerateArg = Args.getLastArg(options::OPT_fcs_profile_generate, 608 options::OPT_fcs_profile_generate_EQ, 609 options::OPT_fno_profile_generate); 610 if (CSPGOGenerateArg && 611 CSPGOGenerateArg->getOption().matches(options::OPT_fno_profile_generate)) 612 CSPGOGenerateArg = nullptr; 613 614 auto *ProfileUseArg = getLastProfileUseArg(Args); 615 616 if (CSPGOGenerateArg) { 617 CmdArgs.push_back(Args.MakeArgString("-plugin-opt=cs-profile-generate")); 618 if (CSPGOGenerateArg->getOption().matches( 619 options::OPT_fcs_profile_generate_EQ)) { 620 SmallString<128> Path(CSPGOGenerateArg->getValue()); 621 llvm::sys::path::append(Path, "default_%m.profraw"); 622 CmdArgs.push_back( 623 Args.MakeArgString(Twine("-plugin-opt=cs-profile-path=") + Path)); 624 } else 625 CmdArgs.push_back( 626 Args.MakeArgString("-plugin-opt=cs-profile-path=default_%m.profraw")); 627 } else if (ProfileUseArg) { 628 SmallString<128> Path( 629 ProfileUseArg->getNumValues() == 0 ? "" : ProfileUseArg->getValue()); 630 if (Path.empty() || llvm::sys::fs::is_directory(Path)) 631 llvm::sys::path::append(Path, "default.profdata"); 632 CmdArgs.push_back(Args.MakeArgString(Twine("-plugin-opt=cs-profile-path=") + 633 Path)); 634 } 635 636 // Setup statistics file output. 637 SmallString<128> StatsFile = getStatsFileName(Args, Output, Input, D); 638 if (!StatsFile.empty()) 639 CmdArgs.push_back( 640 Args.MakeArgString(Twine("-plugin-opt=stats-file=") + StatsFile)); 641 642 addX86AlignBranchArgs(D, Args, CmdArgs, /*IsLTO=*/true); 643 644 // Handle remark diagnostics on screen options: '-Rpass-*'. 645 renderRpassOptions(Args, CmdArgs); 646 647 // Handle serialized remarks options: '-fsave-optimization-record' 648 // and '-foptimization-record-*'. 649 if (willEmitRemarks(Args)) 650 renderRemarksOptions(Args, CmdArgs, ToolChain.getEffectiveTriple(), Input, 651 Output); 652 653 // Handle remarks hotness/threshold related options. 654 renderRemarksHotnessOptions(Args, CmdArgs); 655 656 addMachineOutlinerArgs(D, Args, CmdArgs, ToolChain.getEffectiveTriple(), 657 /*IsLTO=*/true); 658 } 659 660 void tools::addOpenMPRuntimeSpecificRPath(const ToolChain &TC, 661 const ArgList &Args, 662 ArgStringList &CmdArgs) { 663 664 if (Args.hasFlag(options::OPT_fopenmp_implicit_rpath, 665 options::OPT_fno_openmp_implicit_rpath, true)) { 666 // Default to clang lib / lib64 folder, i.e. the same location as device 667 // runtime 668 SmallString<256> DefaultLibPath = 669 llvm::sys::path::parent_path(TC.getDriver().Dir); 670 llvm::sys::path::append(DefaultLibPath, Twine("lib") + CLANG_LIBDIR_SUFFIX); 671 CmdArgs.push_back("-rpath"); 672 CmdArgs.push_back(Args.MakeArgString(DefaultLibPath)); 673 } 674 } 675 676 void tools::addOpenMPRuntimeLibraryPath(const ToolChain &TC, 677 const ArgList &Args, 678 ArgStringList &CmdArgs) { 679 // Default to clang lib / lib64 folder, i.e. the same location as device 680 // runtime. 681 SmallString<256> DefaultLibPath = 682 llvm::sys::path::parent_path(TC.getDriver().Dir); 683 llvm::sys::path::append(DefaultLibPath, Twine("lib") + CLANG_LIBDIR_SUFFIX); 684 CmdArgs.push_back(Args.MakeArgString("-L" + DefaultLibPath)); 685 } 686 687 void tools::addArchSpecificRPath(const ToolChain &TC, const ArgList &Args, 688 ArgStringList &CmdArgs) { 689 // Enable -frtlib-add-rpath by default for the case of VE. 690 const bool IsVE = TC.getTriple().isVE(); 691 bool DefaultValue = IsVE; 692 if (!Args.hasFlag(options::OPT_frtlib_add_rpath, 693 options::OPT_fno_rtlib_add_rpath, DefaultValue)) 694 return; 695 696 std::string CandidateRPath = TC.getArchSpecificLibPath(); 697 if (TC.getVFS().exists(CandidateRPath)) { 698 CmdArgs.push_back("-rpath"); 699 CmdArgs.push_back(Args.MakeArgString(CandidateRPath)); 700 } 701 } 702 703 bool tools::addOpenMPRuntime(ArgStringList &CmdArgs, const ToolChain &TC, 704 const ArgList &Args, bool ForceStaticHostRuntime, 705 bool IsOffloadingHost, bool GompNeedsRT) { 706 if (!Args.hasFlag(options::OPT_fopenmp, options::OPT_fopenmp_EQ, 707 options::OPT_fno_openmp, false)) 708 return false; 709 710 Driver::OpenMPRuntimeKind RTKind = TC.getDriver().getOpenMPRuntime(Args); 711 712 if (RTKind == Driver::OMPRT_Unknown) 713 // Already diagnosed. 714 return false; 715 716 if (ForceStaticHostRuntime) 717 CmdArgs.push_back("-Bstatic"); 718 719 switch (RTKind) { 720 case Driver::OMPRT_OMP: 721 CmdArgs.push_back("-lomp"); 722 break; 723 case Driver::OMPRT_GOMP: 724 CmdArgs.push_back("-lgomp"); 725 break; 726 case Driver::OMPRT_IOMP5: 727 CmdArgs.push_back("-liomp5"); 728 break; 729 case Driver::OMPRT_Unknown: 730 break; 731 } 732 733 if (ForceStaticHostRuntime) 734 CmdArgs.push_back("-Bdynamic"); 735 736 if (RTKind == Driver::OMPRT_GOMP && GompNeedsRT) 737 CmdArgs.push_back("-lrt"); 738 739 if (IsOffloadingHost) 740 CmdArgs.push_back("-lomptarget"); 741 742 if (IsOffloadingHost && TC.getDriver().isUsingLTO(/* IsOffload */ true)) 743 CmdArgs.push_back("-lomptarget.devicertl"); 744 745 addArchSpecificRPath(TC, Args, CmdArgs); 746 747 if (RTKind == Driver::OMPRT_OMP) 748 addOpenMPRuntimeSpecificRPath(TC, Args, CmdArgs); 749 addOpenMPRuntimeLibraryPath(TC, Args, CmdArgs); 750 751 return true; 752 } 753 754 void tools::addFortranRuntimeLibs(llvm::opt::ArgStringList &CmdArgs) { 755 CmdArgs.push_back("-lFortran_main"); 756 CmdArgs.push_back("-lFortranRuntime"); 757 CmdArgs.push_back("-lFortranDecimal"); 758 } 759 760 void tools::addFortranRuntimeLibraryPath(const ToolChain &TC, 761 const llvm::opt::ArgList &Args, 762 ArgStringList &CmdArgs) { 763 // Default to the <driver-path>/../lib directory. This works fine on the 764 // platforms that we have tested so far. We will probably have to re-fine 765 // this in the future. In particular, on some platforms, we may need to use 766 // lib64 instead of lib. 767 SmallString<256> DefaultLibPath = 768 llvm::sys::path::parent_path(TC.getDriver().Dir); 769 llvm::sys::path::append(DefaultLibPath, "lib"); 770 CmdArgs.push_back(Args.MakeArgString("-L" + DefaultLibPath)); 771 } 772 773 static void addSanitizerRuntime(const ToolChain &TC, const ArgList &Args, 774 ArgStringList &CmdArgs, StringRef Sanitizer, 775 bool IsShared, bool IsWhole) { 776 // Wrap any static runtimes that must be forced into executable in 777 // whole-archive. 778 if (IsWhole) CmdArgs.push_back("--whole-archive"); 779 CmdArgs.push_back(TC.getCompilerRTArgString( 780 Args, Sanitizer, IsShared ? ToolChain::FT_Shared : ToolChain::FT_Static)); 781 if (IsWhole) CmdArgs.push_back("--no-whole-archive"); 782 783 if (IsShared) { 784 addArchSpecificRPath(TC, Args, CmdArgs); 785 } 786 } 787 788 // Tries to use a file with the list of dynamic symbols that need to be exported 789 // from the runtime library. Returns true if the file was found. 790 static bool addSanitizerDynamicList(const ToolChain &TC, const ArgList &Args, 791 ArgStringList &CmdArgs, 792 StringRef Sanitizer) { 793 // Solaris ld defaults to --export-dynamic behaviour but doesn't support 794 // the option, so don't try to pass it. 795 if (TC.getTriple().getOS() == llvm::Triple::Solaris) 796 return true; 797 SmallString<128> SanRT(TC.getCompilerRT(Args, Sanitizer)); 798 if (llvm::sys::fs::exists(SanRT + ".syms")) { 799 CmdArgs.push_back(Args.MakeArgString("--dynamic-list=" + SanRT + ".syms")); 800 return true; 801 } 802 return false; 803 } 804 805 const char *tools::getAsNeededOption(const ToolChain &TC, bool as_needed) { 806 assert(!TC.getTriple().isOSAIX() && 807 "AIX linker does not support any form of --as-needed option yet."); 808 809 // While the Solaris 11.2 ld added --as-needed/--no-as-needed as aliases 810 // for the native forms -z ignore/-z record, they are missing in Illumos, 811 // so always use the native form. 812 if (TC.getTriple().isOSSolaris()) 813 return as_needed ? "-zignore" : "-zrecord"; 814 else 815 return as_needed ? "--as-needed" : "--no-as-needed"; 816 } 817 818 void tools::linkSanitizerRuntimeDeps(const ToolChain &TC, 819 ArgStringList &CmdArgs) { 820 // Force linking against the system libraries sanitizers depends on 821 // (see PR15823 why this is necessary). 822 CmdArgs.push_back(getAsNeededOption(TC, false)); 823 // There's no libpthread or librt on RTEMS & Android. 824 if (TC.getTriple().getOS() != llvm::Triple::RTEMS && 825 !TC.getTriple().isAndroid()) { 826 CmdArgs.push_back("-lpthread"); 827 if (!TC.getTriple().isOSOpenBSD()) 828 CmdArgs.push_back("-lrt"); 829 } 830 CmdArgs.push_back("-lm"); 831 // There's no libdl on all OSes. 832 if (!TC.getTriple().isOSFreeBSD() && !TC.getTriple().isOSNetBSD() && 833 !TC.getTriple().isOSOpenBSD() && 834 TC.getTriple().getOS() != llvm::Triple::RTEMS) 835 CmdArgs.push_back("-ldl"); 836 // Required for backtrace on some OSes 837 if (TC.getTriple().isOSFreeBSD() || 838 TC.getTriple().isOSNetBSD() || 839 TC.getTriple().isOSOpenBSD()) 840 CmdArgs.push_back("-lexecinfo"); 841 } 842 843 static void 844 collectSanitizerRuntimes(const ToolChain &TC, const ArgList &Args, 845 SmallVectorImpl<StringRef> &SharedRuntimes, 846 SmallVectorImpl<StringRef> &StaticRuntimes, 847 SmallVectorImpl<StringRef> &NonWholeStaticRuntimes, 848 SmallVectorImpl<StringRef> &HelperStaticRuntimes, 849 SmallVectorImpl<StringRef> &RequiredSymbols) { 850 const SanitizerArgs &SanArgs = TC.getSanitizerArgs(Args); 851 // Collect shared runtimes. 852 if (SanArgs.needsSharedRt()) { 853 if (SanArgs.needsAsanRt() && SanArgs.linkRuntimes()) { 854 SharedRuntimes.push_back("asan"); 855 if (!Args.hasArg(options::OPT_shared) && !TC.getTriple().isAndroid()) 856 HelperStaticRuntimes.push_back("asan-preinit"); 857 } 858 if (SanArgs.needsMemProfRt() && SanArgs.linkRuntimes()) { 859 SharedRuntimes.push_back("memprof"); 860 if (!Args.hasArg(options::OPT_shared) && !TC.getTriple().isAndroid()) 861 HelperStaticRuntimes.push_back("memprof-preinit"); 862 } 863 if (SanArgs.needsUbsanRt() && SanArgs.linkRuntimes()) { 864 if (SanArgs.requiresMinimalRuntime()) 865 SharedRuntimes.push_back("ubsan_minimal"); 866 else 867 SharedRuntimes.push_back("ubsan_standalone"); 868 } 869 if (SanArgs.needsScudoRt() && SanArgs.linkRuntimes()) { 870 if (SanArgs.requiresMinimalRuntime()) 871 SharedRuntimes.push_back("scudo_minimal"); 872 else 873 SharedRuntimes.push_back("scudo"); 874 } 875 if (SanArgs.needsTsanRt() && SanArgs.linkRuntimes()) 876 SharedRuntimes.push_back("tsan"); 877 if (SanArgs.needsHwasanRt() && SanArgs.linkRuntimes()) { 878 if (SanArgs.needsHwasanAliasesRt()) 879 SharedRuntimes.push_back("hwasan_aliases"); 880 else 881 SharedRuntimes.push_back("hwasan"); 882 if (!Args.hasArg(options::OPT_shared)) 883 HelperStaticRuntimes.push_back("hwasan-preinit"); 884 } 885 } 886 887 // The stats_client library is also statically linked into DSOs. 888 if (SanArgs.needsStatsRt() && SanArgs.linkRuntimes()) 889 StaticRuntimes.push_back("stats_client"); 890 891 // Always link the static runtime regardless of DSO or executable. 892 if (SanArgs.needsAsanRt()) 893 HelperStaticRuntimes.push_back("asan_static"); 894 895 // Collect static runtimes. 896 if (Args.hasArg(options::OPT_shared)) { 897 // Don't link static runtimes into DSOs. 898 return; 899 } 900 901 // Each static runtime that has a DSO counterpart above is excluded below, 902 // but runtimes that exist only as static are not affected by needsSharedRt. 903 904 if (!SanArgs.needsSharedRt() && SanArgs.needsAsanRt() && SanArgs.linkRuntimes()) { 905 StaticRuntimes.push_back("asan"); 906 if (SanArgs.linkCXXRuntimes()) 907 StaticRuntimes.push_back("asan_cxx"); 908 } 909 910 if (!SanArgs.needsSharedRt() && SanArgs.needsMemProfRt() && 911 SanArgs.linkRuntimes()) { 912 StaticRuntimes.push_back("memprof"); 913 if (SanArgs.linkCXXRuntimes()) 914 StaticRuntimes.push_back("memprof_cxx"); 915 } 916 917 if (!SanArgs.needsSharedRt() && SanArgs.needsHwasanRt() && SanArgs.linkRuntimes()) { 918 if (SanArgs.needsHwasanAliasesRt()) { 919 StaticRuntimes.push_back("hwasan_aliases"); 920 if (SanArgs.linkCXXRuntimes()) 921 StaticRuntimes.push_back("hwasan_aliases_cxx"); 922 } else { 923 StaticRuntimes.push_back("hwasan"); 924 if (SanArgs.linkCXXRuntimes()) 925 StaticRuntimes.push_back("hwasan_cxx"); 926 } 927 } 928 if (SanArgs.needsDfsanRt() && SanArgs.linkRuntimes()) 929 StaticRuntimes.push_back("dfsan"); 930 if (SanArgs.needsLsanRt() && SanArgs.linkRuntimes()) 931 StaticRuntimes.push_back("lsan"); 932 if (SanArgs.needsMsanRt() && SanArgs.linkRuntimes()) { 933 StaticRuntimes.push_back("msan"); 934 if (SanArgs.linkCXXRuntimes()) 935 StaticRuntimes.push_back("msan_cxx"); 936 } 937 if (!SanArgs.needsSharedRt() && SanArgs.needsTsanRt() && 938 SanArgs.linkRuntimes()) { 939 StaticRuntimes.push_back("tsan"); 940 if (SanArgs.linkCXXRuntimes()) 941 StaticRuntimes.push_back("tsan_cxx"); 942 } 943 if (!SanArgs.needsSharedRt() && SanArgs.needsUbsanRt() && SanArgs.linkRuntimes()) { 944 if (SanArgs.requiresMinimalRuntime()) { 945 StaticRuntimes.push_back("ubsan_minimal"); 946 } else { 947 StaticRuntimes.push_back("ubsan_standalone"); 948 if (SanArgs.linkCXXRuntimes()) 949 StaticRuntimes.push_back("ubsan_standalone_cxx"); 950 } 951 } 952 if (SanArgs.needsSafeStackRt() && SanArgs.linkRuntimes()) { 953 NonWholeStaticRuntimes.push_back("safestack"); 954 RequiredSymbols.push_back("__safestack_init"); 955 } 956 if (!(SanArgs.needsSharedRt() && SanArgs.needsUbsanRt() && SanArgs.linkRuntimes())) { 957 if (SanArgs.needsCfiRt() && SanArgs.linkRuntimes()) 958 StaticRuntimes.push_back("cfi"); 959 if (SanArgs.needsCfiDiagRt() && SanArgs.linkRuntimes()) { 960 StaticRuntimes.push_back("cfi_diag"); 961 if (SanArgs.linkCXXRuntimes()) 962 StaticRuntimes.push_back("ubsan_standalone_cxx"); 963 } 964 } 965 if (SanArgs.needsStatsRt() && SanArgs.linkRuntimes()) { 966 NonWholeStaticRuntimes.push_back("stats"); 967 RequiredSymbols.push_back("__sanitizer_stats_register"); 968 } 969 if (!SanArgs.needsSharedRt() && SanArgs.needsScudoRt() && SanArgs.linkRuntimes()) { 970 if (SanArgs.requiresMinimalRuntime()) { 971 StaticRuntimes.push_back("scudo_minimal"); 972 if (SanArgs.linkCXXRuntimes()) 973 StaticRuntimes.push_back("scudo_cxx_minimal"); 974 } else { 975 StaticRuntimes.push_back("scudo"); 976 if (SanArgs.linkCXXRuntimes()) 977 StaticRuntimes.push_back("scudo_cxx"); 978 } 979 } 980 } 981 982 // Should be called before we add system libraries (C++ ABI, libstdc++/libc++, 983 // C runtime, etc). Returns true if sanitizer system deps need to be linked in. 984 bool tools::addSanitizerRuntimes(const ToolChain &TC, const ArgList &Args, 985 ArgStringList &CmdArgs) { 986 SmallVector<StringRef, 4> SharedRuntimes, StaticRuntimes, 987 NonWholeStaticRuntimes, HelperStaticRuntimes, RequiredSymbols; 988 collectSanitizerRuntimes(TC, Args, SharedRuntimes, StaticRuntimes, 989 NonWholeStaticRuntimes, HelperStaticRuntimes, 990 RequiredSymbols); 991 992 const SanitizerArgs &SanArgs = TC.getSanitizerArgs(Args); 993 // Inject libfuzzer dependencies. 994 if (SanArgs.needsFuzzer() && SanArgs.linkRuntimes() && 995 !Args.hasArg(options::OPT_shared)) { 996 997 addSanitizerRuntime(TC, Args, CmdArgs, "fuzzer", false, true); 998 if (SanArgs.needsFuzzerInterceptors()) 999 addSanitizerRuntime(TC, Args, CmdArgs, "fuzzer_interceptors", false, 1000 true); 1001 if (!Args.hasArg(clang::driver::options::OPT_nostdlibxx)) { 1002 bool OnlyLibstdcxxStatic = Args.hasArg(options::OPT_static_libstdcxx) && 1003 !Args.hasArg(options::OPT_static); 1004 if (OnlyLibstdcxxStatic) 1005 CmdArgs.push_back("-Bstatic"); 1006 TC.AddCXXStdlibLibArgs(Args, CmdArgs); 1007 if (OnlyLibstdcxxStatic) 1008 CmdArgs.push_back("-Bdynamic"); 1009 } 1010 } 1011 1012 for (auto RT : SharedRuntimes) 1013 addSanitizerRuntime(TC, Args, CmdArgs, RT, true, false); 1014 for (auto RT : HelperStaticRuntimes) 1015 addSanitizerRuntime(TC, Args, CmdArgs, RT, false, true); 1016 bool AddExportDynamic = false; 1017 for (auto RT : StaticRuntimes) { 1018 addSanitizerRuntime(TC, Args, CmdArgs, RT, false, true); 1019 AddExportDynamic |= !addSanitizerDynamicList(TC, Args, CmdArgs, RT); 1020 } 1021 for (auto RT : NonWholeStaticRuntimes) { 1022 addSanitizerRuntime(TC, Args, CmdArgs, RT, false, false); 1023 AddExportDynamic |= !addSanitizerDynamicList(TC, Args, CmdArgs, RT); 1024 } 1025 for (auto S : RequiredSymbols) { 1026 CmdArgs.push_back("-u"); 1027 CmdArgs.push_back(Args.MakeArgString(S)); 1028 } 1029 // If there is a static runtime with no dynamic list, force all the symbols 1030 // to be dynamic to be sure we export sanitizer interface functions. 1031 if (AddExportDynamic) 1032 CmdArgs.push_back("--export-dynamic"); 1033 1034 if (SanArgs.hasCrossDsoCfi() && !AddExportDynamic) 1035 CmdArgs.push_back("--export-dynamic-symbol=__cfi_check"); 1036 1037 if (SanArgs.hasMemTag()) { 1038 if (!TC.getTriple().isAndroid()) { 1039 TC.getDriver().Diag(diag::err_drv_unsupported_opt_for_target) 1040 << "-fsanitize=memtag*" << TC.getTriple().str(); 1041 } 1042 CmdArgs.push_back( 1043 Args.MakeArgString("--android-memtag-mode=" + SanArgs.getMemtagMode())); 1044 if (SanArgs.hasMemtagHeap()) 1045 CmdArgs.push_back("--android-memtag-heap"); 1046 if (SanArgs.hasMemtagStack()) 1047 CmdArgs.push_back("--android-memtag-stack"); 1048 } 1049 1050 return !StaticRuntimes.empty() || !NonWholeStaticRuntimes.empty(); 1051 } 1052 1053 bool tools::addXRayRuntime(const ToolChain&TC, const ArgList &Args, ArgStringList &CmdArgs) { 1054 if (Args.hasArg(options::OPT_shared)) 1055 return false; 1056 1057 if (TC.getXRayArgs().needsXRayRt()) { 1058 CmdArgs.push_back("-whole-archive"); 1059 CmdArgs.push_back(TC.getCompilerRTArgString(Args, "xray")); 1060 for (const auto &Mode : TC.getXRayArgs().modeList()) 1061 CmdArgs.push_back(TC.getCompilerRTArgString(Args, Mode)); 1062 CmdArgs.push_back("-no-whole-archive"); 1063 return true; 1064 } 1065 1066 return false; 1067 } 1068 1069 void tools::linkXRayRuntimeDeps(const ToolChain &TC, ArgStringList &CmdArgs) { 1070 CmdArgs.push_back(getAsNeededOption(TC, false)); 1071 CmdArgs.push_back("-lpthread"); 1072 if (!TC.getTriple().isOSOpenBSD()) 1073 CmdArgs.push_back("-lrt"); 1074 CmdArgs.push_back("-lm"); 1075 1076 if (!TC.getTriple().isOSFreeBSD() && 1077 !TC.getTriple().isOSNetBSD() && 1078 !TC.getTriple().isOSOpenBSD()) 1079 CmdArgs.push_back("-ldl"); 1080 } 1081 1082 bool tools::areOptimizationsEnabled(const ArgList &Args) { 1083 // Find the last -O arg and see if it is non-zero. 1084 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) 1085 return !A->getOption().matches(options::OPT_O0); 1086 // Defaults to -O0. 1087 return false; 1088 } 1089 1090 const char *tools::SplitDebugName(const JobAction &JA, const ArgList &Args, 1091 const InputInfo &Input, 1092 const InputInfo &Output) { 1093 auto AddPostfix = [JA](auto &F) { 1094 if (JA.getOffloadingDeviceKind() == Action::OFK_HIP) 1095 F += (Twine("_") + JA.getOffloadingArch()).str(); 1096 F += ".dwo"; 1097 }; 1098 if (Arg *A = Args.getLastArg(options::OPT_gsplit_dwarf_EQ)) 1099 if (StringRef(A->getValue()) == "single") 1100 return Args.MakeArgString(Output.getFilename()); 1101 1102 Arg *FinalOutput = Args.getLastArg(options::OPT_o); 1103 if (FinalOutput && Args.hasArg(options::OPT_c)) { 1104 SmallString<128> T(FinalOutput->getValue()); 1105 llvm::sys::path::remove_filename(T); 1106 llvm::sys::path::append(T, llvm::sys::path::stem(FinalOutput->getValue())); 1107 AddPostfix(T); 1108 return Args.MakeArgString(T); 1109 } else { 1110 // Use the compilation dir. 1111 Arg *A = Args.getLastArg(options::OPT_ffile_compilation_dir_EQ, 1112 options::OPT_fdebug_compilation_dir_EQ); 1113 SmallString<128> T(A ? A->getValue() : ""); 1114 SmallString<128> F(llvm::sys::path::stem(Input.getBaseInput())); 1115 AddPostfix(F); 1116 T += F; 1117 return Args.MakeArgString(T); 1118 } 1119 } 1120 1121 void tools::SplitDebugInfo(const ToolChain &TC, Compilation &C, const Tool &T, 1122 const JobAction &JA, const ArgList &Args, 1123 const InputInfo &Output, const char *OutFile) { 1124 ArgStringList ExtractArgs; 1125 ExtractArgs.push_back("--extract-dwo"); 1126 1127 ArgStringList StripArgs; 1128 StripArgs.push_back("--strip-dwo"); 1129 1130 // Grabbing the output of the earlier compile step. 1131 StripArgs.push_back(Output.getFilename()); 1132 ExtractArgs.push_back(Output.getFilename()); 1133 ExtractArgs.push_back(OutFile); 1134 1135 const char *Exec = 1136 Args.MakeArgString(TC.GetProgramPath(CLANG_DEFAULT_OBJCOPY)); 1137 InputInfo II(types::TY_Object, Output.getFilename(), Output.getFilename()); 1138 1139 // First extract the dwo sections. 1140 C.addCommand(std::make_unique<Command>(JA, T, 1141 ResponseFileSupport::AtFileCurCP(), 1142 Exec, ExtractArgs, II, Output)); 1143 1144 // Then remove them from the original .o file. 1145 C.addCommand(std::make_unique<Command>( 1146 JA, T, ResponseFileSupport::AtFileCurCP(), Exec, StripArgs, II, Output)); 1147 } 1148 1149 // Claim options we don't want to warn if they are unused. We do this for 1150 // options that build systems might add but are unused when assembling or only 1151 // running the preprocessor for example. 1152 void tools::claimNoWarnArgs(const ArgList &Args) { 1153 // Don't warn about unused -f(no-)?lto. This can happen when we're 1154 // preprocessing, precompiling or assembling. 1155 Args.ClaimAllArgs(options::OPT_flto_EQ); 1156 Args.ClaimAllArgs(options::OPT_flto); 1157 Args.ClaimAllArgs(options::OPT_fno_lto); 1158 } 1159 1160 Arg *tools::getLastProfileUseArg(const ArgList &Args) { 1161 auto *ProfileUseArg = Args.getLastArg( 1162 options::OPT_fprofile_instr_use, options::OPT_fprofile_instr_use_EQ, 1163 options::OPT_fprofile_use, options::OPT_fprofile_use_EQ, 1164 options::OPT_fno_profile_instr_use); 1165 1166 if (ProfileUseArg && 1167 ProfileUseArg->getOption().matches(options::OPT_fno_profile_instr_use)) 1168 ProfileUseArg = nullptr; 1169 1170 return ProfileUseArg; 1171 } 1172 1173 Arg *tools::getLastProfileSampleUseArg(const ArgList &Args) { 1174 auto *ProfileSampleUseArg = Args.getLastArg( 1175 options::OPT_fprofile_sample_use, options::OPT_fprofile_sample_use_EQ, 1176 options::OPT_fauto_profile, options::OPT_fauto_profile_EQ, 1177 options::OPT_fno_profile_sample_use, options::OPT_fno_auto_profile); 1178 1179 if (ProfileSampleUseArg && 1180 (ProfileSampleUseArg->getOption().matches( 1181 options::OPT_fno_profile_sample_use) || 1182 ProfileSampleUseArg->getOption().matches(options::OPT_fno_auto_profile))) 1183 return nullptr; 1184 1185 return Args.getLastArg(options::OPT_fprofile_sample_use_EQ, 1186 options::OPT_fauto_profile_EQ); 1187 } 1188 1189 /// Parses the various -fpic/-fPIC/-fpie/-fPIE arguments. Then, 1190 /// smooshes them together with platform defaults, to decide whether 1191 /// this compile should be using PIC mode or not. Returns a tuple of 1192 /// (RelocationModel, PICLevel, IsPIE). 1193 std::tuple<llvm::Reloc::Model, unsigned, bool> 1194 tools::ParsePICArgs(const ToolChain &ToolChain, const ArgList &Args) { 1195 const llvm::Triple &EffectiveTriple = ToolChain.getEffectiveTriple(); 1196 const llvm::Triple &Triple = ToolChain.getTriple(); 1197 1198 bool PIE = ToolChain.isPIEDefault(Args); 1199 bool PIC = PIE || ToolChain.isPICDefault(); 1200 // The Darwin/MachO default to use PIC does not apply when using -static. 1201 if (Triple.isOSBinFormatMachO() && Args.hasArg(options::OPT_static)) 1202 PIE = PIC = false; 1203 bool IsPICLevelTwo = PIC; 1204 1205 bool KernelOrKext = 1206 Args.hasArg(options::OPT_mkernel, options::OPT_fapple_kext); 1207 1208 // Android-specific defaults for PIC/PIE 1209 if (Triple.isAndroid()) { 1210 switch (Triple.getArch()) { 1211 case llvm::Triple::arm: 1212 case llvm::Triple::armeb: 1213 case llvm::Triple::thumb: 1214 case llvm::Triple::thumbeb: 1215 case llvm::Triple::aarch64: 1216 case llvm::Triple::mips: 1217 case llvm::Triple::mipsel: 1218 case llvm::Triple::mips64: 1219 case llvm::Triple::mips64el: 1220 PIC = true; // "-fpic" 1221 break; 1222 1223 case llvm::Triple::x86: 1224 case llvm::Triple::x86_64: 1225 PIC = true; // "-fPIC" 1226 IsPICLevelTwo = true; 1227 break; 1228 1229 default: 1230 break; 1231 } 1232 } 1233 1234 // OpenBSD-specific defaults for PIE 1235 if (Triple.isOSOpenBSD()) { 1236 switch (ToolChain.getArch()) { 1237 case llvm::Triple::arm: 1238 case llvm::Triple::aarch64: 1239 case llvm::Triple::mips64: 1240 case llvm::Triple::mips64el: 1241 case llvm::Triple::x86: 1242 case llvm::Triple::x86_64: 1243 IsPICLevelTwo = false; // "-fpie" 1244 break; 1245 1246 case llvm::Triple::ppc: 1247 case llvm::Triple::sparcv9: 1248 IsPICLevelTwo = true; // "-fPIE" 1249 break; 1250 1251 default: 1252 break; 1253 } 1254 } 1255 1256 // AMDGPU-specific defaults for PIC. 1257 if (Triple.getArch() == llvm::Triple::amdgcn) 1258 PIC = true; 1259 1260 // The last argument relating to either PIC or PIE wins, and no 1261 // other argument is used. If the last argument is any flavor of the 1262 // '-fno-...' arguments, both PIC and PIE are disabled. Any PIE 1263 // option implicitly enables PIC at the same level. 1264 Arg *LastPICArg = Args.getLastArg(options::OPT_fPIC, options::OPT_fno_PIC, 1265 options::OPT_fpic, options::OPT_fno_pic, 1266 options::OPT_fPIE, options::OPT_fno_PIE, 1267 options::OPT_fpie, options::OPT_fno_pie); 1268 if (Triple.isOSWindows() && !Triple.isOSCygMing() && LastPICArg && 1269 LastPICArg == Args.getLastArg(options::OPT_fPIC, options::OPT_fpic, 1270 options::OPT_fPIE, options::OPT_fpie)) { 1271 ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target) 1272 << LastPICArg->getSpelling() << Triple.str(); 1273 if (Triple.getArch() == llvm::Triple::x86_64) 1274 return std::make_tuple(llvm::Reloc::PIC_, 2U, false); 1275 return std::make_tuple(llvm::Reloc::Static, 0U, false); 1276 } 1277 1278 // Check whether the tool chain trumps the PIC-ness decision. If the PIC-ness 1279 // is forced, then neither PIC nor PIE flags will have no effect. 1280 if (!ToolChain.isPICDefaultForced()) { 1281 if (LastPICArg) { 1282 Option O = LastPICArg->getOption(); 1283 if (O.matches(options::OPT_fPIC) || O.matches(options::OPT_fpic) || 1284 O.matches(options::OPT_fPIE) || O.matches(options::OPT_fpie)) { 1285 PIE = O.matches(options::OPT_fPIE) || O.matches(options::OPT_fpie); 1286 PIC = 1287 PIE || O.matches(options::OPT_fPIC) || O.matches(options::OPT_fpic); 1288 IsPICLevelTwo = 1289 O.matches(options::OPT_fPIE) || O.matches(options::OPT_fPIC); 1290 } else { 1291 PIE = PIC = false; 1292 if (EffectiveTriple.isPS()) { 1293 Arg *ModelArg = Args.getLastArg(options::OPT_mcmodel_EQ); 1294 StringRef Model = ModelArg ? ModelArg->getValue() : ""; 1295 if (Model != "kernel") { 1296 PIC = true; 1297 ToolChain.getDriver().Diag(diag::warn_drv_ps_force_pic) 1298 << LastPICArg->getSpelling() 1299 << (EffectiveTriple.isPS4() ? "PS4" : "PS5"); 1300 } 1301 } 1302 } 1303 } 1304 } 1305 1306 // Introduce a Darwin and PS4/PS5-specific hack. If the default is PIC, but 1307 // the PIC level would've been set to level 1, force it back to level 2 PIC 1308 // instead. 1309 if (PIC && (Triple.isOSDarwin() || EffectiveTriple.isPS())) 1310 IsPICLevelTwo |= ToolChain.isPICDefault(); 1311 1312 // This kernel flags are a trump-card: they will disable PIC/PIE 1313 // generation, independent of the argument order. 1314 if (KernelOrKext && 1315 ((!EffectiveTriple.isiOS() || EffectiveTriple.isOSVersionLT(6)) && 1316 !EffectiveTriple.isWatchOS() && !EffectiveTriple.isDriverKit())) 1317 PIC = PIE = false; 1318 1319 if (Arg *A = Args.getLastArg(options::OPT_mdynamic_no_pic)) { 1320 // This is a very special mode. It trumps the other modes, almost no one 1321 // uses it, and it isn't even valid on any OS but Darwin. 1322 if (!Triple.isOSDarwin()) 1323 ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target) 1324 << A->getSpelling() << Triple.str(); 1325 1326 // FIXME: Warn when this flag trumps some other PIC or PIE flag. 1327 1328 // Only a forced PIC mode can cause the actual compile to have PIC defines 1329 // etc., no flags are sufficient. This behavior was selected to closely 1330 // match that of llvm-gcc and Apple GCC before that. 1331 PIC = ToolChain.isPICDefault() && ToolChain.isPICDefaultForced(); 1332 1333 return std::make_tuple(llvm::Reloc::DynamicNoPIC, PIC ? 2U : 0U, false); 1334 } 1335 1336 bool EmbeddedPISupported; 1337 switch (Triple.getArch()) { 1338 case llvm::Triple::arm: 1339 case llvm::Triple::armeb: 1340 case llvm::Triple::thumb: 1341 case llvm::Triple::thumbeb: 1342 EmbeddedPISupported = true; 1343 break; 1344 default: 1345 EmbeddedPISupported = false; 1346 break; 1347 } 1348 1349 bool ROPI = false, RWPI = false; 1350 Arg* LastROPIArg = Args.getLastArg(options::OPT_fropi, options::OPT_fno_ropi); 1351 if (LastROPIArg && LastROPIArg->getOption().matches(options::OPT_fropi)) { 1352 if (!EmbeddedPISupported) 1353 ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target) 1354 << LastROPIArg->getSpelling() << Triple.str(); 1355 ROPI = true; 1356 } 1357 Arg *LastRWPIArg = Args.getLastArg(options::OPT_frwpi, options::OPT_fno_rwpi); 1358 if (LastRWPIArg && LastRWPIArg->getOption().matches(options::OPT_frwpi)) { 1359 if (!EmbeddedPISupported) 1360 ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target) 1361 << LastRWPIArg->getSpelling() << Triple.str(); 1362 RWPI = true; 1363 } 1364 1365 // ROPI and RWPI are not compatible with PIC or PIE. 1366 if ((ROPI || RWPI) && (PIC || PIE)) 1367 ToolChain.getDriver().Diag(diag::err_drv_ropi_rwpi_incompatible_with_pic); 1368 1369 if (Triple.isMIPS()) { 1370 StringRef CPUName; 1371 StringRef ABIName; 1372 mips::getMipsCPUAndABI(Args, Triple, CPUName, ABIName); 1373 // When targeting the N64 ABI, PIC is the default, except in the case 1374 // when the -mno-abicalls option is used. In that case we exit 1375 // at next check regardless of PIC being set below. 1376 if (ABIName == "n64") 1377 PIC = true; 1378 // When targettng MIPS with -mno-abicalls, it's always static. 1379 if(Args.hasArg(options::OPT_mno_abicalls)) 1380 return std::make_tuple(llvm::Reloc::Static, 0U, false); 1381 // Unlike other architectures, MIPS, even with -fPIC/-mxgot/multigot, 1382 // does not use PIC level 2 for historical reasons. 1383 IsPICLevelTwo = false; 1384 } 1385 1386 if (PIC) 1387 return std::make_tuple(llvm::Reloc::PIC_, IsPICLevelTwo ? 2U : 1U, PIE); 1388 1389 llvm::Reloc::Model RelocM = llvm::Reloc::Static; 1390 if (ROPI && RWPI) 1391 RelocM = llvm::Reloc::ROPI_RWPI; 1392 else if (ROPI) 1393 RelocM = llvm::Reloc::ROPI; 1394 else if (RWPI) 1395 RelocM = llvm::Reloc::RWPI; 1396 1397 return std::make_tuple(RelocM, 0U, false); 1398 } 1399 1400 // `-falign-functions` indicates that the functions should be aligned to a 1401 // 16-byte boundary. 1402 // 1403 // `-falign-functions=1` is the same as `-fno-align-functions`. 1404 // 1405 // The scalar `n` in `-falign-functions=n` must be an integral value between 1406 // [0, 65536]. If the value is not a power-of-two, it will be rounded up to 1407 // the nearest power-of-two. 1408 // 1409 // If we return `0`, the frontend will default to the backend's preferred 1410 // alignment. 1411 // 1412 // NOTE: icc only allows values between [0, 4096]. icc uses `-falign-functions` 1413 // to mean `-falign-functions=16`. GCC defaults to the backend's preferred 1414 // alignment. For unaligned functions, we default to the backend's preferred 1415 // alignment. 1416 unsigned tools::ParseFunctionAlignment(const ToolChain &TC, 1417 const ArgList &Args) { 1418 const Arg *A = Args.getLastArg(options::OPT_falign_functions, 1419 options::OPT_falign_functions_EQ, 1420 options::OPT_fno_align_functions); 1421 if (!A || A->getOption().matches(options::OPT_fno_align_functions)) 1422 return 0; 1423 1424 if (A->getOption().matches(options::OPT_falign_functions)) 1425 return 0; 1426 1427 unsigned Value = 0; 1428 if (StringRef(A->getValue()).getAsInteger(10, Value) || Value > 65536) 1429 TC.getDriver().Diag(diag::err_drv_invalid_int_value) 1430 << A->getAsString(Args) << A->getValue(); 1431 return Value ? llvm::Log2_32_Ceil(std::min(Value, 65536u)) : Value; 1432 } 1433 1434 unsigned tools::ParseDebugDefaultVersion(const ToolChain &TC, 1435 const ArgList &Args) { 1436 const Arg *A = Args.getLastArg(options::OPT_fdebug_default_version); 1437 1438 if (!A) 1439 return 0; 1440 1441 unsigned Value = 0; 1442 if (StringRef(A->getValue()).getAsInteger(10, Value) || Value > 5 || 1443 Value < 2) 1444 TC.getDriver().Diag(diag::err_drv_invalid_int_value) 1445 << A->getAsString(Args) << A->getValue(); 1446 return Value; 1447 } 1448 1449 void tools::AddAssemblerKPIC(const ToolChain &ToolChain, const ArgList &Args, 1450 ArgStringList &CmdArgs) { 1451 llvm::Reloc::Model RelocationModel; 1452 unsigned PICLevel; 1453 bool IsPIE; 1454 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); 1455 1456 if (RelocationModel != llvm::Reloc::Static) 1457 CmdArgs.push_back("-KPIC"); 1458 } 1459 1460 /// Determine whether Objective-C automated reference counting is 1461 /// enabled. 1462 bool tools::isObjCAutoRefCount(const ArgList &Args) { 1463 return Args.hasFlag(options::OPT_fobjc_arc, options::OPT_fno_objc_arc, false); 1464 } 1465 1466 enum class LibGccType { UnspecifiedLibGcc, StaticLibGcc, SharedLibGcc }; 1467 1468 static LibGccType getLibGccType(const ToolChain &TC, const Driver &D, 1469 const ArgList &Args) { 1470 if (Args.hasArg(options::OPT_static_libgcc) || 1471 Args.hasArg(options::OPT_static) || Args.hasArg(options::OPT_static_pie)) 1472 return LibGccType::StaticLibGcc; 1473 if (Args.hasArg(options::OPT_shared_libgcc)) 1474 return LibGccType::SharedLibGcc; 1475 // The Android NDK only provides libunwind.a, not libunwind.so. 1476 if (TC.getTriple().isAndroid()) 1477 return LibGccType::StaticLibGcc; 1478 // For MinGW, don't imply a shared libgcc here, we only want to return 1479 // SharedLibGcc if that was explicitly requested. 1480 if (D.CCCIsCXX() && !TC.getTriple().isOSCygMing()) 1481 return LibGccType::SharedLibGcc; 1482 return LibGccType::UnspecifiedLibGcc; 1483 } 1484 1485 // Gcc adds libgcc arguments in various ways: 1486 // 1487 // gcc <none>: -lgcc --as-needed -lgcc_s --no-as-needed 1488 // g++ <none>: -lgcc_s -lgcc 1489 // gcc shared: -lgcc_s -lgcc 1490 // g++ shared: -lgcc_s -lgcc 1491 // gcc static: -lgcc -lgcc_eh 1492 // g++ static: -lgcc -lgcc_eh 1493 // gcc static-pie: -lgcc -lgcc_eh 1494 // g++ static-pie: -lgcc -lgcc_eh 1495 // 1496 // Also, certain targets need additional adjustments. 1497 1498 static void AddUnwindLibrary(const ToolChain &TC, const Driver &D, 1499 ArgStringList &CmdArgs, const ArgList &Args) { 1500 ToolChain::UnwindLibType UNW = TC.GetUnwindLibType(Args); 1501 // Targets that don't use unwind libraries. 1502 if ((TC.getTriple().isAndroid() && UNW == ToolChain::UNW_Libgcc) || 1503 TC.getTriple().isOSIAMCU() || TC.getTriple().isOSBinFormatWasm() || 1504 UNW == ToolChain::UNW_None) 1505 return; 1506 1507 LibGccType LGT = getLibGccType(TC, D, Args); 1508 bool AsNeeded = LGT == LibGccType::UnspecifiedLibGcc && 1509 !TC.getTriple().isAndroid() && 1510 !TC.getTriple().isOSCygMing() && !TC.getTriple().isOSAIX(); 1511 if (AsNeeded) 1512 CmdArgs.push_back(getAsNeededOption(TC, true)); 1513 1514 switch (UNW) { 1515 case ToolChain::UNW_None: 1516 return; 1517 case ToolChain::UNW_Libgcc: { 1518 if (LGT == LibGccType::StaticLibGcc) 1519 CmdArgs.push_back("-lgcc_eh"); 1520 else 1521 CmdArgs.push_back("-lgcc_s"); 1522 break; 1523 } 1524 case ToolChain::UNW_CompilerRT: 1525 if (TC.getTriple().isOSAIX()) { 1526 // AIX only has libunwind as a shared library. So do not pass 1527 // anything in if -static is specified. 1528 if (LGT != LibGccType::StaticLibGcc) 1529 CmdArgs.push_back("-lunwind"); 1530 } else if (LGT == LibGccType::StaticLibGcc) { 1531 CmdArgs.push_back("-l:libunwind.a"); 1532 } else if (TC.getTriple().isOSCygMing()) { 1533 if (LGT == LibGccType::SharedLibGcc) 1534 CmdArgs.push_back("-l:libunwind.dll.a"); 1535 else 1536 // Let the linker choose between libunwind.dll.a and libunwind.a 1537 // depending on what's available, and depending on the -static flag 1538 CmdArgs.push_back("-lunwind"); 1539 } else { 1540 CmdArgs.push_back("-l:libunwind.so"); 1541 } 1542 break; 1543 } 1544 1545 if (AsNeeded) 1546 CmdArgs.push_back(getAsNeededOption(TC, false)); 1547 } 1548 1549 static void AddLibgcc(const ToolChain &TC, const Driver &D, 1550 ArgStringList &CmdArgs, const ArgList &Args) { 1551 LibGccType LGT = getLibGccType(TC, D, Args); 1552 if (LGT != LibGccType::SharedLibGcc) 1553 CmdArgs.push_back("-lgcc"); 1554 AddUnwindLibrary(TC, D, CmdArgs, Args); 1555 if (LGT == LibGccType::SharedLibGcc) 1556 CmdArgs.push_back("-lgcc"); 1557 } 1558 1559 void tools::AddRunTimeLibs(const ToolChain &TC, const Driver &D, 1560 ArgStringList &CmdArgs, const ArgList &Args) { 1561 // Make use of compiler-rt if --rtlib option is used 1562 ToolChain::RuntimeLibType RLT = TC.GetRuntimeLibType(Args); 1563 1564 switch (RLT) { 1565 case ToolChain::RLT_CompilerRT: 1566 CmdArgs.push_back(TC.getCompilerRTArgString(Args, "builtins")); 1567 AddUnwindLibrary(TC, D, CmdArgs, Args); 1568 break; 1569 case ToolChain::RLT_Libgcc: 1570 // Make sure libgcc is not used under MSVC environment by default 1571 if (TC.getTriple().isKnownWindowsMSVCEnvironment()) { 1572 // Issue error diagnostic if libgcc is explicitly specified 1573 // through command line as --rtlib option argument. 1574 if (Args.hasArg(options::OPT_rtlib_EQ)) { 1575 TC.getDriver().Diag(diag::err_drv_unsupported_rtlib_for_platform) 1576 << Args.getLastArg(options::OPT_rtlib_EQ)->getValue() << "MSVC"; 1577 } 1578 } else 1579 AddLibgcc(TC, D, CmdArgs, Args); 1580 break; 1581 } 1582 1583 // On Android, the unwinder uses dl_iterate_phdr (or one of 1584 // dl_unwind_find_exidx/__gnu_Unwind_Find_exidx on arm32) from libdl.so. For 1585 // statically-linked executables, these functions come from libc.a instead. 1586 if (TC.getTriple().isAndroid() && !Args.hasArg(options::OPT_static) && 1587 !Args.hasArg(options::OPT_static_pie)) 1588 CmdArgs.push_back("-ldl"); 1589 } 1590 1591 SmallString<128> tools::getStatsFileName(const llvm::opt::ArgList &Args, 1592 const InputInfo &Output, 1593 const InputInfo &Input, 1594 const Driver &D) { 1595 const Arg *A = Args.getLastArg(options::OPT_save_stats_EQ); 1596 if (!A) 1597 return {}; 1598 1599 StringRef SaveStats = A->getValue(); 1600 SmallString<128> StatsFile; 1601 if (SaveStats == "obj" && Output.isFilename()) { 1602 StatsFile.assign(Output.getFilename()); 1603 llvm::sys::path::remove_filename(StatsFile); 1604 } else if (SaveStats != "cwd") { 1605 D.Diag(diag::err_drv_invalid_value) << A->getAsString(Args) << SaveStats; 1606 return {}; 1607 } 1608 1609 StringRef BaseName = llvm::sys::path::filename(Input.getBaseInput()); 1610 llvm::sys::path::append(StatsFile, BaseName); 1611 llvm::sys::path::replace_extension(StatsFile, "stats"); 1612 return StatsFile; 1613 } 1614 1615 void tools::addMultilibFlag(bool Enabled, const char *const Flag, 1616 Multilib::flags_list &Flags) { 1617 Flags.push_back(std::string(Enabled ? "+" : "-") + Flag); 1618 } 1619 1620 void tools::addX86AlignBranchArgs(const Driver &D, const ArgList &Args, 1621 ArgStringList &CmdArgs, bool IsLTO) { 1622 auto addArg = [&, IsLTO](const Twine &Arg) { 1623 if (IsLTO) { 1624 CmdArgs.push_back(Args.MakeArgString("-plugin-opt=" + Arg)); 1625 } else { 1626 CmdArgs.push_back("-mllvm"); 1627 CmdArgs.push_back(Args.MakeArgString(Arg)); 1628 } 1629 }; 1630 1631 if (Args.hasArg(options::OPT_mbranches_within_32B_boundaries)) { 1632 addArg(Twine("-x86-branches-within-32B-boundaries")); 1633 } 1634 if (const Arg *A = Args.getLastArg(options::OPT_malign_branch_boundary_EQ)) { 1635 StringRef Value = A->getValue(); 1636 unsigned Boundary; 1637 if (Value.getAsInteger(10, Boundary) || Boundary < 16 || 1638 !llvm::isPowerOf2_64(Boundary)) { 1639 D.Diag(diag::err_drv_invalid_argument_to_option) 1640 << Value << A->getOption().getName(); 1641 } else { 1642 addArg("-x86-align-branch-boundary=" + Twine(Boundary)); 1643 } 1644 } 1645 if (const Arg *A = Args.getLastArg(options::OPT_malign_branch_EQ)) { 1646 std::string AlignBranch; 1647 for (StringRef T : A->getValues()) { 1648 if (T != "fused" && T != "jcc" && T != "jmp" && T != "call" && 1649 T != "ret" && T != "indirect") 1650 D.Diag(diag::err_drv_invalid_malign_branch_EQ) 1651 << T << "fused, jcc, jmp, call, ret, indirect"; 1652 if (!AlignBranch.empty()) 1653 AlignBranch += '+'; 1654 AlignBranch += T; 1655 } 1656 addArg("-x86-align-branch=" + Twine(AlignBranch)); 1657 } 1658 if (const Arg *A = Args.getLastArg(options::OPT_mpad_max_prefix_size_EQ)) { 1659 StringRef Value = A->getValue(); 1660 unsigned PrefixSize; 1661 if (Value.getAsInteger(10, PrefixSize)) { 1662 D.Diag(diag::err_drv_invalid_argument_to_option) 1663 << Value << A->getOption().getName(); 1664 } else { 1665 addArg("-x86-pad-max-prefix-size=" + Twine(PrefixSize)); 1666 } 1667 } 1668 } 1669 1670 /// SDLSearch: Search for Static Device Library 1671 /// The search for SDL bitcode files is consistent with how static host 1672 /// libraries are discovered. That is, the -l option triggers a search for 1673 /// files in a set of directories called the LINKPATH. The host library search 1674 /// procedure looks for a specific filename in the LINKPATH. The filename for 1675 /// a host library is lib<libname>.a or lib<libname>.so. For SDLs, there is an 1676 /// ordered-set of filenames that are searched. We call this ordered-set of 1677 /// filenames as SEARCH-ORDER. Since an SDL can either be device-type specific, 1678 /// architecture specific, or generic across all architectures, a naming 1679 /// convention and search order is used where the file name embeds the 1680 /// architecture name <arch-name> (nvptx or amdgcn) and the GPU device type 1681 /// <device-name> such as sm_30 and gfx906. <device-name> is absent in case of 1682 /// device-independent SDLs. To reduce congestion in host library directories, 1683 /// the search first looks for files in the “libdevice” subdirectory. SDLs that 1684 /// are bc files begin with the prefix “lib”. 1685 /// 1686 /// Machine-code SDLs can also be managed as an archive (*.a file). The 1687 /// convention has been to use the prefix “lib”. To avoid confusion with host 1688 /// archive libraries, we use prefix "libbc-" for the bitcode SDL archives. 1689 /// 1690 bool tools::SDLSearch(const Driver &D, const llvm::opt::ArgList &DriverArgs, 1691 llvm::opt::ArgStringList &CC1Args, 1692 SmallVector<std::string, 8> LibraryPaths, std::string Lib, 1693 StringRef Arch, StringRef Target, bool isBitCodeSDL, 1694 bool postClangLink) { 1695 SmallVector<std::string, 12> SDLs; 1696 1697 std::string LibDeviceLoc = "/libdevice"; 1698 std::string LibBcPrefix = "/libbc-"; 1699 std::string LibPrefix = "/lib"; 1700 1701 if (isBitCodeSDL) { 1702 // SEARCH-ORDER for Bitcode SDLs: 1703 // libdevice/libbc-<libname>-<arch-name>-<device-type>.a 1704 // libbc-<libname>-<arch-name>-<device-type>.a 1705 // libdevice/libbc-<libname>-<arch-name>.a 1706 // libbc-<libname>-<arch-name>.a 1707 // libdevice/libbc-<libname>.a 1708 // libbc-<libname>.a 1709 // libdevice/lib<libname>-<arch-name>-<device-type>.bc 1710 // lib<libname>-<arch-name>-<device-type>.bc 1711 // libdevice/lib<libname>-<arch-name>.bc 1712 // lib<libname>-<arch-name>.bc 1713 // libdevice/lib<libname>.bc 1714 // lib<libname>.bc 1715 1716 for (StringRef Base : {LibBcPrefix, LibPrefix}) { 1717 const auto *Ext = Base.contains(LibBcPrefix) ? ".a" : ".bc"; 1718 1719 for (auto Suffix : {Twine(Lib + "-" + Arch + "-" + Target).str(), 1720 Twine(Lib + "-" + Arch).str(), Twine(Lib).str()}) { 1721 SDLs.push_back(Twine(LibDeviceLoc + Base + Suffix + Ext).str()); 1722 SDLs.push_back(Twine(Base + Suffix + Ext).str()); 1723 } 1724 } 1725 } else { 1726 // SEARCH-ORDER for Machine-code SDLs: 1727 // libdevice/lib<libname>-<arch-name>-<device-type>.a 1728 // lib<libname>-<arch-name>-<device-type>.a 1729 // libdevice/lib<libname>-<arch-name>.a 1730 // lib<libname>-<arch-name>.a 1731 1732 const auto *Ext = ".a"; 1733 1734 for (auto Suffix : {Twine(Lib + "-" + Arch + "-" + Target).str(), 1735 Twine(Lib + "-" + Arch).str()}) { 1736 SDLs.push_back(Twine(LibDeviceLoc + LibPrefix + Suffix + Ext).str()); 1737 SDLs.push_back(Twine(LibPrefix + Suffix + Ext).str()); 1738 } 1739 } 1740 1741 // The CUDA toolchain does not use a global device llvm-link before the LLVM 1742 // backend generates ptx. So currently, the use of bitcode SDL for nvptx is 1743 // only possible with post-clang-cc1 linking. Clang cc1 has a feature that 1744 // will link libraries after clang compilation while the LLVM IR is still in 1745 // memory. This utilizes a clang cc1 option called “-mlink-builtin-bitcode”. 1746 // This is a clang -cc1 option that is generated by the clang driver. The 1747 // option value must a full path to an existing file. 1748 bool FoundSDL = false; 1749 for (auto LPath : LibraryPaths) { 1750 for (auto SDL : SDLs) { 1751 auto FullName = Twine(LPath + SDL).str(); 1752 if (llvm::sys::fs::exists(FullName)) { 1753 if (postClangLink) 1754 CC1Args.push_back("-mlink-builtin-bitcode"); 1755 CC1Args.push_back(DriverArgs.MakeArgString(FullName)); 1756 FoundSDL = true; 1757 break; 1758 } 1759 } 1760 if (FoundSDL) 1761 break; 1762 } 1763 return FoundSDL; 1764 } 1765 1766 /// Search if a user provided archive file lib<libname>.a exists in any of 1767 /// the library paths. If so, add a new command to clang-offload-bundler to 1768 /// unbundle this archive and create a temporary device specific archive. Name 1769 /// of this SDL is passed to the llvm-link (for amdgcn) or to the 1770 /// clang-nvlink-wrapper (for nvptx) commands by the driver. 1771 bool tools::GetSDLFromOffloadArchive( 1772 Compilation &C, const Driver &D, const Tool &T, const JobAction &JA, 1773 const InputInfoList &Inputs, const llvm::opt::ArgList &DriverArgs, 1774 llvm::opt::ArgStringList &CC1Args, SmallVector<std::string, 8> LibraryPaths, 1775 StringRef Lib, StringRef Arch, StringRef Target, bool isBitCodeSDL, 1776 bool postClangLink) { 1777 1778 // We don't support bitcode archive bundles for nvptx 1779 if (isBitCodeSDL && Arch.contains("nvptx")) 1780 return false; 1781 1782 bool FoundAOB = false; 1783 SmallVector<std::string, 2> AOBFileNames; 1784 std::string ArchiveOfBundles; 1785 for (auto LPath : LibraryPaths) { 1786 ArchiveOfBundles.clear(); 1787 1788 llvm::Triple Triple(D.getTargetTriple()); 1789 bool IsMSVC = Triple.isWindowsMSVCEnvironment(); 1790 for (auto Prefix : {"/libdevice/", "/"}) { 1791 if (IsMSVC) 1792 AOBFileNames.push_back(Twine(LPath + Prefix + Lib + ".lib").str()); 1793 AOBFileNames.push_back(Twine(LPath + Prefix + "lib" + Lib + ".a").str()); 1794 } 1795 1796 for (auto AOB : AOBFileNames) { 1797 if (llvm::sys::fs::exists(AOB)) { 1798 ArchiveOfBundles = AOB; 1799 FoundAOB = true; 1800 break; 1801 } 1802 } 1803 1804 if (!FoundAOB) 1805 continue; 1806 1807 StringRef Prefix = isBitCodeSDL ? "libbc-" : "lib"; 1808 std::string OutputLib = D.GetTemporaryPath( 1809 Twine(Prefix + Lib + "-" + Arch + "-" + Target).str(), "a"); 1810 1811 C.addTempFile(C.getArgs().MakeArgString(OutputLib)); 1812 1813 ArgStringList CmdArgs; 1814 SmallString<128> DeviceTriple; 1815 DeviceTriple += Action::GetOffloadKindName(JA.getOffloadingDeviceKind()); 1816 DeviceTriple += '-'; 1817 std::string NormalizedTriple = T.getToolChain().getTriple().normalize(); 1818 DeviceTriple += NormalizedTriple; 1819 if (!Target.empty()) { 1820 DeviceTriple += '-'; 1821 DeviceTriple += Target; 1822 } 1823 1824 std::string UnbundleArg("-unbundle"); 1825 std::string TypeArg("-type=a"); 1826 std::string InputArg("-input=" + ArchiveOfBundles); 1827 std::string OffloadArg("-targets=" + std::string(DeviceTriple)); 1828 std::string OutputArg("-output=" + OutputLib); 1829 1830 const char *UBProgram = DriverArgs.MakeArgString( 1831 T.getToolChain().GetProgramPath("clang-offload-bundler")); 1832 1833 ArgStringList UBArgs; 1834 UBArgs.push_back(C.getArgs().MakeArgString(UnbundleArg)); 1835 UBArgs.push_back(C.getArgs().MakeArgString(TypeArg)); 1836 UBArgs.push_back(C.getArgs().MakeArgString(InputArg)); 1837 UBArgs.push_back(C.getArgs().MakeArgString(OffloadArg)); 1838 UBArgs.push_back(C.getArgs().MakeArgString(OutputArg)); 1839 1840 // Add this flag to not exit from clang-offload-bundler if no compatible 1841 // code object is found in heterogenous archive library. 1842 std::string AdditionalArgs("-allow-missing-bundles"); 1843 UBArgs.push_back(C.getArgs().MakeArgString(AdditionalArgs)); 1844 1845 // Add this flag to treat hip and hipv4 offload kinds as compatible with 1846 // openmp offload kind while extracting code objects from a heterogenous 1847 // archive library. Vice versa is also considered compatible. 1848 std::string HipCompatibleArgs("-hip-openmp-compatible"); 1849 UBArgs.push_back(C.getArgs().MakeArgString(HipCompatibleArgs)); 1850 1851 C.addCommand(std::make_unique<Command>( 1852 JA, T, ResponseFileSupport::AtFileCurCP(), UBProgram, UBArgs, Inputs, 1853 InputInfo(&JA, C.getArgs().MakeArgString(OutputLib)))); 1854 if (postClangLink) 1855 CC1Args.push_back("-mlink-builtin-bitcode"); 1856 1857 CC1Args.push_back(DriverArgs.MakeArgString(OutputLib)); 1858 break; 1859 } 1860 1861 return FoundAOB; 1862 } 1863 1864 // Wrapper function used by driver for adding SDLs during link phase. 1865 void tools::AddStaticDeviceLibsLinking(Compilation &C, const Tool &T, 1866 const JobAction &JA, 1867 const InputInfoList &Inputs, 1868 const llvm::opt::ArgList &DriverArgs, 1869 llvm::opt::ArgStringList &CC1Args, 1870 StringRef Arch, StringRef Target, 1871 bool isBitCodeSDL, bool postClangLink) { 1872 AddStaticDeviceLibs(&C, &T, &JA, &Inputs, C.getDriver(), DriverArgs, CC1Args, 1873 Arch, Target, isBitCodeSDL, postClangLink); 1874 } 1875 1876 // Wrapper function used for post clang linking of bitcode SDLS for nvptx by 1877 // the CUDA toolchain. 1878 void tools::AddStaticDeviceLibsPostLinking(const Driver &D, 1879 const llvm::opt::ArgList &DriverArgs, 1880 llvm::opt::ArgStringList &CC1Args, 1881 StringRef Arch, StringRef Target, 1882 bool isBitCodeSDL, bool postClangLink) { 1883 AddStaticDeviceLibs(nullptr, nullptr, nullptr, nullptr, D, DriverArgs, 1884 CC1Args, Arch, Target, isBitCodeSDL, postClangLink); 1885 } 1886 1887 // User defined Static Device Libraries(SDLs) can be passed to clang for 1888 // offloading GPU compilers. Like static host libraries, the use of a SDL is 1889 // specified with the -l command line option. The primary difference between 1890 // host and SDLs is the filenames for SDLs (refer SEARCH-ORDER for Bitcode SDLs 1891 // and SEARCH-ORDER for Machine-code SDLs for the naming convention). 1892 // SDLs are of following types: 1893 // 1894 // * Bitcode SDLs: They can either be a *.bc file or an archive of *.bc files. 1895 // For NVPTX, these libraries are post-clang linked following each 1896 // compilation. For AMDGPU, these libraries are linked one time 1897 // during the application link phase. 1898 // 1899 // * Machine-code SDLs: They are archive files. For NVPTX, the archive members 1900 // contain cubin for Nvidia GPUs and are linked one time during the 1901 // link phase by the CUDA SDK linker called nvlink. For AMDGPU, the 1902 // process for machine code SDLs is still in development. But they 1903 // will be linked by the LLVM tool lld. 1904 // 1905 // * Bundled objects that contain both host and device codes: Bundled objects 1906 // may also contain library code compiled from source. For NVPTX, the 1907 // bundle contains cubin. For AMDGPU, the bundle contains bitcode. 1908 // 1909 // For Bitcode and Machine-code SDLs, current compiler toolchains hardcode the 1910 // inclusion of specific SDLs such as math libraries and the OpenMP device 1911 // library libomptarget. 1912 void tools::AddStaticDeviceLibs(Compilation *C, const Tool *T, 1913 const JobAction *JA, 1914 const InputInfoList *Inputs, const Driver &D, 1915 const llvm::opt::ArgList &DriverArgs, 1916 llvm::opt::ArgStringList &CC1Args, 1917 StringRef Arch, StringRef Target, 1918 bool isBitCodeSDL, bool postClangLink) { 1919 1920 SmallVector<std::string, 8> LibraryPaths; 1921 // Add search directories from LIBRARY_PATH env variable 1922 llvm::Optional<std::string> LibPath = 1923 llvm::sys::Process::GetEnv("LIBRARY_PATH"); 1924 if (LibPath) { 1925 SmallVector<StringRef, 8> Frags; 1926 const char EnvPathSeparatorStr[] = {llvm::sys::EnvPathSeparator, '\0'}; 1927 llvm::SplitString(*LibPath, Frags, EnvPathSeparatorStr); 1928 for (StringRef Path : Frags) 1929 LibraryPaths.emplace_back(Path.trim()); 1930 } 1931 1932 // Add directories from user-specified -L options 1933 for (std::string Search_Dir : DriverArgs.getAllArgValues(options::OPT_L)) 1934 LibraryPaths.emplace_back(Search_Dir); 1935 1936 // Add path to lib-debug folders 1937 SmallString<256> DefaultLibPath = llvm::sys::path::parent_path(D.Dir); 1938 llvm::sys::path::append(DefaultLibPath, Twine("lib") + CLANG_LIBDIR_SUFFIX); 1939 LibraryPaths.emplace_back(DefaultLibPath.c_str()); 1940 1941 // Build list of Static Device Libraries SDLs specified by -l option 1942 llvm::SmallSet<std::string, 16> SDLNames; 1943 static const StringRef HostOnlyArchives[] = { 1944 "omp", "cudart", "m", "gcc", "gcc_s", "pthread", "hip_hcc"}; 1945 for (auto SDLName : DriverArgs.getAllArgValues(options::OPT_l)) { 1946 if (!HostOnlyArchives->contains(SDLName)) { 1947 SDLNames.insert(SDLName); 1948 } 1949 } 1950 1951 // The search stops as soon as an SDL file is found. The driver then provides 1952 // the full filename of the SDL to the llvm-link or clang-nvlink-wrapper 1953 // command. If no SDL is found after searching each LINKPATH with 1954 // SEARCH-ORDER, it is possible that an archive file lib<libname>.a exists 1955 // and may contain bundled object files. 1956 for (auto SDLName : SDLNames) { 1957 // This is the only call to SDLSearch 1958 if (!SDLSearch(D, DriverArgs, CC1Args, LibraryPaths, SDLName, Arch, Target, 1959 isBitCodeSDL, postClangLink)) { 1960 GetSDLFromOffloadArchive(*C, D, *T, *JA, *Inputs, DriverArgs, CC1Args, 1961 LibraryPaths, SDLName, Arch, Target, 1962 isBitCodeSDL, postClangLink); 1963 } 1964 } 1965 } 1966 1967 static llvm::opt::Arg * 1968 getAMDGPUCodeObjectArgument(const Driver &D, const llvm::opt::ArgList &Args) { 1969 // The last of -mcode-object-v3, -mno-code-object-v3 and 1970 // -mcode-object-version=<version> wins. 1971 return Args.getLastArg(options::OPT_mcode_object_v3_legacy, 1972 options::OPT_mno_code_object_v3_legacy, 1973 options::OPT_mcode_object_version_EQ); 1974 } 1975 1976 void tools::checkAMDGPUCodeObjectVersion(const Driver &D, 1977 const llvm::opt::ArgList &Args) { 1978 const unsigned MinCodeObjVer = 2; 1979 const unsigned MaxCodeObjVer = 5; 1980 1981 // Emit warnings for legacy options even if they are overridden. 1982 if (Args.hasArg(options::OPT_mno_code_object_v3_legacy)) 1983 D.Diag(diag::warn_drv_deprecated_arg) << "-mno-code-object-v3" 1984 << "-mcode-object-version=2"; 1985 1986 if (Args.hasArg(options::OPT_mcode_object_v3_legacy)) 1987 D.Diag(diag::warn_drv_deprecated_arg) << "-mcode-object-v3" 1988 << "-mcode-object-version=3"; 1989 1990 if (auto *CodeObjArg = getAMDGPUCodeObjectArgument(D, Args)) { 1991 if (CodeObjArg->getOption().getID() == 1992 options::OPT_mcode_object_version_EQ) { 1993 unsigned CodeObjVer = MaxCodeObjVer; 1994 auto Remnant = 1995 StringRef(CodeObjArg->getValue()).getAsInteger(0, CodeObjVer); 1996 if (Remnant || CodeObjVer < MinCodeObjVer || CodeObjVer > MaxCodeObjVer) 1997 D.Diag(diag::err_drv_invalid_int_value) 1998 << CodeObjArg->getAsString(Args) << CodeObjArg->getValue(); 1999 } 2000 } 2001 } 2002 2003 unsigned tools::getAMDGPUCodeObjectVersion(const Driver &D, 2004 const llvm::opt::ArgList &Args) { 2005 unsigned CodeObjVer = 4; // default 2006 if (auto *CodeObjArg = getAMDGPUCodeObjectArgument(D, Args)) { 2007 if (CodeObjArg->getOption().getID() == 2008 options::OPT_mno_code_object_v3_legacy) { 2009 CodeObjVer = 2; 2010 } else if (CodeObjArg->getOption().getID() == 2011 options::OPT_mcode_object_v3_legacy) { 2012 CodeObjVer = 3; 2013 } else { 2014 StringRef(CodeObjArg->getValue()).getAsInteger(0, CodeObjVer); 2015 } 2016 } 2017 return CodeObjVer; 2018 } 2019 2020 bool tools::haveAMDGPUCodeObjectVersionArgument( 2021 const Driver &D, const llvm::opt::ArgList &Args) { 2022 return getAMDGPUCodeObjectArgument(D, Args) != nullptr; 2023 } 2024 2025 void tools::addMachineOutlinerArgs(const Driver &D, 2026 const llvm::opt::ArgList &Args, 2027 llvm::opt::ArgStringList &CmdArgs, 2028 const llvm::Triple &Triple, bool IsLTO) { 2029 auto addArg = [&, IsLTO](const Twine &Arg) { 2030 if (IsLTO) { 2031 CmdArgs.push_back(Args.MakeArgString("-plugin-opt=" + Arg)); 2032 } else { 2033 CmdArgs.push_back("-mllvm"); 2034 CmdArgs.push_back(Args.MakeArgString(Arg)); 2035 } 2036 }; 2037 2038 if (Arg *A = Args.getLastArg(options::OPT_moutline, 2039 options::OPT_mno_outline)) { 2040 if (A->getOption().matches(options::OPT_moutline)) { 2041 // We only support -moutline in AArch64 and ARM targets right now. If 2042 // we're not compiling for these, emit a warning and ignore the flag. 2043 // Otherwise, add the proper mllvm flags. 2044 if (!(Triple.isARM() || Triple.isThumb() || 2045 Triple.getArch() == llvm::Triple::aarch64 || 2046 Triple.getArch() == llvm::Triple::aarch64_32)) { 2047 D.Diag(diag::warn_drv_moutline_unsupported_opt) << Triple.getArchName(); 2048 } else { 2049 addArg(Twine("-enable-machine-outliner")); 2050 } 2051 } else { 2052 // Disable all outlining behaviour. 2053 addArg(Twine("-enable-machine-outliner=never")); 2054 } 2055 } 2056 } 2057 2058 void tools::addOpenMPDeviceRTL(const Driver &D, 2059 const llvm::opt::ArgList &DriverArgs, 2060 llvm::opt::ArgStringList &CC1Args, 2061 StringRef BitcodeSuffix, 2062 const llvm::Triple &Triple) { 2063 SmallVector<StringRef, 8> LibraryPaths; 2064 2065 // Add path to clang lib / lib64 folder. 2066 SmallString<256> DefaultLibPath = llvm::sys::path::parent_path(D.Dir); 2067 llvm::sys::path::append(DefaultLibPath, Twine("lib") + CLANG_LIBDIR_SUFFIX); 2068 LibraryPaths.emplace_back(DefaultLibPath.c_str()); 2069 2070 // Add user defined library paths from LIBRARY_PATH. 2071 llvm::Optional<std::string> LibPath = 2072 llvm::sys::Process::GetEnv("LIBRARY_PATH"); 2073 if (LibPath) { 2074 SmallVector<StringRef, 8> Frags; 2075 const char EnvPathSeparatorStr[] = {llvm::sys::EnvPathSeparator, '\0'}; 2076 llvm::SplitString(*LibPath, Frags, EnvPathSeparatorStr); 2077 for (StringRef Path : Frags) 2078 LibraryPaths.emplace_back(Path.trim()); 2079 } 2080 2081 OptSpecifier LibomptargetBCPathOpt = 2082 Triple.isAMDGCN() ? options::OPT_libomptarget_amdgpu_bc_path_EQ 2083 : options::OPT_libomptarget_nvptx_bc_path_EQ; 2084 2085 StringRef ArchPrefix = Triple.isAMDGCN() ? "amdgpu" : "nvptx"; 2086 std::string LibOmpTargetName = 2087 ("libomptarget-" + ArchPrefix + "-" + BitcodeSuffix + ".bc").str(); 2088 2089 // First check whether user specifies bc library 2090 if (const Arg *A = DriverArgs.getLastArg(LibomptargetBCPathOpt)) { 2091 SmallString<128> LibOmpTargetFile(A->getValue()); 2092 if (llvm::sys::fs::exists(LibOmpTargetFile) && 2093 llvm::sys::fs::is_directory(LibOmpTargetFile)) { 2094 llvm::sys::path::append(LibOmpTargetFile, LibOmpTargetName); 2095 } 2096 2097 if (llvm::sys::fs::exists(LibOmpTargetFile)) { 2098 CC1Args.push_back("-mlink-builtin-bitcode"); 2099 CC1Args.push_back(DriverArgs.MakeArgString(LibOmpTargetFile)); 2100 } else { 2101 D.Diag(diag::err_drv_omp_offload_target_bcruntime_not_found) 2102 << LibOmpTargetFile; 2103 } 2104 } else { 2105 bool FoundBCLibrary = false; 2106 2107 for (StringRef LibraryPath : LibraryPaths) { 2108 SmallString<128> LibOmpTargetFile(LibraryPath); 2109 llvm::sys::path::append(LibOmpTargetFile, LibOmpTargetName); 2110 if (llvm::sys::fs::exists(LibOmpTargetFile)) { 2111 CC1Args.push_back("-mlink-builtin-bitcode"); 2112 CC1Args.push_back(DriverArgs.MakeArgString(LibOmpTargetFile)); 2113 FoundBCLibrary = true; 2114 break; 2115 } 2116 } 2117 2118 if (!FoundBCLibrary) 2119 D.Diag(diag::err_drv_omp_offload_target_missingbcruntime) 2120 << LibOmpTargetName << ArchPrefix; 2121 } 2122 } 2123 void tools::addHIPRuntimeLibArgs(const ToolChain &TC, 2124 const llvm::opt::ArgList &Args, 2125 llvm::opt::ArgStringList &CmdArgs) { 2126 if (Args.hasArg(options::OPT_hip_link) && 2127 !Args.hasArg(options::OPT_nostdlib) && 2128 !Args.hasArg(options::OPT_no_hip_rt)) { 2129 TC.AddHIPRuntimeLibArgs(Args, CmdArgs); 2130 } else { 2131 // Claim "no HIP libraries" arguments if any 2132 for (auto Arg : Args.filtered(options::OPT_no_hip_rt)) { 2133 Arg->claim(); 2134 } 2135 } 2136 } 2137