blob: 1741517bffb0e7571de7a3427dce821273fa51ce [file] [log] [blame]
David L. Jonesf561aba2017-03-08 01:02:16 +00001//===--- LLVM.cpp - Clang+LLVM ToolChain Implementations --------*- 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 "Clang.h"
11#include "Arch/AArch64.h"
12#include "Arch/ARM.h"
13#include "Arch/Mips.h"
14#include "Arch/PPC.h"
Alex Bradbury71f45452018-01-11 13:36:56 +000015#include "Arch/RISCV.h"
David L. Jonesf561aba2017-03-08 01:02:16 +000016#include "Arch/Sparc.h"
17#include "Arch/SystemZ.h"
18#include "Arch/X86.h"
Konstantin Zhuravlyov8914a6d2017-11-10 19:09:57 +000019#include "AMDGPU.h"
David L. Jonesf561aba2017-03-08 01:02:16 +000020#include "CommonArgs.h"
21#include "Hexagon.h"
22#include "InputInfo.h"
23#include "PS4CPU.h"
24#include "clang/Basic/CharInfo.h"
25#include "clang/Basic/LangOptions.h"
26#include "clang/Basic/ObjCRuntime.h"
27#include "clang/Basic/Version.h"
28#include "clang/Config/config.h"
29#include "clang/Driver/DriverDiagnostic.h"
30#include "clang/Driver/Options.h"
31#include "clang/Driver/SanitizerArgs.h"
Dean Michael Berris835832d2017-03-30 00:29:36 +000032#include "clang/Driver/XRayArgs.h"
David L. Jonesf561aba2017-03-08 01:02:16 +000033#include "llvm/ADT/StringExtras.h"
34#include "llvm/Option/ArgList.h"
35#include "llvm/Support/CodeGen.h"
36#include "llvm/Support/Compression.h"
37#include "llvm/Support/FileSystem.h"
38#include "llvm/Support/Path.h"
39#include "llvm/Support/Process.h"
Eric Christopher53b2cb72017-06-30 00:03:56 +000040#include "llvm/Support/TargetParser.h"
David L. Jonesf561aba2017-03-08 01:02:16 +000041#include "llvm/Support/YAMLParser.h"
42
43#ifdef LLVM_ON_UNIX
44#include <unistd.h> // For getuid().
45#endif
46
47using namespace clang::driver;
48using namespace clang::driver::tools;
49using namespace clang;
50using namespace llvm::opt;
51
52static void CheckPreprocessingOptions(const Driver &D, const ArgList &Args) {
53 if (Arg *A =
54 Args.getLastArg(clang::driver::options::OPT_C, options::OPT_CC)) {
55 if (!Args.hasArg(options::OPT_E) && !Args.hasArg(options::OPT__SLASH_P) &&
56 !Args.hasArg(options::OPT__SLASH_EP) && !D.CCCIsCPP()) {
57 D.Diag(clang::diag::err_drv_argument_only_allowed_with)
58 << A->getBaseArg().getAsString(Args)
59 << (D.IsCLMode() ? "/E, /P or /EP" : "-E");
60 }
61 }
62}
63
64static void CheckCodeGenerationOptions(const Driver &D, const ArgList &Args) {
65 // In gcc, only ARM checks this, but it seems reasonable to check universally.
66 if (Args.hasArg(options::OPT_static))
67 if (const Arg *A =
68 Args.getLastArg(options::OPT_dynamic, options::OPT_mdynamic_no_pic))
69 D.Diag(diag::err_drv_argument_not_allowed_with) << A->getAsString(Args)
70 << "-static";
71}
72
73// Add backslashes to escape spaces and other backslashes.
74// This is used for the space-separated argument list specified with
75// the -dwarf-debug-flags option.
76static void EscapeSpacesAndBackslashes(const char *Arg,
77 SmallVectorImpl<char> &Res) {
78 for (; *Arg; ++Arg) {
79 switch (*Arg) {
80 default:
81 break;
82 case ' ':
83 case '\\':
84 Res.push_back('\\');
85 break;
86 }
87 Res.push_back(*Arg);
88 }
89}
90
91// Quote target names for inclusion in GNU Make dependency files.
92// Only the characters '$', '#', ' ', '\t' are quoted.
93static void QuoteTarget(StringRef Target, SmallVectorImpl<char> &Res) {
94 for (unsigned i = 0, e = Target.size(); i != e; ++i) {
95 switch (Target[i]) {
96 case ' ':
97 case '\t':
98 // Escape the preceding backslashes
99 for (int j = i - 1; j >= 0 && Target[j] == '\\'; --j)
100 Res.push_back('\\');
101
102 // Escape the space/tab
103 Res.push_back('\\');
104 break;
105 case '$':
106 Res.push_back('$');
107 break;
108 case '#':
109 Res.push_back('\\');
110 break;
111 default:
112 break;
113 }
114
115 Res.push_back(Target[i]);
116 }
117}
118
119/// Apply \a Work on the current tool chain \a RegularToolChain and any other
120/// offloading tool chain that is associated with the current action \a JA.
121static void
122forAllAssociatedToolChains(Compilation &C, const JobAction &JA,
123 const ToolChain &RegularToolChain,
124 llvm::function_ref<void(const ToolChain &)> Work) {
125 // Apply Work on the current/regular tool chain.
126 Work(RegularToolChain);
127
128 // Apply Work on all the offloading tool chains associated with the current
129 // action.
130 if (JA.isHostOffloading(Action::OFK_Cuda))
131 Work(*C.getSingleOffloadToolChain<Action::OFK_Cuda>());
132 else if (JA.isDeviceOffloading(Action::OFK_Cuda))
133 Work(*C.getSingleOffloadToolChain<Action::OFK_Host>());
134
Gheorghe-Teodor Bercea59d7b772017-06-29 15:49:03 +0000135 if (JA.isHostOffloading(Action::OFK_OpenMP)) {
136 auto TCs = C.getOffloadToolChains<Action::OFK_OpenMP>();
137 for (auto II = TCs.first, IE = TCs.second; II != IE; ++II)
138 Work(*II->second);
139 } else if (JA.isDeviceOffloading(Action::OFK_OpenMP))
140 Work(*C.getSingleOffloadToolChain<Action::OFK_Host>());
141
David L. Jonesf561aba2017-03-08 01:02:16 +0000142 //
143 // TODO: Add support for other offloading programming models here.
144 //
145}
146
147/// This is a helper function for validating the optional refinement step
148/// parameter in reciprocal argument strings. Return false if there is an error
149/// parsing the refinement step. Otherwise, return true and set the Position
150/// of the refinement step in the input string.
151static bool getRefinementStep(StringRef In, const Driver &D,
152 const Arg &A, size_t &Position) {
153 const char RefinementStepToken = ':';
154 Position = In.find(RefinementStepToken);
155 if (Position != StringRef::npos) {
156 StringRef Option = A.getOption().getName();
157 StringRef RefStep = In.substr(Position + 1);
158 // Allow exactly one numeric character for the additional refinement
159 // step parameter. This is reasonable for all currently-supported
160 // operations and architectures because we would expect that a larger value
161 // of refinement steps would cause the estimate "optimization" to
162 // under-perform the native operation. Also, if the estimate does not
163 // converge quickly, it probably will not ever converge, so further
164 // refinement steps will not produce a better answer.
165 if (RefStep.size() != 1) {
166 D.Diag(diag::err_drv_invalid_value) << Option << RefStep;
167 return false;
168 }
169 char RefStepChar = RefStep[0];
170 if (RefStepChar < '0' || RefStepChar > '9') {
171 D.Diag(diag::err_drv_invalid_value) << Option << RefStep;
172 return false;
173 }
174 }
175 return true;
176}
177
178/// The -mrecip flag requires processing of many optional parameters.
179static void ParseMRecip(const Driver &D, const ArgList &Args,
180 ArgStringList &OutStrings) {
181 StringRef DisabledPrefixIn = "!";
182 StringRef DisabledPrefixOut = "!";
183 StringRef EnabledPrefixOut = "";
184 StringRef Out = "-mrecip=";
185
186 Arg *A = Args.getLastArg(options::OPT_mrecip, options::OPT_mrecip_EQ);
187 if (!A)
188 return;
189
190 unsigned NumOptions = A->getNumValues();
191 if (NumOptions == 0) {
192 // No option is the same as "all".
193 OutStrings.push_back(Args.MakeArgString(Out + "all"));
194 return;
195 }
196
197 // Pass through "all", "none", or "default" with an optional refinement step.
198 if (NumOptions == 1) {
199 StringRef Val = A->getValue(0);
200 size_t RefStepLoc;
201 if (!getRefinementStep(Val, D, *A, RefStepLoc))
202 return;
203 StringRef ValBase = Val.slice(0, RefStepLoc);
204 if (ValBase == "all" || ValBase == "none" || ValBase == "default") {
205 OutStrings.push_back(Args.MakeArgString(Out + Val));
206 return;
207 }
208 }
209
210 // Each reciprocal type may be enabled or disabled individually.
211 // Check each input value for validity, concatenate them all back together,
212 // and pass through.
213
214 llvm::StringMap<bool> OptionStrings;
215 OptionStrings.insert(std::make_pair("divd", false));
216 OptionStrings.insert(std::make_pair("divf", false));
217 OptionStrings.insert(std::make_pair("vec-divd", false));
218 OptionStrings.insert(std::make_pair("vec-divf", false));
219 OptionStrings.insert(std::make_pair("sqrtd", false));
220 OptionStrings.insert(std::make_pair("sqrtf", false));
221 OptionStrings.insert(std::make_pair("vec-sqrtd", false));
222 OptionStrings.insert(std::make_pair("vec-sqrtf", false));
223
224 for (unsigned i = 0; i != NumOptions; ++i) {
225 StringRef Val = A->getValue(i);
226
227 bool IsDisabled = Val.startswith(DisabledPrefixIn);
228 // Ignore the disablement token for string matching.
229 if (IsDisabled)
230 Val = Val.substr(1);
231
232 size_t RefStep;
233 if (!getRefinementStep(Val, D, *A, RefStep))
234 return;
235
236 StringRef ValBase = Val.slice(0, RefStep);
237 llvm::StringMap<bool>::iterator OptionIter = OptionStrings.find(ValBase);
238 if (OptionIter == OptionStrings.end()) {
239 // Try again specifying float suffix.
240 OptionIter = OptionStrings.find(ValBase.str() + 'f');
241 if (OptionIter == OptionStrings.end()) {
242 // The input name did not match any known option string.
243 D.Diag(diag::err_drv_unknown_argument) << Val;
244 return;
245 }
246 // The option was specified without a float or double suffix.
247 // Make sure that the double entry was not already specified.
248 // The float entry will be checked below.
249 if (OptionStrings[ValBase.str() + 'd']) {
250 D.Diag(diag::err_drv_invalid_value) << A->getOption().getName() << Val;
251 return;
252 }
253 }
254
255 if (OptionIter->second == true) {
256 // Duplicate option specified.
257 D.Diag(diag::err_drv_invalid_value) << A->getOption().getName() << Val;
258 return;
259 }
260
261 // Mark the matched option as found. Do not allow duplicate specifiers.
262 OptionIter->second = true;
263
264 // If the precision was not specified, also mark the double entry as found.
265 if (ValBase.back() != 'f' && ValBase.back() != 'd')
266 OptionStrings[ValBase.str() + 'd'] = true;
267
268 // Build the output string.
269 StringRef Prefix = IsDisabled ? DisabledPrefixOut : EnabledPrefixOut;
270 Out = Args.MakeArgString(Out + Prefix + Val);
271 if (i != NumOptions - 1)
272 Out = Args.MakeArgString(Out + ",");
273 }
274
275 OutStrings.push_back(Args.MakeArgString(Out));
276}
277
Craig Topper9a724aa2017-12-11 21:09:19 +0000278/// The -mprefer-vector-width option accepts either a positive integer
279/// or the string "none".
280static void ParseMPreferVectorWidth(const Driver &D, const ArgList &Args,
281 ArgStringList &CmdArgs) {
282 Arg *A = Args.getLastArg(options::OPT_mprefer_vector_width_EQ);
283 if (!A)
284 return;
285
286 StringRef Value = A->getValue();
287 if (Value == "none") {
288 CmdArgs.push_back("-mprefer-vector-width=none");
289 } else {
290 unsigned Width;
291 if (Value.getAsInteger(10, Width)) {
292 D.Diag(diag::err_drv_invalid_value) << A->getOption().getName() << Value;
293 return;
294 }
295 CmdArgs.push_back(Args.MakeArgString("-mprefer-vector-width=" + Value));
296 }
297}
298
David L. Jonesf561aba2017-03-08 01:02:16 +0000299static void getWebAssemblyTargetFeatures(const ArgList &Args,
300 std::vector<StringRef> &Features) {
301 handleTargetFeaturesGroup(Args, Features, options::OPT_m_wasm_Features_Group);
302}
303
David L. Jonesf561aba2017-03-08 01:02:16 +0000304static void getTargetFeatures(const ToolChain &TC, const llvm::Triple &Triple,
305 const ArgList &Args, ArgStringList &CmdArgs,
306 bool ForAS) {
307 const Driver &D = TC.getDriver();
308 std::vector<StringRef> Features;
309 switch (Triple.getArch()) {
310 default:
311 break;
312 case llvm::Triple::mips:
313 case llvm::Triple::mipsel:
314 case llvm::Triple::mips64:
315 case llvm::Triple::mips64el:
316 mips::getMIPSTargetFeatures(D, Triple, Args, Features);
317 break;
318
319 case llvm::Triple::arm:
320 case llvm::Triple::armeb:
321 case llvm::Triple::thumb:
322 case llvm::Triple::thumbeb:
323 arm::getARMTargetFeatures(TC, Triple, Args, CmdArgs, Features, ForAS);
324 break;
325
326 case llvm::Triple::ppc:
327 case llvm::Triple::ppc64:
328 case llvm::Triple::ppc64le:
329 ppc::getPPCTargetFeatures(D, Triple, Args, Features);
330 break;
Alex Bradbury71f45452018-01-11 13:36:56 +0000331 case llvm::Triple::riscv32:
332 case llvm::Triple::riscv64:
333 riscv::getRISCVTargetFeatures(D, Args, Features);
334 break;
David L. Jonesf561aba2017-03-08 01:02:16 +0000335 case llvm::Triple::systemz:
336 systemz::getSystemZTargetFeatures(Args, Features);
337 break;
338 case llvm::Triple::aarch64:
339 case llvm::Triple::aarch64_be:
340 aarch64::getAArch64TargetFeatures(D, Args, Features);
341 break;
342 case llvm::Triple::x86:
343 case llvm::Triple::x86_64:
344 x86::getX86TargetFeatures(D, Triple, Args, Features);
345 break;
346 case llvm::Triple::hexagon:
Sumanth Gundapaneni57098f52017-10-18 18:10:13 +0000347 hexagon::getHexagonTargetFeatures(D, Args, Features);
David L. Jonesf561aba2017-03-08 01:02:16 +0000348 break;
349 case llvm::Triple::wasm32:
350 case llvm::Triple::wasm64:
351 getWebAssemblyTargetFeatures(Args, Features);
352 break;
353 case llvm::Triple::sparc:
354 case llvm::Triple::sparcel:
355 case llvm::Triple::sparcv9:
356 sparc::getSparcTargetFeatures(D, Args, Features);
357 break;
358 case llvm::Triple::r600:
359 case llvm::Triple::amdgcn:
Konstantin Zhuravlyov8914a6d2017-11-10 19:09:57 +0000360 amdgpu::getAMDGPUTargetFeatures(D, Args, Features);
David L. Jonesf561aba2017-03-08 01:02:16 +0000361 break;
362 }
363
364 // Find the last of each feature.
365 llvm::StringMap<unsigned> LastOpt;
366 for (unsigned I = 0, N = Features.size(); I < N; ++I) {
367 StringRef Name = Features[I];
368 assert(Name[0] == '-' || Name[0] == '+');
369 LastOpt[Name.drop_front(1)] = I;
370 }
371
372 for (unsigned I = 0, N = Features.size(); I < N; ++I) {
373 // If this feature was overridden, ignore it.
374 StringRef Name = Features[I];
375 llvm::StringMap<unsigned>::iterator LastI = LastOpt.find(Name.drop_front(1));
376 assert(LastI != LastOpt.end());
377 unsigned Last = LastI->second;
378 if (Last != I)
379 continue;
380
381 CmdArgs.push_back("-target-feature");
382 CmdArgs.push_back(Name.data());
383 }
384}
385
386static bool
387shouldUseExceptionTablesForObjCExceptions(const ObjCRuntime &runtime,
388 const llvm::Triple &Triple) {
389 // We use the zero-cost exception tables for Objective-C if the non-fragile
390 // ABI is enabled or when compiling for x86_64 and ARM on Snow Leopard and
391 // later.
392 if (runtime.isNonFragile())
393 return true;
394
395 if (!Triple.isMacOSX())
396 return false;
397
398 return (!Triple.isMacOSXVersionLT(10, 5) &&
399 (Triple.getArch() == llvm::Triple::x86_64 ||
400 Triple.getArch() == llvm::Triple::arm));
401}
402
403/// Adds exception related arguments to the driver command arguments. There's a
404/// master flag, -fexceptions and also language specific flags to enable/disable
405/// C++ and Objective-C exceptions. This makes it possible to for example
406/// disable C++ exceptions but enable Objective-C exceptions.
407static void addExceptionArgs(const ArgList &Args, types::ID InputType,
408 const ToolChain &TC, bool KernelOrKext,
409 const ObjCRuntime &objcRuntime,
410 ArgStringList &CmdArgs) {
411 const Driver &D = TC.getDriver();
412 const llvm::Triple &Triple = TC.getTriple();
413
414 if (KernelOrKext) {
415 // -mkernel and -fapple-kext imply no exceptions, so claim exception related
416 // arguments now to avoid warnings about unused arguments.
417 Args.ClaimAllArgs(options::OPT_fexceptions);
418 Args.ClaimAllArgs(options::OPT_fno_exceptions);
419 Args.ClaimAllArgs(options::OPT_fobjc_exceptions);
420 Args.ClaimAllArgs(options::OPT_fno_objc_exceptions);
421 Args.ClaimAllArgs(options::OPT_fcxx_exceptions);
422 Args.ClaimAllArgs(options::OPT_fno_cxx_exceptions);
423 return;
424 }
425
426 // See if the user explicitly enabled exceptions.
427 bool EH = Args.hasFlag(options::OPT_fexceptions, options::OPT_fno_exceptions,
428 false);
429
430 // Obj-C exceptions are enabled by default, regardless of -fexceptions. This
431 // is not necessarily sensible, but follows GCC.
432 if (types::isObjC(InputType) &&
433 Args.hasFlag(options::OPT_fobjc_exceptions,
434 options::OPT_fno_objc_exceptions, true)) {
435 CmdArgs.push_back("-fobjc-exceptions");
436
437 EH |= shouldUseExceptionTablesForObjCExceptions(objcRuntime, Triple);
438 }
439
440 if (types::isCXX(InputType)) {
441 // Disable C++ EH by default on XCore and PS4.
442 bool CXXExceptionsEnabled =
443 Triple.getArch() != llvm::Triple::xcore && !Triple.isPS4CPU();
444 Arg *ExceptionArg = Args.getLastArg(
445 options::OPT_fcxx_exceptions, options::OPT_fno_cxx_exceptions,
446 options::OPT_fexceptions, options::OPT_fno_exceptions);
447 if (ExceptionArg)
448 CXXExceptionsEnabled =
449 ExceptionArg->getOption().matches(options::OPT_fcxx_exceptions) ||
450 ExceptionArg->getOption().matches(options::OPT_fexceptions);
451
452 if (CXXExceptionsEnabled) {
453 if (Triple.isPS4CPU()) {
454 ToolChain::RTTIMode RTTIMode = TC.getRTTIMode();
455 assert(ExceptionArg &&
456 "On the PS4 exceptions should only be enabled if passing "
457 "an argument");
458 if (RTTIMode == ToolChain::RM_DisabledExplicitly) {
459 const Arg *RTTIArg = TC.getRTTIArg();
460 assert(RTTIArg && "RTTI disabled explicitly but no RTTIArg!");
461 D.Diag(diag::err_drv_argument_not_allowed_with)
462 << RTTIArg->getAsString(Args) << ExceptionArg->getAsString(Args);
463 } else if (RTTIMode == ToolChain::RM_EnabledImplicitly)
464 D.Diag(diag::warn_drv_enabling_rtti_with_exceptions);
465 } else
466 assert(TC.getRTTIMode() != ToolChain::RM_DisabledImplicitly);
467
468 CmdArgs.push_back("-fcxx-exceptions");
469
470 EH = true;
471 }
472 }
473
474 if (EH)
475 CmdArgs.push_back("-fexceptions");
476}
477
478static bool ShouldDisableAutolink(const ArgList &Args, const ToolChain &TC) {
479 bool Default = true;
480 if (TC.getTriple().isOSDarwin()) {
481 // The native darwin assembler doesn't support the linker_option directives,
482 // so we disable them if we think the .s file will be passed to it.
483 Default = TC.useIntegratedAs();
484 }
485 return !Args.hasFlag(options::OPT_fautolink, options::OPT_fno_autolink,
486 Default);
487}
488
489static bool ShouldDisableDwarfDirectory(const ArgList &Args,
490 const ToolChain &TC) {
491 bool UseDwarfDirectory =
492 Args.hasFlag(options::OPT_fdwarf_directory_asm,
493 options::OPT_fno_dwarf_directory_asm, TC.useIntegratedAs());
494 return !UseDwarfDirectory;
495}
496
497// Convert an arg of the form "-gN" or "-ggdbN" or one of their aliases
498// to the corresponding DebugInfoKind.
499static codegenoptions::DebugInfoKind DebugLevelToInfoKind(const Arg &A) {
500 assert(A.getOption().matches(options::OPT_gN_Group) &&
501 "Not a -g option that specifies a debug-info level");
502 if (A.getOption().matches(options::OPT_g0) ||
503 A.getOption().matches(options::OPT_ggdb0))
504 return codegenoptions::NoDebugInfo;
505 if (A.getOption().matches(options::OPT_gline_tables_only) ||
506 A.getOption().matches(options::OPT_ggdb1))
507 return codegenoptions::DebugLineTablesOnly;
508 return codegenoptions::LimitedDebugInfo;
509}
510
511static bool mustUseNonLeafFramePointerForTarget(const llvm::Triple &Triple) {
512 switch (Triple.getArch()){
513 default:
514 return false;
515 case llvm::Triple::arm:
516 case llvm::Triple::thumb:
517 // ARM Darwin targets require a frame pointer to be always present to aid
518 // offline debugging via backtraces.
519 return Triple.isOSDarwin();
520 }
521}
522
523static bool useFramePointerForTargetByDefault(const ArgList &Args,
524 const llvm::Triple &Triple) {
525 switch (Triple.getArch()) {
526 case llvm::Triple::xcore:
527 case llvm::Triple::wasm32:
528 case llvm::Triple::wasm64:
529 // XCore never wants frame pointers, regardless of OS.
530 // WebAssembly never wants frame pointers.
531 return false;
532 default:
533 break;
534 }
535
536 if (Triple.isOSLinux() || Triple.getOS() == llvm::Triple::CloudABI) {
537 switch (Triple.getArch()) {
538 // Don't use a frame pointer on linux if optimizing for certain targets.
539 case llvm::Triple::mips64:
540 case llvm::Triple::mips64el:
541 case llvm::Triple::mips:
542 case llvm::Triple::mipsel:
543 case llvm::Triple::ppc:
544 case llvm::Triple::ppc64:
545 case llvm::Triple::ppc64le:
546 case llvm::Triple::systemz:
547 case llvm::Triple::x86:
548 case llvm::Triple::x86_64:
549 return !areOptimizationsEnabled(Args);
550 default:
551 return true;
552 }
553 }
554
Alex Bradbury71f45452018-01-11 13:36:56 +0000555 switch (Triple.getArch()) {
556 case llvm::Triple::riscv32:
557 case llvm::Triple::riscv64:
558 return !areOptimizationsEnabled(Args);
559 default:
560 break;
561 }
562
David L. Jonesf561aba2017-03-08 01:02:16 +0000563 if (Triple.isOSWindows()) {
564 switch (Triple.getArch()) {
565 case llvm::Triple::x86:
566 return !areOptimizationsEnabled(Args);
567 case llvm::Triple::x86_64:
568 return Triple.isOSBinFormatMachO();
569 case llvm::Triple::arm:
570 case llvm::Triple::thumb:
571 // Windows on ARM builds with FPO disabled to aid fast stack walking
572 return true;
573 default:
574 // All other supported Windows ISAs use xdata unwind information, so frame
575 // pointers are not generally useful.
576 return false;
577 }
578 }
579
580 return true;
581}
582
583static bool shouldUseFramePointer(const ArgList &Args,
584 const llvm::Triple &Triple) {
585 if (Arg *A = Args.getLastArg(options::OPT_fno_omit_frame_pointer,
586 options::OPT_fomit_frame_pointer))
587 return A->getOption().matches(options::OPT_fno_omit_frame_pointer) ||
588 mustUseNonLeafFramePointerForTarget(Triple);
589
590 if (Args.hasArg(options::OPT_pg))
591 return true;
592
593 return useFramePointerForTargetByDefault(Args, Triple);
594}
595
596static bool shouldUseLeafFramePointer(const ArgList &Args,
597 const llvm::Triple &Triple) {
598 if (Arg *A = Args.getLastArg(options::OPT_mno_omit_leaf_frame_pointer,
599 options::OPT_momit_leaf_frame_pointer))
600 return A->getOption().matches(options::OPT_mno_omit_leaf_frame_pointer);
601
602 if (Args.hasArg(options::OPT_pg))
603 return true;
604
605 if (Triple.isPS4CPU())
606 return false;
607
608 return useFramePointerForTargetByDefault(Args, Triple);
609}
610
611/// Add a CC1 option to specify the debug compilation directory.
612static void addDebugCompDirArg(const ArgList &Args, ArgStringList &CmdArgs) {
613 SmallString<128> cwd;
614 if (!llvm::sys::fs::current_path(cwd)) {
615 CmdArgs.push_back("-fdebug-compilation-dir");
616 CmdArgs.push_back(Args.MakeArgString(cwd));
617 }
618}
619
620/// \brief Vectorize at all optimization levels greater than 1 except for -Oz.
621/// For -Oz the loop vectorizer is disable, while the slp vectorizer is enabled.
622static bool shouldEnableVectorizerAtOLevel(const ArgList &Args, bool isSlpVec) {
623 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
624 if (A->getOption().matches(options::OPT_O4) ||
625 A->getOption().matches(options::OPT_Ofast))
626 return true;
627
628 if (A->getOption().matches(options::OPT_O0))
629 return false;
630
631 assert(A->getOption().matches(options::OPT_O) && "Must have a -O flag");
632
633 // Vectorize -Os.
634 StringRef S(A->getValue());
635 if (S == "s")
636 return true;
637
638 // Don't vectorize -Oz, unless it's the slp vectorizer.
639 if (S == "z")
640 return isSlpVec;
641
642 unsigned OptLevel = 0;
643 if (S.getAsInteger(10, OptLevel))
644 return false;
645
646 return OptLevel > 1;
647 }
648
649 return false;
650}
651
652/// Add -x lang to \p CmdArgs for \p Input.
653static void addDashXForInput(const ArgList &Args, const InputInfo &Input,
654 ArgStringList &CmdArgs) {
655 // When using -verify-pch, we don't want to provide the type
656 // 'precompiled-header' if it was inferred from the file extension
657 if (Args.hasArg(options::OPT_verify_pch) && Input.getType() == types::TY_PCH)
658 return;
659
660 CmdArgs.push_back("-x");
661 if (Args.hasArg(options::OPT_rewrite_objc))
662 CmdArgs.push_back(types::getTypeName(types::TY_PP_ObjCXX));
Richard Smith34e485f2017-04-18 21:55:37 +0000663 else {
664 // Map the driver type to the frontend type. This is mostly an identity
665 // mapping, except that the distinction between module interface units
666 // and other source files does not exist at the frontend layer.
667 const char *ClangType;
668 switch (Input.getType()) {
669 case types::TY_CXXModule:
670 ClangType = "c++";
671 break;
672 case types::TY_PP_CXXModule:
673 ClangType = "c++-cpp-output";
674 break;
675 default:
676 ClangType = types::getTypeName(Input.getType());
677 break;
678 }
679 CmdArgs.push_back(ClangType);
680 }
David L. Jonesf561aba2017-03-08 01:02:16 +0000681}
682
683static void appendUserToPath(SmallVectorImpl<char> &Result) {
684#ifdef LLVM_ON_UNIX
685 const char *Username = getenv("LOGNAME");
686#else
687 const char *Username = getenv("USERNAME");
688#endif
689 if (Username) {
690 // Validate that LoginName can be used in a path, and get its length.
691 size_t Len = 0;
692 for (const char *P = Username; *P; ++P, ++Len) {
693 if (!clang::isAlphanumeric(*P) && *P != '_') {
694 Username = nullptr;
695 break;
696 }
697 }
698
699 if (Username && Len > 0) {
700 Result.append(Username, Username + Len);
701 return;
702 }
703 }
704
705// Fallback to user id.
706#ifdef LLVM_ON_UNIX
707 std::string UID = llvm::utostr(getuid());
708#else
709 // FIXME: Windows seems to have an 'SID' that might work.
710 std::string UID = "9999";
711#endif
712 Result.append(UID.begin(), UID.end());
713}
714
715static void addPGOAndCoverageFlags(Compilation &C, const Driver &D,
716 const InputInfo &Output, const ArgList &Args,
717 ArgStringList &CmdArgs) {
718
719 auto *PGOGenerateArg = Args.getLastArg(options::OPT_fprofile_generate,
720 options::OPT_fprofile_generate_EQ,
721 options::OPT_fno_profile_generate);
722 if (PGOGenerateArg &&
723 PGOGenerateArg->getOption().matches(options::OPT_fno_profile_generate))
724 PGOGenerateArg = nullptr;
725
726 auto *ProfileGenerateArg = Args.getLastArg(
727 options::OPT_fprofile_instr_generate,
728 options::OPT_fprofile_instr_generate_EQ,
729 options::OPT_fno_profile_instr_generate);
730 if (ProfileGenerateArg &&
731 ProfileGenerateArg->getOption().matches(
732 options::OPT_fno_profile_instr_generate))
733 ProfileGenerateArg = nullptr;
734
735 if (PGOGenerateArg && ProfileGenerateArg)
736 D.Diag(diag::err_drv_argument_not_allowed_with)
737 << PGOGenerateArg->getSpelling() << ProfileGenerateArg->getSpelling();
738
739 auto *ProfileUseArg = getLastProfileUseArg(Args);
740
741 if (PGOGenerateArg && ProfileUseArg)
742 D.Diag(diag::err_drv_argument_not_allowed_with)
743 << ProfileUseArg->getSpelling() << PGOGenerateArg->getSpelling();
744
745 if (ProfileGenerateArg && ProfileUseArg)
746 D.Diag(diag::err_drv_argument_not_allowed_with)
747 << ProfileGenerateArg->getSpelling() << ProfileUseArg->getSpelling();
748
749 if (ProfileGenerateArg) {
750 if (ProfileGenerateArg->getOption().matches(
751 options::OPT_fprofile_instr_generate_EQ))
752 CmdArgs.push_back(Args.MakeArgString(Twine("-fprofile-instrument-path=") +
753 ProfileGenerateArg->getValue()));
754 // The default is to use Clang Instrumentation.
755 CmdArgs.push_back("-fprofile-instrument=clang");
756 }
757
758 if (PGOGenerateArg) {
759 CmdArgs.push_back("-fprofile-instrument=llvm");
760 if (PGOGenerateArg->getOption().matches(
761 options::OPT_fprofile_generate_EQ)) {
762 SmallString<128> Path(PGOGenerateArg->getValue());
763 llvm::sys::path::append(Path, "default_%m.profraw");
764 CmdArgs.push_back(
765 Args.MakeArgString(Twine("-fprofile-instrument-path=") + Path));
766 }
767 }
768
769 if (ProfileUseArg) {
770 if (ProfileUseArg->getOption().matches(options::OPT_fprofile_instr_use_EQ))
771 CmdArgs.push_back(Args.MakeArgString(
772 Twine("-fprofile-instrument-use-path=") + ProfileUseArg->getValue()));
773 else if ((ProfileUseArg->getOption().matches(
774 options::OPT_fprofile_use_EQ) ||
775 ProfileUseArg->getOption().matches(
776 options::OPT_fprofile_instr_use))) {
777 SmallString<128> Path(
778 ProfileUseArg->getNumValues() == 0 ? "" : ProfileUseArg->getValue());
779 if (Path.empty() || llvm::sys::fs::is_directory(Path))
780 llvm::sys::path::append(Path, "default.profdata");
781 CmdArgs.push_back(
782 Args.MakeArgString(Twine("-fprofile-instrument-use-path=") + Path));
783 }
784 }
785
786 if (Args.hasArg(options::OPT_ftest_coverage) ||
787 Args.hasArg(options::OPT_coverage))
788 CmdArgs.push_back("-femit-coverage-notes");
789 if (Args.hasFlag(options::OPT_fprofile_arcs, options::OPT_fno_profile_arcs,
790 false) ||
791 Args.hasArg(options::OPT_coverage))
792 CmdArgs.push_back("-femit-coverage-data");
793
794 if (Args.hasFlag(options::OPT_fcoverage_mapping,
Vedant Kumar99b31292017-06-28 01:56:07 +0000795 options::OPT_fno_coverage_mapping, false)) {
796 if (!ProfileGenerateArg)
797 D.Diag(clang::diag::err_drv_argument_only_allowed_with)
798 << "-fcoverage-mapping"
799 << "-fprofile-instr-generate";
David L. Jonesf561aba2017-03-08 01:02:16 +0000800
David L. Jonesf561aba2017-03-08 01:02:16 +0000801 CmdArgs.push_back("-fcoverage-mapping");
Vedant Kumar99b31292017-06-28 01:56:07 +0000802 }
David L. Jonesf561aba2017-03-08 01:02:16 +0000803
804 if (C.getArgs().hasArg(options::OPT_c) ||
805 C.getArgs().hasArg(options::OPT_S)) {
806 if (Output.isFilename()) {
807 CmdArgs.push_back("-coverage-notes-file");
808 SmallString<128> OutputFilename;
809 if (Arg *FinalOutput = C.getArgs().getLastArg(options::OPT_o))
810 OutputFilename = FinalOutput->getValue();
811 else
812 OutputFilename = llvm::sys::path::filename(Output.getBaseInput());
813 SmallString<128> CoverageFilename = OutputFilename;
814 if (llvm::sys::path::is_relative(CoverageFilename)) {
815 SmallString<128> Pwd;
816 if (!llvm::sys::fs::current_path(Pwd)) {
817 llvm::sys::path::append(Pwd, CoverageFilename);
818 CoverageFilename.swap(Pwd);
819 }
820 }
821 llvm::sys::path::replace_extension(CoverageFilename, "gcno");
822 CmdArgs.push_back(Args.MakeArgString(CoverageFilename));
823
824 // Leave -fprofile-dir= an unused argument unless .gcda emission is
825 // enabled. To be polite, with '-fprofile-arcs -fno-profile-arcs' consider
826 // the flag used. There is no -fno-profile-dir, so the user has no
827 // targeted way to suppress the warning.
828 if (Args.hasArg(options::OPT_fprofile_arcs) ||
829 Args.hasArg(options::OPT_coverage)) {
830 CmdArgs.push_back("-coverage-data-file");
831 if (Arg *FProfileDir = Args.getLastArg(options::OPT_fprofile_dir)) {
832 CoverageFilename = FProfileDir->getValue();
833 llvm::sys::path::append(CoverageFilename, OutputFilename);
834 }
835 llvm::sys::path::replace_extension(CoverageFilename, "gcda");
836 CmdArgs.push_back(Args.MakeArgString(CoverageFilename));
837 }
838 }
839 }
840}
841
842/// \brief Check whether the given input tree contains any compilation actions.
843static bool ContainsCompileAction(const Action *A) {
844 if (isa<CompileJobAction>(A) || isa<BackendJobAction>(A))
845 return true;
846
847 for (const auto &AI : A->inputs())
848 if (ContainsCompileAction(AI))
849 return true;
850
851 return false;
852}
853
854/// \brief Check if -relax-all should be passed to the internal assembler.
855/// This is done by default when compiling non-assembler source with -O0.
856static bool UseRelaxAll(Compilation &C, const ArgList &Args) {
857 bool RelaxDefault = true;
858
859 if (Arg *A = Args.getLastArg(options::OPT_O_Group))
860 RelaxDefault = A->getOption().matches(options::OPT_O0);
861
862 if (RelaxDefault) {
863 RelaxDefault = false;
864 for (const auto &Act : C.getActions()) {
865 if (ContainsCompileAction(Act)) {
866 RelaxDefault = true;
867 break;
868 }
869 }
870 }
871
872 return Args.hasFlag(options::OPT_mrelax_all, options::OPT_mno_relax_all,
873 RelaxDefault);
874}
875
876// Extract the integer N from a string spelled "-dwarf-N", returning 0
877// on mismatch. The StringRef input (rather than an Arg) allows
878// for use by the "-Xassembler" option parser.
879static unsigned DwarfVersionNum(StringRef ArgValue) {
880 return llvm::StringSwitch<unsigned>(ArgValue)
881 .Case("-gdwarf-2", 2)
882 .Case("-gdwarf-3", 3)
883 .Case("-gdwarf-4", 4)
884 .Case("-gdwarf-5", 5)
885 .Default(0);
886}
887
888static void RenderDebugEnablingArgs(const ArgList &Args, ArgStringList &CmdArgs,
889 codegenoptions::DebugInfoKind DebugInfoKind,
890 unsigned DwarfVersion,
891 llvm::DebuggerKind DebuggerTuning) {
892 switch (DebugInfoKind) {
893 case codegenoptions::DebugLineTablesOnly:
894 CmdArgs.push_back("-debug-info-kind=line-tables-only");
895 break;
896 case codegenoptions::LimitedDebugInfo:
897 CmdArgs.push_back("-debug-info-kind=limited");
898 break;
899 case codegenoptions::FullDebugInfo:
900 CmdArgs.push_back("-debug-info-kind=standalone");
901 break;
902 default:
903 break;
904 }
905 if (DwarfVersion > 0)
906 CmdArgs.push_back(
907 Args.MakeArgString("-dwarf-version=" + Twine(DwarfVersion)));
908 switch (DebuggerTuning) {
909 case llvm::DebuggerKind::GDB:
910 CmdArgs.push_back("-debugger-tuning=gdb");
911 break;
912 case llvm::DebuggerKind::LLDB:
913 CmdArgs.push_back("-debugger-tuning=lldb");
914 break;
915 case llvm::DebuggerKind::SCE:
916 CmdArgs.push_back("-debugger-tuning=sce");
917 break;
918 default:
919 break;
920 }
921}
922
Saleem Abdulrasoold064e912017-06-23 15:34:16 +0000923static void RenderDebugInfoCompressionArgs(const ArgList &Args,
924 ArgStringList &CmdArgs,
925 const Driver &D) {
926 const Arg *A = Args.getLastArg(options::OPT_gz, options::OPT_gz_EQ);
927 if (!A)
928 return;
929
930 if (A->getOption().getID() == options::OPT_gz) {
931 if (llvm::zlib::isAvailable())
932 CmdArgs.push_back("-compress-debug-sections");
933 else
934 D.Diag(diag::warn_debug_compression_unavailable);
935 return;
936 }
937
938 StringRef Value = A->getValue();
939 if (Value == "none") {
940 CmdArgs.push_back("-compress-debug-sections=none");
941 } else if (Value == "zlib" || Value == "zlib-gnu") {
942 if (llvm::zlib::isAvailable()) {
943 CmdArgs.push_back(
944 Args.MakeArgString("-compress-debug-sections=" + Twine(Value)));
945 } else {
946 D.Diag(diag::warn_debug_compression_unavailable);
947 }
948 } else {
949 D.Diag(diag::err_drv_unsupported_option_argument)
950 << A->getOption().getName() << Value;
951 }
952}
953
David L. Jonesf561aba2017-03-08 01:02:16 +0000954static const char *RelocationModelName(llvm::Reloc::Model Model) {
955 switch (Model) {
956 case llvm::Reloc::Static:
957 return "static";
958 case llvm::Reloc::PIC_:
959 return "pic";
960 case llvm::Reloc::DynamicNoPIC:
961 return "dynamic-no-pic";
962 case llvm::Reloc::ROPI:
963 return "ropi";
964 case llvm::Reloc::RWPI:
965 return "rwpi";
966 case llvm::Reloc::ROPI_RWPI:
967 return "ropi-rwpi";
968 }
969 llvm_unreachable("Unknown Reloc::Model kind");
970}
971
972void Clang::AddPreprocessingOptions(Compilation &C, const JobAction &JA,
973 const Driver &D, const ArgList &Args,
974 ArgStringList &CmdArgs,
975 const InputInfo &Output,
976 const InputInfoList &Inputs) const {
977 Arg *A;
978 const bool IsIAMCU = getToolChain().getTriple().isOSIAMCU();
979
980 CheckPreprocessingOptions(D, Args);
981
982 Args.AddLastArg(CmdArgs, options::OPT_C);
983 Args.AddLastArg(CmdArgs, options::OPT_CC);
984
985 // Handle dependency file generation.
986 if ((A = Args.getLastArg(options::OPT_M, options::OPT_MM)) ||
987 (A = Args.getLastArg(options::OPT_MD)) ||
988 (A = Args.getLastArg(options::OPT_MMD))) {
989 // Determine the output location.
990 const char *DepFile;
991 if (Arg *MF = Args.getLastArg(options::OPT_MF)) {
992 DepFile = MF->getValue();
993 C.addFailureResultFile(DepFile, &JA);
994 } else if (Output.getType() == types::TY_Dependencies) {
995 DepFile = Output.getFilename();
996 } else if (A->getOption().matches(options::OPT_M) ||
997 A->getOption().matches(options::OPT_MM)) {
998 DepFile = "-";
999 } else {
1000 DepFile = getDependencyFileName(Args, Inputs);
1001 C.addFailureResultFile(DepFile, &JA);
1002 }
1003 CmdArgs.push_back("-dependency-file");
1004 CmdArgs.push_back(DepFile);
1005
1006 // Add a default target if one wasn't specified.
1007 if (!Args.hasArg(options::OPT_MT) && !Args.hasArg(options::OPT_MQ)) {
1008 const char *DepTarget;
1009
1010 // If user provided -o, that is the dependency target, except
1011 // when we are only generating a dependency file.
1012 Arg *OutputOpt = Args.getLastArg(options::OPT_o);
1013 if (OutputOpt && Output.getType() != types::TY_Dependencies) {
1014 DepTarget = OutputOpt->getValue();
1015 } else {
1016 // Otherwise derive from the base input.
1017 //
1018 // FIXME: This should use the computed output file location.
1019 SmallString<128> P(Inputs[0].getBaseInput());
1020 llvm::sys::path::replace_extension(P, "o");
1021 DepTarget = Args.MakeArgString(llvm::sys::path::filename(P));
1022 }
1023
Yuka Takahashicdb53482017-06-16 16:01:13 +00001024 if (!A->getOption().matches(options::OPT_MD) && !A->getOption().matches(options::OPT_MMD)) {
1025 CmdArgs.push_back("-w");
1026 }
David L. Jonesf561aba2017-03-08 01:02:16 +00001027 CmdArgs.push_back("-MT");
1028 SmallString<128> Quoted;
1029 QuoteTarget(DepTarget, Quoted);
1030 CmdArgs.push_back(Args.MakeArgString(Quoted));
1031 }
1032
1033 if (A->getOption().matches(options::OPT_M) ||
1034 A->getOption().matches(options::OPT_MD))
1035 CmdArgs.push_back("-sys-header-deps");
1036 if ((isa<PrecompileJobAction>(JA) &&
1037 !Args.hasArg(options::OPT_fno_module_file_deps)) ||
1038 Args.hasArg(options::OPT_fmodule_file_deps))
1039 CmdArgs.push_back("-module-file-deps");
1040 }
1041
1042 if (Args.hasArg(options::OPT_MG)) {
1043 if (!A || A->getOption().matches(options::OPT_MD) ||
1044 A->getOption().matches(options::OPT_MMD))
1045 D.Diag(diag::err_drv_mg_requires_m_or_mm);
1046 CmdArgs.push_back("-MG");
1047 }
1048
1049 Args.AddLastArg(CmdArgs, options::OPT_MP);
1050 Args.AddLastArg(CmdArgs, options::OPT_MV);
1051
1052 // Convert all -MQ <target> args to -MT <quoted target>
1053 for (const Arg *A : Args.filtered(options::OPT_MT, options::OPT_MQ)) {
1054 A->claim();
1055
1056 if (A->getOption().matches(options::OPT_MQ)) {
1057 CmdArgs.push_back("-MT");
1058 SmallString<128> Quoted;
1059 QuoteTarget(A->getValue(), Quoted);
1060 CmdArgs.push_back(Args.MakeArgString(Quoted));
1061
1062 // -MT flag - no change
1063 } else {
1064 A->render(Args, CmdArgs);
1065 }
1066 }
1067
1068 // Add offload include arguments specific for CUDA. This must happen before
1069 // we -I or -include anything else, because we must pick up the CUDA headers
1070 // from the particular CUDA installation, rather than from e.g.
1071 // /usr/local/include.
1072 if (JA.isOffloading(Action::OFK_Cuda))
1073 getToolChain().AddCudaIncludeArgs(Args, CmdArgs);
1074
1075 // Add -i* options, and automatically translate to
1076 // -include-pch/-include-pth for transparent PCH support. It's
1077 // wonky, but we include looking for .gch so we can support seamless
1078 // replacement into a build system already set up to be generating
1079 // .gch files.
1080 int YcIndex = -1, YuIndex = -1;
1081 {
1082 int AI = -1;
1083 const Arg *YcArg = Args.getLastArg(options::OPT__SLASH_Yc);
1084 const Arg *YuArg = Args.getLastArg(options::OPT__SLASH_Yu);
1085 for (const Arg *A : Args.filtered(options::OPT_clang_i_Group)) {
1086 // Walk the whole i_Group and skip non "-include" flags so that the index
1087 // here matches the index in the next loop below.
1088 ++AI;
1089 if (!A->getOption().matches(options::OPT_include))
1090 continue;
1091 if (YcArg && strcmp(A->getValue(), YcArg->getValue()) == 0)
1092 YcIndex = AI;
1093 if (YuArg && strcmp(A->getValue(), YuArg->getValue()) == 0)
1094 YuIndex = AI;
1095 }
1096 }
1097 if (isa<PrecompileJobAction>(JA) && YcIndex != -1) {
1098 Driver::InputList Inputs;
1099 D.BuildInputs(getToolChain(), C.getArgs(), Inputs);
1100 assert(Inputs.size() == 1 && "Need one input when building pch");
1101 CmdArgs.push_back(Args.MakeArgString(Twine("-find-pch-source=") +
1102 Inputs[0].second->getValue()));
1103 }
1104
1105 bool RenderedImplicitInclude = false;
1106 int AI = -1;
1107 for (const Arg *A : Args.filtered(options::OPT_clang_i_Group)) {
1108 ++AI;
1109
1110 if (getToolChain().getDriver().IsCLMode() &&
1111 A->getOption().matches(options::OPT_include)) {
1112 // In clang-cl mode, /Ycfoo.h means that all code up to a foo.h
1113 // include is compiled into foo.h, and everything after goes into
1114 // the .obj file. /Yufoo.h means that all includes prior to and including
1115 // foo.h are completely skipped and replaced with a use of the pch file
1116 // for foo.h. (Each flag can have at most one value, multiple /Yc flags
1117 // just mean that the last one wins.) If /Yc and /Yu are both present
1118 // and refer to the same file, /Yc wins.
1119 // Note that OPT__SLASH_FI gets mapped to OPT_include.
1120 // FIXME: The code here assumes that /Yc and /Yu refer to the same file.
1121 // cl.exe seems to support both flags with different values, but that
1122 // seems strange (which flag does /Fp now refer to?), so don't implement
1123 // that until someone needs it.
1124 int PchIndex = YcIndex != -1 ? YcIndex : YuIndex;
1125 if (PchIndex != -1) {
1126 if (isa<PrecompileJobAction>(JA)) {
1127 // When building the pch, skip all includes after the pch.
1128 assert(YcIndex != -1 && PchIndex == YcIndex);
1129 if (AI >= YcIndex)
1130 continue;
1131 } else {
1132 // When using the pch, skip all includes prior to the pch.
1133 if (AI < PchIndex) {
1134 A->claim();
1135 continue;
1136 }
1137 if (AI == PchIndex) {
1138 A->claim();
1139 CmdArgs.push_back("-include-pch");
1140 CmdArgs.push_back(
1141 Args.MakeArgString(D.GetClPchPath(C, A->getValue())));
1142 continue;
1143 }
1144 }
1145 }
1146 } else if (A->getOption().matches(options::OPT_include)) {
1147 // Handling of gcc-style gch precompiled headers.
1148 bool IsFirstImplicitInclude = !RenderedImplicitInclude;
1149 RenderedImplicitInclude = true;
1150
1151 // Use PCH if the user requested it.
1152 bool UsePCH = D.CCCUsePCH;
1153
1154 bool FoundPTH = false;
1155 bool FoundPCH = false;
1156 SmallString<128> P(A->getValue());
1157 // We want the files to have a name like foo.h.pch. Add a dummy extension
1158 // so that replace_extension does the right thing.
1159 P += ".dummy";
1160 if (UsePCH) {
1161 llvm::sys::path::replace_extension(P, "pch");
1162 if (llvm::sys::fs::exists(P))
1163 FoundPCH = true;
1164 }
1165
1166 if (!FoundPCH) {
1167 llvm::sys::path::replace_extension(P, "pth");
1168 if (llvm::sys::fs::exists(P))
1169 FoundPTH = true;
1170 }
1171
1172 if (!FoundPCH && !FoundPTH) {
1173 llvm::sys::path::replace_extension(P, "gch");
1174 if (llvm::sys::fs::exists(P)) {
1175 FoundPCH = UsePCH;
1176 FoundPTH = !UsePCH;
1177 }
1178 }
1179
1180 if (FoundPCH || FoundPTH) {
1181 if (IsFirstImplicitInclude) {
1182 A->claim();
1183 if (UsePCH)
1184 CmdArgs.push_back("-include-pch");
1185 else
1186 CmdArgs.push_back("-include-pth");
1187 CmdArgs.push_back(Args.MakeArgString(P));
1188 continue;
1189 } else {
1190 // Ignore the PCH if not first on command line and emit warning.
1191 D.Diag(diag::warn_drv_pch_not_first_include) << P
1192 << A->getAsString(Args);
1193 }
1194 }
1195 } else if (A->getOption().matches(options::OPT_isystem_after)) {
1196 // Handling of paths which must come late. These entries are handled by
1197 // the toolchain itself after the resource dir is inserted in the right
1198 // search order.
1199 // Do not claim the argument so that the use of the argument does not
1200 // silently go unnoticed on toolchains which do not honour the option.
1201 continue;
1202 }
1203
1204 // Not translated, render as usual.
1205 A->claim();
1206 A->render(Args, CmdArgs);
1207 }
1208
1209 Args.AddAllArgs(CmdArgs,
1210 {options::OPT_D, options::OPT_U, options::OPT_I_Group,
1211 options::OPT_F, options::OPT_index_header_map});
1212
1213 // Add -Wp, and -Xpreprocessor if using the preprocessor.
1214
1215 // FIXME: There is a very unfortunate problem here, some troubled
1216 // souls abuse -Wp, to pass preprocessor options in gcc syntax. To
1217 // really support that we would have to parse and then translate
1218 // those options. :(
1219 Args.AddAllArgValues(CmdArgs, options::OPT_Wp_COMMA,
1220 options::OPT_Xpreprocessor);
1221
1222 // -I- is a deprecated GCC feature, reject it.
1223 if (Arg *A = Args.getLastArg(options::OPT_I_))
1224 D.Diag(diag::err_drv_I_dash_not_supported) << A->getAsString(Args);
1225
1226 // If we have a --sysroot, and don't have an explicit -isysroot flag, add an
1227 // -isysroot to the CC1 invocation.
1228 StringRef sysroot = C.getSysRoot();
1229 if (sysroot != "") {
1230 if (!Args.hasArg(options::OPT_isysroot)) {
1231 CmdArgs.push_back("-isysroot");
1232 CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
1233 }
1234 }
1235
1236 // Parse additional include paths from environment variables.
1237 // FIXME: We should probably sink the logic for handling these from the
1238 // frontend into the driver. It will allow deleting 4 otherwise unused flags.
1239 // CPATH - included following the user specified includes (but prior to
1240 // builtin and standard includes).
1241 addDirectoryList(Args, CmdArgs, "-I", "CPATH");
1242 // C_INCLUDE_PATH - system includes enabled when compiling C.
1243 addDirectoryList(Args, CmdArgs, "-c-isystem", "C_INCLUDE_PATH");
1244 // CPLUS_INCLUDE_PATH - system includes enabled when compiling C++.
1245 addDirectoryList(Args, CmdArgs, "-cxx-isystem", "CPLUS_INCLUDE_PATH");
1246 // OBJC_INCLUDE_PATH - system includes enabled when compiling ObjC.
1247 addDirectoryList(Args, CmdArgs, "-objc-isystem", "OBJC_INCLUDE_PATH");
1248 // OBJCPLUS_INCLUDE_PATH - system includes enabled when compiling ObjC++.
1249 addDirectoryList(Args, CmdArgs, "-objcxx-isystem", "OBJCPLUS_INCLUDE_PATH");
1250
1251 // While adding the include arguments, we also attempt to retrieve the
1252 // arguments of related offloading toolchains or arguments that are specific
1253 // of an offloading programming model.
1254
1255 // Add C++ include arguments, if needed.
1256 if (types::isCXX(Inputs[0].getType()))
1257 forAllAssociatedToolChains(C, JA, getToolChain(),
1258 [&Args, &CmdArgs](const ToolChain &TC) {
1259 TC.AddClangCXXStdlibIncludeArgs(Args, CmdArgs);
1260 });
1261
1262 // Add system include arguments for all targets but IAMCU.
1263 if (!IsIAMCU)
1264 forAllAssociatedToolChains(C, JA, getToolChain(),
1265 [&Args, &CmdArgs](const ToolChain &TC) {
1266 TC.AddClangSystemIncludeArgs(Args, CmdArgs);
1267 });
1268 else {
1269 // For IAMCU add special include arguments.
1270 getToolChain().AddIAMCUIncludeArgs(Args, CmdArgs);
1271 }
1272}
1273
1274// FIXME: Move to target hook.
1275static bool isSignedCharDefault(const llvm::Triple &Triple) {
1276 switch (Triple.getArch()) {
1277 default:
1278 return true;
1279
1280 case llvm::Triple::aarch64:
1281 case llvm::Triple::aarch64_be:
1282 case llvm::Triple::arm:
1283 case llvm::Triple::armeb:
1284 case llvm::Triple::thumb:
1285 case llvm::Triple::thumbeb:
1286 if (Triple.isOSDarwin() || Triple.isOSWindows())
1287 return true;
1288 return false;
1289
1290 case llvm::Triple::ppc:
1291 case llvm::Triple::ppc64:
1292 if (Triple.isOSDarwin())
1293 return true;
1294 return false;
1295
1296 case llvm::Triple::hexagon:
1297 case llvm::Triple::ppc64le:
Alex Bradbury71f45452018-01-11 13:36:56 +00001298 case llvm::Triple::riscv32:
1299 case llvm::Triple::riscv64:
David L. Jonesf561aba2017-03-08 01:02:16 +00001300 case llvm::Triple::systemz:
1301 case llvm::Triple::xcore:
1302 return false;
1303 }
1304}
1305
1306static bool isNoCommonDefault(const llvm::Triple &Triple) {
1307 switch (Triple.getArch()) {
1308 default:
1309 return false;
1310
1311 case llvm::Triple::xcore:
1312 case llvm::Triple::wasm32:
1313 case llvm::Triple::wasm64:
1314 return true;
1315 }
1316}
1317
1318void Clang::AddARMTargetArgs(const llvm::Triple &Triple, const ArgList &Args,
1319 ArgStringList &CmdArgs, bool KernelOrKext) const {
1320 // Select the ABI to use.
1321 // FIXME: Support -meabi.
1322 // FIXME: Parts of this are duplicated in the backend, unify this somehow.
1323 const char *ABIName = nullptr;
Eric Christopher53b2cb72017-06-30 00:03:56 +00001324 if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ))
David L. Jonesf561aba2017-03-08 01:02:16 +00001325 ABIName = A->getValue();
Eric Christopher53b2cb72017-06-30 00:03:56 +00001326 else {
Daniel Jasperd27538a2017-06-30 08:02:37 +00001327 std::string CPU = getCPUName(Args, Triple, /*FromAs*/ false);
Eric Christopher53b2cb72017-06-30 00:03:56 +00001328 ABIName = llvm::ARM::computeDefaultTargetABI(Triple, CPU).data();
David L. Jonesf561aba2017-03-08 01:02:16 +00001329 }
Eric Christopher53b2cb72017-06-30 00:03:56 +00001330
David L. Jonesf561aba2017-03-08 01:02:16 +00001331 CmdArgs.push_back("-target-abi");
1332 CmdArgs.push_back(ABIName);
1333
1334 // Determine floating point ABI from the options & target defaults.
1335 arm::FloatABI ABI = arm::getARMFloatABI(getToolChain(), Args);
1336 if (ABI == arm::FloatABI::Soft) {
1337 // Floating point operations and argument passing are soft.
1338 // FIXME: This changes CPP defines, we need -target-soft-float.
1339 CmdArgs.push_back("-msoft-float");
1340 CmdArgs.push_back("-mfloat-abi");
1341 CmdArgs.push_back("soft");
1342 } else if (ABI == arm::FloatABI::SoftFP) {
1343 // Floating point operations are hard, but argument passing is soft.
1344 CmdArgs.push_back("-mfloat-abi");
1345 CmdArgs.push_back("soft");
1346 } else {
1347 // Floating point operations and argument passing are hard.
1348 assert(ABI == arm::FloatABI::Hard && "Invalid float abi!");
1349 CmdArgs.push_back("-mfloat-abi");
1350 CmdArgs.push_back("hard");
1351 }
1352
1353 // Forward the -mglobal-merge option for explicit control over the pass.
1354 if (Arg *A = Args.getLastArg(options::OPT_mglobal_merge,
1355 options::OPT_mno_global_merge)) {
1356 CmdArgs.push_back("-backend-option");
1357 if (A->getOption().matches(options::OPT_mno_global_merge))
1358 CmdArgs.push_back("-arm-global-merge=false");
1359 else
1360 CmdArgs.push_back("-arm-global-merge=true");
1361 }
1362
1363 if (!Args.hasFlag(options::OPT_mimplicit_float,
1364 options::OPT_mno_implicit_float, true))
1365 CmdArgs.push_back("-no-implicit-float");
1366}
1367
Saleem Abdulrasool6c3ed7b2017-09-03 04:47:00 +00001368void Clang::RenderTargetOptions(const llvm::Triple &EffectiveTriple,
1369 const ArgList &Args, bool KernelOrKext,
1370 ArgStringList &CmdArgs) const {
1371 const ToolChain &TC = getToolChain();
1372
1373 // Add the target features
1374 getTargetFeatures(TC, EffectiveTriple, Args, CmdArgs, false);
1375
1376 // Add target specific flags.
1377 switch (TC.getArch()) {
1378 default:
1379 break;
1380
1381 case llvm::Triple::arm:
1382 case llvm::Triple::armeb:
1383 case llvm::Triple::thumb:
1384 case llvm::Triple::thumbeb:
1385 // Use the effective triple, which takes into account the deployment target.
1386 AddARMTargetArgs(EffectiveTriple, Args, CmdArgs, KernelOrKext);
1387 CmdArgs.push_back("-fallow-half-arguments-and-returns");
1388 break;
1389
1390 case llvm::Triple::aarch64:
1391 case llvm::Triple::aarch64_be:
1392 AddAArch64TargetArgs(Args, CmdArgs);
1393 CmdArgs.push_back("-fallow-half-arguments-and-returns");
1394 break;
1395
1396 case llvm::Triple::mips:
1397 case llvm::Triple::mipsel:
1398 case llvm::Triple::mips64:
1399 case llvm::Triple::mips64el:
1400 AddMIPSTargetArgs(Args, CmdArgs);
1401 break;
1402
1403 case llvm::Triple::ppc:
1404 case llvm::Triple::ppc64:
1405 case llvm::Triple::ppc64le:
1406 AddPPCTargetArgs(Args, CmdArgs);
1407 break;
1408
Alex Bradbury71f45452018-01-11 13:36:56 +00001409 case llvm::Triple::riscv32:
1410 case llvm::Triple::riscv64:
1411 AddRISCVTargetArgs(Args, CmdArgs);
1412 break;
1413
Saleem Abdulrasool6c3ed7b2017-09-03 04:47:00 +00001414 case llvm::Triple::sparc:
1415 case llvm::Triple::sparcel:
1416 case llvm::Triple::sparcv9:
1417 AddSparcTargetArgs(Args, CmdArgs);
1418 break;
1419
1420 case llvm::Triple::systemz:
1421 AddSystemZTargetArgs(Args, CmdArgs);
1422 break;
1423
1424 case llvm::Triple::x86:
1425 case llvm::Triple::x86_64:
1426 AddX86TargetArgs(Args, CmdArgs);
1427 break;
1428
1429 case llvm::Triple::lanai:
1430 AddLanaiTargetArgs(Args, CmdArgs);
1431 break;
1432
1433 case llvm::Triple::hexagon:
1434 AddHexagonTargetArgs(Args, CmdArgs);
1435 break;
1436
1437 case llvm::Triple::wasm32:
1438 case llvm::Triple::wasm64:
1439 AddWebAssemblyTargetArgs(Args, CmdArgs);
1440 break;
1441 }
1442}
1443
David L. Jonesf561aba2017-03-08 01:02:16 +00001444void Clang::AddAArch64TargetArgs(const ArgList &Args,
1445 ArgStringList &CmdArgs) const {
1446 const llvm::Triple &Triple = getToolChain().getEffectiveTriple();
1447
1448 if (!Args.hasFlag(options::OPT_mred_zone, options::OPT_mno_red_zone, true) ||
1449 Args.hasArg(options::OPT_mkernel) ||
1450 Args.hasArg(options::OPT_fapple_kext))
1451 CmdArgs.push_back("-disable-red-zone");
1452
1453 if (!Args.hasFlag(options::OPT_mimplicit_float,
1454 options::OPT_mno_implicit_float, true))
1455 CmdArgs.push_back("-no-implicit-float");
1456
1457 const char *ABIName = nullptr;
1458 if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ))
1459 ABIName = A->getValue();
1460 else if (Triple.isOSDarwin())
1461 ABIName = "darwinpcs";
1462 else
1463 ABIName = "aapcs";
1464
1465 CmdArgs.push_back("-target-abi");
1466 CmdArgs.push_back(ABIName);
1467
1468 if (Arg *A = Args.getLastArg(options::OPT_mfix_cortex_a53_835769,
1469 options::OPT_mno_fix_cortex_a53_835769)) {
1470 CmdArgs.push_back("-backend-option");
1471 if (A->getOption().matches(options::OPT_mfix_cortex_a53_835769))
1472 CmdArgs.push_back("-aarch64-fix-cortex-a53-835769=1");
1473 else
1474 CmdArgs.push_back("-aarch64-fix-cortex-a53-835769=0");
1475 } else if (Triple.isAndroid()) {
1476 // Enabled A53 errata (835769) workaround by default on android
1477 CmdArgs.push_back("-backend-option");
1478 CmdArgs.push_back("-aarch64-fix-cortex-a53-835769=1");
1479 }
1480
1481 // Forward the -mglobal-merge option for explicit control over the pass.
1482 if (Arg *A = Args.getLastArg(options::OPT_mglobal_merge,
1483 options::OPT_mno_global_merge)) {
1484 CmdArgs.push_back("-backend-option");
1485 if (A->getOption().matches(options::OPT_mno_global_merge))
1486 CmdArgs.push_back("-aarch64-enable-global-merge=false");
1487 else
1488 CmdArgs.push_back("-aarch64-enable-global-merge=true");
1489 }
1490}
1491
1492void Clang::AddMIPSTargetArgs(const ArgList &Args,
1493 ArgStringList &CmdArgs) const {
1494 const Driver &D = getToolChain().getDriver();
1495 StringRef CPUName;
1496 StringRef ABIName;
1497 const llvm::Triple &Triple = getToolChain().getTriple();
1498 mips::getMipsCPUAndABI(Args, Triple, CPUName, ABIName);
1499
1500 CmdArgs.push_back("-target-abi");
1501 CmdArgs.push_back(ABIName.data());
1502
1503 mips::FloatABI ABI = mips::getMipsFloatABI(D, Args);
1504 if (ABI == mips::FloatABI::Soft) {
1505 // Floating point operations and argument passing are soft.
1506 CmdArgs.push_back("-msoft-float");
1507 CmdArgs.push_back("-mfloat-abi");
1508 CmdArgs.push_back("soft");
1509 } else {
1510 // Floating point operations and argument passing are hard.
1511 assert(ABI == mips::FloatABI::Hard && "Invalid float abi!");
1512 CmdArgs.push_back("-mfloat-abi");
1513 CmdArgs.push_back("hard");
1514 }
1515
1516 if (Arg *A = Args.getLastArg(options::OPT_mxgot, options::OPT_mno_xgot)) {
1517 if (A->getOption().matches(options::OPT_mxgot)) {
1518 CmdArgs.push_back("-mllvm");
1519 CmdArgs.push_back("-mxgot");
1520 }
1521 }
1522
1523 if (Arg *A = Args.getLastArg(options::OPT_mldc1_sdc1,
1524 options::OPT_mno_ldc1_sdc1)) {
1525 if (A->getOption().matches(options::OPT_mno_ldc1_sdc1)) {
1526 CmdArgs.push_back("-mllvm");
1527 CmdArgs.push_back("-mno-ldc1-sdc1");
1528 }
1529 }
1530
1531 if (Arg *A = Args.getLastArg(options::OPT_mcheck_zero_division,
1532 options::OPT_mno_check_zero_division)) {
1533 if (A->getOption().matches(options::OPT_mno_check_zero_division)) {
1534 CmdArgs.push_back("-mllvm");
1535 CmdArgs.push_back("-mno-check-zero-division");
1536 }
1537 }
1538
1539 if (Arg *A = Args.getLastArg(options::OPT_G)) {
1540 StringRef v = A->getValue();
1541 CmdArgs.push_back("-mllvm");
1542 CmdArgs.push_back(Args.MakeArgString("-mips-ssection-threshold=" + v));
1543 A->claim();
1544 }
1545
Simon Dardis31636a12017-07-20 14:04:12 +00001546 Arg *GPOpt = Args.getLastArg(options::OPT_mgpopt, options::OPT_mno_gpopt);
1547 Arg *ABICalls =
1548 Args.getLastArg(options::OPT_mabicalls, options::OPT_mno_abicalls);
1549
1550 // -mabicalls is the default for many MIPS environments, even with -fno-pic.
1551 // -mgpopt is the default for static, -fno-pic environments but these two
1552 // options conflict. We want to be certain that -mno-abicalls -mgpopt is
1553 // the only case where -mllvm -mgpopt is passed.
1554 // NOTE: We need a warning here or in the backend to warn when -mgpopt is
1555 // passed explicitly when compiling something with -mabicalls
1556 // (implictly) in affect. Currently the warning is in the backend.
Simon Dardisad9d05d2017-08-11 15:01:34 +00001557 //
1558 // When the ABI in use is N64, we also need to determine the PIC mode that
1559 // is in use, as -fno-pic for N64 implies -mno-abicalls.
Simon Dardis31636a12017-07-20 14:04:12 +00001560 bool NoABICalls =
1561 ABICalls && ABICalls->getOption().matches(options::OPT_mno_abicalls);
Simon Dardisad9d05d2017-08-11 15:01:34 +00001562
1563 llvm::Reloc::Model RelocationModel;
1564 unsigned PICLevel;
1565 bool IsPIE;
1566 std::tie(RelocationModel, PICLevel, IsPIE) =
1567 ParsePICArgs(getToolChain(), Args);
1568
1569 NoABICalls = NoABICalls ||
1570 (RelocationModel == llvm::Reloc::Static && ABIName == "n64");
1571
Simon Dardis31636a12017-07-20 14:04:12 +00001572 bool WantGPOpt = GPOpt && GPOpt->getOption().matches(options::OPT_mgpopt);
1573 // We quietly ignore -mno-gpopt as the backend defaults to -mno-gpopt.
1574 if (NoABICalls && (!GPOpt || WantGPOpt)) {
1575 CmdArgs.push_back("-mllvm");
1576 CmdArgs.push_back("-mgpopt");
Simon Dardis9f1d5d82017-07-20 22:23:21 +00001577
1578 Arg *LocalSData = Args.getLastArg(options::OPT_mlocal_sdata,
1579 options::OPT_mno_local_sdata);
Simon Dardis7d318782017-07-24 14:02:09 +00001580 Arg *ExternSData = Args.getLastArg(options::OPT_mextern_sdata,
Simon Dardiseeed0002017-08-03 13:04:29 +00001581 options::OPT_mno_extern_sdata);
1582 Arg *EmbeddedData = Args.getLastArg(options::OPT_membedded_data,
1583 options::OPT_mno_embedded_data);
Simon Dardis9f1d5d82017-07-20 22:23:21 +00001584 if (LocalSData) {
1585 CmdArgs.push_back("-mllvm");
1586 if (LocalSData->getOption().matches(options::OPT_mlocal_sdata)) {
1587 CmdArgs.push_back("-mlocal-sdata=1");
1588 } else {
1589 CmdArgs.push_back("-mlocal-sdata=0");
1590 }
1591 LocalSData->claim();
1592 }
1593
Simon Dardis7d318782017-07-24 14:02:09 +00001594 if (ExternSData) {
1595 CmdArgs.push_back("-mllvm");
1596 if (ExternSData->getOption().matches(options::OPT_mextern_sdata)) {
1597 CmdArgs.push_back("-mextern-sdata=1");
1598 } else {
1599 CmdArgs.push_back("-mextern-sdata=0");
1600 }
1601 ExternSData->claim();
1602 }
Simon Dardiseeed0002017-08-03 13:04:29 +00001603
1604 if (EmbeddedData) {
1605 CmdArgs.push_back("-mllvm");
1606 if (EmbeddedData->getOption().matches(options::OPT_membedded_data)) {
1607 CmdArgs.push_back("-membedded-data=1");
1608 } else {
1609 CmdArgs.push_back("-membedded-data=0");
1610 }
1611 EmbeddedData->claim();
1612 }
1613
Simon Dardis31636a12017-07-20 14:04:12 +00001614 } else if ((!ABICalls || (!NoABICalls && ABICalls)) && WantGPOpt)
1615 D.Diag(diag::warn_drv_unsupported_gpopt) << (ABICalls ? 0 : 1);
1616
1617 if (GPOpt)
1618 GPOpt->claim();
1619
David L. Jonesf561aba2017-03-08 01:02:16 +00001620 if (Arg *A = Args.getLastArg(options::OPT_mcompact_branches_EQ)) {
1621 StringRef Val = StringRef(A->getValue());
1622 if (mips::hasCompactBranches(CPUName)) {
1623 if (Val == "never" || Val == "always" || Val == "optimal") {
1624 CmdArgs.push_back("-mllvm");
1625 CmdArgs.push_back(Args.MakeArgString("-mips-compact-branches=" + Val));
1626 } else
1627 D.Diag(diag::err_drv_unsupported_option_argument)
1628 << A->getOption().getName() << Val;
1629 } else
1630 D.Diag(diag::warn_target_unsupported_compact_branches) << CPUName;
1631 }
1632}
1633
1634void Clang::AddPPCTargetArgs(const ArgList &Args,
1635 ArgStringList &CmdArgs) const {
1636 // Select the ABI to use.
1637 const char *ABIName = nullptr;
1638 if (getToolChain().getTriple().isOSLinux())
1639 switch (getToolChain().getArch()) {
1640 case llvm::Triple::ppc64: {
1641 // When targeting a processor that supports QPX, or if QPX is
1642 // specifically enabled, default to using the ABI that supports QPX (so
1643 // long as it is not specifically disabled).
1644 bool HasQPX = false;
1645 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
1646 HasQPX = A->getValue() == StringRef("a2q");
1647 HasQPX = Args.hasFlag(options::OPT_mqpx, options::OPT_mno_qpx, HasQPX);
1648 if (HasQPX) {
1649 ABIName = "elfv1-qpx";
1650 break;
1651 }
1652
1653 ABIName = "elfv1";
1654 break;
1655 }
1656 case llvm::Triple::ppc64le:
1657 ABIName = "elfv2";
1658 break;
1659 default:
1660 break;
1661 }
1662
1663 if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ))
1664 // The ppc64 linux abis are all "altivec" abis by default. Accept and ignore
1665 // the option if given as we don't have backend support for any targets
1666 // that don't use the altivec abi.
1667 if (StringRef(A->getValue()) != "altivec")
1668 ABIName = A->getValue();
1669
1670 ppc::FloatABI FloatABI =
1671 ppc::getPPCFloatABI(getToolChain().getDriver(), Args);
1672
1673 if (FloatABI == ppc::FloatABI::Soft) {
1674 // Floating point operations and argument passing are soft.
1675 CmdArgs.push_back("-msoft-float");
1676 CmdArgs.push_back("-mfloat-abi");
1677 CmdArgs.push_back("soft");
1678 } else {
1679 // Floating point operations and argument passing are hard.
1680 assert(FloatABI == ppc::FloatABI::Hard && "Invalid float abi!");
1681 CmdArgs.push_back("-mfloat-abi");
1682 CmdArgs.push_back("hard");
1683 }
1684
1685 if (ABIName) {
1686 CmdArgs.push_back("-target-abi");
1687 CmdArgs.push_back(ABIName);
1688 }
1689}
1690
Alex Bradbury71f45452018-01-11 13:36:56 +00001691void Clang::AddRISCVTargetArgs(const ArgList &Args,
1692 ArgStringList &CmdArgs) const {
1693 // FIXME: currently defaults to the soft-float ABIs. Will need to be
1694 // expanded to select ilp32f, ilp32d, lp64f, lp64d when appropiate.
1695 const char *ABIName = nullptr;
1696 const llvm::Triple &Triple = getToolChain().getTriple();
1697 if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ))
1698 ABIName = A->getValue();
1699 else if (Triple.getArch() == llvm::Triple::riscv32)
1700 ABIName = "ilp32";
1701 else if (Triple.getArch() == llvm::Triple::riscv64)
1702 ABIName = "lp64";
1703 else
1704 llvm_unreachable("Unexpected triple!");
1705
1706 CmdArgs.push_back("-target-abi");
1707 CmdArgs.push_back(ABIName);
1708}
1709
David L. Jonesf561aba2017-03-08 01:02:16 +00001710void Clang::AddSparcTargetArgs(const ArgList &Args,
1711 ArgStringList &CmdArgs) const {
1712 sparc::FloatABI FloatABI =
1713 sparc::getSparcFloatABI(getToolChain().getDriver(), Args);
1714
1715 if (FloatABI == sparc::FloatABI::Soft) {
1716 // Floating point operations and argument passing are soft.
1717 CmdArgs.push_back("-msoft-float");
1718 CmdArgs.push_back("-mfloat-abi");
1719 CmdArgs.push_back("soft");
1720 } else {
1721 // Floating point operations and argument passing are hard.
1722 assert(FloatABI == sparc::FloatABI::Hard && "Invalid float abi!");
1723 CmdArgs.push_back("-mfloat-abi");
1724 CmdArgs.push_back("hard");
1725 }
1726}
1727
1728void Clang::AddSystemZTargetArgs(const ArgList &Args,
1729 ArgStringList &CmdArgs) const {
1730 if (Args.hasFlag(options::OPT_mbackchain, options::OPT_mno_backchain, false))
1731 CmdArgs.push_back("-mbackchain");
1732}
1733
1734void Clang::AddX86TargetArgs(const ArgList &Args,
1735 ArgStringList &CmdArgs) const {
1736 if (!Args.hasFlag(options::OPT_mred_zone, options::OPT_mno_red_zone, true) ||
1737 Args.hasArg(options::OPT_mkernel) ||
1738 Args.hasArg(options::OPT_fapple_kext))
1739 CmdArgs.push_back("-disable-red-zone");
1740
1741 // Default to avoid implicit floating-point for kernel/kext code, but allow
1742 // that to be overridden with -mno-soft-float.
1743 bool NoImplicitFloat = (Args.hasArg(options::OPT_mkernel) ||
1744 Args.hasArg(options::OPT_fapple_kext));
1745 if (Arg *A = Args.getLastArg(
1746 options::OPT_msoft_float, options::OPT_mno_soft_float,
1747 options::OPT_mimplicit_float, options::OPT_mno_implicit_float)) {
1748 const Option &O = A->getOption();
1749 NoImplicitFloat = (O.matches(options::OPT_mno_implicit_float) ||
1750 O.matches(options::OPT_msoft_float));
1751 }
1752 if (NoImplicitFloat)
1753 CmdArgs.push_back("-no-implicit-float");
1754
1755 if (Arg *A = Args.getLastArg(options::OPT_masm_EQ)) {
1756 StringRef Value = A->getValue();
1757 if (Value == "intel" || Value == "att") {
1758 CmdArgs.push_back("-mllvm");
1759 CmdArgs.push_back(Args.MakeArgString("-x86-asm-syntax=" + Value));
1760 } else {
1761 getToolChain().getDriver().Diag(diag::err_drv_unsupported_option_argument)
1762 << A->getOption().getName() << Value;
1763 }
Nico Webere3712cf2018-01-17 13:34:20 +00001764 } else if (getToolChain().getDriver().IsCLMode()) {
1765 CmdArgs.push_back("-mllvm");
1766 CmdArgs.push_back("-x86-asm-syntax=intel");
David L. Jonesf561aba2017-03-08 01:02:16 +00001767 }
1768
1769 // Set flags to support MCU ABI.
1770 if (Args.hasFlag(options::OPT_miamcu, options::OPT_mno_iamcu, false)) {
1771 CmdArgs.push_back("-mfloat-abi");
1772 CmdArgs.push_back("soft");
1773 CmdArgs.push_back("-mstack-alignment=4");
1774 }
1775}
1776
1777void Clang::AddHexagonTargetArgs(const ArgList &Args,
1778 ArgStringList &CmdArgs) const {
1779 CmdArgs.push_back("-mqdsp6-compat");
1780 CmdArgs.push_back("-Wreturn-type");
1781
1782 if (auto G = toolchains::HexagonToolChain::getSmallDataThreshold(Args)) {
David L. Jonesf561aba2017-03-08 01:02:16 +00001783 CmdArgs.push_back("-mllvm");
Benjamin Kramer3a13ed62017-12-28 16:58:54 +00001784 CmdArgs.push_back(Args.MakeArgString("-hexagon-small-data-threshold=" +
1785 Twine(G.getValue())));
David L. Jonesf561aba2017-03-08 01:02:16 +00001786 }
1787
1788 if (!Args.hasArg(options::OPT_fno_short_enums))
1789 CmdArgs.push_back("-fshort-enums");
1790 if (Args.getLastArg(options::OPT_mieee_rnd_near)) {
1791 CmdArgs.push_back("-mllvm");
1792 CmdArgs.push_back("-enable-hexagon-ieee-rnd-near");
1793 }
1794 CmdArgs.push_back("-mllvm");
1795 CmdArgs.push_back("-machine-sink-split=0");
1796}
1797
1798void Clang::AddLanaiTargetArgs(const ArgList &Args,
1799 ArgStringList &CmdArgs) const {
1800 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) {
1801 StringRef CPUName = A->getValue();
1802
1803 CmdArgs.push_back("-target-cpu");
1804 CmdArgs.push_back(Args.MakeArgString(CPUName));
1805 }
1806 if (Arg *A = Args.getLastArg(options::OPT_mregparm_EQ)) {
1807 StringRef Value = A->getValue();
1808 // Only support mregparm=4 to support old usage. Report error for all other
1809 // cases.
1810 int Mregparm;
1811 if (Value.getAsInteger(10, Mregparm)) {
1812 if (Mregparm != 4) {
1813 getToolChain().getDriver().Diag(
1814 diag::err_drv_unsupported_option_argument)
1815 << A->getOption().getName() << Value;
1816 }
1817 }
1818 }
1819}
1820
1821void Clang::AddWebAssemblyTargetArgs(const ArgList &Args,
1822 ArgStringList &CmdArgs) const {
1823 // Default to "hidden" visibility.
1824 if (!Args.hasArg(options::OPT_fvisibility_EQ,
1825 options::OPT_fvisibility_ms_compat)) {
1826 CmdArgs.push_back("-fvisibility");
1827 CmdArgs.push_back("hidden");
1828 }
1829}
1830
1831void Clang::DumpCompilationDatabase(Compilation &C, StringRef Filename,
1832 StringRef Target, const InputInfo &Output,
1833 const InputInfo &Input, const ArgList &Args) const {
1834 // If this is a dry run, do not create the compilation database file.
1835 if (C.getArgs().hasArg(options::OPT__HASH_HASH_HASH))
1836 return;
1837
1838 using llvm::yaml::escape;
1839 const Driver &D = getToolChain().getDriver();
1840
1841 if (!CompilationDatabase) {
1842 std::error_code EC;
1843 auto File = llvm::make_unique<llvm::raw_fd_ostream>(Filename, EC, llvm::sys::fs::F_Text);
1844 if (EC) {
1845 D.Diag(clang::diag::err_drv_compilationdatabase) << Filename
1846 << EC.message();
1847 return;
1848 }
1849 CompilationDatabase = std::move(File);
1850 }
1851 auto &CDB = *CompilationDatabase;
1852 SmallString<128> Buf;
1853 if (llvm::sys::fs::current_path(Buf))
1854 Buf = ".";
1855 CDB << "{ \"directory\": \"" << escape(Buf) << "\"";
1856 CDB << ", \"file\": \"" << escape(Input.getFilename()) << "\"";
1857 CDB << ", \"output\": \"" << escape(Output.getFilename()) << "\"";
1858 CDB << ", \"arguments\": [\"" << escape(D.ClangExecutable) << "\"";
1859 Buf = "-x";
1860 Buf += types::getTypeName(Input.getType());
1861 CDB << ", \"" << escape(Buf) << "\"";
1862 if (!D.SysRoot.empty() && !Args.hasArg(options::OPT__sysroot_EQ)) {
1863 Buf = "--sysroot=";
1864 Buf += D.SysRoot;
1865 CDB << ", \"" << escape(Buf) << "\"";
1866 }
1867 CDB << ", \"" << escape(Input.getFilename()) << "\"";
1868 for (auto &A: Args) {
1869 auto &O = A->getOption();
1870 // Skip language selection, which is positional.
1871 if (O.getID() == options::OPT_x)
1872 continue;
1873 // Skip writing dependency output and the compilation database itself.
1874 if (O.getGroup().isValid() && O.getGroup().getID() == options::OPT_M_Group)
1875 continue;
1876 // Skip inputs.
1877 if (O.getKind() == Option::InputClass)
1878 continue;
1879 // All other arguments are quoted and appended.
1880 ArgStringList ASL;
1881 A->render(Args, ASL);
1882 for (auto &it: ASL)
1883 CDB << ", \"" << escape(it) << "\"";
1884 }
1885 Buf = "--target=";
1886 Buf += Target;
1887 CDB << ", \"" << escape(Buf) << "\"]},\n";
1888}
1889
1890static void CollectArgsForIntegratedAssembler(Compilation &C,
1891 const ArgList &Args,
1892 ArgStringList &CmdArgs,
1893 const Driver &D) {
1894 if (UseRelaxAll(C, Args))
1895 CmdArgs.push_back("-mrelax-all");
1896
1897 // Only default to -mincremental-linker-compatible if we think we are
1898 // targeting the MSVC linker.
1899 bool DefaultIncrementalLinkerCompatible =
1900 C.getDefaultToolChain().getTriple().isWindowsMSVCEnvironment();
1901 if (Args.hasFlag(options::OPT_mincremental_linker_compatible,
1902 options::OPT_mno_incremental_linker_compatible,
1903 DefaultIncrementalLinkerCompatible))
1904 CmdArgs.push_back("-mincremental-linker-compatible");
1905
1906 switch (C.getDefaultToolChain().getArch()) {
1907 case llvm::Triple::arm:
1908 case llvm::Triple::armeb:
1909 case llvm::Triple::thumb:
1910 case llvm::Triple::thumbeb:
1911 if (Arg *A = Args.getLastArg(options::OPT_mimplicit_it_EQ)) {
1912 StringRef Value = A->getValue();
1913 if (Value == "always" || Value == "never" || Value == "arm" ||
1914 Value == "thumb") {
1915 CmdArgs.push_back("-mllvm");
1916 CmdArgs.push_back(Args.MakeArgString("-arm-implicit-it=" + Value));
1917 } else {
1918 D.Diag(diag::err_drv_unsupported_option_argument)
1919 << A->getOption().getName() << Value;
1920 }
1921 }
1922 break;
1923 default:
1924 break;
1925 }
1926
1927 // When passing -I arguments to the assembler we sometimes need to
1928 // unconditionally take the next argument. For example, when parsing
1929 // '-Wa,-I -Wa,foo' we need to accept the -Wa,foo arg after seeing the
1930 // -Wa,-I arg and when parsing '-Wa,-I,foo' we need to accept the 'foo'
1931 // arg after parsing the '-I' arg.
1932 bool TakeNextArg = false;
1933
Petr Hosek5668d832017-11-22 01:38:31 +00001934 bool UseRelaxRelocations = C.getDefaultToolChain().useRelaxRelocations();
David L. Jonesf561aba2017-03-08 01:02:16 +00001935 const char *MipsTargetFeature = nullptr;
1936 for (const Arg *A :
1937 Args.filtered(options::OPT_Wa_COMMA, options::OPT_Xassembler)) {
1938 A->claim();
1939
1940 for (StringRef Value : A->getValues()) {
1941 if (TakeNextArg) {
1942 CmdArgs.push_back(Value.data());
1943 TakeNextArg = false;
1944 continue;
1945 }
1946
1947 if (C.getDefaultToolChain().getTriple().isOSBinFormatCOFF() &&
1948 Value == "-mbig-obj")
1949 continue; // LLVM handles bigobj automatically
1950
1951 switch (C.getDefaultToolChain().getArch()) {
1952 default:
1953 break;
Peter Smith3947cb32017-11-20 13:43:55 +00001954 case llvm::Triple::thumb:
1955 case llvm::Triple::thumbeb:
1956 case llvm::Triple::arm:
1957 case llvm::Triple::armeb:
1958 if (Value == "-mthumb")
1959 // -mthumb has already been processed in ComputeLLVMTriple()
1960 // recognize but skip over here.
1961 continue;
Peter Smith931c9fa2017-11-20 13:53:55 +00001962 break;
David L. Jonesf561aba2017-03-08 01:02:16 +00001963 case llvm::Triple::mips:
1964 case llvm::Triple::mipsel:
1965 case llvm::Triple::mips64:
1966 case llvm::Triple::mips64el:
1967 if (Value == "--trap") {
1968 CmdArgs.push_back("-target-feature");
1969 CmdArgs.push_back("+use-tcc-in-div");
1970 continue;
1971 }
1972 if (Value == "--break") {
1973 CmdArgs.push_back("-target-feature");
1974 CmdArgs.push_back("-use-tcc-in-div");
1975 continue;
1976 }
1977 if (Value.startswith("-msoft-float")) {
1978 CmdArgs.push_back("-target-feature");
1979 CmdArgs.push_back("+soft-float");
1980 continue;
1981 }
1982 if (Value.startswith("-mhard-float")) {
1983 CmdArgs.push_back("-target-feature");
1984 CmdArgs.push_back("-soft-float");
1985 continue;
1986 }
1987
1988 MipsTargetFeature = llvm::StringSwitch<const char *>(Value)
1989 .Case("-mips1", "+mips1")
1990 .Case("-mips2", "+mips2")
1991 .Case("-mips3", "+mips3")
1992 .Case("-mips4", "+mips4")
1993 .Case("-mips5", "+mips5")
1994 .Case("-mips32", "+mips32")
1995 .Case("-mips32r2", "+mips32r2")
1996 .Case("-mips32r3", "+mips32r3")
1997 .Case("-mips32r5", "+mips32r5")
1998 .Case("-mips32r6", "+mips32r6")
1999 .Case("-mips64", "+mips64")
2000 .Case("-mips64r2", "+mips64r2")
2001 .Case("-mips64r3", "+mips64r3")
2002 .Case("-mips64r5", "+mips64r5")
2003 .Case("-mips64r6", "+mips64r6")
2004 .Default(nullptr);
2005 if (MipsTargetFeature)
2006 continue;
2007 }
2008
2009 if (Value == "-force_cpusubtype_ALL") {
2010 // Do nothing, this is the default and we don't support anything else.
2011 } else if (Value == "-L") {
2012 CmdArgs.push_back("-msave-temp-labels");
2013 } else if (Value == "--fatal-warnings") {
2014 CmdArgs.push_back("-massembler-fatal-warnings");
2015 } else if (Value == "--noexecstack") {
2016 CmdArgs.push_back("-mnoexecstack");
Saleem Abdulrasoold064e912017-06-23 15:34:16 +00002017 } else if (Value.startswith("-compress-debug-sections") ||
2018 Value.startswith("--compress-debug-sections") ||
2019 Value == "-nocompress-debug-sections" ||
David L. Jonesf561aba2017-03-08 01:02:16 +00002020 Value == "--nocompress-debug-sections") {
Saleem Abdulrasoold064e912017-06-23 15:34:16 +00002021 CmdArgs.push_back(Value.data());
David L. Jonesf561aba2017-03-08 01:02:16 +00002022 } else if (Value == "-mrelax-relocations=yes" ||
2023 Value == "--mrelax-relocations=yes") {
2024 UseRelaxRelocations = true;
2025 } else if (Value == "-mrelax-relocations=no" ||
2026 Value == "--mrelax-relocations=no") {
2027 UseRelaxRelocations = false;
2028 } else if (Value.startswith("-I")) {
2029 CmdArgs.push_back(Value.data());
2030 // We need to consume the next argument if the current arg is a plain
2031 // -I. The next arg will be the include directory.
2032 if (Value == "-I")
2033 TakeNextArg = true;
2034 } else if (Value.startswith("-gdwarf-")) {
2035 // "-gdwarf-N" options are not cc1as options.
2036 unsigned DwarfVersion = DwarfVersionNum(Value);
2037 if (DwarfVersion == 0) { // Send it onward, and let cc1as complain.
2038 CmdArgs.push_back(Value.data());
2039 } else {
2040 RenderDebugEnablingArgs(Args, CmdArgs,
2041 codegenoptions::LimitedDebugInfo,
2042 DwarfVersion, llvm::DebuggerKind::Default);
2043 }
2044 } else if (Value.startswith("-mcpu") || Value.startswith("-mfpu") ||
2045 Value.startswith("-mhwdiv") || Value.startswith("-march")) {
2046 // Do nothing, we'll validate it later.
2047 } else if (Value == "-defsym") {
2048 if (A->getNumValues() != 2) {
2049 D.Diag(diag::err_drv_defsym_invalid_format) << Value;
2050 break;
2051 }
2052 const char *S = A->getValue(1);
2053 auto Pair = StringRef(S).split('=');
2054 auto Sym = Pair.first;
2055 auto SVal = Pair.second;
2056
2057 if (Sym.empty() || SVal.empty()) {
2058 D.Diag(diag::err_drv_defsym_invalid_format) << S;
2059 break;
2060 }
2061 int64_t IVal;
2062 if (SVal.getAsInteger(0, IVal)) {
2063 D.Diag(diag::err_drv_defsym_invalid_symval) << SVal;
2064 break;
2065 }
2066 CmdArgs.push_back(Value.data());
2067 TakeNextArg = true;
2068 } else {
2069 D.Diag(diag::err_drv_unsupported_option_argument)
2070 << A->getOption().getName() << Value;
2071 }
2072 }
2073 }
David L. Jonesf561aba2017-03-08 01:02:16 +00002074 if (UseRelaxRelocations)
2075 CmdArgs.push_back("--mrelax-relocations");
2076 if (MipsTargetFeature != nullptr) {
2077 CmdArgs.push_back("-target-feature");
2078 CmdArgs.push_back(MipsTargetFeature);
2079 }
2080}
2081
Saleem Abdulrasoole6d219d2017-09-01 22:04:24 +00002082static void RenderFloatingPointOptions(const ToolChain &TC, const Driver &D,
2083 bool OFastEnabled, const ArgList &Args,
2084 ArgStringList &CmdArgs) {
2085 // Handle various floating point optimization flags, mapping them to the
2086 // appropriate LLVM code generation flags. This is complicated by several
2087 // "umbrella" flags, so we do this by stepping through the flags incrementally
2088 // adjusting what we think is enabled/disabled, then at the end settting the
2089 // LLVM flags based on the final state.
2090 bool HonorINFs = true;
2091 bool HonorNaNs = true;
2092 // -fmath-errno is the default on some platforms, e.g. BSD-derived OSes.
2093 bool MathErrno = TC.IsMathErrnoDefault();
2094 bool AssociativeMath = false;
2095 bool ReciprocalMath = false;
2096 bool SignedZeros = true;
2097 bool TrappingMath = true;
2098 StringRef DenormalFPMath = "";
2099 StringRef FPContract = "";
2100
2101 for (const Arg *A : Args) {
2102 switch (A->getOption().getID()) {
2103 // If this isn't an FP option skip the claim below
2104 default: continue;
2105
2106 // Options controlling individual features
2107 case options::OPT_fhonor_infinities: HonorINFs = true; break;
2108 case options::OPT_fno_honor_infinities: HonorINFs = false; break;
2109 case options::OPT_fhonor_nans: HonorNaNs = true; break;
2110 case options::OPT_fno_honor_nans: HonorNaNs = false; break;
2111 case options::OPT_fmath_errno: MathErrno = true; break;
2112 case options::OPT_fno_math_errno: MathErrno = false; break;
2113 case options::OPT_fassociative_math: AssociativeMath = true; break;
2114 case options::OPT_fno_associative_math: AssociativeMath = false; break;
2115 case options::OPT_freciprocal_math: ReciprocalMath = true; break;
2116 case options::OPT_fno_reciprocal_math: ReciprocalMath = false; break;
2117 case options::OPT_fsigned_zeros: SignedZeros = true; break;
2118 case options::OPT_fno_signed_zeros: SignedZeros = false; break;
2119 case options::OPT_ftrapping_math: TrappingMath = true; break;
2120 case options::OPT_fno_trapping_math: TrappingMath = false; break;
2121
2122 case options::OPT_fdenormal_fp_math_EQ:
2123 DenormalFPMath = A->getValue();
2124 break;
2125
2126 // Validate and pass through -fp-contract option.
2127 case options::OPT_ffp_contract: {
2128 StringRef Val = A->getValue();
2129 if (Val == "fast" || Val == "on" || Val == "off")
2130 FPContract = Val;
2131 else
2132 D.Diag(diag::err_drv_unsupported_option_argument)
2133 << A->getOption().getName() << Val;
2134 break;
2135 }
2136
2137 case options::OPT_ffinite_math_only:
2138 HonorINFs = false;
2139 HonorNaNs = false;
2140 break;
2141 case options::OPT_fno_finite_math_only:
2142 HonorINFs = true;
2143 HonorNaNs = true;
2144 break;
2145
2146 case options::OPT_funsafe_math_optimizations:
2147 AssociativeMath = true;
2148 ReciprocalMath = true;
2149 SignedZeros = false;
2150 TrappingMath = false;
2151 break;
2152 case options::OPT_fno_unsafe_math_optimizations:
2153 AssociativeMath = false;
2154 ReciprocalMath = false;
2155 SignedZeros = true;
2156 TrappingMath = true;
2157 // -fno_unsafe_math_optimizations restores default denormal handling
2158 DenormalFPMath = "";
2159 break;
2160
2161 case options::OPT_Ofast:
2162 // If -Ofast is the optimization level, then -ffast-math should be enabled
2163 if (!OFastEnabled)
2164 continue;
2165 LLVM_FALLTHROUGH;
2166 case options::OPT_ffast_math:
2167 HonorINFs = false;
2168 HonorNaNs = false;
2169 MathErrno = false;
2170 AssociativeMath = true;
2171 ReciprocalMath = true;
2172 SignedZeros = false;
2173 TrappingMath = false;
2174 // If fast-math is set then set the fp-contract mode to fast.
2175 FPContract = "fast";
2176 break;
2177 case options::OPT_fno_fast_math:
2178 HonorINFs = true;
2179 HonorNaNs = true;
2180 // Turning on -ffast-math (with either flag) removes the need for
2181 // MathErrno. However, turning *off* -ffast-math merely restores the
2182 // toolchain default (which may be false).
2183 MathErrno = TC.IsMathErrnoDefault();
2184 AssociativeMath = false;
2185 ReciprocalMath = false;
2186 SignedZeros = true;
2187 TrappingMath = true;
2188 // -fno_fast_math restores default denormal and fpcontract handling
2189 DenormalFPMath = "";
2190 FPContract = "";
2191 break;
2192 }
2193
2194 // If we handled this option claim it
2195 A->claim();
2196 }
2197
2198 if (!HonorINFs)
2199 CmdArgs.push_back("-menable-no-infs");
2200
2201 if (!HonorNaNs)
2202 CmdArgs.push_back("-menable-no-nans");
2203
2204 if (MathErrno)
2205 CmdArgs.push_back("-fmath-errno");
2206
2207 if (!MathErrno && AssociativeMath && ReciprocalMath && !SignedZeros &&
2208 !TrappingMath)
2209 CmdArgs.push_back("-menable-unsafe-fp-math");
2210
2211 if (!SignedZeros)
2212 CmdArgs.push_back("-fno-signed-zeros");
2213
Sanjay Patelcb8c0092017-12-16 16:11:17 +00002214 if (AssociativeMath && !SignedZeros && !TrappingMath)
2215 CmdArgs.push_back("-mreassociate");
2216
Saleem Abdulrasoole6d219d2017-09-01 22:04:24 +00002217 if (ReciprocalMath)
2218 CmdArgs.push_back("-freciprocal-math");
2219
2220 if (!TrappingMath)
2221 CmdArgs.push_back("-fno-trapping-math");
2222
2223 if (!DenormalFPMath.empty())
2224 CmdArgs.push_back(
2225 Args.MakeArgString("-fdenormal-fp-math=" + DenormalFPMath));
2226
2227 if (!FPContract.empty())
2228 CmdArgs.push_back(Args.MakeArgString("-ffp-contract=" + FPContract));
2229
2230 ParseMRecip(D, Args, CmdArgs);
2231
2232 // -ffast-math enables the __FAST_MATH__ preprocessor macro, but check for the
2233 // individual features enabled by -ffast-math instead of the option itself as
2234 // that's consistent with gcc's behaviour.
2235 if (!HonorINFs && !HonorNaNs && !MathErrno && AssociativeMath &&
2236 ReciprocalMath && !SignedZeros && !TrappingMath)
2237 CmdArgs.push_back("-ffast-math");
2238
2239 // Handle __FINITE_MATH_ONLY__ similarly.
2240 if (!HonorINFs && !HonorNaNs)
2241 CmdArgs.push_back("-ffinite-math-only");
Saleem Abdulrasoolfb302ca2017-09-03 04:46:57 +00002242
2243 if (const Arg *A = Args.getLastArg(options::OPT_mfpmath_EQ)) {
2244 CmdArgs.push_back("-mfpmath");
2245 CmdArgs.push_back(A->getValue());
2246 }
Saleem Abdulrasoole6d219d2017-09-01 22:04:24 +00002247}
2248
Saleem Abdulrasool24aafa52017-08-30 14:18:08 +00002249static void RenderAnalyzerOptions(const ArgList &Args, ArgStringList &CmdArgs,
2250 const llvm::Triple &Triple,
2251 const InputInfo &Input) {
2252 // Enable region store model by default.
2253 CmdArgs.push_back("-analyzer-store=region");
2254
2255 // Treat blocks as analysis entry points.
2256 CmdArgs.push_back("-analyzer-opt-analyze-nested-blocks");
2257
2258 CmdArgs.push_back("-analyzer-eagerly-assume");
2259
2260 // Add default argument set.
2261 if (!Args.hasArg(options::OPT__analyzer_no_default_checks)) {
2262 CmdArgs.push_back("-analyzer-checker=core");
2263 CmdArgs.push_back("-analyzer-checker=apiModeling");
2264
2265 if (!Triple.isWindowsMSVCEnvironment()) {
2266 CmdArgs.push_back("-analyzer-checker=unix");
2267 } else {
2268 // Enable "unix" checkers that also work on Windows.
2269 CmdArgs.push_back("-analyzer-checker=unix.API");
2270 CmdArgs.push_back("-analyzer-checker=unix.Malloc");
2271 CmdArgs.push_back("-analyzer-checker=unix.MallocSizeof");
2272 CmdArgs.push_back("-analyzer-checker=unix.MismatchedDeallocator");
2273 CmdArgs.push_back("-analyzer-checker=unix.cstring.BadSizeArg");
2274 CmdArgs.push_back("-analyzer-checker=unix.cstring.NullArg");
2275 }
2276
2277 // Disable some unix checkers for PS4.
2278 if (Triple.isPS4CPU()) {
2279 CmdArgs.push_back("-analyzer-disable-checker=unix.API");
2280 CmdArgs.push_back("-analyzer-disable-checker=unix.Vfork");
2281 }
2282
2283 if (Triple.isOSDarwin())
2284 CmdArgs.push_back("-analyzer-checker=osx");
2285
2286 CmdArgs.push_back("-analyzer-checker=deadcode");
2287
2288 if (types::isCXX(Input.getType()))
2289 CmdArgs.push_back("-analyzer-checker=cplusplus");
2290
2291 if (!Triple.isPS4CPU()) {
2292 CmdArgs.push_back("-analyzer-checker=security.insecureAPI.UncheckedReturn");
2293 CmdArgs.push_back("-analyzer-checker=security.insecureAPI.getpw");
2294 CmdArgs.push_back("-analyzer-checker=security.insecureAPI.gets");
2295 CmdArgs.push_back("-analyzer-checker=security.insecureAPI.mktemp");
2296 CmdArgs.push_back("-analyzer-checker=security.insecureAPI.mkstemp");
2297 CmdArgs.push_back("-analyzer-checker=security.insecureAPI.vfork");
2298 }
2299
2300 // Default nullability checks.
2301 CmdArgs.push_back("-analyzer-checker=nullability.NullPassedToNonnull");
2302 CmdArgs.push_back("-analyzer-checker=nullability.NullReturnedFromNonnull");
2303 }
2304
2305 // Set the output format. The default is plist, for (lame) historical reasons.
2306 CmdArgs.push_back("-analyzer-output");
2307 if (Arg *A = Args.getLastArg(options::OPT__analyzer_output))
2308 CmdArgs.push_back(A->getValue());
2309 else
2310 CmdArgs.push_back("plist");
2311
2312 // Disable the presentation of standard compiler warnings when using
2313 // --analyze. We only want to show static analyzer diagnostics or frontend
2314 // errors.
2315 CmdArgs.push_back("-w");
2316
2317 // Add -Xanalyzer arguments when running as analyzer.
2318 Args.AddAllArgValues(CmdArgs, options::OPT_Xanalyzer);
2319}
2320
Saleem Abdulrasoold5ba5452017-08-29 23:59:08 +00002321static void RenderSSPOptions(const ToolChain &TC, const ArgList &Args,
Saleem Abdulrasoolc2320ad2017-09-06 04:56:23 +00002322 ArgStringList &CmdArgs, bool KernelOrKext) {
Saleem Abdulrasoold5ba5452017-08-29 23:59:08 +00002323 const llvm::Triple &EffectiveTriple = TC.getEffectiveTriple();
2324
2325 // NVPTX doesn't support stack protectors; from the compiler's perspective, it
2326 // doesn't even have a stack!
2327 if (EffectiveTriple.isNVPTX())
2328 return;
2329
2330 // -stack-protector=0 is default.
2331 unsigned StackProtectorLevel = 0;
2332 unsigned DefaultStackProtectorLevel =
2333 TC.GetDefaultStackProtectorLevel(KernelOrKext);
2334
2335 if (Arg *A = Args.getLastArg(options::OPT_fno_stack_protector,
2336 options::OPT_fstack_protector_all,
2337 options::OPT_fstack_protector_strong,
2338 options::OPT_fstack_protector)) {
2339 if (A->getOption().matches(options::OPT_fstack_protector))
2340 StackProtectorLevel =
2341 std::max<unsigned>(LangOptions::SSPOn, DefaultStackProtectorLevel);
2342 else if (A->getOption().matches(options::OPT_fstack_protector_strong))
2343 StackProtectorLevel = LangOptions::SSPStrong;
2344 else if (A->getOption().matches(options::OPT_fstack_protector_all))
2345 StackProtectorLevel = LangOptions::SSPReq;
2346 } else {
Bruno Cardoso Lopesbad2c4a2017-09-06 00:44:10 +00002347 StackProtectorLevel = DefaultStackProtectorLevel;
Saleem Abdulrasoold5ba5452017-08-29 23:59:08 +00002348 }
2349
2350 if (StackProtectorLevel) {
2351 CmdArgs.push_back("-stack-protector");
2352 CmdArgs.push_back(Args.MakeArgString(Twine(StackProtectorLevel)));
2353 }
2354
2355 // --param ssp-buffer-size=
2356 for (const Arg *A : Args.filtered(options::OPT__param)) {
2357 StringRef Str(A->getValue());
2358 if (Str.startswith("ssp-buffer-size=")) {
2359 if (StackProtectorLevel) {
2360 CmdArgs.push_back("-stack-protector-buffer-size");
2361 // FIXME: Verify the argument is a valid integer.
2362 CmdArgs.push_back(Args.MakeArgString(Str.drop_front(16)));
2363 }
2364 A->claim();
2365 }
2366 }
2367}
2368
Saleem Abdulrasool68c808f62017-08-29 23:59:07 +00002369static void RenderOpenCLOptions(const ArgList &Args, ArgStringList &CmdArgs) {
2370 const unsigned ForwardedArguments[] = {
2371 options::OPT_cl_opt_disable,
2372 options::OPT_cl_strict_aliasing,
2373 options::OPT_cl_single_precision_constant,
2374 options::OPT_cl_finite_math_only,
2375 options::OPT_cl_kernel_arg_info,
2376 options::OPT_cl_unsafe_math_optimizations,
2377 options::OPT_cl_fast_relaxed_math,
2378 options::OPT_cl_mad_enable,
2379 options::OPT_cl_no_signed_zeros,
2380 options::OPT_cl_denorms_are_zero,
2381 options::OPT_cl_fp32_correctly_rounded_divide_sqrt,
2382 };
2383
2384 if (Arg *A = Args.getLastArg(options::OPT_cl_std_EQ)) {
2385 std::string CLStdStr = std::string("-cl-std=") + A->getValue();
2386 CmdArgs.push_back(Args.MakeArgString(CLStdStr));
2387 }
2388
2389 for (const auto &Arg : ForwardedArguments)
2390 if (const auto *A = Args.getLastArg(Arg))
2391 CmdArgs.push_back(Args.MakeArgString(A->getOption().getPrefixedName()));
2392}
2393
Saleem Abdulrasool0a322c62017-08-31 15:35:01 +00002394static void RenderARCMigrateToolOptions(const Driver &D, const ArgList &Args,
2395 ArgStringList &CmdArgs) {
2396 bool ARCMTEnabled = false;
2397 if (!Args.hasArg(options::OPT_fno_objc_arc, options::OPT_fobjc_arc)) {
2398 if (const Arg *A = Args.getLastArg(options::OPT_ccc_arcmt_check,
2399 options::OPT_ccc_arcmt_modify,
2400 options::OPT_ccc_arcmt_migrate)) {
2401 ARCMTEnabled = true;
2402 switch (A->getOption().getID()) {
2403 default: llvm_unreachable("missed a case");
2404 case options::OPT_ccc_arcmt_check:
2405 CmdArgs.push_back("-arcmt-check");
2406 break;
2407 case options::OPT_ccc_arcmt_modify:
2408 CmdArgs.push_back("-arcmt-modify");
2409 break;
2410 case options::OPT_ccc_arcmt_migrate:
2411 CmdArgs.push_back("-arcmt-migrate");
2412 CmdArgs.push_back("-mt-migrate-directory");
2413 CmdArgs.push_back(A->getValue());
2414
2415 Args.AddLastArg(CmdArgs, options::OPT_arcmt_migrate_report_output);
2416 Args.AddLastArg(CmdArgs, options::OPT_arcmt_migrate_emit_arc_errors);
2417 break;
2418 }
2419 }
2420 } else {
2421 Args.ClaimAllArgs(options::OPT_ccc_arcmt_check);
2422 Args.ClaimAllArgs(options::OPT_ccc_arcmt_modify);
2423 Args.ClaimAllArgs(options::OPT_ccc_arcmt_migrate);
2424 }
2425
2426 if (const Arg *A = Args.getLastArg(options::OPT_ccc_objcmt_migrate)) {
2427 if (ARCMTEnabled)
2428 D.Diag(diag::err_drv_argument_not_allowed_with)
2429 << A->getAsString(Args) << "-ccc-arcmt-migrate";
2430
2431 CmdArgs.push_back("-mt-migrate-directory");
2432 CmdArgs.push_back(A->getValue());
2433
2434 if (!Args.hasArg(options::OPT_objcmt_migrate_literals,
2435 options::OPT_objcmt_migrate_subscripting,
2436 options::OPT_objcmt_migrate_property)) {
2437 // None specified, means enable them all.
2438 CmdArgs.push_back("-objcmt-migrate-literals");
2439 CmdArgs.push_back("-objcmt-migrate-subscripting");
2440 CmdArgs.push_back("-objcmt-migrate-property");
2441 } else {
2442 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_literals);
2443 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_subscripting);
2444 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_property);
2445 }
2446 } else {
2447 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_literals);
2448 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_subscripting);
2449 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_property);
2450 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_all);
2451 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_readonly_property);
2452 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_readwrite_property);
2453 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_property_dot_syntax);
2454 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_annotation);
2455 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_instancetype);
2456 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_nsmacros);
2457 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_protocol_conformance);
2458 Args.AddLastArg(CmdArgs, options::OPT_objcmt_atomic_property);
2459 Args.AddLastArg(CmdArgs, options::OPT_objcmt_returns_innerpointer_property);
2460 Args.AddLastArg(CmdArgs, options::OPT_objcmt_ns_nonatomic_iosonly);
2461 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_designated_init);
2462 Args.AddLastArg(CmdArgs, options::OPT_objcmt_whitelist_dir_path);
2463 }
2464}
2465
Saleem Abdulrasool99f4ead2017-09-01 23:44:01 +00002466static void RenderBuiltinOptions(const ToolChain &TC, const llvm::Triple &T,
2467 const ArgList &Args, ArgStringList &CmdArgs) {
2468 // -fbuiltin is default unless -mkernel is used.
2469 bool UseBuiltins =
2470 Args.hasFlag(options::OPT_fbuiltin, options::OPT_fno_builtin,
2471 !Args.hasArg(options::OPT_mkernel));
2472 if (!UseBuiltins)
2473 CmdArgs.push_back("-fno-builtin");
2474
2475 // -ffreestanding implies -fno-builtin.
2476 if (Args.hasArg(options::OPT_ffreestanding))
2477 UseBuiltins = false;
2478
2479 // Process the -fno-builtin-* options.
2480 for (const auto &Arg : Args) {
2481 const Option &O = Arg->getOption();
2482 if (!O.matches(options::OPT_fno_builtin_))
2483 continue;
2484
2485 Arg->claim();
2486
2487 // If -fno-builtin is specified, then there's no need to pass the option to
2488 // the frontend.
2489 if (!UseBuiltins)
2490 continue;
2491
2492 StringRef FuncName = Arg->getValue();
2493 CmdArgs.push_back(Args.MakeArgString("-fno-builtin-" + FuncName));
2494 }
2495
2496 // le32-specific flags:
2497 // -fno-math-builtin: clang should not convert math builtins to intrinsics
2498 // by default.
2499 if (TC.getArch() == llvm::Triple::le32)
2500 CmdArgs.push_back("-fno-math-builtin");
Saleem Abdulrasool99f4ead2017-09-01 23:44:01 +00002501}
2502
Saleem Abdulrasoole196e942017-09-01 15:25:17 +00002503static void RenderModulesOptions(Compilation &C, const Driver &D,
2504 const ArgList &Args, const InputInfo &Input,
2505 const InputInfo &Output,
2506 ArgStringList &CmdArgs, bool &HaveModules) {
2507 // -fmodules enables the use of precompiled modules (off by default).
2508 // Users can pass -fno-cxx-modules to turn off modules support for
2509 // C++/Objective-C++ programs.
2510 bool HaveClangModules = false;
2511 if (Args.hasFlag(options::OPT_fmodules, options::OPT_fno_modules, false)) {
2512 bool AllowedInCXX = Args.hasFlag(options::OPT_fcxx_modules,
2513 options::OPT_fno_cxx_modules, true);
2514 if (AllowedInCXX || !types::isCXX(Input.getType())) {
2515 CmdArgs.push_back("-fmodules");
2516 HaveClangModules = true;
2517 }
2518 }
2519
2520 HaveModules = HaveClangModules;
2521 if (Args.hasArg(options::OPT_fmodules_ts)) {
2522 CmdArgs.push_back("-fmodules-ts");
2523 HaveModules = true;
2524 }
2525
2526 // -fmodule-maps enables implicit reading of module map files. By default,
2527 // this is enabled if we are using Clang's flavor of precompiled modules.
2528 if (Args.hasFlag(options::OPT_fimplicit_module_maps,
2529 options::OPT_fno_implicit_module_maps, HaveClangModules))
2530 CmdArgs.push_back("-fimplicit-module-maps");
2531
2532 // -fmodules-decluse checks that modules used are declared so (off by default)
2533 if (Args.hasFlag(options::OPT_fmodules_decluse,
2534 options::OPT_fno_modules_decluse, false))
2535 CmdArgs.push_back("-fmodules-decluse");
2536
2537 // -fmodules-strict-decluse is like -fmodule-decluse, but also checks that
2538 // all #included headers are part of modules.
2539 if (Args.hasFlag(options::OPT_fmodules_strict_decluse,
2540 options::OPT_fno_modules_strict_decluse, false))
2541 CmdArgs.push_back("-fmodules-strict-decluse");
2542
2543 // -fno-implicit-modules turns off implicitly compiling modules on demand.
2544 if (!Args.hasFlag(options::OPT_fimplicit_modules,
2545 options::OPT_fno_implicit_modules, HaveClangModules)) {
2546 if (HaveModules)
2547 CmdArgs.push_back("-fno-implicit-modules");
2548 } else if (HaveModules) {
2549 // -fmodule-cache-path specifies where our implicitly-built module files
2550 // should be written.
2551 SmallString<128> Path;
2552 if (Arg *A = Args.getLastArg(options::OPT_fmodules_cache_path))
2553 Path = A->getValue();
2554
2555 if (C.isForDiagnostics()) {
2556 // When generating crash reports, we want to emit the modules along with
2557 // the reproduction sources, so we ignore any provided module path.
2558 Path = Output.getFilename();
2559 llvm::sys::path::replace_extension(Path, ".cache");
2560 llvm::sys::path::append(Path, "modules");
2561 } else if (Path.empty()) {
2562 // No module path was provided: use the default.
2563 llvm::sys::path::system_temp_directory(/*erasedOnReboot=*/false, Path);
2564 llvm::sys::path::append(Path, "org.llvm.clang.");
2565 appendUserToPath(Path);
2566 llvm::sys::path::append(Path, "ModuleCache");
2567 }
2568
2569 const char Arg[] = "-fmodules-cache-path=";
2570 Path.insert(Path.begin(), Arg, Arg + strlen(Arg));
2571 CmdArgs.push_back(Args.MakeArgString(Path));
2572 }
2573
2574 if (HaveModules) {
2575 // -fprebuilt-module-path specifies where to load the prebuilt module files.
2576 for (const Arg *A : Args.filtered(options::OPT_fprebuilt_module_path)) {
2577 CmdArgs.push_back(Args.MakeArgString(
2578 std::string("-fprebuilt-module-path=") + A->getValue()));
2579 A->claim();
2580 }
2581 }
2582
2583 // -fmodule-name specifies the module that is currently being built (or
2584 // used for header checking by -fmodule-maps).
2585 Args.AddLastArg(CmdArgs, options::OPT_fmodule_name_EQ);
2586
2587 // -fmodule-map-file can be used to specify files containing module
2588 // definitions.
2589 Args.AddAllArgs(CmdArgs, options::OPT_fmodule_map_file);
2590
2591 // -fbuiltin-module-map can be used to load the clang
2592 // builtin headers modulemap file.
2593 if (Args.hasArg(options::OPT_fbuiltin_module_map)) {
2594 SmallString<128> BuiltinModuleMap(D.ResourceDir);
2595 llvm::sys::path::append(BuiltinModuleMap, "include");
2596 llvm::sys::path::append(BuiltinModuleMap, "module.modulemap");
2597 if (llvm::sys::fs::exists(BuiltinModuleMap))
2598 CmdArgs.push_back(
2599 Args.MakeArgString("-fmodule-map-file=" + BuiltinModuleMap));
2600 }
2601
2602 // The -fmodule-file=<name>=<file> form specifies the mapping of module
2603 // names to precompiled module files (the module is loaded only if used).
2604 // The -fmodule-file=<file> form can be used to unconditionally load
2605 // precompiled module files (whether used or not).
2606 if (HaveModules)
2607 Args.AddAllArgs(CmdArgs, options::OPT_fmodule_file);
2608 else
2609 Args.ClaimAllArgs(options::OPT_fmodule_file);
2610
2611 // When building modules and generating crashdumps, we need to dump a module
2612 // dependency VFS alongside the output.
2613 if (HaveClangModules && C.isForDiagnostics()) {
2614 SmallString<128> VFSDir(Output.getFilename());
2615 llvm::sys::path::replace_extension(VFSDir, ".cache");
2616 // Add the cache directory as a temp so the crash diagnostics pick it up.
2617 C.addTempFile(Args.MakeArgString(VFSDir));
2618
2619 llvm::sys::path::append(VFSDir, "vfs");
2620 CmdArgs.push_back("-module-dependency-dir");
2621 CmdArgs.push_back(Args.MakeArgString(VFSDir));
2622 }
2623
2624 if (HaveClangModules)
2625 Args.AddLastArg(CmdArgs, options::OPT_fmodules_user_build_path);
2626
2627 // Pass through all -fmodules-ignore-macro arguments.
2628 Args.AddAllArgs(CmdArgs, options::OPT_fmodules_ignore_macro);
2629 Args.AddLastArg(CmdArgs, options::OPT_fmodules_prune_interval);
2630 Args.AddLastArg(CmdArgs, options::OPT_fmodules_prune_after);
2631
2632 Args.AddLastArg(CmdArgs, options::OPT_fbuild_session_timestamp);
2633
2634 if (Arg *A = Args.getLastArg(options::OPT_fbuild_session_file)) {
2635 if (Args.hasArg(options::OPT_fbuild_session_timestamp))
2636 D.Diag(diag::err_drv_argument_not_allowed_with)
2637 << A->getAsString(Args) << "-fbuild-session-timestamp";
2638
2639 llvm::sys::fs::file_status Status;
2640 if (llvm::sys::fs::status(A->getValue(), Status))
2641 D.Diag(diag::err_drv_no_such_file) << A->getValue();
2642 CmdArgs.push_back(
2643 Args.MakeArgString("-fbuild-session-timestamp=" +
2644 Twine((uint64_t)Status.getLastModificationTime()
2645 .time_since_epoch()
2646 .count())));
2647 }
2648
2649 if (Args.getLastArg(options::OPT_fmodules_validate_once_per_build_session)) {
2650 if (!Args.getLastArg(options::OPT_fbuild_session_timestamp,
2651 options::OPT_fbuild_session_file))
2652 D.Diag(diag::err_drv_modules_validate_once_requires_timestamp);
2653
2654 Args.AddLastArg(CmdArgs,
2655 options::OPT_fmodules_validate_once_per_build_session);
2656 }
2657
2658 Args.AddLastArg(CmdArgs, options::OPT_fmodules_validate_system_headers);
2659 Args.AddLastArg(CmdArgs, options::OPT_fmodules_disable_diagnostic_validation);
2660}
2661
Saleem Abdulrasool729379a2017-10-06 23:09:55 +00002662static void RenderCharacterOptions(const ArgList &Args, const llvm::Triple &T,
2663 ArgStringList &CmdArgs) {
2664 // -fsigned-char is default.
2665 if (const Arg *A = Args.getLastArg(options::OPT_fsigned_char,
2666 options::OPT_fno_signed_char,
2667 options::OPT_funsigned_char,
2668 options::OPT_fno_unsigned_char)) {
2669 if (A->getOption().matches(options::OPT_funsigned_char) ||
2670 A->getOption().matches(options::OPT_fno_signed_char)) {
2671 CmdArgs.push_back("-fno-signed-char");
2672 }
2673 } else if (!isSignedCharDefault(T)) {
2674 CmdArgs.push_back("-fno-signed-char");
2675 }
2676
2677 if (const Arg *A = Args.getLastArg(options::OPT_fshort_wchar,
2678 options::OPT_fno_short_wchar)) {
2679 if (A->getOption().matches(options::OPT_fshort_wchar)) {
2680 CmdArgs.push_back("-fwchar-type=short");
2681 CmdArgs.push_back("-fno-signed-wchar");
2682 } else {
Saleem Abdulrasool8ba8b022017-10-29 06:01:14 +00002683 bool IsARM = T.isARM() || T.isThumb() || T.isAArch64();
Saleem Abdulrasool729379a2017-10-06 23:09:55 +00002684 CmdArgs.push_back("-fwchar-type=int");
Saleem Abdulrasool8ba8b022017-10-29 06:01:14 +00002685 if (IsARM && !(T.isOSWindows() || T.getOS() == llvm::Triple::NetBSD ||
2686 T.getOS() == llvm::Triple::OpenBSD))
2687 CmdArgs.push_back("-fno-signed-wchar");
2688 else
2689 CmdArgs.push_back("-fsigned-wchar");
Saleem Abdulrasool729379a2017-10-06 23:09:55 +00002690 }
2691 }
2692}
2693
Saleem Abdulrasoolb2d4ebb2017-09-01 17:43:59 +00002694static void RenderObjCOptions(const ToolChain &TC, const Driver &D,
2695 const llvm::Triple &T, const ArgList &Args,
2696 ObjCRuntime &Runtime, bool InferCovariantReturns,
2697 const InputInfo &Input, ArgStringList &CmdArgs) {
2698 const llvm::Triple::ArchType Arch = TC.getArch();
2699
2700 // -fobjc-dispatch-method is only relevant with the nonfragile-abi, and legacy
2701 // is the default. Except for deployment target of 10.5, next runtime is
2702 // always legacy dispatch and -fno-objc-legacy-dispatch gets ignored silently.
2703 if (Runtime.isNonFragile()) {
2704 if (!Args.hasFlag(options::OPT_fobjc_legacy_dispatch,
2705 options::OPT_fno_objc_legacy_dispatch,
2706 Runtime.isLegacyDispatchDefaultForArch(Arch))) {
2707 if (TC.UseObjCMixedDispatch())
2708 CmdArgs.push_back("-fobjc-dispatch-method=mixed");
2709 else
2710 CmdArgs.push_back("-fobjc-dispatch-method=non-legacy");
2711 }
2712 }
2713
2714 // When ObjectiveC legacy runtime is in effect on MacOSX, turn on the option
2715 // to do Array/Dictionary subscripting by default.
2716 if (Arch == llvm::Triple::x86 && T.isMacOSX() &&
2717 !T.isMacOSXVersionLT(10, 7) &&
2718 Runtime.getKind() == ObjCRuntime::FragileMacOSX && Runtime.isNeXTFamily())
2719 CmdArgs.push_back("-fobjc-subscripting-legacy-runtime");
2720
2721 // Allow -fno-objc-arr to trump -fobjc-arr/-fobjc-arc.
2722 // NOTE: This logic is duplicated in ToolChains.cpp.
2723 if (isObjCAutoRefCount(Args)) {
2724 TC.CheckObjCARC();
2725
2726 CmdArgs.push_back("-fobjc-arc");
2727
2728 // FIXME: It seems like this entire block, and several around it should be
2729 // wrapped in isObjC, but for now we just use it here as this is where it
2730 // was being used previously.
2731 if (types::isCXX(Input.getType()) && types::isObjC(Input.getType())) {
2732 if (TC.GetCXXStdlibType(Args) == ToolChain::CST_Libcxx)
2733 CmdArgs.push_back("-fobjc-arc-cxxlib=libc++");
2734 else
2735 CmdArgs.push_back("-fobjc-arc-cxxlib=libstdc++");
2736 }
2737
2738 // Allow the user to enable full exceptions code emission.
2739 // We default off for Objective-C, on for Objective-C++.
2740 if (Args.hasFlag(options::OPT_fobjc_arc_exceptions,
2741 options::OPT_fno_objc_arc_exceptions,
2742 /*default=*/types::isCXX(Input.getType())))
2743 CmdArgs.push_back("-fobjc-arc-exceptions");
2744 }
2745
2746 // Silence warning for full exception code emission options when explicitly
2747 // set to use no ARC.
2748 if (Args.hasArg(options::OPT_fno_objc_arc)) {
2749 Args.ClaimAllArgs(options::OPT_fobjc_arc_exceptions);
2750 Args.ClaimAllArgs(options::OPT_fno_objc_arc_exceptions);
2751 }
2752
2753 // -fobjc-infer-related-result-type is the default, except in the Objective-C
2754 // rewriter.
2755 if (InferCovariantReturns)
2756 CmdArgs.push_back("-fno-objc-infer-related-result-type");
2757
2758 // Pass down -fobjc-weak or -fno-objc-weak if present.
2759 if (types::isObjC(Input.getType())) {
2760 auto WeakArg =
2761 Args.getLastArg(options::OPT_fobjc_weak, options::OPT_fno_objc_weak);
2762 if (!WeakArg) {
2763 // nothing to do
2764 } else if (!Runtime.allowsWeak()) {
2765 if (WeakArg->getOption().matches(options::OPT_fobjc_weak))
2766 D.Diag(diag::err_objc_weak_unsupported);
2767 } else {
2768 WeakArg->render(Args, CmdArgs);
2769 }
2770 }
2771}
2772
Saleem Abdulrasool75557fa2017-09-01 18:57:34 +00002773static void RenderDiagnosticsOptions(const Driver &D, const ArgList &Args,
2774 ArgStringList &CmdArgs) {
2775 bool CaretDefault = true;
2776 bool ColumnDefault = true;
2777
2778 if (const Arg *A = Args.getLastArg(options::OPT__SLASH_diagnostics_classic,
2779 options::OPT__SLASH_diagnostics_column,
2780 options::OPT__SLASH_diagnostics_caret)) {
2781 switch (A->getOption().getID()) {
2782 case options::OPT__SLASH_diagnostics_caret:
2783 CaretDefault = true;
2784 ColumnDefault = true;
2785 break;
2786 case options::OPT__SLASH_diagnostics_column:
2787 CaretDefault = false;
2788 ColumnDefault = true;
2789 break;
2790 case options::OPT__SLASH_diagnostics_classic:
2791 CaretDefault = false;
2792 ColumnDefault = false;
2793 break;
2794 }
2795 }
2796
2797 // -fcaret-diagnostics is default.
2798 if (!Args.hasFlag(options::OPT_fcaret_diagnostics,
2799 options::OPT_fno_caret_diagnostics, CaretDefault))
2800 CmdArgs.push_back("-fno-caret-diagnostics");
2801
2802 // -fdiagnostics-fixit-info is default, only pass non-default.
2803 if (!Args.hasFlag(options::OPT_fdiagnostics_fixit_info,
2804 options::OPT_fno_diagnostics_fixit_info))
2805 CmdArgs.push_back("-fno-diagnostics-fixit-info");
2806
2807 // Enable -fdiagnostics-show-option by default.
2808 if (Args.hasFlag(options::OPT_fdiagnostics_show_option,
2809 options::OPT_fno_diagnostics_show_option))
2810 CmdArgs.push_back("-fdiagnostics-show-option");
2811
2812 if (const Arg *A =
2813 Args.getLastArg(options::OPT_fdiagnostics_show_category_EQ)) {
2814 CmdArgs.push_back("-fdiagnostics-show-category");
2815 CmdArgs.push_back(A->getValue());
2816 }
2817
2818 if (Args.hasFlag(options::OPT_fdiagnostics_show_hotness,
2819 options::OPT_fno_diagnostics_show_hotness, false))
2820 CmdArgs.push_back("-fdiagnostics-show-hotness");
2821
2822 if (const Arg *A =
2823 Args.getLastArg(options::OPT_fdiagnostics_hotness_threshold_EQ)) {
2824 std::string Opt =
2825 std::string("-fdiagnostics-hotness-threshold=") + A->getValue();
2826 CmdArgs.push_back(Args.MakeArgString(Opt));
2827 }
2828
2829 if (const Arg *A = Args.getLastArg(options::OPT_fdiagnostics_format_EQ)) {
2830 CmdArgs.push_back("-fdiagnostics-format");
2831 CmdArgs.push_back(A->getValue());
2832 }
2833
2834 if (const Arg *A = Args.getLastArg(
2835 options::OPT_fdiagnostics_show_note_include_stack,
2836 options::OPT_fno_diagnostics_show_note_include_stack)) {
2837 const Option &O = A->getOption();
2838 if (O.matches(options::OPT_fdiagnostics_show_note_include_stack))
2839 CmdArgs.push_back("-fdiagnostics-show-note-include-stack");
2840 else
2841 CmdArgs.push_back("-fno-diagnostics-show-note-include-stack");
2842 }
2843
2844 // Color diagnostics are parsed by the driver directly from argv and later
2845 // re-parsed to construct this job; claim any possible color diagnostic here
2846 // to avoid warn_drv_unused_argument and diagnose bad
2847 // OPT_fdiagnostics_color_EQ values.
2848 for (const Arg *A : Args) {
2849 const Option &O = A->getOption();
2850 if (!O.matches(options::OPT_fcolor_diagnostics) &&
2851 !O.matches(options::OPT_fdiagnostics_color) &&
2852 !O.matches(options::OPT_fno_color_diagnostics) &&
2853 !O.matches(options::OPT_fno_diagnostics_color) &&
2854 !O.matches(options::OPT_fdiagnostics_color_EQ))
2855 continue;
2856
2857 if (O.matches(options::OPT_fdiagnostics_color_EQ)) {
2858 StringRef Value(A->getValue());
2859 if (Value != "always" && Value != "never" && Value != "auto")
2860 D.Diag(diag::err_drv_clang_unsupported)
2861 << ("-fdiagnostics-color=" + Value).str();
2862 }
2863 A->claim();
2864 }
2865
2866 if (D.getDiags().getDiagnosticOptions().ShowColors)
2867 CmdArgs.push_back("-fcolor-diagnostics");
2868
2869 if (Args.hasArg(options::OPT_fansi_escape_codes))
2870 CmdArgs.push_back("-fansi-escape-codes");
2871
2872 if (!Args.hasFlag(options::OPT_fshow_source_location,
2873 options::OPT_fno_show_source_location))
2874 CmdArgs.push_back("-fno-show-source-location");
2875
2876 if (Args.hasArg(options::OPT_fdiagnostics_absolute_paths))
2877 CmdArgs.push_back("-fdiagnostics-absolute-paths");
2878
2879 if (!Args.hasFlag(options::OPT_fshow_column, options::OPT_fno_show_column,
2880 ColumnDefault))
2881 CmdArgs.push_back("-fno-show-column");
2882
2883 if (!Args.hasFlag(options::OPT_fspell_checking,
2884 options::OPT_fno_spell_checking))
2885 CmdArgs.push_back("-fno-spell-checking");
2886}
2887
Saleem Abdulrasool9934eab2017-09-03 04:46:59 +00002888static void RenderDebugOptions(const ToolChain &TC, const Driver &D,
2889 const llvm::Triple &T, const ArgList &Args,
2890 bool EmitCodeView, bool IsWindowsMSVC,
2891 ArgStringList &CmdArgs,
2892 codegenoptions::DebugInfoKind &DebugInfoKind,
2893 const Arg *&SplitDWARFArg) {
Saleem Abdulrasool9934eab2017-09-03 04:46:59 +00002894 if (Args.hasFlag(options::OPT_fdebug_info_for_profiling,
2895 options::OPT_fno_debug_info_for_profiling, false))
2896 CmdArgs.push_back("-fdebug-info-for-profiling");
2897
2898 // The 'g' groups options involve a somewhat intricate sequence of decisions
2899 // about what to pass from the driver to the frontend, but by the time they
2900 // reach cc1 they've been factored into three well-defined orthogonal choices:
2901 // * what level of debug info to generate
2902 // * what dwarf version to write
2903 // * what debugger tuning to use
2904 // This avoids having to monkey around further in cc1 other than to disable
2905 // codeview if not running in a Windows environment. Perhaps even that
2906 // decision should be made in the driver as well though.
2907 unsigned DWARFVersion = 0;
2908 llvm::DebuggerKind DebuggerTuning = TC.getDefaultDebuggerTuning();
2909
2910 bool SplitDWARFInlining =
2911 Args.hasFlag(options::OPT_fsplit_dwarf_inlining,
2912 options::OPT_fno_split_dwarf_inlining, true);
2913
2914 Args.ClaimAllArgs(options::OPT_g_Group);
2915
2916 SplitDWARFArg = Args.getLastArg(options::OPT_gsplit_dwarf);
2917
2918 if (const Arg *A = Args.getLastArg(options::OPT_g_Group)) {
2919 // If the last option explicitly specified a debug-info level, use it.
2920 if (A->getOption().matches(options::OPT_gN_Group)) {
2921 DebugInfoKind = DebugLevelToInfoKind(*A);
2922 // If you say "-gsplit-dwarf -gline-tables-only", -gsplit-dwarf loses.
2923 // But -gsplit-dwarf is not a g_group option, hence we have to check the
2924 // order explicitly. If -gsplit-dwarf wins, we fix DebugInfoKind later.
2925 // This gets a bit more complicated if you've disabled inline info in the
2926 // skeleton CUs (SplitDWARFInlining) - then there's value in composing
2927 // split-dwarf and line-tables-only, so let those compose naturally in
2928 // that case.
2929 // And if you just turned off debug info, (-gsplit-dwarf -g0) - do that.
2930 if (SplitDWARFArg) {
2931 if (A->getIndex() > SplitDWARFArg->getIndex()) {
2932 if (DebugInfoKind == codegenoptions::NoDebugInfo ||
2933 (DebugInfoKind == codegenoptions::DebugLineTablesOnly &&
2934 SplitDWARFInlining))
2935 SplitDWARFArg = nullptr;
2936 } else if (SplitDWARFInlining)
2937 DebugInfoKind = codegenoptions::NoDebugInfo;
2938 }
2939 } else {
2940 // For any other 'g' option, use Limited.
2941 DebugInfoKind = codegenoptions::LimitedDebugInfo;
2942 }
2943 }
2944
2945 // If a debugger tuning argument appeared, remember it.
2946 if (const Arg *A =
2947 Args.getLastArg(options::OPT_gTune_Group, options::OPT_ggdbN_Group)) {
2948 if (A->getOption().matches(options::OPT_glldb))
2949 DebuggerTuning = llvm::DebuggerKind::LLDB;
2950 else if (A->getOption().matches(options::OPT_gsce))
2951 DebuggerTuning = llvm::DebuggerKind::SCE;
2952 else
2953 DebuggerTuning = llvm::DebuggerKind::GDB;
2954 }
2955
2956 // If a -gdwarf argument appeared, remember it.
2957 if (const Arg *A =
2958 Args.getLastArg(options::OPT_gdwarf_2, options::OPT_gdwarf_3,
2959 options::OPT_gdwarf_4, options::OPT_gdwarf_5))
2960 DWARFVersion = DwarfVersionNum(A->getSpelling());
2961
2962 // Forward -gcodeview. EmitCodeView might have been set by CL-compatibility
2963 // argument parsing.
2964 if (Args.hasArg(options::OPT_gcodeview) || EmitCodeView) {
2965 // DWARFVersion remains at 0 if no explicit choice was made.
2966 CmdArgs.push_back("-gcodeview");
2967 } else if (DWARFVersion == 0 &&
2968 DebugInfoKind != codegenoptions::NoDebugInfo) {
2969 DWARFVersion = TC.GetDefaultDwarfVersion();
2970 }
2971
2972 // We ignore flag -gstrict-dwarf for now.
2973 // And we handle flag -grecord-gcc-switches later with DWARFDebugFlags.
2974 Args.ClaimAllArgs(options::OPT_g_flags_Group);
2975
Paul Robinsona8280812017-09-29 21:25:07 +00002976 // Column info is included by default for everything except SCE and CodeView.
Saleem Abdulrasool9934eab2017-09-03 04:46:59 +00002977 // Clang doesn't track end columns, just starting columns, which, in theory,
2978 // is fine for CodeView (and PDB). In practice, however, the Microsoft
2979 // debuggers don't handle missing end columns well, so it's better not to
2980 // include any column info.
2981 if (Args.hasFlag(options::OPT_gcolumn_info, options::OPT_gno_column_info,
Paul Robinsona8280812017-09-29 21:25:07 +00002982 /*Default=*/!(IsWindowsMSVC && EmitCodeView) &&
2983 DebuggerTuning != llvm::DebuggerKind::SCE))
Saleem Abdulrasool9934eab2017-09-03 04:46:59 +00002984 CmdArgs.push_back("-dwarf-column-info");
2985
2986 // FIXME: Move backend command line options to the module.
2987 // If -gline-tables-only is the last option it wins.
2988 if (DebugInfoKind != codegenoptions::DebugLineTablesOnly &&
2989 Args.hasArg(options::OPT_gmodules)) {
2990 DebugInfoKind = codegenoptions::LimitedDebugInfo;
2991 CmdArgs.push_back("-dwarf-ext-refs");
2992 CmdArgs.push_back("-fmodule-format=obj");
2993 }
2994
2995 // -gsplit-dwarf should turn on -g and enable the backend dwarf
2996 // splitting and extraction.
2997 // FIXME: Currently only works on Linux.
2998 if (T.isOSLinux()) {
2999 if (!SplitDWARFInlining)
3000 CmdArgs.push_back("-fno-split-dwarf-inlining");
3001
3002 if (SplitDWARFArg) {
3003 if (DebugInfoKind == codegenoptions::NoDebugInfo)
3004 DebugInfoKind = codegenoptions::LimitedDebugInfo;
3005 CmdArgs.push_back("-enable-split-dwarf");
3006 }
3007 }
3008
3009 // After we've dealt with all combinations of things that could
3010 // make DebugInfoKind be other than None or DebugLineTablesOnly,
3011 // figure out if we need to "upgrade" it to standalone debug info.
3012 // We parse these two '-f' options whether or not they will be used,
3013 // to claim them even if you wrote "-fstandalone-debug -gline-tables-only"
3014 bool NeedFullDebug = Args.hasFlag(options::OPT_fstandalone_debug,
3015 options::OPT_fno_standalone_debug,
3016 TC.GetDefaultStandaloneDebug());
3017 if (DebugInfoKind == codegenoptions::LimitedDebugInfo && NeedFullDebug)
3018 DebugInfoKind = codegenoptions::FullDebugInfo;
3019
3020 RenderDebugEnablingArgs(Args, CmdArgs, DebugInfoKind, DWARFVersion,
3021 DebuggerTuning);
3022
3023 // -fdebug-macro turns on macro debug info generation.
3024 if (Args.hasFlag(options::OPT_fdebug_macro, options::OPT_fno_debug_macro,
3025 false))
3026 CmdArgs.push_back("-debug-info-macro");
3027
3028 // -ggnu-pubnames turns on gnu style pubnames in the backend.
Peter Collingbourneb52e2362017-09-12 21:50:41 +00003029 if (Args.hasArg(options::OPT_ggnu_pubnames))
3030 CmdArgs.push_back("-ggnu-pubnames");
Saleem Abdulrasool9934eab2017-09-03 04:46:59 +00003031
3032 // -gdwarf-aranges turns on the emission of the aranges section in the
3033 // backend.
Paul Robinsona8280812017-09-29 21:25:07 +00003034 // Always enabled for SCE tuning.
3035 if (Args.hasArg(options::OPT_gdwarf_aranges) ||
3036 DebuggerTuning == llvm::DebuggerKind::SCE) {
Saleem Abdulrasool9934eab2017-09-03 04:46:59 +00003037 CmdArgs.push_back("-backend-option");
3038 CmdArgs.push_back("-generate-arange-section");
3039 }
3040
3041 if (Args.hasFlag(options::OPT_fdebug_types_section,
3042 options::OPT_fno_debug_types_section, false)) {
3043 CmdArgs.push_back("-backend-option");
3044 CmdArgs.push_back("-generate-type-units");
3045 }
3046
Paul Robinson1787f812017-09-28 18:37:02 +00003047 // Decide how to render forward declarations of template instantiations.
3048 // SCE wants full descriptions, others just get them in the name.
3049 if (DebuggerTuning == llvm::DebuggerKind::SCE)
3050 CmdArgs.push_back("-debug-forward-template-params");
3051
Paul Robinsona8280812017-09-29 21:25:07 +00003052 // Do we need to explicitly import anonymous namespaces into the parent scope?
3053 if (DebuggerTuning == llvm::DebuggerKind::SCE)
3054 CmdArgs.push_back("-dwarf-explicit-import");
3055
Saleem Abdulrasool9934eab2017-09-03 04:46:59 +00003056 RenderDebugInfoCompressionArgs(Args, CmdArgs, D);
3057}
3058
David L. Jonesf561aba2017-03-08 01:02:16 +00003059void Clang::ConstructJob(Compilation &C, const JobAction &JA,
3060 const InputInfo &Output, const InputInfoList &Inputs,
3061 const ArgList &Args, const char *LinkingOutput) const {
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00003062 const llvm::Triple &RawTriple = getToolChain().getTriple();
David L. Jonesf561aba2017-03-08 01:02:16 +00003063 const llvm::Triple &Triple = getToolChain().getEffectiveTriple();
3064 const std::string &TripleStr = Triple.getTriple();
3065
3066 bool KernelOrKext =
3067 Args.hasArg(options::OPT_mkernel, options::OPT_fapple_kext);
3068 const Driver &D = getToolChain().getDriver();
3069 ArgStringList CmdArgs;
3070
3071 // Check number of inputs for sanity. We need at least one input.
3072 assert(Inputs.size() >= 1 && "Must have at least one input.");
3073 const InputInfo &Input = Inputs[0];
3074 // CUDA compilation may have multiple inputs (source file + results of
3075 // device-side compilations). OpenMP device jobs also take the host IR as a
3076 // second input. All other jobs are expected to have exactly one
3077 // input.
3078 bool IsCuda = JA.isOffloading(Action::OFK_Cuda);
3079 bool IsOpenMPDevice = JA.isDeviceOffloading(Action::OFK_OpenMP);
3080 assert((IsCuda || (IsOpenMPDevice && Inputs.size() == 2) ||
3081 Inputs.size() == 1) &&
3082 "Unable to handle multiple inputs.");
3083
Saleem Abdulrasool729379a2017-10-06 23:09:55 +00003084 const llvm::Triple *AuxTriple =
3085 IsCuda ? getToolChain().getAuxTriple() : nullptr;
3086
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00003087 bool IsWindowsGNU = RawTriple.isWindowsGNUEnvironment();
3088 bool IsWindowsCygnus = RawTriple.isWindowsCygwinEnvironment();
3089 bool IsWindowsMSVC = RawTriple.isWindowsMSVCEnvironment();
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00003090 bool IsIAMCU = RawTriple.isOSIAMCU();
David L. Jonesf561aba2017-03-08 01:02:16 +00003091
3092 // Adjust IsWindowsXYZ for CUDA compilations. Even when compiling in device
3093 // mode (i.e., getToolchain().getTriple() is NVPTX, not Windows), we need to
3094 // pass Windows-specific flags to cc1.
3095 if (IsCuda) {
David L. Jonesf561aba2017-03-08 01:02:16 +00003096 IsWindowsMSVC |= AuxTriple && AuxTriple->isWindowsMSVCEnvironment();
3097 IsWindowsGNU |= AuxTriple && AuxTriple->isWindowsGNUEnvironment();
3098 IsWindowsCygnus |= AuxTriple && AuxTriple->isWindowsCygwinEnvironment();
3099 }
3100
3101 // C++ is not supported for IAMCU.
3102 if (IsIAMCU && types::isCXX(Input.getType()))
3103 D.Diag(diag::err_drv_clang_unsupported) << "C++ for IAMCU";
3104
3105 // Invoke ourselves in -cc1 mode.
3106 //
3107 // FIXME: Implement custom jobs for internal actions.
3108 CmdArgs.push_back("-cc1");
3109
3110 // Add the "effective" target triple.
3111 CmdArgs.push_back("-triple");
3112 CmdArgs.push_back(Args.MakeArgString(TripleStr));
3113
3114 if (const Arg *MJ = Args.getLastArg(options::OPT_MJ)) {
3115 DumpCompilationDatabase(C, MJ->getValue(), TripleStr, Output, Input, Args);
3116 Args.ClaimAllArgs(options::OPT_MJ);
3117 }
3118
3119 if (IsCuda) {
3120 // We have to pass the triple of the host if compiling for a CUDA device and
3121 // vice-versa.
3122 std::string NormalizedTriple;
3123 if (JA.isDeviceOffloading(Action::OFK_Cuda))
3124 NormalizedTriple = C.getSingleOffloadToolChain<Action::OFK_Host>()
3125 ->getTriple()
3126 .normalize();
3127 else
3128 NormalizedTriple = C.getSingleOffloadToolChain<Action::OFK_Cuda>()
3129 ->getTriple()
3130 .normalize();
3131
3132 CmdArgs.push_back("-aux-triple");
3133 CmdArgs.push_back(Args.MakeArgString(NormalizedTriple));
3134 }
3135
Gheorghe-Teodor Bercea59d7b772017-06-29 15:49:03 +00003136 if (IsOpenMPDevice) {
3137 // We have to pass the triple of the host if compiling for an OpenMP device.
3138 std::string NormalizedTriple =
3139 C.getSingleOffloadToolChain<Action::OFK_Host>()
3140 ->getTriple()
3141 .normalize();
3142 CmdArgs.push_back("-aux-triple");
3143 CmdArgs.push_back(Args.MakeArgString(NormalizedTriple));
3144 }
3145
David L. Jonesf561aba2017-03-08 01:02:16 +00003146 if (Triple.isOSWindows() && (Triple.getArch() == llvm::Triple::arm ||
3147 Triple.getArch() == llvm::Triple::thumb)) {
3148 unsigned Offset = Triple.getArch() == llvm::Triple::arm ? 4 : 6;
3149 unsigned Version;
3150 Triple.getArchName().substr(Offset).getAsInteger(10, Version);
3151 if (Version < 7)
3152 D.Diag(diag::err_target_unsupported_arch) << Triple.getArchName()
3153 << TripleStr;
3154 }
3155
3156 // Push all default warning arguments that are specific to
3157 // the given target. These come before user provided warning options
3158 // are provided.
3159 getToolChain().addClangWarningOptions(CmdArgs);
3160
3161 // Select the appropriate action.
3162 RewriteKind rewriteKind = RK_None;
3163
3164 if (isa<AnalyzeJobAction>(JA)) {
3165 assert(JA.getType() == types::TY_Plist && "Invalid output type.");
3166 CmdArgs.push_back("-analyze");
3167 } else if (isa<MigrateJobAction>(JA)) {
3168 CmdArgs.push_back("-migrate");
3169 } else if (isa<PreprocessJobAction>(JA)) {
3170 if (Output.getType() == types::TY_Dependencies)
3171 CmdArgs.push_back("-Eonly");
3172 else {
3173 CmdArgs.push_back("-E");
3174 if (Args.hasArg(options::OPT_rewrite_objc) &&
3175 !Args.hasArg(options::OPT_g_Group))
3176 CmdArgs.push_back("-P");
3177 }
3178 } else if (isa<AssembleJobAction>(JA)) {
3179 CmdArgs.push_back("-emit-obj");
3180
3181 CollectArgsForIntegratedAssembler(C, Args, CmdArgs, D);
3182
3183 // Also ignore explicit -force_cpusubtype_ALL option.
3184 (void)Args.hasArg(options::OPT_force__cpusubtype__ALL);
3185 } else if (isa<PrecompileJobAction>(JA)) {
3186 // Use PCH if the user requested it.
3187 bool UsePCH = D.CCCUsePCH;
3188
3189 if (JA.getType() == types::TY_Nothing)
3190 CmdArgs.push_back("-fsyntax-only");
3191 else if (JA.getType() == types::TY_ModuleFile)
3192 CmdArgs.push_back("-emit-module-interface");
3193 else if (UsePCH)
3194 CmdArgs.push_back("-emit-pch");
3195 else
3196 CmdArgs.push_back("-emit-pth");
3197 } else if (isa<VerifyPCHJobAction>(JA)) {
3198 CmdArgs.push_back("-verify-pch");
3199 } else {
3200 assert((isa<CompileJobAction>(JA) || isa<BackendJobAction>(JA)) &&
3201 "Invalid action for clang tool.");
3202 if (JA.getType() == types::TY_Nothing) {
3203 CmdArgs.push_back("-fsyntax-only");
3204 } else if (JA.getType() == types::TY_LLVM_IR ||
3205 JA.getType() == types::TY_LTO_IR) {
3206 CmdArgs.push_back("-emit-llvm");
3207 } else if (JA.getType() == types::TY_LLVM_BC ||
3208 JA.getType() == types::TY_LTO_BC) {
3209 CmdArgs.push_back("-emit-llvm-bc");
3210 } else if (JA.getType() == types::TY_PP_Asm) {
3211 CmdArgs.push_back("-S");
3212 } else if (JA.getType() == types::TY_AST) {
3213 CmdArgs.push_back("-emit-pch");
3214 } else if (JA.getType() == types::TY_ModuleFile) {
3215 CmdArgs.push_back("-module-file-info");
3216 } else if (JA.getType() == types::TY_RewrittenObjC) {
3217 CmdArgs.push_back("-rewrite-objc");
3218 rewriteKind = RK_NonFragile;
3219 } else if (JA.getType() == types::TY_RewrittenLegacyObjC) {
3220 CmdArgs.push_back("-rewrite-objc");
3221 rewriteKind = RK_Fragile;
3222 } else {
3223 assert(JA.getType() == types::TY_PP_Asm && "Unexpected output type!");
3224 }
3225
3226 // Preserve use-list order by default when emitting bitcode, so that
3227 // loading the bitcode up in 'opt' or 'llc' and running passes gives the
3228 // same result as running passes here. For LTO, we don't need to preserve
3229 // the use-list order, since serialization to bitcode is part of the flow.
3230 if (JA.getType() == types::TY_LLVM_BC)
3231 CmdArgs.push_back("-emit-llvm-uselists");
3232
3233 if (D.isUsingLTO()) {
3234 Args.AddLastArg(CmdArgs, options::OPT_flto, options::OPT_flto_EQ);
3235
Paul Robinsond23f2a82017-07-13 21:25:47 +00003236 // The Darwin and PS4 linkers currently use the legacy LTO API, which
3237 // does not support LTO unit features (CFI, whole program vtable opt)
3238 // under ThinLTO.
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00003239 if (!(RawTriple.isOSDarwin() || RawTriple.isPS4()) ||
David L. Jonesf561aba2017-03-08 01:02:16 +00003240 D.getLTOMode() == LTOK_Full)
3241 CmdArgs.push_back("-flto-unit");
3242 }
3243 }
3244
3245 if (const Arg *A = Args.getLastArg(options::OPT_fthinlto_index_EQ)) {
3246 if (!types::isLLVMIR(Input.getType()))
3247 D.Diag(diag::err_drv_argument_only_allowed_with) << A->getAsString(Args)
3248 << "-x ir";
3249 Args.AddLastArg(CmdArgs, options::OPT_fthinlto_index_EQ);
3250 }
3251
3252 // Embed-bitcode option.
3253 if (C.getDriver().embedBitcodeInObject() && !C.getDriver().isUsingLTO() &&
3254 (isa<BackendJobAction>(JA) || isa<AssembleJobAction>(JA))) {
3255 // Add flags implied by -fembed-bitcode.
3256 Args.AddLastArg(CmdArgs, options::OPT_fembed_bitcode_EQ);
3257 // Disable all llvm IR level optimizations.
3258 CmdArgs.push_back("-disable-llvm-passes");
3259 }
3260 if (C.getDriver().embedBitcodeMarkerOnly() && !C.getDriver().isUsingLTO())
3261 CmdArgs.push_back("-fembed-bitcode=marker");
3262
3263 // We normally speed up the clang process a bit by skipping destructors at
3264 // exit, but when we're generating diagnostics we can rely on some of the
3265 // cleanup.
3266 if (!C.isForDiagnostics())
3267 CmdArgs.push_back("-disable-free");
3268
3269// Disable the verification pass in -asserts builds.
3270#ifdef NDEBUG
3271 CmdArgs.push_back("-disable-llvm-verifier");
3272 // Discard LLVM value names in -asserts builds.
3273 CmdArgs.push_back("-discard-value-names");
3274#endif
3275
3276 // Set the main file name, so that debug info works even with
3277 // -save-temps.
3278 CmdArgs.push_back("-main-file-name");
3279 CmdArgs.push_back(getBaseInputName(Args, Input));
3280
3281 // Some flags which affect the language (via preprocessor
3282 // defines).
3283 if (Args.hasArg(options::OPT_static))
3284 CmdArgs.push_back("-static-define");
3285
Saleem Abdulrasool24aafa52017-08-30 14:18:08 +00003286 if (isa<AnalyzeJobAction>(JA))
3287 RenderAnalyzerOptions(Args, CmdArgs, Triple, Input);
David L. Jonesf561aba2017-03-08 01:02:16 +00003288
3289 CheckCodeGenerationOptions(D, Args);
3290
3291 llvm::Reloc::Model RelocationModel;
3292 unsigned PICLevel;
3293 bool IsPIE;
3294 std::tie(RelocationModel, PICLevel, IsPIE) =
3295 ParsePICArgs(getToolChain(), Args);
3296
3297 const char *RMName = RelocationModelName(RelocationModel);
3298
3299 if ((RelocationModel == llvm::Reloc::ROPI ||
3300 RelocationModel == llvm::Reloc::ROPI_RWPI) &&
3301 types::isCXX(Input.getType()) &&
3302 !Args.hasArg(options::OPT_fallow_unsupported))
3303 D.Diag(diag::err_drv_ropi_incompatible_with_cxx);
3304
3305 if (RMName) {
3306 CmdArgs.push_back("-mrelocation-model");
3307 CmdArgs.push_back(RMName);
3308 }
3309 if (PICLevel > 0) {
3310 CmdArgs.push_back("-pic-level");
3311 CmdArgs.push_back(PICLevel == 1 ? "1" : "2");
3312 if (IsPIE)
3313 CmdArgs.push_back("-pic-is-pie");
3314 }
3315
3316 if (Arg *A = Args.getLastArg(options::OPT_meabi)) {
3317 CmdArgs.push_back("-meabi");
3318 CmdArgs.push_back(A->getValue());
3319 }
3320
3321 CmdArgs.push_back("-mthread-model");
Jonathan Roelofs6fbb9e02017-09-07 22:01:25 +00003322 if (Arg *A = Args.getLastArg(options::OPT_mthread_model)) {
3323 if (!getToolChain().isThreadModelSupported(A->getValue()))
3324 D.Diag(diag::err_drv_invalid_thread_model_for_target)
3325 << A->getValue() << A->getAsString(Args);
David L. Jonesf561aba2017-03-08 01:02:16 +00003326 CmdArgs.push_back(A->getValue());
Jonathan Roelofs6fbb9e02017-09-07 22:01:25 +00003327 }
David L. Jonesf561aba2017-03-08 01:02:16 +00003328 else
3329 CmdArgs.push_back(Args.MakeArgString(getToolChain().getThreadModel()));
3330
3331 Args.AddLastArg(CmdArgs, options::OPT_fveclib);
3332
3333 if (!Args.hasFlag(options::OPT_fmerge_all_constants,
3334 options::OPT_fno_merge_all_constants))
3335 CmdArgs.push_back("-fno-merge-all-constants");
3336
3337 // LLVM Code Generator Options.
3338
3339 if (Args.hasArg(options::OPT_frewrite_map_file) ||
3340 Args.hasArg(options::OPT_frewrite_map_file_EQ)) {
3341 for (const Arg *A : Args.filtered(options::OPT_frewrite_map_file,
3342 options::OPT_frewrite_map_file_EQ)) {
3343 StringRef Map = A->getValue();
3344 if (!llvm::sys::fs::exists(Map)) {
3345 D.Diag(diag::err_drv_no_such_file) << Map;
3346 } else {
3347 CmdArgs.push_back("-frewrite-map-file");
3348 CmdArgs.push_back(A->getValue());
3349 A->claim();
3350 }
3351 }
3352 }
3353
3354 if (Arg *A = Args.getLastArg(options::OPT_Wframe_larger_than_EQ)) {
3355 StringRef v = A->getValue();
3356 CmdArgs.push_back("-mllvm");
3357 CmdArgs.push_back(Args.MakeArgString("-warn-stack-size=" + v));
3358 A->claim();
3359 }
3360
3361 if (!Args.hasFlag(options::OPT_fjump_tables, options::OPT_fno_jump_tables,
3362 true))
3363 CmdArgs.push_back("-fno-jump-tables");
3364
Dehao Chen5e97f232017-08-24 21:37:33 +00003365 if (Args.hasFlag(options::OPT_fprofile_sample_accurate,
3366 options::OPT_fno_profile_sample_accurate, false))
3367 CmdArgs.push_back("-fprofile-sample-accurate");
3368
David L. Jonesf561aba2017-03-08 01:02:16 +00003369 if (!Args.hasFlag(options::OPT_fpreserve_as_comments,
3370 options::OPT_fno_preserve_as_comments, true))
3371 CmdArgs.push_back("-fno-preserve-as-comments");
3372
3373 if (Arg *A = Args.getLastArg(options::OPT_mregparm_EQ)) {
3374 CmdArgs.push_back("-mregparm");
3375 CmdArgs.push_back(A->getValue());
3376 }
3377
3378 if (Arg *A = Args.getLastArg(options::OPT_fpcc_struct_return,
3379 options::OPT_freg_struct_return)) {
3380 if (getToolChain().getArch() != llvm::Triple::x86) {
3381 D.Diag(diag::err_drv_unsupported_opt_for_target)
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00003382 << A->getSpelling() << RawTriple.str();
David L. Jonesf561aba2017-03-08 01:02:16 +00003383 } else if (A->getOption().matches(options::OPT_fpcc_struct_return)) {
3384 CmdArgs.push_back("-fpcc-struct-return");
3385 } else {
3386 assert(A->getOption().matches(options::OPT_freg_struct_return));
3387 CmdArgs.push_back("-freg-struct-return");
3388 }
3389 }
3390
3391 if (Args.hasFlag(options::OPT_mrtd, options::OPT_mno_rtd, false))
3392 CmdArgs.push_back("-fdefault-calling-conv=stdcall");
3393
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00003394 if (shouldUseFramePointer(Args, RawTriple))
David L. Jonesf561aba2017-03-08 01:02:16 +00003395 CmdArgs.push_back("-mdisable-fp-elim");
3396 if (!Args.hasFlag(options::OPT_fzero_initialized_in_bss,
3397 options::OPT_fno_zero_initialized_in_bss))
3398 CmdArgs.push_back("-mno-zero-initialized-in-bss");
3399
3400 bool OFastEnabled = isOptimizationLevelFast(Args);
3401 // If -Ofast is the optimization level, then -fstrict-aliasing should be
3402 // enabled. This alias option is being used to simplify the hasFlag logic.
3403 OptSpecifier StrictAliasingAliasOption =
3404 OFastEnabled ? options::OPT_Ofast : options::OPT_fstrict_aliasing;
3405 // We turn strict aliasing off by default if we're in CL mode, since MSVC
3406 // doesn't do any TBAA.
Saleem Abdulrasool33d41382017-08-29 23:59:06 +00003407 bool TBAAOnByDefault = !D.IsCLMode();
David L. Jonesf561aba2017-03-08 01:02:16 +00003408 if (!Args.hasFlag(options::OPT_fstrict_aliasing, StrictAliasingAliasOption,
3409 options::OPT_fno_strict_aliasing, TBAAOnByDefault))
3410 CmdArgs.push_back("-relaxed-aliasing");
3411 if (!Args.hasFlag(options::OPT_fstruct_path_tbaa,
3412 options::OPT_fno_struct_path_tbaa))
3413 CmdArgs.push_back("-no-struct-path-tbaa");
3414 if (Args.hasFlag(options::OPT_fstrict_enums, options::OPT_fno_strict_enums,
3415 false))
3416 CmdArgs.push_back("-fstrict-enums");
3417 if (!Args.hasFlag(options::OPT_fstrict_return, options::OPT_fno_strict_return,
3418 true))
3419 CmdArgs.push_back("-fno-strict-return");
Alex Lorenz1be800c52017-04-19 08:58:56 +00003420 if (Args.hasFlag(options::OPT_fallow_editor_placeholders,
3421 options::OPT_fno_allow_editor_placeholders, false))
3422 CmdArgs.push_back("-fallow-editor-placeholders");
David L. Jonesf561aba2017-03-08 01:02:16 +00003423 if (Args.hasFlag(options::OPT_fstrict_vtable_pointers,
3424 options::OPT_fno_strict_vtable_pointers,
3425 false))
3426 CmdArgs.push_back("-fstrict-vtable-pointers");
3427 if (!Args.hasFlag(options::OPT_foptimize_sibling_calls,
3428 options::OPT_fno_optimize_sibling_calls))
3429 CmdArgs.push_back("-mdisable-tail-calls");
3430
Wei Mi9b3d6272017-10-16 16:50:27 +00003431 Args.AddLastArg(CmdArgs, options::OPT_ffine_grained_bitfield_accesses,
3432 options::OPT_fno_fine_grained_bitfield_accesses);
3433
David L. Jonesf561aba2017-03-08 01:02:16 +00003434 // Handle segmented stacks.
3435 if (Args.hasArg(options::OPT_fsplit_stack))
3436 CmdArgs.push_back("-split-stacks");
3437
Saleem Abdulrasoole6d219d2017-09-01 22:04:24 +00003438 RenderFloatingPointOptions(getToolChain(), D, OFastEnabled, Args, CmdArgs);
David L. Jonesf561aba2017-03-08 01:02:16 +00003439
3440 // Decide whether to use verbose asm. Verbose assembly is the default on
3441 // toolchains which have the integrated assembler on by default.
3442 bool IsIntegratedAssemblerDefault =
3443 getToolChain().IsIntegratedAssemblerDefault();
3444 if (Args.hasFlag(options::OPT_fverbose_asm, options::OPT_fno_verbose_asm,
3445 IsIntegratedAssemblerDefault) ||
3446 Args.hasArg(options::OPT_dA))
3447 CmdArgs.push_back("-masm-verbose");
3448
3449 if (!Args.hasFlag(options::OPT_fintegrated_as, options::OPT_fno_integrated_as,
3450 IsIntegratedAssemblerDefault))
3451 CmdArgs.push_back("-no-integrated-as");
3452
3453 if (Args.hasArg(options::OPT_fdebug_pass_structure)) {
3454 CmdArgs.push_back("-mdebug-pass");
3455 CmdArgs.push_back("Structure");
3456 }
3457 if (Args.hasArg(options::OPT_fdebug_pass_arguments)) {
3458 CmdArgs.push_back("-mdebug-pass");
3459 CmdArgs.push_back("Arguments");
3460 }
3461
3462 // Enable -mconstructor-aliases except on darwin, where we have to work around
3463 // a linker bug (see <rdar://problem/7651567>), and CUDA device code, where
3464 // aliases aren't supported.
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00003465 if (!RawTriple.isOSDarwin() && !RawTriple.isNVPTX())
David L. Jonesf561aba2017-03-08 01:02:16 +00003466 CmdArgs.push_back("-mconstructor-aliases");
3467
3468 // Darwin's kernel doesn't support guard variables; just die if we
3469 // try to use them.
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00003470 if (KernelOrKext && RawTriple.isOSDarwin())
David L. Jonesf561aba2017-03-08 01:02:16 +00003471 CmdArgs.push_back("-fforbid-guard-variables");
3472
3473 if (Args.hasFlag(options::OPT_mms_bitfields, options::OPT_mno_ms_bitfields,
3474 false)) {
3475 CmdArgs.push_back("-mms-bitfields");
3476 }
3477
3478 if (Args.hasFlag(options::OPT_mpie_copy_relocations,
3479 options::OPT_mno_pie_copy_relocations,
3480 false)) {
3481 CmdArgs.push_back("-mpie-copy-relocations");
3482 }
3483
Sriraman Tallam5c651482017-11-07 19:37:51 +00003484 if (Args.hasFlag(options::OPT_fno_plt, options::OPT_fplt, false)) {
3485 CmdArgs.push_back("-fno-plt");
3486 }
3487
Vedant Kumardf502592017-09-12 22:51:53 +00003488 // -fhosted is default.
3489 // TODO: Audit uses of KernelOrKext and see where it'd be more appropriate to
3490 // use Freestanding.
3491 bool Freestanding =
3492 Args.hasFlag(options::OPT_ffreestanding, options::OPT_fhosted, false) ||
3493 KernelOrKext;
3494 if (Freestanding)
3495 CmdArgs.push_back("-ffreestanding");
3496
David L. Jonesf561aba2017-03-08 01:02:16 +00003497 // This is a coarse approximation of what llvm-gcc actually does, both
3498 // -fasynchronous-unwind-tables and -fnon-call-exceptions interact in more
3499 // complicated ways.
3500 bool AsynchronousUnwindTables =
3501 Args.hasFlag(options::OPT_fasynchronous_unwind_tables,
3502 options::OPT_fno_asynchronous_unwind_tables,
Akira Hatanakab72e35a2017-08-03 23:55:42 +00003503 (getToolChain().IsUnwindTablesDefault(Args) ||
David L. Jonesf561aba2017-03-08 01:02:16 +00003504 getToolChain().getSanitizerArgs().needsUnwindTables()) &&
Vedant Kumardf502592017-09-12 22:51:53 +00003505 !Freestanding);
David L. Jonesf561aba2017-03-08 01:02:16 +00003506 if (Args.hasFlag(options::OPT_funwind_tables, options::OPT_fno_unwind_tables,
3507 AsynchronousUnwindTables))
3508 CmdArgs.push_back("-munwind-tables");
3509
Gheorghe-Teodor Berceaf0f29602017-07-06 16:22:21 +00003510 getToolChain().addClangTargetOptions(Args, CmdArgs,
3511 JA.getOffloadingDeviceKind());
David L. Jonesf561aba2017-03-08 01:02:16 +00003512
3513 if (Arg *A = Args.getLastArg(options::OPT_flimited_precision_EQ)) {
3514 CmdArgs.push_back("-mlimit-float-precision");
3515 CmdArgs.push_back(A->getValue());
3516 }
3517
3518 // FIXME: Handle -mtune=.
3519 (void)Args.hasArg(options::OPT_mtune_EQ);
3520
3521 if (Arg *A = Args.getLastArg(options::OPT_mcmodel_EQ)) {
3522 CmdArgs.push_back("-mcode-model");
3523 CmdArgs.push_back(A->getValue());
3524 }
3525
3526 // Add the target cpu
3527 std::string CPU = getCPUName(Args, Triple, /*FromAs*/ false);
3528 if (!CPU.empty()) {
3529 CmdArgs.push_back("-target-cpu");
3530 CmdArgs.push_back(Args.MakeArgString(CPU));
3531 }
3532
Saleem Abdulrasool6c3ed7b2017-09-03 04:47:00 +00003533 RenderTargetOptions(Triple, Args, KernelOrKext, CmdArgs);
David L. Jonesf561aba2017-03-08 01:02:16 +00003534
David L. Jonesf561aba2017-03-08 01:02:16 +00003535 // These two are potentially updated by AddClangCLArgs.
3536 codegenoptions::DebugInfoKind DebugInfoKind = codegenoptions::NoDebugInfo;
3537 bool EmitCodeView = false;
3538
3539 // Add clang-cl arguments.
3540 types::ID InputType = Input.getType();
Saleem Abdulrasool33d41382017-08-29 23:59:06 +00003541 if (D.IsCLMode())
David L. Jonesf561aba2017-03-08 01:02:16 +00003542 AddClangCLArgs(Args, InputType, CmdArgs, &DebugInfoKind, &EmitCodeView);
3543
Saleem Abdulrasool9934eab2017-09-03 04:46:59 +00003544 const Arg *SplitDWARFArg = nullptr;
3545 RenderDebugOptions(getToolChain(), D, RawTriple, Args, EmitCodeView,
3546 IsWindowsMSVC, CmdArgs, DebugInfoKind, SplitDWARFArg);
3547
3548 // Add the split debug info name to the command lines here so we
3549 // can propagate it to the backend.
3550 bool SplitDWARF = SplitDWARFArg && RawTriple.isOSLinux() &&
3551 (isa<AssembleJobAction>(JA) || isa<CompileJobAction>(JA) ||
3552 isa<BackendJobAction>(JA));
3553 const char *SplitDWARFOut;
3554 if (SplitDWARF) {
3555 CmdArgs.push_back("-split-dwarf-file");
3556 SplitDWARFOut = SplitDebugName(Args, Input);
3557 CmdArgs.push_back(SplitDWARFOut);
3558 }
3559
David L. Jonesf561aba2017-03-08 01:02:16 +00003560 // Pass the linker version in use.
3561 if (Arg *A = Args.getLastArg(options::OPT_mlinker_version_EQ)) {
3562 CmdArgs.push_back("-target-linker-version");
3563 CmdArgs.push_back(A->getValue());
3564 }
3565
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00003566 if (!shouldUseLeafFramePointer(Args, RawTriple))
David L. Jonesf561aba2017-03-08 01:02:16 +00003567 CmdArgs.push_back("-momit-leaf-frame-pointer");
3568
3569 // Explicitly error on some things we know we don't support and can't just
3570 // ignore.
3571 if (!Args.hasArg(options::OPT_fallow_unsupported)) {
3572 Arg *Unsupported;
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00003573 if (types::isCXX(InputType) && RawTriple.isOSDarwin() &&
David L. Jonesf561aba2017-03-08 01:02:16 +00003574 getToolChain().getArch() == llvm::Triple::x86) {
3575 if ((Unsupported = Args.getLastArg(options::OPT_fapple_kext)) ||
3576 (Unsupported = Args.getLastArg(options::OPT_mkernel)))
3577 D.Diag(diag::err_drv_clang_unsupported_opt_cxx_darwin_i386)
3578 << Unsupported->getOption().getName();
3579 }
Eric Christopher758aad72017-03-21 22:06:18 +00003580 // The faltivec option has been superseded by the maltivec option.
3581 if ((Unsupported = Args.getLastArg(options::OPT_faltivec)))
3582 D.Diag(diag::err_drv_clang_unsupported_opt_faltivec)
3583 << Unsupported->getOption().getName()
3584 << "please use -maltivec and include altivec.h explicitly";
3585 if ((Unsupported = Args.getLastArg(options::OPT_fno_altivec)))
3586 D.Diag(diag::err_drv_clang_unsupported_opt_faltivec)
3587 << Unsupported->getOption().getName() << "please use -mno-altivec";
David L. Jonesf561aba2017-03-08 01:02:16 +00003588 }
3589
3590 Args.AddAllArgs(CmdArgs, options::OPT_v);
3591 Args.AddLastArg(CmdArgs, options::OPT_H);
3592 if (D.CCPrintHeaders && !D.CCGenDiagnostics) {
3593 CmdArgs.push_back("-header-include-file");
3594 CmdArgs.push_back(D.CCPrintHeadersFilename ? D.CCPrintHeadersFilename
3595 : "-");
3596 }
3597 Args.AddLastArg(CmdArgs, options::OPT_P);
3598 Args.AddLastArg(CmdArgs, options::OPT_print_ivar_layout);
3599
3600 if (D.CCLogDiagnostics && !D.CCGenDiagnostics) {
3601 CmdArgs.push_back("-diagnostic-log-file");
3602 CmdArgs.push_back(D.CCLogDiagnosticsFilename ? D.CCLogDiagnosticsFilename
3603 : "-");
3604 }
3605
David L. Jonesf561aba2017-03-08 01:02:16 +00003606 bool UseSeparateSections = isUseSeparateSections(Triple);
3607
3608 if (Args.hasFlag(options::OPT_ffunction_sections,
3609 options::OPT_fno_function_sections, UseSeparateSections)) {
3610 CmdArgs.push_back("-ffunction-sections");
3611 }
3612
3613 if (Args.hasFlag(options::OPT_fdata_sections, options::OPT_fno_data_sections,
3614 UseSeparateSections)) {
3615 CmdArgs.push_back("-fdata-sections");
3616 }
3617
3618 if (!Args.hasFlag(options::OPT_funique_section_names,
3619 options::OPT_fno_unique_section_names, true))
3620 CmdArgs.push_back("-fno-unique-section-names");
3621
Hans Wennborg14e8a5a2017-11-21 17:30:34 +00003622 if (auto *A = Args.getLastArg(
3623 options::OPT_finstrument_functions,
3624 options::OPT_finstrument_functions_after_inlining,
3625 options::OPT_finstrument_function_entry_bare))
3626 A->render(Args, CmdArgs);
David L. Jonesf561aba2017-03-08 01:02:16 +00003627
Artem Belevichc30bcad2018-01-24 17:41:02 +00003628 // NVPTX doesn't support PGO or coverage. There's no runtime support for
3629 // sampling, overhead of call arc collection is way too high and there's no
3630 // way to collect the output.
3631 if (!Triple.isNVPTX())
3632 addPGOAndCoverageFlags(C, D, Output, Args, CmdArgs);
David L. Jonesf561aba2017-03-08 01:02:16 +00003633
Richard Smithf667ad52017-08-26 01:04:35 +00003634 if (auto *ABICompatArg = Args.getLastArg(options::OPT_fclang_abi_compat_EQ))
3635 ABICompatArg->render(Args, CmdArgs);
3636
David L. Jonesf561aba2017-03-08 01:02:16 +00003637 // Add runtime flag for PS4 when PGO or Coverage are enabled.
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00003638 if (RawTriple.isPS4CPU())
David L. Jonesf561aba2017-03-08 01:02:16 +00003639 PS4cpu::addProfileRTArgs(getToolChain(), Args, CmdArgs);
3640
3641 // Pass options for controlling the default header search paths.
3642 if (Args.hasArg(options::OPT_nostdinc)) {
3643 CmdArgs.push_back("-nostdsysteminc");
3644 CmdArgs.push_back("-nobuiltininc");
3645 } else {
3646 if (Args.hasArg(options::OPT_nostdlibinc))
3647 CmdArgs.push_back("-nostdsysteminc");
3648 Args.AddLastArg(CmdArgs, options::OPT_nostdincxx);
3649 Args.AddLastArg(CmdArgs, options::OPT_nobuiltininc);
3650 }
3651
3652 // Pass the path to compiler resource files.
3653 CmdArgs.push_back("-resource-dir");
3654 CmdArgs.push_back(D.ResourceDir.c_str());
3655
3656 Args.AddLastArg(CmdArgs, options::OPT_working_directory);
3657
Saleem Abdulrasool0a322c62017-08-31 15:35:01 +00003658 RenderARCMigrateToolOptions(D, Args, CmdArgs);
David L. Jonesf561aba2017-03-08 01:02:16 +00003659
3660 // Add preprocessing options like -I, -D, etc. if we are using the
3661 // preprocessor.
3662 //
3663 // FIXME: Support -fpreprocessed
3664 if (types::getPreprocessedType(InputType) != types::TY_INVALID)
3665 AddPreprocessingOptions(C, JA, D, Args, CmdArgs, Output, Inputs);
3666
3667 // Don't warn about "clang -c -DPIC -fPIC test.i" because libtool.m4 assumes
3668 // that "The compiler can only warn and ignore the option if not recognized".
3669 // When building with ccache, it will pass -D options to clang even on
3670 // preprocessed inputs and configure concludes that -fPIC is not supported.
3671 Args.ClaimAllArgs(options::OPT_D);
3672
3673 // Manually translate -O4 to -O3; let clang reject others.
3674 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
3675 if (A->getOption().matches(options::OPT_O4)) {
3676 CmdArgs.push_back("-O3");
3677 D.Diag(diag::warn_O4_is_O3);
3678 } else {
3679 A->render(Args, CmdArgs);
3680 }
3681 }
3682
3683 // Warn about ignored options to clang.
3684 for (const Arg *A :
3685 Args.filtered(options::OPT_clang_ignored_gcc_optimization_f_Group)) {
3686 D.Diag(diag::warn_ignored_gcc_optimization) << A->getAsString(Args);
3687 A->claim();
3688 }
3689
Joerg Sonnenbergerc9199682017-07-01 21:36:21 +00003690 for (const Arg *A :
3691 Args.filtered(options::OPT_clang_ignored_legacy_options_Group)) {
3692 D.Diag(diag::warn_ignored_clang_option) << A->getAsString(Args);
3693 A->claim();
3694 }
3695
David L. Jonesf561aba2017-03-08 01:02:16 +00003696 claimNoWarnArgs(Args);
3697
3698 Args.AddAllArgs(CmdArgs, options::OPT_R_Group);
3699
3700 Args.AddAllArgs(CmdArgs, options::OPT_W_Group);
3701 if (Args.hasFlag(options::OPT_pedantic, options::OPT_no_pedantic, false))
3702 CmdArgs.push_back("-pedantic");
3703 Args.AddLastArg(CmdArgs, options::OPT_pedantic_errors);
3704 Args.AddLastArg(CmdArgs, options::OPT_w);
3705
3706 // Handle -{std, ansi, trigraphs} -- take the last of -{std, ansi}
3707 // (-ansi is equivalent to -std=c89 or -std=c++98).
3708 //
3709 // If a std is supplied, only add -trigraphs if it follows the
3710 // option.
3711 bool ImplyVCPPCXXVer = false;
3712 if (Arg *Std = Args.getLastArg(options::OPT_std_EQ, options::OPT_ansi)) {
3713 if (Std->getOption().matches(options::OPT_ansi))
3714 if (types::isCXX(InputType))
3715 CmdArgs.push_back("-std=c++98");
3716 else
3717 CmdArgs.push_back("-std=c89");
3718 else
3719 Std->render(Args, CmdArgs);
3720
3721 // If -f(no-)trigraphs appears after the language standard flag, honor it.
3722 if (Arg *A = Args.getLastArg(options::OPT_std_EQ, options::OPT_ansi,
3723 options::OPT_ftrigraphs,
3724 options::OPT_fno_trigraphs))
3725 if (A != Std)
3726 A->render(Args, CmdArgs);
3727 } else {
3728 // Honor -std-default.
3729 //
3730 // FIXME: Clang doesn't correctly handle -std= when the input language
3731 // doesn't match. For the time being just ignore this for C++ inputs;
3732 // eventually we want to do all the standard defaulting here instead of
3733 // splitting it between the driver and clang -cc1.
3734 if (!types::isCXX(InputType))
3735 Args.AddAllArgsTranslated(CmdArgs, options::OPT_std_default_EQ, "-std=",
3736 /*Joined=*/true);
3737 else if (IsWindowsMSVC)
3738 ImplyVCPPCXXVer = true;
3739
3740 Args.AddLastArg(CmdArgs, options::OPT_ftrigraphs,
3741 options::OPT_fno_trigraphs);
3742 }
3743
3744 // GCC's behavior for -Wwrite-strings is a bit strange:
3745 // * In C, this "warning flag" changes the types of string literals from
3746 // 'char[N]' to 'const char[N]', and thus triggers an unrelated warning
3747 // for the discarded qualifier.
3748 // * In C++, this is just a normal warning flag.
3749 //
3750 // Implementing this warning correctly in C is hard, so we follow GCC's
3751 // behavior for now. FIXME: Directly diagnose uses of a string literal as
3752 // a non-const char* in C, rather than using this crude hack.
3753 if (!types::isCXX(InputType)) {
3754 // FIXME: This should behave just like a warning flag, and thus should also
3755 // respect -Weverything, -Wno-everything, -Werror=write-strings, and so on.
3756 Arg *WriteStrings =
3757 Args.getLastArg(options::OPT_Wwrite_strings,
3758 options::OPT_Wno_write_strings, options::OPT_w);
3759 if (WriteStrings &&
3760 WriteStrings->getOption().matches(options::OPT_Wwrite_strings))
3761 CmdArgs.push_back("-fconst-strings");
3762 }
3763
3764 // GCC provides a macro definition '__DEPRECATED' when -Wdeprecated is active
3765 // during C++ compilation, which it is by default. GCC keeps this define even
3766 // in the presence of '-w', match this behavior bug-for-bug.
3767 if (types::isCXX(InputType) &&
3768 Args.hasFlag(options::OPT_Wdeprecated, options::OPT_Wno_deprecated,
3769 true)) {
3770 CmdArgs.push_back("-fdeprecated-macro");
3771 }
3772
3773 // Translate GCC's misnamer '-fasm' arguments to '-fgnu-keywords'.
3774 if (Arg *Asm = Args.getLastArg(options::OPT_fasm, options::OPT_fno_asm)) {
3775 if (Asm->getOption().matches(options::OPT_fasm))
3776 CmdArgs.push_back("-fgnu-keywords");
3777 else
3778 CmdArgs.push_back("-fno-gnu-keywords");
3779 }
3780
3781 if (ShouldDisableDwarfDirectory(Args, getToolChain()))
3782 CmdArgs.push_back("-fno-dwarf-directory-asm");
3783
3784 if (ShouldDisableAutolink(Args, getToolChain()))
3785 CmdArgs.push_back("-fno-autolink");
3786
3787 // Add in -fdebug-compilation-dir if necessary.
3788 addDebugCompDirArg(Args, CmdArgs);
3789
3790 for (const Arg *A : Args.filtered(options::OPT_fdebug_prefix_map_EQ)) {
3791 StringRef Map = A->getValue();
3792 if (Map.find('=') == StringRef::npos)
3793 D.Diag(diag::err_drv_invalid_argument_to_fdebug_prefix_map) << Map;
3794 else
3795 CmdArgs.push_back(Args.MakeArgString("-fdebug-prefix-map=" + Map));
3796 A->claim();
3797 }
3798
3799 if (Arg *A = Args.getLastArg(options::OPT_ftemplate_depth_,
3800 options::OPT_ftemplate_depth_EQ)) {
3801 CmdArgs.push_back("-ftemplate-depth");
3802 CmdArgs.push_back(A->getValue());
3803 }
3804
3805 if (Arg *A = Args.getLastArg(options::OPT_foperator_arrow_depth_EQ)) {
3806 CmdArgs.push_back("-foperator-arrow-depth");
3807 CmdArgs.push_back(A->getValue());
3808 }
3809
3810 if (Arg *A = Args.getLastArg(options::OPT_fconstexpr_depth_EQ)) {
3811 CmdArgs.push_back("-fconstexpr-depth");
3812 CmdArgs.push_back(A->getValue());
3813 }
3814
3815 if (Arg *A = Args.getLastArg(options::OPT_fconstexpr_steps_EQ)) {
3816 CmdArgs.push_back("-fconstexpr-steps");
3817 CmdArgs.push_back(A->getValue());
3818 }
3819
3820 if (Arg *A = Args.getLastArg(options::OPT_fbracket_depth_EQ)) {
3821 CmdArgs.push_back("-fbracket-depth");
3822 CmdArgs.push_back(A->getValue());
3823 }
3824
3825 if (Arg *A = Args.getLastArg(options::OPT_Wlarge_by_value_copy_EQ,
3826 options::OPT_Wlarge_by_value_copy_def)) {
3827 if (A->getNumValues()) {
3828 StringRef bytes = A->getValue();
3829 CmdArgs.push_back(Args.MakeArgString("-Wlarge-by-value-copy=" + bytes));
3830 } else
3831 CmdArgs.push_back("-Wlarge-by-value-copy=64"); // default value
3832 }
3833
3834 if (Args.hasArg(options::OPT_relocatable_pch))
3835 CmdArgs.push_back("-relocatable-pch");
3836
3837 if (Arg *A = Args.getLastArg(options::OPT_fconstant_string_class_EQ)) {
3838 CmdArgs.push_back("-fconstant-string-class");
3839 CmdArgs.push_back(A->getValue());
3840 }
3841
3842 if (Arg *A = Args.getLastArg(options::OPT_ftabstop_EQ)) {
3843 CmdArgs.push_back("-ftabstop");
3844 CmdArgs.push_back(A->getValue());
3845 }
3846
Sean Eveson5110d4f2018-01-08 13:42:26 +00003847 if (Args.hasFlag(options::OPT_fstack_size_section,
3848 options::OPT_fno_stack_size_section, RawTriple.isPS4()))
3849 CmdArgs.push_back("-fstack-size-section");
3850
David L. Jonesf561aba2017-03-08 01:02:16 +00003851 CmdArgs.push_back("-ferror-limit");
3852 if (Arg *A = Args.getLastArg(options::OPT_ferror_limit_EQ))
3853 CmdArgs.push_back(A->getValue());
3854 else
3855 CmdArgs.push_back("19");
3856
3857 if (Arg *A = Args.getLastArg(options::OPT_fmacro_backtrace_limit_EQ)) {
3858 CmdArgs.push_back("-fmacro-backtrace-limit");
3859 CmdArgs.push_back(A->getValue());
3860 }
3861
3862 if (Arg *A = Args.getLastArg(options::OPT_ftemplate_backtrace_limit_EQ)) {
3863 CmdArgs.push_back("-ftemplate-backtrace-limit");
3864 CmdArgs.push_back(A->getValue());
3865 }
3866
3867 if (Arg *A = Args.getLastArg(options::OPT_fconstexpr_backtrace_limit_EQ)) {
3868 CmdArgs.push_back("-fconstexpr-backtrace-limit");
3869 CmdArgs.push_back(A->getValue());
3870 }
3871
3872 if (Arg *A = Args.getLastArg(options::OPT_fspell_checking_limit_EQ)) {
3873 CmdArgs.push_back("-fspell-checking-limit");
3874 CmdArgs.push_back(A->getValue());
3875 }
3876
3877 // Pass -fmessage-length=.
3878 CmdArgs.push_back("-fmessage-length");
3879 if (Arg *A = Args.getLastArg(options::OPT_fmessage_length_EQ)) {
3880 CmdArgs.push_back(A->getValue());
3881 } else {
3882 // If -fmessage-length=N was not specified, determine whether this is a
3883 // terminal and, if so, implicitly define -fmessage-length appropriately.
3884 unsigned N = llvm::sys::Process::StandardErrColumns();
3885 CmdArgs.push_back(Args.MakeArgString(Twine(N)));
3886 }
3887
3888 // -fvisibility= and -fvisibility-ms-compat are of a piece.
3889 if (const Arg *A = Args.getLastArg(options::OPT_fvisibility_EQ,
3890 options::OPT_fvisibility_ms_compat)) {
3891 if (A->getOption().matches(options::OPT_fvisibility_EQ)) {
3892 CmdArgs.push_back("-fvisibility");
3893 CmdArgs.push_back(A->getValue());
3894 } else {
3895 assert(A->getOption().matches(options::OPT_fvisibility_ms_compat));
3896 CmdArgs.push_back("-fvisibility");
3897 CmdArgs.push_back("hidden");
3898 CmdArgs.push_back("-ftype-visibility");
3899 CmdArgs.push_back("default");
3900 }
3901 }
3902
3903 Args.AddLastArg(CmdArgs, options::OPT_fvisibility_inlines_hidden);
3904
3905 Args.AddLastArg(CmdArgs, options::OPT_ftlsmodel_EQ);
3906
David L. Jonesf561aba2017-03-08 01:02:16 +00003907 // Forward -f (flag) options which we can pass directly.
3908 Args.AddLastArg(CmdArgs, options::OPT_femit_all_decls);
3909 Args.AddLastArg(CmdArgs, options::OPT_fheinous_gnu_extensions);
3910 Args.AddLastArg(CmdArgs, options::OPT_fno_operator_names);
Brad Smith733fe192017-07-17 00:49:31 +00003911 // Emulated TLS is enabled by default on Android and OpenBSD, and can be enabled
3912 // manually with -femulated-tls.
3913 bool EmulatedTLSDefault = Triple.isAndroid() || Triple.isOSOpenBSD() ||
3914 Triple.isWindowsCygwinEnvironment();
David L. Jonesf561aba2017-03-08 01:02:16 +00003915 if (Args.hasFlag(options::OPT_femulated_tls, options::OPT_fno_emulated_tls,
3916 EmulatedTLSDefault))
3917 CmdArgs.push_back("-femulated-tls");
3918 // AltiVec-like language extensions aren't relevant for assembling.
Eric Christopher758aad72017-03-21 22:06:18 +00003919 if (!isa<PreprocessJobAction>(JA) || Output.getType() != types::TY_PP_Asm)
David L. Jonesf561aba2017-03-08 01:02:16 +00003920 Args.AddLastArg(CmdArgs, options::OPT_fzvector);
Eric Christopher758aad72017-03-21 22:06:18 +00003921
David L. Jonesf561aba2017-03-08 01:02:16 +00003922 Args.AddLastArg(CmdArgs, options::OPT_fdiagnostics_show_template_tree);
3923 Args.AddLastArg(CmdArgs, options::OPT_fno_elide_type);
3924
3925 // Forward flags for OpenMP. We don't do this if the current action is an
3926 // device offloading action other than OpenMP.
3927 if (Args.hasFlag(options::OPT_fopenmp, options::OPT_fopenmp_EQ,
3928 options::OPT_fno_openmp, false) &&
3929 (JA.isDeviceOffloading(Action::OFK_None) ||
3930 JA.isDeviceOffloading(Action::OFK_OpenMP))) {
Saleem Abdulrasool33d41382017-08-29 23:59:06 +00003931 switch (D.getOpenMPRuntime(Args)) {
David L. Jonesf561aba2017-03-08 01:02:16 +00003932 case Driver::OMPRT_OMP:
3933 case Driver::OMPRT_IOMP5:
3934 // Clang can generate useful OpenMP code for these two runtime libraries.
3935 CmdArgs.push_back("-fopenmp");
3936
3937 // If no option regarding the use of TLS in OpenMP codegeneration is
3938 // given, decide a default based on the target. Otherwise rely on the
3939 // options and pass the right information to the frontend.
3940 if (!Args.hasFlag(options::OPT_fopenmp_use_tls,
3941 options::OPT_fnoopenmp_use_tls, /*Default=*/true))
3942 CmdArgs.push_back("-fnoopenmp-use-tls");
3943 Args.AddAllArgs(CmdArgs, options::OPT_fopenmp_version_EQ);
3944 break;
3945 default:
3946 // By default, if Clang doesn't know how to generate useful OpenMP code
3947 // for a specific runtime library, we just don't pass the '-fopenmp' flag
3948 // down to the actual compilation.
3949 // FIXME: It would be better to have a mode which *only* omits IR
3950 // generation based on the OpenMP support so that we get consistent
3951 // semantic analysis, etc.
3952 break;
3953 }
Alexey Bataeve927ca72017-12-29 17:36:15 +00003954 } else {
3955 Args.AddLastArg(CmdArgs, options::OPT_fopenmp_simd,
3956 options::OPT_fno_openmp_simd);
3957 Args.AddAllArgs(CmdArgs, options::OPT_fopenmp_version_EQ);
David L. Jonesf561aba2017-03-08 01:02:16 +00003958 }
3959
3960 const SanitizerArgs &Sanitize = getToolChain().getSanitizerArgs();
3961 Sanitize.addArgs(getToolChain(), Args, CmdArgs, InputType);
3962
Dean Michael Berris835832d2017-03-30 00:29:36 +00003963 const XRayArgs &XRay = getToolChain().getXRayArgs();
3964 XRay.addArgs(getToolChain(), Args, CmdArgs, InputType);
3965
David L. Jonesf561aba2017-03-08 01:02:16 +00003966 if (getToolChain().SupportsProfiling())
3967 Args.AddLastArg(CmdArgs, options::OPT_pg);
3968
3969 if (getToolChain().SupportsProfiling())
3970 Args.AddLastArg(CmdArgs, options::OPT_mfentry);
3971
3972 // -flax-vector-conversions is default.
3973 if (!Args.hasFlag(options::OPT_flax_vector_conversions,
3974 options::OPT_fno_lax_vector_conversions))
3975 CmdArgs.push_back("-fno-lax-vector-conversions");
3976
3977 if (Args.getLastArg(options::OPT_fapple_kext) ||
3978 (Args.hasArg(options::OPT_mkernel) && types::isCXX(InputType)))
3979 CmdArgs.push_back("-fapple-kext");
3980
3981 Args.AddLastArg(CmdArgs, options::OPT_fobjc_sender_dependent_dispatch);
3982 Args.AddLastArg(CmdArgs, options::OPT_fdiagnostics_print_source_range_info);
3983 Args.AddLastArg(CmdArgs, options::OPT_fdiagnostics_parseable_fixits);
3984 Args.AddLastArg(CmdArgs, options::OPT_ftime_report);
3985 Args.AddLastArg(CmdArgs, options::OPT_ftrapv);
3986
3987 if (Arg *A = Args.getLastArg(options::OPT_ftrapv_handler_EQ)) {
3988 CmdArgs.push_back("-ftrapv-handler");
3989 CmdArgs.push_back(A->getValue());
3990 }
3991
3992 Args.AddLastArg(CmdArgs, options::OPT_ftrap_function_EQ);
3993
3994 // -fno-strict-overflow implies -fwrapv if it isn't disabled, but
3995 // -fstrict-overflow won't turn off an explicitly enabled -fwrapv.
3996 if (Arg *A = Args.getLastArg(options::OPT_fwrapv, options::OPT_fno_wrapv)) {
3997 if (A->getOption().matches(options::OPT_fwrapv))
3998 CmdArgs.push_back("-fwrapv");
3999 } else if (Arg *A = Args.getLastArg(options::OPT_fstrict_overflow,
4000 options::OPT_fno_strict_overflow)) {
4001 if (A->getOption().matches(options::OPT_fno_strict_overflow))
4002 CmdArgs.push_back("-fwrapv");
4003 }
4004
4005 if (Arg *A = Args.getLastArg(options::OPT_freroll_loops,
4006 options::OPT_fno_reroll_loops))
4007 if (A->getOption().matches(options::OPT_freroll_loops))
4008 CmdArgs.push_back("-freroll-loops");
4009
4010 Args.AddLastArg(CmdArgs, options::OPT_fwritable_strings);
4011 Args.AddLastArg(CmdArgs, options::OPT_funroll_loops,
4012 options::OPT_fno_unroll_loops);
4013
4014 Args.AddLastArg(CmdArgs, options::OPT_pthread);
4015
Saleem Abdulrasoolc2320ad2017-09-06 04:56:23 +00004016 RenderSSPOptions(getToolChain(), Args, CmdArgs, KernelOrKext);
David L. Jonesf561aba2017-03-08 01:02:16 +00004017
4018 // Translate -mstackrealign
4019 if (Args.hasFlag(options::OPT_mstackrealign, options::OPT_mno_stackrealign,
4020 false))
4021 CmdArgs.push_back(Args.MakeArgString("-mstackrealign"));
4022
4023 if (Args.hasArg(options::OPT_mstack_alignment)) {
4024 StringRef alignment = Args.getLastArgValue(options::OPT_mstack_alignment);
4025 CmdArgs.push_back(Args.MakeArgString("-mstack-alignment=" + alignment));
4026 }
4027
4028 if (Args.hasArg(options::OPT_mstack_probe_size)) {
4029 StringRef Size = Args.getLastArgValue(options::OPT_mstack_probe_size);
4030
4031 if (!Size.empty())
4032 CmdArgs.push_back(Args.MakeArgString("-mstack-probe-size=" + Size));
4033 else
4034 CmdArgs.push_back("-mstack-probe-size=0");
4035 }
4036
David L. Jonesf561aba2017-03-08 01:02:16 +00004037 if (Arg *A = Args.getLastArg(options::OPT_mrestrict_it,
4038 options::OPT_mno_restrict_it)) {
4039 if (A->getOption().matches(options::OPT_mrestrict_it)) {
4040 CmdArgs.push_back("-backend-option");
4041 CmdArgs.push_back("-arm-restrict-it");
4042 } else {
4043 CmdArgs.push_back("-backend-option");
4044 CmdArgs.push_back("-arm-no-restrict-it");
4045 }
4046 } else if (Triple.isOSWindows() &&
4047 (Triple.getArch() == llvm::Triple::arm ||
4048 Triple.getArch() == llvm::Triple::thumb)) {
4049 // Windows on ARM expects restricted IT blocks
4050 CmdArgs.push_back("-backend-option");
4051 CmdArgs.push_back("-arm-restrict-it");
4052 }
4053
4054 // Forward -cl options to -cc1
Saleem Abdulrasool68c808f62017-08-29 23:59:07 +00004055 RenderOpenCLOptions(Args, CmdArgs);
David L. Jonesf561aba2017-03-08 01:02:16 +00004056
Oren Ben Simhon57cc1a52018-01-09 08:53:59 +00004057 if (Arg *A = Args.getLastArg(options::OPT_fcf_protection_EQ)) {
4058 CmdArgs.push_back(
4059 Args.MakeArgString(Twine("-fcf-protection=") + A->getValue()));
4060 }
4061
David L. Jonesf561aba2017-03-08 01:02:16 +00004062 // Forward -f options with positive and negative forms; we translate
4063 // these by hand.
Dehao Chenea4b78f2017-03-21 21:40:53 +00004064 if (Arg *A = getLastProfileSampleUseArg(Args)) {
David L. Jonesf561aba2017-03-08 01:02:16 +00004065 StringRef fname = A->getValue();
4066 if (!llvm::sys::fs::exists(fname))
4067 D.Diag(diag::err_drv_no_such_file) << fname;
4068 else
4069 A->render(Args, CmdArgs);
4070 }
4071
Saleem Abdulrasool99f4ead2017-09-01 23:44:01 +00004072 RenderBuiltinOptions(getToolChain(), RawTriple, Args, CmdArgs);
David L. Jonesf561aba2017-03-08 01:02:16 +00004073
4074 if (!Args.hasFlag(options::OPT_fassume_sane_operator_new,
4075 options::OPT_fno_assume_sane_operator_new))
4076 CmdArgs.push_back("-fno-assume-sane-operator-new");
4077
4078 // -fblocks=0 is default.
4079 if (Args.hasFlag(options::OPT_fblocks, options::OPT_fno_blocks,
4080 getToolChain().IsBlocksDefault()) ||
4081 (Args.hasArg(options::OPT_fgnu_runtime) &&
4082 Args.hasArg(options::OPT_fobjc_nonfragile_abi) &&
4083 !Args.hasArg(options::OPT_fno_blocks))) {
4084 CmdArgs.push_back("-fblocks");
4085
4086 if (!Args.hasArg(options::OPT_fgnu_runtime) &&
4087 !getToolChain().hasBlocksRuntime())
4088 CmdArgs.push_back("-fblocks-runtime-optional");
4089 }
4090
Saleem Abdulrasoolb2d4ebb2017-09-01 17:43:59 +00004091 // -fencode-extended-block-signature=1 is default.
4092 if (getToolChain().IsEncodeExtendedBlockSignatureDefault())
4093 CmdArgs.push_back("-fencode-extended-block-signature");
4094
David L. Jonesf561aba2017-03-08 01:02:16 +00004095 if (Args.hasFlag(options::OPT_fcoroutines_ts, options::OPT_fno_coroutines_ts,
4096 false) &&
4097 types::isCXX(InputType)) {
4098 CmdArgs.push_back("-fcoroutines-ts");
4099 }
4100
Aaron Ballman61736552017-10-21 20:28:58 +00004101 Args.AddLastArg(CmdArgs, options::OPT_fdouble_square_bracket_attributes,
4102 options::OPT_fno_double_square_bracket_attributes);
4103
Saleem Abdulrasoole196e942017-09-01 15:25:17 +00004104 bool HaveModules = false;
4105 RenderModulesOptions(C, D, Args, Input, Output, CmdArgs, HaveModules);
David L. Jonesf561aba2017-03-08 01:02:16 +00004106
4107 // -faccess-control is default.
4108 if (Args.hasFlag(options::OPT_fno_access_control,
4109 options::OPT_faccess_control, false))
4110 CmdArgs.push_back("-fno-access-control");
4111
4112 // -felide-constructors is the default.
4113 if (Args.hasFlag(options::OPT_fno_elide_constructors,
4114 options::OPT_felide_constructors, false))
4115 CmdArgs.push_back("-fno-elide-constructors");
4116
4117 ToolChain::RTTIMode RTTIMode = getToolChain().getRTTIMode();
4118
4119 if (KernelOrKext || (types::isCXX(InputType) &&
4120 (RTTIMode == ToolChain::RM_DisabledExplicitly ||
4121 RTTIMode == ToolChain::RM_DisabledImplicitly)))
4122 CmdArgs.push_back("-fno-rtti");
4123
4124 // -fshort-enums=0 is default for all architectures except Hexagon.
4125 if (Args.hasFlag(options::OPT_fshort_enums, options::OPT_fno_short_enums,
4126 getToolChain().getArch() == llvm::Triple::hexagon))
4127 CmdArgs.push_back("-fshort-enums");
4128
Saleem Abdulrasool729379a2017-10-06 23:09:55 +00004129 RenderCharacterOptions(Args, AuxTriple ? *AuxTriple : RawTriple, CmdArgs);
David L. Jonesf561aba2017-03-08 01:02:16 +00004130
4131 // -fuse-cxa-atexit is default.
4132 if (!Args.hasFlag(
4133 options::OPT_fuse_cxa_atexit, options::OPT_fno_use_cxa_atexit,
Saleem Abdulrasool015bded2017-09-11 20:18:09 +00004134 !RawTriple.isOSWindows() &&
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00004135 RawTriple.getOS() != llvm::Triple::Solaris &&
David L. Jonesf561aba2017-03-08 01:02:16 +00004136 getToolChain().getArch() != llvm::Triple::hexagon &&
4137 getToolChain().getArch() != llvm::Triple::xcore &&
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00004138 ((RawTriple.getVendor() != llvm::Triple::MipsTechnologies) ||
4139 RawTriple.hasEnvironment())) ||
David L. Jonesf561aba2017-03-08 01:02:16 +00004140 KernelOrKext)
4141 CmdArgs.push_back("-fno-use-cxa-atexit");
4142
4143 // -fms-extensions=0 is default.
4144 if (Args.hasFlag(options::OPT_fms_extensions, options::OPT_fno_ms_extensions,
4145 IsWindowsMSVC))
4146 CmdArgs.push_back("-fms-extensions");
4147
4148 // -fno-use-line-directives is default.
4149 if (Args.hasFlag(options::OPT_fuse_line_directives,
4150 options::OPT_fno_use_line_directives, false))
4151 CmdArgs.push_back("-fuse-line-directives");
4152
4153 // -fms-compatibility=0 is default.
4154 if (Args.hasFlag(options::OPT_fms_compatibility,
4155 options::OPT_fno_ms_compatibility,
4156 (IsWindowsMSVC &&
4157 Args.hasFlag(options::OPT_fms_extensions,
4158 options::OPT_fno_ms_extensions, true))))
4159 CmdArgs.push_back("-fms-compatibility");
4160
Saleem Abdulrasool33d41382017-08-29 23:59:06 +00004161 VersionTuple MSVT = getToolChain().computeMSVCVersion(&D, Args);
David L. Jonesf561aba2017-03-08 01:02:16 +00004162 if (!MSVT.empty())
4163 CmdArgs.push_back(
4164 Args.MakeArgString("-fms-compatibility-version=" + MSVT.getAsString()));
4165
4166 bool IsMSVC2015Compatible = MSVT.getMajor() >= 19;
4167 if (ImplyVCPPCXXVer) {
4168 StringRef LanguageStandard;
4169 if (const Arg *StdArg = Args.getLastArg(options::OPT__SLASH_std)) {
4170 LanguageStandard = llvm::StringSwitch<StringRef>(StdArg->getValue())
4171 .Case("c++14", "-std=c++14")
Martell Malonef6f6a9c2017-10-15 17:27:58 +00004172 .Case("c++17", "-std=c++17")
4173 .Case("c++latest", "-std=c++2a")
David L. Jonesf561aba2017-03-08 01:02:16 +00004174 .Default("");
4175 if (LanguageStandard.empty())
4176 D.Diag(clang::diag::warn_drv_unused_argument)
4177 << StdArg->getAsString(Args);
4178 }
4179
4180 if (LanguageStandard.empty()) {
4181 if (IsMSVC2015Compatible)
4182 LanguageStandard = "-std=c++14";
4183 else
4184 LanguageStandard = "-std=c++11";
4185 }
4186
4187 CmdArgs.push_back(LanguageStandard.data());
4188 }
4189
4190 // -fno-borland-extensions is default.
4191 if (Args.hasFlag(options::OPT_fborland_extensions,
4192 options::OPT_fno_borland_extensions, false))
4193 CmdArgs.push_back("-fborland-extensions");
4194
4195 // -fno-declspec is default, except for PS4.
4196 if (Args.hasFlag(options::OPT_fdeclspec, options::OPT_fno_declspec,
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00004197 RawTriple.isPS4()))
David L. Jonesf561aba2017-03-08 01:02:16 +00004198 CmdArgs.push_back("-fdeclspec");
4199 else if (Args.hasArg(options::OPT_fno_declspec))
4200 CmdArgs.push_back("-fno-declspec"); // Explicitly disabling __declspec.
4201
4202 // -fthreadsafe-static is default, except for MSVC compatibility versions less
4203 // than 19.
4204 if (!Args.hasFlag(options::OPT_fthreadsafe_statics,
4205 options::OPT_fno_threadsafe_statics,
4206 !IsWindowsMSVC || IsMSVC2015Compatible))
4207 CmdArgs.push_back("-fno-threadsafe-statics");
4208
Reid Klecknerea2683e2017-08-28 17:59:24 +00004209 // -fno-delayed-template-parsing is default, except when targetting MSVC.
4210 // Many old Windows SDK versions require this to parse.
4211 // FIXME: MSVC introduced /Zc:twoPhase- to disable this behavior in their
4212 // compiler. We should be able to disable this by default at some point.
David L. Jonesf561aba2017-03-08 01:02:16 +00004213 if (Args.hasFlag(options::OPT_fdelayed_template_parsing,
4214 options::OPT_fno_delayed_template_parsing, IsWindowsMSVC))
4215 CmdArgs.push_back("-fdelayed-template-parsing");
4216
4217 // -fgnu-keywords default varies depending on language; only pass if
4218 // specified.
4219 if (Arg *A = Args.getLastArg(options::OPT_fgnu_keywords,
4220 options::OPT_fno_gnu_keywords))
4221 A->render(Args, CmdArgs);
4222
4223 if (Args.hasFlag(options::OPT_fgnu89_inline, options::OPT_fno_gnu89_inline,
4224 false))
4225 CmdArgs.push_back("-fgnu89-inline");
4226
4227 if (Args.hasArg(options::OPT_fno_inline))
4228 CmdArgs.push_back("-fno-inline");
4229
4230 if (Arg* InlineArg = Args.getLastArg(options::OPT_finline_functions,
4231 options::OPT_finline_hint_functions,
4232 options::OPT_fno_inline_functions))
4233 InlineArg->render(Args, CmdArgs);
4234
4235 Args.AddLastArg(CmdArgs, options::OPT_fexperimental_new_pass_manager,
4236 options::OPT_fno_experimental_new_pass_manager);
4237
Saleem Abdulrasoolb2d4ebb2017-09-01 17:43:59 +00004238 ObjCRuntime Runtime = AddObjCRuntimeArgs(Args, CmdArgs, rewriteKind);
4239 RenderObjCOptions(getToolChain(), D, RawTriple, Args, Runtime,
4240 rewriteKind != RK_None, Input, CmdArgs);
David L. Jonesf561aba2017-03-08 01:02:16 +00004241
4242 if (Args.hasFlag(options::OPT_fapplication_extension,
4243 options::OPT_fno_application_extension, false))
4244 CmdArgs.push_back("-fapplication-extension");
4245
4246 // Handle GCC-style exception args.
4247 if (!C.getDriver().IsCLMode())
Saleem Abdulrasoolb2d4ebb2017-09-01 17:43:59 +00004248 addExceptionArgs(Args, InputType, getToolChain(), KernelOrKext, Runtime,
David L. Jonesf561aba2017-03-08 01:02:16 +00004249 CmdArgs);
4250
Martell Malonec950c652017-11-29 07:25:12 +00004251 // Handle exception personalities
4252 Arg *A = Args.getLastArg(options::OPT_fsjlj_exceptions,
4253 options::OPT_fseh_exceptions,
4254 options::OPT_fdwarf_exceptions);
4255 if (A) {
4256 const Option &Opt = A->getOption();
4257 if (Opt.matches(options::OPT_fsjlj_exceptions))
4258 CmdArgs.push_back("-fsjlj-exceptions");
4259 if (Opt.matches(options::OPT_fseh_exceptions))
4260 CmdArgs.push_back("-fseh-exceptions");
4261 if (Opt.matches(options::OPT_fdwarf_exceptions))
4262 CmdArgs.push_back("-fdwarf-exceptions");
4263 } else {
Reid Kleckner7383b8e2017-11-29 21:36:00 +00004264 switch (getToolChain().GetExceptionModel(Args)) {
4265 default:
4266 break;
4267 case llvm::ExceptionHandling::DwarfCFI:
4268 CmdArgs.push_back("-fdwarf-exceptions");
4269 break;
4270 case llvm::ExceptionHandling::SjLj:
4271 CmdArgs.push_back("-fsjlj-exceptions");
4272 break;
4273 case llvm::ExceptionHandling::WinEH:
4274 CmdArgs.push_back("-fseh-exceptions");
4275 break;
Martell Malonec950c652017-11-29 07:25:12 +00004276 }
4277 }
David L. Jonesf561aba2017-03-08 01:02:16 +00004278
4279 // C++ "sane" operator new.
4280 if (!Args.hasFlag(options::OPT_fassume_sane_operator_new,
4281 options::OPT_fno_assume_sane_operator_new))
4282 CmdArgs.push_back("-fno-assume-sane-operator-new");
4283
4284 // -frelaxed-template-template-args is off by default, as it is a severe
4285 // breaking change until a corresponding change to template partial ordering
4286 // is provided.
4287 if (Args.hasFlag(options::OPT_frelaxed_template_template_args,
4288 options::OPT_fno_relaxed_template_template_args, false))
4289 CmdArgs.push_back("-frelaxed-template-template-args");
4290
4291 // -fsized-deallocation is off by default, as it is an ABI-breaking change for
4292 // most platforms.
4293 if (Args.hasFlag(options::OPT_fsized_deallocation,
4294 options::OPT_fno_sized_deallocation, false))
4295 CmdArgs.push_back("-fsized-deallocation");
4296
4297 // -faligned-allocation is on by default in C++17 onwards and otherwise off
4298 // by default.
4299 if (Arg *A = Args.getLastArg(options::OPT_faligned_allocation,
4300 options::OPT_fno_aligned_allocation,
4301 options::OPT_faligned_new_EQ)) {
4302 if (A->getOption().matches(options::OPT_fno_aligned_allocation))
4303 CmdArgs.push_back("-fno-aligned-allocation");
4304 else
4305 CmdArgs.push_back("-faligned-allocation");
4306 }
4307
4308 // The default new alignment can be specified using a dedicated option or via
4309 // a GCC-compatible option that also turns on aligned allocation.
4310 if (Arg *A = Args.getLastArg(options::OPT_fnew_alignment_EQ,
4311 options::OPT_faligned_new_EQ))
4312 CmdArgs.push_back(
4313 Args.MakeArgString(Twine("-fnew-alignment=") + A->getValue()));
4314
4315 // -fconstant-cfstrings is default, and may be subject to argument translation
4316 // on Darwin.
4317 if (!Args.hasFlag(options::OPT_fconstant_cfstrings,
4318 options::OPT_fno_constant_cfstrings) ||
4319 !Args.hasFlag(options::OPT_mconstant_cfstrings,
4320 options::OPT_mno_constant_cfstrings))
4321 CmdArgs.push_back("-fno-constant-cfstrings");
4322
David L. Jonesf561aba2017-03-08 01:02:16 +00004323 // -fno-pascal-strings is default, only pass non-default.
4324 if (Args.hasFlag(options::OPT_fpascal_strings,
4325 options::OPT_fno_pascal_strings, false))
4326 CmdArgs.push_back("-fpascal-strings");
4327
4328 // Honor -fpack-struct= and -fpack-struct, if given. Note that
4329 // -fno-pack-struct doesn't apply to -fpack-struct=.
4330 if (Arg *A = Args.getLastArg(options::OPT_fpack_struct_EQ)) {
4331 std::string PackStructStr = "-fpack-struct=";
4332 PackStructStr += A->getValue();
4333 CmdArgs.push_back(Args.MakeArgString(PackStructStr));
4334 } else if (Args.hasFlag(options::OPT_fpack_struct,
4335 options::OPT_fno_pack_struct, false)) {
4336 CmdArgs.push_back("-fpack-struct=1");
4337 }
4338
4339 // Handle -fmax-type-align=N and -fno-type-align
4340 bool SkipMaxTypeAlign = Args.hasArg(options::OPT_fno_max_type_align);
4341 if (Arg *A = Args.getLastArg(options::OPT_fmax_type_align_EQ)) {
4342 if (!SkipMaxTypeAlign) {
4343 std::string MaxTypeAlignStr = "-fmax-type-align=";
4344 MaxTypeAlignStr += A->getValue();
4345 CmdArgs.push_back(Args.MakeArgString(MaxTypeAlignStr));
4346 }
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00004347 } else if (RawTriple.isOSDarwin()) {
David L. Jonesf561aba2017-03-08 01:02:16 +00004348 if (!SkipMaxTypeAlign) {
4349 std::string MaxTypeAlignStr = "-fmax-type-align=16";
4350 CmdArgs.push_back(Args.MakeArgString(MaxTypeAlignStr));
4351 }
4352 }
4353
4354 // -fcommon is the default unless compiling kernel code or the target says so
Saleem Abdulrasool374b5582017-08-29 23:59:05 +00004355 bool NoCommonDefault = KernelOrKext || isNoCommonDefault(RawTriple);
David L. Jonesf561aba2017-03-08 01:02:16 +00004356 if (!Args.hasFlag(options::OPT_fcommon, options::OPT_fno_common,
4357 !NoCommonDefault))
4358 CmdArgs.push_back("-fno-common");
4359
4360 // -fsigned-bitfields is default, and clang doesn't yet support
4361 // -funsigned-bitfields.
4362 if (!Args.hasFlag(options::OPT_fsigned_bitfields,
4363 options::OPT_funsigned_bitfields))
4364 D.Diag(diag::warn_drv_clang_unsupported)
4365 << Args.getLastArg(options::OPT_funsigned_bitfields)->getAsString(Args);
4366
4367 // -fsigned-bitfields is default, and clang doesn't support -fno-for-scope.
4368 if (!Args.hasFlag(options::OPT_ffor_scope, options::OPT_fno_for_scope))
4369 D.Diag(diag::err_drv_clang_unsupported)
4370 << Args.getLastArg(options::OPT_fno_for_scope)->getAsString(Args);
4371
4372 // -finput_charset=UTF-8 is default. Reject others
4373 if (Arg *inputCharset = Args.getLastArg(options::OPT_finput_charset_EQ)) {
4374 StringRef value = inputCharset->getValue();
4375 if (!value.equals_lower("utf-8"))
4376 D.Diag(diag::err_drv_invalid_value) << inputCharset->getAsString(Args)
4377 << value;
4378 }
4379
4380 // -fexec_charset=UTF-8 is default. Reject others
4381 if (Arg *execCharset = Args.getLastArg(options::OPT_fexec_charset_EQ)) {
4382 StringRef value = execCharset->getValue();
4383 if (!value.equals_lower("utf-8"))
4384 D.Diag(diag::err_drv_invalid_value) << execCharset->getAsString(Args)
4385 << value;
4386 }
4387
Saleem Abdulrasool75557fa2017-09-01 18:57:34 +00004388 RenderDiagnosticsOptions(D, Args, CmdArgs);
David L. Jonesf561aba2017-03-08 01:02:16 +00004389
4390 // -fno-asm-blocks is default.
4391 if (Args.hasFlag(options::OPT_fasm_blocks, options::OPT_fno_asm_blocks,
4392 false))
4393 CmdArgs.push_back("-fasm-blocks");
4394
4395 // -fgnu-inline-asm is default.
4396 if (!Args.hasFlag(options::OPT_fgnu_inline_asm,
4397 options::OPT_fno_gnu_inline_asm, true))
4398 CmdArgs.push_back("-fno-gnu-inline-asm");
4399
4400 // Enable vectorization per default according to the optimization level
4401 // selected. For optimization levels that want vectorization we use the alias
4402 // option to simplify the hasFlag logic.
4403 bool EnableVec = shouldEnableVectorizerAtOLevel(Args, false);
4404 OptSpecifier VectorizeAliasOption =
4405 EnableVec ? options::OPT_O_Group : options::OPT_fvectorize;
4406 if (Args.hasFlag(options::OPT_fvectorize, VectorizeAliasOption,
4407 options::OPT_fno_vectorize, EnableVec))
4408 CmdArgs.push_back("-vectorize-loops");
4409
4410 // -fslp-vectorize is enabled based on the optimization level selected.
4411 bool EnableSLPVec = shouldEnableVectorizerAtOLevel(Args, true);
4412 OptSpecifier SLPVectAliasOption =
4413 EnableSLPVec ? options::OPT_O_Group : options::OPT_fslp_vectorize;
4414 if (Args.hasFlag(options::OPT_fslp_vectorize, SLPVectAliasOption,
4415 options::OPT_fno_slp_vectorize, EnableSLPVec))
4416 CmdArgs.push_back("-vectorize-slp");
4417
Craig Topper9a724aa2017-12-11 21:09:19 +00004418 ParseMPreferVectorWidth(D, Args, CmdArgs);
4419
David L. Jonesf561aba2017-03-08 01:02:16 +00004420 if (Arg *A = Args.getLastArg(options::OPT_fshow_overloads_EQ))
4421 A->render(Args, CmdArgs);
4422
4423 if (Arg *A = Args.getLastArg(
4424 options::OPT_fsanitize_undefined_strip_path_components_EQ))
4425 A->render(Args, CmdArgs);
4426
4427 // -fdollars-in-identifiers default varies depending on platform and
4428 // language; only pass if specified.
4429 if (Arg *A = Args.getLastArg(options::OPT_fdollars_in_identifiers,
4430 options::OPT_fno_dollars_in_identifiers)) {
4431 if (A->getOption().matches(options::OPT_fdollars_in_identifiers))
4432 CmdArgs.push_back("-fdollars-in-identifiers");
4433 else
4434 CmdArgs.push_back("-fno-dollars-in-identifiers");
4435 }
4436
4437 // -funit-at-a-time is default, and we don't support -fno-unit-at-a-time for
4438 // practical purposes.
4439 if (Arg *A = Args.getLastArg(options::OPT_funit_at_a_time,
4440 options::OPT_fno_unit_at_a_time)) {
4441 if (A->getOption().matches(options::OPT_fno_unit_at_a_time))
4442 D.Diag(diag::warn_drv_clang_unsupported) << A->getAsString(Args);
4443 }
4444
4445 if (Args.hasFlag(options::OPT_fapple_pragma_pack,
4446 options::OPT_fno_apple_pragma_pack, false))
4447 CmdArgs.push_back("-fapple-pragma-pack");
4448
David L. Jonesf561aba2017-03-08 01:02:16 +00004449 if (Args.hasFlag(options::OPT_fsave_optimization_record,
Jonas Devliegherecf73eba2017-12-19 17:16:45 +00004450 options::OPT_foptimization_record_file_EQ,
David L. Jonesf561aba2017-03-08 01:02:16 +00004451 options::OPT_fno_save_optimization_record, false)) {
4452 CmdArgs.push_back("-opt-record-file");
4453
4454 const Arg *A = Args.getLastArg(options::OPT_foptimization_record_file_EQ);
4455 if (A) {
4456 CmdArgs.push_back(A->getValue());
4457 } else {
4458 SmallString<128> F;
Hal Finkel67814df2017-08-16 21:34:27 +00004459
4460 if (Args.hasArg(options::OPT_c) || Args.hasArg(options::OPT_S)) {
4461 if (Arg *FinalOutput = Args.getLastArg(options::OPT_o))
4462 F = FinalOutput->getValue();
4463 }
4464
4465 if (F.empty()) {
David L. Jonesf561aba2017-03-08 01:02:16 +00004466 // Use the input filename.
4467 F = llvm::sys::path::stem(Input.getBaseInput());
4468
4469 // If we're compiling for an offload architecture (i.e. a CUDA device),
4470 // we need to make the file name for the device compilation different
4471 // from the host compilation.
4472 if (!JA.isDeviceOffloading(Action::OFK_None) &&
4473 !JA.isDeviceOffloading(Action::OFK_Host)) {
4474 llvm::sys::path::replace_extension(F, "");
4475 F += Action::GetOffloadingFileNamePrefix(JA.getOffloadingDeviceKind(),
4476 Triple.normalize());
4477 F += "-";
4478 F += JA.getOffloadingArch();
4479 }
4480 }
4481
4482 llvm::sys::path::replace_extension(F, "opt.yaml");
4483 CmdArgs.push_back(Args.MakeArgString(F));
4484 }
4485 }
4486
Richard Smith86a3ef52017-06-09 21:24:02 +00004487 bool RewriteImports = Args.hasFlag(options::OPT_frewrite_imports,
4488 options::OPT_fno_rewrite_imports, false);
4489 if (RewriteImports)
4490 CmdArgs.push_back("-frewrite-imports");
4491
David L. Jonesf561aba2017-03-08 01:02:16 +00004492 // Enable rewrite includes if the user's asked for it or if we're generating
4493 // diagnostics.
4494 // TODO: Once -module-dependency-dir works with -frewrite-includes it'd be
4495 // nice to enable this when doing a crashdump for modules as well.
4496 if (Args.hasFlag(options::OPT_frewrite_includes,
4497 options::OPT_fno_rewrite_includes, false) ||
Saleem Abdulrasoole196e942017-09-01 15:25:17 +00004498 (C.isForDiagnostics() && (RewriteImports || !HaveModules)))
David L. Jonesf561aba2017-03-08 01:02:16 +00004499 CmdArgs.push_back("-frewrite-includes");
4500
4501 // Only allow -traditional or -traditional-cpp outside in preprocessing modes.
4502 if (Arg *A = Args.getLastArg(options::OPT_traditional,
4503 options::OPT_traditional_cpp)) {
4504 if (isa<PreprocessJobAction>(JA))
4505 CmdArgs.push_back("-traditional-cpp");
4506 else
4507 D.Diag(diag::err_drv_clang_unsupported) << A->getAsString(Args);
4508 }
4509
4510 Args.AddLastArg(CmdArgs, options::OPT_dM);
4511 Args.AddLastArg(CmdArgs, options::OPT_dD);
4512
4513 // Handle serialized diagnostics.
4514 if (Arg *A = Args.getLastArg(options::OPT__serialize_diags)) {
4515 CmdArgs.push_back("-serialize-diagnostic-file");
4516 CmdArgs.push_back(Args.MakeArgString(A->getValue()));
4517 }
4518
4519 if (Args.hasArg(options::OPT_fretain_comments_from_system_headers))
4520 CmdArgs.push_back("-fretain-comments-from-system-headers");
4521
4522 // Forward -fcomment-block-commands to -cc1.
4523 Args.AddAllArgs(CmdArgs, options::OPT_fcomment_block_commands);
4524 // Forward -fparse-all-comments to -cc1.
4525 Args.AddAllArgs(CmdArgs, options::OPT_fparse_all_comments);
4526
4527 // Turn -fplugin=name.so into -load name.so
4528 for (const Arg *A : Args.filtered(options::OPT_fplugin_EQ)) {
4529 CmdArgs.push_back("-load");
4530 CmdArgs.push_back(A->getValue());
4531 A->claim();
4532 }
4533
4534 // Setup statistics file output.
4535 if (const Arg *A = Args.getLastArg(options::OPT_save_stats_EQ)) {
4536 StringRef SaveStats = A->getValue();
4537
4538 SmallString<128> StatsFile;
4539 bool DoSaveStats = false;
4540 if (SaveStats == "obj") {
4541 if (Output.isFilename()) {
4542 StatsFile.assign(Output.getFilename());
4543 llvm::sys::path::remove_filename(StatsFile);
4544 }
4545 DoSaveStats = true;
4546 } else if (SaveStats == "cwd") {
4547 DoSaveStats = true;
4548 } else {
4549 D.Diag(diag::err_drv_invalid_value) << A->getAsString(Args) << SaveStats;
4550 }
4551
4552 if (DoSaveStats) {
4553 StringRef BaseName = llvm::sys::path::filename(Input.getBaseInput());
4554 llvm::sys::path::append(StatsFile, BaseName);
4555 llvm::sys::path::replace_extension(StatsFile, "stats");
4556 CmdArgs.push_back(Args.MakeArgString(Twine("-stats-file=") +
4557 StatsFile));
4558 }
4559 }
4560
4561 // Forward -Xclang arguments to -cc1, and -mllvm arguments to the LLVM option
4562 // parser.
Guansong Zhang4747cf52017-03-15 20:57:11 +00004563 // -finclude-default-header flag is for preprocessor,
4564 // do not pass it to other cc1 commands when save-temps is enabled
4565 if (C.getDriver().isSaveTempsEnabled() &&
4566 !isa<PreprocessJobAction>(JA)) {
4567 for (auto Arg : Args.filtered(options::OPT_Xclang)) {
4568 Arg->claim();
4569 if (StringRef(Arg->getValue()) != "-finclude-default-header")
4570 CmdArgs.push_back(Arg->getValue());
4571 }
4572 }
4573 else {
4574 Args.AddAllArgValues(CmdArgs, options::OPT_Xclang);
4575 }
David L. Jonesf561aba2017-03-08 01:02:16 +00004576 for (const Arg *A : Args.filtered(options::OPT_mllvm)) {
4577 A->claim();
4578
4579 // We translate this by hand to the -cc1 argument, since nightly test uses
4580 // it and developers have been trained to spell it with -mllvm. Both
4581 // spellings are now deprecated and should be removed.
4582 if (StringRef(A->getValue(0)) == "-disable-llvm-optzns") {
4583 CmdArgs.push_back("-disable-llvm-optzns");
4584 } else {
4585 A->render(Args, CmdArgs);
4586 }
4587 }
4588
4589 // With -save-temps, we want to save the unoptimized bitcode output from the
4590 // CompileJobAction, use -disable-llvm-passes to get pristine IR generated
4591 // by the frontend.
4592 // When -fembed-bitcode is enabled, optimized bitcode is emitted because it
4593 // has slightly different breakdown between stages.
4594 // FIXME: -fembed-bitcode -save-temps will save optimized bitcode instead of
4595 // pristine IR generated by the frontend. Ideally, a new compile action should
4596 // be added so both IR can be captured.
4597 if (C.getDriver().isSaveTempsEnabled() &&
4598 !(C.getDriver().embedBitcodeInObject() && !C.getDriver().isUsingLTO()) &&
4599 isa<CompileJobAction>(JA))
4600 CmdArgs.push_back("-disable-llvm-passes");
4601
4602 if (Output.getType() == types::TY_Dependencies) {
4603 // Handled with other dependency code.
4604 } else if (Output.isFilename()) {
4605 CmdArgs.push_back("-o");
4606 CmdArgs.push_back(Output.getFilename());
4607 } else {
4608 assert(Output.isNothing() && "Invalid output.");
4609 }
4610
4611 addDashXForInput(Args, Input, CmdArgs);
4612
4613 if (Input.isFilename())
4614 CmdArgs.push_back(Input.getFilename());
4615 else
4616 Input.getInputArg().renderAsInput(Args, CmdArgs);
4617
4618 Args.AddAllArgs(CmdArgs, options::OPT_undef);
4619
Saleem Abdulrasool33d41382017-08-29 23:59:06 +00004620 const char *Exec = D.getClangProgramPath();
David L. Jonesf561aba2017-03-08 01:02:16 +00004621
4622 // Optionally embed the -cc1 level arguments into the debug info, for build
4623 // analysis.
Eric Christopherca325172017-03-29 23:34:20 +00004624 // Also record command line arguments into the debug info if
4625 // -grecord-gcc-switches options is set on.
4626 // By default, -gno-record-gcc-switches is set on and no recording.
4627 if (getToolChain().UseDwarfDebugFlags() ||
4628 Args.hasFlag(options::OPT_grecord_gcc_switches,
4629 options::OPT_gno_record_gcc_switches, false)) {
David L. Jonesf561aba2017-03-08 01:02:16 +00004630 ArgStringList OriginalArgs;
4631 for (const auto &Arg : Args)
4632 Arg->render(Args, OriginalArgs);
4633
4634 SmallString<256> Flags;
4635 Flags += Exec;
4636 for (const char *OriginalArg : OriginalArgs) {
4637 SmallString<128> EscapedArg;
4638 EscapeSpacesAndBackslashes(OriginalArg, EscapedArg);
4639 Flags += " ";
4640 Flags += EscapedArg;
4641 }
4642 CmdArgs.push_back("-dwarf-debug-flags");
4643 CmdArgs.push_back(Args.MakeArgString(Flags));
4644 }
4645
David L. Jonesf561aba2017-03-08 01:02:16 +00004646 // Host-side cuda compilation receives device-side outputs as Inputs[1...].
4647 // Include them with -fcuda-include-gpubinary.
4648 if (IsCuda && Inputs.size() > 1)
4649 for (auto I = std::next(Inputs.begin()), E = Inputs.end(); I != E; ++I) {
4650 CmdArgs.push_back("-fcuda-include-gpubinary");
4651 CmdArgs.push_back(I->getFilename());
4652 }
4653
4654 // OpenMP offloading device jobs take the argument -fopenmp-host-ir-file-path
4655 // to specify the result of the compile phase on the host, so the meaningful
4656 // device declarations can be identified. Also, -fopenmp-is-device is passed
4657 // along to tell the frontend that it is generating code for a device, so that
4658 // only the relevant declarations are emitted.
Gheorghe-Teodor Bercea3addb7d2017-06-29 15:59:19 +00004659 if (IsOpenMPDevice) {
David L. Jonesf561aba2017-03-08 01:02:16 +00004660 CmdArgs.push_back("-fopenmp-is-device");
Gheorghe-Teodor Bercea3addb7d2017-06-29 15:59:19 +00004661 if (Inputs.size() == 2) {
4662 CmdArgs.push_back("-fopenmp-host-ir-file-path");
4663 CmdArgs.push_back(Args.MakeArgString(Inputs.back().getFilename()));
4664 }
David L. Jonesf561aba2017-03-08 01:02:16 +00004665 }
4666
4667 // For all the host OpenMP offloading compile jobs we need to pass the targets
4668 // information using -fopenmp-targets= option.
4669 if (isa<CompileJobAction>(JA) && JA.isHostOffloading(Action::OFK_OpenMP)) {
4670 SmallString<128> TargetInfo("-fopenmp-targets=");
4671
4672 Arg *Tgts = Args.getLastArg(options::OPT_fopenmp_targets_EQ);
4673 assert(Tgts && Tgts->getNumValues() &&
4674 "OpenMP offloading has to have targets specified.");
4675 for (unsigned i = 0; i < Tgts->getNumValues(); ++i) {
4676 if (i)
4677 TargetInfo += ',';
4678 // We need to get the string from the triple because it may be not exactly
4679 // the same as the one we get directly from the arguments.
4680 llvm::Triple T(Tgts->getValue(i));
4681 TargetInfo += T.getTriple();
4682 }
4683 CmdArgs.push_back(Args.MakeArgString(TargetInfo.str()));
4684 }
4685
4686 bool WholeProgramVTables =
4687 Args.hasFlag(options::OPT_fwhole_program_vtables,
4688 options::OPT_fno_whole_program_vtables, false);
4689 if (WholeProgramVTables) {
4690 if (!D.isUsingLTO())
4691 D.Diag(diag::err_drv_argument_only_allowed_with)
4692 << "-fwhole-program-vtables"
4693 << "-flto";
4694 CmdArgs.push_back("-fwhole-program-vtables");
4695 }
4696
4697 // Finally add the compile command to the compilation.
4698 if (Args.hasArg(options::OPT__SLASH_fallback) &&
4699 Output.getType() == types::TY_Object &&
4700 (InputType == types::TY_C || InputType == types::TY_CXX)) {
4701 auto CLCommand =
4702 getCLFallback()->GetCommand(C, JA, Output, Inputs, Args, LinkingOutput);
4703 C.addCommand(llvm::make_unique<FallbackCommand>(
4704 JA, *this, Exec, CmdArgs, Inputs, std::move(CLCommand)));
4705 } else if (Args.hasArg(options::OPT__SLASH_fallback) &&
4706 isa<PrecompileJobAction>(JA)) {
4707 // In /fallback builds, run the main compilation even if the pch generation
4708 // fails, so that the main compilation's fallback to cl.exe runs.
4709 C.addCommand(llvm::make_unique<ForceSuccessCommand>(JA, *this, Exec,
4710 CmdArgs, Inputs));
4711 } else {
4712 C.addCommand(llvm::make_unique<Command>(JA, *this, Exec, CmdArgs, Inputs));
4713 }
4714
4715 // Handle the debug info splitting at object creation time if we're
4716 // creating an object.
4717 // TODO: Currently only works on linux with newer objcopy.
Saleem Abdulrasool9934eab2017-09-03 04:46:59 +00004718 if (SplitDWARF && Output.getType() == types::TY_Object)
4719 SplitDebugInfo(getToolChain(), C, *this, JA, Args, Output, SplitDWARFOut);
David L. Jonesf561aba2017-03-08 01:02:16 +00004720
4721 if (Arg *A = Args.getLastArg(options::OPT_pg))
4722 if (Args.hasArg(options::OPT_fomit_frame_pointer))
4723 D.Diag(diag::err_drv_argument_not_allowed_with) << "-fomit-frame-pointer"
4724 << A->getAsString(Args);
4725
4726 // Claim some arguments which clang supports automatically.
4727
4728 // -fpch-preprocess is used with gcc to add a special marker in the output to
4729 // include the PCH file. Clang's PTH solution is completely transparent, so we
4730 // do not need to deal with it at all.
4731 Args.ClaimAllArgs(options::OPT_fpch_preprocess);
4732
4733 // Claim some arguments which clang doesn't support, but we don't
4734 // care to warn the user about.
4735 Args.ClaimAllArgs(options::OPT_clang_ignored_f_Group);
4736 Args.ClaimAllArgs(options::OPT_clang_ignored_m_Group);
4737
4738 // Disable warnings for clang -E -emit-llvm foo.c
4739 Args.ClaimAllArgs(options::OPT_emit_llvm);
4740}
4741
4742Clang::Clang(const ToolChain &TC)
4743 // CAUTION! The first constructor argument ("clang") is not arbitrary,
4744 // as it is for other tools. Some operations on a Tool actually test
4745 // whether that tool is Clang based on the Tool's Name as a string.
4746 : Tool("clang", "clang frontend", TC, RF_Full) {}
4747
4748Clang::~Clang() {}
4749
4750/// Add options related to the Objective-C runtime/ABI.
4751///
4752/// Returns true if the runtime is non-fragile.
4753ObjCRuntime Clang::AddObjCRuntimeArgs(const ArgList &args,
4754 ArgStringList &cmdArgs,
4755 RewriteKind rewriteKind) const {
4756 // Look for the controlling runtime option.
4757 Arg *runtimeArg =
4758 args.getLastArg(options::OPT_fnext_runtime, options::OPT_fgnu_runtime,
4759 options::OPT_fobjc_runtime_EQ);
4760
4761 // Just forward -fobjc-runtime= to the frontend. This supercedes
4762 // options about fragility.
4763 if (runtimeArg &&
4764 runtimeArg->getOption().matches(options::OPT_fobjc_runtime_EQ)) {
4765 ObjCRuntime runtime;
4766 StringRef value = runtimeArg->getValue();
4767 if (runtime.tryParse(value)) {
4768 getToolChain().getDriver().Diag(diag::err_drv_unknown_objc_runtime)
4769 << value;
4770 }
4771
4772 runtimeArg->render(args, cmdArgs);
4773 return runtime;
4774 }
4775
4776 // Otherwise, we'll need the ABI "version". Version numbers are
4777 // slightly confusing for historical reasons:
4778 // 1 - Traditional "fragile" ABI
4779 // 2 - Non-fragile ABI, version 1
4780 // 3 - Non-fragile ABI, version 2
4781 unsigned objcABIVersion = 1;
4782 // If -fobjc-abi-version= is present, use that to set the version.
4783 if (Arg *abiArg = args.getLastArg(options::OPT_fobjc_abi_version_EQ)) {
4784 StringRef value = abiArg->getValue();
4785 if (value == "1")
4786 objcABIVersion = 1;
4787 else if (value == "2")
4788 objcABIVersion = 2;
4789 else if (value == "3")
4790 objcABIVersion = 3;
4791 else
4792 getToolChain().getDriver().Diag(diag::err_drv_clang_unsupported) << value;
4793 } else {
4794 // Otherwise, determine if we are using the non-fragile ABI.
4795 bool nonFragileABIIsDefault =
4796 (rewriteKind == RK_NonFragile ||
4797 (rewriteKind == RK_None &&
4798 getToolChain().IsObjCNonFragileABIDefault()));
4799 if (args.hasFlag(options::OPT_fobjc_nonfragile_abi,
4800 options::OPT_fno_objc_nonfragile_abi,
4801 nonFragileABIIsDefault)) {
4802// Determine the non-fragile ABI version to use.
4803#ifdef DISABLE_DEFAULT_NONFRAGILEABI_TWO
4804 unsigned nonFragileABIVersion = 1;
4805#else
4806 unsigned nonFragileABIVersion = 2;
4807#endif
4808
4809 if (Arg *abiArg =
4810 args.getLastArg(options::OPT_fobjc_nonfragile_abi_version_EQ)) {
4811 StringRef value = abiArg->getValue();
4812 if (value == "1")
4813 nonFragileABIVersion = 1;
4814 else if (value == "2")
4815 nonFragileABIVersion = 2;
4816 else
4817 getToolChain().getDriver().Diag(diag::err_drv_clang_unsupported)
4818 << value;
4819 }
4820
4821 objcABIVersion = 1 + nonFragileABIVersion;
4822 } else {
4823 objcABIVersion = 1;
4824 }
4825 }
4826
4827 // We don't actually care about the ABI version other than whether
4828 // it's non-fragile.
4829 bool isNonFragile = objcABIVersion != 1;
4830
4831 // If we have no runtime argument, ask the toolchain for its default runtime.
4832 // However, the rewriter only really supports the Mac runtime, so assume that.
4833 ObjCRuntime runtime;
4834 if (!runtimeArg) {
4835 switch (rewriteKind) {
4836 case RK_None:
4837 runtime = getToolChain().getDefaultObjCRuntime(isNonFragile);
4838 break;
4839 case RK_Fragile:
4840 runtime = ObjCRuntime(ObjCRuntime::FragileMacOSX, VersionTuple());
4841 break;
4842 case RK_NonFragile:
4843 runtime = ObjCRuntime(ObjCRuntime::MacOSX, VersionTuple());
4844 break;
4845 }
4846
4847 // -fnext-runtime
4848 } else if (runtimeArg->getOption().matches(options::OPT_fnext_runtime)) {
4849 // On Darwin, make this use the default behavior for the toolchain.
4850 if (getToolChain().getTriple().isOSDarwin()) {
4851 runtime = getToolChain().getDefaultObjCRuntime(isNonFragile);
4852
4853 // Otherwise, build for a generic macosx port.
4854 } else {
4855 runtime = ObjCRuntime(ObjCRuntime::MacOSX, VersionTuple());
4856 }
4857
4858 // -fgnu-runtime
4859 } else {
4860 assert(runtimeArg->getOption().matches(options::OPT_fgnu_runtime));
4861 // Legacy behaviour is to target the gnustep runtime if we are in
4862 // non-fragile mode or the GCC runtime in fragile mode.
4863 if (isNonFragile)
4864 runtime = ObjCRuntime(ObjCRuntime::GNUstep, VersionTuple(1, 6));
4865 else
4866 runtime = ObjCRuntime(ObjCRuntime::GCC, VersionTuple());
4867 }
4868
4869 cmdArgs.push_back(
4870 args.MakeArgString("-fobjc-runtime=" + runtime.getAsString()));
4871 return runtime;
4872}
4873
4874static bool maybeConsumeDash(const std::string &EH, size_t &I) {
4875 bool HaveDash = (I + 1 < EH.size() && EH[I + 1] == '-');
4876 I += HaveDash;
4877 return !HaveDash;
4878}
4879
4880namespace {
4881struct EHFlags {
4882 bool Synch = false;
4883 bool Asynch = false;
4884 bool NoUnwindC = false;
4885};
4886} // end anonymous namespace
4887
4888/// /EH controls whether to run destructor cleanups when exceptions are
4889/// thrown. There are three modifiers:
4890/// - s: Cleanup after "synchronous" exceptions, aka C++ exceptions.
4891/// - a: Cleanup after "asynchronous" exceptions, aka structured exceptions.
4892/// The 'a' modifier is unimplemented and fundamentally hard in LLVM IR.
4893/// - c: Assume that extern "C" functions are implicitly nounwind.
4894/// The default is /EHs-c-, meaning cleanups are disabled.
4895static EHFlags parseClangCLEHFlags(const Driver &D, const ArgList &Args) {
4896 EHFlags EH;
4897
4898 std::vector<std::string> EHArgs =
4899 Args.getAllArgValues(options::OPT__SLASH_EH);
4900 for (auto EHVal : EHArgs) {
4901 for (size_t I = 0, E = EHVal.size(); I != E; ++I) {
4902 switch (EHVal[I]) {
4903 case 'a':
4904 EH.Asynch = maybeConsumeDash(EHVal, I);
4905 if (EH.Asynch)
4906 EH.Synch = false;
4907 continue;
4908 case 'c':
4909 EH.NoUnwindC = maybeConsumeDash(EHVal, I);
4910 continue;
4911 case 's':
4912 EH.Synch = maybeConsumeDash(EHVal, I);
4913 if (EH.Synch)
4914 EH.Asynch = false;
4915 continue;
4916 default:
4917 break;
4918 }
4919 D.Diag(clang::diag::err_drv_invalid_value) << "/EH" << EHVal;
4920 break;
4921 }
4922 }
4923 // The /GX, /GX- flags are only processed if there are not /EH flags.
4924 // The default is that /GX is not specified.
4925 if (EHArgs.empty() &&
4926 Args.hasFlag(options::OPT__SLASH_GX, options::OPT__SLASH_GX_,
4927 /*default=*/false)) {
4928 EH.Synch = true;
4929 EH.NoUnwindC = true;
4930 }
4931
4932 return EH;
4933}
4934
4935void Clang::AddClangCLArgs(const ArgList &Args, types::ID InputType,
4936 ArgStringList &CmdArgs,
4937 codegenoptions::DebugInfoKind *DebugInfoKind,
4938 bool *EmitCodeView) const {
4939 unsigned RTOptionID = options::OPT__SLASH_MT;
4940
4941 if (Args.hasArg(options::OPT__SLASH_LDd))
4942 // The /LDd option implies /MTd. The dependent lib part can be overridden,
4943 // but defining _DEBUG is sticky.
4944 RTOptionID = options::OPT__SLASH_MTd;
4945
4946 if (Arg *A = Args.getLastArg(options::OPT__SLASH_M_Group))
4947 RTOptionID = A->getOption().getID();
4948
4949 StringRef FlagForCRT;
4950 switch (RTOptionID) {
4951 case options::OPT__SLASH_MD:
4952 if (Args.hasArg(options::OPT__SLASH_LDd))
4953 CmdArgs.push_back("-D_DEBUG");
4954 CmdArgs.push_back("-D_MT");
4955 CmdArgs.push_back("-D_DLL");
4956 FlagForCRT = "--dependent-lib=msvcrt";
4957 break;
4958 case options::OPT__SLASH_MDd:
4959 CmdArgs.push_back("-D_DEBUG");
4960 CmdArgs.push_back("-D_MT");
4961 CmdArgs.push_back("-D_DLL");
4962 FlagForCRT = "--dependent-lib=msvcrtd";
4963 break;
4964 case options::OPT__SLASH_MT:
4965 if (Args.hasArg(options::OPT__SLASH_LDd))
4966 CmdArgs.push_back("-D_DEBUG");
4967 CmdArgs.push_back("-D_MT");
4968 CmdArgs.push_back("-flto-visibility-public-std");
4969 FlagForCRT = "--dependent-lib=libcmt";
4970 break;
4971 case options::OPT__SLASH_MTd:
4972 CmdArgs.push_back("-D_DEBUG");
4973 CmdArgs.push_back("-D_MT");
4974 CmdArgs.push_back("-flto-visibility-public-std");
4975 FlagForCRT = "--dependent-lib=libcmtd";
4976 break;
4977 default:
4978 llvm_unreachable("Unexpected option ID.");
4979 }
4980
4981 if (Args.hasArg(options::OPT__SLASH_Zl)) {
4982 CmdArgs.push_back("-D_VC_NODEFAULTLIB");
4983 } else {
4984 CmdArgs.push_back(FlagForCRT.data());
4985
4986 // This provides POSIX compatibility (maps 'open' to '_open'), which most
4987 // users want. The /Za flag to cl.exe turns this off, but it's not
4988 // implemented in clang.
4989 CmdArgs.push_back("--dependent-lib=oldnames");
4990 }
4991
4992 // Both /showIncludes and /E (and /EP) write to stdout. Allowing both
4993 // would produce interleaved output, so ignore /showIncludes in such cases.
Erich Keane87baae22017-10-20 19:18:30 +00004994 if ((!Args.hasArg(options::OPT_E) && !Args.hasArg(options::OPT__SLASH_EP)) ||
4995 (Args.hasArg(options::OPT__SLASH_P) &&
4996 Args.hasArg(options::OPT__SLASH_EP) && !Args.hasArg(options::OPT_E)))
David L. Jonesf561aba2017-03-08 01:02:16 +00004997 if (Arg *A = Args.getLastArg(options::OPT_show_includes))
4998 A->render(Args, CmdArgs);
4999
5000 // This controls whether or not we emit RTTI data for polymorphic types.
5001 if (Args.hasFlag(options::OPT__SLASH_GR_, options::OPT__SLASH_GR,
5002 /*default=*/false))
5003 CmdArgs.push_back("-fno-rtti-data");
5004
5005 // This controls whether or not we emit stack-protector instrumentation.
5006 // In MSVC, Buffer Security Check (/GS) is on by default.
5007 if (Args.hasFlag(options::OPT__SLASH_GS, options::OPT__SLASH_GS_,
5008 /*default=*/true)) {
5009 CmdArgs.push_back("-stack-protector");
5010 CmdArgs.push_back(Args.MakeArgString(Twine(LangOptions::SSPStrong)));
5011 }
5012
5013 // Emit CodeView if -Z7, -Zd, or -gline-tables-only are present.
5014 if (Arg *DebugInfoArg =
5015 Args.getLastArg(options::OPT__SLASH_Z7, options::OPT__SLASH_Zd,
5016 options::OPT_gline_tables_only)) {
5017 *EmitCodeView = true;
5018 if (DebugInfoArg->getOption().matches(options::OPT__SLASH_Z7))
5019 *DebugInfoKind = codegenoptions::LimitedDebugInfo;
5020 else
5021 *DebugInfoKind = codegenoptions::DebugLineTablesOnly;
5022 CmdArgs.push_back("-gcodeview");
5023 } else {
5024 *EmitCodeView = false;
5025 }
5026
5027 const Driver &D = getToolChain().getDriver();
5028 EHFlags EH = parseClangCLEHFlags(D, Args);
5029 if (EH.Synch || EH.Asynch) {
5030 if (types::isCXX(InputType))
5031 CmdArgs.push_back("-fcxx-exceptions");
5032 CmdArgs.push_back("-fexceptions");
5033 }
5034 if (types::isCXX(InputType) && EH.Synch && EH.NoUnwindC)
5035 CmdArgs.push_back("-fexternc-nounwind");
5036
5037 // /EP should expand to -E -P.
5038 if (Args.hasArg(options::OPT__SLASH_EP)) {
5039 CmdArgs.push_back("-E");
5040 CmdArgs.push_back("-P");
5041 }
5042
5043 unsigned VolatileOptionID;
5044 if (getToolChain().getArch() == llvm::Triple::x86_64 ||
5045 getToolChain().getArch() == llvm::Triple::x86)
5046 VolatileOptionID = options::OPT__SLASH_volatile_ms;
5047 else
5048 VolatileOptionID = options::OPT__SLASH_volatile_iso;
5049
5050 if (Arg *A = Args.getLastArg(options::OPT__SLASH_volatile_Group))
5051 VolatileOptionID = A->getOption().getID();
5052
5053 if (VolatileOptionID == options::OPT__SLASH_volatile_ms)
5054 CmdArgs.push_back("-fms-volatile");
5055
5056 Arg *MostGeneralArg = Args.getLastArg(options::OPT__SLASH_vmg);
5057 Arg *BestCaseArg = Args.getLastArg(options::OPT__SLASH_vmb);
5058 if (MostGeneralArg && BestCaseArg)
5059 D.Diag(clang::diag::err_drv_argument_not_allowed_with)
5060 << MostGeneralArg->getAsString(Args) << BestCaseArg->getAsString(Args);
5061
5062 if (MostGeneralArg) {
5063 Arg *SingleArg = Args.getLastArg(options::OPT__SLASH_vms);
5064 Arg *MultipleArg = Args.getLastArg(options::OPT__SLASH_vmm);
5065 Arg *VirtualArg = Args.getLastArg(options::OPT__SLASH_vmv);
5066
5067 Arg *FirstConflict = SingleArg ? SingleArg : MultipleArg;
5068 Arg *SecondConflict = VirtualArg ? VirtualArg : MultipleArg;
5069 if (FirstConflict && SecondConflict && FirstConflict != SecondConflict)
5070 D.Diag(clang::diag::err_drv_argument_not_allowed_with)
5071 << FirstConflict->getAsString(Args)
5072 << SecondConflict->getAsString(Args);
5073
5074 if (SingleArg)
5075 CmdArgs.push_back("-fms-memptr-rep=single");
5076 else if (MultipleArg)
5077 CmdArgs.push_back("-fms-memptr-rep=multiple");
5078 else
5079 CmdArgs.push_back("-fms-memptr-rep=virtual");
5080 }
5081
Reid Kleckner4b2f3262017-05-31 15:39:28 +00005082 // Parse the default calling convention options.
5083 if (Arg *CCArg =
5084 Args.getLastArg(options::OPT__SLASH_Gd, options::OPT__SLASH_Gr,
Erich Keanea957ffb2017-11-02 21:08:00 +00005085 options::OPT__SLASH_Gz, options::OPT__SLASH_Gv,
5086 options::OPT__SLASH_Gregcall)) {
Reid Kleckner4b2f3262017-05-31 15:39:28 +00005087 unsigned DCCOptId = CCArg->getOption().getID();
5088 const char *DCCFlag = nullptr;
5089 bool ArchSupported = true;
5090 llvm::Triple::ArchType Arch = getToolChain().getArch();
5091 switch (DCCOptId) {
5092 case options::OPT__SLASH_Gd:
Reid Kleckner6344f102017-05-31 15:50:35 +00005093 DCCFlag = "-fdefault-calling-conv=cdecl";
Reid Kleckner4b2f3262017-05-31 15:39:28 +00005094 break;
5095 case options::OPT__SLASH_Gr:
5096 ArchSupported = Arch == llvm::Triple::x86;
Reid Kleckner6344f102017-05-31 15:50:35 +00005097 DCCFlag = "-fdefault-calling-conv=fastcall";
Reid Kleckner4b2f3262017-05-31 15:39:28 +00005098 break;
5099 case options::OPT__SLASH_Gz:
5100 ArchSupported = Arch == llvm::Triple::x86;
Reid Kleckner6344f102017-05-31 15:50:35 +00005101 DCCFlag = "-fdefault-calling-conv=stdcall";
Reid Kleckner4b2f3262017-05-31 15:39:28 +00005102 break;
5103 case options::OPT__SLASH_Gv:
5104 ArchSupported = Arch == llvm::Triple::x86 || Arch == llvm::Triple::x86_64;
Reid Kleckner6344f102017-05-31 15:50:35 +00005105 DCCFlag = "-fdefault-calling-conv=vectorcall";
Reid Kleckner4b2f3262017-05-31 15:39:28 +00005106 break;
Erich Keanea957ffb2017-11-02 21:08:00 +00005107 case options::OPT__SLASH_Gregcall:
5108 ArchSupported = Arch == llvm::Triple::x86 || Arch == llvm::Triple::x86_64;
5109 DCCFlag = "-fdefault-calling-conv=regcall";
5110 break;
Reid Kleckner4b2f3262017-05-31 15:39:28 +00005111 }
5112
5113 // MSVC doesn't warn if /Gr or /Gz is used on x64, so we don't either.
5114 if (ArchSupported && DCCFlag)
5115 CmdArgs.push_back(DCCFlag);
5116 }
David L. Jonesf561aba2017-03-08 01:02:16 +00005117
5118 if (Arg *A = Args.getLastArg(options::OPT_vtordisp_mode_EQ))
5119 A->render(Args, CmdArgs);
5120
5121 if (!Args.hasArg(options::OPT_fdiagnostics_format_EQ)) {
5122 CmdArgs.push_back("-fdiagnostics-format");
5123 if (Args.hasArg(options::OPT__SLASH_fallback))
5124 CmdArgs.push_back("msvc-fallback");
5125 else
5126 CmdArgs.push_back("msvc");
5127 }
Adrian McCarthydb2736d2018-01-09 23:49:30 +00005128
5129 if (Args.hasArg(options::OPT__SLASH_Guard) &&
5130 Args.getLastArgValue(options::OPT__SLASH_Guard).equals_lower("cf"))
5131 CmdArgs.push_back("-cfguard");
David L. Jonesf561aba2017-03-08 01:02:16 +00005132}
5133
5134visualstudio::Compiler *Clang::getCLFallback() const {
5135 if (!CLFallback)
5136 CLFallback.reset(new visualstudio::Compiler(getToolChain()));
5137 return CLFallback.get();
5138}
5139
5140
5141const char *Clang::getBaseInputName(const ArgList &Args,
5142 const InputInfo &Input) {
5143 return Args.MakeArgString(llvm::sys::path::filename(Input.getBaseInput()));
5144}
5145
5146const char *Clang::getBaseInputStem(const ArgList &Args,
5147 const InputInfoList &Inputs) {
5148 const char *Str = getBaseInputName(Args, Inputs[0]);
5149
5150 if (const char *End = strrchr(Str, '.'))
5151 return Args.MakeArgString(std::string(Str, End));
5152
5153 return Str;
5154}
5155
5156const char *Clang::getDependencyFileName(const ArgList &Args,
5157 const InputInfoList &Inputs) {
5158 // FIXME: Think about this more.
5159 std::string Res;
5160
5161 if (Arg *OutputOpt = Args.getLastArg(options::OPT_o)) {
5162 std::string Str(OutputOpt->getValue());
5163 Res = Str.substr(0, Str.rfind('.'));
5164 } else {
5165 Res = getBaseInputStem(Args, Inputs);
5166 }
5167 return Args.MakeArgString(Res + ".d");
5168}
5169
5170// Begin ClangAs
5171
5172void ClangAs::AddMIPSTargetArgs(const ArgList &Args,
5173 ArgStringList &CmdArgs) const {
5174 StringRef CPUName;
5175 StringRef ABIName;
5176 const llvm::Triple &Triple = getToolChain().getTriple();
5177 mips::getMipsCPUAndABI(Args, Triple, CPUName, ABIName);
5178
5179 CmdArgs.push_back("-target-abi");
5180 CmdArgs.push_back(ABIName.data());
5181}
5182
5183void ClangAs::AddX86TargetArgs(const ArgList &Args,
5184 ArgStringList &CmdArgs) const {
5185 if (Arg *A = Args.getLastArg(options::OPT_masm_EQ)) {
5186 StringRef Value = A->getValue();
5187 if (Value == "intel" || Value == "att") {
5188 CmdArgs.push_back("-mllvm");
5189 CmdArgs.push_back(Args.MakeArgString("-x86-asm-syntax=" + Value));
5190 } else {
5191 getToolChain().getDriver().Diag(diag::err_drv_unsupported_option_argument)
5192 << A->getOption().getName() << Value;
5193 }
5194 }
5195}
5196
5197void ClangAs::ConstructJob(Compilation &C, const JobAction &JA,
5198 const InputInfo &Output, const InputInfoList &Inputs,
5199 const ArgList &Args,
5200 const char *LinkingOutput) const {
5201 ArgStringList CmdArgs;
5202
5203 assert(Inputs.size() == 1 && "Unexpected number of inputs.");
5204 const InputInfo &Input = Inputs[0];
5205
5206 const llvm::Triple &Triple = getToolChain().getEffectiveTriple();
5207 const std::string &TripleStr = Triple.getTriple();
Saleem Abdulrasoold064e912017-06-23 15:34:16 +00005208 const auto &D = getToolChain().getDriver();
David L. Jonesf561aba2017-03-08 01:02:16 +00005209
5210 // Don't warn about "clang -w -c foo.s"
5211 Args.ClaimAllArgs(options::OPT_w);
5212 // and "clang -emit-llvm -c foo.s"
5213 Args.ClaimAllArgs(options::OPT_emit_llvm);
5214
5215 claimNoWarnArgs(Args);
5216
5217 // Invoke ourselves in -cc1as mode.
5218 //
5219 // FIXME: Implement custom jobs for internal actions.
5220 CmdArgs.push_back("-cc1as");
5221
5222 // Add the "effective" target triple.
5223 CmdArgs.push_back("-triple");
5224 CmdArgs.push_back(Args.MakeArgString(TripleStr));
5225
5226 // Set the output mode, we currently only expect to be used as a real
5227 // assembler.
5228 CmdArgs.push_back("-filetype");
5229 CmdArgs.push_back("obj");
5230
5231 // Set the main file name, so that debug info works even with
5232 // -save-temps or preprocessed assembly.
5233 CmdArgs.push_back("-main-file-name");
5234 CmdArgs.push_back(Clang::getBaseInputName(Args, Input));
5235
5236 // Add the target cpu
5237 std::string CPU = getCPUName(Args, Triple, /*FromAs*/ true);
5238 if (!CPU.empty()) {
5239 CmdArgs.push_back("-target-cpu");
5240 CmdArgs.push_back(Args.MakeArgString(CPU));
5241 }
5242
5243 // Add the target features
5244 getTargetFeatures(getToolChain(), Triple, Args, CmdArgs, true);
5245
5246 // Ignore explicit -force_cpusubtype_ALL option.
5247 (void)Args.hasArg(options::OPT_force__cpusubtype__ALL);
5248
5249 // Pass along any -I options so we get proper .include search paths.
5250 Args.AddAllArgs(CmdArgs, options::OPT_I_Group);
5251
5252 // Determine the original source input.
5253 const Action *SourceAction = &JA;
5254 while (SourceAction->getKind() != Action::InputClass) {
5255 assert(!SourceAction->getInputs().empty() && "unexpected root action!");
5256 SourceAction = SourceAction->getInputs()[0];
5257 }
5258
5259 // Forward -g and handle debug info related flags, assuming we are dealing
5260 // with an actual assembly file.
5261 bool WantDebug = false;
5262 unsigned DwarfVersion = 0;
5263 Args.ClaimAllArgs(options::OPT_g_Group);
5264 if (Arg *A = Args.getLastArg(options::OPT_g_Group)) {
5265 WantDebug = !A->getOption().matches(options::OPT_g0) &&
5266 !A->getOption().matches(options::OPT_ggdb0);
5267 if (WantDebug)
5268 DwarfVersion = DwarfVersionNum(A->getSpelling());
5269 }
5270 if (DwarfVersion == 0)
5271 DwarfVersion = getToolChain().GetDefaultDwarfVersion();
5272
5273 codegenoptions::DebugInfoKind DebugInfoKind = codegenoptions::NoDebugInfo;
5274
5275 if (SourceAction->getType() == types::TY_Asm ||
5276 SourceAction->getType() == types::TY_PP_Asm) {
5277 // You might think that it would be ok to set DebugInfoKind outside of
5278 // the guard for source type, however there is a test which asserts
5279 // that some assembler invocation receives no -debug-info-kind,
5280 // and it's not clear whether that test is just overly restrictive.
5281 DebugInfoKind = (WantDebug ? codegenoptions::LimitedDebugInfo
5282 : codegenoptions::NoDebugInfo);
5283 // Add the -fdebug-compilation-dir flag if needed.
5284 addDebugCompDirArg(Args, CmdArgs);
5285
5286 // Set the AT_producer to the clang version when using the integrated
5287 // assembler on assembly source files.
5288 CmdArgs.push_back("-dwarf-debug-producer");
5289 CmdArgs.push_back(Args.MakeArgString(getClangFullVersion()));
5290
5291 // And pass along -I options
5292 Args.AddAllArgs(CmdArgs, options::OPT_I);
5293 }
5294 RenderDebugEnablingArgs(Args, CmdArgs, DebugInfoKind, DwarfVersion,
5295 llvm::DebuggerKind::Default);
Saleem Abdulrasoold064e912017-06-23 15:34:16 +00005296 RenderDebugInfoCompressionArgs(Args, CmdArgs, D);
5297
David L. Jonesf561aba2017-03-08 01:02:16 +00005298
5299 // Handle -fPIC et al -- the relocation-model affects the assembler
5300 // for some targets.
5301 llvm::Reloc::Model RelocationModel;
5302 unsigned PICLevel;
5303 bool IsPIE;
5304 std::tie(RelocationModel, PICLevel, IsPIE) =
5305 ParsePICArgs(getToolChain(), Args);
5306
5307 const char *RMName = RelocationModelName(RelocationModel);
5308 if (RMName) {
5309 CmdArgs.push_back("-mrelocation-model");
5310 CmdArgs.push_back(RMName);
5311 }
5312
5313 // Optionally embed the -cc1as level arguments into the debug info, for build
5314 // analysis.
5315 if (getToolChain().UseDwarfDebugFlags()) {
5316 ArgStringList OriginalArgs;
5317 for (const auto &Arg : Args)
5318 Arg->render(Args, OriginalArgs);
5319
5320 SmallString<256> Flags;
5321 const char *Exec = getToolChain().getDriver().getClangProgramPath();
5322 Flags += Exec;
5323 for (const char *OriginalArg : OriginalArgs) {
5324 SmallString<128> EscapedArg;
5325 EscapeSpacesAndBackslashes(OriginalArg, EscapedArg);
5326 Flags += " ";
5327 Flags += EscapedArg;
5328 }
5329 CmdArgs.push_back("-dwarf-debug-flags");
5330 CmdArgs.push_back(Args.MakeArgString(Flags));
5331 }
5332
5333 // FIXME: Add -static support, once we have it.
5334
5335 // Add target specific flags.
5336 switch (getToolChain().getArch()) {
5337 default:
5338 break;
5339
5340 case llvm::Triple::mips:
5341 case llvm::Triple::mipsel:
5342 case llvm::Triple::mips64:
5343 case llvm::Triple::mips64el:
5344 AddMIPSTargetArgs(Args, CmdArgs);
5345 break;
5346
5347 case llvm::Triple::x86:
5348 case llvm::Triple::x86_64:
5349 AddX86TargetArgs(Args, CmdArgs);
5350 break;
Oliver Stannard692dc542017-04-18 13:21:05 +00005351
5352 case llvm::Triple::arm:
5353 case llvm::Triple::armeb:
5354 case llvm::Triple::thumb:
5355 case llvm::Triple::thumbeb:
5356 // This isn't in AddARMTargetArgs because we want to do this for assembly
5357 // only, not C/C++.
5358 if (Args.hasFlag(options::OPT_mdefault_build_attributes,
5359 options::OPT_mno_default_build_attributes, true)) {
5360 CmdArgs.push_back("-mllvm");
5361 CmdArgs.push_back("-arm-add-build-attributes");
5362 }
5363 break;
David L. Jonesf561aba2017-03-08 01:02:16 +00005364 }
5365
5366 // Consume all the warning flags. Usually this would be handled more
5367 // gracefully by -cc1 (warning about unknown warning flags, etc) but -cc1as
5368 // doesn't handle that so rather than warning about unused flags that are
5369 // actually used, we'll lie by omission instead.
5370 // FIXME: Stop lying and consume only the appropriate driver flags
5371 Args.ClaimAllArgs(options::OPT_W_Group);
5372
5373 CollectArgsForIntegratedAssembler(C, Args, CmdArgs,
5374 getToolChain().getDriver());
5375
5376 Args.AddAllArgs(CmdArgs, options::OPT_mllvm);
5377
5378 assert(Output.isFilename() && "Unexpected lipo output.");
5379 CmdArgs.push_back("-o");
5380 CmdArgs.push_back(Output.getFilename());
5381
5382 assert(Input.isFilename() && "Invalid input.");
5383 CmdArgs.push_back(Input.getFilename());
5384
5385 const char *Exec = getToolChain().getDriver().getClangProgramPath();
5386 C.addCommand(llvm::make_unique<Command>(JA, *this, Exec, CmdArgs, Inputs));
5387
5388 // Handle the debug info splitting at object creation time if we're
5389 // creating an object.
5390 // TODO: Currently only works on linux with newer objcopy.
5391 if (Args.hasArg(options::OPT_gsplit_dwarf) &&
5392 getToolChain().getTriple().isOSLinux())
5393 SplitDebugInfo(getToolChain(), C, *this, JA, Args, Output,
5394 SplitDebugName(Args, Input));
5395}
5396
5397// Begin OffloadBundler
5398
5399void OffloadBundler::ConstructJob(Compilation &C, const JobAction &JA,
5400 const InputInfo &Output,
5401 const InputInfoList &Inputs,
5402 const llvm::opt::ArgList &TCArgs,
5403 const char *LinkingOutput) const {
5404 // The version with only one output is expected to refer to a bundling job.
5405 assert(isa<OffloadBundlingJobAction>(JA) && "Expecting bundling job!");
5406
5407 // The bundling command looks like this:
5408 // clang-offload-bundler -type=bc
5409 // -targets=host-triple,openmp-triple1,openmp-triple2
5410 // -outputs=input_file
5411 // -inputs=unbundle_file_host,unbundle_file_tgt1,unbundle_file_tgt2"
5412
5413 ArgStringList CmdArgs;
5414
5415 // Get the type.
5416 CmdArgs.push_back(TCArgs.MakeArgString(
5417 Twine("-type=") + types::getTypeTempSuffix(Output.getType())));
5418
5419 assert(JA.getInputs().size() == Inputs.size() &&
5420 "Not have inputs for all dependence actions??");
5421
5422 // Get the targets.
5423 SmallString<128> Triples;
5424 Triples += "-targets=";
5425 for (unsigned I = 0; I < Inputs.size(); ++I) {
5426 if (I)
5427 Triples += ',';
5428
Jonas Hahnfeld7c78cc52017-11-21 14:44:45 +00005429 // Find ToolChain for this input.
David L. Jonesf561aba2017-03-08 01:02:16 +00005430 Action::OffloadKind CurKind = Action::OFK_Host;
5431 const ToolChain *CurTC = &getToolChain();
5432 const Action *CurDep = JA.getInputs()[I];
5433
5434 if (const auto *OA = dyn_cast<OffloadAction>(CurDep)) {
Jonas Hahnfeld7c78cc52017-11-21 14:44:45 +00005435 CurTC = nullptr;
David L. Jonesf561aba2017-03-08 01:02:16 +00005436 OA->doOnEachDependence([&](Action *A, const ToolChain *TC, const char *) {
Jonas Hahnfeld7c78cc52017-11-21 14:44:45 +00005437 assert(CurTC == nullptr && "Expected one dependence!");
David L. Jonesf561aba2017-03-08 01:02:16 +00005438 CurKind = A->getOffloadingDeviceKind();
5439 CurTC = TC;
5440 });
5441 }
5442 Triples += Action::GetOffloadKindName(CurKind);
5443 Triples += '-';
5444 Triples += CurTC->getTriple().normalize();
5445 }
5446 CmdArgs.push_back(TCArgs.MakeArgString(Triples));
5447
5448 // Get bundled file command.
5449 CmdArgs.push_back(
5450 TCArgs.MakeArgString(Twine("-outputs=") + Output.getFilename()));
5451
5452 // Get unbundled files command.
5453 SmallString<128> UB;
5454 UB += "-inputs=";
5455 for (unsigned I = 0; I < Inputs.size(); ++I) {
5456 if (I)
5457 UB += ',';
Jonas Hahnfeld7c78cc52017-11-21 14:44:45 +00005458
5459 // Find ToolChain for this input.
5460 const ToolChain *CurTC = &getToolChain();
5461 if (const auto *OA = dyn_cast<OffloadAction>(JA.getInputs()[I])) {
5462 CurTC = nullptr;
5463 OA->doOnEachDependence([&](Action *, const ToolChain *TC, const char *) {
5464 assert(CurTC == nullptr && "Expected one dependence!");
5465 CurTC = TC;
5466 });
5467 }
5468 UB += CurTC->getInputFilename(Inputs[I]);
David L. Jonesf561aba2017-03-08 01:02:16 +00005469 }
5470 CmdArgs.push_back(TCArgs.MakeArgString(UB));
5471
5472 // All the inputs are encoded as commands.
5473 C.addCommand(llvm::make_unique<Command>(
5474 JA, *this,
5475 TCArgs.MakeArgString(getToolChain().GetProgramPath(getShortName())),
5476 CmdArgs, None));
5477}
5478
5479void OffloadBundler::ConstructJobMultipleOutputs(
5480 Compilation &C, const JobAction &JA, const InputInfoList &Outputs,
5481 const InputInfoList &Inputs, const llvm::opt::ArgList &TCArgs,
5482 const char *LinkingOutput) const {
5483 // The version with multiple outputs is expected to refer to a unbundling job.
5484 auto &UA = cast<OffloadUnbundlingJobAction>(JA);
5485
5486 // The unbundling command looks like this:
5487 // clang-offload-bundler -type=bc
5488 // -targets=host-triple,openmp-triple1,openmp-triple2
5489 // -inputs=input_file
5490 // -outputs=unbundle_file_host,unbundle_file_tgt1,unbundle_file_tgt2"
5491 // -unbundle
5492
5493 ArgStringList CmdArgs;
5494
5495 assert(Inputs.size() == 1 && "Expecting to unbundle a single file!");
5496 InputInfo Input = Inputs.front();
5497
5498 // Get the type.
5499 CmdArgs.push_back(TCArgs.MakeArgString(
5500 Twine("-type=") + types::getTypeTempSuffix(Input.getType())));
5501
5502 // Get the targets.
5503 SmallString<128> Triples;
5504 Triples += "-targets=";
5505 auto DepInfo = UA.getDependentActionsInfo();
5506 for (unsigned I = 0; I < DepInfo.size(); ++I) {
5507 if (I)
5508 Triples += ',';
5509
5510 auto &Dep = DepInfo[I];
5511 Triples += Action::GetOffloadKindName(Dep.DependentOffloadKind);
5512 Triples += '-';
5513 Triples += Dep.DependentToolChain->getTriple().normalize();
5514 }
5515
5516 CmdArgs.push_back(TCArgs.MakeArgString(Triples));
5517
5518 // Get bundled file command.
5519 CmdArgs.push_back(
5520 TCArgs.MakeArgString(Twine("-inputs=") + Input.getFilename()));
5521
5522 // Get unbundled files command.
5523 SmallString<128> UB;
5524 UB += "-outputs=";
5525 for (unsigned I = 0; I < Outputs.size(); ++I) {
5526 if (I)
5527 UB += ',';
Jonas Hahnfeld7c78cc52017-11-21 14:44:45 +00005528 UB += DepInfo[I].DependentToolChain->getInputFilename(Outputs[I]);
David L. Jonesf561aba2017-03-08 01:02:16 +00005529 }
5530 CmdArgs.push_back(TCArgs.MakeArgString(UB));
5531 CmdArgs.push_back("-unbundle");
5532
5533 // All the inputs are encoded as commands.
5534 C.addCommand(llvm::make_unique<Command>(
5535 JA, *this,
5536 TCArgs.MakeArgString(getToolChain().GetProgramPath(getShortName())),
5537 CmdArgs, None));
5538}