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 an explicit debugger tuning argument appeared, pass it along.
563   if (Arg *A = Args.getLastArg(options::OPT_gTune_Group,
564                                options::OPT_ggdbN_Group)) {
565     if (A->getOption().matches(options::OPT_glldb))
566       CmdArgs.push_back("-plugin-opt=-debugger-tune=lldb");
567     else if (A->getOption().matches(options::OPT_gsce))
568       CmdArgs.push_back("-plugin-opt=-debugger-tune=sce");
569     else if (A->getOption().matches(options::OPT_gdbx))
570       CmdArgs.push_back("-plugin-opt=-debugger-tune=dbx");
571     else
572       CmdArgs.push_back("-plugin-opt=-debugger-tune=gdb");
573   }
574 
575   bool UseSeparateSections =
576       isUseSeparateSections(ToolChain.getEffectiveTriple());
577 
578   if (Args.hasFlag(options::OPT_ffunction_sections,
579                    options::OPT_fno_function_sections, UseSeparateSections)) {
580     CmdArgs.push_back("-plugin-opt=-function-sections");
581   }
582 
583   if (Args.hasFlag(options::OPT_fdata_sections, options::OPT_fno_data_sections,
584                    UseSeparateSections)) {
585     CmdArgs.push_back("-plugin-opt=-data-sections");
586   }
587 
588   // Pass an option to enable split machine functions.
589   if (auto *A = Args.getLastArg(options::OPT_fsplit_machine_functions,
590                                 options::OPT_fno_split_machine_functions)) {
591     if (A->getOption().matches(options::OPT_fsplit_machine_functions))
592       CmdArgs.push_back("-plugin-opt=-split-machine-functions");
593   }
594 
595   if (Arg *A = getLastProfileSampleUseArg(Args)) {
596     StringRef FName = A->getValue();
597     if (!llvm::sys::fs::exists(FName))
598       D.Diag(diag::err_drv_no_such_file) << FName;
599     else
600       CmdArgs.push_back(
601           Args.MakeArgString(Twine("-plugin-opt=sample-profile=") + FName));
602   }
603 
604   auto *CSPGOGenerateArg = Args.getLastArg(options::OPT_fcs_profile_generate,
605                                            options::OPT_fcs_profile_generate_EQ,
606                                            options::OPT_fno_profile_generate);
607   if (CSPGOGenerateArg &&
608       CSPGOGenerateArg->getOption().matches(options::OPT_fno_profile_generate))
609     CSPGOGenerateArg = nullptr;
610 
611   auto *ProfileUseArg = getLastProfileUseArg(Args);
612 
613   if (CSPGOGenerateArg) {
614     CmdArgs.push_back(Args.MakeArgString("-plugin-opt=cs-profile-generate"));
615     if (CSPGOGenerateArg->getOption().matches(
616             options::OPT_fcs_profile_generate_EQ)) {
617       SmallString<128> Path(CSPGOGenerateArg->getValue());
618       llvm::sys::path::append(Path, "default_%m.profraw");
619       CmdArgs.push_back(
620           Args.MakeArgString(Twine("-plugin-opt=cs-profile-path=") + Path));
621     } else
622       CmdArgs.push_back(
623           Args.MakeArgString("-plugin-opt=cs-profile-path=default_%m.profraw"));
624   } else if (ProfileUseArg) {
625     SmallString<128> Path(
626         ProfileUseArg->getNumValues() == 0 ? "" : ProfileUseArg->getValue());
627     if (Path.empty() || llvm::sys::fs::is_directory(Path))
628       llvm::sys::path::append(Path, "default.profdata");
629     CmdArgs.push_back(Args.MakeArgString(Twine("-plugin-opt=cs-profile-path=") +
630                                          Path));
631   }
632 
633   // Setup statistics file output.
634   SmallString<128> StatsFile = getStatsFileName(Args, Output, Input, D);
635   if (!StatsFile.empty())
636     CmdArgs.push_back(
637         Args.MakeArgString(Twine("-plugin-opt=stats-file=") + StatsFile));
638 
639   addX86AlignBranchArgs(D, Args, CmdArgs, /*IsLTO=*/true);
640 
641   // Handle remark diagnostics on screen options: '-Rpass-*'.
642   renderRpassOptions(Args, CmdArgs);
643 
644   // Handle serialized remarks options: '-fsave-optimization-record'
645   // and '-foptimization-record-*'.
646   if (willEmitRemarks(Args))
647     renderRemarksOptions(Args, CmdArgs, ToolChain.getEffectiveTriple(), Input,
648                          Output);
649 
650   // Handle remarks hotness/threshold related options.
651   renderRemarksHotnessOptions(Args, CmdArgs);
652 
653   addMachineOutlinerArgs(D, Args, CmdArgs, ToolChain.getEffectiveTriple(),
654                          /*IsLTO=*/true);
655 }
656 
657 void tools::addOpenMPRuntimeSpecificRPath(const ToolChain &TC,
658                                           const ArgList &Args,
659                                           ArgStringList &CmdArgs) {
660 
661   if (Args.hasFlag(options::OPT_fopenmp_implicit_rpath,
662                    options::OPT_fno_openmp_implicit_rpath, true)) {
663     // Default to clang lib / lib64 folder, i.e. the same location as device
664     // runtime
665     SmallString<256> DefaultLibPath =
666         llvm::sys::path::parent_path(TC.getDriver().Dir);
667     llvm::sys::path::append(DefaultLibPath, Twine("lib") + CLANG_LIBDIR_SUFFIX);
668     CmdArgs.push_back("-rpath");
669     CmdArgs.push_back(Args.MakeArgString(DefaultLibPath));
670   }
671 }
672 
673 void tools::addOpenMPRuntimeLibraryPath(const ToolChain &TC,
674                                         const ArgList &Args,
675                                         ArgStringList &CmdArgs) {
676   // Default to clang lib / lib64 folder, i.e. the same location as device
677   // runtime.
678   SmallString<256> DefaultLibPath =
679       llvm::sys::path::parent_path(TC.getDriver().Dir);
680   llvm::sys::path::append(DefaultLibPath, Twine("lib") + CLANG_LIBDIR_SUFFIX);
681   CmdArgs.push_back(Args.MakeArgString("-L" + DefaultLibPath));
682 }
683 
684 void tools::addArchSpecificRPath(const ToolChain &TC, const ArgList &Args,
685                                  ArgStringList &CmdArgs) {
686   // Enable -frtlib-add-rpath by default for the case of VE.
687   const bool IsVE = TC.getTriple().isVE();
688   bool DefaultValue = IsVE;
689   if (!Args.hasFlag(options::OPT_frtlib_add_rpath,
690                     options::OPT_fno_rtlib_add_rpath, DefaultValue))
691     return;
692 
693   std::string CandidateRPath = TC.getArchSpecificLibPath();
694   if (TC.getVFS().exists(CandidateRPath)) {
695     CmdArgs.push_back("-rpath");
696     CmdArgs.push_back(Args.MakeArgString(CandidateRPath));
697   }
698 }
699 
700 bool tools::addOpenMPRuntime(ArgStringList &CmdArgs, const ToolChain &TC,
701                              const ArgList &Args, bool ForceStaticHostRuntime,
702                              bool IsOffloadingHost, bool GompNeedsRT) {
703   if (!Args.hasFlag(options::OPT_fopenmp, options::OPT_fopenmp_EQ,
704                     options::OPT_fno_openmp, false))
705     return false;
706 
707   Driver::OpenMPRuntimeKind RTKind = TC.getDriver().getOpenMPRuntime(Args);
708 
709   if (RTKind == Driver::OMPRT_Unknown)
710     // Already diagnosed.
711     return false;
712 
713   if (ForceStaticHostRuntime)
714     CmdArgs.push_back("-Bstatic");
715 
716   switch (RTKind) {
717   case Driver::OMPRT_OMP:
718     CmdArgs.push_back("-lomp");
719     break;
720   case Driver::OMPRT_GOMP:
721     CmdArgs.push_back("-lgomp");
722     break;
723   case Driver::OMPRT_IOMP5:
724     CmdArgs.push_back("-liomp5");
725     break;
726   case Driver::OMPRT_Unknown:
727     break;
728   }
729 
730   if (ForceStaticHostRuntime)
731     CmdArgs.push_back("-Bdynamic");
732 
733   if (RTKind == Driver::OMPRT_GOMP && GompNeedsRT)
734       CmdArgs.push_back("-lrt");
735 
736   if (IsOffloadingHost)
737     CmdArgs.push_back("-lomptarget");
738 
739   if (IsOffloadingHost && TC.getDriver().isUsingLTO(/* IsOffload */ true))
740     CmdArgs.push_back("-lomptarget.devicertl");
741 
742   addArchSpecificRPath(TC, Args, CmdArgs);
743 
744   if (RTKind == Driver::OMPRT_OMP)
745     addOpenMPRuntimeSpecificRPath(TC, Args, CmdArgs);
746   addOpenMPRuntimeLibraryPath(TC, Args, CmdArgs);
747 
748   return true;
749 }
750 
751 static void addSanitizerRuntime(const ToolChain &TC, const ArgList &Args,
752                                 ArgStringList &CmdArgs, StringRef Sanitizer,
753                                 bool IsShared, bool IsWhole) {
754   // Wrap any static runtimes that must be forced into executable in
755   // whole-archive.
756   if (IsWhole) CmdArgs.push_back("--whole-archive");
757   CmdArgs.push_back(TC.getCompilerRTArgString(
758       Args, Sanitizer, IsShared ? ToolChain::FT_Shared : ToolChain::FT_Static));
759   if (IsWhole) CmdArgs.push_back("--no-whole-archive");
760 
761   if (IsShared) {
762     addArchSpecificRPath(TC, Args, CmdArgs);
763   }
764 }
765 
766 // Tries to use a file with the list of dynamic symbols that need to be exported
767 // from the runtime library. Returns true if the file was found.
768 static bool addSanitizerDynamicList(const ToolChain &TC, const ArgList &Args,
769                                     ArgStringList &CmdArgs,
770                                     StringRef Sanitizer) {
771   // Solaris ld defaults to --export-dynamic behaviour but doesn't support
772   // the option, so don't try to pass it.
773   if (TC.getTriple().getOS() == llvm::Triple::Solaris)
774     return true;
775   SmallString<128> SanRT(TC.getCompilerRT(Args, Sanitizer));
776   if (llvm::sys::fs::exists(SanRT + ".syms")) {
777     CmdArgs.push_back(Args.MakeArgString("--dynamic-list=" + SanRT + ".syms"));
778     return true;
779   }
780   return false;
781 }
782 
783 const char *tools::getAsNeededOption(const ToolChain &TC, bool as_needed) {
784   assert(!TC.getTriple().isOSAIX() &&
785          "AIX linker does not support any form of --as-needed option yet.");
786 
787   // While the Solaris 11.2 ld added --as-needed/--no-as-needed as aliases
788   // for the native forms -z ignore/-z record, they are missing in Illumos,
789   // so always use the native form.
790   if (TC.getTriple().isOSSolaris())
791     return as_needed ? "-zignore" : "-zrecord";
792   else
793     return as_needed ? "--as-needed" : "--no-as-needed";
794 }
795 
796 void tools::linkSanitizerRuntimeDeps(const ToolChain &TC,
797                                      ArgStringList &CmdArgs) {
798   // Force linking against the system libraries sanitizers depends on
799   // (see PR15823 why this is necessary).
800   CmdArgs.push_back(getAsNeededOption(TC, false));
801   // There's no libpthread or librt on RTEMS & Android.
802   if (TC.getTriple().getOS() != llvm::Triple::RTEMS &&
803       !TC.getTriple().isAndroid()) {
804     CmdArgs.push_back("-lpthread");
805     if (!TC.getTriple().isOSOpenBSD())
806       CmdArgs.push_back("-lrt");
807   }
808   CmdArgs.push_back("-lm");
809   // There's no libdl on all OSes.
810   if (!TC.getTriple().isOSFreeBSD() && !TC.getTriple().isOSNetBSD() &&
811       !TC.getTriple().isOSOpenBSD() &&
812       TC.getTriple().getOS() != llvm::Triple::RTEMS)
813     CmdArgs.push_back("-ldl");
814   // Required for backtrace on some OSes
815   if (TC.getTriple().isOSFreeBSD() ||
816       TC.getTriple().isOSNetBSD() ||
817       TC.getTriple().isOSOpenBSD())
818     CmdArgs.push_back("-lexecinfo");
819 }
820 
821 static void
822 collectSanitizerRuntimes(const ToolChain &TC, const ArgList &Args,
823                          SmallVectorImpl<StringRef> &SharedRuntimes,
824                          SmallVectorImpl<StringRef> &StaticRuntimes,
825                          SmallVectorImpl<StringRef> &NonWholeStaticRuntimes,
826                          SmallVectorImpl<StringRef> &HelperStaticRuntimes,
827                          SmallVectorImpl<StringRef> &RequiredSymbols) {
828   const SanitizerArgs &SanArgs = TC.getSanitizerArgs(Args);
829   // Collect shared runtimes.
830   if (SanArgs.needsSharedRt()) {
831     if (SanArgs.needsAsanRt() && SanArgs.linkRuntimes()) {
832       SharedRuntimes.push_back("asan");
833       if (!Args.hasArg(options::OPT_shared) && !TC.getTriple().isAndroid())
834         HelperStaticRuntimes.push_back("asan-preinit");
835     }
836     if (SanArgs.needsMemProfRt() && SanArgs.linkRuntimes()) {
837       SharedRuntimes.push_back("memprof");
838       if (!Args.hasArg(options::OPT_shared) && !TC.getTriple().isAndroid())
839         HelperStaticRuntimes.push_back("memprof-preinit");
840     }
841     if (SanArgs.needsUbsanRt() && SanArgs.linkRuntimes()) {
842       if (SanArgs.requiresMinimalRuntime())
843         SharedRuntimes.push_back("ubsan_minimal");
844       else
845         SharedRuntimes.push_back("ubsan_standalone");
846     }
847     if (SanArgs.needsScudoRt() && SanArgs.linkRuntimes()) {
848       if (SanArgs.requiresMinimalRuntime())
849         SharedRuntimes.push_back("scudo_minimal");
850       else
851         SharedRuntimes.push_back("scudo");
852     }
853     if (SanArgs.needsTsanRt() && SanArgs.linkRuntimes())
854       SharedRuntimes.push_back("tsan");
855     if (SanArgs.needsHwasanRt() && SanArgs.linkRuntimes()) {
856       if (SanArgs.needsHwasanAliasesRt())
857         SharedRuntimes.push_back("hwasan_aliases");
858       else
859         SharedRuntimes.push_back("hwasan");
860       if (!Args.hasArg(options::OPT_shared))
861         HelperStaticRuntimes.push_back("hwasan-preinit");
862     }
863   }
864 
865   // The stats_client library is also statically linked into DSOs.
866   if (SanArgs.needsStatsRt() && SanArgs.linkRuntimes())
867     StaticRuntimes.push_back("stats_client");
868 
869   // Always link the static runtime regardless of DSO or executable.
870   if (SanArgs.needsAsanRt())
871     HelperStaticRuntimes.push_back("asan_static");
872 
873   // Collect static runtimes.
874   if (Args.hasArg(options::OPT_shared)) {
875     // Don't link static runtimes into DSOs.
876     return;
877   }
878 
879   // Each static runtime that has a DSO counterpart above is excluded below,
880   // but runtimes that exist only as static are not affected by needsSharedRt.
881 
882   if (!SanArgs.needsSharedRt() && SanArgs.needsAsanRt() && SanArgs.linkRuntimes()) {
883     StaticRuntimes.push_back("asan");
884     if (SanArgs.linkCXXRuntimes())
885       StaticRuntimes.push_back("asan_cxx");
886   }
887 
888   if (!SanArgs.needsSharedRt() && SanArgs.needsMemProfRt() &&
889       SanArgs.linkRuntimes()) {
890     StaticRuntimes.push_back("memprof");
891     if (SanArgs.linkCXXRuntimes())
892       StaticRuntimes.push_back("memprof_cxx");
893   }
894 
895   if (!SanArgs.needsSharedRt() && SanArgs.needsHwasanRt() && SanArgs.linkRuntimes()) {
896     if (SanArgs.needsHwasanAliasesRt()) {
897       StaticRuntimes.push_back("hwasan_aliases");
898       if (SanArgs.linkCXXRuntimes())
899         StaticRuntimes.push_back("hwasan_aliases_cxx");
900     } else {
901       StaticRuntimes.push_back("hwasan");
902       if (SanArgs.linkCXXRuntimes())
903         StaticRuntimes.push_back("hwasan_cxx");
904     }
905   }
906   if (SanArgs.needsDfsanRt() && SanArgs.linkRuntimes())
907     StaticRuntimes.push_back("dfsan");
908   if (SanArgs.needsLsanRt() && SanArgs.linkRuntimes())
909     StaticRuntimes.push_back("lsan");
910   if (SanArgs.needsMsanRt() && SanArgs.linkRuntimes()) {
911     StaticRuntimes.push_back("msan");
912     if (SanArgs.linkCXXRuntimes())
913       StaticRuntimes.push_back("msan_cxx");
914   }
915   if (!SanArgs.needsSharedRt() && SanArgs.needsTsanRt() &&
916       SanArgs.linkRuntimes()) {
917     StaticRuntimes.push_back("tsan");
918     if (SanArgs.linkCXXRuntimes())
919       StaticRuntimes.push_back("tsan_cxx");
920   }
921   if (!SanArgs.needsSharedRt() && SanArgs.needsUbsanRt() && SanArgs.linkRuntimes()) {
922     if (SanArgs.requiresMinimalRuntime()) {
923       StaticRuntimes.push_back("ubsan_minimal");
924     } else {
925       StaticRuntimes.push_back("ubsan_standalone");
926       if (SanArgs.linkCXXRuntimes())
927         StaticRuntimes.push_back("ubsan_standalone_cxx");
928     }
929   }
930   if (SanArgs.needsSafeStackRt() && SanArgs.linkRuntimes()) {
931     NonWholeStaticRuntimes.push_back("safestack");
932     RequiredSymbols.push_back("__safestack_init");
933   }
934   if (!(SanArgs.needsSharedRt() && SanArgs.needsUbsanRt() && SanArgs.linkRuntimes())) {
935     if (SanArgs.needsCfiRt() && SanArgs.linkRuntimes())
936       StaticRuntimes.push_back("cfi");
937     if (SanArgs.needsCfiDiagRt() && SanArgs.linkRuntimes()) {
938       StaticRuntimes.push_back("cfi_diag");
939       if (SanArgs.linkCXXRuntimes())
940         StaticRuntimes.push_back("ubsan_standalone_cxx");
941     }
942   }
943   if (SanArgs.needsStatsRt() && SanArgs.linkRuntimes()) {
944     NonWholeStaticRuntimes.push_back("stats");
945     RequiredSymbols.push_back("__sanitizer_stats_register");
946   }
947   if (!SanArgs.needsSharedRt() && SanArgs.needsScudoRt() && SanArgs.linkRuntimes()) {
948     if (SanArgs.requiresMinimalRuntime()) {
949       StaticRuntimes.push_back("scudo_minimal");
950       if (SanArgs.linkCXXRuntimes())
951         StaticRuntimes.push_back("scudo_cxx_minimal");
952     } else {
953       StaticRuntimes.push_back("scudo");
954       if (SanArgs.linkCXXRuntimes())
955         StaticRuntimes.push_back("scudo_cxx");
956     }
957   }
958 }
959 
960 // Should be called before we add system libraries (C++ ABI, libstdc++/libc++,
961 // C runtime, etc). Returns true if sanitizer system deps need to be linked in.
962 bool tools::addSanitizerRuntimes(const ToolChain &TC, const ArgList &Args,
963                                  ArgStringList &CmdArgs) {
964   SmallVector<StringRef, 4> SharedRuntimes, StaticRuntimes,
965       NonWholeStaticRuntimes, HelperStaticRuntimes, RequiredSymbols;
966   collectSanitizerRuntimes(TC, Args, SharedRuntimes, StaticRuntimes,
967                            NonWholeStaticRuntimes, HelperStaticRuntimes,
968                            RequiredSymbols);
969 
970   const SanitizerArgs &SanArgs = TC.getSanitizerArgs(Args);
971   // Inject libfuzzer dependencies.
972   if (SanArgs.needsFuzzer() && SanArgs.linkRuntimes() &&
973       !Args.hasArg(options::OPT_shared)) {
974 
975     addSanitizerRuntime(TC, Args, CmdArgs, "fuzzer", false, true);
976     if (SanArgs.needsFuzzerInterceptors())
977       addSanitizerRuntime(TC, Args, CmdArgs, "fuzzer_interceptors", false,
978                           true);
979     if (!Args.hasArg(clang::driver::options::OPT_nostdlibxx)) {
980       bool OnlyLibstdcxxStatic = Args.hasArg(options::OPT_static_libstdcxx) &&
981                                  !Args.hasArg(options::OPT_static);
982       if (OnlyLibstdcxxStatic)
983         CmdArgs.push_back("-Bstatic");
984       TC.AddCXXStdlibLibArgs(Args, CmdArgs);
985       if (OnlyLibstdcxxStatic)
986         CmdArgs.push_back("-Bdynamic");
987     }
988   }
989 
990   for (auto RT : SharedRuntimes)
991     addSanitizerRuntime(TC, Args, CmdArgs, RT, true, false);
992   for (auto RT : HelperStaticRuntimes)
993     addSanitizerRuntime(TC, Args, CmdArgs, RT, false, true);
994   bool AddExportDynamic = false;
995   for (auto RT : StaticRuntimes) {
996     addSanitizerRuntime(TC, Args, CmdArgs, RT, false, true);
997     AddExportDynamic |= !addSanitizerDynamicList(TC, Args, CmdArgs, RT);
998   }
999   for (auto RT : NonWholeStaticRuntimes) {
1000     addSanitizerRuntime(TC, Args, CmdArgs, RT, false, false);
1001     AddExportDynamic |= !addSanitizerDynamicList(TC, Args, CmdArgs, RT);
1002   }
1003   for (auto S : RequiredSymbols) {
1004     CmdArgs.push_back("-u");
1005     CmdArgs.push_back(Args.MakeArgString(S));
1006   }
1007   // If there is a static runtime with no dynamic list, force all the symbols
1008   // to be dynamic to be sure we export sanitizer interface functions.
1009   if (AddExportDynamic)
1010     CmdArgs.push_back("--export-dynamic");
1011 
1012   if (SanArgs.hasCrossDsoCfi() && !AddExportDynamic)
1013     CmdArgs.push_back("--export-dynamic-symbol=__cfi_check");
1014 
1015   if (SanArgs.hasMemTag()) {
1016     if (!TC.getTriple().isAndroid()) {
1017       TC.getDriver().Diag(diag::err_drv_unsupported_opt_for_target)
1018           << "-fsanitize=memtag*" << TC.getTriple().str();
1019     }
1020     CmdArgs.push_back(
1021         Args.MakeArgString("--android-memtag-mode=" + SanArgs.getMemtagMode()));
1022     if (SanArgs.hasMemtagHeap())
1023       CmdArgs.push_back("--android-memtag-heap");
1024     if (SanArgs.hasMemtagStack())
1025       CmdArgs.push_back("--android-memtag-stack");
1026   }
1027 
1028   return !StaticRuntimes.empty() || !NonWholeStaticRuntimes.empty();
1029 }
1030 
1031 bool tools::addXRayRuntime(const ToolChain&TC, const ArgList &Args, ArgStringList &CmdArgs) {
1032   if (Args.hasArg(options::OPT_shared))
1033     return false;
1034 
1035   if (TC.getXRayArgs().needsXRayRt()) {
1036     CmdArgs.push_back("-whole-archive");
1037     CmdArgs.push_back(TC.getCompilerRTArgString(Args, "xray"));
1038     for (const auto &Mode : TC.getXRayArgs().modeList())
1039       CmdArgs.push_back(TC.getCompilerRTArgString(Args, Mode));
1040     CmdArgs.push_back("-no-whole-archive");
1041     return true;
1042   }
1043 
1044   return false;
1045 }
1046 
1047 void tools::linkXRayRuntimeDeps(const ToolChain &TC, ArgStringList &CmdArgs) {
1048   CmdArgs.push_back(getAsNeededOption(TC, false));
1049   CmdArgs.push_back("-lpthread");
1050   if (!TC.getTriple().isOSOpenBSD())
1051     CmdArgs.push_back("-lrt");
1052   CmdArgs.push_back("-lm");
1053 
1054   if (!TC.getTriple().isOSFreeBSD() &&
1055       !TC.getTriple().isOSNetBSD() &&
1056       !TC.getTriple().isOSOpenBSD())
1057     CmdArgs.push_back("-ldl");
1058 }
1059 
1060 bool tools::areOptimizationsEnabled(const ArgList &Args) {
1061   // Find the last -O arg and see if it is non-zero.
1062   if (Arg *A = Args.getLastArg(options::OPT_O_Group))
1063     return !A->getOption().matches(options::OPT_O0);
1064   // Defaults to -O0.
1065   return false;
1066 }
1067 
1068 const char *tools::SplitDebugName(const JobAction &JA, const ArgList &Args,
1069                                   const InputInfo &Input,
1070                                   const InputInfo &Output) {
1071   auto AddPostfix = [JA](auto &F) {
1072     if (JA.getOffloadingDeviceKind() == Action::OFK_HIP)
1073       F += (Twine("_") + JA.getOffloadingArch()).str();
1074     F += ".dwo";
1075   };
1076   if (Arg *A = Args.getLastArg(options::OPT_gsplit_dwarf_EQ))
1077     if (StringRef(A->getValue()) == "single")
1078       return Args.MakeArgString(Output.getFilename());
1079 
1080   Arg *FinalOutput = Args.getLastArg(options::OPT_o);
1081   if (FinalOutput && Args.hasArg(options::OPT_c)) {
1082     SmallString<128> T(FinalOutput->getValue());
1083     llvm::sys::path::remove_filename(T);
1084     llvm::sys::path::append(T, llvm::sys::path::stem(FinalOutput->getValue()));
1085     AddPostfix(T);
1086     return Args.MakeArgString(T);
1087   } else {
1088     // Use the compilation dir.
1089     Arg *A = Args.getLastArg(options::OPT_ffile_compilation_dir_EQ,
1090                              options::OPT_fdebug_compilation_dir_EQ);
1091     SmallString<128> T(A ? A->getValue() : "");
1092     SmallString<128> F(llvm::sys::path::stem(Input.getBaseInput()));
1093     AddPostfix(F);
1094     T += F;
1095     return Args.MakeArgString(T);
1096   }
1097 }
1098 
1099 void tools::SplitDebugInfo(const ToolChain &TC, Compilation &C, const Tool &T,
1100                            const JobAction &JA, const ArgList &Args,
1101                            const InputInfo &Output, const char *OutFile) {
1102   ArgStringList ExtractArgs;
1103   ExtractArgs.push_back("--extract-dwo");
1104 
1105   ArgStringList StripArgs;
1106   StripArgs.push_back("--strip-dwo");
1107 
1108   // Grabbing the output of the earlier compile step.
1109   StripArgs.push_back(Output.getFilename());
1110   ExtractArgs.push_back(Output.getFilename());
1111   ExtractArgs.push_back(OutFile);
1112 
1113   const char *Exec =
1114       Args.MakeArgString(TC.GetProgramPath(CLANG_DEFAULT_OBJCOPY));
1115   InputInfo II(types::TY_Object, Output.getFilename(), Output.getFilename());
1116 
1117   // First extract the dwo sections.
1118   C.addCommand(std::make_unique<Command>(JA, T,
1119                                          ResponseFileSupport::AtFileCurCP(),
1120                                          Exec, ExtractArgs, II, Output));
1121 
1122   // Then remove them from the original .o file.
1123   C.addCommand(std::make_unique<Command>(
1124       JA, T, ResponseFileSupport::AtFileCurCP(), Exec, StripArgs, II, Output));
1125 }
1126 
1127 // Claim options we don't want to warn if they are unused. We do this for
1128 // options that build systems might add but are unused when assembling or only
1129 // running the preprocessor for example.
1130 void tools::claimNoWarnArgs(const ArgList &Args) {
1131   // Don't warn about unused -f(no-)?lto.  This can happen when we're
1132   // preprocessing, precompiling or assembling.
1133   Args.ClaimAllArgs(options::OPT_flto_EQ);
1134   Args.ClaimAllArgs(options::OPT_flto);
1135   Args.ClaimAllArgs(options::OPT_fno_lto);
1136 }
1137 
1138 Arg *tools::getLastProfileUseArg(const ArgList &Args) {
1139   auto *ProfileUseArg = Args.getLastArg(
1140       options::OPT_fprofile_instr_use, options::OPT_fprofile_instr_use_EQ,
1141       options::OPT_fprofile_use, options::OPT_fprofile_use_EQ,
1142       options::OPT_fno_profile_instr_use);
1143 
1144   if (ProfileUseArg &&
1145       ProfileUseArg->getOption().matches(options::OPT_fno_profile_instr_use))
1146     ProfileUseArg = nullptr;
1147 
1148   return ProfileUseArg;
1149 }
1150 
1151 Arg *tools::getLastProfileSampleUseArg(const ArgList &Args) {
1152   auto *ProfileSampleUseArg = Args.getLastArg(
1153       options::OPT_fprofile_sample_use, options::OPT_fprofile_sample_use_EQ,
1154       options::OPT_fauto_profile, options::OPT_fauto_profile_EQ,
1155       options::OPT_fno_profile_sample_use, options::OPT_fno_auto_profile);
1156 
1157   if (ProfileSampleUseArg &&
1158       (ProfileSampleUseArg->getOption().matches(
1159            options::OPT_fno_profile_sample_use) ||
1160        ProfileSampleUseArg->getOption().matches(options::OPT_fno_auto_profile)))
1161     return nullptr;
1162 
1163   return Args.getLastArg(options::OPT_fprofile_sample_use_EQ,
1164                          options::OPT_fauto_profile_EQ);
1165 }
1166 
1167 /// Parses the various -fpic/-fPIC/-fpie/-fPIE arguments.  Then,
1168 /// smooshes them together with platform defaults, to decide whether
1169 /// this compile should be using PIC mode or not. Returns a tuple of
1170 /// (RelocationModel, PICLevel, IsPIE).
1171 std::tuple<llvm::Reloc::Model, unsigned, bool>
1172 tools::ParsePICArgs(const ToolChain &ToolChain, const ArgList &Args) {
1173   const llvm::Triple &EffectiveTriple = ToolChain.getEffectiveTriple();
1174   const llvm::Triple &Triple = ToolChain.getTriple();
1175 
1176   bool PIE = ToolChain.isPIEDefault(Args);
1177   bool PIC = PIE || ToolChain.isPICDefault();
1178   // The Darwin/MachO default to use PIC does not apply when using -static.
1179   if (Triple.isOSBinFormatMachO() && Args.hasArg(options::OPT_static))
1180     PIE = PIC = false;
1181   bool IsPICLevelTwo = PIC;
1182 
1183   bool KernelOrKext =
1184       Args.hasArg(options::OPT_mkernel, options::OPT_fapple_kext);
1185 
1186   // Android-specific defaults for PIC/PIE
1187   if (Triple.isAndroid()) {
1188     switch (Triple.getArch()) {
1189     case llvm::Triple::arm:
1190     case llvm::Triple::armeb:
1191     case llvm::Triple::thumb:
1192     case llvm::Triple::thumbeb:
1193     case llvm::Triple::aarch64:
1194     case llvm::Triple::mips:
1195     case llvm::Triple::mipsel:
1196     case llvm::Triple::mips64:
1197     case llvm::Triple::mips64el:
1198       PIC = true; // "-fpic"
1199       break;
1200 
1201     case llvm::Triple::x86:
1202     case llvm::Triple::x86_64:
1203       PIC = true; // "-fPIC"
1204       IsPICLevelTwo = true;
1205       break;
1206 
1207     default:
1208       break;
1209     }
1210   }
1211 
1212   // OpenBSD-specific defaults for PIE
1213   if (Triple.isOSOpenBSD()) {
1214     switch (ToolChain.getArch()) {
1215     case llvm::Triple::arm:
1216     case llvm::Triple::aarch64:
1217     case llvm::Triple::mips64:
1218     case llvm::Triple::mips64el:
1219     case llvm::Triple::x86:
1220     case llvm::Triple::x86_64:
1221       IsPICLevelTwo = false; // "-fpie"
1222       break;
1223 
1224     case llvm::Triple::ppc:
1225     case llvm::Triple::sparcv9:
1226       IsPICLevelTwo = true; // "-fPIE"
1227       break;
1228 
1229     default:
1230       break;
1231     }
1232   }
1233 
1234   // AMDGPU-specific defaults for PIC.
1235   if (Triple.getArch() == llvm::Triple::amdgcn)
1236     PIC = true;
1237 
1238   // The last argument relating to either PIC or PIE wins, and no
1239   // other argument is used. If the last argument is any flavor of the
1240   // '-fno-...' arguments, both PIC and PIE are disabled. Any PIE
1241   // option implicitly enables PIC at the same level.
1242   Arg *LastPICArg = Args.getLastArg(options::OPT_fPIC, options::OPT_fno_PIC,
1243                                     options::OPT_fpic, options::OPT_fno_pic,
1244                                     options::OPT_fPIE, options::OPT_fno_PIE,
1245                                     options::OPT_fpie, options::OPT_fno_pie);
1246   if (Triple.isOSWindows() && !Triple.isOSCygMing() && LastPICArg &&
1247       LastPICArg == Args.getLastArg(options::OPT_fPIC, options::OPT_fpic,
1248                                     options::OPT_fPIE, options::OPT_fpie)) {
1249     ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target)
1250         << LastPICArg->getSpelling() << Triple.str();
1251     if (Triple.getArch() == llvm::Triple::x86_64)
1252       return std::make_tuple(llvm::Reloc::PIC_, 2U, false);
1253     return std::make_tuple(llvm::Reloc::Static, 0U, false);
1254   }
1255 
1256   // Check whether the tool chain trumps the PIC-ness decision. If the PIC-ness
1257   // is forced, then neither PIC nor PIE flags will have no effect.
1258   if (!ToolChain.isPICDefaultForced()) {
1259     if (LastPICArg) {
1260       Option O = LastPICArg->getOption();
1261       if (O.matches(options::OPT_fPIC) || O.matches(options::OPT_fpic) ||
1262           O.matches(options::OPT_fPIE) || O.matches(options::OPT_fpie)) {
1263         PIE = O.matches(options::OPT_fPIE) || O.matches(options::OPT_fpie);
1264         PIC =
1265             PIE || O.matches(options::OPT_fPIC) || O.matches(options::OPT_fpic);
1266         IsPICLevelTwo =
1267             O.matches(options::OPT_fPIE) || O.matches(options::OPT_fPIC);
1268       } else {
1269         PIE = PIC = false;
1270         if (EffectiveTriple.isPS4()) {
1271           Arg *ModelArg = Args.getLastArg(options::OPT_mcmodel_EQ);
1272           StringRef Model = ModelArg ? ModelArg->getValue() : "";
1273           if (Model != "kernel") {
1274             PIC = true;
1275             ToolChain.getDriver().Diag(diag::warn_drv_ps4_force_pic)
1276                 << LastPICArg->getSpelling();
1277           }
1278         }
1279       }
1280     }
1281   }
1282 
1283   // Introduce a Darwin and PS4-specific hack. If the default is PIC, but the
1284   // PIC level would've been set to level 1, force it back to level 2 PIC
1285   // instead.
1286   if (PIC && (Triple.isOSDarwin() || EffectiveTriple.isPS4()))
1287     IsPICLevelTwo |= ToolChain.isPICDefault();
1288 
1289   // This kernel flags are a trump-card: they will disable PIC/PIE
1290   // generation, independent of the argument order.
1291   if (KernelOrKext &&
1292       ((!EffectiveTriple.isiOS() || EffectiveTriple.isOSVersionLT(6)) &&
1293        !EffectiveTriple.isWatchOS() && !EffectiveTriple.isDriverKit()))
1294     PIC = PIE = false;
1295 
1296   if (Arg *A = Args.getLastArg(options::OPT_mdynamic_no_pic)) {
1297     // This is a very special mode. It trumps the other modes, almost no one
1298     // uses it, and it isn't even valid on any OS but Darwin.
1299     if (!Triple.isOSDarwin())
1300       ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target)
1301           << A->getSpelling() << Triple.str();
1302 
1303     // FIXME: Warn when this flag trumps some other PIC or PIE flag.
1304 
1305     // Only a forced PIC mode can cause the actual compile to have PIC defines
1306     // etc., no flags are sufficient. This behavior was selected to closely
1307     // match that of llvm-gcc and Apple GCC before that.
1308     PIC = ToolChain.isPICDefault() && ToolChain.isPICDefaultForced();
1309 
1310     return std::make_tuple(llvm::Reloc::DynamicNoPIC, PIC ? 2U : 0U, false);
1311   }
1312 
1313   bool EmbeddedPISupported;
1314   switch (Triple.getArch()) {
1315     case llvm::Triple::arm:
1316     case llvm::Triple::armeb:
1317     case llvm::Triple::thumb:
1318     case llvm::Triple::thumbeb:
1319       EmbeddedPISupported = true;
1320       break;
1321     default:
1322       EmbeddedPISupported = false;
1323       break;
1324   }
1325 
1326   bool ROPI = false, RWPI = false;
1327   Arg* LastROPIArg = Args.getLastArg(options::OPT_fropi, options::OPT_fno_ropi);
1328   if (LastROPIArg && LastROPIArg->getOption().matches(options::OPT_fropi)) {
1329     if (!EmbeddedPISupported)
1330       ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target)
1331           << LastROPIArg->getSpelling() << Triple.str();
1332     ROPI = true;
1333   }
1334   Arg *LastRWPIArg = Args.getLastArg(options::OPT_frwpi, options::OPT_fno_rwpi);
1335   if (LastRWPIArg && LastRWPIArg->getOption().matches(options::OPT_frwpi)) {
1336     if (!EmbeddedPISupported)
1337       ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target)
1338           << LastRWPIArg->getSpelling() << Triple.str();
1339     RWPI = true;
1340   }
1341 
1342   // ROPI and RWPI are not compatible with PIC or PIE.
1343   if ((ROPI || RWPI) && (PIC || PIE))
1344     ToolChain.getDriver().Diag(diag::err_drv_ropi_rwpi_incompatible_with_pic);
1345 
1346   if (Triple.isMIPS()) {
1347     StringRef CPUName;
1348     StringRef ABIName;
1349     mips::getMipsCPUAndABI(Args, Triple, CPUName, ABIName);
1350     // When targeting the N64 ABI, PIC is the default, except in the case
1351     // when the -mno-abicalls option is used. In that case we exit
1352     // at next check regardless of PIC being set below.
1353     if (ABIName == "n64")
1354       PIC = true;
1355     // When targettng MIPS with -mno-abicalls, it's always static.
1356     if(Args.hasArg(options::OPT_mno_abicalls))
1357       return std::make_tuple(llvm::Reloc::Static, 0U, false);
1358     // Unlike other architectures, MIPS, even with -fPIC/-mxgot/multigot,
1359     // does not use PIC level 2 for historical reasons.
1360     IsPICLevelTwo = false;
1361   }
1362 
1363   if (PIC)
1364     return std::make_tuple(llvm::Reloc::PIC_, IsPICLevelTwo ? 2U : 1U, PIE);
1365 
1366   llvm::Reloc::Model RelocM = llvm::Reloc::Static;
1367   if (ROPI && RWPI)
1368     RelocM = llvm::Reloc::ROPI_RWPI;
1369   else if (ROPI)
1370     RelocM = llvm::Reloc::ROPI;
1371   else if (RWPI)
1372     RelocM = llvm::Reloc::RWPI;
1373 
1374   return std::make_tuple(RelocM, 0U, false);
1375 }
1376 
1377 // `-falign-functions` indicates that the functions should be aligned to a
1378 // 16-byte boundary.
1379 //
1380 // `-falign-functions=1` is the same as `-fno-align-functions`.
1381 //
1382 // The scalar `n` in `-falign-functions=n` must be an integral value between
1383 // [0, 65536].  If the value is not a power-of-two, it will be rounded up to
1384 // the nearest power-of-two.
1385 //
1386 // If we return `0`, the frontend will default to the backend's preferred
1387 // alignment.
1388 //
1389 // NOTE: icc only allows values between [0, 4096].  icc uses `-falign-functions`
1390 // to mean `-falign-functions=16`.  GCC defaults to the backend's preferred
1391 // alignment.  For unaligned functions, we default to the backend's preferred
1392 // alignment.
1393 unsigned tools::ParseFunctionAlignment(const ToolChain &TC,
1394                                        const ArgList &Args) {
1395   const Arg *A = Args.getLastArg(options::OPT_falign_functions,
1396                                  options::OPT_falign_functions_EQ,
1397                                  options::OPT_fno_align_functions);
1398   if (!A || A->getOption().matches(options::OPT_fno_align_functions))
1399     return 0;
1400 
1401   if (A->getOption().matches(options::OPT_falign_functions))
1402     return 0;
1403 
1404   unsigned Value = 0;
1405   if (StringRef(A->getValue()).getAsInteger(10, Value) || Value > 65536)
1406     TC.getDriver().Diag(diag::err_drv_invalid_int_value)
1407         << A->getAsString(Args) << A->getValue();
1408   return Value ? llvm::Log2_32_Ceil(std::min(Value, 65536u)) : Value;
1409 }
1410 
1411 unsigned tools::ParseDebugDefaultVersion(const ToolChain &TC,
1412                                          const ArgList &Args) {
1413   const Arg *A = Args.getLastArg(options::OPT_fdebug_default_version);
1414 
1415   if (!A)
1416     return 0;
1417 
1418   unsigned Value = 0;
1419   if (StringRef(A->getValue()).getAsInteger(10, Value) || Value > 5 ||
1420       Value < 2)
1421     TC.getDriver().Diag(diag::err_drv_invalid_int_value)
1422         << A->getAsString(Args) << A->getValue();
1423   return Value;
1424 }
1425 
1426 void tools::AddAssemblerKPIC(const ToolChain &ToolChain, const ArgList &Args,
1427                              ArgStringList &CmdArgs) {
1428   llvm::Reloc::Model RelocationModel;
1429   unsigned PICLevel;
1430   bool IsPIE;
1431   std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args);
1432 
1433   if (RelocationModel != llvm::Reloc::Static)
1434     CmdArgs.push_back("-KPIC");
1435 }
1436 
1437 /// Determine whether Objective-C automated reference counting is
1438 /// enabled.
1439 bool tools::isObjCAutoRefCount(const ArgList &Args) {
1440   return Args.hasFlag(options::OPT_fobjc_arc, options::OPT_fno_objc_arc, false);
1441 }
1442 
1443 enum class LibGccType { UnspecifiedLibGcc, StaticLibGcc, SharedLibGcc };
1444 
1445 static LibGccType getLibGccType(const ToolChain &TC, const Driver &D,
1446                                 const ArgList &Args) {
1447   if (Args.hasArg(options::OPT_static_libgcc) ||
1448       Args.hasArg(options::OPT_static) || Args.hasArg(options::OPT_static_pie))
1449     return LibGccType::StaticLibGcc;
1450   if (Args.hasArg(options::OPT_shared_libgcc))
1451     return LibGccType::SharedLibGcc;
1452   // The Android NDK only provides libunwind.a, not libunwind.so.
1453   if (TC.getTriple().isAndroid())
1454     return LibGccType::StaticLibGcc;
1455   // For MinGW, don't imply a shared libgcc here, we only want to return
1456   // SharedLibGcc if that was explicitly requested.
1457   if (D.CCCIsCXX() && !TC.getTriple().isOSCygMing())
1458     return LibGccType::SharedLibGcc;
1459   return LibGccType::UnspecifiedLibGcc;
1460 }
1461 
1462 // Gcc adds libgcc arguments in various ways:
1463 //
1464 // gcc <none>:     -lgcc --as-needed -lgcc_s --no-as-needed
1465 // g++ <none>:                       -lgcc_s               -lgcc
1466 // gcc shared:                       -lgcc_s               -lgcc
1467 // g++ shared:                       -lgcc_s               -lgcc
1468 // gcc static:     -lgcc             -lgcc_eh
1469 // g++ static:     -lgcc             -lgcc_eh
1470 // gcc static-pie: -lgcc             -lgcc_eh
1471 // g++ static-pie: -lgcc             -lgcc_eh
1472 //
1473 // Also, certain targets need additional adjustments.
1474 
1475 static void AddUnwindLibrary(const ToolChain &TC, const Driver &D,
1476                              ArgStringList &CmdArgs, const ArgList &Args) {
1477   ToolChain::UnwindLibType UNW = TC.GetUnwindLibType(Args);
1478   // Targets that don't use unwind libraries.
1479   if ((TC.getTriple().isAndroid() && UNW == ToolChain::UNW_Libgcc) ||
1480       TC.getTriple().isOSIAMCU() || TC.getTriple().isOSBinFormatWasm() ||
1481       UNW == ToolChain::UNW_None)
1482     return;
1483 
1484   LibGccType LGT = getLibGccType(TC, D, Args);
1485   bool AsNeeded = LGT == LibGccType::UnspecifiedLibGcc &&
1486                   !TC.getTriple().isAndroid() &&
1487                   !TC.getTriple().isOSCygMing() && !TC.getTriple().isOSAIX();
1488   if (AsNeeded)
1489     CmdArgs.push_back(getAsNeededOption(TC, true));
1490 
1491   switch (UNW) {
1492   case ToolChain::UNW_None:
1493     return;
1494   case ToolChain::UNW_Libgcc: {
1495     if (LGT == LibGccType::StaticLibGcc)
1496       CmdArgs.push_back("-lgcc_eh");
1497     else
1498       CmdArgs.push_back("-lgcc_s");
1499     break;
1500   }
1501   case ToolChain::UNW_CompilerRT:
1502     if (TC.getTriple().isOSAIX()) {
1503       // AIX only has libunwind as a shared library. So do not pass
1504       // anything in if -static is specified.
1505       if (LGT != LibGccType::StaticLibGcc)
1506         CmdArgs.push_back("-lunwind");
1507     } else if (LGT == LibGccType::StaticLibGcc) {
1508       CmdArgs.push_back("-l:libunwind.a");
1509     } else if (TC.getTriple().isOSCygMing()) {
1510       if (LGT == LibGccType::SharedLibGcc)
1511         CmdArgs.push_back("-l:libunwind.dll.a");
1512       else
1513         // Let the linker choose between libunwind.dll.a and libunwind.a
1514         // depending on what's available, and depending on the -static flag
1515         CmdArgs.push_back("-lunwind");
1516     } else {
1517       CmdArgs.push_back("-l:libunwind.so");
1518     }
1519     break;
1520   }
1521 
1522   if (AsNeeded)
1523     CmdArgs.push_back(getAsNeededOption(TC, false));
1524 }
1525 
1526 static void AddLibgcc(const ToolChain &TC, const Driver &D,
1527                       ArgStringList &CmdArgs, const ArgList &Args) {
1528   LibGccType LGT = getLibGccType(TC, D, Args);
1529   if (LGT != LibGccType::SharedLibGcc)
1530     CmdArgs.push_back("-lgcc");
1531   AddUnwindLibrary(TC, D, CmdArgs, Args);
1532   if (LGT == LibGccType::SharedLibGcc)
1533     CmdArgs.push_back("-lgcc");
1534 }
1535 
1536 void tools::AddRunTimeLibs(const ToolChain &TC, const Driver &D,
1537                            ArgStringList &CmdArgs, const ArgList &Args) {
1538   // Make use of compiler-rt if --rtlib option is used
1539   ToolChain::RuntimeLibType RLT = TC.GetRuntimeLibType(Args);
1540 
1541   switch (RLT) {
1542   case ToolChain::RLT_CompilerRT:
1543     CmdArgs.push_back(TC.getCompilerRTArgString(Args, "builtins"));
1544     AddUnwindLibrary(TC, D, CmdArgs, Args);
1545     break;
1546   case ToolChain::RLT_Libgcc:
1547     // Make sure libgcc is not used under MSVC environment by default
1548     if (TC.getTriple().isKnownWindowsMSVCEnvironment()) {
1549       // Issue error diagnostic if libgcc is explicitly specified
1550       // through command line as --rtlib option argument.
1551       if (Args.hasArg(options::OPT_rtlib_EQ)) {
1552         TC.getDriver().Diag(diag::err_drv_unsupported_rtlib_for_platform)
1553             << Args.getLastArg(options::OPT_rtlib_EQ)->getValue() << "MSVC";
1554       }
1555     } else
1556       AddLibgcc(TC, D, CmdArgs, Args);
1557     break;
1558   }
1559 
1560   // On Android, the unwinder uses dl_iterate_phdr (or one of
1561   // dl_unwind_find_exidx/__gnu_Unwind_Find_exidx on arm32) from libdl.so. For
1562   // statically-linked executables, these functions come from libc.a instead.
1563   if (TC.getTriple().isAndroid() && !Args.hasArg(options::OPT_static) &&
1564       !Args.hasArg(options::OPT_static_pie))
1565     CmdArgs.push_back("-ldl");
1566 }
1567 
1568 SmallString<128> tools::getStatsFileName(const llvm::opt::ArgList &Args,
1569                                          const InputInfo &Output,
1570                                          const InputInfo &Input,
1571                                          const Driver &D) {
1572   const Arg *A = Args.getLastArg(options::OPT_save_stats_EQ);
1573   if (!A)
1574     return {};
1575 
1576   StringRef SaveStats = A->getValue();
1577   SmallString<128> StatsFile;
1578   if (SaveStats == "obj" && Output.isFilename()) {
1579     StatsFile.assign(Output.getFilename());
1580     llvm::sys::path::remove_filename(StatsFile);
1581   } else if (SaveStats != "cwd") {
1582     D.Diag(diag::err_drv_invalid_value) << A->getAsString(Args) << SaveStats;
1583     return {};
1584   }
1585 
1586   StringRef BaseName = llvm::sys::path::filename(Input.getBaseInput());
1587   llvm::sys::path::append(StatsFile, BaseName);
1588   llvm::sys::path::replace_extension(StatsFile, "stats");
1589   return StatsFile;
1590 }
1591 
1592 void tools::addMultilibFlag(bool Enabled, const char *const Flag,
1593                             Multilib::flags_list &Flags) {
1594   Flags.push_back(std::string(Enabled ? "+" : "-") + Flag);
1595 }
1596 
1597 void tools::addX86AlignBranchArgs(const Driver &D, const ArgList &Args,
1598                                   ArgStringList &CmdArgs, bool IsLTO) {
1599   auto addArg = [&, IsLTO](const Twine &Arg) {
1600     if (IsLTO) {
1601       CmdArgs.push_back(Args.MakeArgString("-plugin-opt=" + Arg));
1602     } else {
1603       CmdArgs.push_back("-mllvm");
1604       CmdArgs.push_back(Args.MakeArgString(Arg));
1605     }
1606   };
1607 
1608   if (Args.hasArg(options::OPT_mbranches_within_32B_boundaries)) {
1609     addArg(Twine("-x86-branches-within-32B-boundaries"));
1610   }
1611   if (const Arg *A = Args.getLastArg(options::OPT_malign_branch_boundary_EQ)) {
1612     StringRef Value = A->getValue();
1613     unsigned Boundary;
1614     if (Value.getAsInteger(10, Boundary) || Boundary < 16 ||
1615         !llvm::isPowerOf2_64(Boundary)) {
1616       D.Diag(diag::err_drv_invalid_argument_to_option)
1617           << Value << A->getOption().getName();
1618     } else {
1619       addArg("-x86-align-branch-boundary=" + Twine(Boundary));
1620     }
1621   }
1622   if (const Arg *A = Args.getLastArg(options::OPT_malign_branch_EQ)) {
1623     std::string AlignBranch;
1624     for (StringRef T : A->getValues()) {
1625       if (T != "fused" && T != "jcc" && T != "jmp" && T != "call" &&
1626           T != "ret" && T != "indirect")
1627         D.Diag(diag::err_drv_invalid_malign_branch_EQ)
1628             << T << "fused, jcc, jmp, call, ret, indirect";
1629       if (!AlignBranch.empty())
1630         AlignBranch += '+';
1631       AlignBranch += T;
1632     }
1633     addArg("-x86-align-branch=" + Twine(AlignBranch));
1634   }
1635   if (const Arg *A = Args.getLastArg(options::OPT_mpad_max_prefix_size_EQ)) {
1636     StringRef Value = A->getValue();
1637     unsigned PrefixSize;
1638     if (Value.getAsInteger(10, PrefixSize)) {
1639       D.Diag(diag::err_drv_invalid_argument_to_option)
1640           << Value << A->getOption().getName();
1641     } else {
1642       addArg("-x86-pad-max-prefix-size=" + Twine(PrefixSize));
1643     }
1644   }
1645 }
1646 
1647 /// SDLSearch: Search for Static Device Library
1648 /// The search for SDL bitcode files is consistent with how static host
1649 /// libraries are discovered. That is, the -l option triggers a search for
1650 /// files in a set of directories called the LINKPATH. The host library search
1651 /// procedure looks for a specific filename in the LINKPATH.  The filename for
1652 /// a host library is lib<libname>.a or lib<libname>.so. For SDLs, there is an
1653 /// ordered-set of filenames that are searched. We call this ordered-set of
1654 /// filenames as SEARCH-ORDER. Since an SDL can either be device-type specific,
1655 /// architecture specific, or generic across all architectures, a naming
1656 /// convention and search order is used where the file name embeds the
1657 /// architecture name <arch-name> (nvptx or amdgcn) and the GPU device type
1658 /// <device-name> such as sm_30 and gfx906. <device-name> is absent in case of
1659 /// device-independent SDLs. To reduce congestion in host library directories,
1660 /// the search first looks for files in the “libdevice” subdirectory. SDLs that
1661 /// are bc files begin with the prefix “lib”.
1662 ///
1663 /// Machine-code SDLs can also be managed as an archive (*.a file). The
1664 /// convention has been to use the prefix “lib”. To avoid confusion with host
1665 /// archive libraries, we use prefix "libbc-" for the bitcode SDL archives.
1666 ///
1667 bool tools::SDLSearch(const Driver &D, const llvm::opt::ArgList &DriverArgs,
1668                       llvm::opt::ArgStringList &CC1Args,
1669                       SmallVector<std::string, 8> LibraryPaths, std::string Lib,
1670                       StringRef Arch, StringRef Target, bool isBitCodeSDL,
1671                       bool postClangLink) {
1672   SmallVector<std::string, 12> SDLs;
1673 
1674   std::string LibDeviceLoc = "/libdevice";
1675   std::string LibBcPrefix = "/libbc-";
1676   std::string LibPrefix = "/lib";
1677 
1678   if (isBitCodeSDL) {
1679     // SEARCH-ORDER for Bitcode SDLs:
1680     //       libdevice/libbc-<libname>-<arch-name>-<device-type>.a
1681     //       libbc-<libname>-<arch-name>-<device-type>.a
1682     //       libdevice/libbc-<libname>-<arch-name>.a
1683     //       libbc-<libname>-<arch-name>.a
1684     //       libdevice/libbc-<libname>.a
1685     //       libbc-<libname>.a
1686     //       libdevice/lib<libname>-<arch-name>-<device-type>.bc
1687     //       lib<libname>-<arch-name>-<device-type>.bc
1688     //       libdevice/lib<libname>-<arch-name>.bc
1689     //       lib<libname>-<arch-name>.bc
1690     //       libdevice/lib<libname>.bc
1691     //       lib<libname>.bc
1692 
1693     for (StringRef Base : {LibBcPrefix, LibPrefix}) {
1694       const auto *Ext = Base.contains(LibBcPrefix) ? ".a" : ".bc";
1695 
1696       for (auto Suffix : {Twine(Lib + "-" + Arch + "-" + Target).str(),
1697                           Twine(Lib + "-" + Arch).str(), Twine(Lib).str()}) {
1698         SDLs.push_back(Twine(LibDeviceLoc + Base + Suffix + Ext).str());
1699         SDLs.push_back(Twine(Base + Suffix + Ext).str());
1700       }
1701     }
1702   } else {
1703     // SEARCH-ORDER for Machine-code SDLs:
1704     //    libdevice/lib<libname>-<arch-name>-<device-type>.a
1705     //    lib<libname>-<arch-name>-<device-type>.a
1706     //    libdevice/lib<libname>-<arch-name>.a
1707     //    lib<libname>-<arch-name>.a
1708 
1709     const auto *Ext = ".a";
1710 
1711     for (auto Suffix : {Twine(Lib + "-" + Arch + "-" + Target).str(),
1712                         Twine(Lib + "-" + Arch).str()}) {
1713       SDLs.push_back(Twine(LibDeviceLoc + LibPrefix + Suffix + Ext).str());
1714       SDLs.push_back(Twine(LibPrefix + Suffix + Ext).str());
1715     }
1716   }
1717 
1718   // The CUDA toolchain does not use a global device llvm-link before the LLVM
1719   // backend generates ptx. So currently, the use of bitcode SDL for nvptx is
1720   // only possible with post-clang-cc1 linking. Clang cc1 has a feature that
1721   // will link libraries after clang compilation while the LLVM IR is still in
1722   // memory. This utilizes a clang cc1 option called “-mlink-builtin-bitcode”.
1723   // This is a clang -cc1 option that is generated by the clang driver. The
1724   // option value must a full path to an existing file.
1725   bool FoundSDL = false;
1726   for (auto LPath : LibraryPaths) {
1727     for (auto SDL : SDLs) {
1728       auto FullName = Twine(LPath + SDL).str();
1729       if (llvm::sys::fs::exists(FullName)) {
1730         if (postClangLink)
1731           CC1Args.push_back("-mlink-builtin-bitcode");
1732         CC1Args.push_back(DriverArgs.MakeArgString(FullName));
1733         FoundSDL = true;
1734         break;
1735       }
1736     }
1737     if (FoundSDL)
1738       break;
1739   }
1740   return FoundSDL;
1741 }
1742 
1743 /// Search if a user provided archive file lib<libname>.a exists in any of
1744 /// the library paths. If so, add a new command to clang-offload-bundler to
1745 /// unbundle this archive and create a temporary device specific archive. Name
1746 /// of this SDL is passed to the llvm-link (for amdgcn) or to the
1747 /// clang-nvlink-wrapper (for nvptx) commands by the driver.
1748 bool tools::GetSDLFromOffloadArchive(
1749     Compilation &C, const Driver &D, const Tool &T, const JobAction &JA,
1750     const InputInfoList &Inputs, const llvm::opt::ArgList &DriverArgs,
1751     llvm::opt::ArgStringList &CC1Args, SmallVector<std::string, 8> LibraryPaths,
1752     StringRef Lib, StringRef Arch, StringRef Target, bool isBitCodeSDL,
1753     bool postClangLink) {
1754 
1755   // We don't support bitcode archive bundles for nvptx
1756   if (isBitCodeSDL && Arch.contains("nvptx"))
1757     return false;
1758 
1759   bool FoundAOB = false;
1760   SmallVector<std::string, 2> AOBFileNames;
1761   std::string ArchiveOfBundles;
1762   for (auto LPath : LibraryPaths) {
1763     ArchiveOfBundles.clear();
1764 
1765     AOBFileNames.push_back(Twine(LPath + "/libdevice/lib" + Lib + ".a").str());
1766     AOBFileNames.push_back(Twine(LPath + "/lib" + Lib + ".a").str());
1767 
1768     for (auto AOB : AOBFileNames) {
1769       if (llvm::sys::fs::exists(AOB)) {
1770         ArchiveOfBundles = AOB;
1771         FoundAOB = true;
1772         break;
1773       }
1774     }
1775 
1776     if (!FoundAOB)
1777       continue;
1778 
1779     StringRef Prefix = isBitCodeSDL ? "libbc-" : "lib";
1780     std::string OutputLib = D.GetTemporaryPath(
1781         Twine(Prefix + Lib + "-" + Arch + "-" + Target).str(), "a");
1782 
1783     C.addTempFile(C.getArgs().MakeArgString(OutputLib));
1784 
1785     ArgStringList CmdArgs;
1786     SmallString<128> DeviceTriple;
1787     DeviceTriple += Action::GetOffloadKindName(JA.getOffloadingDeviceKind());
1788     DeviceTriple += '-';
1789     std::string NormalizedTriple = T.getToolChain().getTriple().normalize();
1790     DeviceTriple += NormalizedTriple;
1791     if (!Target.empty()) {
1792       DeviceTriple += '-';
1793       DeviceTriple += Target;
1794     }
1795 
1796     std::string UnbundleArg("-unbundle");
1797     std::string TypeArg("-type=a");
1798     std::string InputArg("-input=" + ArchiveOfBundles);
1799     std::string OffloadArg("-targets=" + std::string(DeviceTriple));
1800     std::string OutputArg("-output=" + OutputLib);
1801 
1802     const char *UBProgram = DriverArgs.MakeArgString(
1803         T.getToolChain().GetProgramPath("clang-offload-bundler"));
1804 
1805     ArgStringList UBArgs;
1806     UBArgs.push_back(C.getArgs().MakeArgString(UnbundleArg));
1807     UBArgs.push_back(C.getArgs().MakeArgString(TypeArg));
1808     UBArgs.push_back(C.getArgs().MakeArgString(InputArg));
1809     UBArgs.push_back(C.getArgs().MakeArgString(OffloadArg));
1810     UBArgs.push_back(C.getArgs().MakeArgString(OutputArg));
1811 
1812     // Add this flag to not exit from clang-offload-bundler if no compatible
1813     // code object is found in heterogenous archive library.
1814     std::string AdditionalArgs("-allow-missing-bundles");
1815     UBArgs.push_back(C.getArgs().MakeArgString(AdditionalArgs));
1816 
1817     // Add this flag to treat hip and hipv4 offload kinds as compatible with
1818     // openmp offload kind while extracting code objects from a heterogenous
1819     // archive library. Vice versa is also considered compatible.
1820     std::string HipCompatibleArgs("-hip-openmp-compatible");
1821     UBArgs.push_back(C.getArgs().MakeArgString(HipCompatibleArgs));
1822 
1823     C.addCommand(std::make_unique<Command>(
1824         JA, T, ResponseFileSupport::AtFileCurCP(), UBProgram, UBArgs, Inputs,
1825         InputInfo(&JA, C.getArgs().MakeArgString(OutputLib))));
1826     if (postClangLink)
1827       CC1Args.push_back("-mlink-builtin-bitcode");
1828 
1829     CC1Args.push_back(DriverArgs.MakeArgString(OutputLib));
1830     break;
1831   }
1832 
1833   return FoundAOB;
1834 }
1835 
1836 // Wrapper function used by driver for adding SDLs during link phase.
1837 void tools::AddStaticDeviceLibsLinking(Compilation &C, const Tool &T,
1838                                 const JobAction &JA,
1839                                 const InputInfoList &Inputs,
1840                                 const llvm::opt::ArgList &DriverArgs,
1841                                 llvm::opt::ArgStringList &CC1Args,
1842                                 StringRef Arch, StringRef Target,
1843                                 bool isBitCodeSDL, bool postClangLink) {
1844   AddStaticDeviceLibs(&C, &T, &JA, &Inputs, C.getDriver(), DriverArgs, CC1Args,
1845                       Arch, Target, isBitCodeSDL, postClangLink);
1846 }
1847 
1848 // Wrapper function used for post clang linking of bitcode SDLS for nvptx by
1849 // the CUDA toolchain.
1850 void tools::AddStaticDeviceLibsPostLinking(const Driver &D,
1851                                 const llvm::opt::ArgList &DriverArgs,
1852                                 llvm::opt::ArgStringList &CC1Args,
1853                                 StringRef Arch, StringRef Target,
1854                                 bool isBitCodeSDL, bool postClangLink) {
1855   AddStaticDeviceLibs(nullptr, nullptr, nullptr, nullptr, D, DriverArgs,
1856                       CC1Args, Arch, Target, isBitCodeSDL, postClangLink);
1857 }
1858 
1859 // User defined Static Device Libraries(SDLs) can be passed to clang for
1860 // offloading GPU compilers. Like static host libraries, the use of a SDL is
1861 // specified with the -l command line option. The primary difference between
1862 // host and SDLs is the filenames for SDLs (refer SEARCH-ORDER for Bitcode SDLs
1863 // and SEARCH-ORDER for Machine-code SDLs for the naming convention).
1864 // SDLs are of following types:
1865 //
1866 // * Bitcode SDLs: They can either be a *.bc file or an archive of *.bc files.
1867 //           For NVPTX, these libraries are post-clang linked following each
1868 //           compilation. For AMDGPU, these libraries are linked one time
1869 //           during the application link phase.
1870 //
1871 // * Machine-code SDLs: They are archive files. For NVPTX, the archive members
1872 //           contain cubin for Nvidia GPUs and are linked one time during the
1873 //           link phase by the CUDA SDK linker called nvlink.	For AMDGPU, the
1874 //           process for machine code SDLs is still in development. But they
1875 //           will be linked by the LLVM tool lld.
1876 //
1877 // * Bundled objects that contain both host and device codes: Bundled objects
1878 //           may also contain library code compiled from source. For NVPTX, the
1879 //           bundle contains cubin. For AMDGPU, the bundle contains bitcode.
1880 //
1881 // For Bitcode and Machine-code SDLs, current compiler toolchains hardcode the
1882 // inclusion of specific SDLs such as math libraries and the OpenMP device
1883 // library libomptarget.
1884 void tools::AddStaticDeviceLibs(Compilation *C, const Tool *T,
1885                                 const JobAction *JA,
1886                                 const InputInfoList *Inputs, const Driver &D,
1887                                 const llvm::opt::ArgList &DriverArgs,
1888                                 llvm::opt::ArgStringList &CC1Args,
1889                                 StringRef Arch, StringRef Target,
1890                                 bool isBitCodeSDL, bool postClangLink) {
1891 
1892   SmallVector<std::string, 8> LibraryPaths;
1893   // Add search directories from LIBRARY_PATH env variable
1894   llvm::Optional<std::string> LibPath =
1895       llvm::sys::Process::GetEnv("LIBRARY_PATH");
1896   if (LibPath) {
1897     SmallVector<StringRef, 8> Frags;
1898     const char EnvPathSeparatorStr[] = {llvm::sys::EnvPathSeparator, '\0'};
1899     llvm::SplitString(*LibPath, Frags, EnvPathSeparatorStr);
1900     for (StringRef Path : Frags)
1901       LibraryPaths.emplace_back(Path.trim());
1902   }
1903 
1904   // Add directories from user-specified -L options
1905   for (std::string Search_Dir : DriverArgs.getAllArgValues(options::OPT_L))
1906     LibraryPaths.emplace_back(Search_Dir);
1907 
1908   // Add path to lib-debug folders
1909   SmallString<256> DefaultLibPath = llvm::sys::path::parent_path(D.Dir);
1910   llvm::sys::path::append(DefaultLibPath, Twine("lib") + CLANG_LIBDIR_SUFFIX);
1911   LibraryPaths.emplace_back(DefaultLibPath.c_str());
1912 
1913   // Build list of Static Device Libraries SDLs specified by -l option
1914   llvm::SmallSet<std::string, 16> SDLNames;
1915   static const StringRef HostOnlyArchives[] = {
1916       "omp", "cudart", "m", "gcc", "gcc_s", "pthread", "hip_hcc"};
1917   for (auto SDLName : DriverArgs.getAllArgValues(options::OPT_l)) {
1918     if (!HostOnlyArchives->contains(SDLName)) {
1919       SDLNames.insert(SDLName);
1920     }
1921   }
1922 
1923   // The search stops as soon as an SDL file is found. The driver then provides
1924   // the full filename of the SDL to the llvm-link or clang-nvlink-wrapper
1925   // command. If no SDL is found after searching each LINKPATH with
1926   // SEARCH-ORDER, it is possible that an archive file lib<libname>.a exists
1927   // and may contain bundled object files.
1928   for (auto SDLName : SDLNames) {
1929     // This is the only call to SDLSearch
1930     if (!SDLSearch(D, DriverArgs, CC1Args, LibraryPaths, SDLName, Arch, Target,
1931                    isBitCodeSDL, postClangLink)) {
1932       GetSDLFromOffloadArchive(*C, D, *T, *JA, *Inputs, DriverArgs, CC1Args,
1933                                LibraryPaths, SDLName, Arch, Target,
1934                                isBitCodeSDL, postClangLink);
1935     }
1936   }
1937 }
1938 
1939 static llvm::opt::Arg *
1940 getAMDGPUCodeObjectArgument(const Driver &D, const llvm::opt::ArgList &Args) {
1941   // The last of -mcode-object-v3, -mno-code-object-v3 and
1942   // -mcode-object-version=<version> wins.
1943   return Args.getLastArg(options::OPT_mcode_object_v3_legacy,
1944                          options::OPT_mno_code_object_v3_legacy,
1945                          options::OPT_mcode_object_version_EQ);
1946 }
1947 
1948 void tools::checkAMDGPUCodeObjectVersion(const Driver &D,
1949                                          const llvm::opt::ArgList &Args) {
1950   const unsigned MinCodeObjVer = 2;
1951   const unsigned MaxCodeObjVer = 5;
1952 
1953   // Emit warnings for legacy options even if they are overridden.
1954   if (Args.hasArg(options::OPT_mno_code_object_v3_legacy))
1955     D.Diag(diag::warn_drv_deprecated_arg) << "-mno-code-object-v3"
1956                                           << "-mcode-object-version=2";
1957 
1958   if (Args.hasArg(options::OPT_mcode_object_v3_legacy))
1959     D.Diag(diag::warn_drv_deprecated_arg) << "-mcode-object-v3"
1960                                           << "-mcode-object-version=3";
1961 
1962   if (auto *CodeObjArg = getAMDGPUCodeObjectArgument(D, Args)) {
1963     if (CodeObjArg->getOption().getID() ==
1964         options::OPT_mcode_object_version_EQ) {
1965       unsigned CodeObjVer = MaxCodeObjVer;
1966       auto Remnant =
1967           StringRef(CodeObjArg->getValue()).getAsInteger(0, CodeObjVer);
1968       if (Remnant || CodeObjVer < MinCodeObjVer || CodeObjVer > MaxCodeObjVer)
1969         D.Diag(diag::err_drv_invalid_int_value)
1970             << CodeObjArg->getAsString(Args) << CodeObjArg->getValue();
1971     }
1972   }
1973 }
1974 
1975 unsigned tools::getAMDGPUCodeObjectVersion(const Driver &D,
1976                                            const llvm::opt::ArgList &Args) {
1977   unsigned CodeObjVer = 4; // default
1978   if (auto *CodeObjArg = getAMDGPUCodeObjectArgument(D, Args)) {
1979     if (CodeObjArg->getOption().getID() ==
1980         options::OPT_mno_code_object_v3_legacy) {
1981       CodeObjVer = 2;
1982     } else if (CodeObjArg->getOption().getID() ==
1983                options::OPT_mcode_object_v3_legacy) {
1984       CodeObjVer = 3;
1985     } else {
1986       StringRef(CodeObjArg->getValue()).getAsInteger(0, CodeObjVer);
1987     }
1988   }
1989   return CodeObjVer;
1990 }
1991 
1992 bool tools::haveAMDGPUCodeObjectVersionArgument(
1993     const Driver &D, const llvm::opt::ArgList &Args) {
1994   return getAMDGPUCodeObjectArgument(D, Args) != nullptr;
1995 }
1996 
1997 void tools::addMachineOutlinerArgs(const Driver &D,
1998                                    const llvm::opt::ArgList &Args,
1999                                    llvm::opt::ArgStringList &CmdArgs,
2000                                    const llvm::Triple &Triple, bool IsLTO) {
2001   auto addArg = [&, IsLTO](const Twine &Arg) {
2002     if (IsLTO) {
2003       CmdArgs.push_back(Args.MakeArgString("-plugin-opt=" + Arg));
2004     } else {
2005       CmdArgs.push_back("-mllvm");
2006       CmdArgs.push_back(Args.MakeArgString(Arg));
2007     }
2008   };
2009 
2010   if (Arg *A = Args.getLastArg(options::OPT_moutline,
2011                                options::OPT_mno_outline)) {
2012     if (A->getOption().matches(options::OPT_moutline)) {
2013       // We only support -moutline in AArch64 and ARM targets right now. If
2014       // we're not compiling for these, emit a warning and ignore the flag.
2015       // Otherwise, add the proper mllvm flags.
2016       if (!(Triple.isARM() || Triple.isThumb() ||
2017             Triple.getArch() == llvm::Triple::aarch64 ||
2018             Triple.getArch() == llvm::Triple::aarch64_32)) {
2019         D.Diag(diag::warn_drv_moutline_unsupported_opt) << Triple.getArchName();
2020       } else {
2021         addArg(Twine("-enable-machine-outliner"));
2022       }
2023     } else {
2024       // Disable all outlining behaviour.
2025       addArg(Twine("-enable-machine-outliner=never"));
2026     }
2027   }
2028 }
2029 
2030 void tools::addOpenMPDeviceRTL(const Driver &D,
2031                                const llvm::opt::ArgList &DriverArgs,
2032                                llvm::opt::ArgStringList &CC1Args,
2033                                StringRef BitcodeSuffix,
2034                                const llvm::Triple &Triple) {
2035   SmallVector<StringRef, 8> LibraryPaths;
2036 
2037   // Add path to clang lib / lib64 folder.
2038   SmallString<256> DefaultLibPath = llvm::sys::path::parent_path(D.Dir);
2039   llvm::sys::path::append(DefaultLibPath, Twine("lib") + CLANG_LIBDIR_SUFFIX);
2040   LibraryPaths.emplace_back(DefaultLibPath.c_str());
2041 
2042   // Add user defined library paths from LIBRARY_PATH.
2043   llvm::Optional<std::string> LibPath =
2044       llvm::sys::Process::GetEnv("LIBRARY_PATH");
2045   if (LibPath) {
2046     SmallVector<StringRef, 8> Frags;
2047     const char EnvPathSeparatorStr[] = {llvm::sys::EnvPathSeparator, '\0'};
2048     llvm::SplitString(*LibPath, Frags, EnvPathSeparatorStr);
2049     for (StringRef Path : Frags)
2050       LibraryPaths.emplace_back(Path.trim());
2051   }
2052 
2053   OptSpecifier LibomptargetBCPathOpt =
2054       Triple.isAMDGCN() ? options::OPT_libomptarget_amdgpu_bc_path_EQ
2055                         : options::OPT_libomptarget_nvptx_bc_path_EQ;
2056 
2057   StringRef ArchPrefix = Triple.isAMDGCN() ? "amdgpu" : "nvptx";
2058   std::string LibOmpTargetName =
2059       ("libomptarget-" + ArchPrefix + "-" + BitcodeSuffix + ".bc").str();
2060 
2061   // First check whether user specifies bc library
2062   if (const Arg *A = DriverArgs.getLastArg(LibomptargetBCPathOpt)) {
2063     SmallString<128> LibOmpTargetFile(A->getValue());
2064     if (llvm::sys::fs::exists(LibOmpTargetFile) &&
2065         llvm::sys::fs::is_directory(LibOmpTargetFile)) {
2066       llvm::sys::path::append(LibOmpTargetFile, LibOmpTargetName);
2067     }
2068 
2069     if (llvm::sys::fs::exists(LibOmpTargetFile)) {
2070       CC1Args.push_back("-mlink-builtin-bitcode");
2071       CC1Args.push_back(DriverArgs.MakeArgString(LibOmpTargetFile));
2072     } else {
2073       D.Diag(diag::err_drv_omp_offload_target_bcruntime_not_found)
2074           << LibOmpTargetFile;
2075     }
2076   } else {
2077     bool FoundBCLibrary = false;
2078 
2079     for (StringRef LibraryPath : LibraryPaths) {
2080       SmallString<128> LibOmpTargetFile(LibraryPath);
2081       llvm::sys::path::append(LibOmpTargetFile, LibOmpTargetName);
2082       if (llvm::sys::fs::exists(LibOmpTargetFile)) {
2083         CC1Args.push_back("-mlink-builtin-bitcode");
2084         CC1Args.push_back(DriverArgs.MakeArgString(LibOmpTargetFile));
2085         FoundBCLibrary = true;
2086         break;
2087       }
2088     }
2089 
2090     if (!FoundBCLibrary)
2091       D.Diag(diag::err_drv_omp_offload_target_missingbcruntime)
2092           << LibOmpTargetName << ArchPrefix;
2093   }
2094 }
2095 void tools::addHIPRuntimeLibArgs(const ToolChain &TC,
2096                                  const llvm::opt::ArgList &Args,
2097                                  llvm::opt::ArgStringList &CmdArgs) {
2098   if (Args.hasArg(options::OPT_hip_link) &&
2099       !Args.hasArg(options::OPT_nostdlib) &&
2100       !Args.hasArg(options::OPT_no_hip_rt)) {
2101     TC.AddHIPRuntimeLibArgs(Args, CmdArgs);
2102   } else {
2103     // Claim "no HIP libraries" arguments if any
2104     for (auto Arg : Args.filtered(options::OPT_no_hip_rt)) {
2105       Arg->claim();
2106     }
2107   }
2108 }
2109