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