blob: 865717427e395915637f2ff09eaef79e8df3ad4a [file] [log] [blame]
David L. Jonesf561aba2017-03-08 01:02:16 +00001//===--- CommonArgs.cpp - Args handling for multiple toolchains -*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "CommonArgs.h"
David L. Jonesf561aba2017-03-08 01:02:16 +000011#include "Arch/AArch64.h"
12#include "Arch/ARM.h"
13#include "Arch/Mips.h"
14#include "Arch/PPC.h"
15#include "Arch/SystemZ.h"
16#include "Arch/X86.h"
Florian Hahn2e081d12018-04-20 12:50:10 +000017#include "Hexagon.h"
18#include "InputInfo.h"
David L. Jonesf561aba2017-03-08 01:02:16 +000019#include "clang/Basic/CharInfo.h"
20#include "clang/Basic/LangOptions.h"
21#include "clang/Basic/ObjCRuntime.h"
22#include "clang/Basic/Version.h"
23#include "clang/Basic/VirtualFileSystem.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/Job.h"
30#include "clang/Driver/Options.h"
31#include "clang/Driver/SanitizerArgs.h"
32#include "clang/Driver/ToolChain.h"
33#include "clang/Driver/Util.h"
Dean Michael Berris62440372018-04-06 03:53:04 +000034#include "clang/Driver/XRayArgs.h"
David L. Jonesf561aba2017-03-08 01:02:16 +000035#include "llvm/ADT/STLExtras.h"
36#include "llvm/ADT/SmallString.h"
37#include "llvm/ADT/StringExtras.h"
38#include "llvm/ADT/StringSwitch.h"
39#include "llvm/ADT/Twine.h"
40#include "llvm/Option/Arg.h"
41#include "llvm/Option/ArgList.h"
42#include "llvm/Option/Option.h"
43#include "llvm/Support/CodeGen.h"
44#include "llvm/Support/Compression.h"
Florian Hahn2e081d12018-04-20 12:50:10 +000045#include "llvm/Support/Debug.h"
David L. Jonesf561aba2017-03-08 01:02:16 +000046#include "llvm/Support/ErrorHandling.h"
47#include "llvm/Support/FileSystem.h"
48#include "llvm/Support/Host.h"
49#include "llvm/Support/Path.h"
50#include "llvm/Support/Process.h"
51#include "llvm/Support/Program.h"
52#include "llvm/Support/ScopedPrinter.h"
53#include "llvm/Support/TargetParser.h"
54#include "llvm/Support/YAMLParser.h"
55
56using namespace clang::driver;
57using namespace clang::driver::tools;
58using namespace clang;
59using namespace llvm::opt;
60
61void tools::addPathIfExists(const Driver &D, const Twine &Path,
62 ToolChain::path_list &Paths) {
63 if (D.getVFS().exists(Path))
64 Paths.push_back(Path.str());
65}
66
67void tools::handleTargetFeaturesGroup(const ArgList &Args,
68 std::vector<StringRef> &Features,
69 OptSpecifier Group) {
70 for (const Arg *A : Args.filtered(Group)) {
71 StringRef Name = A->getOption().getName();
72 A->claim();
73
74 // Skip over "-m".
75 assert(Name.startswith("m") && "Invalid feature name.");
76 Name = Name.substr(1);
77
78 bool IsNegative = Name.startswith("no-");
79 if (IsNegative)
80 Name = Name.substr(3);
81 Features.push_back(Args.MakeArgString((IsNegative ? "-" : "+") + Name));
82 }
83}
84
85void tools::addDirectoryList(const ArgList &Args, ArgStringList &CmdArgs,
86 const char *ArgName, const char *EnvVar) {
87 const char *DirList = ::getenv(EnvVar);
88 bool CombinedArg = false;
89
90 if (!DirList)
91 return; // Nothing to do.
92
93 StringRef Name(ArgName);
94 if (Name.equals("-I") || Name.equals("-L"))
95 CombinedArg = true;
96
97 StringRef Dirs(DirList);
98 if (Dirs.empty()) // Empty string should not add '.'.
99 return;
100
101 StringRef::size_type Delim;
102 while ((Delim = Dirs.find(llvm::sys::EnvPathSeparator)) != StringRef::npos) {
103 if (Delim == 0) { // Leading colon.
104 if (CombinedArg) {
105 CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + "."));
106 } else {
107 CmdArgs.push_back(ArgName);
108 CmdArgs.push_back(".");
109 }
110 } else {
111 if (CombinedArg) {
112 CmdArgs.push_back(
113 Args.MakeArgString(std::string(ArgName) + Dirs.substr(0, Delim)));
114 } else {
115 CmdArgs.push_back(ArgName);
116 CmdArgs.push_back(Args.MakeArgString(Dirs.substr(0, Delim)));
117 }
118 }
119 Dirs = Dirs.substr(Delim + 1);
120 }
121
122 if (Dirs.empty()) { // Trailing colon.
123 if (CombinedArg) {
124 CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + "."));
125 } else {
126 CmdArgs.push_back(ArgName);
127 CmdArgs.push_back(".");
128 }
129 } else { // Add the last path.
130 if (CombinedArg) {
131 CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + Dirs));
132 } else {
133 CmdArgs.push_back(ArgName);
134 CmdArgs.push_back(Args.MakeArgString(Dirs));
135 }
136 }
137}
138
139void tools::AddLinkerInputs(const ToolChain &TC, const InputInfoList &Inputs,
140 const ArgList &Args, ArgStringList &CmdArgs,
141 const JobAction &JA) {
142 const Driver &D = TC.getDriver();
143
144 // Add extra linker input arguments which are not treated as inputs
145 // (constructed via -Xarch_).
146 Args.AddAllArgValues(CmdArgs, options::OPT_Zlinker_input);
147
148 for (const auto &II : Inputs) {
Yaxun Liu29155b02018-05-18 15:07:56 +0000149 // If the current tool chain refers to an OpenMP or HIP offloading host, we
150 // should ignore inputs that refer to OpenMP or HIP offloading devices -
151 // they will be embedded according to a proper linker script.
David L. Jonesf561aba2017-03-08 01:02:16 +0000152 if (auto *IA = II.getAction())
Yaxun Liu29155b02018-05-18 15:07:56 +0000153 if ((JA.isHostOffloading(Action::OFK_OpenMP) &&
154 IA->isDeviceOffloading(Action::OFK_OpenMP)) ||
155 (JA.isHostOffloading(Action::OFK_HIP) &&
156 IA->isDeviceOffloading(Action::OFK_HIP)))
David L. Jonesf561aba2017-03-08 01:02:16 +0000157 continue;
158
159 if (!TC.HasNativeLLVMSupport() && types::isLLVMIR(II.getType()))
160 // Don't try to pass LLVM inputs unless we have native support.
161 D.Diag(diag::err_drv_no_linker_llvm_support) << TC.getTripleString();
162
163 // Add filenames immediately.
164 if (II.isFilename()) {
165 CmdArgs.push_back(II.getFilename());
166 continue;
167 }
168
169 // Otherwise, this is a linker input argument.
170 const Arg &A = II.getInputArg();
171
172 // Handle reserved library options.
173 if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx))
174 TC.AddCXXStdlibLibArgs(Args, CmdArgs);
175 else if (A.getOption().matches(options::OPT_Z_reserved_lib_cckext))
176 TC.AddCCKextLibArgs(Args, CmdArgs);
177 else if (A.getOption().matches(options::OPT_z)) {
178 // Pass -z prefix for gcc linker compatibility.
179 A.claim();
180 A.render(Args, CmdArgs);
181 } else {
182 A.renderAsInput(Args, CmdArgs);
183 }
184 }
185
186 // LIBRARY_PATH - included following the user specified library paths.
187 // and only supported on native toolchains.
188 if (!TC.isCrossCompiling()) {
189 addDirectoryList(Args, CmdArgs, "-L", "LIBRARY_PATH");
190 }
191}
192
193void tools::AddTargetFeature(const ArgList &Args,
194 std::vector<StringRef> &Features,
195 OptSpecifier OnOpt, OptSpecifier OffOpt,
196 StringRef FeatureName) {
197 if (Arg *A = Args.getLastArg(OnOpt, OffOpt)) {
198 if (A->getOption().matches(OnOpt))
199 Features.push_back(Args.MakeArgString("+" + FeatureName));
200 else
201 Features.push_back(Args.MakeArgString("-" + FeatureName));
202 }
203}
204
205/// Get the (LLVM) name of the R600 gpu we are targeting.
206static std::string getR600TargetGPU(const ArgList &Args) {
207 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) {
208 const char *GPUName = A->getValue();
209 return llvm::StringSwitch<const char *>(GPUName)
210 .Cases("rv630", "rv635", "r600")
211 .Cases("rv610", "rv620", "rs780", "rs880")
212 .Case("rv740", "rv770")
213 .Case("palm", "cedar")
214 .Cases("sumo", "sumo2", "sumo")
215 .Case("hemlock", "cypress")
216 .Case("aruba", "cayman")
217 .Default(GPUName);
218 }
219 return "";
220}
221
Nikolai Bozhenov35d3c352017-06-27 09:48:24 +0000222static std::string getNios2TargetCPU(const ArgList &Args) {
223 Arg *A = Args.getLastArg(options::OPT_mcpu_EQ);
224 if (!A)
225 A = Args.getLastArg(options::OPT_march_EQ);
226
227 if (!A)
228 return "";
229
230 const char *name = A->getValue();
231 return llvm::StringSwitch<const char *>(name)
232 .Case("r1", "nios2r1")
233 .Case("r2", "nios2r2")
234 .Default(name);
235}
236
David L. Jonesf561aba2017-03-08 01:02:16 +0000237static std::string getLanaiTargetCPU(const ArgList &Args) {
238 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) {
239 return A->getValue();
240 }
241 return "";
242}
243
244/// Get the (LLVM) name of the WebAssembly cpu we are targeting.
245static StringRef getWebAssemblyTargetCPU(const ArgList &Args) {
246 // If we have -mcpu=, use that.
247 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) {
248 StringRef CPU = A->getValue();
249
250#ifdef __wasm__
251 // Handle "native" by examining the host. "native" isn't meaningful when
252 // cross compiling, so only support this when the host is also WebAssembly.
253 if (CPU == "native")
254 return llvm::sys::getHostCPUName();
255#endif
256
257 return CPU;
258 }
259
260 return "generic";
261}
262
263std::string tools::getCPUName(const ArgList &Args, const llvm::Triple &T,
264 bool FromAs) {
265 Arg *A;
266
267 switch (T.getArch()) {
268 default:
269 return "";
270
271 case llvm::Triple::aarch64:
272 case llvm::Triple::aarch64_be:
273 return aarch64::getAArch64TargetCPU(Args, A);
274
275 case llvm::Triple::arm:
276 case llvm::Triple::armeb:
277 case llvm::Triple::thumb:
278 case llvm::Triple::thumbeb: {
279 StringRef MArch, MCPU;
280 arm::getARMArchCPUFromArgs(Args, MArch, MCPU, FromAs);
281 return arm::getARMTargetCPU(MCPU, MArch, T);
282 }
Leslie Zhaiff041092017-04-20 04:23:24 +0000283
284 case llvm::Triple::avr:
285 if (const Arg *A = Args.getLastArg(options::OPT_mmcu_EQ))
286 return A->getValue();
287 return "";
288
Nikolai Bozhenov35d3c352017-06-27 09:48:24 +0000289 case llvm::Triple::nios2: {
290 return getNios2TargetCPU(Args);
291 }
292
David L. Jonesf561aba2017-03-08 01:02:16 +0000293 case llvm::Triple::mips:
294 case llvm::Triple::mipsel:
295 case llvm::Triple::mips64:
296 case llvm::Triple::mips64el: {
297 StringRef CPUName;
298 StringRef ABIName;
299 mips::getMipsCPUAndABI(Args, T, CPUName, ABIName);
300 return CPUName;
301 }
302
303 case llvm::Triple::nvptx:
304 case llvm::Triple::nvptx64:
305 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ))
306 return A->getValue();
307 return "";
308
309 case llvm::Triple::ppc:
310 case llvm::Triple::ppc64:
311 case llvm::Triple::ppc64le: {
312 std::string TargetCPUName = ppc::getPPCTargetCPU(Args);
313 // LLVM may default to generating code for the native CPU,
314 // but, like gcc, we default to a more generic option for
315 // each architecture. (except on Darwin)
316 if (TargetCPUName.empty() && !T.isOSDarwin()) {
317 if (T.getArch() == llvm::Triple::ppc64)
318 TargetCPUName = "ppc64";
319 else if (T.getArch() == llvm::Triple::ppc64le)
320 TargetCPUName = "ppc64le";
321 else
322 TargetCPUName = "ppc";
323 }
324 return TargetCPUName;
325 }
326
Yonghong Songc4ea1012017-08-23 04:26:17 +0000327 case llvm::Triple::bpfel:
328 case llvm::Triple::bpfeb:
David L. Jonesf561aba2017-03-08 01:02:16 +0000329 case llvm::Triple::sparc:
330 case llvm::Triple::sparcel:
331 case llvm::Triple::sparcv9:
332 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
333 return A->getValue();
334 return "";
335
336 case llvm::Triple::x86:
337 case llvm::Triple::x86_64:
338 return x86::getX86TargetCPU(Args, T);
339
340 case llvm::Triple::hexagon:
341 return "hexagon" +
342 toolchains::HexagonToolChain::GetTargetCPUVersion(Args).str();
343
344 case llvm::Triple::lanai:
345 return getLanaiTargetCPU(Args);
346
347 case llvm::Triple::systemz:
348 return systemz::getSystemZTargetCPU(Args);
349
350 case llvm::Triple::r600:
351 case llvm::Triple::amdgcn:
352 return getR600TargetGPU(Args);
353
354 case llvm::Triple::wasm32:
355 case llvm::Triple::wasm64:
356 return getWebAssemblyTargetCPU(Args);
357 }
358}
359
360unsigned tools::getLTOParallelism(const ArgList &Args, const Driver &D) {
361 unsigned Parallelism = 0;
362 Arg *LtoJobsArg = Args.getLastArg(options::OPT_flto_jobs_EQ);
363 if (LtoJobsArg &&
364 StringRef(LtoJobsArg->getValue()).getAsInteger(10, Parallelism))
365 D.Diag(diag::err_drv_invalid_int_value) << LtoJobsArg->getAsString(Args)
366 << LtoJobsArg->getValue();
367 return Parallelism;
368}
369
Sam Clegg7892ae42018-01-31 18:55:22 +0000370// CloudABI uses -ffunction-sections and -fdata-sections by default.
David L. Jonesf561aba2017-03-08 01:02:16 +0000371bool tools::isUseSeparateSections(const llvm::Triple &Triple) {
Sam Clegg7892ae42018-01-31 18:55:22 +0000372 return Triple.getOS() == llvm::Triple::CloudABI;
David L. Jonesf561aba2017-03-08 01:02:16 +0000373}
374
375void tools::AddGoldPlugin(const ToolChain &ToolChain, const ArgList &Args,
Florian Hahn2e081d12018-04-20 12:50:10 +0000376 ArgStringList &CmdArgs, const InputInfo &Output,
377 const InputInfo &Input, bool IsThinLTO) {
David L. Jonesf561aba2017-03-08 01:02:16 +0000378 // Tell the linker to load the plugin. This has to come before AddLinkerInputs
379 // as gold requires -plugin to come before any -plugin-opt that -Wl might
380 // forward.
381 CmdArgs.push_back("-plugin");
Dan Albertc3a11d52017-08-22 21:05:01 +0000382
Nico Weber1865df42018-04-27 19:11:14 +0000383#if defined(_WIN32)
Dan Albertc3a11d52017-08-22 21:05:01 +0000384 const char *Suffix = ".dll";
385#elif defined(__APPLE__)
386 const char *Suffix = ".dylib";
387#else
388 const char *Suffix = ".so";
389#endif
390
391 SmallString<1024> Plugin;
392 llvm::sys::path::native(Twine(ToolChain.getDriver().Dir) +
393 "/../lib" CLANG_LIBDIR_SUFFIX "/LLVMgold" +
394 Suffix,
395 Plugin);
David L. Jonesf561aba2017-03-08 01:02:16 +0000396 CmdArgs.push_back(Args.MakeArgString(Plugin));
397
398 // Try to pass driver level flags relevant to LTO code generation down to
399 // the plugin.
400
401 // Handle flags for selecting CPU variants.
402 std::string CPU = getCPUName(Args, ToolChain.getTriple());
403 if (!CPU.empty())
404 CmdArgs.push_back(Args.MakeArgString(Twine("-plugin-opt=mcpu=") + CPU));
405
406 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
407 StringRef OOpt;
408 if (A->getOption().matches(options::OPT_O4) ||
409 A->getOption().matches(options::OPT_Ofast))
410 OOpt = "3";
411 else if (A->getOption().matches(options::OPT_O))
412 OOpt = A->getValue();
413 else if (A->getOption().matches(options::OPT_O0))
414 OOpt = "0";
415 if (!OOpt.empty())
416 CmdArgs.push_back(Args.MakeArgString(Twine("-plugin-opt=O") + OOpt));
417 }
418
Yunlian Jiang87c88cc2018-06-25 23:05:27 +0000419 if (Args.hasArg(options::OPT_gsplit_dwarf)) {
420 CmdArgs.push_back(
421 Args.MakeArgString(Twine("-plugin-opt=dwo_dir=") +
422 Output.getFilename() + "_dwo"));
423 }
424
David L. Jonesf561aba2017-03-08 01:02:16 +0000425 if (IsThinLTO)
426 CmdArgs.push_back("-plugin-opt=thinlto");
427
Florian Hahn2e081d12018-04-20 12:50:10 +0000428 if (unsigned Parallelism = getLTOParallelism(Args, ToolChain.getDriver()))
Benjamin Kramer3a13ed62017-12-28 16:58:54 +0000429 CmdArgs.push_back(
430 Args.MakeArgString("-plugin-opt=jobs=" + Twine(Parallelism)));
David L. Jonesf561aba2017-03-08 01:02:16 +0000431
432 // If an explicit debugger tuning argument appeared, pass it along.
433 if (Arg *A = Args.getLastArg(options::OPT_gTune_Group,
434 options::OPT_ggdbN_Group)) {
435 if (A->getOption().matches(options::OPT_glldb))
436 CmdArgs.push_back("-plugin-opt=-debugger-tune=lldb");
437 else if (A->getOption().matches(options::OPT_gsce))
438 CmdArgs.push_back("-plugin-opt=-debugger-tune=sce");
439 else
440 CmdArgs.push_back("-plugin-opt=-debugger-tune=gdb");
441 }
442
443 bool UseSeparateSections =
444 isUseSeparateSections(ToolChain.getEffectiveTriple());
445
446 if (Args.hasFlag(options::OPT_ffunction_sections,
447 options::OPT_fno_function_sections, UseSeparateSections)) {
448 CmdArgs.push_back("-plugin-opt=-function-sections");
449 }
450
451 if (Args.hasFlag(options::OPT_fdata_sections, options::OPT_fno_data_sections,
452 UseSeparateSections)) {
453 CmdArgs.push_back("-plugin-opt=-data-sections");
454 }
455
Dehao Chenea4b78f2017-03-21 21:40:53 +0000456 if (Arg *A = getLastProfileSampleUseArg(Args)) {
David L. Jonesf561aba2017-03-08 01:02:16 +0000457 StringRef FName = A->getValue();
458 if (!llvm::sys::fs::exists(FName))
Florian Hahn2e081d12018-04-20 12:50:10 +0000459 ToolChain.getDriver().Diag(diag::err_drv_no_such_file) << FName;
David L. Jonesf561aba2017-03-08 01:02:16 +0000460 else
461 CmdArgs.push_back(
462 Args.MakeArgString(Twine("-plugin-opt=sample-profile=") + FName));
463 }
Sean Fertile03e77c62017-10-05 01:50:48 +0000464
465 // Need this flag to turn on new pass manager via Gold plugin.
466 if (Args.hasFlag(options::OPT_fexperimental_new_pass_manager,
467 options::OPT_fno_experimental_new_pass_manager,
Petr Hosekc3aa97a2018-04-06 00:53:00 +0000468 /* Default */ ENABLE_EXPERIMENTAL_NEW_PASS_MANAGER)) {
Sean Fertile03e77c62017-10-05 01:50:48 +0000469 CmdArgs.push_back("-plugin-opt=new-pass-manager");
470 }
471
Florian Hahn2e081d12018-04-20 12:50:10 +0000472 // Setup statistics file output.
473 SmallString<128> StatsFile =
474 getStatsFileName(Args, Output, Input, ToolChain.getDriver());
475 if (!StatsFile.empty())
476 CmdArgs.push_back(
477 Args.MakeArgString(Twine("-plugin-opt=stats-file=") + StatsFile));
David L. Jonesf561aba2017-03-08 01:02:16 +0000478}
479
480void tools::addArchSpecificRPath(const ToolChain &TC, const ArgList &Args,
481 ArgStringList &CmdArgs) {
Petr Hosekbae48562018-04-02 23:36:14 +0000482 if (!Args.hasFlag(options::OPT_frtlib_add_rpath,
483 options::OPT_fno_rtlib_add_rpath, false))
484 return;
485
David L. Jonesf561aba2017-03-08 01:02:16 +0000486 std::string CandidateRPath = TC.getArchSpecificLibPath();
487 if (TC.getVFS().exists(CandidateRPath)) {
488 CmdArgs.push_back("-rpath");
489 CmdArgs.push_back(Args.MakeArgString(CandidateRPath.c_str()));
490 }
491}
492
Jonas Hahnfeld8ea76fa2017-04-19 13:55:39 +0000493bool tools::addOpenMPRuntime(ArgStringList &CmdArgs, const ToolChain &TC,
494 const ArgList &Args, bool IsOffloadingHost,
495 bool GompNeedsRT) {
David L. Jonesf561aba2017-03-08 01:02:16 +0000496 if (!Args.hasFlag(options::OPT_fopenmp, options::OPT_fopenmp_EQ,
497 options::OPT_fno_openmp, false))
Jonas Hahnfeld8ea76fa2017-04-19 13:55:39 +0000498 return false;
David L. Jonesf561aba2017-03-08 01:02:16 +0000499
500 switch (TC.getDriver().getOpenMPRuntime(Args)) {
501 case Driver::OMPRT_OMP:
502 CmdArgs.push_back("-lomp");
503 break;
504 case Driver::OMPRT_GOMP:
505 CmdArgs.push_back("-lgomp");
Jonas Hahnfeld8ea76fa2017-04-19 13:55:39 +0000506
507 if (GompNeedsRT)
508 CmdArgs.push_back("-lrt");
David L. Jonesf561aba2017-03-08 01:02:16 +0000509 break;
510 case Driver::OMPRT_IOMP5:
511 CmdArgs.push_back("-liomp5");
512 break;
513 case Driver::OMPRT_Unknown:
514 // Already diagnosed.
Jonas Hahnfeld8ea76fa2017-04-19 13:55:39 +0000515 return false;
David L. Jonesf561aba2017-03-08 01:02:16 +0000516 }
517
Jonas Hahnfeld8ea76fa2017-04-19 13:55:39 +0000518 if (IsOffloadingHost)
519 CmdArgs.push_back("-lomptarget");
520
David L. Jonesf561aba2017-03-08 01:02:16 +0000521 addArchSpecificRPath(TC, Args, CmdArgs);
Jonas Hahnfeld8ea76fa2017-04-19 13:55:39 +0000522
523 return true;
David L. Jonesf561aba2017-03-08 01:02:16 +0000524}
525
526static void addSanitizerRuntime(const ToolChain &TC, const ArgList &Args,
527 ArgStringList &CmdArgs, StringRef Sanitizer,
528 bool IsShared, bool IsWhole) {
529 // Wrap any static runtimes that must be forced into executable in
530 // whole-archive.
Alex Shlyapnikov85da0f62018-02-05 23:59:13 +0000531 if (IsWhole) CmdArgs.push_back("--whole-archive");
David L. Jonesf561aba2017-03-08 01:02:16 +0000532 CmdArgs.push_back(TC.getCompilerRTArgString(Args, Sanitizer, IsShared));
Alex Shlyapnikov85da0f62018-02-05 23:59:13 +0000533 if (IsWhole) CmdArgs.push_back("--no-whole-archive");
David L. Jonesf561aba2017-03-08 01:02:16 +0000534
535 if (IsShared) {
536 addArchSpecificRPath(TC, Args, CmdArgs);
537 }
538}
539
540// Tries to use a file with the list of dynamic symbols that need to be exported
541// from the runtime library. Returns true if the file was found.
542static bool addSanitizerDynamicList(const ToolChain &TC, const ArgList &Args,
543 ArgStringList &CmdArgs,
544 StringRef Sanitizer) {
Alex Shlyapnikov85da0f62018-02-05 23:59:13 +0000545 // Solaris ld defaults to --export-dynamic behaviour but doesn't support
546 // the option, so don't try to pass it.
547 if (TC.getTriple().getOS() == llvm::Triple::Solaris)
548 return true;
Walter Leea5cc2222018-05-17 18:04:39 +0000549 // Myriad is static linking only. Furthermore, some versions of its
550 // linker have the bug where --export-dynamic overrides -static, so
551 // don't use --export-dynamic on that platform.
552 if (TC.getTriple().getVendor() == llvm::Triple::Myriad)
553 return true;
David L. Jonesf561aba2017-03-08 01:02:16 +0000554 SmallString<128> SanRT(TC.getCompilerRT(Args, Sanitizer));
555 if (llvm::sys::fs::exists(SanRT + ".syms")) {
556 CmdArgs.push_back(Args.MakeArgString("--dynamic-list=" + SanRT + ".syms"));
557 return true;
558 }
559 return false;
560}
561
562void tools::linkSanitizerRuntimeDeps(const ToolChain &TC,
563 ArgStringList &CmdArgs) {
564 // Force linking against the system libraries sanitizers depends on
565 // (see PR15823 why this is necessary).
566 CmdArgs.push_back("--no-as-needed");
Kostya Kortchinsky1969c9a2018-06-26 16:14:35 +0000567 // There's no libpthread or librt on RTEMS & Android.
568 if (TC.getTriple().getOS() != llvm::Triple::RTEMS &&
569 !TC.getTriple().isAndroid()) {
David L. Jonesf561aba2017-03-08 01:02:16 +0000570 CmdArgs.push_back("-lpthread");
Kamil Rytarowski150a3772018-03-03 11:47:27 +0000571 if (TC.getTriple().getOS() != llvm::Triple::OpenBSD)
572 CmdArgs.push_back("-lrt");
David L. Jonesf561aba2017-03-08 01:02:16 +0000573 }
574 CmdArgs.push_back("-lm");
Kamil Rytarowskibb9a8522017-12-08 17:38:25 +0000575 // There's no libdl on all OSes.
David L. Jonesf561aba2017-03-08 01:02:16 +0000576 if (TC.getTriple().getOS() != llvm::Triple::FreeBSD &&
Kamil Rytarowski2eef4752017-07-04 19:55:56 +0000577 TC.getTriple().getOS() != llvm::Triple::NetBSD &&
Kamil Rytarowski150a3772018-03-03 11:47:27 +0000578 TC.getTriple().getOS() != llvm::Triple::OpenBSD &&
David L. Jonesf561aba2017-03-08 01:02:16 +0000579 TC.getTriple().getOS() != llvm::Triple::RTEMS)
580 CmdArgs.push_back("-ldl");
Kamil Rytarowskie21475e2017-12-19 07:10:33 +0000581 // Required for backtrace on some OSes
Kamil Rytarowskia7ef6a62018-01-24 23:08:49 +0000582 if (TC.getTriple().getOS() == llvm::Triple::NetBSD ||
583 TC.getTriple().getOS() == llvm::Triple::FreeBSD)
Kamil Rytarowskie21475e2017-12-19 07:10:33 +0000584 CmdArgs.push_back("-lexecinfo");
David L. Jonesf561aba2017-03-08 01:02:16 +0000585}
586
587static void
588collectSanitizerRuntimes(const ToolChain &TC, const ArgList &Args,
589 SmallVectorImpl<StringRef> &SharedRuntimes,
590 SmallVectorImpl<StringRef> &StaticRuntimes,
591 SmallVectorImpl<StringRef> &NonWholeStaticRuntimes,
592 SmallVectorImpl<StringRef> &HelperStaticRuntimes,
593 SmallVectorImpl<StringRef> &RequiredSymbols) {
594 const SanitizerArgs &SanArgs = TC.getSanitizerArgs();
595 // Collect shared runtimes.
Evgeniy Stepanov0876cfb2017-10-05 20:14:00 +0000596 if (SanArgs.needsSharedRt()) {
597 if (SanArgs.needsAsanRt()) {
598 SharedRuntimes.push_back("asan");
599 if (!Args.hasArg(options::OPT_shared) && !TC.getTriple().isAndroid())
600 HelperStaticRuntimes.push_back("asan-preinit");
601 }
Evgeniy Stepanov0876cfb2017-10-05 20:14:00 +0000602 if (SanArgs.needsUbsanRt()) {
Kostya Kortchinsky64d80932018-06-22 14:31:30 +0000603 if (SanArgs.requiresMinimalRuntime())
Evgeniy Stepanov0876cfb2017-10-05 20:14:00 +0000604 SharedRuntimes.push_back("ubsan_minimal");
Kostya Kortchinsky64d80932018-06-22 14:31:30 +0000605 else
Evgeniy Stepanov0876cfb2017-10-05 20:14:00 +0000606 SharedRuntimes.push_back("ubsan_standalone");
Evgeniy Stepanov0876cfb2017-10-05 20:14:00 +0000607 }
Kostya Kortchinsky64d80932018-06-22 14:31:30 +0000608 if (SanArgs.needsScudoRt()) {
609 if (SanArgs.requiresMinimalRuntime())
610 SharedRuntimes.push_back("scudo_minimal");
611 else
612 SharedRuntimes.push_back("scudo");
613 }
Evgeniy Stepanov12817e52017-12-09 01:32:07 +0000614 if (SanArgs.needsHwasanRt())
615 SharedRuntimes.push_back("hwasan");
David L. Jonesf561aba2017-03-08 01:02:16 +0000616 }
Evgeniy Stepanov6d2b6f02017-08-29 20:03:51 +0000617
David L. Jonesf561aba2017-03-08 01:02:16 +0000618 // The stats_client library is also statically linked into DSOs.
619 if (SanArgs.needsStatsRt())
620 StaticRuntimes.push_back("stats_client");
621
622 // Collect static runtimes.
Evgeniy Stepanov0876cfb2017-10-05 20:14:00 +0000623 if (Args.hasArg(options::OPT_shared) || SanArgs.needsSharedRt()) {
624 // Don't link static runtimes into DSOs or if -shared-libasan.
David L. Jonesf561aba2017-03-08 01:02:16 +0000625 return;
626 }
627 if (SanArgs.needsAsanRt()) {
Evgeniy Stepanov0876cfb2017-10-05 20:14:00 +0000628 StaticRuntimes.push_back("asan");
629 if (SanArgs.linkCXXRuntimes())
630 StaticRuntimes.push_back("asan_cxx");
David L. Jonesf561aba2017-03-08 01:02:16 +0000631 }
Evgeniy Stepanov12817e52017-12-09 01:32:07 +0000632
633 if (SanArgs.needsHwasanRt()) {
634 StaticRuntimes.push_back("hwasan");
635 if (SanArgs.linkCXXRuntimes())
636 StaticRuntimes.push_back("hwasan_cxx");
637 }
David L. Jonesf561aba2017-03-08 01:02:16 +0000638 if (SanArgs.needsDfsanRt())
639 StaticRuntimes.push_back("dfsan");
640 if (SanArgs.needsLsanRt())
641 StaticRuntimes.push_back("lsan");
642 if (SanArgs.needsMsanRt()) {
643 StaticRuntimes.push_back("msan");
644 if (SanArgs.linkCXXRuntimes())
645 StaticRuntimes.push_back("msan_cxx");
646 }
647 if (SanArgs.needsTsanRt()) {
648 StaticRuntimes.push_back("tsan");
649 if (SanArgs.linkCXXRuntimes())
650 StaticRuntimes.push_back("tsan_cxx");
651 }
652 if (SanArgs.needsUbsanRt()) {
Evgeniy Stepanov6d2b6f02017-08-29 20:03:51 +0000653 if (SanArgs.requiresMinimalRuntime()) {
654 StaticRuntimes.push_back("ubsan_minimal");
655 } else {
656 StaticRuntimes.push_back("ubsan_standalone");
657 if (SanArgs.linkCXXRuntimes())
658 StaticRuntimes.push_back("ubsan_standalone_cxx");
659 }
David L. Jonesf561aba2017-03-08 01:02:16 +0000660 }
661 if (SanArgs.needsSafeStackRt()) {
662 NonWholeStaticRuntimes.push_back("safestack");
663 RequiredSymbols.push_back("__safestack_init");
664 }
665 if (SanArgs.needsCfiRt())
666 StaticRuntimes.push_back("cfi");
667 if (SanArgs.needsCfiDiagRt()) {
668 StaticRuntimes.push_back("cfi_diag");
669 if (SanArgs.linkCXXRuntimes())
670 StaticRuntimes.push_back("ubsan_standalone_cxx");
671 }
672 if (SanArgs.needsStatsRt()) {
673 NonWholeStaticRuntimes.push_back("stats");
674 RequiredSymbols.push_back("__sanitizer_stats_register");
675 }
676 if (SanArgs.needsEsanRt())
677 StaticRuntimes.push_back("esan");
Kostya Kortchinsky8acdc982017-11-03 17:04:13 +0000678 if (SanArgs.needsScudoRt()) {
Kostya Kortchinsky64d80932018-06-22 14:31:30 +0000679 if (SanArgs.requiresMinimalRuntime()) {
680 StaticRuntimes.push_back("scudo_minimal");
681 if (SanArgs.linkCXXRuntimes())
682 StaticRuntimes.push_back("scudo_cxx_minimal");
683 } else {
684 StaticRuntimes.push_back("scudo");
685 if (SanArgs.linkCXXRuntimes())
686 StaticRuntimes.push_back("scudo_cxx");
687 }
Kostya Kortchinsky8acdc982017-11-03 17:04:13 +0000688 }
David L. Jonesf561aba2017-03-08 01:02:16 +0000689}
690
691// Should be called before we add system libraries (C++ ABI, libstdc++/libc++,
692// C runtime, etc). Returns true if sanitizer system deps need to be linked in.
693bool tools::addSanitizerRuntimes(const ToolChain &TC, const ArgList &Args,
694 ArgStringList &CmdArgs) {
695 SmallVector<StringRef, 4> SharedRuntimes, StaticRuntimes,
696 NonWholeStaticRuntimes, HelperStaticRuntimes, RequiredSymbols;
697 collectSanitizerRuntimes(TC, Args, SharedRuntimes, StaticRuntimes,
698 NonWholeStaticRuntimes, HelperStaticRuntimes,
699 RequiredSymbols);
George Karpenkov9f6f74c2017-08-21 23:25:19 +0000700
George Karpenkovf2fc5b02017-04-24 18:23:24 +0000701 // Inject libfuzzer dependencies.
George Karpenkov2363fdd2017-06-29 19:52:33 +0000702 if (TC.getSanitizerArgs().needsFuzzer()
703 && !Args.hasArg(options::OPT_shared)) {
George Karpenkov9f6f74c2017-08-21 23:25:19 +0000704
705 addSanitizerRuntime(TC, Args, CmdArgs, "fuzzer", false, true);
706 if (!Args.hasArg(clang::driver::options::OPT_nostdlibxx))
707 TC.AddCXXStdlibLibArgs(Args, CmdArgs);
George Karpenkovf2fc5b02017-04-24 18:23:24 +0000708 }
709
David L. Jonesf561aba2017-03-08 01:02:16 +0000710 for (auto RT : SharedRuntimes)
711 addSanitizerRuntime(TC, Args, CmdArgs, RT, true, false);
712 for (auto RT : HelperStaticRuntimes)
713 addSanitizerRuntime(TC, Args, CmdArgs, RT, false, true);
714 bool AddExportDynamic = false;
715 for (auto RT : StaticRuntimes) {
716 addSanitizerRuntime(TC, Args, CmdArgs, RT, false, true);
717 AddExportDynamic |= !addSanitizerDynamicList(TC, Args, CmdArgs, RT);
718 }
719 for (auto RT : NonWholeStaticRuntimes) {
720 addSanitizerRuntime(TC, Args, CmdArgs, RT, false, false);
721 AddExportDynamic |= !addSanitizerDynamicList(TC, Args, CmdArgs, RT);
722 }
723 for (auto S : RequiredSymbols) {
724 CmdArgs.push_back("-u");
725 CmdArgs.push_back(Args.MakeArgString(S));
726 }
727 // If there is a static runtime with no dynamic list, force all the symbols
728 // to be dynamic to be sure we export sanitizer interface functions.
729 if (AddExportDynamic)
Alex Shlyapnikov85da0f62018-02-05 23:59:13 +0000730 CmdArgs.push_back("--export-dynamic");
David L. Jonesf561aba2017-03-08 01:02:16 +0000731
732 const SanitizerArgs &SanArgs = TC.getSanitizerArgs();
733 if (SanArgs.hasCrossDsoCfi() && !AddExportDynamic)
734 CmdArgs.push_back("-export-dynamic-symbol=__cfi_check");
735
736 return !StaticRuntimes.empty() || !NonWholeStaticRuntimes.empty();
737}
738
Dean Michael Berris62440372018-04-06 03:53:04 +0000739bool tools::addXRayRuntime(const ToolChain&TC, const ArgList &Args, ArgStringList &CmdArgs) {
740 if (Args.hasArg(options::OPT_shared))
741 return false;
742
743 if (TC.getXRayArgs().needsXRayRt()) {
744 CmdArgs.push_back("-whole-archive");
745 CmdArgs.push_back(TC.getCompilerRTArgString(Args, "xray", false));
Dean Michael Berris826e6662018-04-11 01:28:25 +0000746 for (const auto &Mode : TC.getXRayArgs().modeList())
747 CmdArgs.push_back(TC.getCompilerRTArgString(Args, Mode, false));
Dean Michael Berris62440372018-04-06 03:53:04 +0000748 CmdArgs.push_back("-no-whole-archive");
749 return true;
750 }
751
752 return false;
753}
754
755void tools::linkXRayRuntimeDeps(const ToolChain &TC, ArgStringList &CmdArgs) {
756 CmdArgs.push_back("--no-as-needed");
757 CmdArgs.push_back("-lpthread");
758 if (TC.getTriple().getOS() != llvm::Triple::OpenBSD)
759 CmdArgs.push_back("-lrt");
760 CmdArgs.push_back("-lm");
761
762 if (TC.getTriple().getOS() != llvm::Triple::FreeBSD &&
763 TC.getTriple().getOS() != llvm::Triple::NetBSD &&
764 TC.getTriple().getOS() != llvm::Triple::OpenBSD)
765 CmdArgs.push_back("-ldl");
766}
767
David L. Jonesf561aba2017-03-08 01:02:16 +0000768bool tools::areOptimizationsEnabled(const ArgList &Args) {
769 // Find the last -O arg and see if it is non-zero.
770 if (Arg *A = Args.getLastArg(options::OPT_O_Group))
771 return !A->getOption().matches(options::OPT_O0);
772 // Defaults to -O0.
773 return false;
774}
775
776const char *tools::SplitDebugName(const ArgList &Args, const InputInfo &Input) {
777 Arg *FinalOutput = Args.getLastArg(options::OPT_o);
778 if (FinalOutput && Args.hasArg(options::OPT_c)) {
779 SmallString<128> T(FinalOutput->getValue());
780 llvm::sys::path::replace_extension(T, "dwo");
781 return Args.MakeArgString(T);
782 } else {
783 // Use the compilation dir.
784 SmallString<128> T(
785 Args.getLastArgValue(options::OPT_fdebug_compilation_dir));
786 SmallString<128> F(llvm::sys::path::stem(Input.getBaseInput()));
787 llvm::sys::path::replace_extension(F, "dwo");
788 T += F;
789 return Args.MakeArgString(F);
790 }
791}
792
793void tools::SplitDebugInfo(const ToolChain &TC, Compilation &C, const Tool &T,
794 const JobAction &JA, const ArgList &Args,
795 const InputInfo &Output, const char *OutFile) {
796 ArgStringList ExtractArgs;
797 ExtractArgs.push_back("--extract-dwo");
798
799 ArgStringList StripArgs;
800 StripArgs.push_back("--strip-dwo");
801
802 // Grabbing the output of the earlier compile step.
803 StripArgs.push_back(Output.getFilename());
804 ExtractArgs.push_back(Output.getFilename());
805 ExtractArgs.push_back(OutFile);
806
Jake Ehrlichc451cf22017-11-11 01:15:41 +0000807 const char *Exec =
808 Args.MakeArgString(TC.GetProgramPath(CLANG_DEFAULT_OBJCOPY));
David L. Jonesf561aba2017-03-08 01:02:16 +0000809 InputInfo II(types::TY_Object, Output.getFilename(), Output.getFilename());
810
811 // First extract the dwo sections.
812 C.addCommand(llvm::make_unique<Command>(JA, T, Exec, ExtractArgs, II));
813
814 // Then remove them from the original .o file.
815 C.addCommand(llvm::make_unique<Command>(JA, T, Exec, StripArgs, II));
816}
817
818// Claim options we don't want to warn if they are unused. We do this for
819// options that build systems might add but are unused when assembling or only
820// running the preprocessor for example.
821void tools::claimNoWarnArgs(const ArgList &Args) {
822 // Don't warn about unused -f(no-)?lto. This can happen when we're
823 // preprocessing, precompiling or assembling.
824 Args.ClaimAllArgs(options::OPT_flto_EQ);
825 Args.ClaimAllArgs(options::OPT_flto);
826 Args.ClaimAllArgs(options::OPT_fno_lto);
827}
828
829Arg *tools::getLastProfileUseArg(const ArgList &Args) {
830 auto *ProfileUseArg = Args.getLastArg(
831 options::OPT_fprofile_instr_use, options::OPT_fprofile_instr_use_EQ,
832 options::OPT_fprofile_use, options::OPT_fprofile_use_EQ,
833 options::OPT_fno_profile_instr_use);
834
835 if (ProfileUseArg &&
836 ProfileUseArg->getOption().matches(options::OPT_fno_profile_instr_use))
837 ProfileUseArg = nullptr;
838
839 return ProfileUseArg;
840}
841
Dehao Chenea4b78f2017-03-21 21:40:53 +0000842Arg *tools::getLastProfileSampleUseArg(const ArgList &Args) {
843 auto *ProfileSampleUseArg = Args.getLastArg(
844 options::OPT_fprofile_sample_use, options::OPT_fprofile_sample_use_EQ,
845 options::OPT_fauto_profile, options::OPT_fauto_profile_EQ,
846 options::OPT_fno_profile_sample_use, options::OPT_fno_auto_profile);
847
848 if (ProfileSampleUseArg &&
849 (ProfileSampleUseArg->getOption().matches(
850 options::OPT_fno_profile_sample_use) ||
851 ProfileSampleUseArg->getOption().matches(options::OPT_fno_auto_profile)))
852 return nullptr;
853
854 return Args.getLastArg(options::OPT_fprofile_sample_use_EQ,
855 options::OPT_fauto_profile_EQ);
856}
857
David L. Jonesf561aba2017-03-08 01:02:16 +0000858/// Parses the various -fpic/-fPIC/-fpie/-fPIE arguments. Then,
859/// smooshes them together with platform defaults, to decide whether
860/// this compile should be using PIC mode or not. Returns a tuple of
861/// (RelocationModel, PICLevel, IsPIE).
862std::tuple<llvm::Reloc::Model, unsigned, bool>
863tools::ParsePICArgs(const ToolChain &ToolChain, const ArgList &Args) {
864 const llvm::Triple &EffectiveTriple = ToolChain.getEffectiveTriple();
865 const llvm::Triple &Triple = ToolChain.getTriple();
866
867 bool PIE = ToolChain.isPIEDefault();
868 bool PIC = PIE || ToolChain.isPICDefault();
869 // The Darwin/MachO default to use PIC does not apply when using -static.
870 if (Triple.isOSBinFormatMachO() && Args.hasArg(options::OPT_static))
871 PIE = PIC = false;
872 bool IsPICLevelTwo = PIC;
873
874 bool KernelOrKext =
875 Args.hasArg(options::OPT_mkernel, options::OPT_fapple_kext);
876
877 // Android-specific defaults for PIC/PIE
878 if (Triple.isAndroid()) {
879 switch (Triple.getArch()) {
880 case llvm::Triple::arm:
881 case llvm::Triple::armeb:
882 case llvm::Triple::thumb:
883 case llvm::Triple::thumbeb:
884 case llvm::Triple::aarch64:
885 case llvm::Triple::mips:
886 case llvm::Triple::mipsel:
887 case llvm::Triple::mips64:
888 case llvm::Triple::mips64el:
889 PIC = true; // "-fpic"
890 break;
891
892 case llvm::Triple::x86:
893 case llvm::Triple::x86_64:
894 PIC = true; // "-fPIC"
895 IsPICLevelTwo = true;
896 break;
897
898 default:
899 break;
900 }
901 }
902
903 // OpenBSD-specific defaults for PIE
904 if (Triple.getOS() == llvm::Triple::OpenBSD) {
905 switch (ToolChain.getArch()) {
Brad Smith3f2b1d72017-03-31 22:13:17 +0000906 case llvm::Triple::arm:
907 case llvm::Triple::aarch64:
David L. Jonesf561aba2017-03-08 01:02:16 +0000908 case llvm::Triple::mips64:
909 case llvm::Triple::mips64el:
David L. Jonesf561aba2017-03-08 01:02:16 +0000910 case llvm::Triple::x86:
911 case llvm::Triple::x86_64:
912 IsPICLevelTwo = false; // "-fpie"
913 break;
914
915 case llvm::Triple::ppc:
916 case llvm::Triple::sparc:
Brad Smith3f2b1d72017-03-31 22:13:17 +0000917 case llvm::Triple::sparcel:
David L. Jonesf561aba2017-03-08 01:02:16 +0000918 case llvm::Triple::sparcv9:
919 IsPICLevelTwo = true; // "-fPIE"
920 break;
921
922 default:
923 break;
924 }
925 }
926
Konstantin Zhuravlyovb4c83a02018-02-15 01:01:53 +0000927 // AMDGPU-specific defaults for PIC.
928 if (Triple.getArch() == llvm::Triple::amdgcn)
929 PIC = true;
930
David L. Jonesf561aba2017-03-08 01:02:16 +0000931 // The last argument relating to either PIC or PIE wins, and no
932 // other argument is used. If the last argument is any flavor of the
933 // '-fno-...' arguments, both PIC and PIE are disabled. Any PIE
934 // option implicitly enables PIC at the same level.
935 Arg *LastPICArg = Args.getLastArg(options::OPT_fPIC, options::OPT_fno_PIC,
936 options::OPT_fpic, options::OPT_fno_pic,
937 options::OPT_fPIE, options::OPT_fno_PIE,
938 options::OPT_fpie, options::OPT_fno_pie);
939 if (Triple.isOSWindows() && LastPICArg &&
940 LastPICArg ==
941 Args.getLastArg(options::OPT_fPIC, options::OPT_fpic,
942 options::OPT_fPIE, options::OPT_fpie)) {
943 ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target)
944 << LastPICArg->getSpelling() << Triple.str();
945 if (Triple.getArch() == llvm::Triple::x86_64)
946 return std::make_tuple(llvm::Reloc::PIC_, 2U, false);
947 return std::make_tuple(llvm::Reloc::Static, 0U, false);
948 }
949
950 // Check whether the tool chain trumps the PIC-ness decision. If the PIC-ness
951 // is forced, then neither PIC nor PIE flags will have no effect.
952 if (!ToolChain.isPICDefaultForced()) {
953 if (LastPICArg) {
954 Option O = LastPICArg->getOption();
955 if (O.matches(options::OPT_fPIC) || O.matches(options::OPT_fpic) ||
956 O.matches(options::OPT_fPIE) || O.matches(options::OPT_fpie)) {
957 PIE = O.matches(options::OPT_fPIE) || O.matches(options::OPT_fpie);
958 PIC =
959 PIE || O.matches(options::OPT_fPIC) || O.matches(options::OPT_fpic);
960 IsPICLevelTwo =
961 O.matches(options::OPT_fPIE) || O.matches(options::OPT_fPIC);
962 } else {
963 PIE = PIC = false;
964 if (EffectiveTriple.isPS4CPU()) {
965 Arg *ModelArg = Args.getLastArg(options::OPT_mcmodel_EQ);
966 StringRef Model = ModelArg ? ModelArg->getValue() : "";
967 if (Model != "kernel") {
968 PIC = true;
969 ToolChain.getDriver().Diag(diag::warn_drv_ps4_force_pic)
970 << LastPICArg->getSpelling();
971 }
972 }
973 }
974 }
975 }
976
977 // Introduce a Darwin and PS4-specific hack. If the default is PIC, but the
978 // PIC level would've been set to level 1, force it back to level 2 PIC
979 // instead.
980 if (PIC && (Triple.isOSDarwin() || EffectiveTriple.isPS4CPU()))
981 IsPICLevelTwo |= ToolChain.isPICDefault();
982
983 // This kernel flags are a trump-card: they will disable PIC/PIE
984 // generation, independent of the argument order.
985 if (KernelOrKext &&
986 ((!EffectiveTriple.isiOS() || EffectiveTriple.isOSVersionLT(6)) &&
987 !EffectiveTriple.isWatchOS()))
988 PIC = PIE = false;
989
990 if (Arg *A = Args.getLastArg(options::OPT_mdynamic_no_pic)) {
991 // This is a very special mode. It trumps the other modes, almost no one
992 // uses it, and it isn't even valid on any OS but Darwin.
993 if (!Triple.isOSDarwin())
994 ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target)
995 << A->getSpelling() << Triple.str();
996
997 // FIXME: Warn when this flag trumps some other PIC or PIE flag.
998
999 // Only a forced PIC mode can cause the actual compile to have PIC defines
1000 // etc., no flags are sufficient. This behavior was selected to closely
1001 // match that of llvm-gcc and Apple GCC before that.
1002 PIC = ToolChain.isPICDefault() && ToolChain.isPICDefaultForced();
1003
1004 return std::make_tuple(llvm::Reloc::DynamicNoPIC, PIC ? 2U : 0U, false);
1005 }
1006
1007 bool EmbeddedPISupported;
1008 switch (Triple.getArch()) {
1009 case llvm::Triple::arm:
1010 case llvm::Triple::armeb:
1011 case llvm::Triple::thumb:
1012 case llvm::Triple::thumbeb:
1013 EmbeddedPISupported = true;
1014 break;
1015 default:
1016 EmbeddedPISupported = false;
1017 break;
1018 }
1019
1020 bool ROPI = false, RWPI = false;
1021 Arg* LastROPIArg = Args.getLastArg(options::OPT_fropi, options::OPT_fno_ropi);
1022 if (LastROPIArg && LastROPIArg->getOption().matches(options::OPT_fropi)) {
1023 if (!EmbeddedPISupported)
1024 ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target)
1025 << LastROPIArg->getSpelling() << Triple.str();
1026 ROPI = true;
1027 }
1028 Arg *LastRWPIArg = Args.getLastArg(options::OPT_frwpi, options::OPT_fno_rwpi);
1029 if (LastRWPIArg && LastRWPIArg->getOption().matches(options::OPT_frwpi)) {
1030 if (!EmbeddedPISupported)
1031 ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target)
1032 << LastRWPIArg->getSpelling() << Triple.str();
1033 RWPI = true;
1034 }
1035
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +00001036 // ROPI and RWPI are not compatible with PIC or PIE.
David L. Jonesf561aba2017-03-08 01:02:16 +00001037 if ((ROPI || RWPI) && (PIC || PIE))
1038 ToolChain.getDriver().Diag(diag::err_drv_ropi_rwpi_incompatible_with_pic);
1039
Alexander Richardson742553d2018-06-25 16:49:52 +00001040 if (Triple.isMIPS()) {
Aleksandar Beserminji20d603b2018-05-07 14:30:49 +00001041 StringRef CPUName;
1042 StringRef ABIName;
1043 mips::getMipsCPUAndABI(Args, Triple, CPUName, ABIName);
1044 // When targeting the N64 ABI, PIC is the default, except in the case
1045 // when the -mno-abicalls option is used. In that case we exit
1046 // at next check regardless of PIC being set below.
1047 if (ABIName == "n64")
1048 PIC = true;
Aleksandar Beserminji7ca42e82018-04-16 10:21:24 +00001049 // When targettng MIPS with -mno-abicalls, it's always static.
1050 if(Args.hasArg(options::OPT_mno_abicalls))
1051 return std::make_tuple(llvm::Reloc::Static, 0U, false);
1052 // Unlike other architectures, MIPS, even with -fPIC/-mxgot/multigot,
1053 // does not use PIC level 2 for historical reasons.
1054 IsPICLevelTwo = false;
1055 }
David L. Jonesf561aba2017-03-08 01:02:16 +00001056
1057 if (PIC)
1058 return std::make_tuple(llvm::Reloc::PIC_, IsPICLevelTwo ? 2U : 1U, PIE);
1059
1060 llvm::Reloc::Model RelocM = llvm::Reloc::Static;
1061 if (ROPI && RWPI)
1062 RelocM = llvm::Reloc::ROPI_RWPI;
1063 else if (ROPI)
1064 RelocM = llvm::Reloc::ROPI;
1065 else if (RWPI)
1066 RelocM = llvm::Reloc::RWPI;
1067
1068 return std::make_tuple(RelocM, 0U, false);
1069}
1070
Saleem Abdulrasool3fe5b7a2018-04-19 23:14:57 +00001071// `-falign-functions` indicates that the functions should be aligned to a
1072// 16-byte boundary.
1073//
1074// `-falign-functions=1` is the same as `-fno-align-functions`.
1075//
1076// The scalar `n` in `-falign-functions=n` must be an integral value between
1077// [0, 65536]. If the value is not a power-of-two, it will be rounded up to
1078// the nearest power-of-two.
1079//
1080// If we return `0`, the frontend will default to the backend's preferred
1081// alignment.
1082//
1083// NOTE: icc only allows values between [0, 4096]. icc uses `-falign-functions`
1084// to mean `-falign-functions=16`. GCC defaults to the backend's preferred
1085// alignment. For unaligned functions, we default to the backend's preferred
1086// alignment.
1087unsigned tools::ParseFunctionAlignment(const ToolChain &TC,
1088 const ArgList &Args) {
1089 const Arg *A = Args.getLastArg(options::OPT_falign_functions,
1090 options::OPT_falign_functions_EQ,
1091 options::OPT_fno_align_functions);
1092 if (!A || A->getOption().matches(options::OPT_fno_align_functions))
1093 return 0;
1094
1095 if (A->getOption().matches(options::OPT_falign_functions))
1096 return 0;
1097
1098 unsigned Value = 0;
1099 if (StringRef(A->getValue()).getAsInteger(10, Value) || Value > 65536)
1100 TC.getDriver().Diag(diag::err_drv_invalid_int_value)
1101 << A->getAsString(Args) << A->getValue();
1102 return Value ? llvm::Log2_32_Ceil(std::min(Value, 65536u)) : Value;
1103}
1104
David L. Jonesf561aba2017-03-08 01:02:16 +00001105void tools::AddAssemblerKPIC(const ToolChain &ToolChain, const ArgList &Args,
1106 ArgStringList &CmdArgs) {
1107 llvm::Reloc::Model RelocationModel;
1108 unsigned PICLevel;
1109 bool IsPIE;
1110 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args);
1111
1112 if (RelocationModel != llvm::Reloc::Static)
1113 CmdArgs.push_back("-KPIC");
1114}
1115
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00001116/// Determine whether Objective-C automated reference counting is
David L. Jonesf561aba2017-03-08 01:02:16 +00001117/// enabled.
1118bool tools::isObjCAutoRefCount(const ArgList &Args) {
1119 return Args.hasFlag(options::OPT_fobjc_arc, options::OPT_fno_objc_arc, false);
1120}
1121
1122static void AddLibgcc(const llvm::Triple &Triple, const Driver &D,
1123 ArgStringList &CmdArgs, const ArgList &Args) {
1124 bool isAndroid = Triple.isAndroid();
1125 bool isCygMing = Triple.isOSCygMing();
1126 bool IsIAMCU = Triple.isOSIAMCU();
1127 bool StaticLibgcc = Args.hasArg(options::OPT_static_libgcc) ||
1128 Args.hasArg(options::OPT_static);
Sterling Augustinecbe4fc32018-08-30 20:07:23 +00001129 // The driver ignores -shared-libgcc and therefore treats such cases as
1130 // unspecified. Breaking out the two variables as below makes the current
1131 // behavior explicit.
1132 bool UnspecifiedLibgcc = !StaticLibgcc;
1133 bool SharedLibgcc = !StaticLibgcc;
1134
1135 // Gcc adds libgcc arguments in various ways:
1136 //
1137 // gcc <none>: -lgcc --as-needed -lgcc_s --no-as-needed
1138 // g++ <none>: -lgcc_s -lgcc
1139 // gcc shared: -lgcc_s -lgcc
1140 // g++ shared: -lgcc_s -lgcc
1141 // gcc static: -lgcc -lgcc_eh
1142 // g++ static: -lgcc -lgcc_eh
1143 //
1144 // Also, certain targets need additional adjustments.
1145
1146 bool LibGccFirst = (D.CCCIsCC() && UnspecifiedLibgcc) || StaticLibgcc;
1147 if (LibGccFirst)
David L. Jonesf561aba2017-03-08 01:02:16 +00001148 CmdArgs.push_back("-lgcc");
1149
Sterling Augustinecbe4fc32018-08-30 20:07:23 +00001150 bool AsNeeded = D.CCCIsCC() && !StaticLibgcc && !isCygMing;
1151 if (AsNeeded)
1152 CmdArgs.push_back("--as-needed");
David L. Jonesf561aba2017-03-08 01:02:16 +00001153
Sterling Augustinecbe4fc32018-08-30 20:07:23 +00001154 if (UnspecifiedLibgcc || SharedLibgcc)
1155 CmdArgs.push_back("-lgcc_s");
1156
1157 else if (StaticLibgcc && !isAndroid && !IsIAMCU)
David L. Jonesf561aba2017-03-08 01:02:16 +00001158 CmdArgs.push_back("-lgcc_eh");
Sterling Augustinecbe4fc32018-08-30 20:07:23 +00001159
1160 if (AsNeeded)
1161 CmdArgs.push_back("--no-as-needed");
1162
1163 if (!LibGccFirst)
David L. Jonesf561aba2017-03-08 01:02:16 +00001164 CmdArgs.push_back("-lgcc");
1165
1166 // According to Android ABI, we have to link with libdl if we are
1167 // linking with non-static libgcc.
1168 //
1169 // NOTE: This fixes a link error on Android MIPS as well. The non-static
1170 // libgcc for MIPS relies on _Unwind_Find_FDE and dl_iterate_phdr from libdl.
1171 if (isAndroid && !StaticLibgcc)
1172 CmdArgs.push_back("-ldl");
1173}
1174
1175void tools::AddRunTimeLibs(const ToolChain &TC, const Driver &D,
1176 ArgStringList &CmdArgs, const ArgList &Args) {
1177 // Make use of compiler-rt if --rtlib option is used
1178 ToolChain::RuntimeLibType RLT = TC.GetRuntimeLibType(Args);
1179
1180 switch (RLT) {
1181 case ToolChain::RLT_CompilerRT:
Sam Clegga08631e2017-10-27 00:26:07 +00001182 CmdArgs.push_back(TC.getCompilerRTArgString(Args, "builtins"));
David L. Jonesf561aba2017-03-08 01:02:16 +00001183 break;
1184 case ToolChain::RLT_Libgcc:
1185 // Make sure libgcc is not used under MSVC environment by default
1186 if (TC.getTriple().isKnownWindowsMSVCEnvironment()) {
1187 // Issue error diagnostic if libgcc is explicitly specified
1188 // through command line as --rtlib option argument.
1189 if (Args.hasArg(options::OPT_rtlib_EQ)) {
1190 TC.getDriver().Diag(diag::err_drv_unsupported_rtlib_for_platform)
1191 << Args.getLastArg(options::OPT_rtlib_EQ)->getValue() << "MSVC";
1192 }
1193 } else
1194 AddLibgcc(TC.getTriple(), D, CmdArgs, Args);
1195 break;
1196 }
1197}
Gheorghe-Teodor Bercea2c926932017-08-08 14:33:05 +00001198
1199/// Add OpenMP linker script arguments at the end of the argument list so that
1200/// the fat binary is built by embedding each of the device images into the
1201/// host. The linker script also defines a few symbols required by the code
1202/// generation so that the images can be easily retrieved at runtime by the
1203/// offloading library. This should be used only in tool chains that support
1204/// linker scripts.
1205void tools::AddOpenMPLinkerScript(const ToolChain &TC, Compilation &C,
1206 const InputInfo &Output,
1207 const InputInfoList &Inputs,
1208 const ArgList &Args, ArgStringList &CmdArgs,
1209 const JobAction &JA) {
1210
1211 // If this is not an OpenMP host toolchain, we don't need to do anything.
1212 if (!JA.isHostOffloading(Action::OFK_OpenMP))
1213 return;
1214
1215 // Create temporary linker script. Keep it if save-temps is enabled.
1216 const char *LKS;
1217 SmallString<256> Name = llvm::sys::path::filename(Output.getFilename());
1218 if (C.getDriver().isSaveTempsEnabled()) {
1219 llvm::sys::path::replace_extension(Name, "lk");
1220 LKS = C.getArgs().MakeArgString(Name.c_str());
1221 } else {
1222 llvm::sys::path::replace_extension(Name, "");
1223 Name = C.getDriver().GetTemporaryPath(Name, "lk");
1224 LKS = C.addTempFile(C.getArgs().MakeArgString(Name.c_str()));
1225 }
1226
1227 // Add linker script option to the command.
1228 CmdArgs.push_back("-T");
1229 CmdArgs.push_back(LKS);
1230
1231 // Create a buffer to write the contents of the linker script.
1232 std::string LksBuffer;
1233 llvm::raw_string_ostream LksStream(LksBuffer);
1234
1235 // Get the OpenMP offload tool chains so that we can extract the triple
1236 // associated with each device input.
1237 auto OpenMPToolChains = C.getOffloadToolChains<Action::OFK_OpenMP>();
1238 assert(OpenMPToolChains.first != OpenMPToolChains.second &&
1239 "No OpenMP toolchains??");
1240
1241 // Track the input file name and device triple in order to build the script,
1242 // inserting binaries in the designated sections.
1243 SmallVector<std::pair<std::string, const char *>, 8> InputBinaryInfo;
1244
1245 // Add commands to embed target binaries. We ensure that each section and
1246 // image is 16-byte aligned. This is not mandatory, but increases the
1247 // likelihood of data to be aligned with a cache block in several main host
1248 // machines.
1249 LksStream << "/*\n";
1250 LksStream << " OpenMP Offload Linker Script\n";
1251 LksStream << " *** Automatically generated by Clang ***\n";
1252 LksStream << "*/\n";
1253 LksStream << "TARGET(binary)\n";
1254 auto DTC = OpenMPToolChains.first;
1255 for (auto &II : Inputs) {
1256 const Action *A = II.getAction();
1257 // Is this a device linking action?
1258 if (A && isa<LinkJobAction>(A) &&
1259 A->isDeviceOffloading(Action::OFK_OpenMP)) {
1260 assert(DTC != OpenMPToolChains.second &&
1261 "More device inputs than device toolchains??");
1262 InputBinaryInfo.push_back(std::make_pair(
1263 DTC->second->getTriple().normalize(), II.getFilename()));
1264 ++DTC;
1265 LksStream << "INPUT(" << II.getFilename() << ")\n";
1266 }
1267 }
1268
1269 assert(DTC == OpenMPToolChains.second &&
1270 "Less device inputs than device toolchains??");
1271
1272 LksStream << "SECTIONS\n";
1273 LksStream << "{\n";
1274
1275 // Put each target binary into a separate section.
1276 for (const auto &BI : InputBinaryInfo) {
1277 LksStream << " .omp_offloading." << BI.first << " :\n";
1278 LksStream << " ALIGN(0x10)\n";
1279 LksStream << " {\n";
1280 LksStream << " PROVIDE_HIDDEN(.omp_offloading.img_start." << BI.first
1281 << " = .);\n";
1282 LksStream << " " << BI.second << "\n";
1283 LksStream << " PROVIDE_HIDDEN(.omp_offloading.img_end." << BI.first
1284 << " = .);\n";
1285 LksStream << " }\n";
1286 }
1287
1288 // Add commands to define host entries begin and end. We use 1-byte subalign
1289 // so that the linker does not add any padding and the elements in this
1290 // section form an array.
1291 LksStream << " .omp_offloading.entries :\n";
1292 LksStream << " ALIGN(0x10)\n";
1293 LksStream << " SUBALIGN(0x01)\n";
1294 LksStream << " {\n";
1295 LksStream << " PROVIDE_HIDDEN(.omp_offloading.entries_begin = .);\n";
1296 LksStream << " *(.omp_offloading.entries)\n";
1297 LksStream << " PROVIDE_HIDDEN(.omp_offloading.entries_end = .);\n";
1298 LksStream << " }\n";
1299 LksStream << "}\n";
1300 LksStream << "INSERT BEFORE .data\n";
1301 LksStream.flush();
1302
1303 // Dump the contents of the linker script if the user requested that. We
1304 // support this option to enable testing of behavior with -###.
1305 if (C.getArgs().hasArg(options::OPT_fopenmp_dump_offload_linker_script))
1306 llvm::errs() << LksBuffer;
1307
1308 // If this is a dry run, do not create the linker script file.
1309 if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH))
1310 return;
1311
1312 // Open script file and write the contents.
1313 std::error_code EC;
1314 llvm::raw_fd_ostream Lksf(LKS, EC, llvm::sys::fs::F_None);
1315
1316 if (EC) {
1317 C.getDriver().Diag(clang::diag::err_unable_to_make_temp) << EC.message();
1318 return;
1319 }
1320
1321 Lksf << LksBuffer;
1322}
Florian Hahn2e081d12018-04-20 12:50:10 +00001323
Yaxun Liu29155b02018-05-18 15:07:56 +00001324/// Add HIP linker script arguments at the end of the argument list so that
1325/// the fat binary is built by embedding the device images into the host. The
1326/// linker script also defines a symbol required by the code generation so that
1327/// the image can be retrieved at runtime. This should be used only in tool
1328/// chains that support linker scripts.
1329void tools::AddHIPLinkerScript(const ToolChain &TC, Compilation &C,
1330 const InputInfo &Output,
1331 const InputInfoList &Inputs, const ArgList &Args,
1332 ArgStringList &CmdArgs, const JobAction &JA,
1333 const Tool &T) {
1334
1335 // If this is not a HIP host toolchain, we don't need to do anything.
1336 if (!JA.isHostOffloading(Action::OFK_HIP))
1337 return;
1338
1339 // Create temporary linker script. Keep it if save-temps is enabled.
1340 const char *LKS;
1341 SmallString<256> Name = llvm::sys::path::filename(Output.getFilename());
1342 if (C.getDriver().isSaveTempsEnabled()) {
1343 llvm::sys::path::replace_extension(Name, "lk");
1344 LKS = C.getArgs().MakeArgString(Name.c_str());
1345 } else {
1346 llvm::sys::path::replace_extension(Name, "");
1347 Name = C.getDriver().GetTemporaryPath(Name, "lk");
1348 LKS = C.addTempFile(C.getArgs().MakeArgString(Name.c_str()));
1349 }
1350
1351 // Add linker script option to the command.
1352 CmdArgs.push_back("-T");
1353 CmdArgs.push_back(LKS);
1354
1355 // Create a buffer to write the contents of the linker script.
1356 std::string LksBuffer;
1357 llvm::raw_string_ostream LksStream(LksBuffer);
1358
1359 // Get the HIP offload tool chain.
1360 auto *HIPTC = static_cast<const toolchains::CudaToolChain *>(
1361 C.getSingleOffloadToolChain<Action::OFK_HIP>());
1362 assert(HIPTC->getTriple().getArch() == llvm::Triple::amdgcn &&
1363 "Wrong platform");
Eric Liu7112fe62018-05-18 16:29:42 +00001364 (void)HIPTC;
Yaxun Liu29155b02018-05-18 15:07:56 +00001365
1366 // Construct clang-offload-bundler command to bundle object files for
1367 // for different GPU archs.
1368 ArgStringList BundlerArgs;
1369 BundlerArgs.push_back(Args.MakeArgString("-type=o"));
1370
1371 // ToDo: Remove the dummy host binary entry which is required by
1372 // clang-offload-bundler.
1373 std::string BundlerTargetArg = "-targets=host-x86_64-unknown-linux";
1374 std::string BundlerInputArg = "-inputs=/dev/null";
1375
1376 for (const auto &II : Inputs) {
1377 const Action *A = II.getAction();
1378 // Is this a device linking action?
1379 if (A && isa<LinkJobAction>(A) && A->isDeviceOffloading(Action::OFK_HIP)) {
1380 BundlerTargetArg = BundlerTargetArg + ",hip-amdgcn-amd-amdhsa-" +
1381 StringRef(A->getOffloadingArch()).str();
1382 BundlerInputArg = BundlerInputArg + "," + II.getFilename();
1383 }
1384 }
1385 BundlerArgs.push_back(Args.MakeArgString(BundlerTargetArg));
1386 BundlerArgs.push_back(Args.MakeArgString(BundlerInputArg));
1387
1388 std::string BundleFileName = C.getDriver().GetTemporaryPath("BUNDLE", "o");
1389 const char *BundleFile =
1390 C.addTempFile(C.getArgs().MakeArgString(BundleFileName.c_str()));
1391 auto BundlerOutputArg =
1392 Args.MakeArgString(std::string("-outputs=").append(BundleFile));
1393 BundlerArgs.push_back(BundlerOutputArg);
1394
1395 SmallString<128> BundlerPath(C.getDriver().Dir);
1396 llvm::sys::path::append(BundlerPath, "clang-offload-bundler");
1397 const char *Bundler = Args.MakeArgString(BundlerPath);
1398 C.addCommand(llvm::make_unique<Command>(JA, T, Bundler, BundlerArgs, Inputs));
1399
1400 // Add commands to embed target binaries. We ensure that each section and
1401 // image is 16-byte aligned. This is not mandatory, but increases the
1402 // likelihood of data to be aligned with a cache block in several main host
1403 // machines.
1404 LksStream << "/*\n";
1405 LksStream << " HIP Offload Linker Script\n";
1406 LksStream << " *** Automatically generated by Clang ***\n";
1407 LksStream << "*/\n";
1408 LksStream << "TARGET(binary)\n";
1409 LksStream << "INPUT(" << BundleFileName << ")\n";
1410 LksStream << "SECTIONS\n";
1411 LksStream << "{\n";
1412 LksStream << " .hip_fatbin :\n";
1413 LksStream << " ALIGN(0x10)\n";
1414 LksStream << " {\n";
1415 LksStream << " PROVIDE_HIDDEN(__hip_fatbin = .);\n";
1416 LksStream << " " << BundleFileName << "\n";
1417 LksStream << " }\n";
1418 LksStream << "}\n";
1419 LksStream << "INSERT BEFORE .data\n";
1420 LksStream.flush();
1421
1422 // Dump the contents of the linker script if the user requested that. We
1423 // support this option to enable testing of behavior with -###.
1424 if (C.getArgs().hasArg(options::OPT_fhip_dump_offload_linker_script))
1425 llvm::errs() << LksBuffer;
1426
1427 // If this is a dry run, do not create the linker script file.
1428 if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH))
1429 return;
1430
1431 // Open script file and write the contents.
1432 std::error_code EC;
1433 llvm::raw_fd_ostream Lksf(LKS, EC, llvm::sys::fs::F_None);
1434
1435 if (EC) {
1436 C.getDriver().Diag(clang::diag::err_unable_to_make_temp) << EC.message();
1437 return;
1438 }
1439
1440 Lksf << LksBuffer;
1441}
1442
Florian Hahn2e081d12018-04-20 12:50:10 +00001443SmallString<128> tools::getStatsFileName(const llvm::opt::ArgList &Args,
1444 const InputInfo &Output,
1445 const InputInfo &Input,
1446 const Driver &D) {
1447 const Arg *A = Args.getLastArg(options::OPT_save_stats_EQ);
1448 if (!A)
1449 return {};
1450
1451 StringRef SaveStats = A->getValue();
1452 SmallString<128> StatsFile;
1453 if (SaveStats == "obj" && Output.isFilename()) {
1454 StatsFile.assign(Output.getFilename());
1455 llvm::sys::path::remove_filename(StatsFile);
1456 } else if (SaveStats != "cwd") {
1457 D.Diag(diag::err_drv_invalid_value) << A->getAsString(Args) << SaveStats;
1458 return {};
1459 }
1460
1461 StringRef BaseName = llvm::sys::path::filename(Input.getBaseInput());
1462 llvm::sys::path::append(StatsFile, BaseName);
1463 llvm::sys::path::replace_extension(StatsFile, "stats");
1464 return StatsFile;
1465}