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