blob: 13f859da5415d0fdfbd5efac01724b1c6bb67a69 [file] [log] [blame]
Nick Lewyckye3365aa2010-09-23 23:48:20 +00001//===--- Tools.cpp - Tools Implementations --------------------------------===//
Daniel Dunbar47ac7d22009-03-18 06:00:36 +00002//
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 "Tools.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000011#include "InputInfo.h"
12#include "SanitizerArgs.h"
13#include "ToolChains.h"
14#include "clang/Basic/ObjCRuntime.h"
Daniel Dunbar1d460332009-03-18 10:01:51 +000015#include "clang/Driver/Action.h"
Daniel Dunbar871adcf2009-03-18 07:06:02 +000016#include "clang/Driver/Arg.h"
Daniel Dunbarb488c1d2009-03-18 08:07:30 +000017#include "clang/Driver/ArgList.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000018#include "clang/Driver/Compilation.h"
Daniel Dunbaree848a72009-10-29 02:39:57 +000019#include "clang/Driver/Driver.h"
20#include "clang/Driver/DriverDiagnostic.h"
Daniel Dunbar871adcf2009-03-18 07:06:02 +000021#include "clang/Driver/Job.h"
Daniel Dunbarb488c1d2009-03-18 08:07:30 +000022#include "clang/Driver/Option.h"
Daniel Dunbar265e9ef2009-11-19 04:25:22 +000023#include "clang/Driver/Options.h"
Daniel Dunbarb488c1d2009-03-18 08:07:30 +000024#include "clang/Driver/ToolChain.h"
Daniel Dunbar871adcf2009-03-18 07:06:02 +000025#include "clang/Driver/Util.h"
Daniel Dunbar88137642009-09-09 22:32:48 +000026#include "llvm/ADT/SmallString.h"
Douglas Gregor55d3f7a2009-10-29 00:41:01 +000027#include "llvm/ADT/StringSwitch.h"
Daniel Dunbar5b750fe2009-09-09 22:32:34 +000028#include "llvm/ADT/Twine.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000029#include "llvm/Support/ErrorHandling.h"
Michael J. Spencer32bef4e2011-01-10 02:34:13 +000030#include "llvm/Support/FileSystem.h"
Daniel Dunbar02633b52009-03-26 16:23:12 +000031#include "llvm/Support/Format.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000032#include "llvm/Support/Host.h"
33#include "llvm/Support/Process.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000034#include "llvm/Support/raw_ostream.h"
Daniel Dunbar871adcf2009-03-18 07:06:02 +000035
Daniel Dunbar47ac7d22009-03-18 06:00:36 +000036using namespace clang::driver;
37using namespace clang::driver::tools;
Chris Lattner5f9e2722011-07-23 10:55:15 +000038using namespace clang;
Daniel Dunbar47ac7d22009-03-18 06:00:36 +000039
Daniel Dunbar88a3d6c2009-09-10 01:21:05 +000040/// CheckPreprocessingOptions - Perform some validation of preprocessing
41/// arguments that is shared with gcc.
42static void CheckPreprocessingOptions(const Driver &D, const ArgList &Args) {
43 if (Arg *A = Args.getLastArg(options::OPT_C, options::OPT_CC))
Joerg Sonnenberger9ade4ae2011-03-06 23:31:01 +000044 if (!Args.hasArg(options::OPT_E) && !D.CCCIsCPP)
Chris Lattner5f9e2722011-07-23 10:55:15 +000045 D.Diag(diag::err_drv_argument_only_allowed_with)
Daniel Dunbar88a3d6c2009-09-10 01:21:05 +000046 << A->getAsString(Args) << "-E";
47}
48
Daniel Dunbare2fd6642009-09-10 01:21:12 +000049/// CheckCodeGenerationOptions - Perform some validation of code generation
50/// arguments that is shared with gcc.
51static void CheckCodeGenerationOptions(const Driver &D, const ArgList &Args) {
52 // In gcc, only ARM checks this, but it seems reasonable to check universally.
53 if (Args.hasArg(options::OPT_static))
54 if (const Arg *A = Args.getLastArg(options::OPT_dynamic,
55 options::OPT_mdynamic_no_pic))
Chris Lattner5f9e2722011-07-23 10:55:15 +000056 D.Diag(diag::err_drv_argument_not_allowed_with)
Daniel Dunbare2fd6642009-09-10 01:21:12 +000057 << A->getAsString(Args) << "-static";
58}
59
Chris Lattner3edbeb72010-03-29 17:55:58 +000060// Quote target names for inclusion in GNU Make dependency files.
61// Only the characters '$', '#', ' ', '\t' are quoted.
Chris Lattner5f9e2722011-07-23 10:55:15 +000062static void QuoteTarget(StringRef Target,
63 SmallVectorImpl<char> &Res) {
Chris Lattner3edbeb72010-03-29 17:55:58 +000064 for (unsigned i = 0, e = Target.size(); i != e; ++i) {
65 switch (Target[i]) {
66 case ' ':
67 case '\t':
68 // Escape the preceding backslashes
69 for (int j = i - 1; j >= 0 && Target[j] == '\\'; --j)
70 Res.push_back('\\');
71
72 // Escape the space/tab
73 Res.push_back('\\');
74 break;
75 case '$':
76 Res.push_back('$');
77 break;
78 case '#':
79 Res.push_back('\\');
80 break;
81 default:
82 break;
83 }
84
85 Res.push_back(Target[i]);
86 }
87}
88
Bill Wendling3d717152012-03-12 22:10:06 +000089static void addDirectoryList(const ArgList &Args,
Bill Wendlingbdb8f3c2012-03-12 21:22:35 +000090 ArgStringList &CmdArgs,
91 const char *ArgName,
Bill Wendling3d717152012-03-12 22:10:06 +000092 const char *EnvVar) {
93 const char *DirList = ::getenv(EnvVar);
Chad Rosier89aa2ce2012-10-30 21:42:09 +000094 bool CombinedArg = false;
95
Bill Wendlingbdb8f3c2012-03-12 21:22:35 +000096 if (!DirList)
97 return; // Nothing to do.
98
Chad Rosier89aa2ce2012-10-30 21:42:09 +000099 StringRef Name(ArgName);
100 if (Name.equals("-I") || Name.equals("-L"))
101 CombinedArg = true;
102
Bill Wendlingbdb8f3c2012-03-12 21:22:35 +0000103 StringRef Dirs(DirList);
104 if (Dirs.empty()) // Empty string should not add '.'.
105 return;
106
107 StringRef::size_type Delim;
108 while ((Delim = Dirs.find(llvm::sys::PathSeparator)) != StringRef::npos) {
109 if (Delim == 0) { // Leading colon.
Chad Rosier89aa2ce2012-10-30 21:42:09 +0000110 if (CombinedArg) {
111 CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + "."));
112 } else {
113 CmdArgs.push_back(ArgName);
114 CmdArgs.push_back(".");
115 }
Bill Wendlingbdb8f3c2012-03-12 21:22:35 +0000116 } else {
Chad Rosier89aa2ce2012-10-30 21:42:09 +0000117 if (CombinedArg) {
118 CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + Dirs.substr(0, Delim)));
119 } else {
120 CmdArgs.push_back(ArgName);
121 CmdArgs.push_back(Args.MakeArgString(Dirs.substr(0, Delim)));
122 }
Bill Wendlingbdb8f3c2012-03-12 21:22:35 +0000123 }
Nico Weber09c5c392012-03-19 15:00:03 +0000124 Dirs = Dirs.substr(Delim + 1);
Bill Wendlingbdb8f3c2012-03-12 21:22:35 +0000125 }
126
127 if (Dirs.empty()) { // Trailing colon.
Chad Rosier89aa2ce2012-10-30 21:42:09 +0000128 if (CombinedArg) {
129 CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + "."));
130 } else {
131 CmdArgs.push_back(ArgName);
132 CmdArgs.push_back(".");
133 }
Bill Wendlingbdb8f3c2012-03-12 21:22:35 +0000134 } else { // Add the last path.
Chad Rosier89aa2ce2012-10-30 21:42:09 +0000135 if (CombinedArg) {
136 CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + Dirs));
137 } else {
138 CmdArgs.push_back(ArgName);
139 CmdArgs.push_back(Args.MakeArgString(Dirs));
140 }
Bill Wendlingbdb8f3c2012-03-12 21:22:35 +0000141 }
142}
143
Daniel Dunbar2008fee2010-09-17 00:24:54 +0000144static void AddLinkerInputs(const ToolChain &TC,
145 const InputInfoList &Inputs, const ArgList &Args,
146 ArgStringList &CmdArgs) {
147 const Driver &D = TC.getDriver();
148
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000149 // Add extra linker input arguments which are not treated as inputs
150 // (constructed via -Xarch_).
151 Args.AddAllArgValues(CmdArgs, options::OPT_Zlinker_input);
152
Daniel Dunbar2008fee2010-09-17 00:24:54 +0000153 for (InputInfoList::const_iterator
154 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
155 const InputInfo &II = *it;
156
157 if (!TC.HasNativeLLVMSupport()) {
158 // Don't try to pass LLVM inputs unless we have native support.
159 if (II.getType() == types::TY_LLVM_IR ||
160 II.getType() == types::TY_LTO_IR ||
161 II.getType() == types::TY_LLVM_BC ||
162 II.getType() == types::TY_LTO_BC)
Chris Lattner5f9e2722011-07-23 10:55:15 +0000163 D.Diag(diag::err_drv_no_linker_llvm_support)
Daniel Dunbar2008fee2010-09-17 00:24:54 +0000164 << TC.getTripleString();
165 }
166
Daniel Dunbare5a37f42010-09-17 00:45:02 +0000167 // Add filenames immediately.
168 if (II.isFilename()) {
Daniel Dunbar2008fee2010-09-17 00:24:54 +0000169 CmdArgs.push_back(II.getFilename());
Daniel Dunbare5a37f42010-09-17 00:45:02 +0000170 continue;
171 }
172
173 // Otherwise, this is a linker input argument.
174 const Arg &A = II.getInputArg();
175
176 // Handle reserved library options.
177 if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx)) {
Daniel Dunbar132e35d2010-09-17 01:20:05 +0000178 TC.AddCXXStdlibLibArgs(Args, CmdArgs);
Shantonu Sen7433fed2010-09-17 18:39:08 +0000179 } else if (A.getOption().matches(options::OPT_Z_reserved_lib_cckext)) {
180 TC.AddCCKextLibArgs(Args, CmdArgs);
Daniel Dunbare5a37f42010-09-17 00:45:02 +0000181 } else
182 A.renderAsInput(Args, CmdArgs);
Daniel Dunbar2008fee2010-09-17 00:24:54 +0000183 }
Bill Wendlingbdb8f3c2012-03-12 21:22:35 +0000184
185 // LIBRARY_PATH - included following the user specified library paths.
Bill Wendling3d717152012-03-12 22:10:06 +0000186 addDirectoryList(Args, CmdArgs, "-L", "LIBRARY_PATH");
Daniel Dunbar2008fee2010-09-17 00:24:54 +0000187}
188
John McCallf85e1932011-06-15 23:02:42 +0000189/// \brief Determine whether Objective-C automated reference counting is
190/// enabled.
191static bool isObjCAutoRefCount(const ArgList &Args) {
192 return Args.hasFlag(options::OPT_fobjc_arc, options::OPT_fno_objc_arc, false);
193}
194
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000195/// \brief Determine whether we are linking the ObjC runtime.
196static bool isObjCRuntimeLinked(const ArgList &Args) {
Bob Wilsona7635f12012-08-07 19:58:00 +0000197 if (isObjCAutoRefCount(Args)) {
198 Args.ClaimAllArgs(options::OPT_fobjc_link_runtime);
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000199 return true;
Bob Wilsona7635f12012-08-07 19:58:00 +0000200 }
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000201 return Args.hasArg(options::OPT_fobjc_link_runtime);
202}
203
Rafael Espindoladb3f24a2011-06-02 18:58:46 +0000204static void addProfileRT(const ToolChain &TC, const ArgList &Args,
Bill Wendling3f4be6f2011-06-27 19:15:03 +0000205 ArgStringList &CmdArgs,
206 llvm::Triple Triple) {
207 if (!(Args.hasArg(options::OPT_fprofile_arcs) ||
208 Args.hasArg(options::OPT_fprofile_generate) ||
209 Args.hasArg(options::OPT_fcreate_profile) ||
210 Args.hasArg(options::OPT_coverage)))
211 return;
212
213 // GCC links libgcov.a by adding -L<inst>/gcc/lib/gcc/<triple>/<ver> -lgcov to
214 // the link line. We cannot do the same thing because unlike gcov there is a
215 // libprofile_rt.so. We used to use the -l:libprofile_rt.a syntax, but that is
216 // not supported by old linkers.
Benjamin Kramerf2db04c2011-11-07 16:02:25 +0000217 std::string ProfileRT =
218 std::string(TC.getDriver().Dir) + "/../lib/libprofile_rt.a";
Bill Wendling3f4be6f2011-06-27 19:15:03 +0000219
Bill Wendling3f4be6f2011-06-27 19:15:03 +0000220 CmdArgs.push_back(Args.MakeArgString(ProfileRT));
Rafael Espindoladb3f24a2011-06-02 18:58:46 +0000221}
222
Michael J. Spencer91e06da2012-10-19 22:37:06 +0000223static bool forwardToGCC(const Option &O) {
224 return !O.hasFlag(options::NoForward) &&
225 !O.hasFlag(options::DriverOption) &&
226 !O.hasFlag(options::LinkerInput);
227}
228
Peter Collingbourne54db68b2011-11-06 00:40:05 +0000229void Clang::AddPreprocessingOptions(Compilation &C,
230 const Driver &D,
Douglas Gregordf91ef32009-04-18 00:34:01 +0000231 const ArgList &Args,
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000232 ArgStringList &CmdArgs,
233 const InputInfo &Output,
234 const InputInfoList &Inputs) const {
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000235 Arg *A;
Daniel Dunbar3a183d32009-06-08 21:48:20 +0000236
Daniel Dunbar88a3d6c2009-09-10 01:21:05 +0000237 CheckPreprocessingOptions(D, Args);
238
239 Args.AddLastArg(CmdArgs, options::OPT_C);
240 Args.AddLastArg(CmdArgs, options::OPT_CC);
Daniel Dunbar3a183d32009-06-08 21:48:20 +0000241
242 // Handle dependency file generation.
Daniel Dunbar9eb93b02010-12-08 21:33:40 +0000243 if ((A = Args.getLastArg(options::OPT_M, options::OPT_MM)) ||
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000244 (A = Args.getLastArg(options::OPT_MD)) ||
245 (A = Args.getLastArg(options::OPT_MMD))) {
246 // Determine the output location.
247 const char *DepFile;
Benjamin Kramer99c72082012-09-26 19:01:49 +0000248 if (Arg *MF = Args.getLastArg(options::OPT_MF)) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000249 DepFile = MF->getValue();
Peter Collingbourne5d4d9802011-11-21 00:01:05 +0000250 C.addFailureResultFile(DepFile);
Benjamin Kramer99c72082012-09-26 19:01:49 +0000251 } else if (Output.getType() == types::TY_Dependencies) {
252 DepFile = Output.getFilename();
Daniel Dunbarb827a052009-11-19 03:26:40 +0000253 } else if (A->getOption().matches(options::OPT_M) ||
254 A->getOption().matches(options::OPT_MM)) {
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000255 DepFile = "-";
256 } else {
Bob Wilson66b8a662012-11-23 06:14:39 +0000257 DepFile = getDependencyFileName(Args, Inputs);
Peter Collingbourne5d4d9802011-11-21 00:01:05 +0000258 C.addFailureResultFile(DepFile);
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000259 }
260 CmdArgs.push_back("-dependency-file");
261 CmdArgs.push_back(DepFile);
262
Chris Lattner3edbeb72010-03-29 17:55:58 +0000263 // Add a default target if one wasn't specified.
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000264 if (!Args.hasArg(options::OPT_MT) && !Args.hasArg(options::OPT_MQ)) {
265 const char *DepTarget;
266
267 // If user provided -o, that is the dependency target, except
268 // when we are only generating a dependency file.
269 Arg *OutputOpt = Args.getLastArg(options::OPT_o);
270 if (OutputOpt && Output.getType() != types::TY_Dependencies) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000271 DepTarget = OutputOpt->getValue();
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000272 } else {
273 // Otherwise derive from the base input.
274 //
275 // FIXME: This should use the computed output file location.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000276 SmallString<128> P(Inputs[0].getBaseInput());
Michael J. Spencer472ccff2010-12-18 00:19:12 +0000277 llvm::sys::path::replace_extension(P, "o");
278 DepTarget = Args.MakeArgString(llvm::sys::path::filename(P));
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000279 }
280
281 CmdArgs.push_back("-MT");
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000282 SmallString<128> Quoted;
Chris Lattner3edbeb72010-03-29 17:55:58 +0000283 QuoteTarget(DepTarget, Quoted);
284 CmdArgs.push_back(Args.MakeArgString(Quoted));
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000285 }
286
Daniel Dunbarb827a052009-11-19 03:26:40 +0000287 if (A->getOption().matches(options::OPT_M) ||
288 A->getOption().matches(options::OPT_MD))
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000289 CmdArgs.push_back("-sys-header-deps");
290 }
291
Peter Collingbournebb527862011-07-12 19:35:15 +0000292 if (Args.hasArg(options::OPT_MG)) {
293 if (!A || A->getOption().matches(options::OPT_MD) ||
294 A->getOption().matches(options::OPT_MMD))
Chris Lattner5f9e2722011-07-23 10:55:15 +0000295 D.Diag(diag::err_drv_mg_requires_m_or_mm);
Peter Collingbournebb527862011-07-12 19:35:15 +0000296 CmdArgs.push_back("-MG");
297 }
298
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000299 Args.AddLastArg(CmdArgs, options::OPT_MP);
Chris Lattner3edbeb72010-03-29 17:55:58 +0000300
301 // Convert all -MQ <target> args to -MT <quoted target>
302 for (arg_iterator it = Args.filtered_begin(options::OPT_MT,
303 options::OPT_MQ),
304 ie = Args.filtered_end(); it != ie; ++it) {
Daniel Dunbar7e4953e2010-06-11 22:00:13 +0000305 const Arg *A = *it;
306 A->claim();
Chris Lattner3edbeb72010-03-29 17:55:58 +0000307
Daniel Dunbar7e4953e2010-06-11 22:00:13 +0000308 if (A->getOption().matches(options::OPT_MQ)) {
Chris Lattner3edbeb72010-03-29 17:55:58 +0000309 CmdArgs.push_back("-MT");
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000310 SmallString<128> Quoted;
Richard Smith1d489cf2012-11-01 04:30:05 +0000311 QuoteTarget(A->getValue(), Quoted);
Chris Lattner3edbeb72010-03-29 17:55:58 +0000312 CmdArgs.push_back(Args.MakeArgString(Quoted));
313
314 // -MT flag - no change
315 } else {
Daniel Dunbar7e4953e2010-06-11 22:00:13 +0000316 A->render(Args, CmdArgs);
Chris Lattner3edbeb72010-03-29 17:55:58 +0000317 }
318 }
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000319
Douglas Gregordf91ef32009-04-18 00:34:01 +0000320 // Add -i* options, and automatically translate to
321 // -include-pch/-include-pth for transparent PCH support. It's
322 // wonky, but we include looking for .gch so we can support seamless
323 // replacement into a build system already set up to be generating
324 // .gch files.
Argyrios Kyrtzidis990142a2010-09-30 16:53:47 +0000325 bool RenderedImplicitInclude = false;
Daniel Dunbarcdd96862009-11-25 11:53:23 +0000326 for (arg_iterator it = Args.filtered_begin(options::OPT_clang_i_Group),
327 ie = Args.filtered_end(); it != ie; ++it) {
328 const Arg *A = it;
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000329
330 if (A->getOption().matches(options::OPT_include)) {
Argyrios Kyrtzidis990142a2010-09-30 16:53:47 +0000331 bool IsFirstImplicitInclude = !RenderedImplicitInclude;
332 RenderedImplicitInclude = true;
333
Argyrios Kyrtzidise5c35372010-08-11 23:27:58 +0000334 // Use PCH if the user requested it.
Daniel Dunbar0ebd9322009-10-15 20:02:44 +0000335 bool UsePCH = D.CCCUsePCH;
Daniel Dunbar0ebd9322009-10-15 20:02:44 +0000336
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000337 bool FoundPTH = false;
Douglas Gregordf91ef32009-04-18 00:34:01 +0000338 bool FoundPCH = false;
Richard Smith1d489cf2012-11-01 04:30:05 +0000339 llvm::sys::Path P(A->getValue());
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000340 bool Exists;
Daniel Dunbar0ebd9322009-10-15 20:02:44 +0000341 if (UsePCH) {
Douglas Gregordf91ef32009-04-18 00:34:01 +0000342 P.appendSuffix("pch");
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000343 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Douglas Gregordf91ef32009-04-18 00:34:01 +0000344 FoundPCH = true;
Mike Stump1eb44332009-09-09 15:08:12 +0000345 else
Douglas Gregordf91ef32009-04-18 00:34:01 +0000346 P.eraseSuffix();
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000347 }
348
Douglas Gregordf91ef32009-04-18 00:34:01 +0000349 if (!FoundPCH) {
350 P.appendSuffix("pth");
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000351 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Douglas Gregordf91ef32009-04-18 00:34:01 +0000352 FoundPTH = true;
353 else
354 P.eraseSuffix();
Mike Stump1eb44332009-09-09 15:08:12 +0000355 }
356
Douglas Gregordf91ef32009-04-18 00:34:01 +0000357 if (!FoundPCH && !FoundPTH) {
358 P.appendSuffix("gch");
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000359 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists) {
Daniel Dunbar0ebd9322009-10-15 20:02:44 +0000360 FoundPCH = UsePCH;
361 FoundPTH = !UsePCH;
Douglas Gregordf91ef32009-04-18 00:34:01 +0000362 }
Mike Stump1eb44332009-09-09 15:08:12 +0000363 else
Douglas Gregordf91ef32009-04-18 00:34:01 +0000364 P.eraseSuffix();
365 }
366
367 if (FoundPCH || FoundPTH) {
Argyrios Kyrtzidis990142a2010-09-30 16:53:47 +0000368 if (IsFirstImplicitInclude) {
369 A->claim();
370 if (UsePCH)
371 CmdArgs.push_back("-include-pch");
372 else
373 CmdArgs.push_back("-include-pth");
374 CmdArgs.push_back(Args.MakeArgString(P.str()));
375 continue;
376 } else {
377 // Ignore the PCH if not first on command line and emit warning.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000378 D.Diag(diag::warn_drv_pch_not_first_include)
Argyrios Kyrtzidis990142a2010-09-30 16:53:47 +0000379 << P.str() << A->getAsString(Args);
380 }
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000381 }
382 }
383
384 // Not translated, render as usual.
385 A->claim();
386 A->render(Args, CmdArgs);
387 }
388
389 Args.AddAllArgs(CmdArgs, options::OPT_D, options::OPT_U);
Douglas Gregor65e02fa2011-07-28 04:45:53 +0000390 Args.AddAllArgs(CmdArgs, options::OPT_I_Group, options::OPT_F,
391 options::OPT_index_header_map);
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000392
393 // Add -Wp, and -Xassembler if using the preprocessor.
394
395 // FIXME: There is a very unfortunate problem here, some troubled
396 // souls abuse -Wp, to pass preprocessor options in gcc syntax. To
397 // really support that we would have to parse and then translate
398 // those options. :(
399 Args.AddAllArgValues(CmdArgs, options::OPT_Wp_COMMA,
400 options::OPT_Xpreprocessor);
Daniel Dunbar607d7f62009-10-29 01:53:44 +0000401
402 // -I- is a deprecated GCC feature, reject it.
403 if (Arg *A = Args.getLastArg(options::OPT_I_))
Chris Lattner5f9e2722011-07-23 10:55:15 +0000404 D.Diag(diag::err_drv_I_dash_not_supported) << A->getAsString(Args);
Chandler Carruthfeee58c2010-10-20 07:00:47 +0000405
406 // If we have a --sysroot, and don't have an explicit -isysroot flag, add an
407 // -isysroot to the CC1 invocation.
Sebastian Pop4762a2d2012-04-16 04:16:43 +0000408 StringRef sysroot = C.getSysRoot();
409 if (sysroot != "") {
Chandler Carruthfeee58c2010-10-20 07:00:47 +0000410 if (!Args.hasArg(options::OPT_isysroot)) {
411 CmdArgs.push_back("-isysroot");
Sebastian Pop4762a2d2012-04-16 04:16:43 +0000412 CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
Chandler Carruthfeee58c2010-10-20 07:00:47 +0000413 }
414 }
Douglas Gregor8ee51ef2011-09-14 20:28:46 +0000415
416 // If a module path was provided, pass it along. Otherwise, use a temporary
417 // directory.
418 if (Arg *A = Args.getLastArg(options::OPT_fmodule_cache_path)) {
Douglas Gregor8ee51ef2011-09-14 20:28:46 +0000419 A->claim();
420 A->render(Args, CmdArgs);
421 } else {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000422 SmallString<128> DefaultModuleCache;
Douglas Gregor8ee51ef2011-09-14 20:28:46 +0000423 llvm::sys::path::system_temp_directory(/*erasedOnReboot=*/false,
424 DefaultModuleCache);
425 llvm::sys::path::append(DefaultModuleCache, "clang-module-cache");
426 CmdArgs.push_back("-fmodule-cache-path");
427 CmdArgs.push_back(Args.MakeArgString(DefaultModuleCache));
428 }
Douglas Gregorfba18aa2011-09-15 22:00:41 +0000429
Benjamin Kramer47adebe2011-09-22 21:41:16 +0000430 // Parse additional include paths from environment variables.
Chandler Carruthb5870e72011-11-04 07:12:58 +0000431 // FIXME: We should probably sink the logic for handling these from the
432 // frontend into the driver. It will allow deleting 4 otherwise unused flags.
Benjamin Kramer47adebe2011-09-22 21:41:16 +0000433 // CPATH - included following the user specified includes (but prior to
434 // builtin and standard includes).
Bill Wendling3d717152012-03-12 22:10:06 +0000435 addDirectoryList(Args, CmdArgs, "-I", "CPATH");
Benjamin Kramer47adebe2011-09-22 21:41:16 +0000436 // C_INCLUDE_PATH - system includes enabled when compiling C.
Bill Wendling3d717152012-03-12 22:10:06 +0000437 addDirectoryList(Args, CmdArgs, "-c-isystem", "C_INCLUDE_PATH");
Benjamin Kramer47adebe2011-09-22 21:41:16 +0000438 // CPLUS_INCLUDE_PATH - system includes enabled when compiling C++.
Bill Wendling3d717152012-03-12 22:10:06 +0000439 addDirectoryList(Args, CmdArgs, "-cxx-isystem", "CPLUS_INCLUDE_PATH");
Benjamin Kramer47adebe2011-09-22 21:41:16 +0000440 // OBJC_INCLUDE_PATH - system includes enabled when compiling ObjC.
Bill Wendling3d717152012-03-12 22:10:06 +0000441 addDirectoryList(Args, CmdArgs, "-objc-isystem", "OBJC_INCLUDE_PATH");
Benjamin Kramer47adebe2011-09-22 21:41:16 +0000442 // OBJCPLUS_INCLUDE_PATH - system includes enabled when compiling ObjC++.
Bill Wendling3d717152012-03-12 22:10:06 +0000443 addDirectoryList(Args, CmdArgs, "-objcxx-isystem", "OBJCPLUS_INCLUDE_PATH");
Chandler Carruth88491fc2011-11-04 07:12:53 +0000444
Chandler Carruth88491fc2011-11-04 07:12:53 +0000445 // Add C++ include arguments, if needed.
Chandler Carrutha4614422011-11-04 07:43:33 +0000446 if (types::isCXX(Inputs[0].getType()))
Chandler Carruth7ffa0322011-11-04 07:34:47 +0000447 getToolChain().AddClangCXXStdlibIncludeArgs(Args, CmdArgs);
Chandler Carruth7d7e9f92011-11-05 20:17:13 +0000448
449 // Add system include arguments.
450 getToolChain().AddClangSystemIncludeArgs(Args, CmdArgs);
Daniel Dunbarc21c4852009-04-08 23:54:23 +0000451}
452
Daniel Dunbar1d65e4b2009-09-10 22:59:51 +0000453/// getLLVMArchSuffixForARM - Get the LLVM arch name to use for a particular
Daniel Dunbar728a5122009-09-10 06:49:20 +0000454/// CPU.
455//
456// FIXME: This is redundant with -mcpu, why does LLVM use this.
457// FIXME: tblgen this, or kill it!
Chris Lattner5f9e2722011-07-23 10:55:15 +0000458static const char *getLLVMArchSuffixForARM(StringRef CPU) {
Chad Rosierae1aee62011-10-07 17:48:56 +0000459 return llvm::StringSwitch<const char *>(CPU)
460 .Cases("arm7tdmi", "arm7tdmi-s", "arm710t", "v4t")
461 .Cases("arm720t", "arm9", "arm9tdmi", "v4t")
462 .Cases("arm920", "arm920t", "arm922t", "v4t")
463 .Cases("arm940t", "ep9312","v4t")
464 .Cases("arm10tdmi", "arm1020t", "v5")
465 .Cases("arm9e", "arm926ej-s", "arm946e-s", "v5e")
466 .Cases("arm966e-s", "arm968e-s", "arm10e", "v5e")
467 .Cases("arm1020e", "arm1022e", "xscale", "iwmmxt", "v5e")
468 .Cases("arm1136j-s", "arm1136jf-s", "arm1176jz-s", "v6")
469 .Cases("arm1176jzf-s", "mpcorenovfp", "mpcore", "v6")
470 .Cases("arm1156t2-s", "arm1156t2f-s", "v6t2")
Quentin Colombet74632aa2012-11-29 23:15:27 +0000471 .Cases("cortex-a5", "cortex-a8", "cortex-a9", "cortex-a15", "v7")
Bob Wilson57f6d192012-03-21 17:19:12 +0000472 .Case("cortex-m3", "v7m")
Jim Grosbach69033132012-03-29 19:53:34 +0000473 .Case("cortex-m4", "v7m")
Bob Wilson57f6d192012-03-21 17:19:12 +0000474 .Case("cortex-m0", "v6m")
Bob Wilson336bfa32012-09-29 23:52:50 +0000475 .Case("cortex-a9-mp", "v7f")
476 .Case("swift", "v7s")
Chad Rosierae1aee62011-10-07 17:48:56 +0000477 .Default("");
Daniel Dunbar728a5122009-09-10 06:49:20 +0000478}
479
Benjamin Kramer92c4fd52012-06-26 22:20:06 +0000480/// getARMTargetCPU - Get the (LLVM) name of the ARM cpu we are targeting.
481//
482// FIXME: tblgen this.
483static std::string getARMTargetCPU(const ArgList &Args,
484 const llvm::Triple &Triple) {
485 // FIXME: Warn on inconsistent use of -mcpu and -march.
486
487 // If we have -mcpu=, use that.
488 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000489 StringRef MCPU = A->getValue();
Benjamin Kramer92c4fd52012-06-26 22:20:06 +0000490 // Handle -mcpu=native.
491 if (MCPU == "native")
492 return llvm::sys::getHostCPUName();
493 else
494 return MCPU;
495 }
496
497 StringRef MArch;
498 if (Arg *A = Args.getLastArg(options::OPT_march_EQ)) {
499 // Otherwise, if we have -march= choose the base CPU for that arch.
Richard Smith1d489cf2012-11-01 04:30:05 +0000500 MArch = A->getValue();
Benjamin Kramer92c4fd52012-06-26 22:20:06 +0000501 } else {
502 // Otherwise, use the Arch from the triple.
503 MArch = Triple.getArchName();
504 }
505
506 // Handle -march=native.
507 std::string NativeMArch;
508 if (MArch == "native") {
509 std::string CPU = llvm::sys::getHostCPUName();
510 if (CPU != "generic") {
511 // Translate the native cpu into the architecture. The switch below will
512 // then chose the minimum cpu for that arch.
513 NativeMArch = std::string("arm") + getLLVMArchSuffixForARM(CPU);
514 MArch = NativeMArch;
515 }
516 }
517
518 return llvm::StringSwitch<const char *>(MArch)
519 .Cases("armv2", "armv2a","arm2")
520 .Case("armv3", "arm6")
521 .Case("armv3m", "arm7m")
522 .Cases("armv4", "armv4t", "arm7tdmi")
523 .Cases("armv5", "armv5t", "arm10tdmi")
524 .Cases("armv5e", "armv5te", "arm1022e")
525 .Case("armv5tej", "arm926ej-s")
526 .Cases("armv6", "armv6k", "arm1136jf-s")
527 .Case("armv6j", "arm1136j-s")
528 .Cases("armv6z", "armv6zk", "arm1176jzf-s")
529 .Case("armv6t2", "arm1156t2-s")
530 .Cases("armv7", "armv7a", "armv7-a", "cortex-a8")
Bob Wilson336bfa32012-09-29 23:52:50 +0000531 .Cases("armv7f", "armv7-f", "cortex-a9-mp")
532 .Cases("armv7s", "armv7-s", "swift")
Benjamin Kramer92c4fd52012-06-26 22:20:06 +0000533 .Cases("armv7r", "armv7-r", "cortex-r4")
534 .Cases("armv7m", "armv7-m", "cortex-m3")
535 .Case("ep9312", "ep9312")
536 .Case("iwmmxt", "iwmmxt")
537 .Case("xscale", "xscale")
538 .Cases("armv6m", "armv6-m", "cortex-m0")
539 // If all else failed, return the most base CPU LLVM supports.
540 .Default("arm7tdmi");
541}
542
Daniel Dunbar1f95e652009-11-17 06:37:03 +0000543// FIXME: Move to target hook.
544static bool isSignedCharDefault(const llvm::Triple &Triple) {
545 switch (Triple.getArch()) {
546 default:
547 return true;
548
Jim Grosbach5b4e7b12011-05-24 15:40:46 +0000549 case llvm::Triple::arm:
Daniel Dunbar1f95e652009-11-17 06:37:03 +0000550 case llvm::Triple::ppc:
551 case llvm::Triple::ppc64:
Bob Wilson905c45f2011-10-14 05:03:44 +0000552 if (Triple.isOSDarwin())
Daniel Dunbar1f95e652009-11-17 06:37:03 +0000553 return true;
554 return false;
Daniel Dunbar1f95e652009-11-17 06:37:03 +0000555 }
556}
557
Chad Rosier99317272012-04-04 20:51:35 +0000558// Handle -mfpu=.
559//
560// FIXME: Centralize feature selection, defaulting shouldn't be also in the
561// frontend target.
562static void addFPUArgs(const Driver &D, const Arg *A, const ArgList &Args,
563 ArgStringList &CmdArgs) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000564 StringRef FPU = A->getValue();
Chad Rosier99317272012-04-04 20:51:35 +0000565
566 // Set the target features based on the FPU.
567 if (FPU == "fpa" || FPU == "fpe2" || FPU == "fpe3" || FPU == "maverick") {
568 // Disable any default FPU support.
569 CmdArgs.push_back("-target-feature");
570 CmdArgs.push_back("-vfp2");
571 CmdArgs.push_back("-target-feature");
572 CmdArgs.push_back("-vfp3");
573 CmdArgs.push_back("-target-feature");
574 CmdArgs.push_back("-neon");
575 } else if (FPU == "vfp3-d16" || FPU == "vfpv3-d16") {
576 CmdArgs.push_back("-target-feature");
577 CmdArgs.push_back("+vfp3");
578 CmdArgs.push_back("-target-feature");
579 CmdArgs.push_back("+d16");
580 CmdArgs.push_back("-target-feature");
581 CmdArgs.push_back("-neon");
582 } else if (FPU == "vfp") {
583 CmdArgs.push_back("-target-feature");
584 CmdArgs.push_back("+vfp2");
585 CmdArgs.push_back("-target-feature");
586 CmdArgs.push_back("-neon");
587 } else if (FPU == "vfp3" || FPU == "vfpv3") {
588 CmdArgs.push_back("-target-feature");
589 CmdArgs.push_back("+vfp3");
590 CmdArgs.push_back("-target-feature");
591 CmdArgs.push_back("-neon");
592 } else if (FPU == "neon") {
593 CmdArgs.push_back("-target-feature");
594 CmdArgs.push_back("+neon");
595 } else
596 D.Diag(diag::err_drv_clang_unsupported) << A->getAsString(Args);
597}
598
Chad Rosier7a938fa2012-04-04 20:39:32 +0000599// Handle -mfpmath=.
600static void addFPMathArgs(const Driver &D, const Arg *A, const ArgList &Args,
Chad Rosier30fe6ba2012-04-04 22:13:40 +0000601 ArgStringList &CmdArgs, StringRef CPU) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000602 StringRef FPMath = A->getValue();
Chad Rosier7a938fa2012-04-04 20:39:32 +0000603
604 // Set the target features based on the FPMath.
605 if (FPMath == "neon") {
606 CmdArgs.push_back("-target-feature");
607 CmdArgs.push_back("+neonfp");
Chad Rosier30fe6ba2012-04-04 22:13:40 +0000608
Silviu Baranga2df67ea2012-09-13 15:06:00 +0000609 if (CPU != "cortex-a8" && CPU != "cortex-a9" && CPU != "cortex-a9-mp" &&
Quentin Colombet74632aa2012-11-29 23:15:27 +0000610 CPU != "cortex-a15" && CPU != "cortex-a5")
Chad Rosier30fe6ba2012-04-04 22:13:40 +0000611 D.Diag(diag::err_drv_invalid_feature) << "-mfpmath=neon" << CPU;
612
Chad Rosier7a938fa2012-04-04 20:39:32 +0000613 } else if (FPMath == "vfp" || FPMath == "vfp2" || FPMath == "vfp3" ||
614 FPMath == "vfp4") {
615 CmdArgs.push_back("-target-feature");
616 CmdArgs.push_back("-neonfp");
Chad Rosier30fe6ba2012-04-04 22:13:40 +0000617
618 // FIXME: Add warnings when disabling a feature not present for a given CPU.
Chad Rosier7a938fa2012-04-04 20:39:32 +0000619 } else
620 D.Diag(diag::err_drv_clang_unsupported) << A->getAsString(Args);
621}
622
Anton Korobeynikove2571792012-04-09 13:38:30 +0000623// Select the float ABI as determined by -msoft-float, -mhard-float, and
624// -mfloat-abi=.
625static StringRef getARMFloatABI(const Driver &D,
626 const ArgList &Args,
627 const llvm::Triple &Triple) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000628 StringRef FloatABI;
Daniel Dunbarcbd19332009-09-10 23:00:09 +0000629 if (Arg *A = Args.getLastArg(options::OPT_msoft_float,
630 options::OPT_mhard_float,
631 options::OPT_mfloat_abi_EQ)) {
632 if (A->getOption().matches(options::OPT_msoft_float))
633 FloatABI = "soft";
634 else if (A->getOption().matches(options::OPT_mhard_float))
635 FloatABI = "hard";
636 else {
Richard Smith1d489cf2012-11-01 04:30:05 +0000637 FloatABI = A->getValue();
Daniel Dunbarcbd19332009-09-10 23:00:09 +0000638 if (FloatABI != "soft" && FloatABI != "softfp" && FloatABI != "hard") {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000639 D.Diag(diag::err_drv_invalid_mfloat_abi)
Daniel Dunbarcbd19332009-09-10 23:00:09 +0000640 << A->getAsString(Args);
641 FloatABI = "soft";
642 }
643 }
644 }
645
646 // If unspecified, choose the default based on the platform.
647 if (FloatABI.empty()) {
Rafael Espindolabcd6df62010-06-28 17:18:09 +0000648 switch (Triple.getOS()) {
Bob Wilson905c45f2011-10-14 05:03:44 +0000649 case llvm::Triple::Darwin:
650 case llvm::Triple::MacOSX:
651 case llvm::Triple::IOS: {
Daniel Dunbarcbd19332009-09-10 23:00:09 +0000652 // Darwin defaults to "softfp" for v6 and v7.
653 //
654 // FIXME: Factor out an ARM class so we can cache the arch somewhere.
Benjamin Kramer92c4fd52012-06-26 22:20:06 +0000655 std::string ArchName =
Rafael Espindolabcd6df62010-06-28 17:18:09 +0000656 getLLVMArchSuffixForARM(getARMTargetCPU(Args, Triple));
Benjamin Kramer92c4fd52012-06-26 22:20:06 +0000657 if (StringRef(ArchName).startswith("v6") ||
658 StringRef(ArchName).startswith("v7"))
Daniel Dunbarcbd19332009-09-10 23:00:09 +0000659 FloatABI = "softfp";
660 else
661 FloatABI = "soft";
662 break;
663 }
664
665 default:
Bob Wilsonfc2bd7c2011-02-04 17:59:28 +0000666 switch(Triple.getEnvironment()) {
Jiangning Liuff104a12012-07-31 08:06:29 +0000667 case llvm::Triple::GNUEABIHF:
668 FloatABI = "hard";
669 break;
Bob Wilsonfc2bd7c2011-02-04 17:59:28 +0000670 case llvm::Triple::GNUEABI:
671 FloatABI = "softfp";
672 break;
673 case llvm::Triple::EABI:
674 // EABI is always AAPCS, and if it was not marked 'hard', it's softfp
675 FloatABI = "softfp";
676 break;
Logan Chien94a71422012-09-02 09:30:11 +0000677 case llvm::Triple::Android: {
Benjamin Kramer92c4fd52012-06-26 22:20:06 +0000678 std::string ArchName =
Chandler Carruthb43550b2012-01-10 19:47:42 +0000679 getLLVMArchSuffixForARM(getARMTargetCPU(Args, Triple));
Benjamin Kramer92c4fd52012-06-26 22:20:06 +0000680 if (StringRef(ArchName).startswith("v7"))
Chandler Carruthb43550b2012-01-10 19:47:42 +0000681 FloatABI = "softfp";
682 else
683 FloatABI = "soft";
684 break;
685 }
Bob Wilsonfc2bd7c2011-02-04 17:59:28 +0000686 default:
687 // Assume "soft", but warn the user we are guessing.
688 FloatABI = "soft";
Chris Lattner5f9e2722011-07-23 10:55:15 +0000689 D.Diag(diag::warn_drv_assuming_mfloat_abi_is) << "soft";
Bob Wilsonfc2bd7c2011-02-04 17:59:28 +0000690 break;
691 }
Daniel Dunbarcbd19332009-09-10 23:00:09 +0000692 }
693 }
694
Anton Korobeynikove2571792012-04-09 13:38:30 +0000695 return FloatABI;
696}
697
698
699void Clang::AddARMTargetArgs(const ArgList &Args,
700 ArgStringList &CmdArgs,
701 bool KernelOrKext) const {
702 const Driver &D = getToolChain().getDriver();
Daniel Dunbar7a0c0642012-10-15 22:23:53 +0000703 // Get the effective triple, which takes into account the deployment target.
704 std::string TripleStr = getToolChain().ComputeEffectiveClangTriple(Args);
705 llvm::Triple Triple(TripleStr);
Daniel Dunbar2e4e1102012-10-22 18:30:51 +0000706 std::string CPUName = getARMTargetCPU(Args, Triple);
Anton Korobeynikove2571792012-04-09 13:38:30 +0000707
708 // Select the ABI to use.
709 //
710 // FIXME: Support -meabi.
711 const char *ABIName = 0;
712 if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ)) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000713 ABIName = A->getValue();
Daniel Dunbar2e4e1102012-10-22 18:30:51 +0000714 } else if (Triple.isOSDarwin()) {
715 // The backend is hardwired to assume AAPCS for M-class processors, ensure
716 // the frontend matches that.
717 if (StringRef(CPUName).startswith("cortex-m")) {
718 ABIName = "aapcs";
719 } else {
720 ABIName = "apcs-gnu";
721 }
Anton Korobeynikove2571792012-04-09 13:38:30 +0000722 } else {
723 // Select the default based on the platform.
724 switch(Triple.getEnvironment()) {
Logan Chien94a71422012-09-02 09:30:11 +0000725 case llvm::Triple::Android:
Anton Korobeynikove2571792012-04-09 13:38:30 +0000726 case llvm::Triple::GNUEABI:
Jiangning Liuff104a12012-07-31 08:06:29 +0000727 case llvm::Triple::GNUEABIHF:
Anton Korobeynikove2571792012-04-09 13:38:30 +0000728 ABIName = "aapcs-linux";
729 break;
730 case llvm::Triple::EABI:
731 ABIName = "aapcs";
732 break;
733 default:
734 ABIName = "apcs-gnu";
735 }
736 }
737 CmdArgs.push_back("-target-abi");
738 CmdArgs.push_back(ABIName);
739
740 // Set the CPU based on -march= and -mcpu=.
741 CmdArgs.push_back("-target-cpu");
Daniel Dunbar2e4e1102012-10-22 18:30:51 +0000742 CmdArgs.push_back(Args.MakeArgString(CPUName));
Anton Korobeynikove2571792012-04-09 13:38:30 +0000743
744 // Determine floating point ABI from the options & target defaults.
745 StringRef FloatABI = getARMFloatABI(D, Args, Triple);
Daniel Dunbarcbd19332009-09-10 23:00:09 +0000746 if (FloatABI == "soft") {
747 // Floating point operations and argument passing are soft.
748 //
749 // FIXME: This changes CPP defines, we need -target-soft-float.
Daniel Dunbar3b315262009-11-30 08:42:00 +0000750 CmdArgs.push_back("-msoft-float");
Daniel Dunbar87667aa2009-12-08 19:49:51 +0000751 CmdArgs.push_back("-mfloat-abi");
752 CmdArgs.push_back("soft");
Daniel Dunbarcbd19332009-09-10 23:00:09 +0000753 } else if (FloatABI == "softfp") {
754 // Floating point operations are hard, but argument passing is soft.
Daniel Dunbar87667aa2009-12-08 19:49:51 +0000755 CmdArgs.push_back("-mfloat-abi");
756 CmdArgs.push_back("soft");
Daniel Dunbarcbd19332009-09-10 23:00:09 +0000757 } else {
758 // Floating point operations and argument passing are hard.
759 assert(FloatABI == "hard" && "Invalid float abi!");
Daniel Dunbar87667aa2009-12-08 19:49:51 +0000760 CmdArgs.push_back("-mfloat-abi");
761 CmdArgs.push_back("hard");
Daniel Dunbarcbd19332009-09-10 23:00:09 +0000762 }
Daniel Dunbar97f52ac2009-12-19 04:15:38 +0000763
764 // Set appropriate target features for floating point mode.
765 //
766 // FIXME: Note, this is a hack, the LLVM backend doesn't actually use these
767 // yet (it uses the -mfloat-abi and -msoft-float options above), and it is
768 // stripped out by the ARM target.
769
770 // Use software floating point operations?
771 if (FloatABI == "soft") {
772 CmdArgs.push_back("-target-feature");
773 CmdArgs.push_back("+soft-float");
774 }
775
776 // Use software floating point argument passing?
777 if (FloatABI != "hard") {
778 CmdArgs.push_back("-target-feature");
779 CmdArgs.push_back("+soft-float-abi");
780 }
Daniel Dunbara91320b2009-12-21 23:28:17 +0000781
782 // Honor -mfpu=.
Chad Rosier99317272012-04-04 20:51:35 +0000783 if (const Arg *A = Args.getLastArg(options::OPT_mfpu_EQ))
Chad Rosierf80f2a52012-04-04 20:56:36 +0000784 addFPUArgs(D, A, Args, CmdArgs);
Daniel Dunbar7187fac2011-03-17 00:07:34 +0000785
Chad Rosier7a938fa2012-04-04 20:39:32 +0000786 // Honor -mfpmath=.
787 if (const Arg *A = Args.getLastArg(options::OPT_mfpmath_EQ))
Chad Rosier30fe6ba2012-04-04 22:13:40 +0000788 addFPMathArgs(D, A, Args, CmdArgs, getARMTargetCPU(Args, Triple));
Chad Rosier7a938fa2012-04-04 20:39:32 +0000789
Daniel Dunbar7187fac2011-03-17 00:07:34 +0000790 // Setting -msoft-float effectively disables NEON because of the GCC
791 // implementation, although the same isn't true of VFP or VFP3.
792 if (FloatABI == "soft") {
Daniel Dunbarfa41d692011-03-17 17:10:06 +0000793 CmdArgs.push_back("-target-feature");
794 CmdArgs.push_back("-neon");
795 }
796
797 // Kernel code has more strict alignment requirements.
798 if (KernelOrKext) {
Daniel Dunbar7a0c0642012-10-15 22:23:53 +0000799 if (Triple.getOS() != llvm::Triple::IOS || Triple.isOSVersionLT(6)) {
800 CmdArgs.push_back("-backend-option");
801 CmdArgs.push_back("-arm-long-calls");
802 }
Daniel Dunbarfa41d692011-03-17 17:10:06 +0000803
Daniel Dunbar3c66d302011-03-22 16:48:17 +0000804 CmdArgs.push_back("-backend-option");
Daniel Dunbarfa41d692011-03-17 17:10:06 +0000805 CmdArgs.push_back("-arm-strict-align");
Daniel Dunbarb5fbb892011-04-18 21:26:42 +0000806
807 // The kext linker doesn't know how to deal with movw/movt.
Daniel Dunbarb5fbb892011-04-18 21:26:42 +0000808 CmdArgs.push_back("-backend-option");
809 CmdArgs.push_back("-arm-darwin-use-movt=0");
Daniel Dunbar7187fac2011-03-17 00:07:34 +0000810 }
Chad Rosier1b906052011-08-26 00:26:29 +0000811
812 // Setting -mno-global-merge disables the codegen global merge pass. Setting
813 // -mglobal-merge has no effect as the pass is enabled by default.
814 if (Arg *A = Args.getLastArg(options::OPT_mglobal_merge,
815 options::OPT_mno_global_merge)) {
816 if (A->getOption().matches(options::OPT_mno_global_merge))
817 CmdArgs.push_back("-mno-global-merge");
818 }
Chad Rosieree9ad5c2012-05-16 20:40:09 +0000819
Chad Rosier005af272012-05-16 21:19:55 +0000820 if (Args.hasArg(options::OPT_mno_implicit_float))
Chad Rosieree9ad5c2012-05-16 20:40:09 +0000821 CmdArgs.push_back("-no-implicit-float");
Daniel Dunbarb163ef72009-09-10 04:57:17 +0000822}
823
Simon Atanasyan8e1c5982012-09-21 20:19:32 +0000824// Translate MIPS CPU name alias option to CPU name.
825static StringRef getMipsCPUFromAlias(const Arg &A) {
826 if (A.getOption().matches(options::OPT_mips32))
827 return "mips32";
828 if (A.getOption().matches(options::OPT_mips32r2))
829 return "mips32r2";
830 if (A.getOption().matches(options::OPT_mips64))
831 return "mips64";
832 if (A.getOption().matches(options::OPT_mips64r2))
833 return "mips64r2";
834 llvm_unreachable("Unexpected option");
835 return "";
836}
837
Simon Atanasyana2768be2012-04-07 22:09:23 +0000838// Get CPU and ABI names. They are not independent
839// so we have to calculate them together.
840static void getMipsCPUAndABI(const ArgList &Args,
841 const ToolChain &TC,
842 StringRef &CPUName,
843 StringRef &ABIName) {
Simon Atanasyan89d83ff2012-09-10 08:32:41 +0000844 const char *DefMips32CPU = "mips32";
845 const char *DefMips64CPU = "mips64";
Akira Hatanaka9f360622011-09-26 21:07:52 +0000846
Simon Atanasyan89d83ff2012-09-10 08:32:41 +0000847 if (Arg *A = Args.getLastArg(options::OPT_march_EQ,
Simon Atanasyan8e1c5982012-09-21 20:19:32 +0000848 options::OPT_mcpu_EQ,
849 options::OPT_mips_CPUs_Group)) {
850 if (A->getOption().matches(options::OPT_mips_CPUs_Group))
851 CPUName = getMipsCPUFromAlias(*A);
852 else
Richard Smith1d489cf2012-11-01 04:30:05 +0000853 CPUName = A->getValue();
Simon Atanasyan8e1c5982012-09-21 20:19:32 +0000854 }
Simon Atanasyan89d83ff2012-09-10 08:32:41 +0000855
Akira Hatanaka9f360622011-09-26 21:07:52 +0000856 if (Arg *A = Args.getLastArg(options::OPT_mabi_EQ))
Richard Smith1d489cf2012-11-01 04:30:05 +0000857 ABIName = A->getValue();
Simon Atanasyan89d83ff2012-09-10 08:32:41 +0000858
859 // Setup default CPU and ABI names.
860 if (CPUName.empty() && ABIName.empty()) {
861 switch (TC.getTriple().getArch()) {
862 default:
863 llvm_unreachable("Unexpected triple arch name");
864 case llvm::Triple::mips:
865 case llvm::Triple::mipsel:
866 CPUName = DefMips32CPU;
867 break;
868 case llvm::Triple::mips64:
869 case llvm::Triple::mips64el:
870 CPUName = DefMips64CPU;
871 break;
872 }
873 }
874
875 if (!ABIName.empty()) {
876 // Deduce CPU name from ABI name.
877 CPUName = llvm::StringSwitch<const char *>(ABIName)
878 .Cases("o32", "eabi", DefMips32CPU)
879 .Cases("n32", "n64", DefMips64CPU)
880 .Default("");
881 }
882 else if (!CPUName.empty()) {
883 // Deduce ABI name from CPU name.
884 ABIName = llvm::StringSwitch<const char *>(CPUName)
885 .Cases("mips32", "mips32r2", "o32")
886 .Cases("mips64", "mips64r2", "n64")
887 .Default("");
888 }
889
890 // FIXME: Warn on inconsistent cpu and abi usage.
Simon Atanasyana2768be2012-04-07 22:09:23 +0000891}
892
Simon Atanasyan5e627792012-06-02 15:06:29 +0000893// Select the MIPS float ABI as determined by -msoft-float, -mhard-float,
894// and -mfloat-abi=.
895static StringRef getMipsFloatABI(const Driver &D, const ArgList &Args) {
Akira Hatanakaad8d8a32012-03-23 23:07:09 +0000896 // Select the float ABI as determined by -msoft-float, -mhard-float,
897 // and -mfloat-abi=.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000898 StringRef FloatABI;
Eric Christophered734732010-03-02 02:41:08 +0000899 if (Arg *A = Args.getLastArg(options::OPT_msoft_float,
Akira Hatanakaad8d8a32012-03-23 23:07:09 +0000900 options::OPT_mhard_float,
901 options::OPT_mfloat_abi_EQ)) {
Eric Christophered734732010-03-02 02:41:08 +0000902 if (A->getOption().matches(options::OPT_msoft_float))
903 FloatABI = "soft";
904 else if (A->getOption().matches(options::OPT_mhard_float))
905 FloatABI = "hard";
Akira Hatanakaad8d8a32012-03-23 23:07:09 +0000906 else {
Richard Smith1d489cf2012-11-01 04:30:05 +0000907 FloatABI = A->getValue();
Akira Hatanakaad8d8a32012-03-23 23:07:09 +0000908 if (FloatABI != "soft" && FloatABI != "single" && FloatABI != "hard") {
Simon Atanasyan5e627792012-06-02 15:06:29 +0000909 D.Diag(diag::err_drv_invalid_mfloat_abi) << A->getAsString(Args);
Akira Hatanakaad8d8a32012-03-23 23:07:09 +0000910 FloatABI = "hard";
911 }
912 }
Eric Christophered734732010-03-02 02:41:08 +0000913 }
914
915 // If unspecified, choose the default based on the platform.
916 if (FloatABI.empty()) {
Akira Hatanakaad8d8a32012-03-23 23:07:09 +0000917 // Assume "hard", because it's a default value used by gcc.
918 // When we start to recognize specific target MIPS processors,
919 // we will be able to select the default more correctly.
920 FloatABI = "hard";
Eric Christophered734732010-03-02 02:41:08 +0000921 }
922
Simon Atanasyan5e627792012-06-02 15:06:29 +0000923 return FloatABI;
924}
925
Simon Atanasyandc536f52012-07-05 18:51:43 +0000926static void AddTargetFeature(const ArgList &Args,
927 ArgStringList &CmdArgs,
928 OptSpecifier OnOpt,
929 OptSpecifier OffOpt,
930 StringRef FeatureName) {
931 if (Arg *A = Args.getLastArg(OnOpt, OffOpt)) {
932 CmdArgs.push_back("-target-feature");
933 if (A->getOption().matches(OnOpt))
934 CmdArgs.push_back(Args.MakeArgString("+" + FeatureName));
935 else
936 CmdArgs.push_back(Args.MakeArgString("-" + FeatureName));
937 }
938}
939
Simon Atanasyan5e627792012-06-02 15:06:29 +0000940void Clang::AddMIPSTargetArgs(const ArgList &Args,
941 ArgStringList &CmdArgs) const {
942 const Driver &D = getToolChain().getDriver();
943 StringRef CPUName;
944 StringRef ABIName;
945 getMipsCPUAndABI(Args, getToolChain(), CPUName, ABIName);
946
947 CmdArgs.push_back("-target-cpu");
948 CmdArgs.push_back(CPUName.data());
949
950 CmdArgs.push_back("-target-abi");
951 CmdArgs.push_back(ABIName.data());
952
953 StringRef FloatABI = getMipsFloatABI(D, Args);
954
Eric Christophered734732010-03-02 02:41:08 +0000955 if (FloatABI == "soft") {
956 // Floating point operations and argument passing are soft.
Eric Christophered734732010-03-02 02:41:08 +0000957 CmdArgs.push_back("-msoft-float");
Akira Hatanakaad8d8a32012-03-23 23:07:09 +0000958 CmdArgs.push_back("-mfloat-abi");
959 CmdArgs.push_back("soft");
960
961 // FIXME: Note, this is a hack. We need to pass the selected float
962 // mode to the MipsTargetInfoBase to define appropriate macros there.
963 // Now it is the only method.
964 CmdArgs.push_back("-target-feature");
965 CmdArgs.push_back("+soft-float");
966 }
967 else if (FloatABI == "single") {
968 // Restrict the use of hardware floating-point
969 // instructions to 32-bit operations.
970 CmdArgs.push_back("-target-feature");
971 CmdArgs.push_back("+single-float");
972 }
973 else {
974 // Floating point operations and argument passing are hard.
Eric Christophered734732010-03-02 02:41:08 +0000975 assert(FloatABI == "hard" && "Invalid float abi!");
Akira Hatanakaad8d8a32012-03-23 23:07:09 +0000976 CmdArgs.push_back("-mfloat-abi");
977 CmdArgs.push_back("hard");
Eric Christophered734732010-03-02 02:41:08 +0000978 }
Simon Atanasyan0b273ef2012-07-05 14:19:39 +0000979
Simon Atanasyandc536f52012-07-05 18:51:43 +0000980 AddTargetFeature(Args, CmdArgs,
981 options::OPT_mips16, options::OPT_mno_mips16,
982 "mips16");
Simon Atanasyand797a852012-07-05 19:23:00 +0000983 AddTargetFeature(Args, CmdArgs,
984 options::OPT_mdsp, options::OPT_mno_dsp,
985 "dsp");
986 AddTargetFeature(Args, CmdArgs,
987 options::OPT_mdspr2, options::OPT_mno_dspr2,
988 "dspr2");
Simon Atanasyan9804b762012-08-27 20:55:56 +0000989
Simon Atanasyanbda07ac2012-12-01 18:27:21 +0000990 if (Arg *A = Args.getLastArg(options::OPT_mxgot, options::OPT_mno_xgot)) {
991 if (A->getOption().matches(options::OPT_mxgot)) {
992 CmdArgs.push_back("-mllvm");
993 CmdArgs.push_back("-mxgot");
994 }
995 }
996
Simon Atanasyan9804b762012-08-27 20:55:56 +0000997 if (Arg *A = Args.getLastArg(options::OPT_G)) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000998 StringRef v = A->getValue();
Simon Atanasyan9804b762012-08-27 20:55:56 +0000999 CmdArgs.push_back("-mllvm");
1000 CmdArgs.push_back(Args.MakeArgString("-mips-ssection-threshold=" + v));
1001 A->claim();
1002 }
Eric Christophered734732010-03-02 02:41:08 +00001003}
1004
Hal Finkel02a84272012-06-11 22:35:19 +00001005/// getPPCTargetCPU - Get the (LLVM) name of the PowerPC cpu we are targeting.
1006static std::string getPPCTargetCPU(const ArgList &Args) {
1007 if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) {
Richard Smith1d489cf2012-11-01 04:30:05 +00001008 StringRef CPUName = A->getValue();
Hal Finkel02a84272012-06-11 22:35:19 +00001009
1010 if (CPUName == "native") {
1011 std::string CPU = llvm::sys::getHostCPUName();
1012 if (!CPU.empty() && CPU != "generic")
1013 return CPU;
1014 else
1015 return "";
1016 }
1017
1018 return llvm::StringSwitch<const char *>(CPUName)
1019 .Case("common", "generic")
1020 .Case("440", "440")
1021 .Case("440fp", "440")
1022 .Case("450", "450")
1023 .Case("601", "601")
1024 .Case("602", "602")
1025 .Case("603", "603")
1026 .Case("603e", "603e")
1027 .Case("603ev", "603ev")
1028 .Case("604", "604")
1029 .Case("604e", "604e")
1030 .Case("620", "620")
1031 .Case("G3", "g3")
1032 .Case("7400", "7400")
1033 .Case("G4", "g4")
1034 .Case("7450", "7450")
1035 .Case("G4+", "g4+")
1036 .Case("750", "750")
1037 .Case("970", "970")
1038 .Case("G5", "g5")
1039 .Case("a2", "a2")
Hal Finkel7de32962012-09-18 22:25:03 +00001040 .Case("e500mc", "e500mc")
1041 .Case("e5500", "e5500")
Hal Finkel02a84272012-06-11 22:35:19 +00001042 .Case("power6", "pwr6")
1043 .Case("power7", "pwr7")
1044 .Case("powerpc", "ppc")
1045 .Case("powerpc64", "ppc64")
1046 .Default("");
1047 }
1048
1049 return "";
1050}
1051
1052void Clang::AddPPCTargetArgs(const ArgList &Args,
1053 ArgStringList &CmdArgs) const {
1054 std::string TargetCPUName = getPPCTargetCPU(Args);
1055
1056 // LLVM may default to generating code for the native CPU,
1057 // but, like gcc, we default to a more generic option for
1058 // each architecture. (except on Darwin)
1059 llvm::Triple Triple = getToolChain().getTriple();
1060 if (TargetCPUName.empty() && !Triple.isOSDarwin()) {
1061 if (Triple.getArch() == llvm::Triple::ppc64)
1062 TargetCPUName = "ppc64";
1063 else
1064 TargetCPUName = "ppc";
1065 }
1066
1067 if (!TargetCPUName.empty()) {
1068 CmdArgs.push_back("-target-cpu");
1069 CmdArgs.push_back(Args.MakeArgString(TargetCPUName.c_str()));
1070 }
1071}
1072
Bruno Cardoso Lopes9284d212010-11-09 17:21:19 +00001073void Clang::AddSparcTargetArgs(const ArgList &Args,
1074 ArgStringList &CmdArgs) const {
1075 const Driver &D = getToolChain().getDriver();
1076
1077 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) {
Bruno Cardoso Lopes9284d212010-11-09 17:21:19 +00001078 CmdArgs.push_back("-target-cpu");
Richard Smith1d489cf2012-11-01 04:30:05 +00001079 CmdArgs.push_back(A->getValue());
Bruno Cardoso Lopes9284d212010-11-09 17:21:19 +00001080 }
1081
1082 // Select the float ABI as determined by -msoft-float, -mhard-float, and
Chris Lattner5f9e2722011-07-23 10:55:15 +00001083 StringRef FloatABI;
Bruno Cardoso Lopes9284d212010-11-09 17:21:19 +00001084 if (Arg *A = Args.getLastArg(options::OPT_msoft_float,
1085 options::OPT_mhard_float)) {
1086 if (A->getOption().matches(options::OPT_msoft_float))
1087 FloatABI = "soft";
1088 else if (A->getOption().matches(options::OPT_mhard_float))
1089 FloatABI = "hard";
1090 }
1091
1092 // If unspecified, choose the default based on the platform.
1093 if (FloatABI.empty()) {
1094 switch (getToolChain().getTriple().getOS()) {
1095 default:
1096 // Assume "soft", but warn the user we are guessing.
1097 FloatABI = "soft";
Chris Lattner5f9e2722011-07-23 10:55:15 +00001098 D.Diag(diag::warn_drv_assuming_mfloat_abi_is) << "soft";
Bruno Cardoso Lopes9284d212010-11-09 17:21:19 +00001099 break;
1100 }
1101 }
1102
1103 if (FloatABI == "soft") {
1104 // Floating point operations and argument passing are soft.
1105 //
1106 // FIXME: This changes CPP defines, we need -target-soft-float.
1107 CmdArgs.push_back("-msoft-float");
Bruno Cardoso Lopes9284d212010-11-09 17:21:19 +00001108 CmdArgs.push_back("-target-feature");
1109 CmdArgs.push_back("+soft-float");
1110 } else {
1111 assert(FloatABI == "hard" && "Invalid float abi!");
1112 CmdArgs.push_back("-mhard-float");
1113 }
1114}
1115
Daniel Dunbar6acda162009-09-09 22:33:08 +00001116void Clang::AddX86TargetArgs(const ArgList &Args,
1117 ArgStringList &CmdArgs) const {
Rafael Espindola715852c2012-11-02 20:41:30 +00001118 const bool isAndroid =
1119 getToolChain().getTriple().getEnvironment() == llvm::Triple::Android;
Daniel Dunbare6ad3f92009-09-10 22:59:57 +00001120 if (!Args.hasFlag(options::OPT_mred_zone,
1121 options::OPT_mno_red_zone,
1122 true) ||
1123 Args.hasArg(options::OPT_mkernel) ||
1124 Args.hasArg(options::OPT_fapple_kext))
Daniel Dunbar66861e02009-11-20 22:21:36 +00001125 CmdArgs.push_back("-disable-red-zone");
Daniel Dunbare6ad3f92009-09-10 22:59:57 +00001126
Daniel Dunbare6ad3f92009-09-10 22:59:57 +00001127 if (Args.hasFlag(options::OPT_msoft_float,
1128 options::OPT_mno_soft_float,
1129 false))
Daniel Dunbar66861e02009-11-20 22:21:36 +00001130 CmdArgs.push_back("-no-implicit-float");
Daniel Dunbare6ad3f92009-09-10 22:59:57 +00001131
Daniel Dunbarf86fedd2009-11-14 22:04:54 +00001132 const char *CPUName = 0;
Daniel Dunbar6acda162009-09-09 22:33:08 +00001133 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) {
Richard Smith1d489cf2012-11-01 04:30:05 +00001134 if (StringRef(A->getValue()) == "native") {
Daniel Dunbarf86fedd2009-11-14 22:04:54 +00001135 // FIXME: Reject attempts to use -march=native unless the target matches
1136 // the host.
1137 //
1138 // FIXME: We should also incorporate the detected target features for use
1139 // with -native.
1140 std::string CPU = llvm::sys::getHostCPUName();
Bob Wilsone0cc3092012-05-09 17:53:10 +00001141 if (!CPU.empty() && CPU != "generic")
Daniel Dunbarf86fedd2009-11-14 22:04:54 +00001142 CPUName = Args.MakeArgString(CPU);
1143 } else
Richard Smith1d489cf2012-11-01 04:30:05 +00001144 CPUName = A->getValue();
Daniel Dunbarf86fedd2009-11-14 22:04:54 +00001145 }
Daniel Dunbar6acda162009-09-09 22:33:08 +00001146
Daniel Dunbarf86fedd2009-11-14 22:04:54 +00001147 // Select the default CPU if none was given (or detection failed).
1148 if (!CPUName) {
Daniel Dunbar6acda162009-09-09 22:33:08 +00001149 // FIXME: Need target hooks.
Bob Wilson905c45f2011-10-14 05:03:44 +00001150 if (getToolChain().getTriple().isOSDarwin()) {
Daniel Dunbar951733d2011-05-31 15:58:55 +00001151 if (getToolChain().getArch() == llvm::Triple::x86_64)
Daniel Dunbarf86fedd2009-11-14 22:04:54 +00001152 CPUName = "core2";
Daniel Dunbar951733d2011-05-31 15:58:55 +00001153 else if (getToolChain().getArch() == llvm::Triple::x86)
Daniel Dunbarf86fedd2009-11-14 22:04:54 +00001154 CPUName = "yonah";
Chris Lattner86ed3a32010-04-11 19:29:39 +00001155 } else if (getToolChain().getOS().startswith("haiku")) {
Daniel Dunbar951733d2011-05-31 15:58:55 +00001156 if (getToolChain().getArch() == llvm::Triple::x86_64)
Chris Lattner86ed3a32010-04-11 19:29:39 +00001157 CPUName = "x86-64";
Daniel Dunbar951733d2011-05-31 15:58:55 +00001158 else if (getToolChain().getArch() == llvm::Triple::x86)
Chris Lattner86ed3a32010-04-11 19:29:39 +00001159 CPUName = "i586";
Daniel Dunbar95c04572010-08-01 23:13:54 +00001160 } else if (getToolChain().getOS().startswith("openbsd")) {
Daniel Dunbar951733d2011-05-31 15:58:55 +00001161 if (getToolChain().getArch() == llvm::Triple::x86_64)
Daniel Dunbar95c04572010-08-01 23:13:54 +00001162 CPUName = "x86-64";
Daniel Dunbar951733d2011-05-31 15:58:55 +00001163 else if (getToolChain().getArch() == llvm::Triple::x86)
Daniel Dunbar95c04572010-08-01 23:13:54 +00001164 CPUName = "i486";
Eli Friedman42f74f22012-08-08 23:57:20 +00001165 } else if (getToolChain().getOS().startswith("bitrig")) {
1166 if (getToolChain().getArch() == llvm::Triple::x86_64)
1167 CPUName = "x86-64";
1168 else if (getToolChain().getArch() == llvm::Triple::x86)
1169 CPUName = "i686";
Roman Divacky451f8ca2011-03-01 18:11:37 +00001170 } else if (getToolChain().getOS().startswith("freebsd")) {
Daniel Dunbar951733d2011-05-31 15:58:55 +00001171 if (getToolChain().getArch() == llvm::Triple::x86_64)
Roman Divacky451f8ca2011-03-01 18:11:37 +00001172 CPUName = "x86-64";
Daniel Dunbar951733d2011-05-31 15:58:55 +00001173 else if (getToolChain().getArch() == llvm::Triple::x86)
Roman Divacky451f8ca2011-03-01 18:11:37 +00001174 CPUName = "i486";
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001175 } else if (getToolChain().getOS().startswith("netbsd")) {
Daniel Dunbar951733d2011-05-31 15:58:55 +00001176 if (getToolChain().getArch() == llvm::Triple::x86_64)
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001177 CPUName = "x86-64";
Daniel Dunbar951733d2011-05-31 15:58:55 +00001178 else if (getToolChain().getArch() == llvm::Triple::x86)
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001179 CPUName = "i486";
Daniel Dunbar6acda162009-09-09 22:33:08 +00001180 } else {
Daniel Dunbar951733d2011-05-31 15:58:55 +00001181 if (getToolChain().getArch() == llvm::Triple::x86_64)
Daniel Dunbarf86fedd2009-11-14 22:04:54 +00001182 CPUName = "x86-64";
Daniel Dunbar951733d2011-05-31 15:58:55 +00001183 else if (getToolChain().getArch() == llvm::Triple::x86)
Rafael Espindola715852c2012-11-02 20:41:30 +00001184 // All x86 devices running Android have core2 as their common
1185 // denominator. This makes a better choice than pentium4.
1186 CPUName = isAndroid ? "core2" : "pentium4";
Daniel Dunbar6acda162009-09-09 22:33:08 +00001187 }
1188 }
1189
Daniel Dunbarf86fedd2009-11-14 22:04:54 +00001190 if (CPUName) {
Daniel Dunbar38b48af2009-12-18 06:30:12 +00001191 CmdArgs.push_back("-target-cpu");
Daniel Dunbarf86fedd2009-11-14 22:04:54 +00001192 CmdArgs.push_back(CPUName);
1193 }
1194
Eli Friedmand18eeca2011-07-02 00:34:19 +00001195 // The required algorithm here is slightly strange: the options are applied
1196 // in order (so -mno-sse -msse2 disables SSE3), but any option that gets
1197 // directly overridden later is ignored (so "-mno-sse -msse2 -mno-sse2 -msse"
1198 // is equivalent to "-mno-sse2 -msse"). The -cc1 handling deals with the
1199 // former correctly, but not the latter; handle directly-overridden
1200 // attributes here.
1201 llvm::StringMap<unsigned> PrevFeature;
1202 std::vector<const char*> Features;
Daniel Dunbarcdd96862009-11-25 11:53:23 +00001203 for (arg_iterator it = Args.filtered_begin(options::OPT_m_x86_Features_Group),
1204 ie = Args.filtered_end(); it != ie; ++it) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001205 StringRef Name = (*it)->getOption().getName();
Daniel Dunbar7e4953e2010-06-11 22:00:13 +00001206 (*it)->claim();
Daniel Dunbar6acda162009-09-09 22:33:08 +00001207
Daniel Dunbarcdd96862009-11-25 11:53:23 +00001208 // Skip over "-m".
Michael J. Spencerc6357102012-10-22 22:13:48 +00001209 assert(Name.startswith("m") && "Invalid feature name.");
1210 Name = Name.substr(1);
Daniel Dunbar6acda162009-09-09 22:33:08 +00001211
Daniel Dunbarcdd96862009-11-25 11:53:23 +00001212 bool IsNegative = Name.startswith("no-");
1213 if (IsNegative)
1214 Name = Name.substr(3);
Daniel Dunbar6acda162009-09-09 22:33:08 +00001215
Eli Friedmand18eeca2011-07-02 00:34:19 +00001216 unsigned& Prev = PrevFeature[Name];
1217 if (Prev)
1218 Features[Prev - 1] = 0;
1219 Prev = Features.size() + 1;
1220 Features.push_back(Args.MakeArgString((IsNegative ? "-" : "+") + Name));
1221 }
1222 for (unsigned i = 0; i < Features.size(); i++) {
1223 if (Features[i]) {
1224 CmdArgs.push_back("-target-feature");
1225 CmdArgs.push_back(Features[i]);
1226 }
Daniel Dunbar6acda162009-09-09 22:33:08 +00001227 }
1228}
1229
Matthew Curtis33c95f12012-12-06 17:49:03 +00001230static inline bool HasPICArg(const ArgList &Args) {
1231 return Args.hasArg(options::OPT_fPIC)
1232 || Args.hasArg(options::OPT_fpic);
1233}
1234
1235static Arg *GetLastSmallDataThresholdArg(const ArgList &Args) {
1236 return Args.getLastArg(options::OPT_G,
1237 options::OPT_G_EQ,
1238 options::OPT_msmall_data_threshold_EQ);
1239}
1240
1241static std::string GetHexagonSmallDataThresholdValue(const ArgList &Args) {
1242 std::string value;
1243 if (HasPICArg(Args))
1244 value = "0";
1245 else if (Arg *A = GetLastSmallDataThresholdArg(Args)) {
1246 value = A->getValue();
1247 A->claim();
1248 }
1249 return value;
1250}
1251
Tony Linthicum96319392011-12-12 21:14:55 +00001252void Clang::AddHexagonTargetArgs(const ArgList &Args,
1253 ArgStringList &CmdArgs) const {
1254 llvm::Triple Triple = getToolChain().getTriple();
1255
1256 CmdArgs.push_back("-target-cpu");
Matthew Curtis67814152012-12-06 14:16:43 +00001257 CmdArgs.push_back(Args.MakeArgString(
1258 "hexagon"
1259 + toolchains::Hexagon_TC::GetTargetCPU(Args)));
Tony Linthicum96319392011-12-12 21:14:55 +00001260 CmdArgs.push_back("-fno-signed-char");
Matthew Curtis1dbaef52012-12-07 13:52:44 +00001261 CmdArgs.push_back("-mqdsp6-compat");
1262 CmdArgs.push_back("-Wreturn-type");
Tony Linthicum96319392011-12-12 21:14:55 +00001263
Matthew Curtis33c95f12012-12-06 17:49:03 +00001264 std::string SmallDataThreshold = GetHexagonSmallDataThresholdValue(Args);
1265 if (!SmallDataThreshold.empty()) {
Tony Linthicum96319392011-12-12 21:14:55 +00001266 CmdArgs.push_back ("-mllvm");
Matthew Curtis33c95f12012-12-06 17:49:03 +00001267 CmdArgs.push_back(Args.MakeArgString(
1268 "-hexagon-small-data-threshold=" + SmallDataThreshold));
Tony Linthicum96319392011-12-12 21:14:55 +00001269 }
1270
Sirish Pande5f9688b2012-05-10 20:19:54 +00001271 if (!Args.hasArg(options::OPT_fno_short_enums))
1272 CmdArgs.push_back("-fshort-enums");
1273 if (Args.getLastArg(options::OPT_mieee_rnd_near)) {
1274 CmdArgs.push_back ("-mllvm");
1275 CmdArgs.push_back ("-enable-hexagon-ieee-rnd-near");
1276 }
Tony Linthicum96319392011-12-12 21:14:55 +00001277 CmdArgs.push_back ("-mllvm");
1278 CmdArgs.push_back ("-machine-sink-split=0");
1279}
1280
Eric Christopher88b7cf02011-08-19 00:30:14 +00001281static bool
John McCall260611a2012-06-20 06:18:46 +00001282shouldUseExceptionTablesForObjCExceptions(const ObjCRuntime &runtime,
Anders Carlsson525544d2011-02-28 00:44:51 +00001283 const llvm::Triple &Triple) {
1284 // We use the zero-cost exception tables for Objective-C if the non-fragile
1285 // ABI is enabled or when compiling for x86_64 and ARM on Snow Leopard and
1286 // later.
John McCall260611a2012-06-20 06:18:46 +00001287 if (runtime.isNonFragile())
Anders Carlsson525544d2011-02-28 00:44:51 +00001288 return true;
1289
Bob Wilson905c45f2011-10-14 05:03:44 +00001290 if (!Triple.isOSDarwin())
Anders Carlsson525544d2011-02-28 00:44:51 +00001291 return false;
1292
Eric Christopheraa7333c2011-07-02 00:20:22 +00001293 return (!Triple.isMacOSXVersionLT(10,5) &&
Anders Carlsson525544d2011-02-28 00:44:51 +00001294 (Triple.getArch() == llvm::Triple::x86_64 ||
Eric Christopher88b7cf02011-08-19 00:30:14 +00001295 Triple.getArch() == llvm::Triple::arm));
Anders Carlsson525544d2011-02-28 00:44:51 +00001296}
1297
Anders Carlsson15348ae2011-02-28 02:27:16 +00001298/// addExceptionArgs - Adds exception related arguments to the driver command
1299/// arguments. There's a master flag, -fexceptions and also language specific
1300/// flags to enable/disable C++ and Objective-C exceptions.
1301/// This makes it possible to for example disable C++ exceptions but enable
1302/// Objective-C exceptions.
1303static void addExceptionArgs(const ArgList &Args, types::ID InputType,
1304 const llvm::Triple &Triple,
Fariborz Jahanian15b77312012-04-04 18:28:00 +00001305 bool KernelOrKext,
John McCall260611a2012-06-20 06:18:46 +00001306 const ObjCRuntime &objcRuntime,
Anders Carlsson15348ae2011-02-28 02:27:16 +00001307 ArgStringList &CmdArgs) {
Chad Rosierafc4baa2012-03-26 22:04:46 +00001308 if (KernelOrKext) {
1309 // -mkernel and -fapple-kext imply no exceptions, so claim exception related
1310 // arguments now to avoid warnings about unused arguments.
1311 Args.ClaimAllArgs(options::OPT_fexceptions);
1312 Args.ClaimAllArgs(options::OPT_fno_exceptions);
1313 Args.ClaimAllArgs(options::OPT_fobjc_exceptions);
1314 Args.ClaimAllArgs(options::OPT_fno_objc_exceptions);
1315 Args.ClaimAllArgs(options::OPT_fcxx_exceptions);
1316 Args.ClaimAllArgs(options::OPT_fno_cxx_exceptions);
Anders Carlsson15348ae2011-02-28 02:27:16 +00001317 return;
Chad Rosierafc4baa2012-03-26 22:04:46 +00001318 }
Anders Carlsson15348ae2011-02-28 02:27:16 +00001319
1320 // Exceptions are enabled by default.
1321 bool ExceptionsEnabled = true;
1322
1323 // This keeps track of whether exceptions were explicitly turned on or off.
1324 bool DidHaveExplicitExceptionFlag = false;
1325
Rafael Espindolaf759df02009-10-01 13:33:33 +00001326 if (Arg *A = Args.getLastArg(options::OPT_fexceptions,
1327 options::OPT_fno_exceptions)) {
1328 if (A->getOption().matches(options::OPT_fexceptions))
Anders Carlsson15348ae2011-02-28 02:27:16 +00001329 ExceptionsEnabled = true;
Eric Christopher88b7cf02011-08-19 00:30:14 +00001330 else
Anders Carlsson15348ae2011-02-28 02:27:16 +00001331 ExceptionsEnabled = false;
1332
1333 DidHaveExplicitExceptionFlag = true;
Rafael Espindolaf759df02009-10-01 13:33:33 +00001334 }
Daniel Dunbar1a2cd4f2010-09-14 23:12:31 +00001335
Anders Carlsson15348ae2011-02-28 02:27:16 +00001336 bool ShouldUseExceptionTables = false;
Fariborz Jahanian85caf032009-10-01 20:30:46 +00001337
Anders Carlsson15348ae2011-02-28 02:27:16 +00001338 // Exception tables and cleanups can be enabled with -fexceptions even if the
1339 // language itself doesn't support exceptions.
1340 if (ExceptionsEnabled && DidHaveExplicitExceptionFlag)
1341 ShouldUseExceptionTables = true;
Daniel Dunbar1a2cd4f2010-09-14 23:12:31 +00001342
Daniel Dunbard47ea692011-03-17 23:28:31 +00001343 // Obj-C exceptions are enabled by default, regardless of -fexceptions. This
1344 // is not necessarily sensible, but follows GCC.
1345 if (types::isObjC(InputType) &&
Eric Christopher88b7cf02011-08-19 00:30:14 +00001346 Args.hasFlag(options::OPT_fobjc_exceptions,
Daniel Dunbard47ea692011-03-17 23:28:31 +00001347 options::OPT_fno_objc_exceptions,
1348 true)) {
1349 CmdArgs.push_back("-fobjc-exceptions");
Anders Carlsson15348ae2011-02-28 02:27:16 +00001350
Eric Christopher88b7cf02011-08-19 00:30:14 +00001351 ShouldUseExceptionTables |=
John McCall260611a2012-06-20 06:18:46 +00001352 shouldUseExceptionTablesForObjCExceptions(objcRuntime, Triple);
Anders Carlsson15348ae2011-02-28 02:27:16 +00001353 }
1354
1355 if (types::isCXX(InputType)) {
1356 bool CXXExceptionsEnabled = ExceptionsEnabled;
1357
Eric Christopher88b7cf02011-08-19 00:30:14 +00001358 if (Arg *A = Args.getLastArg(options::OPT_fcxx_exceptions,
1359 options::OPT_fno_cxx_exceptions,
Anders Carlsson15348ae2011-02-28 02:27:16 +00001360 options::OPT_fexceptions,
1361 options::OPT_fno_exceptions)) {
1362 if (A->getOption().matches(options::OPT_fcxx_exceptions))
1363 CXXExceptionsEnabled = true;
Chandler Carruth43f220f2011-02-28 07:25:18 +00001364 else if (A->getOption().matches(options::OPT_fno_cxx_exceptions))
Anders Carlsson15348ae2011-02-28 02:27:16 +00001365 CXXExceptionsEnabled = false;
1366 }
1367
1368 if (CXXExceptionsEnabled) {
1369 CmdArgs.push_back("-fcxx-exceptions");
1370
1371 ShouldUseExceptionTables = true;
1372 }
1373 }
1374
1375 if (ShouldUseExceptionTables)
1376 CmdArgs.push_back("-fexceptions");
Rafael Espindolaf759df02009-10-01 13:33:33 +00001377}
1378
Rafael Espindola61b1efe2011-05-02 17:43:32 +00001379static bool ShouldDisableCFI(const ArgList &Args,
1380 const ToolChain &TC) {
Rafael Espindola701ec8d2012-03-08 14:39:55 +00001381 bool Default = true;
Bob Wilson905c45f2011-10-14 05:03:44 +00001382 if (TC.getTriple().isOSDarwin()) {
Rafael Espindola97f6abb2011-05-17 16:26:17 +00001383 // The native darwin assembler doesn't support cfi directives, so
Rafael Espindolacb773922011-05-17 19:06:58 +00001384 // we disable them if we think the .s file will be passed to it.
Rafael Espindola701ec8d2012-03-08 14:39:55 +00001385 Default = Args.hasFlag(options::OPT_integrated_as,
1386 options::OPT_no_integrated_as,
1387 TC.IsIntegratedAssemblerDefault());
Rafael Espindola97f6abb2011-05-17 16:26:17 +00001388 }
Rafael Espindola701ec8d2012-03-08 14:39:55 +00001389 return !Args.hasFlag(options::OPT_fdwarf2_cfi_asm,
1390 options::OPT_fno_dwarf2_cfi_asm,
1391 Default);
Rafael Espindola61b1efe2011-05-02 17:43:32 +00001392}
1393
Nick Lewyckyea523d72011-10-17 23:05:52 +00001394static bool ShouldDisableDwarfDirectory(const ArgList &Args,
1395 const ToolChain &TC) {
1396 bool IsIADefault = TC.IsIntegratedAssemblerDefault();
1397 bool UseIntegratedAs = Args.hasFlag(options::OPT_integrated_as,
1398 options::OPT_no_integrated_as,
1399 IsIADefault);
1400 bool UseDwarfDirectory = Args.hasFlag(options::OPT_fdwarf_directory_asm,
1401 options::OPT_fno_dwarf_directory_asm,
1402 UseIntegratedAs);
1403 return !UseDwarfDirectory;
1404}
1405
Joerg Sonnenberger359cf922011-05-06 14:35:16 +00001406/// \brief Check whether the given input tree contains any compilation actions.
1407static bool ContainsCompileAction(const Action *A) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001408 if (isa<CompileJobAction>(A))
Joerg Sonnenberger359cf922011-05-06 14:35:16 +00001409 return true;
1410
1411 for (Action::const_iterator it = A->begin(), ie = A->end(); it != ie; ++it)
1412 if (ContainsCompileAction(*it))
1413 return true;
1414
1415 return false;
1416}
1417
1418/// \brief Check if -relax-all should be passed to the internal assembler.
1419/// This is done by default when compiling non-assembler source with -O0.
1420static bool UseRelaxAll(Compilation &C, const ArgList &Args) {
1421 bool RelaxDefault = true;
1422
1423 if (Arg *A = Args.getLastArg(options::OPT_O_Group))
1424 RelaxDefault = A->getOption().matches(options::OPT_O0);
1425
1426 if (RelaxDefault) {
1427 RelaxDefault = false;
1428 for (ActionList::const_iterator it = C.getActions().begin(),
1429 ie = C.getActions().end(); it != ie; ++it) {
1430 if (ContainsCompileAction(*it)) {
1431 RelaxDefault = true;
1432 break;
1433 }
1434 }
1435 }
1436
1437 return Args.hasFlag(options::OPT_mrelax_all, options::OPT_mno_relax_all,
1438 RelaxDefault);
1439}
1440
Alexey Samsonovbb1071c2012-11-06 15:09:03 +00001441SanitizerArgs::SanitizerArgs(const Driver &D, const ArgList &Args) {
1442 Kind = 0;
Richard Smithc4dabad2012-11-05 22:04:41 +00001443
Richard Smithc4dabad2012-11-05 22:04:41 +00001444 for (ArgList::const_iterator I = Args.begin(), E = Args.end(); I != E; ++I) {
Alexey Samsonov3325b162012-11-28 17:34:24 +00001445 unsigned Add, Remove;
1446 if (!parse(D, Args, *I, Add, Remove, true))
Richard Smithc4dabad2012-11-05 22:04:41 +00001447 continue;
Richard Smithc4dabad2012-11-05 22:04:41 +00001448 (*I)->claim();
Alexey Samsonovbb1071c2012-11-06 15:09:03 +00001449 Kind |= Add;
1450 Kind &= ~Remove;
Richard Smithc4dabad2012-11-05 22:04:41 +00001451 }
1452
1453 // Only one runtime library can be used at once.
Alexey Samsonovbb1071c2012-11-06 15:09:03 +00001454 bool NeedsAsan = needsAsanRt();
1455 bool NeedsTsan = needsTsanRt();
Evgeniy Stepanov99469f72012-12-05 13:37:12 +00001456 bool NeedsMsan = needsMsanRt();
Richard Smith05650372012-12-01 01:02:45 +00001457 if (NeedsAsan && NeedsTsan)
Richard Smithc4dabad2012-11-05 22:04:41 +00001458 D.Diag(diag::err_drv_argument_not_allowed_with)
Richard Smith05650372012-12-01 01:02:45 +00001459 << lastArgumentForKind(D, Args, NeedsAsanRt)
1460 << lastArgumentForKind(D, Args, NeedsTsanRt);
Evgeniy Stepanov99469f72012-12-05 13:37:12 +00001461 if (NeedsAsan && NeedsMsan)
1462 D.Diag(diag::err_drv_argument_not_allowed_with)
1463 << lastArgumentForKind(D, Args, NeedsAsanRt)
1464 << lastArgumentForKind(D, Args, NeedsMsanRt);
1465 if (NeedsTsan && NeedsMsan)
1466 D.Diag(diag::err_drv_argument_not_allowed_with)
1467 << lastArgumentForKind(D, Args, NeedsTsanRt)
1468 << lastArgumentForKind(D, Args, NeedsMsanRt);
Alexey Samsonov4d1a6e42012-11-29 22:36:21 +00001469
1470 // If -fsanitize contains extra features of ASan, it should also
1471 // explicitly contain -fsanitize=address.
1472 if (NeedsAsan && ((Kind & Address) == 0))
1473 D.Diag(diag::err_drv_argument_only_allowed_with)
1474 << lastArgumentForKind(D, Args, NeedsAsanRt)
1475 << "-fsanitize=address";
Alexey Samsonov91ecfa62012-12-03 19:12:58 +00001476
1477 // Parse -f(no-)sanitize-blacklist options.
1478 if (Arg *BLArg = Args.getLastArg(options::OPT_fsanitize_blacklist,
1479 options::OPT_fno_sanitize_blacklist)) {
1480 if (BLArg->getOption().matches(options::OPT_fsanitize_blacklist)) {
1481 std::string BLPath = BLArg->getValue();
1482 bool BLExists = false;
1483 if (!llvm::sys::fs::exists(BLPath, BLExists) && BLExists)
1484 BlacklistFile = BLPath;
1485 else
1486 D.Diag(diag::err_drv_no_such_file) << BLPath;
1487 }
1488 }
Richard Smithc4dabad2012-11-05 22:04:41 +00001489}
1490
Kostya Serebryanydff466c2011-11-30 01:39:16 +00001491/// If AddressSanitizer is enabled, add appropriate linker flags (Linux).
1492/// This needs to be called before we add the C run-time (malloc, etc).
1493static void addAsanRTLinux(const ToolChain &TC, const ArgList &Args,
Kostya Serebryany7b5f1012011-12-06 19:18:44 +00001494 ArgStringList &CmdArgs) {
Logan Chien94a71422012-09-02 09:30:11 +00001495 if(TC.getTriple().getEnvironment() == llvm::Triple::Android) {
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00001496 if (!Args.hasArg(options::OPT_shared)) {
Evgeniy Stepanov83738622012-06-04 11:15:05 +00001497 if (!Args.hasArg(options::OPT_pie))
1498 TC.getDriver().Diag(diag::err_drv_asan_android_requires_pie);
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00001499 }
Daniel Dunbar8cd0d252011-12-07 23:22:17 +00001500
Evgeniy Stepanov8ba75412012-09-12 09:09:08 +00001501 SmallString<128> LibAsan(TC.getDriver().ResourceDir);
1502 llvm::sys::path::append(LibAsan, "lib", "linux",
1503 (Twine("libclang_rt.asan-") +
1504 TC.getArchName() + "-android.so"));
Matt Beaumont-Gay45b27382012-12-04 21:18:26 +00001505 CmdArgs.insert(CmdArgs.begin(), Args.MakeArgString(LibAsan));
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00001506 } else {
1507 if (!Args.hasArg(options::OPT_shared)) {
1508 // LibAsan is "libclang_rt.asan-<ArchName>.a" in the Linux library
1509 // resource directory.
1510 SmallString<128> LibAsan(TC.getDriver().ResourceDir);
1511 llvm::sys::path::append(LibAsan, "lib", "linux",
1512 (Twine("libclang_rt.asan-") +
1513 TC.getArchName() + ".a"));
Matt Beaumont-Gay45b27382012-12-04 21:18:26 +00001514 // The ASan runtime needs to come before -lstdc++ (or -lc++, libstdc++.a,
1515 // etc.) so that the linker picks ASan's versions of the global 'operator
1516 // new' and 'operator delete' symbols. We take the extreme (but simple)
Chandler Carruth1d153982012-12-04 22:54:37 +00001517 // strategy of inserting it at the front of the link command. It also
1518 // needs to be forced to end up in the executable, so wrap it in
1519 // whole-archive.
1520 SmallVector<const char*, 3> PrefixArgs;
1521 PrefixArgs.push_back("-whole-archive");
1522 PrefixArgs.push_back(Args.MakeArgString(LibAsan));
1523 PrefixArgs.push_back("-no-whole-archive");
1524 CmdArgs.insert(CmdArgs.begin(), PrefixArgs.begin(), PrefixArgs.end());
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00001525 CmdArgs.push_back("-lpthread");
1526 CmdArgs.push_back("-ldl");
1527 CmdArgs.push_back("-export-dynamic");
1528 }
1529 }
Kostya Serebryanydff466c2011-11-30 01:39:16 +00001530}
1531
Kostya Serebryanyf7efb0e2012-05-16 06:36:00 +00001532/// If ThreadSanitizer is enabled, add appropriate linker flags (Linux).
1533/// This needs to be called before we add the C run-time (malloc, etc).
1534static void addTsanRTLinux(const ToolChain &TC, const ArgList &Args,
1535 ArgStringList &CmdArgs) {
Kostya Serebryanyf7efb0e2012-05-16 06:36:00 +00001536 if (!Args.hasArg(options::OPT_shared)) {
Evgeniy Stepanov09ccf392012-12-03 13:20:43 +00001537 if (!Args.hasArg(options::OPT_pie))
Evgeniy Stepanov99469f72012-12-05 13:37:12 +00001538 TC.getDriver().Diag(diag::err_drv_argument_only_allowed_with) <<
1539 "-fsanitize=thread" << "-pie";
Kostya Serebryanyf7efb0e2012-05-16 06:36:00 +00001540 // LibTsan is "libclang_rt.tsan-<ArchName>.a" in the Linux library
1541 // resource directory.
1542 SmallString<128> LibTsan(TC.getDriver().ResourceDir);
1543 llvm::sys::path::append(LibTsan, "lib", "linux",
1544 (Twine("libclang_rt.tsan-") +
1545 TC.getArchName() + ".a"));
1546 CmdArgs.push_back(Args.MakeArgString(LibTsan));
1547 CmdArgs.push_back("-lpthread");
1548 CmdArgs.push_back("-ldl");
1549 CmdArgs.push_back("-export-dynamic");
1550 }
1551}
1552
Evgeniy Stepanov09ccf392012-12-03 13:20:43 +00001553/// If MemorySanitizer is enabled, add appropriate linker flags (Linux).
1554/// This needs to be called before we add the C run-time (malloc, etc).
1555static void addMsanRTLinux(const ToolChain &TC, const ArgList &Args,
1556 ArgStringList &CmdArgs) {
1557 if (!Args.hasArg(options::OPT_shared)) {
1558 if (!Args.hasArg(options::OPT_pie))
Evgeniy Stepanov99469f72012-12-05 13:37:12 +00001559 TC.getDriver().Diag(diag::err_drv_argument_only_allowed_with) <<
1560 "-fsanitize=memory" << "-pie";
Evgeniy Stepanov09ccf392012-12-03 13:20:43 +00001561 // LibMsan is "libclang_rt.msan-<ArchName>.a" in the Linux library
1562 // resource directory.
1563 SmallString<128> LibMsan(TC.getDriver().ResourceDir);
1564 llvm::sys::path::append(LibMsan, "lib", "linux",
1565 (Twine("libclang_rt.msan-") +
1566 TC.getArchName() + ".a"));
1567 CmdArgs.push_back(Args.MakeArgString(LibMsan));
1568 CmdArgs.push_back("-lpthread");
1569 CmdArgs.push_back("-ldl");
1570 CmdArgs.push_back("-export-dynamic");
1571 }
1572}
1573
Richard Smith4def70d2012-10-09 19:52:38 +00001574/// If UndefinedBehaviorSanitizer is enabled, add appropriate linker flags
1575/// (Linux).
1576static void addUbsanRTLinux(const ToolChain &TC, const ArgList &Args,
1577 ArgStringList &CmdArgs) {
Richard Smith4def70d2012-10-09 19:52:38 +00001578 if (!Args.hasArg(options::OPT_shared)) {
1579 // LibUbsan is "libclang_rt.ubsan-<ArchName>.a" in the Linux library
1580 // resource directory.
1581 SmallString<128> LibUbsan(TC.getDriver().ResourceDir);
1582 llvm::sys::path::append(LibUbsan, "lib", "linux",
1583 (Twine("libclang_rt.ubsan-") +
1584 TC.getArchName() + ".a"));
1585 CmdArgs.push_back(Args.MakeArgString(LibUbsan));
Richard Smitheb52aed2012-11-02 20:32:19 +00001586 CmdArgs.push_back("-lpthread");
Richard Smith05650372012-12-01 01:02:45 +00001587 CmdArgs.push_back("-export-dynamic");
Richard Smith4def70d2012-10-09 19:52:38 +00001588 }
1589}
1590
Rafael Espindola6af27ec2011-12-14 21:02:23 +00001591static bool shouldUseFramePointer(const ArgList &Args,
1592 const llvm::Triple &Triple) {
1593 if (Arg *A = Args.getLastArg(options::OPT_fno_omit_frame_pointer,
1594 options::OPT_fomit_frame_pointer))
1595 return A->getOption().matches(options::OPT_fno_omit_frame_pointer);
1596
Rafael Espindolaa2a17892011-12-14 21:50:24 +00001597 // Don't use a frame pointer on linux x86 and x86_64 if optimizing.
Rafael Espindola6af27ec2011-12-14 21:02:23 +00001598 if ((Triple.getArch() == llvm::Triple::x86_64 ||
1599 Triple.getArch() == llvm::Triple::x86) &&
1600 Triple.getOS() == llvm::Triple::Linux) {
1601 if (Arg *A = Args.getLastArg(options::OPT_O_Group))
1602 if (!A->getOption().matches(options::OPT_O0))
1603 return false;
1604 }
1605
1606 return true;
1607}
1608
Daniel Dunbar47ac7d22009-03-18 06:00:36 +00001609void Clang::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar871adcf2009-03-18 07:06:02 +00001610 const InputInfo &Output,
Daniel Dunbar62cf6012009-03-18 06:07:59 +00001611 const InputInfoList &Inputs,
Daniel Dunbar1d460332009-03-18 10:01:51 +00001612 const ArgList &Args,
Daniel Dunbar47ac7d22009-03-18 06:00:36 +00001613 const char *LinkingOutput) const {
Daniel Dunbar0a80ba72010-03-20 04:52:14 +00001614 bool KernelOrKext = Args.hasArg(options::OPT_mkernel,
1615 options::OPT_fapple_kext);
Daniel Dunbaree788e72009-12-21 18:54:17 +00001616 const Driver &D = getToolChain().getDriver();
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00001617 ArgStringList CmdArgs;
1618
Daniel Dunbar077ba6a2009-03-31 20:53:55 +00001619 assert(Inputs.size() == 1 && "Unable to handle multiple inputs.");
1620
Daniel Dunbar8ff5b282009-12-11 23:00:49 +00001621 // Invoke ourselves in -cc1 mode.
1622 //
1623 // FIXME: Implement custom jobs for internal actions.
1624 CmdArgs.push_back("-cc1");
1625
Daniel Dunbardd4fe002009-10-30 18:12:20 +00001626 // Add the "effective" target triple.
Daniel Dunbaraf07f932009-03-31 17:35:15 +00001627 CmdArgs.push_back("-triple");
Daniel Dunbar00577ad2010-08-23 22:35:37 +00001628 std::string TripleStr = getToolChain().ComputeEffectiveClangTriple(Args);
Daniel Dunbardd4fe002009-10-30 18:12:20 +00001629 CmdArgs.push_back(Args.MakeArgString(TripleStr));
Daniel Dunbar728a5122009-09-10 06:49:20 +00001630
Daniel Dunbardd4fe002009-10-30 18:12:20 +00001631 // Select the appropriate action.
John McCall260611a2012-06-20 06:18:46 +00001632 RewriteKind rewriteKind = RK_None;
Fariborz Jahaniane982cc02012-04-04 18:50:28 +00001633
Daniel Dunbar1d460332009-03-18 10:01:51 +00001634 if (isa<AnalyzeJobAction>(JA)) {
1635 assert(JA.getType() == types::TY_Plist && "Invalid output type.");
1636 CmdArgs.push_back("-analyze");
Ted Kremenek30660a82012-03-06 20:06:33 +00001637 } else if (isa<MigrateJobAction>(JA)) {
1638 CmdArgs.push_back("-migrate");
Daniel Dunbar1d460332009-03-18 10:01:51 +00001639 } else if (isa<PreprocessJobAction>(JA)) {
Daniel Dunbarcd8e4c42009-03-30 06:36:42 +00001640 if (Output.getType() == types::TY_Dependencies)
1641 CmdArgs.push_back("-Eonly");
1642 else
1643 CmdArgs.push_back("-E");
Daniel Dunbar8767cbc2010-02-03 03:07:56 +00001644 } else if (isa<AssembleJobAction>(JA)) {
1645 CmdArgs.push_back("-emit-obj");
Daniel Dunbar99298002010-05-27 06:18:05 +00001646
Joerg Sonnenberger359cf922011-05-06 14:35:16 +00001647 if (UseRelaxAll(C, Args))
Daniel Dunbar99298002010-05-27 06:18:05 +00001648 CmdArgs.push_back("-mrelax-all");
Daniel Dunbarca0e0542010-08-24 16:47:49 +00001649
Daniel Dunbarfcec10b2010-10-18 22:36:15 +00001650 // When using an integrated assembler, translate -Wa, and -Xassembler
1651 // options.
1652 for (arg_iterator it = Args.filtered_begin(options::OPT_Wa_COMMA,
1653 options::OPT_Xassembler),
1654 ie = Args.filtered_end(); it != ie; ++it) {
1655 const Arg *A = *it;
1656 A->claim();
1657
1658 for (unsigned i = 0, e = A->getNumValues(); i != e; ++i) {
Richard Smith1d489cf2012-11-01 04:30:05 +00001659 StringRef Value = A->getValue(i);
Daniel Dunbarfcec10b2010-10-18 22:36:15 +00001660
1661 if (Value == "-force_cpusubtype_ALL") {
1662 // Do nothing, this is the default and we don't support anything else.
Daniel Dunbarb14eed02010-10-28 20:36:23 +00001663 } else if (Value == "-L") {
Daniel Dunbar96932322011-03-28 22:49:28 +00001664 CmdArgs.push_back("-msave-temp-labels");
Joerg Sonnenberger46a49392011-05-19 20:46:39 +00001665 } else if (Value == "--fatal-warnings") {
Joerg Sonnenbergerd7933502011-05-19 18:42:29 +00001666 CmdArgs.push_back("-mllvm");
1667 CmdArgs.push_back("-fatal-assembler-warnings");
Nick Lewyckyc3b90142011-06-21 00:14:18 +00001668 } else if (Value == "--noexecstack") {
1669 CmdArgs.push_back("-mnoexecstack");
Daniel Dunbarfcec10b2010-10-18 22:36:15 +00001670 } else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001671 D.Diag(diag::err_drv_unsupported_option_argument)
Daniel Dunbarfcec10b2010-10-18 22:36:15 +00001672 << A->getOption().getName() << Value;
1673 }
1674 }
1675 }
Daniel Dunbard02bba82010-11-19 16:23:35 +00001676
1677 // Also ignore explicit -force_cpusubtype_ALL option.
1678 (void) Args.hasArg(options::OPT_force__cpusubtype__ALL);
Daniel Dunbar1d460332009-03-18 10:01:51 +00001679 } else if (isa<PrecompileJobAction>(JA)) {
Argyrios Kyrtzidise5c35372010-08-11 23:27:58 +00001680 // Use PCH if the user requested it.
Daniel Dunbar0ebd9322009-10-15 20:02:44 +00001681 bool UsePCH = D.CCCUsePCH;
Daniel Dunbar0ebd9322009-10-15 20:02:44 +00001682
Aaron Ballman761322b2012-07-31 01:21:00 +00001683 if (JA.getType() == types::TY_Nothing)
1684 CmdArgs.push_back("-fsyntax-only");
1685 else if (UsePCH)
Douglas Gregordf91ef32009-04-18 00:34:01 +00001686 CmdArgs.push_back("-emit-pch");
1687 else
1688 CmdArgs.push_back("-emit-pth");
Daniel Dunbar1d460332009-03-18 10:01:51 +00001689 } else {
1690 assert(isa<CompileJobAction>(JA) && "Invalid action for clang tool.");
Daniel Dunbarc21c4852009-04-08 23:54:23 +00001691
Daniel Dunbar1d460332009-03-18 10:01:51 +00001692 if (JA.getType() == types::TY_Nothing) {
1693 CmdArgs.push_back("-fsyntax-only");
Daniel Dunbar6c6424b2010-06-07 23:28:45 +00001694 } else if (JA.getType() == types::TY_LLVM_IR ||
1695 JA.getType() == types::TY_LTO_IR) {
Daniel Dunbar1d460332009-03-18 10:01:51 +00001696 CmdArgs.push_back("-emit-llvm");
Daniel Dunbar6c6424b2010-06-07 23:28:45 +00001697 } else if (JA.getType() == types::TY_LLVM_BC ||
1698 JA.getType() == types::TY_LTO_BC) {
Daniel Dunbar1d460332009-03-18 10:01:51 +00001699 CmdArgs.push_back("-emit-llvm-bc");
1700 } else if (JA.getType() == types::TY_PP_Asm) {
Daniel Dunbare3b8d072009-09-17 00:47:53 +00001701 CmdArgs.push_back("-S");
Daniel Dunbar5915fbf2009-09-01 16:57:46 +00001702 } else if (JA.getType() == types::TY_AST) {
1703 CmdArgs.push_back("-emit-pch");
Daniel Dunbar64952502010-02-11 03:16:21 +00001704 } else if (JA.getType() == types::TY_RewrittenObjC) {
1705 CmdArgs.push_back("-rewrite-objc");
John McCall260611a2012-06-20 06:18:46 +00001706 rewriteKind = RK_NonFragile;
Fariborz Jahanian582b3952012-04-02 15:59:19 +00001707 } else if (JA.getType() == types::TY_RewrittenLegacyObjC) {
1708 CmdArgs.push_back("-rewrite-objc");
John McCall260611a2012-06-20 06:18:46 +00001709 rewriteKind = RK_Fragile;
Daniel Dunbar64952502010-02-11 03:16:21 +00001710 } else {
1711 assert(JA.getType() == types::TY_PP_Asm &&
1712 "Unexpected output type!");
Daniel Dunbar1d460332009-03-18 10:01:51 +00001713 }
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00001714 }
1715
Daniel Dunbar1d460332009-03-18 10:01:51 +00001716 // The make clang go fast button.
1717 CmdArgs.push_back("-disable-free");
1718
John McCallb689afb2010-02-13 03:50:24 +00001719 // Disable the verification pass in -asserts builds.
1720#ifdef NDEBUG
1721 CmdArgs.push_back("-disable-llvm-verifier");
1722#endif
1723
Daniel Dunbarc9abc042009-04-08 05:11:16 +00001724 // Set the main file name, so that debug info works even with
1725 // -save-temps.
1726 CmdArgs.push_back("-main-file-name");
Bob Wilson66b8a662012-11-23 06:14:39 +00001727 CmdArgs.push_back(getBaseInputName(Args, Inputs));
Daniel Dunbarc9abc042009-04-08 05:11:16 +00001728
Daniel Dunbar3bbc7532009-04-08 18:03:55 +00001729 // Some flags which affect the language (via preprocessor
Bob Wilson66b8a662012-11-23 06:14:39 +00001730 // defines).
Daniel Dunbar3bbc7532009-04-08 18:03:55 +00001731 if (Args.hasArg(options::OPT_static))
1732 CmdArgs.push_back("-static-define");
1733
Daniel Dunbar1d460332009-03-18 10:01:51 +00001734 if (isa<AnalyzeJobAction>(JA)) {
Ted Kremenekb8bb3e72009-09-25 05:55:59 +00001735 // Enable region store model by default.
1736 CmdArgs.push_back("-analyzer-store=region");
1737
Ted Kremenekb40d06d2009-12-07 22:26:14 +00001738 // Treat blocks as analysis entry points.
1739 CmdArgs.push_back("-analyzer-opt-analyze-nested-blocks");
1740
Ted Kremenek51885072011-03-24 00:28:47 +00001741 CmdArgs.push_back("-analyzer-eagerly-assume");
1742
Daniel Dunbar1d460332009-03-18 10:01:51 +00001743 // Add default argument set.
Daniel Dunbard8fc0f22009-05-22 00:38:15 +00001744 if (!Args.hasArg(options::OPT__analyzer_no_default_checks)) {
Argyrios Kyrtzidis027a6ab2011-02-15 07:42:33 +00001745 CmdArgs.push_back("-analyzer-checker=core");
Ted Kremenek51885072011-03-24 00:28:47 +00001746
Argyrios Kyrtzidis027a6ab2011-02-15 07:42:33 +00001747 if (getToolChain().getTriple().getOS() != llvm::Triple::Win32)
1748 CmdArgs.push_back("-analyzer-checker=unix");
Ted Kremenek51885072011-03-24 00:28:47 +00001749
Argyrios Kyrtzidis027a6ab2011-02-15 07:42:33 +00001750 if (getToolChain().getTriple().getVendor() == llvm::Triple::Apple)
Ted Kremenek51885072011-03-24 00:28:47 +00001751 CmdArgs.push_back("-analyzer-checker=osx");
Ted Kremeneka8180e52012-01-20 06:00:17 +00001752
1753 CmdArgs.push_back("-analyzer-checker=deadcode");
Ted Kremenek8dc05062012-01-26 02:27:38 +00001754
1755 // Enable the following experimental checkers for testing.
Ted Kremenek8dc05062012-01-26 02:27:38 +00001756 CmdArgs.push_back("-analyzer-checker=security.insecureAPI.UncheckedReturn");
1757 CmdArgs.push_back("-analyzer-checker=security.insecureAPI.getpw");
1758 CmdArgs.push_back("-analyzer-checker=security.insecureAPI.gets");
1759 CmdArgs.push_back("-analyzer-checker=security.insecureAPI.mktemp");
1760 CmdArgs.push_back("-analyzer-checker=security.insecureAPI.mkstemp");
1761 CmdArgs.push_back("-analyzer-checker=security.insecureAPI.vfork");
Daniel Dunbard8fc0f22009-05-22 00:38:15 +00001762 }
Daniel Dunbarc21c4852009-04-08 23:54:23 +00001763
Daniel Dunbard8fc0f22009-05-22 00:38:15 +00001764 // Set the output format. The default is plist, for (lame) historical
1765 // reasons.
1766 CmdArgs.push_back("-analyzer-output");
1767 if (Arg *A = Args.getLastArg(options::OPT__analyzer_output))
Richard Smith1d489cf2012-11-01 04:30:05 +00001768 CmdArgs.push_back(A->getValue());
Daniel Dunbard8fc0f22009-05-22 00:38:15 +00001769 else
1770 CmdArgs.push_back("plist");
Daniel Dunbar1d460332009-03-18 10:01:51 +00001771
Ted Kremenek0647a7b2010-03-22 22:32:05 +00001772 // Disable the presentation of standard compiler warnings when
1773 // using --analyze. We only want to show static analyzer diagnostics
1774 // or frontend errors.
1775 CmdArgs.push_back("-w");
1776
Daniel Dunbar1d460332009-03-18 10:01:51 +00001777 // Add -Xanalyzer arguments when running as analyzer.
1778 Args.AddAllArgValues(CmdArgs, options::OPT_Xanalyzer);
Mike Stump1eb44332009-09-09 15:08:12 +00001779 }
1780
Daniel Dunbare2fd6642009-09-10 01:21:12 +00001781 CheckCodeGenerationOptions(D, Args);
1782
Chandler Carruth7ce816a2012-11-19 03:52:03 +00001783 // For the PIC and PIE flag options, this logic is different from the legacy
1784 // logic in very old versions of GCC, as that logic was just a bug no one had
1785 // ever fixed. This logic is both more rational and consistent with GCC's new
1786 // logic now that the bugs are fixed. The last argument relating to either
1787 // PIC or PIE wins, and no other argument is used. If the last argument is
1788 // any flavor of the '-fno-...' arguments, both PIC and PIE are disabled. Any
1789 // PIE option implicitly enables PIC at the same level.
1790 bool PIE = false;
1791 bool PIC = getToolChain().isPICDefault();
1792 bool IsPICLevelTwo = PIC;
1793 if (Arg *A = Args.getLastArg(options::OPT_fPIC, options::OPT_fno_PIC,
1794 options::OPT_fpic, options::OPT_fno_pic,
1795 options::OPT_fPIE, options::OPT_fno_PIE,
1796 options::OPT_fpie, options::OPT_fno_pie)) {
1797 Option O = A->getOption();
1798 if (O.matches(options::OPT_fPIC) || O.matches(options::OPT_fpic) ||
1799 O.matches(options::OPT_fPIE) || O.matches(options::OPT_fpie)) {
1800 PIE = O.matches(options::OPT_fPIE) || O.matches(options::OPT_fpie);
1801 PIC = PIE || O.matches(options::OPT_fPIC) || O.matches(options::OPT_fpic);
1802 IsPICLevelTwo = O.matches(options::OPT_fPIE) ||
1803 O.matches(options::OPT_fPIC);
1804 } else {
1805 PIE = PIC = false;
1806 }
Benjamin Kramerb12ecd32012-11-13 15:32:35 +00001807 }
Chandler Carruth7ce816a2012-11-19 03:52:03 +00001808 // Check whether the tool chain trumps the PIC-ness decision. If the PIC-ness
1809 // is forced, then neither PIC nor PIE flags will have no effect.
1810 if (getToolChain().isPICDefaultForced()) {
1811 PIE = false;
1812 PIC = getToolChain().isPICDefault();
1813 IsPICLevelTwo = PIC;
Chandler Carruth5e219cf2012-04-08 16:40:35 +00001814 }
Chandler Carruth7ce816a2012-11-19 03:52:03 +00001815
1816 // Inroduce a Darwin-specific hack. If the default is PIC but the flags
1817 // specified while enabling PIC enabled level 1 PIC, just force it back to
1818 // level 2 PIC instead. This matches the behavior of Darwin GCC (based on my
1819 // informal testing).
1820 if (PIC && getToolChain().getTriple().isOSDarwin())
1821 IsPICLevelTwo |= getToolChain().isPICDefault();
1822
Chandler Carruth5e219cf2012-04-08 16:40:35 +00001823 // Note that these flags are trump-cards. Regardless of the order w.r.t. the
1824 // PIC or PIE options above, if these show up, PIC is disabled.
Daniel Dunbar7a0c0642012-10-15 22:23:53 +00001825 llvm::Triple Triple(TripleStr);
1826 if ((Args.hasArg(options::OPT_mkernel) ||
1827 Args.hasArg(options::OPT_fapple_kext)) &&
1828 (Triple.getOS() != llvm::Triple::IOS ||
1829 Triple.isOSVersionLT(6)))
Chandler Carruth7ce816a2012-11-19 03:52:03 +00001830 PIC = PIE = false;
Chandler Carruth5e219cf2012-04-08 16:40:35 +00001831 if (Args.hasArg(options::OPT_static))
Chandler Carruth7ce816a2012-11-19 03:52:03 +00001832 PIC = PIE = false;
Chandler Carruth5e219cf2012-04-08 16:40:35 +00001833
Chandler Carruth7ce816a2012-11-19 03:52:03 +00001834 if (Arg *A = Args.getLastArg(options::OPT_mdynamic_no_pic)) {
1835 // This is a very special mode. It trumps the other modes, almost no one
1836 // uses it, and it isn't even valid on any OS but Darwin.
1837 if (!getToolChain().getTriple().isOSDarwin())
1838 D.Diag(diag::err_drv_unsupported_opt_for_target)
1839 << A->getSpelling() << getToolChain().getTriple().str();
1840
1841 // FIXME: Warn when this flag trumps some other PIC or PIE flag.
1842
Daniel Dunbarf219e7c2009-11-29 07:18:39 +00001843 CmdArgs.push_back("-mrelocation-model");
Chandler Carruth7ce816a2012-11-19 03:52:03 +00001844 CmdArgs.push_back("dynamic-no-pic");
Daniel Dunbarbc85be82009-04-29 18:32:25 +00001845
Chandler Carruth7ce816a2012-11-19 03:52:03 +00001846 // Only a forced PIC mode can cause the actual compile to have PIC defines
1847 // etc., no flags are sufficient. This behavior was selected to closely
1848 // match that of llvm-gcc and Apple GCC before that.
1849 if (getToolChain().isPICDefault() && getToolChain().isPICDefaultForced()) {
1850 CmdArgs.push_back("-pic-level");
1851 CmdArgs.push_back("2");
1852 }
1853 } else {
1854 // Currently, LLVM only knows about PIC vs. static; the PIE differences are
1855 // handled in Clang's IRGen by the -pie-level flag.
1856 CmdArgs.push_back("-mrelocation-model");
1857 CmdArgs.push_back(PIC ? "pic" : "static");
1858
1859 if (PIC) {
1860 CmdArgs.push_back("-pic-level");
1861 CmdArgs.push_back(IsPICLevelTwo ? "2" : "1");
1862 if (PIE) {
1863 CmdArgs.push_back("-pie-level");
1864 CmdArgs.push_back(IsPICLevelTwo ? "2" : "1");
1865 }
1866 }
Daniel Dunbarbc85be82009-04-29 18:32:25 +00001867 }
Chandler Carruth5e219cf2012-04-08 16:40:35 +00001868
Tanya Lattner59876c22009-11-04 01:18:09 +00001869 if (!Args.hasFlag(options::OPT_fmerge_all_constants,
1870 options::OPT_fno_merge_all_constants))
Chris Lattnerf44a1a02011-04-08 18:06:54 +00001871 CmdArgs.push_back("-fno-merge-all-constants");
Daniel Dunbar6bea73b2009-09-16 06:17:29 +00001872
Daniel Dunbarf219e7c2009-11-29 07:18:39 +00001873 // LLVM Code Generator Options.
1874
Daniel Dunbar17d3fea2011-02-09 17:54:19 +00001875 if (Arg *A = Args.getLastArg(options::OPT_mregparm_EQ)) {
1876 CmdArgs.push_back("-mregparm");
Richard Smith1d489cf2012-11-01 04:30:05 +00001877 CmdArgs.push_back(A->getValue());
Daniel Dunbar17d3fea2011-02-09 17:54:19 +00001878 }
1879
Roman Divackycfe9af22011-03-01 17:40:53 +00001880 if (Args.hasFlag(options::OPT_mrtd, options::OPT_mno_rtd, false))
1881 CmdArgs.push_back("-mrtd");
1882
Rafael Espindola6af27ec2011-12-14 21:02:23 +00001883 if (shouldUseFramePointer(Args, getToolChain().getTriple()))
Daniel Dunbarf219e7c2009-11-29 07:18:39 +00001884 CmdArgs.push_back("-mdisable-fp-elim");
1885 if (!Args.hasFlag(options::OPT_fzero_initialized_in_bss,
1886 options::OPT_fno_zero_initialized_in_bss))
1887 CmdArgs.push_back("-mno-zero-initialized-in-bss");
Daniel Dunbar398c6102011-02-04 02:20:39 +00001888 if (!Args.hasFlag(options::OPT_fstrict_aliasing,
1889 options::OPT_fno_strict_aliasing,
1890 getToolChain().IsStrictAliasingDefault()))
Dan Gohman4d5625e2010-10-14 22:36:56 +00001891 CmdArgs.push_back("-relaxed-aliasing");
Chandler Carruth82fe6ae2012-03-27 23:58:37 +00001892 if (Args.hasFlag(options::OPT_fstrict_enums, options::OPT_fno_strict_enums,
1893 false))
1894 CmdArgs.push_back("-fstrict-enums");
Nick Lewycky1db772b2012-01-23 08:29:12 +00001895 if (!Args.hasFlag(options::OPT_foptimize_sibling_calls,
1896 options::OPT_fno_optimize_sibling_calls))
1897 CmdArgs.push_back("-mdisable-tail-calls");
Daniel Dunbar1b718482010-05-14 22:00:22 +00001898
Chandler Carruthabf07a72012-01-02 14:19:45 +00001899 // Handle various floating point optimization flags, mapping them to the
1900 // appropriate LLVM code generation flags. The pattern for all of these is to
1901 // default off the codegen optimizations, and if any flag enables them and no
1902 // flag disables them after the flag enabling them, enable the codegen
1903 // optimization. This is complicated by several "umbrella" flags.
1904 if (Arg *A = Args.getLastArg(options::OPT_ffast_math,
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001905 options::OPT_fno_fast_math,
Chandler Carruthabf07a72012-01-02 14:19:45 +00001906 options::OPT_ffinite_math_only,
1907 options::OPT_fno_finite_math_only,
1908 options::OPT_fhonor_infinities,
1909 options::OPT_fno_honor_infinities))
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001910 if (A->getOption().getID() != options::OPT_fno_fast_math &&
1911 A->getOption().getID() != options::OPT_fno_finite_math_only &&
Chandler Carruthabf07a72012-01-02 14:19:45 +00001912 A->getOption().getID() != options::OPT_fhonor_infinities)
1913 CmdArgs.push_back("-menable-no-infs");
1914 if (Arg *A = Args.getLastArg(options::OPT_ffast_math,
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001915 options::OPT_fno_fast_math,
Chandler Carruthabf07a72012-01-02 14:19:45 +00001916 options::OPT_ffinite_math_only,
1917 options::OPT_fno_finite_math_only,
1918 options::OPT_fhonor_nans,
1919 options::OPT_fno_honor_nans))
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001920 if (A->getOption().getID() != options::OPT_fno_fast_math &&
1921 A->getOption().getID() != options::OPT_fno_finite_math_only &&
Chandler Carruthabf07a72012-01-02 14:19:45 +00001922 A->getOption().getID() != options::OPT_fhonor_nans)
1923 CmdArgs.push_back("-menable-no-nans");
1924
Benjamin Kramer769aa2d2012-05-02 14:55:48 +00001925 // -fmath-errno is the default on some platforms, e.g. BSD-derived OSes.
1926 bool MathErrno = getToolChain().IsMathErrnoDefault();
Chandler Carruthabf07a72012-01-02 14:19:45 +00001927 if (Arg *A = Args.getLastArg(options::OPT_ffast_math,
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001928 options::OPT_fno_fast_math,
Chandler Carruthabf07a72012-01-02 14:19:45 +00001929 options::OPT_fmath_errno,
Chandler Carruth4f50c502012-04-26 02:10:51 +00001930 options::OPT_fno_math_errno))
1931 MathErrno = A->getOption().getID() == options::OPT_fmath_errno;
1932 if (MathErrno)
1933 CmdArgs.push_back("-fmath-errno");
Chandler Carruthabf07a72012-01-02 14:19:45 +00001934
1935 // There are several flags which require disabling very specific
1936 // optimizations. Any of these being disabled forces us to turn off the
1937 // entire set of LLVM optimizations, so collect them through all the flag
1938 // madness.
1939 bool AssociativeMath = false;
1940 if (Arg *A = Args.getLastArg(options::OPT_ffast_math,
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001941 options::OPT_fno_fast_math,
Chandler Carruthabf07a72012-01-02 14:19:45 +00001942 options::OPT_funsafe_math_optimizations,
1943 options::OPT_fno_unsafe_math_optimizations,
1944 options::OPT_fassociative_math,
1945 options::OPT_fno_associative_math))
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001946 if (A->getOption().getID() != options::OPT_fno_fast_math &&
1947 A->getOption().getID() != options::OPT_fno_unsafe_math_optimizations &&
Chandler Carruthabf07a72012-01-02 14:19:45 +00001948 A->getOption().getID() != options::OPT_fno_associative_math)
1949 AssociativeMath = true;
1950 bool ReciprocalMath = false;
1951 if (Arg *A = Args.getLastArg(options::OPT_ffast_math,
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001952 options::OPT_fno_fast_math,
Chandler Carruthabf07a72012-01-02 14:19:45 +00001953 options::OPT_funsafe_math_optimizations,
1954 options::OPT_fno_unsafe_math_optimizations,
1955 options::OPT_freciprocal_math,
1956 options::OPT_fno_reciprocal_math))
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001957 if (A->getOption().getID() != options::OPT_fno_fast_math &&
1958 A->getOption().getID() != options::OPT_fno_unsafe_math_optimizations &&
Chandler Carruthabf07a72012-01-02 14:19:45 +00001959 A->getOption().getID() != options::OPT_fno_reciprocal_math)
1960 ReciprocalMath = true;
1961 bool SignedZeros = true;
1962 if (Arg *A = Args.getLastArg(options::OPT_ffast_math,
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001963 options::OPT_fno_fast_math,
Chandler Carruthabf07a72012-01-02 14:19:45 +00001964 options::OPT_funsafe_math_optimizations,
1965 options::OPT_fno_unsafe_math_optimizations,
1966 options::OPT_fsigned_zeros,
1967 options::OPT_fno_signed_zeros))
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001968 if (A->getOption().getID() != options::OPT_fno_fast_math &&
1969 A->getOption().getID() != options::OPT_fno_unsafe_math_optimizations &&
Chandler Carruthabf07a72012-01-02 14:19:45 +00001970 A->getOption().getID() != options::OPT_fsigned_zeros)
1971 SignedZeros = false;
1972 bool TrappingMath = true;
1973 if (Arg *A = Args.getLastArg(options::OPT_ffast_math,
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001974 options::OPT_fno_fast_math,
Chandler Carruthabf07a72012-01-02 14:19:45 +00001975 options::OPT_funsafe_math_optimizations,
1976 options::OPT_fno_unsafe_math_optimizations,
1977 options::OPT_ftrapping_math,
1978 options::OPT_fno_trapping_math))
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001979 if (A->getOption().getID() != options::OPT_fno_fast_math &&
1980 A->getOption().getID() != options::OPT_fno_unsafe_math_optimizations &&
Chandler Carruthabf07a72012-01-02 14:19:45 +00001981 A->getOption().getID() != options::OPT_ftrapping_math)
1982 TrappingMath = false;
1983 if (!MathErrno && AssociativeMath && ReciprocalMath && !SignedZeros &&
1984 !TrappingMath)
1985 CmdArgs.push_back("-menable-unsafe-fp-math");
1986
Lang Hamesc9686712012-07-06 00:59:19 +00001987
1988 // Validate and pass through -fp-contract option.
1989 if (Arg *A = Args.getLastArg(options::OPT_ffast_math,
Chad Rosier80ecf5e2012-09-25 22:03:25 +00001990 options::OPT_fno_fast_math,
Lang Hamesc9686712012-07-06 00:59:19 +00001991 options::OPT_ffp_contract)) {
1992 if (A->getOption().getID() == options::OPT_ffp_contract) {
Richard Smith1d489cf2012-11-01 04:30:05 +00001993 StringRef Val = A->getValue();
Lang Hamesc9686712012-07-06 00:59:19 +00001994 if (Val == "fast" || Val == "on" || Val == "off") {
1995 CmdArgs.push_back(Args.MakeArgString("-ffp-contract=" + Val));
1996 } else {
1997 D.Diag(diag::err_drv_unsupported_option_argument)
1998 << A->getOption().getName() << Val;
1999 }
Chad Rosier80ecf5e2012-09-25 22:03:25 +00002000 } else if (A->getOption().getID() == options::OPT_ffast_math) {
Lang Hamesc9686712012-07-06 00:59:19 +00002001 // If fast-math is set then set the fp-contract mode to fast.
2002 CmdArgs.push_back(Args.MakeArgString("-ffp-contract=fast"));
2003 }
2004 }
2005
Bob Wilson455e72e2012-07-19 03:52:53 +00002006 // We separately look for the '-ffast-math' and '-ffinite-math-only' flags,
2007 // and if we find them, tell the frontend to provide the appropriate
2008 // preprocessor macros. This is distinct from enabling any optimizations as
2009 // these options induce language changes which must survive serialization
2010 // and deserialization, etc.
Chad Rosier80ecf5e2012-09-25 22:03:25 +00002011 if (Arg *A = Args.getLastArg(options::OPT_ffast_math, options::OPT_fno_fast_math))
2012 if (A->getOption().matches(options::OPT_ffast_math))
2013 CmdArgs.push_back("-ffast-math");
2014 if (Arg *A = Args.getLastArg(options::OPT_ffinite_math_only, options::OPT_fno_fast_math))
2015 if (A->getOption().matches(options::OPT_ffinite_math_only))
2016 CmdArgs.push_back("-ffinite-math-only");
Chandler Carruthabf07a72012-01-02 14:19:45 +00002017
Daniel Dunbar1b718482010-05-14 22:00:22 +00002018 // Decide whether to use verbose asm. Verbose assembly is the default on
2019 // toolchains which have the integrated assembler on by default.
2020 bool IsVerboseAsmDefault = getToolChain().IsIntegratedAssemblerDefault();
2021 if (Args.hasFlag(options::OPT_fverbose_asm, options::OPT_fno_verbose_asm,
Michael J. Spencer20249a12010-10-21 03:16:25 +00002022 IsVerboseAsmDefault) ||
Daniel Dunbar1b718482010-05-14 22:00:22 +00002023 Args.hasArg(options::OPT_dA))
Daniel Dunbarf219e7c2009-11-29 07:18:39 +00002024 CmdArgs.push_back("-masm-verbose");
Daniel Dunbar1b718482010-05-14 22:00:22 +00002025
Daniel Dunbarf219e7c2009-11-29 07:18:39 +00002026 if (Args.hasArg(options::OPT_fdebug_pass_structure)) {
2027 CmdArgs.push_back("-mdebug-pass");
2028 CmdArgs.push_back("Structure");
2029 }
2030 if (Args.hasArg(options::OPT_fdebug_pass_arguments)) {
2031 CmdArgs.push_back("-mdebug-pass");
2032 CmdArgs.push_back("Arguments");
2033 }
2034
John McCalld0c2ec42010-02-19 02:45:38 +00002035 // Enable -mconstructor-aliases except on darwin, where we have to
2036 // work around a linker bug; see <rdar://problem/7651567>.
Bob Wilson905c45f2011-10-14 05:03:44 +00002037 if (!getToolChain().getTriple().isOSDarwin())
John McCalld0c2ec42010-02-19 02:45:38 +00002038 CmdArgs.push_back("-mconstructor-aliases");
NAKAMURA Takumi125b4cb2011-02-17 08:50:50 +00002039
John McCall32096692011-03-18 02:56:14 +00002040 // Darwin's kernel doesn't support guard variables; just die if we
2041 // try to use them.
Bob Wilson905c45f2011-10-14 05:03:44 +00002042 if (KernelOrKext && getToolChain().getTriple().isOSDarwin())
John McCall32096692011-03-18 02:56:14 +00002043 CmdArgs.push_back("-fforbid-guard-variables");
2044
Douglas Gregor6f755502011-02-01 15:15:22 +00002045 if (Args.hasArg(options::OPT_mms_bitfields)) {
2046 CmdArgs.push_back("-mms-bitfields");
2047 }
John McCalld0c2ec42010-02-19 02:45:38 +00002048
Daniel Dunbar6bea73b2009-09-16 06:17:29 +00002049 // This is a coarse approximation of what llvm-gcc actually does, both
2050 // -fasynchronous-unwind-tables and -fnon-call-exceptions interact in more
2051 // complicated ways.
2052 bool AsynchronousUnwindTables =
2053 Args.hasFlag(options::OPT_fasynchronous_unwind_tables,
2054 options::OPT_fno_asynchronous_unwind_tables,
2055 getToolChain().IsUnwindTablesDefault() &&
Daniel Dunbar0a80ba72010-03-20 04:52:14 +00002056 !KernelOrKext);
Daniel Dunbar6bea73b2009-09-16 06:17:29 +00002057 if (Args.hasFlag(options::OPT_funwind_tables, options::OPT_fno_unwind_tables,
2058 AsynchronousUnwindTables))
Daniel Dunbarf219e7c2009-11-29 07:18:39 +00002059 CmdArgs.push_back("-munwind-tables");
2060
Chandler Carrutha6b25812012-11-21 23:40:23 +00002061 getToolChain().addClangTargetOptions(Args, CmdArgs);
Rafael Espindola8af669f2012-06-19 01:26:10 +00002062
Daniel Dunbarf219e7c2009-11-29 07:18:39 +00002063 if (Arg *A = Args.getLastArg(options::OPT_flimited_precision_EQ)) {
2064 CmdArgs.push_back("-mlimit-float-precision");
Richard Smith1d489cf2012-11-01 04:30:05 +00002065 CmdArgs.push_back(A->getValue());
Daniel Dunbarf219e7c2009-11-29 07:18:39 +00002066 }
Daniel Dunbarbc85be82009-04-29 18:32:25 +00002067
Daniel Dunbar868bd0a2009-05-06 03:16:41 +00002068 // FIXME: Handle -mtune=.
2069 (void) Args.hasArg(options::OPT_mtune_EQ);
Daniel Dunbarbc85be82009-04-29 18:32:25 +00002070
Benjamin Kramer8e9ef0d2009-08-05 14:30:52 +00002071 if (Arg *A = Args.getLastArg(options::OPT_mcmodel_EQ)) {
Daniel Dunbarf219e7c2009-11-29 07:18:39 +00002072 CmdArgs.push_back("-mcode-model");
Richard Smith1d489cf2012-11-01 04:30:05 +00002073 CmdArgs.push_back(A->getValue());
Benjamin Kramer8e9ef0d2009-08-05 14:30:52 +00002074 }
2075
Daniel Dunbar6acda162009-09-09 22:33:08 +00002076 // Add target specific cpu and features flags.
2077 switch(getToolChain().getTriple().getArch()) {
2078 default:
2079 break;
Daniel Dunbar868bd0a2009-05-06 03:16:41 +00002080
Daniel Dunbarb163ef72009-09-10 04:57:17 +00002081 case llvm::Triple::arm:
2082 case llvm::Triple::thumb:
Daniel Dunbarfa41d692011-03-17 17:10:06 +00002083 AddARMTargetArgs(Args, CmdArgs, KernelOrKext);
Daniel Dunbarb163ef72009-09-10 04:57:17 +00002084 break;
2085
Eric Christophered734732010-03-02 02:41:08 +00002086 case llvm::Triple::mips:
2087 case llvm::Triple::mipsel:
Akira Hatanaka7ec02582011-09-21 02:13:07 +00002088 case llvm::Triple::mips64:
2089 case llvm::Triple::mips64el:
Eric Christophered734732010-03-02 02:41:08 +00002090 AddMIPSTargetArgs(Args, CmdArgs);
2091 break;
2092
Hal Finkel02a84272012-06-11 22:35:19 +00002093 case llvm::Triple::ppc:
2094 case llvm::Triple::ppc64:
2095 AddPPCTargetArgs(Args, CmdArgs);
2096 break;
2097
Bruno Cardoso Lopes9284d212010-11-09 17:21:19 +00002098 case llvm::Triple::sparc:
2099 AddSparcTargetArgs(Args, CmdArgs);
2100 break;
2101
Daniel Dunbar6acda162009-09-09 22:33:08 +00002102 case llvm::Triple::x86:
2103 case llvm::Triple::x86_64:
2104 AddX86TargetArgs(Args, CmdArgs);
2105 break;
Tony Linthicum96319392011-12-12 21:14:55 +00002106
2107 case llvm::Triple::hexagon:
2108 AddHexagonTargetArgs(Args, CmdArgs);
2109 break;
Daniel Dunbarbc85be82009-04-29 18:32:25 +00002110 }
2111
Tony Linthicum96319392011-12-12 21:14:55 +00002112
2113
Daniel Dunbarc176bc62010-08-11 23:07:47 +00002114 // Pass the linker version in use.
2115 if (Arg *A = Args.getLastArg(options::OPT_mlinker_version_EQ)) {
2116 CmdArgs.push_back("-target-linker-version");
Richard Smith1d489cf2012-11-01 04:30:05 +00002117 CmdArgs.push_back(A->getValue());
Daniel Dunbarc176bc62010-08-11 23:07:47 +00002118 }
2119
Nick Lewyckyb2d11cc2011-02-02 06:43:03 +00002120 // -mno-omit-leaf-frame-pointer is the default on Darwin.
Daniel Dunbar1ad66482010-07-01 01:31:45 +00002121 if (Args.hasFlag(options::OPT_momit_leaf_frame_pointer,
Nick Lewyckyb2d11cc2011-02-02 06:43:03 +00002122 options::OPT_mno_omit_leaf_frame_pointer,
Bob Wilson905c45f2011-10-14 05:03:44 +00002123 !getToolChain().getTriple().isOSDarwin()))
Daniel Dunbar1ad66482010-07-01 01:31:45 +00002124 CmdArgs.push_back("-momit-leaf-frame-pointer");
2125
Daniel Dunbarb30575c2010-05-12 18:19:58 +00002126 // Explicitly error on some things we know we don't support and can't just
2127 // ignore.
2128 types::ID InputType = Inputs[0].getType();
Daniel Dunbare94db472010-09-24 19:39:37 +00002129 if (!Args.hasArg(options::OPT_fallow_unsupported)) {
2130 Arg *Unsupported;
Daniel Dunbare94db472010-09-24 19:39:37 +00002131 if (types::isCXX(InputType) &&
Bob Wilson905c45f2011-10-14 05:03:44 +00002132 getToolChain().getTriple().isOSDarwin() &&
Daniel Dunbare94db472010-09-24 19:39:37 +00002133 getToolChain().getTriple().getArch() == llvm::Triple::x86) {
Bob Wilsona544aee2011-08-13 23:48:55 +00002134 if ((Unsupported = Args.getLastArg(options::OPT_fapple_kext)) ||
2135 (Unsupported = Args.getLastArg(options::OPT_mkernel)))
Chris Lattner5f9e2722011-07-23 10:55:15 +00002136 D.Diag(diag::err_drv_clang_unsupported_opt_cxx_darwin_i386)
Daniel Dunbare94db472010-09-24 19:39:37 +00002137 << Unsupported->getOption().getName();
2138 }
Daniel Dunbarb30575c2010-05-12 18:19:58 +00002139 }
2140
Daniel Dunbar1d460332009-03-18 10:01:51 +00002141 Args.AddAllArgs(CmdArgs, options::OPT_v);
Daniel Dunbarf7c16d92010-08-24 22:44:13 +00002142 Args.AddLastArg(CmdArgs, options::OPT_H);
Chad Rosier2b819102011-08-02 17:58:04 +00002143 if (D.CCPrintHeaders && !D.CCGenDiagnostics) {
Daniel Dunbar322c29f2011-02-02 21:11:35 +00002144 CmdArgs.push_back("-header-include-file");
2145 CmdArgs.push_back(D.CCPrintHeadersFilename ?
2146 D.CCPrintHeadersFilename : "-");
2147 }
Daniel Dunbar1d460332009-03-18 10:01:51 +00002148 Args.AddLastArg(CmdArgs, options::OPT_P);
Mike Stump1eb44332009-09-09 15:08:12 +00002149 Args.AddLastArg(CmdArgs, options::OPT_print_ivar_layout);
Daniel Dunbar1d460332009-03-18 10:01:51 +00002150
Chad Rosier2b819102011-08-02 17:58:04 +00002151 if (D.CCLogDiagnostics && !D.CCGenDiagnostics) {
Daniel Dunbarc8a22b02011-04-07 18:01:20 +00002152 CmdArgs.push_back("-diagnostic-log-file");
2153 CmdArgs.push_back(D.CCLogDiagnosticsFilename ?
2154 D.CCLogDiagnosticsFilename : "-");
2155 }
2156
Alexey Samsonova9cd83b2012-05-29 08:10:34 +00002157 // Use the last option from "-g" group. "-gline-tables-only" is
2158 // preserved, all other debug options are substituted with "-g".
Rafael Espindola18f36d92010-03-07 04:46:18 +00002159 Args.ClaimAllArgs(options::OPT_g_Group);
Alexey Samsonova9cd83b2012-05-29 08:10:34 +00002160 if (Arg *A = Args.getLastArg(options::OPT_g_Group)) {
2161 if (A->getOption().matches(options::OPT_gline_tables_only)) {
2162 CmdArgs.push_back("-gline-tables-only");
Alexey Samsonov7f326072012-06-21 08:22:39 +00002163 } else if (!A->getOption().matches(options::OPT_g0) &&
2164 !A->getOption().matches(options::OPT_ggdb0)) {
Chad Rosiercf6ba2e2011-11-07 19:52:29 +00002165 CmdArgs.push_back("-g");
Chad Rosier2875bda2011-11-04 19:28:44 +00002166 }
Alexey Samsonova9cd83b2012-05-29 08:10:34 +00002167 }
Daniel Dunbar1d460332009-03-18 10:01:51 +00002168
Alexey Samsonov7f326072012-06-21 08:22:39 +00002169 // We ignore flags -gstrict-dwarf and -grecord-gcc-switches for now.
2170 Args.ClaimAllArgs(options::OPT_g_flags_Group);
Eric Christopherda3301e2012-10-18 21:52:18 +00002171 if (Args.hasArg(options::OPT_gcolumn_info))
2172 CmdArgs.push_back("-dwarf-column-info");
Alexey Samsonov7f326072012-06-21 08:22:39 +00002173
Rafael Espindola9cf933a2010-05-06 21:06:04 +00002174 Args.AddAllArgs(CmdArgs, options::OPT_ffunction_sections);
2175 Args.AddAllArgs(CmdArgs, options::OPT_fdata_sections);
2176
Chris Lattner7255a2d2010-06-22 00:03:40 +00002177 Args.AddAllArgs(CmdArgs, options::OPT_finstrument_functions);
2178
Nick Lewyckye8ba8d72011-04-21 23:44:07 +00002179 if (Args.hasArg(options::OPT_ftest_coverage) ||
2180 Args.hasArg(options::OPT_coverage))
2181 CmdArgs.push_back("-femit-coverage-notes");
2182 if (Args.hasArg(options::OPT_fprofile_arcs) ||
2183 Args.hasArg(options::OPT_coverage))
2184 CmdArgs.push_back("-femit-coverage-data");
2185
Nick Lewycky5ea4f442011-05-04 20:46:58 +00002186 if (C.getArgs().hasArg(options::OPT_c) ||
2187 C.getArgs().hasArg(options::OPT_S)) {
2188 if (Output.isFilename()) {
Nick Lewycky3dc05412011-05-05 00:08:20 +00002189 CmdArgs.push_back("-coverage-file");
Bill Wendlingecbbea42012-08-30 00:43:41 +00002190 SmallString<128> absFilename(Output.getFilename());
2191 llvm::sys::fs::make_absolute(absFilename);
2192 CmdArgs.push_back(Args.MakeArgString(absFilename));
Nick Lewycky5ea4f442011-05-04 20:46:58 +00002193 }
2194 }
2195
Daniel Dunbara268fc02011-10-11 18:20:10 +00002196 // Pass options for controlling the default header search paths.
2197 if (Args.hasArg(options::OPT_nostdinc)) {
2198 CmdArgs.push_back("-nostdsysteminc");
2199 CmdArgs.push_back("-nobuiltininc");
2200 } else {
Daniel Dunbar92d6d402011-10-11 18:20:16 +00002201 if (Args.hasArg(options::OPT_nostdlibinc))
2202 CmdArgs.push_back("-nostdsysteminc");
Daniel Dunbara268fc02011-10-11 18:20:10 +00002203 Args.AddLastArg(CmdArgs, options::OPT_nostdincxx);
2204 Args.AddLastArg(CmdArgs, options::OPT_nobuiltininc);
2205 }
Daniel Dunbar1d460332009-03-18 10:01:51 +00002206
Daniel Dunbar5f122322009-12-15 01:02:52 +00002207 // Pass the path to compiler resource files.
Daniel Dunbar5f122322009-12-15 01:02:52 +00002208 CmdArgs.push_back("-resource-dir");
Daniel Dunbar225c4172010-01-20 02:35:16 +00002209 CmdArgs.push_back(D.ResourceDir.c_str());
Daniel Dunbar2ac9fc22009-04-07 21:42:00 +00002210
Argyrios Kyrtzidis389db162010-11-03 22:45:23 +00002211 Args.AddLastArg(CmdArgs, options::OPT_working_directory);
2212
Ted Kremenek30660a82012-03-06 20:06:33 +00002213 bool ARCMTEnabled = false;
John McCall8f0e8d22011-06-15 23:25:17 +00002214 if (!Args.hasArg(options::OPT_fno_objc_arc)) {
Argyrios Kyrtzidis72ac1202011-07-07 04:00:39 +00002215 if (const Arg *A = Args.getLastArg(options::OPT_ccc_arcmt_check,
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +00002216 options::OPT_ccc_arcmt_modify,
2217 options::OPT_ccc_arcmt_migrate)) {
Ted Kremenek30660a82012-03-06 20:06:33 +00002218 ARCMTEnabled = true;
John McCall8f0e8d22011-06-15 23:25:17 +00002219 switch (A->getOption().getID()) {
2220 default:
2221 llvm_unreachable("missed a case");
Argyrios Kyrtzidis72ac1202011-07-07 04:00:39 +00002222 case options::OPT_ccc_arcmt_check:
John McCall8f0e8d22011-06-15 23:25:17 +00002223 CmdArgs.push_back("-arcmt-check");
2224 break;
Argyrios Kyrtzidis72ac1202011-07-07 04:00:39 +00002225 case options::OPT_ccc_arcmt_modify:
John McCall8f0e8d22011-06-15 23:25:17 +00002226 CmdArgs.push_back("-arcmt-modify");
2227 break;
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +00002228 case options::OPT_ccc_arcmt_migrate:
2229 CmdArgs.push_back("-arcmt-migrate");
Ted Kremenek30660a82012-03-06 20:06:33 +00002230 CmdArgs.push_back("-mt-migrate-directory");
Richard Smith1d489cf2012-11-01 04:30:05 +00002231 CmdArgs.push_back(A->getValue());
Argyrios Kyrtzidis7ee20492011-07-19 17:20:03 +00002232
2233 Args.AddLastArg(CmdArgs, options::OPT_arcmt_migrate_report_output);
2234 Args.AddLastArg(CmdArgs, options::OPT_arcmt_migrate_emit_arc_errors);
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +00002235 break;
John McCall8f0e8d22011-06-15 23:25:17 +00002236 }
2237 }
2238 }
Eric Christopher88b7cf02011-08-19 00:30:14 +00002239
Ted Kremenek30660a82012-03-06 20:06:33 +00002240 if (const Arg *A = Args.getLastArg(options::OPT_ccc_objcmt_migrate)) {
2241 if (ARCMTEnabled) {
2242 D.Diag(diag::err_drv_argument_not_allowed_with)
2243 << A->getAsString(Args) << "-ccc-arcmt-migrate";
2244 }
2245 CmdArgs.push_back("-mt-migrate-directory");
Richard Smith1d489cf2012-11-01 04:30:05 +00002246 CmdArgs.push_back(A->getValue());
Ted Kremenek30660a82012-03-06 20:06:33 +00002247
2248 if (!Args.hasArg(options::OPT_objcmt_migrate_literals,
2249 options::OPT_objcmt_migrate_subscripting)) {
2250 // None specified, means enable them all.
2251 CmdArgs.push_back("-objcmt-migrate-literals");
2252 CmdArgs.push_back("-objcmt-migrate-subscripting");
2253 } else {
2254 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_literals);
2255 Args.AddLastArg(CmdArgs, options::OPT_objcmt_migrate_subscripting);
2256 }
2257 }
2258
Daniel Dunbarc21c4852009-04-08 23:54:23 +00002259 // Add preprocessing options like -I, -D, etc. if we are using the
2260 // preprocessor.
2261 //
2262 // FIXME: Support -fpreprocessed
Daniel Dunbarc21c4852009-04-08 23:54:23 +00002263 if (types::getPreprocessedType(InputType) != types::TY_INVALID)
Peter Collingbourne54db68b2011-11-06 00:40:05 +00002264 AddPreprocessingOptions(C, D, Args, CmdArgs, Output, Inputs);
Daniel Dunbar1d460332009-03-18 10:01:51 +00002265
Rafael Espindola19d9d2e2011-07-21 23:40:37 +00002266 // Don't warn about "clang -c -DPIC -fPIC test.i" because libtool.m4 assumes
2267 // that "The compiler can only warn and ignore the option if not recognized".
2268 // When building with ccache, it will pass -D options to clang even on
2269 // preprocessed inputs and configure concludes that -fPIC is not supported.
2270 Args.ClaimAllArgs(options::OPT_D);
2271
Daniel Dunbar20f0eac2009-09-17 06:53:36 +00002272 // Manually translate -O to -O2 and -O4 to -O3; let clang reject
Daniel Dunbar337a6272009-03-24 20:17:30 +00002273 // others.
2274 if (Arg *A = Args.getLastArg(options::OPT_O_Group)) {
Daniel Dunbarb827a052009-11-19 03:26:40 +00002275 if (A->getOption().matches(options::OPT_O4))
Daniel Dunbar337a6272009-03-24 20:17:30 +00002276 CmdArgs.push_back("-O3");
Daniel Dunbar473916c2010-05-27 06:51:08 +00002277 else if (A->getOption().matches(options::OPT_O) &&
Richard Smith1d489cf2012-11-01 04:30:05 +00002278 A->getValue()[0] == '\0')
Daniel Dunbar20f0eac2009-09-17 06:53:36 +00002279 CmdArgs.push_back("-O2");
Daniel Dunbar1d460332009-03-18 10:01:51 +00002280 else
Daniel Dunbar5697aa02009-03-18 23:39:35 +00002281 A->render(Args, CmdArgs);
Daniel Dunbar1d460332009-03-18 10:01:51 +00002282 }
2283
Daniel Dunbar6e8371e2009-10-29 02:24:45 +00002284 Args.AddAllArgs(CmdArgs, options::OPT_W_Group);
Ted Kremeneke8cf7d12012-07-07 05:53:30 +00002285 if (Args.hasFlag(options::OPT_pedantic, options::OPT_no_pedantic, false))
2286 CmdArgs.push_back("-pedantic");
Daniel Dunbar6e8371e2009-10-29 02:24:45 +00002287 Args.AddLastArg(CmdArgs, options::OPT_pedantic_errors);
Daniel Dunbar1d460332009-03-18 10:01:51 +00002288 Args.AddLastArg(CmdArgs, options::OPT_w);
Daniel Dunbard573d262009-04-07 22:13:21 +00002289
2290 // Handle -{std, ansi, trigraphs} -- take the last of -{std, ansi}
2291 // (-ansi is equivalent to -std=c89).
2292 //
2293 // If a std is supplied, only add -trigraphs if it follows the
2294 // option.
2295 if (Arg *Std = Args.getLastArg(options::OPT_std_EQ, options::OPT_ansi)) {
2296 if (Std->getOption().matches(options::OPT_ansi))
Nuno Lopes528365d2009-10-16 14:28:06 +00002297 if (types::isCXX(InputType))
Daniel Dunbar294691e2009-11-04 06:24:38 +00002298 CmdArgs.push_back("-std=c++98");
Nuno Lopes528365d2009-10-16 14:28:06 +00002299 else
Daniel Dunbar294691e2009-11-04 06:24:38 +00002300 CmdArgs.push_back("-std=c89");
Daniel Dunbard573d262009-04-07 22:13:21 +00002301 else
2302 Std->render(Args, CmdArgs);
2303
Daniel Dunbar0e100312010-06-14 21:23:08 +00002304 if (Arg *A = Args.getLastArg(options::OPT_std_EQ, options::OPT_ansi,
2305 options::OPT_trigraphs))
2306 if (A != Std)
Daniel Dunbard573d262009-04-07 22:13:21 +00002307 A->render(Args, CmdArgs);
Daniel Dunbara3ff2022009-04-26 01:10:38 +00002308 } else {
2309 // Honor -std-default.
Daniel Dunbar4a5290e2010-01-29 21:03:02 +00002310 //
2311 // FIXME: Clang doesn't correctly handle -std= when the input language
2312 // doesn't match. For the time being just ignore this for C++ inputs;
2313 // eventually we want to do all the standard defaulting here instead of
2314 // splitting it between the driver and clang -cc1.
2315 if (!types::isCXX(InputType))
Nico Weber50f88b92012-08-30 02:08:31 +00002316 Args.AddAllArgsTranslated(CmdArgs, options::OPT_std_default_EQ,
2317 "-std=", /*Joined=*/true);
2318 else if (getToolChain().getTriple().getOS() == llvm::Triple::Win32)
2319 CmdArgs.push_back("-std=c++11");
2320
Daniel Dunbard573d262009-04-07 22:13:21 +00002321 Args.AddLastArg(CmdArgs, options::OPT_trigraphs);
Daniel Dunbara3ff2022009-04-26 01:10:38 +00002322 }
Daniel Dunbarc21c4852009-04-08 23:54:23 +00002323
Chandler Carruth50465d12011-04-23 06:30:43 +00002324 // Map the bizarre '-Wwrite-strings' flag to a more sensible
2325 // '-fconst-strings'; this better indicates its actual behavior.
2326 if (Args.hasFlag(options::OPT_Wwrite_strings, options::OPT_Wno_write_strings,
2327 false)) {
2328 // For perfect compatibility with GCC, we do this even in the presence of
2329 // '-w'. This flag names something other than a warning for GCC.
2330 CmdArgs.push_back("-fconst-strings");
2331 }
2332
Chandler Carruth1cfe3c32011-04-23 09:27:53 +00002333 // GCC provides a macro definition '__DEPRECATED' when -Wdeprecated is active
Chandler Carruthf8c247d2011-04-23 19:48:40 +00002334 // during C++ compilation, which it is by default. GCC keeps this define even
2335 // in the presence of '-w', match this behavior bug-for-bug.
2336 if (types::isCXX(InputType) &&
2337 Args.hasFlag(options::OPT_Wdeprecated, options::OPT_Wno_deprecated,
2338 true)) {
2339 CmdArgs.push_back("-fdeprecated-macro");
Chandler Carruth1cfe3c32011-04-23 09:27:53 +00002340 }
2341
Chandler Carruthc304ba32010-05-22 02:21:53 +00002342 // Translate GCC's misnamer '-fasm' arguments to '-fgnu-keywords'.
2343 if (Arg *Asm = Args.getLastArg(options::OPT_fasm, options::OPT_fno_asm)) {
2344 if (Asm->getOption().matches(options::OPT_fasm))
2345 CmdArgs.push_back("-fgnu-keywords");
2346 else
2347 CmdArgs.push_back("-fno-gnu-keywords");
2348 }
2349
Rafael Espindola61b1efe2011-05-02 17:43:32 +00002350 if (ShouldDisableCFI(Args, getToolChain()))
2351 CmdArgs.push_back("-fno-dwarf2-cfi-asm");
Rafael Espindolaf24a1512011-04-30 18:35:43 +00002352
Nick Lewyckyea523d72011-10-17 23:05:52 +00002353 if (ShouldDisableDwarfDirectory(Args, getToolChain()))
2354 CmdArgs.push_back("-fno-dwarf-directory-asm");
2355
Nick Lewycky7c4fd912011-10-21 02:32:14 +00002356 if (const char *pwd = ::getenv("PWD")) {
2357 // GCC also verifies that stat(pwd) and stat(".") have the same inode
2358 // number. Not doing those because stats are slow, but we could.
NAKAMURA Takumi813a4072011-10-22 10:25:25 +00002359 if (llvm::sys::path::is_absolute(pwd)) {
Nick Lewycky7c4fd912011-10-21 02:32:14 +00002360 std::string CompDir = pwd;
2361 CmdArgs.push_back("-fdebug-compilation-dir");
2362 CmdArgs.push_back(Args.MakeArgString(CompDir));
2363 }
2364 }
2365
Richard Smithc18c4232011-11-21 19:36:32 +00002366 if (Arg *A = Args.getLastArg(options::OPT_ftemplate_depth_,
2367 options::OPT_ftemplate_depth_EQ)) {
Daniel Dunbar1d460332009-03-18 10:01:51 +00002368 CmdArgs.push_back("-ftemplate-depth");
Richard Smith1d489cf2012-11-01 04:30:05 +00002369 CmdArgs.push_back(A->getValue());
Daniel Dunbar1d460332009-03-18 10:01:51 +00002370 }
2371
Richard Smithc18c4232011-11-21 19:36:32 +00002372 if (Arg *A = Args.getLastArg(options::OPT_fconstexpr_depth_EQ)) {
2373 CmdArgs.push_back("-fconstexpr-depth");
Richard Smith1d489cf2012-11-01 04:30:05 +00002374 CmdArgs.push_back(A->getValue());
Richard Smithc18c4232011-11-21 19:36:32 +00002375 }
2376
Argyrios Kyrtzidis1380a142010-11-18 00:20:36 +00002377 if (Arg *A = Args.getLastArg(options::OPT_Wlarge_by_value_copy_EQ,
2378 options::OPT_Wlarge_by_value_copy_def)) {
Jean-Daniel Dupas2e4fd6d2012-05-04 08:08:37 +00002379 if (A->getNumValues()) {
Richard Smith1d489cf2012-11-01 04:30:05 +00002380 StringRef bytes = A->getValue();
Jean-Daniel Dupas2e4fd6d2012-05-04 08:08:37 +00002381 CmdArgs.push_back(Args.MakeArgString("-Wlarge-by-value-copy=" + bytes));
2382 } else
2383 CmdArgs.push_back("-Wlarge-by-value-copy=64"); // default value
Argyrios Kyrtzidis3532fdd2010-11-17 23:11:54 +00002384 }
2385
Nuno Lopesb3198a82012-05-08 22:10:46 +00002386
Michael J. Spencerc6357102012-10-22 22:13:48 +00002387 if (Args.hasArg(options::OPT_relocatable_pch))
Daniel Dunbar66861e02009-11-20 22:21:36 +00002388 CmdArgs.push_back("-relocatable-pch");
Mike Stump1eb44332009-09-09 15:08:12 +00002389
Daniel Dunbar294691e2009-11-04 06:24:38 +00002390 if (Arg *A = Args.getLastArg(options::OPT_fconstant_string_class_EQ)) {
2391 CmdArgs.push_back("-fconstant-string-class");
Richard Smith1d489cf2012-11-01 04:30:05 +00002392 CmdArgs.push_back(A->getValue());
Daniel Dunbar294691e2009-11-04 06:24:38 +00002393 }
David Chisnall8a5a9aa2009-08-31 16:41:57 +00002394
Chris Lattner124fca52010-01-09 21:54:33 +00002395 if (Arg *A = Args.getLastArg(options::OPT_ftabstop_EQ)) {
2396 CmdArgs.push_back("-ftabstop");
Richard Smith1d489cf2012-11-01 04:30:05 +00002397 CmdArgs.push_back(A->getValue());
Chris Lattner124fca52010-01-09 21:54:33 +00002398 }
2399
Chris Lattner0f0c9632010-04-07 20:49:23 +00002400 CmdArgs.push_back("-ferror-limit");
2401 if (Arg *A = Args.getLastArg(options::OPT_ferror_limit_EQ))
Richard Smith1d489cf2012-11-01 04:30:05 +00002402 CmdArgs.push_back(A->getValue());
Chris Lattner0f0c9632010-04-07 20:49:23 +00002403 else
2404 CmdArgs.push_back("19");
Douglas Gregor575cf372010-04-20 07:18:24 +00002405
Chandler Carruthc40f73c2010-05-06 04:55:18 +00002406 if (Arg *A = Args.getLastArg(options::OPT_fmacro_backtrace_limit_EQ)) {
2407 CmdArgs.push_back("-fmacro-backtrace-limit");
Richard Smith1d489cf2012-11-01 04:30:05 +00002408 CmdArgs.push_back(A->getValue());
Chandler Carruthc40f73c2010-05-06 04:55:18 +00002409 }
2410
2411 if (Arg *A = Args.getLastArg(options::OPT_ftemplate_backtrace_limit_EQ)) {
2412 CmdArgs.push_back("-ftemplate-backtrace-limit");
Richard Smith1d489cf2012-11-01 04:30:05 +00002413 CmdArgs.push_back(A->getValue());
Chandler Carruthc40f73c2010-05-06 04:55:18 +00002414 }
2415
Richard Smith08d6e032011-12-16 19:06:07 +00002416 if (Arg *A = Args.getLastArg(options::OPT_fconstexpr_backtrace_limit_EQ)) {
2417 CmdArgs.push_back("-fconstexpr-backtrace-limit");
Richard Smith1d489cf2012-11-01 04:30:05 +00002418 CmdArgs.push_back(A->getValue());
Richard Smith08d6e032011-12-16 19:06:07 +00002419 }
2420
Daniel Dunbar55efe142009-11-04 06:24:47 +00002421 // Pass -fmessage-length=.
Daniel Dunbara28690e2009-11-30 08:40:54 +00002422 CmdArgs.push_back("-fmessage-length");
Daniel Dunbar55efe142009-11-04 06:24:47 +00002423 if (Arg *A = Args.getLastArg(options::OPT_fmessage_length_EQ)) {
Richard Smith1d489cf2012-11-01 04:30:05 +00002424 CmdArgs.push_back(A->getValue());
Daniel Dunbar55efe142009-11-04 06:24:47 +00002425 } else {
2426 // If -fmessage-length=N was not specified, determine whether this is a
2427 // terminal and, if so, implicitly define -fmessage-length appropriately.
2428 unsigned N = llvm::sys::Process::StandardErrColumns();
Chris Lattner5f9e2722011-07-23 10:55:15 +00002429 CmdArgs.push_back(Args.MakeArgString(Twine(N)));
Daniel Dunbar55efe142009-11-04 06:24:47 +00002430 }
2431
Daniel Dunbarba8d8612009-12-03 18:42:11 +00002432 if (const Arg *A = Args.getLastArg(options::OPT_fvisibility_EQ)) {
2433 CmdArgs.push_back("-fvisibility");
Richard Smith1d489cf2012-11-01 04:30:05 +00002434 CmdArgs.push_back(A->getValue());
Daniel Dunbarba8d8612009-12-03 18:42:11 +00002435 }
2436
Douglas Gregor7cf84d62010-06-15 17:05:35 +00002437 Args.AddLastArg(CmdArgs, options::OPT_fvisibility_inlines_hidden);
Michael J. Spencer20249a12010-10-21 03:16:25 +00002438
Hans Wennborgde981f32012-06-28 08:01:44 +00002439 Args.AddLastArg(CmdArgs, options::OPT_ftlsmodel_EQ);
2440
Daniel Dunbar0a80ba72010-03-20 04:52:14 +00002441 // -fhosted is default.
Chad Rosierafc4baa2012-03-26 22:04:46 +00002442 if (Args.hasFlag(options::OPT_ffreestanding, options::OPT_fhosted, false) ||
2443 KernelOrKext)
Daniel Dunbar0a80ba72010-03-20 04:52:14 +00002444 CmdArgs.push_back("-ffreestanding");
2445
Daniel Dunbarba8d8612009-12-03 18:42:11 +00002446 // Forward -f (flag) options which we can pass directly.
Daniel Dunbar3aaf0822009-04-07 21:51:40 +00002447 Args.AddLastArg(CmdArgs, options::OPT_femit_all_decls);
Daniel Dunbar3aaf0822009-04-07 21:51:40 +00002448 Args.AddLastArg(CmdArgs, options::OPT_fheinous_gnu_extensions);
Devang Patelc69e1cf2010-09-30 19:05:55 +00002449 Args.AddLastArg(CmdArgs, options::OPT_flimit_debug_info);
Devang Patel033be8b2011-11-04 20:05:58 +00002450 Args.AddLastArg(CmdArgs, options::OPT_fno_limit_debug_info);
Eric Christophere88c4512011-10-25 07:13:06 +00002451 Args.AddLastArg(CmdArgs, options::OPT_fno_operator_names);
Anton Yartsev17ba2672011-12-23 20:23:19 +00002452 Args.AddLastArg(CmdArgs, options::OPT_faltivec);
Richard Trieu246b6aa2012-06-26 18:18:47 +00002453 Args.AddLastArg(CmdArgs, options::OPT_fdiagnostics_show_template_tree);
2454 Args.AddLastArg(CmdArgs, options::OPT_fno_elide_type);
Chad Rosier4574c3d2012-03-13 23:45:51 +00002455
Alexey Samsonovbb1071c2012-11-06 15:09:03 +00002456 SanitizerArgs Sanitize(D, Args);
Richard Smithc4dabad2012-11-05 22:04:41 +00002457 Sanitize.addArgs(Args, CmdArgs);
2458
Chad Rosier4574c3d2012-03-13 23:45:51 +00002459 // Report and error for -faltivec on anything other then PowerPC.
2460 if (const Arg *A = Args.getLastArg(options::OPT_faltivec))
2461 if (!(getToolChain().getTriple().getArch() == llvm::Triple::ppc ||
2462 getToolChain().getTriple().getArch() == llvm::Triple::ppc64))
2463 D.Diag(diag::err_drv_argument_only_allowed_with)
2464 << A->getAsString(Args) << "ppc/ppc64";
2465
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +00002466 if (getToolChain().SupportsProfiling())
2467 Args.AddLastArg(CmdArgs, options::OPT_pg);
Daniel Dunbar8c6fa842010-03-16 16:57:46 +00002468
2469 // -flax-vector-conversions is default.
2470 if (!Args.hasFlag(options::OPT_flax_vector_conversions,
2471 options::OPT_fno_lax_vector_conversions))
2472 CmdArgs.push_back("-fno-lax-vector-conversions");
2473
Fariborz Jahanianb466d012011-01-07 01:05:02 +00002474 if (Args.getLastArg(options::OPT_fapple_kext))
2475 CmdArgs.push_back("-fapple-kext");
2476
David Blaikie940152f2012-06-14 18:55:27 +00002477 if (Args.hasFlag(options::OPT_frewrite_includes,
2478 options::OPT_fno_rewrite_includes, false))
2479 CmdArgs.push_back("-frewrite-includes");
2480
Fariborz Jahanian34e65772009-05-22 20:17:16 +00002481 Args.AddLastArg(CmdArgs, options::OPT_fobjc_sender_dependent_dispatch);
Chris Lattner182e0922009-04-21 05:34:31 +00002482 Args.AddLastArg(CmdArgs, options::OPT_fdiagnostics_print_source_range_info);
Douglas Gregor4786c152010-08-19 20:24:43 +00002483 Args.AddLastArg(CmdArgs, options::OPT_fdiagnostics_parseable_fixits);
Daniel Dunbar3aaf0822009-04-07 21:51:40 +00002484 Args.AddLastArg(CmdArgs, options::OPT_ftime_report);
2485 Args.AddLastArg(CmdArgs, options::OPT_ftrapv);
David Chisnall7f18e672010-09-17 18:29:54 +00002486
2487 if (Arg *A = Args.getLastArg(options::OPT_ftrapv_handler_EQ)) {
2488 CmdArgs.push_back("-ftrapv-handler");
Richard Smith1d489cf2012-11-01 04:30:05 +00002489 CmdArgs.push_back(A->getValue());
David Chisnall7f18e672010-09-17 18:29:54 +00002490 }
2491
Bob Wilson71fd6cc2012-02-03 06:27:22 +00002492 Args.AddLastArg(CmdArgs, options::OPT_ftrap_function_EQ);
Evan Cheng49af1f32011-04-08 21:37:45 +00002493
Chandler Carruth5adb5a82011-03-27 00:04:55 +00002494 // -fno-strict-overflow implies -fwrapv if it isn't disabled, but
2495 // -fstrict-overflow won't turn off an explicitly enabled -fwrapv.
2496 if (Arg *A = Args.getLastArg(options::OPT_fwrapv,
2497 options::OPT_fno_wrapv)) {
2498 if (A->getOption().matches(options::OPT_fwrapv))
2499 CmdArgs.push_back("-fwrapv");
2500 } else if (Arg *A = Args.getLastArg(options::OPT_fstrict_overflow,
2501 options::OPT_fno_strict_overflow)) {
2502 if (A->getOption().matches(options::OPT_fno_strict_overflow))
2503 CmdArgs.push_back("-fwrapv");
2504 }
Daniel Dunbar3aaf0822009-04-07 21:51:40 +00002505 Args.AddLastArg(CmdArgs, options::OPT_fwritable_strings);
Eric Christopherf84d4092010-08-07 23:08:14 +00002506 Args.AddLastArg(CmdArgs, options::OPT_funroll_loops);
Daniel Dunbar1d460332009-03-18 10:01:51 +00002507
Daniel Dunbar5345c392009-09-03 04:54:28 +00002508 Args.AddLastArg(CmdArgs, options::OPT_pthread);
2509
Mahesha Sf3b52312012-10-27 07:47:56 +00002510
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +00002511 // -stack-protector=0 is default.
2512 unsigned StackProtectorLevel = 0;
Bill Wendling45483f72009-06-28 07:36:13 +00002513 if (Arg *A = Args.getLastArg(options::OPT_fno_stack_protector,
2514 options::OPT_fstack_protector_all,
2515 options::OPT_fstack_protector)) {
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +00002516 if (A->getOption().matches(options::OPT_fstack_protector))
2517 StackProtectorLevel = 1;
2518 else if (A->getOption().matches(options::OPT_fstack_protector_all))
2519 StackProtectorLevel = 2;
Nico Weber2fef1112011-08-23 07:38:27 +00002520 } else {
2521 StackProtectorLevel =
2522 getToolChain().GetDefaultStackProtectorLevel(KernelOrKext);
2523 }
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +00002524 if (StackProtectorLevel) {
2525 CmdArgs.push_back("-stack-protector");
Chris Lattner5f9e2722011-07-23 10:55:15 +00002526 CmdArgs.push_back(Args.MakeArgString(Twine(StackProtectorLevel)));
Joerg Sonnenberger53b43a72012-09-12 13:51:14 +00002527 }
Chad Rosiera7afeb02012-08-21 16:16:06 +00002528
Joerg Sonnenberger53b43a72012-09-12 13:51:14 +00002529 // --param ssp-buffer-size=
2530 for (arg_iterator it = Args.filtered_begin(options::OPT__param),
2531 ie = Args.filtered_end(); it != ie; ++it) {
Richard Smith1d489cf2012-11-01 04:30:05 +00002532 StringRef Str((*it)->getValue());
Joerg Sonnenberger53b43a72012-09-12 13:51:14 +00002533 if (Str.startswith("ssp-buffer-size=")) {
2534 if (StackProtectorLevel) {
Chad Rosiera7afeb02012-08-21 16:16:06 +00002535 CmdArgs.push_back("-stack-protector-buffer-size");
2536 // FIXME: Verify the argument is a valid integer.
2537 CmdArgs.push_back(Args.MakeArgString(Str.drop_front(16)));
Chad Rosiera7afeb02012-08-21 16:16:06 +00002538 }
Joerg Sonnenberger53b43a72012-09-12 13:51:14 +00002539 (*it)->claim();
Chad Rosiera7afeb02012-08-21 16:16:06 +00002540 }
Bill Wendling45483f72009-06-28 07:36:13 +00002541 }
2542
Nick Lewycky4e785c92011-12-06 03:33:03 +00002543 // Translate -mstackrealign
2544 if (Args.hasFlag(options::OPT_mstackrealign, options::OPT_mno_stackrealign,
2545 false)) {
2546 CmdArgs.push_back("-backend-option");
2547 CmdArgs.push_back("-force-align-stack");
2548 }
2549 if (!Args.hasFlag(options::OPT_mno_stackrealign, options::OPT_mstackrealign,
2550 false)) {
2551 CmdArgs.push_back(Args.MakeArgString("-mstackrealign"));
2552 }
2553
Joerg Sonnenbergere9d11db2011-12-05 23:05:23 +00002554 if (Args.hasArg(options::OPT_mstack_alignment)) {
2555 StringRef alignment = Args.getLastArgValue(options::OPT_mstack_alignment);
2556 CmdArgs.push_back(Args.MakeArgString("-mstack-alignment=" + alignment));
Eric Christopher1a584022011-05-02 21:18:22 +00002557 }
Chad Rosier586a0612012-11-29 00:42:06 +00002558 // -mkernel implies -mstrict-align; don't add the redundant option.
2559 if (Args.hasArg(options::OPT_mstrict_align) && !KernelOrKext) {
Chad Rosier485577d2012-11-09 18:27:01 +00002560 CmdArgs.push_back("-backend-option");
2561 CmdArgs.push_back("-arm-strict-align");
Chad Rosier7e293272012-11-09 17:29:19 +00002562 }
Eric Christopher88b7cf02011-08-19 00:30:14 +00002563
Daniel Dunbar48d1ef72009-04-07 21:16:11 +00002564 // Forward -f options with positive and negative forms; we translate
2565 // these by hand.
2566
Fariborz Jahanianb466d012011-01-07 01:05:02 +00002567 if (Args.hasArg(options::OPT_mkernel)) {
Daniel Dunbar2843c192011-02-04 17:24:47 +00002568 if (!Args.hasArg(options::OPT_fapple_kext) && types::isCXX(InputType))
Fariborz Jahanianb466d012011-01-07 01:05:02 +00002569 CmdArgs.push_back("-fapple-kext");
2570 if (!Args.hasArg(options::OPT_fbuiltin))
2571 CmdArgs.push_back("-fno-builtin");
Chad Rosier3d265502012-03-26 21:29:17 +00002572 Args.ClaimAllArgs(options::OPT_fno_builtin);
Fariborz Jahanianb466d012011-01-07 01:05:02 +00002573 }
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +00002574 // -fbuiltin is default.
Fariborz Jahanianb466d012011-01-07 01:05:02 +00002575 else if (!Args.hasFlag(options::OPT_fbuiltin, options::OPT_fno_builtin))
Daniel Dunbar53e84842009-11-19 04:55:23 +00002576 CmdArgs.push_back("-fno-builtin");
Daniel Dunbar48d1ef72009-04-07 21:16:11 +00002577
Nuno Lopesfc284482009-12-16 16:59:22 +00002578 if (!Args.hasFlag(options::OPT_fassume_sane_operator_new,
2579 options::OPT_fno_assume_sane_operator_new))
2580 CmdArgs.push_back("-fno-assume-sane-operator-new");
2581
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +00002582 // -fblocks=0 is default.
2583 if (Args.hasFlag(options::OPT_fblocks, options::OPT_fno_blocks,
David Chisnalle6533ff2011-02-28 17:11:43 +00002584 getToolChain().IsBlocksDefault()) ||
2585 (Args.hasArg(options::OPT_fgnu_runtime) &&
2586 Args.hasArg(options::OPT_fobjc_nonfragile_abi) &&
2587 !Args.hasArg(options::OPT_fno_blocks))) {
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +00002588 CmdArgs.push_back("-fblocks");
John McCall13db5cf2011-09-09 20:41:01 +00002589
2590 if (!Args.hasArg(options::OPT_fgnu_runtime) &&
2591 !getToolChain().hasBlocksRuntime())
2592 CmdArgs.push_back("-fblocks-runtime-optional");
David Chisnall5e530af2009-11-17 19:33:30 +00002593 }
Daniel Dunbar48d1ef72009-04-07 21:16:11 +00002594
Douglas Gregor64554ba2012-01-18 15:19:58 +00002595 // -fmodules enables modules (off by default). However, for C++/Objective-C++,
2596 // users must also pass -fcxx-modules. The latter flag will disappear once the
2597 // modules implementation is solid for C++/Objective-C++ programs as well.
2598 if (Args.hasFlag(options::OPT_fmodules, options::OPT_fno_modules, false)) {
2599 bool AllowedInCXX = Args.hasFlag(options::OPT_fcxx_modules,
2600 options::OPT_fno_cxx_modules,
2601 false);
2602 if (AllowedInCXX || !types::isCXX(InputType))
2603 CmdArgs.push_back("-fmodules");
2604 }
Douglas Gregor7025d2c2012-01-03 17:13:05 +00002605
John McCall32579cf2010-04-09 19:12:06 +00002606 // -faccess-control is default.
John McCall7002f4c2010-04-09 19:03:51 +00002607 if (Args.hasFlag(options::OPT_fno_access_control,
2608 options::OPT_faccess_control,
John McCall32579cf2010-04-09 19:12:06 +00002609 false))
John McCall7002f4c2010-04-09 19:03:51 +00002610 CmdArgs.push_back("-fno-access-control");
John McCall3ddd6e02010-03-17 01:32:13 +00002611
Anders Carlssona4c24752010-11-21 00:09:52 +00002612 // -felide-constructors is the default.
2613 if (Args.hasFlag(options::OPT_fno_elide_constructors,
2614 options::OPT_felide_constructors,
2615 false))
2616 CmdArgs.push_back("-fno-elide-constructors");
2617
Daniel Dunbar0be42c42009-11-17 07:06:20 +00002618 // -frtti is default.
Chad Rosierafc4baa2012-03-26 22:04:46 +00002619 if (!Args.hasFlag(options::OPT_frtti, options::OPT_fno_rtti) ||
Richard Smithc4dabad2012-11-05 22:04:41 +00002620 KernelOrKext) {
Daniel Dunbar53e84842009-11-19 04:55:23 +00002621 CmdArgs.push_back("-fno-rtti");
Mike Stump738f8c22009-07-31 23:15:31 +00002622
Richard Smithc4dabad2012-11-05 22:04:41 +00002623 // -fno-rtti cannot usefully be combined with -fsanitize=vptr.
Alexey Samsonovbb1071c2012-11-06 15:09:03 +00002624 if (Sanitize.sanitizesVptr()) {
NAKAMURA Takumi03c60762012-11-06 22:02:00 +00002625 std::string NoRttiArg =
Richard Smithc4dabad2012-11-05 22:04:41 +00002626 Args.getLastArg(options::OPT_mkernel,
2627 options::OPT_fapple_kext,
Richard Smith04fd3822012-11-06 01:12:02 +00002628 options::OPT_fno_rtti)->getAsString(Args);
Richard Smithc4dabad2012-11-05 22:04:41 +00002629 D.Diag(diag::err_drv_argument_not_allowed_with)
2630 << "-fsanitize=vptr" << NoRttiArg;
2631 }
2632 }
2633
Tony Linthicum96319392011-12-12 21:14:55 +00002634 // -fshort-enums=0 is default for all architectures except Hexagon.
Argyrios Kyrtzidis9a2b9d72010-10-08 00:25:19 +00002635 if (Args.hasFlag(options::OPT_fshort_enums,
Tony Linthicum96319392011-12-12 21:14:55 +00002636 options::OPT_fno_short_enums,
2637 getToolChain().getTriple().getArch() ==
2638 llvm::Triple::hexagon))
Argyrios Kyrtzidis9a2b9d72010-10-08 00:25:19 +00002639 CmdArgs.push_back("-fshort-enums");
2640
Daniel Dunbar1f95e652009-11-17 06:37:03 +00002641 // -fsigned-char is default.
Daniel Dunbar6d2eb4d2009-11-25 10:14:30 +00002642 if (!Args.hasFlag(options::OPT_fsigned_char, options::OPT_funsigned_char,
Daniel Dunbar1f95e652009-11-17 06:37:03 +00002643 isSignedCharDefault(getToolChain().getTriple())))
Daniel Dunbar76743522009-11-29 02:39:08 +00002644 CmdArgs.push_back("-fno-signed-char");
Eli Friedman5a779732009-06-05 07:21:14 +00002645
Anders Carlssona508b7d2010-02-06 23:23:06 +00002646 // -fthreadsafe-static is default.
Michael J. Spencer20249a12010-10-21 03:16:25 +00002647 if (!Args.hasFlag(options::OPT_fthreadsafe_statics,
Anders Carlssona508b7d2010-02-06 23:23:06 +00002648 options::OPT_fno_threadsafe_statics))
2649 CmdArgs.push_back("-fno-threadsafe-statics");
2650
Daniel Dunbarefb0fa92010-03-20 04:15:41 +00002651 // -fuse-cxa-atexit is default.
Chad Rosierafc4baa2012-03-26 22:04:46 +00002652 if (!Args.hasFlag(options::OPT_fuse_cxa_atexit,
2653 options::OPT_fno_use_cxa_atexit,
2654 getToolChain().getTriple().getOS() != llvm::Triple::Cygwin &&
Tony Linthicum96319392011-12-12 21:14:55 +00002655 getToolChain().getTriple().getOS() != llvm::Triple::MinGW32 &&
Chad Rosierafc4baa2012-03-26 22:04:46 +00002656 getToolChain().getTriple().getArch() != llvm::Triple::hexagon) ||
2657 KernelOrKext)
Daniel Dunbarefb0fa92010-03-20 04:15:41 +00002658 CmdArgs.push_back("-fno-use-cxa-atexit");
2659
Daniel Dunbar0be42c42009-11-17 07:06:20 +00002660 // -fms-extensions=0 is default.
Daniel Dunbar6d2eb4d2009-11-25 10:14:30 +00002661 if (Args.hasFlag(options::OPT_fms_extensions, options::OPT_fno_ms_extensions,
Daniel Dunbar0be42c42009-11-17 07:06:20 +00002662 getToolChain().getTriple().getOS() == llvm::Triple::Win32))
2663 CmdArgs.push_back("-fms-extensions");
2664
Chad Rosierf925e042012-07-20 21:20:33 +00002665 // -fms-inline-asm.
Chad Rosierd256f862012-07-20 23:12:26 +00002666 if (Args.hasArg(options::OPT_fenable_experimental_ms_inline_asm))
2667 CmdArgs.push_back("-fenable-experimental-ms-inline-asm");
Chad Rosierf925e042012-07-20 21:20:33 +00002668
Francois Pichetae556082011-09-17 04:32:15 +00002669 // -fms-compatibility=0 is default.
Douglas Gregorba97b6e2011-10-24 15:49:38 +00002670 if (Args.hasFlag(options::OPT_fms_compatibility,
2671 options::OPT_fno_ms_compatibility,
2672 (getToolChain().getTriple().getOS() == llvm::Triple::Win32 &&
2673 Args.hasFlag(options::OPT_fms_extensions,
2674 options::OPT_fno_ms_extensions,
2675 true))))
Francois Pichetae556082011-09-17 04:32:15 +00002676 CmdArgs.push_back("-fms-compatibility");
2677
Michael J. Spencerdae4ac42010-10-21 05:21:48 +00002678 // -fmsc-version=1300 is default.
2679 if (Args.hasFlag(options::OPT_fms_extensions, options::OPT_fno_ms_extensions,
2680 getToolChain().getTriple().getOS() == llvm::Triple::Win32) ||
2681 Args.hasArg(options::OPT_fmsc_version)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00002682 StringRef msc_ver = Args.getLastArgValue(options::OPT_fmsc_version);
Michael J. Spencerdae4ac42010-10-21 05:21:48 +00002683 if (msc_ver.empty())
2684 CmdArgs.push_back("-fmsc-version=1300");
2685 else
2686 CmdArgs.push_back(Args.MakeArgString("-fmsc-version=" + msc_ver));
2687 }
2688
2689
Dawn Perchik400b6072010-09-02 23:59:25 +00002690 // -fborland-extensions=0 is default.
2691 if (Args.hasFlag(options::OPT_fborland_extensions,
2692 options::OPT_fno_borland_extensions, false))
2693 CmdArgs.push_back("-fborland-extensions");
2694
Francois Pichet8efcc012011-09-01 16:38:08 +00002695 // -fno-delayed-template-parsing is default, except for Windows where MSVC STL
2696 // needs it.
Francois Pichet8387e2a2011-04-22 22:18:13 +00002697 if (Args.hasFlag(options::OPT_fdelayed_template_parsing,
2698 options::OPT_fno_delayed_template_parsing,
Francois Pichet8efcc012011-09-01 16:38:08 +00002699 getToolChain().getTriple().getOS() == llvm::Triple::Win32))
Francois Pichet805bc1f2011-08-26 00:22:34 +00002700 CmdArgs.push_back("-fdelayed-template-parsing");
Francois Pichet8387e2a2011-04-22 22:18:13 +00002701
Chandler Carrutheb5d7b72010-04-17 20:17:31 +00002702 // -fgnu-keywords default varies depending on language; only pass if
2703 // specified.
2704 if (Arg *A = Args.getLastArg(options::OPT_fgnu_keywords,
Daniel Dunbar40788d92010-04-24 17:56:39 +00002705 options::OPT_fno_gnu_keywords))
2706 A->render(Args, CmdArgs);
Chandler Carrutheb5d7b72010-04-17 20:17:31 +00002707
Rafael Espindola01ba8542011-06-02 17:30:53 +00002708 if (Args.hasFlag(options::OPT_fgnu89_inline,
2709 options::OPT_fno_gnu89_inline,
2710 false))
Rafael Espindolafb3f4aa2011-06-02 16:13:27 +00002711 CmdArgs.push_back("-fgnu89-inline");
2712
Chad Rosierfc055f92012-03-15 22:31:42 +00002713 if (Args.hasArg(options::OPT_fno_inline))
2714 CmdArgs.push_back("-fno-inline");
2715
Chad Rosier634a4b12012-03-06 21:17:19 +00002716 if (Args.hasArg(options::OPT_fno_inline_functions))
2717 CmdArgs.push_back("-fno-inline-functions");
Chad Rosier250008b2012-03-06 18:49:20 +00002718
John McCall260611a2012-06-20 06:18:46 +00002719 ObjCRuntime objcRuntime = AddObjCRuntimeArgs(Args, CmdArgs, rewriteKind);
John McCall9f084a32011-07-06 00:26:06 +00002720
John McCall260611a2012-06-20 06:18:46 +00002721 // -fobjc-dispatch-method is only relevant with the nonfragile-abi, and
2722 // legacy is the default.
2723 if (objcRuntime.isNonFragile()) {
David Chisnall3c3ccd22011-09-30 13:32:35 +00002724 if (!Args.hasFlag(options::OPT_fobjc_legacy_dispatch,
2725 options::OPT_fno_objc_legacy_dispatch,
David Chisnall2c7886d2012-07-04 11:52:24 +00002726 objcRuntime.isLegacyDispatchDefaultForArch(
2727 getToolChain().getTriple().getArch()))) {
David Chisnall3c3ccd22011-09-30 13:32:35 +00002728 if (getToolChain().UseObjCMixedDispatch())
2729 CmdArgs.push_back("-fobjc-dispatch-method=mixed");
2730 else
2731 CmdArgs.push_back("-fobjc-dispatch-method=non-legacy");
2732 }
2733 }
2734
Nico Weberdf423542012-03-09 21:19:44 +00002735 // -fobjc-default-synthesize-properties=1 is default. This only has an effect
2736 // if the nonfragile objc abi is used.
Fariborz Jahaniane51fe092012-04-09 18:58:55 +00002737 if (getToolChain().IsObjCDefaultSynthPropertiesDefault()) {
David Chisnall3c3ccd22011-09-30 13:32:35 +00002738 CmdArgs.push_back("-fobjc-default-synthesize-properties");
2739 }
2740
Fariborz Jahanian3d145f62012-11-15 19:02:45 +00002741 // -fencode-extended-block-signature=1 is default.
2742 if (getToolChain().IsEncodeExtendedBlockSignatureDefault()) {
2743 CmdArgs.push_back("-fencode-extended-block-signature");
2744 }
2745
John McCall9f084a32011-07-06 00:26:06 +00002746 // Allow -fno-objc-arr to trump -fobjc-arr/-fobjc-arc.
2747 // NOTE: This logic is duplicated in ToolChains.cpp.
2748 bool ARC = isObjCAutoRefCount(Args);
2749 if (ARC) {
John McCall0a7dd782012-08-21 02:47:43 +00002750 getToolChain().CheckObjCARC();
Argyrios Kyrtzidis5840dd92012-02-29 03:43:52 +00002751
John McCall9f084a32011-07-06 00:26:06 +00002752 CmdArgs.push_back("-fobjc-arc");
2753
Chandler Carruth7ffa0322011-11-04 07:34:47 +00002754 // FIXME: It seems like this entire block, and several around it should be
2755 // wrapped in isObjC, but for now we just use it here as this is where it
2756 // was being used previously.
2757 if (types::isCXX(InputType) && types::isObjC(InputType)) {
2758 if (getToolChain().GetCXXStdlibType(Args) == ToolChain::CST_Libcxx)
2759 CmdArgs.push_back("-fobjc-arc-cxxlib=libc++");
2760 else
2761 CmdArgs.push_back("-fobjc-arc-cxxlib=libstdc++");
2762 }
2763
John McCall9f084a32011-07-06 00:26:06 +00002764 // Allow the user to enable full exceptions code emission.
2765 // We define off for Objective-CC, on for Objective-C++.
2766 if (Args.hasFlag(options::OPT_fobjc_arc_exceptions,
2767 options::OPT_fno_objc_arc_exceptions,
2768 /*default*/ types::isCXX(InputType)))
2769 CmdArgs.push_back("-fobjc-arc-exceptions");
2770 }
2771
2772 // -fobjc-infer-related-result-type is the default, except in the Objective-C
2773 // rewriter.
John McCall260611a2012-06-20 06:18:46 +00002774 if (rewriteKind != RK_None)
John McCall9f084a32011-07-06 00:26:06 +00002775 CmdArgs.push_back("-fno-objc-infer-related-result-type");
Eric Christopher88b7cf02011-08-19 00:30:14 +00002776
John McCall9f084a32011-07-06 00:26:06 +00002777 // Handle -fobjc-gc and -fobjc-gc-only. They are exclusive, and -fobjc-gc-only
2778 // takes precedence.
2779 const Arg *GCArg = Args.getLastArg(options::OPT_fobjc_gc_only);
2780 if (!GCArg)
2781 GCArg = Args.getLastArg(options::OPT_fobjc_gc);
2782 if (GCArg) {
2783 if (ARC) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00002784 D.Diag(diag::err_drv_objc_gc_arr)
John McCall9f084a32011-07-06 00:26:06 +00002785 << GCArg->getAsString(Args);
2786 } else if (getToolChain().SupportsObjCGC()) {
2787 GCArg->render(Args, CmdArgs);
2788 } else {
2789 // FIXME: We should move this to a hard error.
Chris Lattner5f9e2722011-07-23 10:55:15 +00002790 D.Diag(diag::warn_drv_objc_gc_unsupported)
John McCall9f084a32011-07-06 00:26:06 +00002791 << GCArg->getAsString(Args);
2792 }
2793 }
2794
John McCalld71315c2011-06-22 00:53:57 +00002795 // Add exception args.
2796 addExceptionArgs(Args, InputType, getToolChain().getTriple(),
John McCall260611a2012-06-20 06:18:46 +00002797 KernelOrKext, objcRuntime, CmdArgs);
John McCalld71315c2011-06-22 00:53:57 +00002798
2799 if (getToolChain().UseSjLjExceptions())
2800 CmdArgs.push_back("-fsjlj-exceptions");
2801
2802 // C++ "sane" operator new.
Daniel Dunbar984eb862010-02-01 21:07:25 +00002803 if (!Args.hasFlag(options::OPT_fassume_sane_operator_new,
2804 options::OPT_fno_assume_sane_operator_new))
2805 CmdArgs.push_back("-fno-assume-sane-operator-new");
2806
Daniel Dunbarf35f14d2010-04-27 15:34:57 +00002807 // -fconstant-cfstrings is default, and may be subject to argument translation
2808 // on Darwin.
2809 if (!Args.hasFlag(options::OPT_fconstant_cfstrings,
2810 options::OPT_fno_constant_cfstrings) ||
2811 !Args.hasFlag(options::OPT_mconstant_cfstrings,
2812 options::OPT_mno_constant_cfstrings))
2813 CmdArgs.push_back("-fno-constant-cfstrings");
2814
John Thompsona6fda122009-11-05 20:14:16 +00002815 // -fshort-wchar default varies depending on platform; only
2816 // pass if specified.
Daniel Dunbar1744a352010-04-27 15:35:03 +00002817 if (Arg *A = Args.getLastArg(options::OPT_fshort_wchar))
2818 A->render(Args, CmdArgs);
John Thompsona6fda122009-11-05 20:14:16 +00002819
Daniel Dunbaree848a72009-10-29 02:39:57 +00002820 // -fno-pascal-strings is default, only pass non-default. If the tool chain
2821 // happened to translate to -mpascal-strings, we want to back translate here.
Daniel Dunbar82d00682009-04-07 23:51:44 +00002822 //
2823 // FIXME: This is gross; that translation should be pulled from the
2824 // tool chain.
Daniel Dunbarc21c4852009-04-08 23:54:23 +00002825 if (Args.hasFlag(options::OPT_fpascal_strings,
Daniel Dunbar82d00682009-04-07 23:51:44 +00002826 options::OPT_fno_pascal_strings,
2827 false) ||
2828 Args.hasFlag(options::OPT_mpascal_strings,
2829 options::OPT_mno_pascal_strings,
2830 false))
Daniel Dunbar48d1ef72009-04-07 21:16:11 +00002831 CmdArgs.push_back("-fpascal-strings");
NAKAMURA Takumi125b4cb2011-02-17 08:50:50 +00002832
Daniel Dunbar88934e82011-10-05 21:04:55 +00002833 // Honor -fpack-struct= and -fpack-struct, if given. Note that
2834 // -fno-pack-struct doesn't apply to -fpack-struct=.
2835 if (Arg *A = Args.getLastArg(options::OPT_fpack_struct_EQ)) {
James Molloy8049c442012-05-02 07:56:14 +00002836 std::string PackStructStr = "-fpack-struct=";
Richard Smith1d489cf2012-11-01 04:30:05 +00002837 PackStructStr += A->getValue();
James Molloy8049c442012-05-02 07:56:14 +00002838 CmdArgs.push_back(Args.MakeArgString(PackStructStr));
Daniel Dunbar88934e82011-10-05 21:04:55 +00002839 } else if (Args.hasFlag(options::OPT_fpack_struct,
2840 options::OPT_fno_pack_struct, false)) {
James Molloy8049c442012-05-02 07:56:14 +00002841 CmdArgs.push_back("-fpack-struct=1");
Daniel Dunbar88934e82011-10-05 21:04:55 +00002842 }
2843
Fariborz Jahanianb466d012011-01-07 01:05:02 +00002844 if (Args.hasArg(options::OPT_mkernel) ||
2845 Args.hasArg(options::OPT_fapple_kext)) {
2846 if (!Args.hasArg(options::OPT_fcommon))
2847 CmdArgs.push_back("-fno-common");
Chad Rosierec09b3e2012-03-26 21:35:40 +00002848 Args.ClaimAllArgs(options::OPT_fno_common);
Fariborz Jahanianb466d012011-01-07 01:05:02 +00002849 }
Daniel Dunbar88934e82011-10-05 21:04:55 +00002850
Daniel Dunbar48d1ef72009-04-07 21:16:11 +00002851 // -fcommon is default, only pass non-default.
Fariborz Jahanianb466d012011-01-07 01:05:02 +00002852 else if (!Args.hasFlag(options::OPT_fcommon, options::OPT_fno_common))
Daniel Dunbar48d1ef72009-04-07 21:16:11 +00002853 CmdArgs.push_back("-fno-common");
2854
Daniel Dunbar70d3c922009-04-15 02:37:43 +00002855 // -fsigned-bitfields is default, and clang doesn't yet support
Daniel Dunbar06205ca2010-10-15 22:30:42 +00002856 // -funsigned-bitfields.
Mike Stump1eb44332009-09-09 15:08:12 +00002857 if (!Args.hasFlag(options::OPT_fsigned_bitfields,
Daniel Dunbar70d3c922009-04-15 02:37:43 +00002858 options::OPT_funsigned_bitfields))
Chris Lattner5f9e2722011-07-23 10:55:15 +00002859 D.Diag(diag::warn_drv_clang_unsupported)
Daniel Dunbar70d3c922009-04-15 02:37:43 +00002860 << Args.getLastArg(options::OPT_funsigned_bitfields)->getAsString(Args);
2861
Daniel Dunbar06205ca2010-10-15 22:30:42 +00002862 // -fsigned-bitfields is default, and clang doesn't support -fno-for-scope.
2863 if (!Args.hasFlag(options::OPT_ffor_scope,
2864 options::OPT_fno_for_scope))
Chris Lattner5f9e2722011-07-23 10:55:15 +00002865 D.Diag(diag::err_drv_clang_unsupported)
Daniel Dunbar06205ca2010-10-15 22:30:42 +00002866 << Args.getLastArg(options::OPT_fno_for_scope)->getAsString(Args);
2867
Jeffrey Yasskin0ea22fd2010-06-08 04:56:20 +00002868 // -fcaret-diagnostics is default.
2869 if (!Args.hasFlag(options::OPT_fcaret_diagnostics,
2870 options::OPT_fno_caret_diagnostics, true))
2871 CmdArgs.push_back("-fno-caret-diagnostics");
2872
Daniel Dunbar49138fc2009-04-19 21:09:34 +00002873 // -fdiagnostics-fixit-info is default, only pass non-default.
Mike Stump1eb44332009-09-09 15:08:12 +00002874 if (!Args.hasFlag(options::OPT_fdiagnostics_fixit_info,
Daniel Dunbar49138fc2009-04-19 21:09:34 +00002875 options::OPT_fno_diagnostics_fixit_info))
2876 CmdArgs.push_back("-fno-diagnostics-fixit-info");
Eric Christopher88b7cf02011-08-19 00:30:14 +00002877
Daniel Dunbar9e820ee2009-04-16 06:32:38 +00002878 // Enable -fdiagnostics-show-option by default.
Mike Stump1eb44332009-09-09 15:08:12 +00002879 if (Args.hasFlag(options::OPT_fdiagnostics_show_option,
Daniel Dunbar9e820ee2009-04-16 06:32:38 +00002880 options::OPT_fno_diagnostics_show_option))
2881 CmdArgs.push_back("-fdiagnostics-show-option");
Daniel Dunbar838be482009-11-04 06:24:57 +00002882
Chris Lattner6fbe8392010-05-04 21:55:25 +00002883 if (const Arg *A =
2884 Args.getLastArg(options::OPT_fdiagnostics_show_category_EQ)) {
2885 CmdArgs.push_back("-fdiagnostics-show-category");
Richard Smith1d489cf2012-11-01 04:30:05 +00002886 CmdArgs.push_back(A->getValue());
Chris Lattner6fbe8392010-05-04 21:55:25 +00002887 }
Daniel Dunbarca0e0542010-08-24 16:47:49 +00002888
Douglas Gregorc9471b02011-05-21 17:07:29 +00002889 if (const Arg *A =
2890 Args.getLastArg(options::OPT_fdiagnostics_format_EQ)) {
2891 CmdArgs.push_back("-fdiagnostics-format");
Richard Smith1d489cf2012-11-01 04:30:05 +00002892 CmdArgs.push_back(A->getValue());
Douglas Gregorc9471b02011-05-21 17:07:29 +00002893 }
2894
Chandler Carruthabaca7a2011-03-27 01:50:55 +00002895 if (Arg *A = Args.getLastArg(
2896 options::OPT_fdiagnostics_show_note_include_stack,
2897 options::OPT_fno_diagnostics_show_note_include_stack)) {
2898 if (A->getOption().matches(
2899 options::OPT_fdiagnostics_show_note_include_stack))
2900 CmdArgs.push_back("-fdiagnostics-show-note-include-stack");
2901 else
2902 CmdArgs.push_back("-fno-diagnostics-show-note-include-stack");
2903 }
2904
Daniel Dunbar838be482009-11-04 06:24:57 +00002905 // Color diagnostics are the default, unless the terminal doesn't support
2906 // them.
2907 if (Args.hasFlag(options::OPT_fcolor_diagnostics,
Argyrios Kyrtzidisf765d762010-09-23 12:56:06 +00002908 options::OPT_fno_color_diagnostics,
2909 llvm::sys::Process::StandardErrHasColors()))
Daniel Dunbar838be482009-11-04 06:24:57 +00002910 CmdArgs.push_back("-fcolor-diagnostics");
2911
Daniel Dunbar75eb1d62009-06-08 21:13:54 +00002912 if (!Args.hasFlag(options::OPT_fshow_source_location,
2913 options::OPT_fno_show_source_location))
2914 CmdArgs.push_back("-fno-show-source-location");
Daniel Dunbar9e820ee2009-04-16 06:32:38 +00002915
Douglas Gregorc9471b02011-05-21 17:07:29 +00002916 if (!Args.hasFlag(options::OPT_fshow_column,
2917 options::OPT_fno_show_column,
2918 true))
2919 CmdArgs.push_back("-fno-show-column");
2920
Douglas Gregora0068fc2010-07-09 17:35:33 +00002921 if (!Args.hasFlag(options::OPT_fspell_checking,
2922 options::OPT_fno_spell_checking))
2923 CmdArgs.push_back("-fno-spell-checking");
Daniel Dunbarca0e0542010-08-24 16:47:49 +00002924
Daniel Dunbar25b26eb2010-10-18 22:49:46 +00002925
Chad Rosier15490fd2012-12-05 21:08:21 +00002926 // -fno-asm-blocks is default.
2927 if (Args.hasFlag(options::OPT_fasm_blocks, options::OPT_fno_asm_blocks,
2928 false))
2929 CmdArgs.push_back("-fasm-blocks");
Daniel Dunbar25b26eb2010-10-18 22:49:46 +00002930
Jeffrey Yasskin5edbdcc2010-06-11 05:57:47 +00002931 if (Arg *A = Args.getLastArg(options::OPT_fshow_overloads_EQ))
2932 A->render(Args, CmdArgs);
2933
Daniel Dunbar7695fba2009-04-19 21:20:32 +00002934 // -fdollars-in-identifiers default varies depending on platform and
2935 // language; only pass if specified.
Mike Stump1eb44332009-09-09 15:08:12 +00002936 if (Arg *A = Args.getLastArg(options::OPT_fdollars_in_identifiers,
Daniel Dunbar7695fba2009-04-19 21:20:32 +00002937 options::OPT_fno_dollars_in_identifiers)) {
2938 if (A->getOption().matches(options::OPT_fdollars_in_identifiers))
Daniel Dunbar8663b182009-12-16 20:10:18 +00002939 CmdArgs.push_back("-fdollars-in-identifiers");
Daniel Dunbar7695fba2009-04-19 21:20:32 +00002940 else
Daniel Dunbar8663b182009-12-16 20:10:18 +00002941 CmdArgs.push_back("-fno-dollars-in-identifiers");
Daniel Dunbar7695fba2009-04-19 21:20:32 +00002942 }
2943
Daniel Dunbare027a4b2009-05-22 19:02:20 +00002944 // -funit-at-a-time is default, and we don't support -fno-unit-at-a-time for
2945 // practical purposes.
Mike Stump1eb44332009-09-09 15:08:12 +00002946 if (Arg *A = Args.getLastArg(options::OPT_funit_at_a_time,
Daniel Dunbare027a4b2009-05-22 19:02:20 +00002947 options::OPT_fno_unit_at_a_time)) {
2948 if (A->getOption().matches(options::OPT_fno_unit_at_a_time))
Chris Lattner5f9e2722011-07-23 10:55:15 +00002949 D.Diag(diag::warn_drv_clang_unsupported) << A->getAsString(Args);
Daniel Dunbare027a4b2009-05-22 19:02:20 +00002950 }
Eli Friedmanceb5c5b2009-07-14 21:58:17 +00002951
Eli Friedman19bda3a2011-11-02 01:53:16 +00002952 if (Args.hasFlag(options::OPT_fapple_pragma_pack,
2953 options::OPT_fno_apple_pragma_pack, false))
2954 CmdArgs.push_back("-fapple-pragma-pack");
2955
Daniel Dunbar2ba91572009-09-10 03:37:02 +00002956 // Default to -fno-builtin-str{cat,cpy} on Darwin for ARM.
Daniel Dunbarf84a4a42009-09-10 04:57:27 +00002957 //
Daniel Dunbar8ff5b282009-12-11 23:00:49 +00002958 // FIXME: This is disabled until clang -cc1 supports -fno-builtin-foo. PR4941.
Daniel Dunbarf84a4a42009-09-10 04:57:27 +00002959#if 0
Bob Wilson905c45f2011-10-14 05:03:44 +00002960 if (getToolChain().getTriple().isOSDarwin() &&
Daniel Dunbar2ba91572009-09-10 03:37:02 +00002961 (getToolChain().getTriple().getArch() == llvm::Triple::arm ||
2962 getToolChain().getTriple().getArch() == llvm::Triple::thumb)) {
2963 if (!Args.hasArg(options::OPT_fbuiltin_strcat))
2964 CmdArgs.push_back("-fno-builtin-strcat");
2965 if (!Args.hasArg(options::OPT_fbuiltin_strcpy))
2966 CmdArgs.push_back("-fno-builtin-strcpy");
2967 }
Daniel Dunbarf84a4a42009-09-10 04:57:27 +00002968#endif
Daniel Dunbar2ba91572009-09-10 03:37:02 +00002969
Daniel Dunbard98750f2011-03-18 21:23:40 +00002970 // Only allow -traditional or -traditional-cpp outside in preprocessing modes.
Mike Stump1eb44332009-09-09 15:08:12 +00002971 if (Arg *A = Args.getLastArg(options::OPT_traditional,
Daniel Dunbard98750f2011-03-18 21:23:40 +00002972 options::OPT_traditional_cpp)) {
2973 if (isa<PreprocessJobAction>(JA))
2974 CmdArgs.push_back("-traditional-cpp");
Eric Christopher88b7cf02011-08-19 00:30:14 +00002975 else
Chris Lattner5f9e2722011-07-23 10:55:15 +00002976 D.Diag(diag::err_drv_clang_unsupported) << A->getAsString(Args);
Daniel Dunbard98750f2011-03-18 21:23:40 +00002977 }
Eli Friedmanceb5c5b2009-07-14 21:58:17 +00002978
Daniel Dunbar1d460332009-03-18 10:01:51 +00002979 Args.AddLastArg(CmdArgs, options::OPT_dM);
Chris Lattnerd82df3a2009-04-12 01:56:53 +00002980 Args.AddLastArg(CmdArgs, options::OPT_dD);
Ted Kremenek36f6e302011-11-11 00:07:43 +00002981
2982 // Handle serialized diagnostics.
2983 if (Arg *A = Args.getLastArg(options::OPT__serialize_diags)) {
2984 CmdArgs.push_back("-serialize-diagnostic-file");
Richard Smith1d489cf2012-11-01 04:30:05 +00002985 CmdArgs.push_back(Args.MakeArgString(A->getValue()));
Ted Kremenek36f6e302011-11-11 00:07:43 +00002986 }
Daniel Dunbar1d460332009-03-18 10:01:51 +00002987
Ted Kremenek127ff2e2012-09-13 06:41:18 +00002988 if (Args.hasArg(options::OPT_fretain_comments_from_system_headers))
2989 CmdArgs.push_back("-fretain-comments-from-system-headers");
2990
Daniel Dunbar3f87fb02010-04-15 06:09:03 +00002991 // Forward -Xclang arguments to -cc1, and -mllvm arguments to the LLVM option
2992 // parser.
Daniel Dunbar1d460332009-03-18 10:01:51 +00002993 Args.AddAllArgValues(CmdArgs, options::OPT_Xclang);
Daniel Dunbar3f87fb02010-04-15 06:09:03 +00002994 for (arg_iterator it = Args.filtered_begin(options::OPT_mllvm),
2995 ie = Args.filtered_end(); it != ie; ++it) {
Daniel Dunbar7e4953e2010-06-11 22:00:13 +00002996 (*it)->claim();
Daniel Dunbarfb36d212010-04-17 06:10:00 +00002997
Daniel Dunbar3f87fb02010-04-15 06:09:03 +00002998 // We translate this by hand to the -cc1 argument, since nightly test uses
2999 // it and developers have been trained to spell it with -mllvm.
Richard Smith1d489cf2012-11-01 04:30:05 +00003000 if (StringRef((*it)->getValue(0)) == "-disable-llvm-optzns")
Daniel Dunbar3f87fb02010-04-15 06:09:03 +00003001 CmdArgs.push_back("-disable-llvm-optzns");
3002 else
Daniel Dunbar7e4953e2010-06-11 22:00:13 +00003003 (*it)->render(Args, CmdArgs);
Daniel Dunbar3f87fb02010-04-15 06:09:03 +00003004 }
Daniel Dunbar1d460332009-03-18 10:01:51 +00003005
Daniel Dunbarcd8e4c42009-03-30 06:36:42 +00003006 if (Output.getType() == types::TY_Dependencies) {
3007 // Handled with other dependency code.
Daniel Dunbar115a7922009-03-19 07:29:38 +00003008 } else if (Output.isFilename()) {
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003009 CmdArgs.push_back("-o");
Daniel Dunbar115a7922009-03-19 07:29:38 +00003010 CmdArgs.push_back(Output.getFilename());
3011 } else {
3012 assert(Output.isNothing() && "Invalid output.");
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003013 }
3014
Daniel Dunbar1d460332009-03-18 10:01:51 +00003015 for (InputInfoList::const_iterator
3016 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
3017 const InputInfo &II = *it;
3018 CmdArgs.push_back("-x");
Fariborz Jahaniana5ee0892012-09-28 19:05:17 +00003019 if (Args.hasArg(options::OPT_rewrite_objc))
3020 CmdArgs.push_back(types::getTypeName(types::TY_PP_ObjCXX));
3021 else
3022 CmdArgs.push_back(types::getTypeName(II.getType()));
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00003023 if (II.isFilename())
Daniel Dunbar115a7922009-03-19 07:29:38 +00003024 CmdArgs.push_back(II.getFilename());
Daniel Dunbar1d460332009-03-18 10:01:51 +00003025 else
Daniel Dunbar115a7922009-03-19 07:29:38 +00003026 II.getInputArg().renderAsInput(Args, CmdArgs);
Daniel Dunbar1d460332009-03-18 10:01:51 +00003027 }
Daniel Dunbarc21c4852009-04-08 23:54:23 +00003028
Chris Lattnere6113de2009-11-03 19:50:27 +00003029 Args.AddAllArgs(CmdArgs, options::OPT_undef);
3030
Daniel Dunbara001c1c2010-07-18 21:16:15 +00003031 const char *Exec = getToolChain().getDriver().getClangProgramPath();
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +00003032
3033 // Optionally embed the -cc1 level arguments into the debug info, for build
3034 // analysis.
3035 if (getToolChain().UseDwarfDebugFlags()) {
Daniel Dunbar6e900472010-06-04 18:47:06 +00003036 ArgStringList OriginalArgs;
3037 for (ArgList::const_iterator it = Args.begin(),
3038 ie = Args.end(); it != ie; ++it)
3039 (*it)->render(Args, OriginalArgs);
Daniel Dunbarca0e0542010-08-24 16:47:49 +00003040
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00003041 SmallString<256> Flags;
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +00003042 Flags += Exec;
Daniel Dunbar6e900472010-06-04 18:47:06 +00003043 for (unsigned i = 0, e = OriginalArgs.size(); i != e; ++i) {
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +00003044 Flags += " ";
Daniel Dunbar6e900472010-06-04 18:47:06 +00003045 Flags += OriginalArgs[i];
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +00003046 }
3047 CmdArgs.push_back("-dwarf-debug-flags");
3048 CmdArgs.push_back(Args.MakeArgString(Flags.str()));
3049 }
3050
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00003051 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbara880db02009-03-23 19:03:36 +00003052
Roman Divackybe4c8702011-02-10 16:52:03 +00003053 if (Arg *A = Args.getLastArg(options::OPT_pg))
3054 if (Args.hasArg(options::OPT_fomit_frame_pointer))
Chris Lattner5f9e2722011-07-23 10:55:15 +00003055 D.Diag(diag::err_drv_argument_not_allowed_with)
Roman Divackybe4c8702011-02-10 16:52:03 +00003056 << "-fomit-frame-pointer" << A->getAsString(Args);
Michael J. Spencer20249a12010-10-21 03:16:25 +00003057
Daniel Dunbar68fb4692009-04-03 20:51:31 +00003058 // Claim some arguments which clang supports automatically.
3059
Daniel Dunbarf4046862010-04-15 06:18:42 +00003060 // -fpch-preprocess is used with gcc to add a special marker in the output to
3061 // include the PCH file. Clang's PTH solution is completely transparent, so we
3062 // do not need to deal with it at all.
Daniel Dunbar68fb4692009-04-03 20:51:31 +00003063 Args.ClaimAllArgs(options::OPT_fpch_preprocess);
Daniel Dunbarc21c4852009-04-08 23:54:23 +00003064
Daniel Dunbara880db02009-03-23 19:03:36 +00003065 // Claim some arguments which clang doesn't support, but we don't
3066 // care to warn the user about.
Daniel Dunbarcdd96862009-11-25 11:53:23 +00003067 Args.ClaimAllArgs(options::OPT_clang_ignored_f_Group);
3068 Args.ClaimAllArgs(options::OPT_clang_ignored_m_Group);
Rafael Espindola035ff0c2011-02-28 23:29:45 +00003069
Rafael Espindola9c094fb2011-03-01 05:25:27 +00003070 // Disable warnings for clang -E -use-gold-plugin -emit-llvm foo.c
Rafael Espindola035ff0c2011-02-28 23:29:45 +00003071 Args.ClaimAllArgs(options::OPT_use_gold_plugin);
Rafael Espindola9c094fb2011-03-01 05:25:27 +00003072 Args.ClaimAllArgs(options::OPT_emit_llvm);
Daniel Dunbar47ac7d22009-03-18 06:00:36 +00003073}
3074
Jim Grosbachfc308292012-02-10 20:37:10 +00003075void ClangAs::AddARMTargetArgs(const ArgList &Args,
3076 ArgStringList &CmdArgs) const {
3077 const Driver &D = getToolChain().getDriver();
3078 llvm::Triple Triple = getToolChain().getTriple();
3079
3080 // Set the CPU based on -march= and -mcpu=.
3081 CmdArgs.push_back("-target-cpu");
Benjamin Kramer92c4fd52012-06-26 22:20:06 +00003082 CmdArgs.push_back(Args.MakeArgString(getARMTargetCPU(Args, Triple)));
Jim Grosbachfc308292012-02-10 20:37:10 +00003083
3084 // Honor -mfpu=.
Chad Rosier99317272012-04-04 20:51:35 +00003085 if (const Arg *A = Args.getLastArg(options::OPT_mfpu_EQ))
Chad Rosierf80f2a52012-04-04 20:56:36 +00003086 addFPUArgs(D, A, Args, CmdArgs);
Chad Rosier7a938fa2012-04-04 20:39:32 +00003087
3088 // Honor -mfpmath=.
3089 if (const Arg *A = Args.getLastArg(options::OPT_mfpmath_EQ))
Chad Rosier30fe6ba2012-04-04 22:13:40 +00003090 addFPMathArgs(D, A, Args, CmdArgs, getARMTargetCPU(Args, Triple));
Jim Grosbachfc308292012-02-10 20:37:10 +00003091}
3092
John McCall260611a2012-06-20 06:18:46 +00003093/// Add options related to the Objective-C runtime/ABI.
3094///
3095/// Returns true if the runtime is non-fragile.
3096ObjCRuntime Clang::AddObjCRuntimeArgs(const ArgList &args,
3097 ArgStringList &cmdArgs,
3098 RewriteKind rewriteKind) const {
3099 // Look for the controlling runtime option.
3100 Arg *runtimeArg = args.getLastArg(options::OPT_fnext_runtime,
3101 options::OPT_fgnu_runtime,
3102 options::OPT_fobjc_runtime_EQ);
3103
3104 // Just forward -fobjc-runtime= to the frontend. This supercedes
3105 // options about fragility.
3106 if (runtimeArg &&
3107 runtimeArg->getOption().matches(options::OPT_fobjc_runtime_EQ)) {
3108 ObjCRuntime runtime;
Richard Smith1d489cf2012-11-01 04:30:05 +00003109 StringRef value = runtimeArg->getValue();
John McCall260611a2012-06-20 06:18:46 +00003110 if (runtime.tryParse(value)) {
3111 getToolChain().getDriver().Diag(diag::err_drv_unknown_objc_runtime)
3112 << value;
3113 }
3114
3115 runtimeArg->render(args, cmdArgs);
3116 return runtime;
3117 }
3118
3119 // Otherwise, we'll need the ABI "version". Version numbers are
3120 // slightly confusing for historical reasons:
3121 // 1 - Traditional "fragile" ABI
3122 // 2 - Non-fragile ABI, version 1
3123 // 3 - Non-fragile ABI, version 2
3124 unsigned objcABIVersion = 1;
3125 // If -fobjc-abi-version= is present, use that to set the version.
3126 if (Arg *abiArg = args.getLastArg(options::OPT_fobjc_abi_version_EQ)) {
Richard Smith1d489cf2012-11-01 04:30:05 +00003127 StringRef value = abiArg->getValue();
John McCall260611a2012-06-20 06:18:46 +00003128 if (value == "1")
3129 objcABIVersion = 1;
3130 else if (value == "2")
3131 objcABIVersion = 2;
3132 else if (value == "3")
3133 objcABIVersion = 3;
3134 else
3135 getToolChain().getDriver().Diag(diag::err_drv_clang_unsupported)
3136 << value;
3137 } else {
3138 // Otherwise, determine if we are using the non-fragile ABI.
3139 bool nonFragileABIIsDefault =
3140 (rewriteKind == RK_NonFragile ||
3141 (rewriteKind == RK_None &&
3142 getToolChain().IsObjCNonFragileABIDefault()));
3143 if (args.hasFlag(options::OPT_fobjc_nonfragile_abi,
3144 options::OPT_fno_objc_nonfragile_abi,
3145 nonFragileABIIsDefault)) {
3146 // Determine the non-fragile ABI version to use.
3147#ifdef DISABLE_DEFAULT_NONFRAGILEABI_TWO
3148 unsigned nonFragileABIVersion = 1;
3149#else
3150 unsigned nonFragileABIVersion = 2;
3151#endif
3152
3153 if (Arg *abiArg = args.getLastArg(
3154 options::OPT_fobjc_nonfragile_abi_version_EQ)) {
Richard Smith1d489cf2012-11-01 04:30:05 +00003155 StringRef value = abiArg->getValue();
John McCall260611a2012-06-20 06:18:46 +00003156 if (value == "1")
3157 nonFragileABIVersion = 1;
3158 else if (value == "2")
3159 nonFragileABIVersion = 2;
3160 else
3161 getToolChain().getDriver().Diag(diag::err_drv_clang_unsupported)
3162 << value;
3163 }
3164
3165 objcABIVersion = 1 + nonFragileABIVersion;
3166 } else {
3167 objcABIVersion = 1;
3168 }
3169 }
3170
3171 // We don't actually care about the ABI version other than whether
3172 // it's non-fragile.
3173 bool isNonFragile = objcABIVersion != 1;
3174
3175 // If we have no runtime argument, ask the toolchain for its default runtime.
3176 // However, the rewriter only really supports the Mac runtime, so assume that.
3177 ObjCRuntime runtime;
3178 if (!runtimeArg) {
3179 switch (rewriteKind) {
3180 case RK_None:
3181 runtime = getToolChain().getDefaultObjCRuntime(isNonFragile);
3182 break;
3183 case RK_Fragile:
3184 runtime = ObjCRuntime(ObjCRuntime::FragileMacOSX, VersionTuple());
3185 break;
3186 case RK_NonFragile:
3187 runtime = ObjCRuntime(ObjCRuntime::MacOSX, VersionTuple());
3188 break;
3189 }
3190
3191 // -fnext-runtime
3192 } else if (runtimeArg->getOption().matches(options::OPT_fnext_runtime)) {
3193 // On Darwin, make this use the default behavior for the toolchain.
3194 if (getToolChain().getTriple().isOSDarwin()) {
3195 runtime = getToolChain().getDefaultObjCRuntime(isNonFragile);
3196
3197 // Otherwise, build for a generic macosx port.
3198 } else {
3199 runtime = ObjCRuntime(ObjCRuntime::MacOSX, VersionTuple());
3200 }
3201
3202 // -fgnu-runtime
3203 } else {
3204 assert(runtimeArg->getOption().matches(options::OPT_fgnu_runtime));
David Chisnalla422cd02012-07-04 10:37:03 +00003205 // Legacy behaviour is to target the gnustep runtime if we are i
3206 // non-fragile mode or the GCC runtime in fragile mode.
3207 if (isNonFragile)
David Chisnall891dac72012-10-16 15:11:55 +00003208 runtime = ObjCRuntime(ObjCRuntime::GNUstep, VersionTuple(1,6));
David Chisnalla422cd02012-07-04 10:37:03 +00003209 else
3210 runtime = ObjCRuntime(ObjCRuntime::GCC, VersionTuple());
John McCall260611a2012-06-20 06:18:46 +00003211 }
3212
3213 cmdArgs.push_back(args.MakeArgString(
3214 "-fobjc-runtime=" + runtime.getAsString()));
3215 return runtime;
3216}
3217
Daniel Dunbar20a9aa52010-05-20 21:30:13 +00003218void ClangAs::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar20a9aa52010-05-20 21:30:13 +00003219 const InputInfo &Output,
3220 const InputInfoList &Inputs,
3221 const ArgList &Args,
3222 const char *LinkingOutput) const {
Daniel Dunbar20a9aa52010-05-20 21:30:13 +00003223 ArgStringList CmdArgs;
3224
3225 assert(Inputs.size() == 1 && "Unexpected number of inputs.");
3226 const InputInfo &Input = Inputs[0];
3227
Rafael Espindoladbe80d92010-11-17 22:13:25 +00003228 // Don't warn about "clang -w -c foo.s"
3229 Args.ClaimAllArgs(options::OPT_w);
Rafael Espindola9c094fb2011-03-01 05:25:27 +00003230 // and "clang -emit-llvm -c foo.s"
3231 Args.ClaimAllArgs(options::OPT_emit_llvm);
3232 // and "clang -use-gold-plugin -c foo.s"
3233 Args.ClaimAllArgs(options::OPT_use_gold_plugin);
Rafael Espindoladbe80d92010-11-17 22:13:25 +00003234
Daniel Dunbar20a9aa52010-05-20 21:30:13 +00003235 // Invoke ourselves in -cc1as mode.
3236 //
3237 // FIXME: Implement custom jobs for internal actions.
3238 CmdArgs.push_back("-cc1as");
3239
3240 // Add the "effective" target triple.
3241 CmdArgs.push_back("-triple");
Chad Rosier61ab80a2011-09-20 20:44:06 +00003242 std::string TripleStr =
3243 getToolChain().ComputeEffectiveClangTriple(Args, Input.getType());
Daniel Dunbar20a9aa52010-05-20 21:30:13 +00003244 CmdArgs.push_back(Args.MakeArgString(TripleStr));
3245
3246 // Set the output mode, we currently only expect to be used as a real
3247 // assembler.
3248 CmdArgs.push_back("-filetype");
3249 CmdArgs.push_back("obj");
3250
Joerg Sonnenberger359cf922011-05-06 14:35:16 +00003251 if (UseRelaxAll(C, Args))
Daniel Dunbar469d40e2010-05-28 16:43:21 +00003252 CmdArgs.push_back("-relax-all");
Daniel Dunbar99298002010-05-27 06:18:05 +00003253
Jim Grosbachfc308292012-02-10 20:37:10 +00003254 // Add target specific cpu and features flags.
3255 switch(getToolChain().getTriple().getArch()) {
3256 default:
3257 break;
3258
3259 case llvm::Triple::arm:
3260 case llvm::Triple::thumb:
3261 AddARMTargetArgs(Args, CmdArgs);
3262 break;
3263 }
3264
Daniel Dunbar7f6f8c82011-03-17 17:37:29 +00003265 // Ignore explicit -force_cpusubtype_ALL option.
3266 (void) Args.hasArg(options::OPT_force__cpusubtype__ALL);
Daniel Dunbar20a9aa52010-05-20 21:30:13 +00003267
Eric Christopher8f0a4032012-01-10 00:38:01 +00003268 // Determine the original source input.
3269 const Action *SourceAction = &JA;
3270 while (SourceAction->getKind() != Action::InputClass) {
3271 assert(!SourceAction->getInputs().empty() && "unexpected root action!");
3272 SourceAction = SourceAction->getInputs()[0];
3273 }
3274
3275 // Forward -g, assuming we are dealing with an actual assembly file.
3276 if (SourceAction->getType() == types::TY_Asm ||
3277 SourceAction->getType() == types::TY_PP_Asm) {
3278 Args.ClaimAllArgs(options::OPT_g_Group);
3279 if (Arg *A = Args.getLastArg(options::OPT_g_Group))
3280 if (!A->getOption().matches(options::OPT_g0))
3281 CmdArgs.push_back("-g");
3282 }
Kevin Enderby567003e2011-12-22 19:31:58 +00003283
3284 // Optionally embed the -cc1as level arguments into the debug info, for build
3285 // analysis.
3286 if (getToolChain().UseDwarfDebugFlags()) {
3287 ArgStringList OriginalArgs;
3288 for (ArgList::const_iterator it = Args.begin(),
3289 ie = Args.end(); it != ie; ++it)
3290 (*it)->render(Args, OriginalArgs);
3291
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00003292 SmallString<256> Flags;
Kevin Enderby567003e2011-12-22 19:31:58 +00003293 const char *Exec = getToolChain().getDriver().getClangProgramPath();
3294 Flags += Exec;
3295 for (unsigned i = 0, e = OriginalArgs.size(); i != e; ++i) {
3296 Flags += " ";
3297 Flags += OriginalArgs[i];
3298 }
3299 CmdArgs.push_back("-dwarf-debug-flags");
3300 CmdArgs.push_back(Args.MakeArgString(Flags.str()));
3301 }
Daniel Dunbar20a9aa52010-05-20 21:30:13 +00003302
3303 // FIXME: Add -static support, once we have it.
3304
3305 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
3306 options::OPT_Xassembler);
Daniel Dunbar3df23252011-04-29 17:53:18 +00003307 Args.AddAllArgs(CmdArgs, options::OPT_mllvm);
Daniel Dunbar20a9aa52010-05-20 21:30:13 +00003308
3309 assert(Output.isFilename() && "Unexpected lipo output.");
3310 CmdArgs.push_back("-o");
3311 CmdArgs.push_back(Output.getFilename());
3312
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00003313 assert(Input.isFilename() && "Invalid input.");
3314 CmdArgs.push_back(Input.getFilename());
Daniel Dunbar20a9aa52010-05-20 21:30:13 +00003315
Daniel Dunbara001c1c2010-07-18 21:16:15 +00003316 const char *Exec = getToolChain().getDriver().getClangProgramPath();
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00003317 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbar20a9aa52010-05-20 21:30:13 +00003318}
3319
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003320void gcc::Common::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003321 const InputInfo &Output,
3322 const InputInfoList &Inputs,
Daniel Dunbar1d460332009-03-18 10:01:51 +00003323 const ArgList &Args,
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003324 const char *LinkingOutput) const {
Daniel Dunbaree788e72009-12-21 18:54:17 +00003325 const Driver &D = getToolChain().getDriver();
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003326 ArgStringList CmdArgs;
Daniel Dunbar47ac7d22009-03-18 06:00:36 +00003327
Daniel Dunbarc21c4852009-04-08 23:54:23 +00003328 for (ArgList::const_iterator
Daniel Dunbar1d460332009-03-18 10:01:51 +00003329 it = Args.begin(), ie = Args.end(); it != ie; ++it) {
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003330 Arg *A = *it;
Michael J. Spencer91e06da2012-10-19 22:37:06 +00003331 if (forwardToGCC(A->getOption())) {
Daniel Dunbar2dffe2d2010-08-03 16:14:14 +00003332 // Don't forward any -g arguments to assembly steps.
3333 if (isa<AssembleJobAction>(JA) &&
3334 A->getOption().matches(options::OPT_g_Group))
3335 continue;
3336
Daniel Dunbar75877192009-03-19 07:55:12 +00003337 // It is unfortunate that we have to claim here, as this means
3338 // we will basically never report anything interesting for
Daniel Dunbar6ecc7a92009-05-02 21:41:52 +00003339 // platforms using a generic gcc, even if we are just using gcc
3340 // to get to the assembler.
Daniel Dunbar75877192009-03-19 07:55:12 +00003341 A->claim();
Daniel Dunbar1d460332009-03-18 10:01:51 +00003342 A->render(Args, CmdArgs);
Daniel Dunbar75877192009-03-19 07:55:12 +00003343 }
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003344 }
Daniel Dunbarc21c4852009-04-08 23:54:23 +00003345
Daniel Dunbar82b51cc2010-01-25 22:35:08 +00003346 RenderExtraToolArgs(JA, CmdArgs);
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003347
3348 // If using a driver driver, force the arch.
Rafael Espindola64f7ad92012-10-07 04:44:33 +00003349 llvm::Triple::ArchType Arch = getToolChain().getArch();
Bob Wilson905c45f2011-10-14 05:03:44 +00003350 if (getToolChain().getTriple().isOSDarwin()) {
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003351 CmdArgs.push_back("-arch");
Daniel Dunbarbf54a062009-04-01 20:33:11 +00003352
3353 // FIXME: Remove these special cases.
Rafael Espindola64f7ad92012-10-07 04:44:33 +00003354 if (Arch == llvm::Triple::ppc)
Daniel Dunbar7cfe31a2009-05-22 02:21:04 +00003355 CmdArgs.push_back("ppc");
Rafael Espindola64f7ad92012-10-07 04:44:33 +00003356 else if (Arch == llvm::Triple::ppc64)
Daniel Dunbar7cfe31a2009-05-22 02:21:04 +00003357 CmdArgs.push_back("ppc64");
3358 else
Rafael Espindola64f7ad92012-10-07 04:44:33 +00003359 CmdArgs.push_back(Args.MakeArgString(getToolChain().getArchName()));
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003360 }
3361
Daniel Dunbar6ecc7a92009-05-02 21:41:52 +00003362 // Try to force gcc to match the tool chain we want, if we recognize
3363 // the arch.
Daniel Dunbar7cfe31a2009-05-22 02:21:04 +00003364 //
3365 // FIXME: The triple class should directly provide the information we want
3366 // here.
Rafael Espindola64f7ad92012-10-07 04:44:33 +00003367 if (Arch == llvm::Triple::x86 || Arch == llvm::Triple::ppc)
Daniel Dunbar6ecc7a92009-05-02 21:41:52 +00003368 CmdArgs.push_back("-m32");
Rafael Espindola64f7ad92012-10-07 04:44:33 +00003369 else if (Arch == llvm::Triple::x86_64 || Arch == llvm::Triple::x86_64)
Daniel Dunbar6ecc7a92009-05-02 21:41:52 +00003370 CmdArgs.push_back("-m64");
3371
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00003372 if (Output.isFilename()) {
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003373 CmdArgs.push_back("-o");
Daniel Dunbar115a7922009-03-19 07:29:38 +00003374 CmdArgs.push_back(Output.getFilename());
3375 } else {
3376 assert(Output.isNothing() && "Unexpected output");
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003377 CmdArgs.push_back("-fsyntax-only");
Daniel Dunbar115a7922009-03-19 07:29:38 +00003378 }
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003379
Tony Linthicum96319392011-12-12 21:14:55 +00003380 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
3381 options::OPT_Xassembler);
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003382
3383 // Only pass -x if gcc will understand it; otherwise hope gcc
3384 // understands the suffix correctly. The main use case this would go
3385 // wrong in is for linker inputs if they happened to have an odd
3386 // suffix; really the only way to get this to happen is a command
3387 // like '-x foobar a.c' which will treat a.c like a linker input.
3388 //
3389 // FIXME: For the linker case specifically, can we safely convert
3390 // inputs into '-Wl,' options?
3391 for (InputInfoList::const_iterator
3392 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
3393 const InputInfo &II = *it;
Daniel Dunbara8304f62009-05-02 20:14:53 +00003394
Daniel Dunbar5915fbf2009-09-01 16:57:46 +00003395 // Don't try to pass LLVM or AST inputs to a generic gcc.
Daniel Dunbar6c6424b2010-06-07 23:28:45 +00003396 if (II.getType() == types::TY_LLVM_IR || II.getType() == types::TY_LTO_IR ||
3397 II.getType() == types::TY_LLVM_BC || II.getType() == types::TY_LTO_BC)
Chris Lattner5f9e2722011-07-23 10:55:15 +00003398 D.Diag(diag::err_drv_no_linker_llvm_support)
Daniel Dunbar88137642009-09-09 22:32:48 +00003399 << getToolChain().getTripleString();
Daniel Dunbar5915fbf2009-09-01 16:57:46 +00003400 else if (II.getType() == types::TY_AST)
Chris Lattner5f9e2722011-07-23 10:55:15 +00003401 D.Diag(diag::err_drv_no_ast_support)
Daniel Dunbar88137642009-09-09 22:32:48 +00003402 << getToolChain().getTripleString();
Daniel Dunbara8304f62009-05-02 20:14:53 +00003403
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003404 if (types::canTypeBeUserSpecified(II.getType())) {
3405 CmdArgs.push_back("-x");
3406 CmdArgs.push_back(types::getTypeName(II.getType()));
3407 }
3408
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00003409 if (II.isFilename())
Daniel Dunbar115a7922009-03-19 07:29:38 +00003410 CmdArgs.push_back(II.getFilename());
Daniel Dunbar48f99942010-09-25 18:10:05 +00003411 else {
3412 const Arg &A = II.getInputArg();
3413
3414 // Reverse translate some rewritten options.
3415 if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx)) {
3416 CmdArgs.push_back("-lstdc++");
3417 continue;
3418 }
3419
Daniel Dunbar115a7922009-03-19 07:29:38 +00003420 // Don't render as input, we need gcc to do the translations.
Daniel Dunbar48f99942010-09-25 18:10:05 +00003421 A.render(Args, CmdArgs);
3422 }
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003423 }
3424
Dylan Noblesmithb8a3e812011-04-09 13:31:59 +00003425 const std::string customGCCName = D.getCCCGenericGCCName();
3426 const char *GCCName;
3427 if (!customGCCName.empty())
3428 GCCName = customGCCName.c_str();
3429 else if (D.CCCIsCXX) {
Dylan Noblesmithb8a3e812011-04-09 13:31:59 +00003430 GCCName = "g++";
Dylan Noblesmithb8a3e812011-04-09 13:31:59 +00003431 } else
3432 GCCName = "gcc";
3433
Daniel Dunbarc21c4852009-04-08 23:54:23 +00003434 const char *Exec =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00003435 Args.MakeArgString(getToolChain().GetProgramPath(GCCName));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00003436 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbar47ac7d22009-03-18 06:00:36 +00003437}
3438
Daniel Dunbar82b51cc2010-01-25 22:35:08 +00003439void gcc::Preprocess::RenderExtraToolArgs(const JobAction &JA,
3440 ArgStringList &CmdArgs) const {
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003441 CmdArgs.push_back("-E");
Daniel Dunbar47ac7d22009-03-18 06:00:36 +00003442}
3443
Daniel Dunbar82b51cc2010-01-25 22:35:08 +00003444void gcc::Precompile::RenderExtraToolArgs(const JobAction &JA,
3445 ArgStringList &CmdArgs) const {
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003446 // The type is good enough.
Daniel Dunbar47ac7d22009-03-18 06:00:36 +00003447}
3448
Daniel Dunbar82b51cc2010-01-25 22:35:08 +00003449void gcc::Compile::RenderExtraToolArgs(const JobAction &JA,
3450 ArgStringList &CmdArgs) const {
Daniel Dunbar64952502010-02-11 03:16:21 +00003451 const Driver &D = getToolChain().getDriver();
3452
Daniel Dunbar82b51cc2010-01-25 22:35:08 +00003453 // If -flto, etc. are present then make sure not to force assembly output.
Daniel Dunbar6c6424b2010-06-07 23:28:45 +00003454 if (JA.getType() == types::TY_LLVM_IR || JA.getType() == types::TY_LTO_IR ||
3455 JA.getType() == types::TY_LLVM_BC || JA.getType() == types::TY_LTO_BC)
Daniel Dunbar82b51cc2010-01-25 22:35:08 +00003456 CmdArgs.push_back("-c");
Daniel Dunbar64952502010-02-11 03:16:21 +00003457 else {
3458 if (JA.getType() != types::TY_PP_Asm)
Chris Lattner5f9e2722011-07-23 10:55:15 +00003459 D.Diag(diag::err_drv_invalid_gcc_output_type)
Daniel Dunbar64952502010-02-11 03:16:21 +00003460 << getTypeName(JA.getType());
Michael J. Spencer20249a12010-10-21 03:16:25 +00003461
Daniel Dunbar82b51cc2010-01-25 22:35:08 +00003462 CmdArgs.push_back("-S");
Daniel Dunbar64952502010-02-11 03:16:21 +00003463 }
Daniel Dunbar47ac7d22009-03-18 06:00:36 +00003464}
3465
Daniel Dunbar82b51cc2010-01-25 22:35:08 +00003466void gcc::Assemble::RenderExtraToolArgs(const JobAction &JA,
3467 ArgStringList &CmdArgs) const {
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003468 CmdArgs.push_back("-c");
Daniel Dunbar47ac7d22009-03-18 06:00:36 +00003469}
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003470
Daniel Dunbar82b51cc2010-01-25 22:35:08 +00003471void gcc::Link::RenderExtraToolArgs(const JobAction &JA,
3472 ArgStringList &CmdArgs) const {
Daniel Dunbarb488c1d2009-03-18 08:07:30 +00003473 // The types are (hopefully) good enough.
3474}
3475
Tony Linthicum96319392011-12-12 21:14:55 +00003476// Hexagon tools start.
3477void hexagon::Assemble::RenderExtraToolArgs(const JobAction &JA,
3478 ArgStringList &CmdArgs) const {
3479
3480}
3481void hexagon::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
3482 const InputInfo &Output,
3483 const InputInfoList &Inputs,
3484 const ArgList &Args,
3485 const char *LinkingOutput) const {
3486
3487 const Driver &D = getToolChain().getDriver();
3488 ArgStringList CmdArgs;
3489
3490 std::string MarchString = "-march=";
Matthew Curtis67814152012-12-06 14:16:43 +00003491 MarchString += toolchains::Hexagon_TC::GetTargetCPU(Args);
Tony Linthicum96319392011-12-12 21:14:55 +00003492 CmdArgs.push_back(Args.MakeArgString(MarchString));
3493
3494 RenderExtraToolArgs(JA, CmdArgs);
3495
3496 if (Output.isFilename()) {
3497 CmdArgs.push_back("-o");
3498 CmdArgs.push_back(Output.getFilename());
3499 } else {
3500 assert(Output.isNothing() && "Unexpected output");
3501 CmdArgs.push_back("-fsyntax-only");
3502 }
3503
Matthew Curtis33c95f12012-12-06 17:49:03 +00003504 std::string SmallDataThreshold = GetHexagonSmallDataThresholdValue(Args);
3505 if (!SmallDataThreshold.empty())
3506 CmdArgs.push_back(
3507 Args.MakeArgString(std::string("-G") + SmallDataThreshold));
Tony Linthicum96319392011-12-12 21:14:55 +00003508
3509 // Only pass -x if gcc will understand it; otherwise hope gcc
3510 // understands the suffix correctly. The main use case this would go
3511 // wrong in is for linker inputs if they happened to have an odd
3512 // suffix; really the only way to get this to happen is a command
3513 // like '-x foobar a.c' which will treat a.c like a linker input.
3514 //
3515 // FIXME: For the linker case specifically, can we safely convert
3516 // inputs into '-Wl,' options?
3517 for (InputInfoList::const_iterator
3518 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
3519 const InputInfo &II = *it;
3520
3521 // Don't try to pass LLVM or AST inputs to a generic gcc.
3522 if (II.getType() == types::TY_LLVM_IR || II.getType() == types::TY_LTO_IR ||
3523 II.getType() == types::TY_LLVM_BC || II.getType() == types::TY_LTO_BC)
3524 D.Diag(clang::diag::err_drv_no_linker_llvm_support)
3525 << getToolChain().getTripleString();
3526 else if (II.getType() == types::TY_AST)
3527 D.Diag(clang::diag::err_drv_no_ast_support)
3528 << getToolChain().getTripleString();
3529
3530 if (II.isFilename())
3531 CmdArgs.push_back(II.getFilename());
3532 else
3533 // Don't render as input, we need gcc to do the translations. FIXME: Pranav: What is this ?
3534 II.getInputArg().render(Args, CmdArgs);
3535 }
3536
3537 const char *GCCName = "hexagon-as";
3538 const char *Exec =
3539 Args.MakeArgString(getToolChain().GetProgramPath(GCCName));
3540 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
3541
3542}
3543void hexagon::Link::RenderExtraToolArgs(const JobAction &JA,
3544 ArgStringList &CmdArgs) const {
3545 // The types are (hopefully) good enough.
3546}
3547
3548void hexagon::Link::ConstructJob(Compilation &C, const JobAction &JA,
3549 const InputInfo &Output,
3550 const InputInfoList &Inputs,
3551 const ArgList &Args,
3552 const char *LinkingOutput) const {
3553
Matthew Curtis5fdf3502012-12-06 15:46:07 +00003554 const toolchains::Hexagon_TC& ToolChain =
3555 static_cast<const toolchains::Hexagon_TC&>(getToolChain());
3556 const Driver &D = ToolChain.getDriver();
3557
Tony Linthicum96319392011-12-12 21:14:55 +00003558 ArgStringList CmdArgs;
3559
Matthew Curtis5fdf3502012-12-06 15:46:07 +00003560 //----------------------------------------------------------------------------
3561 //
3562 //----------------------------------------------------------------------------
3563 bool hasStaticArg = Args.hasArg(options::OPT_static);
3564 bool buildingLib = Args.hasArg(options::OPT_shared);
Matthew Curtis33c95f12012-12-06 17:49:03 +00003565 bool buildPIE = Args.hasArg(options::OPT_pie);
Matthew Curtis5fdf3502012-12-06 15:46:07 +00003566 bool incStdLib = !Args.hasArg(options::OPT_nostdlib);
3567 bool incStartFiles = !Args.hasArg(options::OPT_nostartfiles);
3568 bool incDefLibs = !Args.hasArg(options::OPT_nodefaultlibs);
3569 bool useShared = buildingLib && !hasStaticArg;
Tony Linthicum96319392011-12-12 21:14:55 +00003570
Matthew Curtis5fdf3502012-12-06 15:46:07 +00003571 //----------------------------------------------------------------------------
3572 // Silence warnings for various options
3573 //----------------------------------------------------------------------------
Tony Linthicum96319392011-12-12 21:14:55 +00003574
Matthew Curtis5fdf3502012-12-06 15:46:07 +00003575 Args.ClaimAllArgs(options::OPT_g_Group);
3576 Args.ClaimAllArgs(options::OPT_emit_llvm);
3577 Args.ClaimAllArgs(options::OPT_w); // Other warning options are already
3578 // handled somewhere else.
3579 Args.ClaimAllArgs(options::OPT_static_libgcc);
3580
3581 //----------------------------------------------------------------------------
3582 //
3583 //----------------------------------------------------------------------------
3584 for (std::vector<std::string>::const_iterator i = ToolChain.ExtraOpts.begin(),
3585 e = ToolChain.ExtraOpts.end();
3586 i != e; ++i)
3587 CmdArgs.push_back(i->c_str());
Tony Linthicum96319392011-12-12 21:14:55 +00003588
Matthew Curtis67814152012-12-06 14:16:43 +00003589 std::string MarchString = toolchains::Hexagon_TC::GetTargetCPU(Args);
3590 CmdArgs.push_back(Args.MakeArgString("-m" + MarchString));
Sebastian Pop43115d42012-01-13 20:37:10 +00003591
Matthew Curtis5fdf3502012-12-06 15:46:07 +00003592 if (buildingLib) {
3593 CmdArgs.push_back("-shared");
3594 CmdArgs.push_back("-call_shared"); // should be the default, but doing as
3595 // hexagon-gcc does
Tony Linthicum96319392011-12-12 21:14:55 +00003596 }
3597
Matthew Curtis5fdf3502012-12-06 15:46:07 +00003598 if (hasStaticArg)
3599 CmdArgs.push_back("-static");
Tony Linthicum96319392011-12-12 21:14:55 +00003600
Matthew Curtis33c95f12012-12-06 17:49:03 +00003601 if (buildPIE && !buildingLib)
3602 CmdArgs.push_back("-pie");
3603
3604 std::string SmallDataThreshold = GetHexagonSmallDataThresholdValue(Args);
3605 if (!SmallDataThreshold.empty()) {
3606 CmdArgs.push_back(
3607 Args.MakeArgString(std::string("-G") + SmallDataThreshold));
3608 }
3609
Matthew Curtis5fdf3502012-12-06 15:46:07 +00003610 //----------------------------------------------------------------------------
3611 //
3612 //----------------------------------------------------------------------------
3613 CmdArgs.push_back("-o");
3614 CmdArgs.push_back(Output.getFilename());
Tony Linthicum96319392011-12-12 21:14:55 +00003615
Matthew Curtis5fdf3502012-12-06 15:46:07 +00003616 const std::string MarchSuffix = "/" + MarchString;
3617 const std::string G0Suffix = "/G0";
3618 const std::string MarchG0Suffix = MarchSuffix + G0Suffix;
3619 const std::string RootDir = toolchains::Hexagon_TC::GetGnuDir(D.InstalledDir)
3620 + "/";
3621 const std::string StartFilesDir = RootDir
3622 + "hexagon/lib"
3623 + (buildingLib
3624 ? MarchG0Suffix : MarchSuffix);
3625
3626 //----------------------------------------------------------------------------
3627 // moslib
3628 //----------------------------------------------------------------------------
3629 std::vector<std::string> oslibs;
3630 bool hasStandalone= false;
3631
3632 for (arg_iterator it = Args.filtered_begin(options::OPT_moslib_EQ),
3633 ie = Args.filtered_end(); it != ie; ++it) {
3634 (*it)->claim();
3635 oslibs.push_back((*it)->getValue());
3636 hasStandalone = hasStandalone || (oslibs.back() == "standalone");
Tony Linthicum96319392011-12-12 21:14:55 +00003637 }
Matthew Curtis5fdf3502012-12-06 15:46:07 +00003638 if (oslibs.empty()) {
3639 oslibs.push_back("standalone");
3640 hasStandalone = true;
3641 }
Tony Linthicum96319392011-12-12 21:14:55 +00003642
Matthew Curtis5fdf3502012-12-06 15:46:07 +00003643 //----------------------------------------------------------------------------
3644 // Start Files
3645 //----------------------------------------------------------------------------
3646 if (incStdLib && incStartFiles) {
3647
3648 if (!buildingLib) {
3649 if (hasStandalone) {
3650 CmdArgs.push_back(
3651 Args.MakeArgString(StartFilesDir + "/crt0_standalone.o"));
3652 }
3653 CmdArgs.push_back(Args.MakeArgString(StartFilesDir + "/crt0.o"));
3654 }
3655 std::string initObj = useShared ? "/initS.o" : "/init.o";
3656 CmdArgs.push_back(Args.MakeArgString(StartFilesDir + initObj));
3657 }
3658
3659 //----------------------------------------------------------------------------
3660 // Library Search Paths
3661 //----------------------------------------------------------------------------
3662 const ToolChain::path_list &LibPaths = ToolChain.getFilePaths();
3663 for (ToolChain::path_list::const_iterator
3664 i = LibPaths.begin(),
3665 e = LibPaths.end();
3666 i != e;
3667 ++i)
3668 CmdArgs.push_back(Args.MakeArgString(StringRef("-L") + *i));
3669
3670 //----------------------------------------------------------------------------
3671 //
3672 //----------------------------------------------------------------------------
3673 Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
3674 Args.AddAllArgs(CmdArgs, options::OPT_e);
3675 Args.AddAllArgs(CmdArgs, options::OPT_s);
3676 Args.AddAllArgs(CmdArgs, options::OPT_t);
3677 Args.AddAllArgs(CmdArgs, options::OPT_u_Group);
3678
3679 AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs);
3680
3681 //----------------------------------------------------------------------------
3682 // Libraries
3683 //----------------------------------------------------------------------------
3684 if (incStdLib && incDefLibs) {
3685 if (D.CCCIsCXX) {
3686 ToolChain.AddCXXStdlibLibArgs(Args, CmdArgs);
3687 CmdArgs.push_back("-lm");
3688 }
3689
3690 CmdArgs.push_back("--start-group");
3691
3692 if (!buildingLib) {
3693 for(std::vector<std::string>::iterator i = oslibs.begin(),
3694 e = oslibs.end(); i != e; ++i)
3695 CmdArgs.push_back(Args.MakeArgString("-l" + *i));
3696 CmdArgs.push_back("-lc");
3697 }
3698 CmdArgs.push_back("-lgcc");
3699
3700 CmdArgs.push_back("--end-group");
3701 }
3702
3703 //----------------------------------------------------------------------------
3704 // End files
3705 //----------------------------------------------------------------------------
3706 if (incStdLib && incStartFiles) {
3707 std::string finiObj = useShared ? "/finiS.o" : "/fini.o";
3708 CmdArgs.push_back(Args.MakeArgString(StartFilesDir + finiObj));
3709 }
3710
3711 std::string Linker = ToolChain.GetProgramPath("hexagon-ld");
3712 C.addCommand(
3713 new Command(
3714 JA, *this,
3715 Args.MakeArgString(Linker), CmdArgs));
Tony Linthicum96319392011-12-12 21:14:55 +00003716}
3717// Hexagon tools end.
3718
Rafael Espindolacfed8282012-10-31 18:51:07 +00003719llvm::Triple::ArchType darwin::getArchTypeForDarwinArchName(StringRef Str) {
3720 // See arch(3) and llvm-gcc's driver-driver.c. We don't implement support for
3721 // archs which Darwin doesn't use.
3722
3723 // The matching this routine does is fairly pointless, since it is neither the
3724 // complete architecture list, nor a reasonable subset. The problem is that
3725 // historically the driver driver accepts this and also ties its -march=
3726 // handling to the architecture name, so we need to be careful before removing
3727 // support for it.
3728
3729 // This code must be kept in sync with Clang's Darwin specific argument
3730 // translation.
3731
3732 return llvm::StringSwitch<llvm::Triple::ArchType>(Str)
3733 .Cases("ppc", "ppc601", "ppc603", "ppc604", "ppc604e", llvm::Triple::ppc)
3734 .Cases("ppc750", "ppc7400", "ppc7450", "ppc970", llvm::Triple::ppc)
3735 .Case("ppc64", llvm::Triple::ppc64)
3736 .Cases("i386", "i486", "i486SX", "i586", "i686", llvm::Triple::x86)
3737 .Cases("pentium", "pentpro", "pentIIm3", "pentIIm5", "pentium4",
3738 llvm::Triple::x86)
3739 .Case("x86_64", llvm::Triple::x86_64)
3740 // This is derived from the driver driver.
3741 .Cases("arm", "armv4t", "armv5", "armv6", llvm::Triple::arm)
3742 .Cases("armv7", "armv7f", "armv7k", "armv7s", "xscale", llvm::Triple::arm)
3743 .Case("r600", llvm::Triple::r600)
3744 .Case("nvptx", llvm::Triple::nvptx)
3745 .Case("nvptx64", llvm::Triple::nvptx64)
3746 .Case("amdil", llvm::Triple::amdil)
3747 .Case("spir", llvm::Triple::spir)
3748 .Default(llvm::Triple::UnknownArch);
3749}
Tony Linthicum96319392011-12-12 21:14:55 +00003750
Bob Wilson66b8a662012-11-23 06:14:39 +00003751const char *Clang::getBaseInputName(const ArgList &Args,
3752 const InputInfoList &Inputs) {
Michael J. Spencer472ccff2010-12-18 00:19:12 +00003753 return Args.MakeArgString(
3754 llvm::sys::path::filename(Inputs[0].getBaseInput()));
Daniel Dunbara3ec60e2009-03-29 18:40:18 +00003755}
3756
Bob Wilson66b8a662012-11-23 06:14:39 +00003757const char *Clang::getBaseInputStem(const ArgList &Args,
3758 const InputInfoList &Inputs) {
Daniel Dunbara3ec60e2009-03-29 18:40:18 +00003759 const char *Str = getBaseInputName(Args, Inputs);
3760
Chris Lattner657ca662011-01-16 08:14:11 +00003761 if (const char *End = strrchr(Str, '.'))
Daniel Dunbar88137642009-09-09 22:32:48 +00003762 return Args.MakeArgString(std::string(Str, End));
Daniel Dunbara3ec60e2009-03-29 18:40:18 +00003763
3764 return Str;
3765}
3766
Bob Wilson66b8a662012-11-23 06:14:39 +00003767const char *Clang::getDependencyFileName(const ArgList &Args,
3768 const InputInfoList &Inputs) {
Daniel Dunbara3ec60e2009-03-29 18:40:18 +00003769 // FIXME: Think about this more.
3770 std::string Res;
3771
3772 if (Arg *OutputOpt = Args.getLastArg(options::OPT_o)) {
Richard Smith1d489cf2012-11-01 04:30:05 +00003773 std::string Str(OutputOpt->getValue());
Daniel Dunbara3ec60e2009-03-29 18:40:18 +00003774 Res = Str.substr(0, Str.rfind('.'));
Chad Rosier30601782011-08-17 23:08:45 +00003775 } else {
Bob Wilson66b8a662012-11-23 06:14:39 +00003776 Res = getBaseInputStem(Args, Inputs);
Chad Rosier30601782011-08-17 23:08:45 +00003777 }
Daniel Dunbar88137642009-09-09 22:32:48 +00003778 return Args.MakeArgString(Res + ".d");
Daniel Dunbara3ec60e2009-03-29 18:40:18 +00003779}
3780
Daniel Dunbar8cac5f72009-03-20 16:06:39 +00003781void darwin::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00003782 const InputInfo &Output,
Daniel Dunbarc21c4852009-04-08 23:54:23 +00003783 const InputInfoList &Inputs,
3784 const ArgList &Args,
Daniel Dunbar8cac5f72009-03-20 16:06:39 +00003785 const char *LinkingOutput) const {
3786 ArgStringList CmdArgs;
3787
3788 assert(Inputs.size() == 1 && "Unexpected number of inputs.");
3789 const InputInfo &Input = Inputs[0];
3790
Daniel Dunbar34bac1f2011-04-12 23:59:20 +00003791 // Determine the original source input.
3792 const Action *SourceAction = &JA;
3793 while (SourceAction->getKind() != Action::InputClass) {
3794 assert(!SourceAction->getInputs().empty() && "unexpected root action!");
3795 SourceAction = SourceAction->getInputs()[0];
3796 }
3797
3798 // Forward -g, assuming we are dealing with an actual assembly file.
Eric Christopher88b7cf02011-08-19 00:30:14 +00003799 if (SourceAction->getType() == types::TY_Asm ||
Daniel Dunbar34bac1f2011-04-12 23:59:20 +00003800 SourceAction->getType() == types::TY_PP_Asm) {
Daniel Dunbar8e4fea62009-04-01 00:27:44 +00003801 if (Args.hasArg(options::OPT_gstabs))
3802 CmdArgs.push_back("--gstabs");
3803 else if (Args.hasArg(options::OPT_g_Group))
Bob Wilson591ff152011-11-02 05:10:45 +00003804 CmdArgs.push_back("-g");
Daniel Dunbar8e4fea62009-04-01 00:27:44 +00003805 }
Daniel Dunbarc21c4852009-04-08 23:54:23 +00003806
Daniel Dunbar8cac5f72009-03-20 16:06:39 +00003807 // Derived from asm spec.
Daniel Dunbarcc6f8032009-09-09 18:36:27 +00003808 AddDarwinArch(Args, CmdArgs);
Daniel Dunbar8cac5f72009-03-20 16:06:39 +00003809
Daniel Dunbarf5438e32010-07-22 01:47:22 +00003810 // Use -force_cpusubtype_ALL on x86 by default.
3811 if (getToolChain().getTriple().getArch() == llvm::Triple::x86 ||
3812 getToolChain().getTriple().getArch() == llvm::Triple::x86_64 ||
Daniel Dunbarcc6f8032009-09-09 18:36:27 +00003813 Args.hasArg(options::OPT_force__cpusubtype__ALL))
3814 CmdArgs.push_back("-force_cpusubtype_ALL");
3815
Daniel Dunbar0e2679d2009-08-24 22:26:16 +00003816 if (getToolChain().getTriple().getArch() != llvm::Triple::x86_64 &&
Daniel Dunbar7a0c0642012-10-15 22:23:53 +00003817 (((Args.hasArg(options::OPT_mkernel) ||
3818 Args.hasArg(options::OPT_fapple_kext)) &&
3819 (!getDarwinToolChain().isTargetIPhoneOS() ||
3820 getDarwinToolChain().isIPhoneOSVersionLT(6, 0))) ||
3821 Args.hasArg(options::OPT_static)))
Daniel Dunbarc21c4852009-04-08 23:54:23 +00003822 CmdArgs.push_back("-static");
3823
Daniel Dunbar8cac5f72009-03-20 16:06:39 +00003824 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
3825 options::OPT_Xassembler);
3826
3827 assert(Output.isFilename() && "Unexpected lipo output.");
3828 CmdArgs.push_back("-o");
3829 CmdArgs.push_back(Output.getFilename());
3830
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00003831 assert(Input.isFilename() && "Invalid input.");
3832 CmdArgs.push_back(Input.getFilename());
Daniel Dunbar8cac5f72009-03-20 16:06:39 +00003833
3834 // asm_final spec is empty.
3835
Daniel Dunbarc21c4852009-04-08 23:54:23 +00003836 const char *Exec =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00003837 Args.MakeArgString(getToolChain().GetProgramPath("as"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00003838 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbar8cac5f72009-03-20 16:06:39 +00003839}
Daniel Dunbarff7488d2009-03-20 00:52:38 +00003840
David Blaikie99ba9e32011-12-20 02:48:34 +00003841void darwin::DarwinTool::anchor() {}
3842
Daniel Dunbarfbefe6b2009-09-09 18:36:20 +00003843void darwin::DarwinTool::AddDarwinArch(const ArgList &Args,
3844 ArgStringList &CmdArgs) const {
Chris Lattner5f9e2722011-07-23 10:55:15 +00003845 StringRef ArchName = getDarwinToolChain().getDarwinArchName(Args);
Daniel Dunbareeff4062010-01-22 02:04:58 +00003846
Daniel Dunbar02633b52009-03-26 16:23:12 +00003847 // Derived from darwin_arch spec.
3848 CmdArgs.push_back("-arch");
Daniel Dunbareeff4062010-01-22 02:04:58 +00003849 CmdArgs.push_back(Args.MakeArgString(ArchName));
Daniel Dunbar78dbd582009-09-04 18:35:31 +00003850
Daniel Dunbareeff4062010-01-22 02:04:58 +00003851 // FIXME: Is this needed anymore?
3852 if (ArchName == "arm")
Daniel Dunbar78dbd582009-09-04 18:35:31 +00003853 CmdArgs.push_back("-force_cpusubtype_ALL");
Daniel Dunbar02633b52009-03-26 16:23:12 +00003854}
3855
Bill Wendling6acf8b42012-10-02 18:02:50 +00003856bool darwin::Link::NeedsTempPath(const InputInfoList &Inputs) const {
3857 // We only need to generate a temp path for LTO if we aren't compiling object
3858 // files. When compiling source files, we run 'dsymutil' after linking. We
3859 // don't run 'dsymutil' when compiling object files.
3860 for (InputInfoList::const_iterator
3861 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it)
3862 if (it->getType() != types::TY_Object)
3863 return true;
3864
3865 return false;
3866}
3867
Daniel Dunbar748de8e2010-09-09 21:51:05 +00003868void darwin::Link::AddLinkArgs(Compilation &C,
3869 const ArgList &Args,
Bill Wendling6acf8b42012-10-02 18:02:50 +00003870 ArgStringList &CmdArgs,
3871 const InputInfoList &Inputs) const {
Daniel Dunbaree788e72009-12-21 18:54:17 +00003872 const Driver &D = getToolChain().getDriver();
Daniel Dunbarce911f52011-04-28 21:23:41 +00003873 const toolchains::Darwin &DarwinTC = getDarwinToolChain();
Daniel Dunbar02633b52009-03-26 16:23:12 +00003874
Daniel Dunbarb18dc5b2010-08-11 23:07:50 +00003875 unsigned Version[3] = { 0, 0, 0 };
3876 if (Arg *A = Args.getLastArg(options::OPT_mlinker_version_EQ)) {
3877 bool HadExtra;
Richard Smith1d489cf2012-11-01 04:30:05 +00003878 if (!Driver::GetReleaseVersion(A->getValue(), Version[0],
Daniel Dunbarb18dc5b2010-08-11 23:07:50 +00003879 Version[1], Version[2], HadExtra) ||
3880 HadExtra)
Chris Lattner5f9e2722011-07-23 10:55:15 +00003881 D.Diag(diag::err_drv_invalid_version_number)
Daniel Dunbarb18dc5b2010-08-11 23:07:50 +00003882 << A->getAsString(Args);
3883 }
3884
3885 // Newer linkers support -demangle, pass it if supported and not disabled by
3886 // the user.
Daniel Dunbard2d20882012-01-04 21:45:27 +00003887 if (Version[0] >= 100 && !Args.hasArg(options::OPT_Z_Xlinker__no_demangle)) {
Daniel Dunbarbcf1da82010-09-07 17:07:49 +00003888 // Don't pass -demangle to ld_classic.
3889 //
3890 // FIXME: This is a temporary workaround, ld should be handling this.
3891 bool UsesLdClassic = (getToolChain().getArch() == llvm::Triple::x86 &&
3892 Args.hasArg(options::OPT_static));
Daniel Dunbar9ced7042010-09-07 17:50:41 +00003893 if (getToolChain().getArch() == llvm::Triple::x86) {
3894 for (arg_iterator it = Args.filtered_begin(options::OPT_Xlinker,
3895 options::OPT_Wl_COMMA),
3896 ie = Args.filtered_end(); it != ie; ++it) {
3897 const Arg *A = *it;
3898 for (unsigned i = 0, e = A->getNumValues(); i != e; ++i)
Richard Smith1d489cf2012-11-01 04:30:05 +00003899 if (StringRef(A->getValue(i)) == "-kext")
Daniel Dunbar9ced7042010-09-07 17:50:41 +00003900 UsesLdClassic = true;
3901 }
3902 }
Daniel Dunbarbcf1da82010-09-07 17:07:49 +00003903 if (!UsesLdClassic)
3904 CmdArgs.push_back("-demangle");
Daniel Dunbarb18dc5b2010-08-11 23:07:50 +00003905 }
3906
Bill Wendlingc35f9082012-11-16 23:03:00 +00003907 // If we are using LTO, then automatically create a temporary file path for
3908 // the linker to use, so that it's lifetime will extend past a possible
3909 // dsymutil step.
3910 if (Version[0] >= 116 && D.IsUsingLTO(Args) && NeedsTempPath(Inputs)) {
3911 const char *TmpPath = C.getArgs().MakeArgString(
3912 D.GetTemporaryPath("cc", types::getTypeTempSuffix(types::TY_Object)));
3913 C.addTempFile(TmpPath);
3914 CmdArgs.push_back("-object_path_lto");
3915 CmdArgs.push_back(TmpPath);
Daniel Dunbar5bfa6562011-06-21 20:55:11 +00003916 }
3917
Daniel Dunbar02633b52009-03-26 16:23:12 +00003918 // Derived from the "link" spec.
3919 Args.AddAllArgs(CmdArgs, options::OPT_static);
3920 if (!Args.hasArg(options::OPT_static))
3921 CmdArgs.push_back("-dynamic");
3922 if (Args.hasArg(options::OPT_fgnu_runtime)) {
3923 // FIXME: gcc replaces -lobjc in forward args with -lobjc-gnu
3924 // here. How do we wish to handle such things?
3925 }
Daniel Dunbarc21c4852009-04-08 23:54:23 +00003926
Daniel Dunbar02633b52009-03-26 16:23:12 +00003927 if (!Args.hasArg(options::OPT_dynamiclib)) {
Daniel Dunbara6d38492010-01-22 02:04:52 +00003928 AddDarwinArch(Args, CmdArgs);
Daniel Dunbara6d38492010-01-22 02:04:52 +00003929 // FIXME: Why do this only on this path?
Daniel Dunbar8917dd42010-01-22 03:37:33 +00003930 Args.AddLastArg(CmdArgs, options::OPT_force__cpusubtype__ALL);
Daniel Dunbar02633b52009-03-26 16:23:12 +00003931
3932 Args.AddLastArg(CmdArgs, options::OPT_bundle);
3933 Args.AddAllArgs(CmdArgs, options::OPT_bundle__loader);
3934 Args.AddAllArgs(CmdArgs, options::OPT_client__name);
3935
3936 Arg *A;
3937 if ((A = Args.getLastArg(options::OPT_compatibility__version)) ||
3938 (A = Args.getLastArg(options::OPT_current__version)) ||
3939 (A = Args.getLastArg(options::OPT_install__name)))
Chris Lattner5f9e2722011-07-23 10:55:15 +00003940 D.Diag(diag::err_drv_argument_only_allowed_with)
Daniel Dunbar02633b52009-03-26 16:23:12 +00003941 << A->getAsString(Args) << "-dynamiclib";
3942
3943 Args.AddLastArg(CmdArgs, options::OPT_force__flat__namespace);
3944 Args.AddLastArg(CmdArgs, options::OPT_keep__private__externs);
3945 Args.AddLastArg(CmdArgs, options::OPT_private__bundle);
3946 } else {
3947 CmdArgs.push_back("-dylib");
3948
3949 Arg *A;
3950 if ((A = Args.getLastArg(options::OPT_bundle)) ||
3951 (A = Args.getLastArg(options::OPT_bundle__loader)) ||
3952 (A = Args.getLastArg(options::OPT_client__name)) ||
3953 (A = Args.getLastArg(options::OPT_force__flat__namespace)) ||
3954 (A = Args.getLastArg(options::OPT_keep__private__externs)) ||
3955 (A = Args.getLastArg(options::OPT_private__bundle)))
Chris Lattner5f9e2722011-07-23 10:55:15 +00003956 D.Diag(diag::err_drv_argument_not_allowed_with)
Daniel Dunbar02633b52009-03-26 16:23:12 +00003957 << A->getAsString(Args) << "-dynamiclib";
Daniel Dunbarc21c4852009-04-08 23:54:23 +00003958
Daniel Dunbar02633b52009-03-26 16:23:12 +00003959 Args.AddAllArgsTranslated(CmdArgs, options::OPT_compatibility__version,
3960 "-dylib_compatibility_version");
3961 Args.AddAllArgsTranslated(CmdArgs, options::OPT_current__version,
3962 "-dylib_current_version");
3963
Daniel Dunbara6d38492010-01-22 02:04:52 +00003964 AddDarwinArch(Args, CmdArgs);
Daniel Dunbar02633b52009-03-26 16:23:12 +00003965
3966 Args.AddAllArgsTranslated(CmdArgs, options::OPT_install__name,
3967 "-dylib_install_name");
3968 }
3969
3970 Args.AddLastArg(CmdArgs, options::OPT_all__load);
3971 Args.AddAllArgs(CmdArgs, options::OPT_allowable__client);
3972 Args.AddLastArg(CmdArgs, options::OPT_bind__at__load);
Daniel Dunbarce911f52011-04-28 21:23:41 +00003973 if (DarwinTC.isTargetIPhoneOS())
Daniel Dunbard82f8fa2009-09-04 18:35:41 +00003974 Args.AddLastArg(CmdArgs, options::OPT_arch__errors__fatal);
Daniel Dunbar02633b52009-03-26 16:23:12 +00003975 Args.AddLastArg(CmdArgs, options::OPT_dead__strip);
3976 Args.AddLastArg(CmdArgs, options::OPT_no__dead__strip__inits__and__terms);
3977 Args.AddAllArgs(CmdArgs, options::OPT_dylib__file);
3978 Args.AddLastArg(CmdArgs, options::OPT_dynamic);
3979 Args.AddAllArgs(CmdArgs, options::OPT_exported__symbols__list);
3980 Args.AddLastArg(CmdArgs, options::OPT_flat__namespace);
Daniel Dunbar99ca47b2011-06-28 20:16:02 +00003981 Args.AddAllArgs(CmdArgs, options::OPT_force__load);
Daniel Dunbar02633b52009-03-26 16:23:12 +00003982 Args.AddAllArgs(CmdArgs, options::OPT_headerpad__max__install__names);
3983 Args.AddAllArgs(CmdArgs, options::OPT_image__base);
3984 Args.AddAllArgs(CmdArgs, options::OPT_init);
3985
Daniel Dunbarce911f52011-04-28 21:23:41 +00003986 // Add the deployment target.
Benjamin Kramer09c9a562012-03-10 20:55:36 +00003987 VersionTuple TargetVersion = DarwinTC.getTargetVersion();
Daniel Dunbarb7f5ef72011-04-30 04:22:58 +00003988
3989 // If we had an explicit -mios-simulator-version-min argument, honor that,
3990 // otherwise use the traditional deployment targets. We can't just check the
3991 // is-sim attribute because existing code follows this path, and the linker
3992 // may not handle the argument.
3993 //
3994 // FIXME: We may be able to remove this, once we can verify no one depends on
3995 // it.
3996 if (Args.hasArg(options::OPT_mios_simulator_version_min_EQ))
3997 CmdArgs.push_back("-ios_simulator_version_min");
3998 else if (DarwinTC.isTargetIPhoneOS())
3999 CmdArgs.push_back("-iphoneos_version_min");
4000 else
4001 CmdArgs.push_back("-macosx_version_min");
Benjamin Kramer09c9a562012-03-10 20:55:36 +00004002 CmdArgs.push_back(Args.MakeArgString(TargetVersion.getAsString()));
Daniel Dunbarce911f52011-04-28 21:23:41 +00004003
Daniel Dunbar02633b52009-03-26 16:23:12 +00004004 Args.AddLastArg(CmdArgs, options::OPT_nomultidefs);
4005 Args.AddLastArg(CmdArgs, options::OPT_multi__module);
4006 Args.AddLastArg(CmdArgs, options::OPT_single__module);
4007 Args.AddAllArgs(CmdArgs, options::OPT_multiply__defined);
4008 Args.AddAllArgs(CmdArgs, options::OPT_multiply__defined__unused);
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004009
Daniel Dunbar47e879d2010-07-13 23:31:40 +00004010 if (const Arg *A = Args.getLastArg(options::OPT_fpie, options::OPT_fPIE,
4011 options::OPT_fno_pie,
4012 options::OPT_fno_PIE)) {
4013 if (A->getOption().matches(options::OPT_fpie) ||
4014 A->getOption().matches(options::OPT_fPIE))
4015 CmdArgs.push_back("-pie");
4016 else
4017 CmdArgs.push_back("-no_pie");
4018 }
Daniel Dunbar02633b52009-03-26 16:23:12 +00004019
4020 Args.AddLastArg(CmdArgs, options::OPT_prebind);
4021 Args.AddLastArg(CmdArgs, options::OPT_noprebind);
4022 Args.AddLastArg(CmdArgs, options::OPT_nofixprebinding);
4023 Args.AddLastArg(CmdArgs, options::OPT_prebind__all__twolevel__modules);
4024 Args.AddLastArg(CmdArgs, options::OPT_read__only__relocs);
4025 Args.AddAllArgs(CmdArgs, options::OPT_sectcreate);
4026 Args.AddAllArgs(CmdArgs, options::OPT_sectorder);
4027 Args.AddAllArgs(CmdArgs, options::OPT_seg1addr);
4028 Args.AddAllArgs(CmdArgs, options::OPT_segprot);
4029 Args.AddAllArgs(CmdArgs, options::OPT_segaddr);
4030 Args.AddAllArgs(CmdArgs, options::OPT_segs__read__only__addr);
4031 Args.AddAllArgs(CmdArgs, options::OPT_segs__read__write__addr);
4032 Args.AddAllArgs(CmdArgs, options::OPT_seg__addr__table);
4033 Args.AddAllArgs(CmdArgs, options::OPT_seg__addr__table__filename);
4034 Args.AddAllArgs(CmdArgs, options::OPT_sub__library);
4035 Args.AddAllArgs(CmdArgs, options::OPT_sub__umbrella);
Daniel Dunbard82f8fa2009-09-04 18:35:41 +00004036
Daniel Dunbarcc957192011-05-02 21:03:47 +00004037 // Give --sysroot= preference, over the Apple specific behavior to also use
4038 // --isysroot as the syslibroot.
Sebastian Pop4762a2d2012-04-16 04:16:43 +00004039 StringRef sysroot = C.getSysRoot();
4040 if (sysroot != "") {
Daniel Dunbarcc957192011-05-02 21:03:47 +00004041 CmdArgs.push_back("-syslibroot");
Sebastian Pop4762a2d2012-04-16 04:16:43 +00004042 CmdArgs.push_back(C.getArgs().MakeArgString(sysroot));
Daniel Dunbarcc957192011-05-02 21:03:47 +00004043 } else if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
4044 CmdArgs.push_back("-syslibroot");
Richard Smith1d489cf2012-11-01 04:30:05 +00004045 CmdArgs.push_back(A->getValue());
Daniel Dunbard82f8fa2009-09-04 18:35:41 +00004046 }
4047
Daniel Dunbar02633b52009-03-26 16:23:12 +00004048 Args.AddLastArg(CmdArgs, options::OPT_twolevel__namespace);
4049 Args.AddLastArg(CmdArgs, options::OPT_twolevel__namespace__hints);
4050 Args.AddAllArgs(CmdArgs, options::OPT_umbrella);
4051 Args.AddAllArgs(CmdArgs, options::OPT_undefined);
4052 Args.AddAllArgs(CmdArgs, options::OPT_unexported__symbols__list);
Daniel Dunbard82f8fa2009-09-04 18:35:41 +00004053 Args.AddAllArgs(CmdArgs, options::OPT_weak__reference__mismatches);
Daniel Dunbar02633b52009-03-26 16:23:12 +00004054 Args.AddLastArg(CmdArgs, options::OPT_X_Flag);
4055 Args.AddAllArgs(CmdArgs, options::OPT_y);
4056 Args.AddLastArg(CmdArgs, options::OPT_w);
4057 Args.AddAllArgs(CmdArgs, options::OPT_pagezero__size);
4058 Args.AddAllArgs(CmdArgs, options::OPT_segs__read__);
4059 Args.AddLastArg(CmdArgs, options::OPT_seglinkedit);
4060 Args.AddLastArg(CmdArgs, options::OPT_noseglinkedit);
4061 Args.AddAllArgs(CmdArgs, options::OPT_sectalign);
4062 Args.AddAllArgs(CmdArgs, options::OPT_sectobjectsymbols);
4063 Args.AddAllArgs(CmdArgs, options::OPT_segcreate);
4064 Args.AddLastArg(CmdArgs, options::OPT_whyload);
4065 Args.AddLastArg(CmdArgs, options::OPT_whatsloaded);
4066 Args.AddAllArgs(CmdArgs, options::OPT_dylinker__install__name);
4067 Args.AddLastArg(CmdArgs, options::OPT_dylinker);
4068 Args.AddLastArg(CmdArgs, options::OPT_Mach);
4069}
4070
4071void darwin::Link::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004072 const InputInfo &Output,
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004073 const InputInfoList &Inputs,
4074 const ArgList &Args,
Daniel Dunbar02633b52009-03-26 16:23:12 +00004075 const char *LinkingOutput) const {
4076 assert(Output.getType() == types::TY_Image && "Invalid linker output type.");
Daniel Dunbare0be8b12009-09-08 16:39:16 +00004077
Daniel Dunbar02633b52009-03-26 16:23:12 +00004078 // The logic here is derived from gcc's behavior; most of which
4079 // comes from specs (starting with link_command). Consult gcc for
4080 // more information.
Daniel Dunbar02633b52009-03-26 16:23:12 +00004081 ArgStringList CmdArgs;
4082
Argyrios Kyrtzidis22897172011-10-07 22:58:08 +00004083 /// Hack(tm) to ignore linking errors when we are doing ARC migration.
4084 if (Args.hasArg(options::OPT_ccc_arcmt_check,
4085 options::OPT_ccc_arcmt_migrate)) {
4086 for (ArgList::const_iterator I = Args.begin(), E = Args.end(); I != E; ++I)
4087 (*I)->claim();
4088 const char *Exec =
4089 Args.MakeArgString(getToolChain().GetProgramPath("touch"));
4090 CmdArgs.push_back(Output.getFilename());
4091 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
4092 return;
4093 }
4094
Daniel Dunbar02633b52009-03-26 16:23:12 +00004095 // I'm not sure why this particular decomposition exists in gcc, but
4096 // we follow suite for ease of comparison.
Bill Wendling6acf8b42012-10-02 18:02:50 +00004097 AddLinkArgs(C, Args, CmdArgs, Inputs);
Daniel Dunbar02633b52009-03-26 16:23:12 +00004098
Daniel Dunbar02633b52009-03-26 16:23:12 +00004099 Args.AddAllArgs(CmdArgs, options::OPT_d_Flag);
4100 Args.AddAllArgs(CmdArgs, options::OPT_s);
4101 Args.AddAllArgs(CmdArgs, options::OPT_t);
4102 Args.AddAllArgs(CmdArgs, options::OPT_Z_Flag);
4103 Args.AddAllArgs(CmdArgs, options::OPT_u_Group);
Daniel Dunbar02633b52009-03-26 16:23:12 +00004104 Args.AddLastArg(CmdArgs, options::OPT_e);
4105 Args.AddAllArgs(CmdArgs, options::OPT_m_Separate);
4106 Args.AddAllArgs(CmdArgs, options::OPT_r);
4107
Daniel Dunbar270073c2010-10-18 22:08:36 +00004108 // Forward -ObjC when either -ObjC or -ObjC++ is used, to force loading
4109 // members of static archive libraries which implement Objective-C classes or
4110 // categories.
4111 if (Args.hasArg(options::OPT_ObjC) || Args.hasArg(options::OPT_ObjCXX))
4112 CmdArgs.push_back("-ObjC");
Michael J. Spencer20249a12010-10-21 03:16:25 +00004113
Daniel Dunbar02633b52009-03-26 16:23:12 +00004114 CmdArgs.push_back("-o");
4115 CmdArgs.push_back(Output.getFilename());
4116
Chad Rosier18937312012-05-16 23:45:12 +00004117 if (!Args.hasArg(options::OPT_nostdlib) &&
Daniel Dunbar02633b52009-03-26 16:23:12 +00004118 !Args.hasArg(options::OPT_nostartfiles)) {
4119 // Derived from startfile spec.
4120 if (Args.hasArg(options::OPT_dynamiclib)) {
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004121 // Derived from darwin_dylib1 spec.
Daniel Dunbar1051fc02011-04-01 21:02:42 +00004122 if (getDarwinToolChain().isTargetIOSSimulator()) {
4123 // The simulator doesn't have a versioned crt1 file.
4124 CmdArgs.push_back("-ldylib1.o");
4125 } else if (getDarwinToolChain().isTargetIPhoneOS()) {
Daniel Dunbarcacb0f02010-01-27 00:56:56 +00004126 if (getDarwinToolChain().isIPhoneOSVersionLT(3, 1))
4127 CmdArgs.push_back("-ldylib1.o");
4128 } else {
Daniel Dunbarce3fdf22010-01-27 00:57:03 +00004129 if (getDarwinToolChain().isMacosxVersionLT(10, 5))
Daniel Dunbarcacb0f02010-01-27 00:56:56 +00004130 CmdArgs.push_back("-ldylib1.o");
Daniel Dunbarce3fdf22010-01-27 00:57:03 +00004131 else if (getDarwinToolChain().isMacosxVersionLT(10, 6))
Daniel Dunbarcacb0f02010-01-27 00:56:56 +00004132 CmdArgs.push_back("-ldylib1.10.5.o");
4133 }
Daniel Dunbar02633b52009-03-26 16:23:12 +00004134 } else {
4135 if (Args.hasArg(options::OPT_bundle)) {
Daniel Dunbar8a8d8af2009-04-01 03:17:40 +00004136 if (!Args.hasArg(options::OPT_static)) {
4137 // Derived from darwin_bundle1 spec.
Daniel Dunbar1051fc02011-04-01 21:02:42 +00004138 if (getDarwinToolChain().isTargetIOSSimulator()) {
4139 // The simulator doesn't have a versioned crt1 file.
4140 CmdArgs.push_back("-lbundle1.o");
4141 } else if (getDarwinToolChain().isTargetIPhoneOS()) {
Daniel Dunbarcacb0f02010-01-27 00:56:56 +00004142 if (getDarwinToolChain().isIPhoneOSVersionLT(3, 1))
4143 CmdArgs.push_back("-lbundle1.o");
4144 } else {
Daniel Dunbarce3fdf22010-01-27 00:57:03 +00004145 if (getDarwinToolChain().isMacosxVersionLT(10, 6))
Daniel Dunbarcacb0f02010-01-27 00:56:56 +00004146 CmdArgs.push_back("-lbundle1.o");
4147 }
Daniel Dunbar8a8d8af2009-04-01 03:17:40 +00004148 }
Daniel Dunbar02633b52009-03-26 16:23:12 +00004149 } else {
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +00004150 if (Args.hasArg(options::OPT_pg) &&
4151 getToolChain().SupportsProfiling()) {
Daniel Dunbar02633b52009-03-26 16:23:12 +00004152 if (Args.hasArg(options::OPT_static) ||
4153 Args.hasArg(options::OPT_object) ||
4154 Args.hasArg(options::OPT_preload)) {
4155 CmdArgs.push_back("-lgcrt0.o");
4156 } else {
4157 CmdArgs.push_back("-lgcrt1.o");
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004158
Daniel Dunbar02633b52009-03-26 16:23:12 +00004159 // darwin_crt2 spec is empty.
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004160 }
Bob Wilson4e6e7912012-07-04 00:18:41 +00004161 // By default on OS X 10.8 and later, we don't link with a crt1.o
4162 // file and the linker knows to use _main as the entry point. But,
4163 // when compiling with -pg, we need to link with the gcrt1.o file,
4164 // so pass the -no_new_main option to tell the linker to use the
4165 // "start" symbol as the entry point.
Bob Wilson1fc6e4f2012-07-03 20:42:10 +00004166 if (getDarwinToolChain().isTargetMacOS() &&
4167 !getDarwinToolChain().isMacosxVersionLT(10, 8))
4168 CmdArgs.push_back("-no_new_main");
Daniel Dunbar02633b52009-03-26 16:23:12 +00004169 } else {
4170 if (Args.hasArg(options::OPT_static) ||
4171 Args.hasArg(options::OPT_object) ||
4172 Args.hasArg(options::OPT_preload)) {
4173 CmdArgs.push_back("-lcrt0.o");
4174 } else {
4175 // Derived from darwin_crt1 spec.
Daniel Dunbar40355802011-03-31 17:12:33 +00004176 if (getDarwinToolChain().isTargetIOSSimulator()) {
4177 // The simulator doesn't have a versioned crt1 file.
4178 CmdArgs.push_back("-lcrt1.o");
4179 } else if (getDarwinToolChain().isTargetIPhoneOS()) {
Daniel Dunbarcacb0f02010-01-27 00:56:56 +00004180 if (getDarwinToolChain().isIPhoneOSVersionLT(3, 1))
4181 CmdArgs.push_back("-lcrt1.o");
Daniel Dunbar7a0c0642012-10-15 22:23:53 +00004182 else if (getDarwinToolChain().isIPhoneOSVersionLT(6, 0))
Daniel Dunbarcacb0f02010-01-27 00:56:56 +00004183 CmdArgs.push_back("-lcrt1.3.1.o");
Daniel Dunbarce3fdf22010-01-27 00:57:03 +00004184 } else {
4185 if (getDarwinToolChain().isMacosxVersionLT(10, 5))
4186 CmdArgs.push_back("-lcrt1.o");
4187 else if (getDarwinToolChain().isMacosxVersionLT(10, 6))
4188 CmdArgs.push_back("-lcrt1.10.5.o");
Ted Kremenekebcb57a2012-03-06 20:05:56 +00004189 else if (getDarwinToolChain().isMacosxVersionLT(10, 8))
Daniel Dunbarce3fdf22010-01-27 00:57:03 +00004190 CmdArgs.push_back("-lcrt1.10.6.o");
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004191
Daniel Dunbarce3fdf22010-01-27 00:57:03 +00004192 // darwin_crt2 spec is empty.
4193 }
Daniel Dunbar02633b52009-03-26 16:23:12 +00004194 }
4195 }
4196 }
4197 }
4198
Daniel Dunbarce3fdf22010-01-27 00:57:03 +00004199 if (!getDarwinToolChain().isTargetIPhoneOS() &&
4200 Args.hasArg(options::OPT_shared_libgcc) &&
4201 getDarwinToolChain().isMacosxVersionLT(10, 5)) {
Daniel Dunbar88137642009-09-09 22:32:48 +00004202 const char *Str =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004203 Args.MakeArgString(getToolChain().GetFilePath("crt3.o"));
Daniel Dunbar88137642009-09-09 22:32:48 +00004204 CmdArgs.push_back(Str);
Daniel Dunbar02633b52009-03-26 16:23:12 +00004205 }
4206 }
4207
4208 Args.AddAllArgs(CmdArgs, options::OPT_L);
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004209
Alexey Samsonovbb1071c2012-11-06 15:09:03 +00004210 SanitizerArgs Sanitize(getToolChain().getDriver(), Args);
Alexey Samsonov75fcb192012-11-16 12:53:14 +00004211 // If we're building a dynamic lib with -fsanitize=address, or
4212 // -fsanitize=undefined, unresolved symbols may appear. Mark all
4213 // of them as dynamic_lookup. Linking executables is handled in
4214 // lib/Driver/ToolChains.cpp.
4215 if (Sanitize.needsAsanRt() || Sanitize.needsUbsanRt()) {
Kostya Serebryany7b5f1012011-12-06 19:18:44 +00004216 if (Args.hasArg(options::OPT_dynamiclib) ||
4217 Args.hasArg(options::OPT_bundle)) {
4218 CmdArgs.push_back("-undefined");
4219 CmdArgs.push_back("dynamic_lookup");
4220 }
4221 }
4222
Daniel Dunbar02633b52009-03-26 16:23:12 +00004223 if (Args.hasArg(options::OPT_fopenmp))
4224 // This is more complicated in gcc...
4225 CmdArgs.push_back("-lgomp");
4226
Douglas Gregor04e326b2012-05-15 21:00:27 +00004227 AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
4228
Bob Wilson63d9f3c2012-05-15 18:57:39 +00004229 if (isObjCRuntimeLinked(Args) &&
4230 !Args.hasArg(options::OPT_nostdlib) &&
4231 !Args.hasArg(options::OPT_nodefaultlibs)) {
Ted Kremenekebcb57a2012-03-06 20:05:56 +00004232 // Avoid linking compatibility stubs on i386 mac.
4233 if (!getDarwinToolChain().isTargetMacOS() ||
Rafael Espindola64f7ad92012-10-07 04:44:33 +00004234 getDarwinToolChain().getArch() != llvm::Triple::x86) {
Ted Kremenekebcb57a2012-03-06 20:05:56 +00004235 // If we don't have ARC or subscripting runtime support, link in the
4236 // runtime stubs. We have to do this *before* adding any of the normal
4237 // linker inputs so that its initializer gets run first.
John McCall260611a2012-06-20 06:18:46 +00004238 ObjCRuntime runtime =
4239 getDarwinToolChain().getDefaultObjCRuntime(/*nonfragile*/ true);
Ted Kremenekebcb57a2012-03-06 20:05:56 +00004240 // We use arclite library for both ARC and subscripting support.
John McCall0a7dd782012-08-21 02:47:43 +00004241 if ((!runtime.hasNativeARC() && isObjCAutoRefCount(Args)) ||
John McCall260611a2012-06-20 06:18:46 +00004242 !runtime.hasSubscripting())
Ted Kremenekebcb57a2012-03-06 20:05:56 +00004243 getDarwinToolChain().AddLinkARCArgs(Args, CmdArgs);
Ted Kremenekebcb57a2012-03-06 20:05:56 +00004244 }
Bob Wilson0b1c7152012-04-21 00:21:42 +00004245 CmdArgs.push_back("-framework");
4246 CmdArgs.push_back("Foundation");
Ted Kremenekebcb57a2012-03-06 20:05:56 +00004247 // Link libobj.
4248 CmdArgs.push_back("-lobjc");
John McCall9f084a32011-07-06 00:26:06 +00004249 }
John McCallf85e1932011-06-15 23:02:42 +00004250
Daniel Dunbar02633b52009-03-26 16:23:12 +00004251 if (LinkingOutput) {
4252 CmdArgs.push_back("-arch_multiple");
4253 CmdArgs.push_back("-final_output");
4254 CmdArgs.push_back(LinkingOutput);
4255 }
4256
Daniel Dunbar02633b52009-03-26 16:23:12 +00004257 if (Args.hasArg(options::OPT_fnested_functions))
4258 CmdArgs.push_back("-allow_stack_execute");
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004259
Daniel Dunbar02633b52009-03-26 16:23:12 +00004260 if (!Args.hasArg(options::OPT_nostdlib) &&
4261 !Args.hasArg(options::OPT_nodefaultlibs)) {
Daniel Dunbaree788e72009-12-21 18:54:17 +00004262 if (getToolChain().getDriver().CCCIsCXX)
Daniel Dunbar132e35d2010-09-17 01:20:05 +00004263 getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
Daniel Dunbaredfa02b2009-04-08 06:06:21 +00004264
Daniel Dunbar02633b52009-03-26 16:23:12 +00004265 // link_ssp spec is empty.
4266
Daniel Dunbar6cd41542009-09-18 08:15:03 +00004267 // Let the tool chain choose which runtime library to link.
4268 getDarwinToolChain().AddLinkRuntimeLibArgs(Args, CmdArgs);
Daniel Dunbar02633b52009-03-26 16:23:12 +00004269 }
4270
Chad Rosier18937312012-05-16 23:45:12 +00004271 if (!Args.hasArg(options::OPT_nostdlib) &&
Daniel Dunbar02633b52009-03-26 16:23:12 +00004272 !Args.hasArg(options::OPT_nostartfiles)) {
4273 // endfile_spec is empty.
4274 }
4275
4276 Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
4277 Args.AddAllArgs(CmdArgs, options::OPT_F);
4278
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004279 const char *Exec =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004280 Args.MakeArgString(getToolChain().GetProgramPath("ld"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004281 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbar02633b52009-03-26 16:23:12 +00004282}
4283
Daniel Dunbarff7488d2009-03-20 00:52:38 +00004284void darwin::Lipo::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004285 const InputInfo &Output,
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004286 const InputInfoList &Inputs,
4287 const ArgList &Args,
Daniel Dunbarff7488d2009-03-20 00:52:38 +00004288 const char *LinkingOutput) const {
4289 ArgStringList CmdArgs;
4290
4291 CmdArgs.push_back("-create");
4292 assert(Output.isFilename() && "Unexpected lipo output.");
Daniel Dunbara428df82009-03-24 00:24:37 +00004293
4294 CmdArgs.push_back("-output");
Daniel Dunbarff7488d2009-03-20 00:52:38 +00004295 CmdArgs.push_back(Output.getFilename());
Daniel Dunbara428df82009-03-24 00:24:37 +00004296
Daniel Dunbarff7488d2009-03-20 00:52:38 +00004297 for (InputInfoList::const_iterator
4298 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
4299 const InputInfo &II = *it;
4300 assert(II.isFilename() && "Unexpected lipo input.");
4301 CmdArgs.push_back(II.getFilename());
4302 }
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004303 const char *Exec =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004304 Args.MakeArgString(getToolChain().GetProgramPath("lipo"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004305 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbarff7488d2009-03-20 00:52:38 +00004306}
Daniel Dunbar68a31d42009-03-31 17:45:15 +00004307
Daniel Dunbar6e0f2542010-06-04 18:28:36 +00004308void darwin::Dsymutil::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004309 const InputInfo &Output,
Daniel Dunbar6e0f2542010-06-04 18:28:36 +00004310 const InputInfoList &Inputs,
4311 const ArgList &Args,
4312 const char *LinkingOutput) const {
4313 ArgStringList CmdArgs;
4314
Daniel Dunbar03e92302011-05-09 17:23:16 +00004315 CmdArgs.push_back("-o");
4316 CmdArgs.push_back(Output.getFilename());
4317
Daniel Dunbar6e0f2542010-06-04 18:28:36 +00004318 assert(Inputs.size() == 1 && "Unable to handle multiple inputs.");
4319 const InputInfo &Input = Inputs[0];
4320 assert(Input.isFilename() && "Unexpected dsymutil input.");
4321 CmdArgs.push_back(Input.getFilename());
4322
Daniel Dunbar6e0f2542010-06-04 18:28:36 +00004323 const char *Exec =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004324 Args.MakeArgString(getToolChain().GetProgramPath("dsymutil"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004325 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbar6e0f2542010-06-04 18:28:36 +00004326}
4327
Eric Christopherf8571862011-08-23 17:56:55 +00004328void darwin::VerifyDebug::ConstructJob(Compilation &C, const JobAction &JA,
4329 const InputInfo &Output,
4330 const InputInfoList &Inputs,
4331 const ArgList &Args,
4332 const char *LinkingOutput) const {
4333 ArgStringList CmdArgs;
4334 CmdArgs.push_back("--verify");
Eric Christopher1c79dc42012-02-06 19:13:09 +00004335 CmdArgs.push_back("--debug-info");
4336 CmdArgs.push_back("--eh-frame");
Eric Christopherb822f722012-02-06 19:43:51 +00004337 CmdArgs.push_back("--quiet");
Eric Christopherf8571862011-08-23 17:56:55 +00004338
4339 assert(Inputs.size() == 1 && "Unable to handle multiple inputs.");
4340 const InputInfo &Input = Inputs[0];
4341 assert(Input.isFilename() && "Unexpected verify input");
4342
4343 // Grabbing the output of the earlier dsymutil run.
4344 CmdArgs.push_back(Input.getFilename());
4345
4346 const char *Exec =
4347 Args.MakeArgString(getToolChain().GetProgramPath("dwarfdump"));
4348 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
4349}
4350
David Chisnall31c46902012-02-15 13:39:01 +00004351void solaris::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
4352 const InputInfo &Output,
4353 const InputInfoList &Inputs,
4354 const ArgList &Args,
4355 const char *LinkingOutput) const {
4356 ArgStringList CmdArgs;
4357
4358 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
4359 options::OPT_Xassembler);
4360
4361 CmdArgs.push_back("-o");
4362 CmdArgs.push_back(Output.getFilename());
4363
4364 for (InputInfoList::const_iterator
4365 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
4366 const InputInfo &II = *it;
4367 CmdArgs.push_back(II.getFilename());
4368 }
4369
4370 const char *Exec =
4371 Args.MakeArgString(getToolChain().GetProgramPath("as"));
4372 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
4373}
4374
4375
4376void solaris::Link::ConstructJob(Compilation &C, const JobAction &JA,
4377 const InputInfo &Output,
4378 const InputInfoList &Inputs,
4379 const ArgList &Args,
4380 const char *LinkingOutput) const {
4381 // FIXME: Find a real GCC, don't hard-code versions here
4382 std::string GCCLibPath = "/usr/gcc/4.5/lib/gcc/";
4383 const llvm::Triple &T = getToolChain().getTriple();
4384 std::string LibPath = "/usr/lib/";
4385 llvm::Triple::ArchType Arch = T.getArch();
4386 switch (Arch) {
4387 case llvm::Triple::x86:
4388 GCCLibPath += ("i386-" + T.getVendorName() + "-" +
4389 T.getOSName()).str() + "/4.5.2/";
4390 break;
4391 case llvm::Triple::x86_64:
4392 GCCLibPath += ("i386-" + T.getVendorName() + "-" +
4393 T.getOSName()).str();
4394 GCCLibPath += "/4.5.2/amd64/";
4395 LibPath += "amd64/";
4396 break;
4397 default:
4398 assert(0 && "Unsupported architecture");
4399 }
4400
4401 ArgStringList CmdArgs;
4402
David Chisnall41d476d2012-02-29 15:06:12 +00004403 // Demangle C++ names in errors
4404 CmdArgs.push_back("-C");
4405
David Chisnall31c46902012-02-15 13:39:01 +00004406 if ((!Args.hasArg(options::OPT_nostdlib)) &&
4407 (!Args.hasArg(options::OPT_shared))) {
4408 CmdArgs.push_back("-e");
4409 CmdArgs.push_back("_start");
4410 }
4411
4412 if (Args.hasArg(options::OPT_static)) {
4413 CmdArgs.push_back("-Bstatic");
4414 CmdArgs.push_back("-dn");
4415 } else {
4416 CmdArgs.push_back("-Bdynamic");
4417 if (Args.hasArg(options::OPT_shared)) {
4418 CmdArgs.push_back("-shared");
4419 } else {
4420 CmdArgs.push_back("--dynamic-linker");
4421 CmdArgs.push_back(Args.MakeArgString(LibPath + "ld.so.1"));
4422 }
4423 }
4424
4425 if (Output.isFilename()) {
4426 CmdArgs.push_back("-o");
4427 CmdArgs.push_back(Output.getFilename());
4428 } else {
4429 assert(Output.isNothing() && "Invalid output.");
4430 }
4431
4432 if (!Args.hasArg(options::OPT_nostdlib) &&
4433 !Args.hasArg(options::OPT_nostartfiles)) {
4434 if (!Args.hasArg(options::OPT_shared)) {
4435 CmdArgs.push_back(Args.MakeArgString(LibPath + "crt1.o"));
4436 CmdArgs.push_back(Args.MakeArgString(LibPath + "crti.o"));
David Chisnall165329c2012-02-28 17:10:04 +00004437 CmdArgs.push_back(Args.MakeArgString(LibPath + "values-Xa.o"));
David Chisnall31c46902012-02-15 13:39:01 +00004438 CmdArgs.push_back(Args.MakeArgString(GCCLibPath + "crtbegin.o"));
4439 } else {
4440 CmdArgs.push_back(Args.MakeArgString(LibPath + "crti.o"));
David Chisnall165329c2012-02-28 17:10:04 +00004441 CmdArgs.push_back(Args.MakeArgString(LibPath + "values-Xa.o"));
4442 CmdArgs.push_back(Args.MakeArgString(GCCLibPath + "crtbegin.o"));
David Chisnall31c46902012-02-15 13:39:01 +00004443 }
David Chisnalle6dd6832012-03-13 14:14:54 +00004444 if (getToolChain().getDriver().CCCIsCXX)
4445 CmdArgs.push_back(Args.MakeArgString(LibPath + "cxa_finalize.o"));
David Chisnall31c46902012-02-15 13:39:01 +00004446 }
4447
4448 CmdArgs.push_back(Args.MakeArgString("-L" + GCCLibPath));
4449
4450 Args.AddAllArgs(CmdArgs, options::OPT_L);
4451 Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
4452 Args.AddAllArgs(CmdArgs, options::OPT_e);
David Chisnall165329c2012-02-28 17:10:04 +00004453 Args.AddAllArgs(CmdArgs, options::OPT_r);
David Chisnall31c46902012-02-15 13:39:01 +00004454
4455 AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
4456
4457 if (!Args.hasArg(options::OPT_nostdlib) &&
4458 !Args.hasArg(options::OPT_nodefaultlibs)) {
David Chisnalle58e6f92012-04-10 11:49:50 +00004459 if (getToolChain().getDriver().CCCIsCXX)
4460 getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
David Chisnallb6229592012-02-15 18:24:31 +00004461 CmdArgs.push_back("-lgcc_s");
David Chisnall165329c2012-02-28 17:10:04 +00004462 if (!Args.hasArg(options::OPT_shared)) {
4463 CmdArgs.push_back("-lgcc");
David Chisnall31c46902012-02-15 13:39:01 +00004464 CmdArgs.push_back("-lc");
David Chisnall7dbefe12012-02-28 20:06:45 +00004465 CmdArgs.push_back("-lm");
David Chisnall165329c2012-02-28 17:10:04 +00004466 }
David Chisnall31c46902012-02-15 13:39:01 +00004467 }
4468
4469 if (!Args.hasArg(options::OPT_nostdlib) &&
4470 !Args.hasArg(options::OPT_nostartfiles)) {
David Chisnall165329c2012-02-28 17:10:04 +00004471 CmdArgs.push_back(Args.MakeArgString(GCCLibPath + "crtend.o"));
David Chisnall31c46902012-02-15 13:39:01 +00004472 }
David Chisnalld1ac03e2012-02-16 16:00:47 +00004473 CmdArgs.push_back(Args.MakeArgString(LibPath + "crtn.o"));
David Chisnall31c46902012-02-15 13:39:01 +00004474
4475 addProfileRT(getToolChain(), Args, CmdArgs, getToolChain().getTriple());
4476
4477 const char *Exec =
4478 Args.MakeArgString(getToolChain().GetProgramPath("ld"));
4479 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
4480}
4481
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004482void auroraux::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004483 const InputInfo &Output,
Daniel Dunbar294691e2009-11-04 06:24:38 +00004484 const InputInfoList &Inputs,
4485 const ArgList &Args,
4486 const char *LinkingOutput) const {
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004487 ArgStringList CmdArgs;
4488
4489 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
4490 options::OPT_Xassembler);
4491
4492 CmdArgs.push_back("-o");
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00004493 CmdArgs.push_back(Output.getFilename());
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004494
4495 for (InputInfoList::const_iterator
4496 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
4497 const InputInfo &II = *it;
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00004498 CmdArgs.push_back(II.getFilename());
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004499 }
4500
4501 const char *Exec =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004502 Args.MakeArgString(getToolChain().GetProgramPath("gas"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004503 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004504}
4505
4506void auroraux::Link::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004507 const InputInfo &Output,
Daniel Dunbar294691e2009-11-04 06:24:38 +00004508 const InputInfoList &Inputs,
4509 const ArgList &Args,
4510 const char *LinkingOutput) const {
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004511 ArgStringList CmdArgs;
4512
4513 if ((!Args.hasArg(options::OPT_nostdlib)) &&
Daniel Dunbar294691e2009-11-04 06:24:38 +00004514 (!Args.hasArg(options::OPT_shared))) {
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004515 CmdArgs.push_back("-e");
Edward O'Callaghan7adf9492009-10-15 07:44:07 +00004516 CmdArgs.push_back("_start");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004517 }
4518
4519 if (Args.hasArg(options::OPT_static)) {
4520 CmdArgs.push_back("-Bstatic");
Edward O'Callaghan7adf9492009-10-15 07:44:07 +00004521 CmdArgs.push_back("-dn");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004522 } else {
Edward O'Callaghan7adf9492009-10-15 07:44:07 +00004523// CmdArgs.push_back("--eh-frame-hdr");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004524 CmdArgs.push_back("-Bdynamic");
4525 if (Args.hasArg(options::OPT_shared)) {
4526 CmdArgs.push_back("-shared");
4527 } else {
Edward O'Callaghan3cecc192009-10-16 19:44:18 +00004528 CmdArgs.push_back("--dynamic-linker");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004529 CmdArgs.push_back("/lib/ld.so.1"); // 64Bit Path /lib/amd64/ld.so.1
4530 }
4531 }
4532
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00004533 if (Output.isFilename()) {
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004534 CmdArgs.push_back("-o");
4535 CmdArgs.push_back(Output.getFilename());
4536 } else {
4537 assert(Output.isNothing() && "Invalid output.");
4538 }
4539
4540 if (!Args.hasArg(options::OPT_nostdlib) &&
4541 !Args.hasArg(options::OPT_nostartfiles)) {
4542 if (!Args.hasArg(options::OPT_shared)) {
Chris Lattner38e317d2010-07-07 16:01:42 +00004543 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004544 getToolChain().GetFilePath("crt1.o")));
Chris Lattner38e317d2010-07-07 16:01:42 +00004545 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004546 getToolChain().GetFilePath("crti.o")));
Chris Lattner38e317d2010-07-07 16:01:42 +00004547 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004548 getToolChain().GetFilePath("crtbegin.o")));
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004549 } else {
Chris Lattner38e317d2010-07-07 16:01:42 +00004550 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004551 getToolChain().GetFilePath("crti.o")));
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004552 }
Chris Lattner38e317d2010-07-07 16:01:42 +00004553 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004554 getToolChain().GetFilePath("crtn.o")));
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004555 }
4556
Daniel Dunbar294691e2009-11-04 06:24:38 +00004557 CmdArgs.push_back(Args.MakeArgString("-L/opt/gcc4/lib/gcc/"
4558 + getToolChain().getTripleString()
Daniel Dunbarf7fb31f2009-10-29 02:24:37 +00004559 + "/4.2.4"));
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004560
4561 Args.AddAllArgs(CmdArgs, options::OPT_L);
4562 Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
4563 Args.AddAllArgs(CmdArgs, options::OPT_e);
4564
Daniel Dunbar2008fee2010-09-17 00:24:54 +00004565 AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004566
4567 if (!Args.hasArg(options::OPT_nostdlib) &&
4568 !Args.hasArg(options::OPT_nodefaultlibs)) {
4569 // FIXME: For some reason GCC passes -lgcc before adding
4570 // the default system libraries. Just mimic this for now.
4571 CmdArgs.push_back("-lgcc");
4572
4573 if (Args.hasArg(options::OPT_pthread))
4574 CmdArgs.push_back("-pthread");
4575 if (!Args.hasArg(options::OPT_shared))
4576 CmdArgs.push_back("-lc");
4577 CmdArgs.push_back("-lgcc");
4578 }
4579
4580 if (!Args.hasArg(options::OPT_nostdlib) &&
4581 !Args.hasArg(options::OPT_nostartfiles)) {
4582 if (!Args.hasArg(options::OPT_shared))
Chris Lattner38e317d2010-07-07 16:01:42 +00004583 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004584 getToolChain().GetFilePath("crtend.o")));
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004585 }
4586
Bill Wendling3f4be6f2011-06-27 19:15:03 +00004587 addProfileRT(getToolChain(), Args, CmdArgs, getToolChain().getTriple());
Nick Lewycky2e95a6d2011-05-24 21:54:59 +00004588
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004589 const char *Exec =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004590 Args.MakeArgString(getToolChain().GetProgramPath("ld"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004591 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Edward O'Callaghane7925a02009-08-22 01:06:46 +00004592}
4593
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004594void openbsd::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004595 const InputInfo &Output,
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004596 const InputInfoList &Inputs,
4597 const ArgList &Args,
Mike Stump1eb44332009-09-09 15:08:12 +00004598 const char *LinkingOutput) const {
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004599 ArgStringList CmdArgs;
4600
4601 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
4602 options::OPT_Xassembler);
4603
4604 CmdArgs.push_back("-o");
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00004605 CmdArgs.push_back(Output.getFilename());
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004606
4607 for (InputInfoList::const_iterator
4608 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
4609 const InputInfo &II = *it;
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00004610 CmdArgs.push_back(II.getFilename());
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004611 }
4612
4613 const char *Exec =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004614 Args.MakeArgString(getToolChain().GetProgramPath("as"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004615 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004616}
4617
4618void openbsd::Link::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004619 const InputInfo &Output,
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004620 const InputInfoList &Inputs,
4621 const ArgList &Args,
4622 const char *LinkingOutput) const {
Daniel Dunbaree788e72009-12-21 18:54:17 +00004623 const Driver &D = getToolChain().getDriver();
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004624 ArgStringList CmdArgs;
4625
Daniel Dunbar2bbcf662009-08-03 01:28:59 +00004626 if ((!Args.hasArg(options::OPT_nostdlib)) &&
Daniel Dunbar294691e2009-11-04 06:24:38 +00004627 (!Args.hasArg(options::OPT_shared))) {
Daniel Dunbar2bbcf662009-08-03 01:28:59 +00004628 CmdArgs.push_back("-e");
4629 CmdArgs.push_back("__start");
4630 }
4631
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004632 if (Args.hasArg(options::OPT_static)) {
4633 CmdArgs.push_back("-Bstatic");
4634 } else {
Rafael Espindola65ba55d2010-11-11 02:17:51 +00004635 if (Args.hasArg(options::OPT_rdynamic))
4636 CmdArgs.push_back("-export-dynamic");
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004637 CmdArgs.push_back("--eh-frame-hdr");
Daniel Dunbar2bbcf662009-08-03 01:28:59 +00004638 CmdArgs.push_back("-Bdynamic");
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004639 if (Args.hasArg(options::OPT_shared)) {
Daniel Dunbar2bbcf662009-08-03 01:28:59 +00004640 CmdArgs.push_back("-shared");
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004641 } else {
4642 CmdArgs.push_back("-dynamic-linker");
4643 CmdArgs.push_back("/usr/libexec/ld.so");
4644 }
4645 }
4646
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00004647 if (Output.isFilename()) {
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004648 CmdArgs.push_back("-o");
4649 CmdArgs.push_back(Output.getFilename());
4650 } else {
4651 assert(Output.isNothing() && "Invalid output.");
4652 }
4653
4654 if (!Args.hasArg(options::OPT_nostdlib) &&
4655 !Args.hasArg(options::OPT_nostartfiles)) {
4656 if (!Args.hasArg(options::OPT_shared)) {
Eli Friedman62d829a2011-12-15 02:15:56 +00004657 if (Args.hasArg(options::OPT_pg))
4658 CmdArgs.push_back(Args.MakeArgString(
4659 getToolChain().GetFilePath("gcrt0.o")));
4660 else
4661 CmdArgs.push_back(Args.MakeArgString(
4662 getToolChain().GetFilePath("crt0.o")));
Chris Lattner38e317d2010-07-07 16:01:42 +00004663 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004664 getToolChain().GetFilePath("crtbegin.o")));
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004665 } else {
Chris Lattner38e317d2010-07-07 16:01:42 +00004666 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004667 getToolChain().GetFilePath("crtbeginS.o")));
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004668 }
4669 }
4670
Edward O'Callaghane7e18202009-10-28 15:13:08 +00004671 std::string Triple = getToolChain().getTripleString();
4672 if (Triple.substr(0, 6) == "x86_64")
Daniel Dunbar294691e2009-11-04 06:24:38 +00004673 Triple.replace(0, 6, "amd64");
Daniel Dunbarf7fb31f2009-10-29 02:24:37 +00004674 CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc-lib/" + Triple +
Daniel Dunbar95c04572010-08-01 23:13:54 +00004675 "/4.2.1"));
Daniel Dunbar2bbcf662009-08-03 01:28:59 +00004676
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004677 Args.AddAllArgs(CmdArgs, options::OPT_L);
4678 Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
4679 Args.AddAllArgs(CmdArgs, options::OPT_e);
4680
Daniel Dunbar2008fee2010-09-17 00:24:54 +00004681 AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004682
4683 if (!Args.hasArg(options::OPT_nostdlib) &&
4684 !Args.hasArg(options::OPT_nodefaultlibs)) {
Daniel Dunbar95c04572010-08-01 23:13:54 +00004685 if (D.CCCIsCXX) {
Daniel Dunbar132e35d2010-09-17 01:20:05 +00004686 getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
Eli Friedman62d829a2011-12-15 02:15:56 +00004687 if (Args.hasArg(options::OPT_pg))
4688 CmdArgs.push_back("-lm_p");
4689 else
4690 CmdArgs.push_back("-lm");
Daniel Dunbar95c04572010-08-01 23:13:54 +00004691 }
4692
Daniel Dunbar2bbcf662009-08-03 01:28:59 +00004693 // FIXME: For some reason GCC passes -lgcc before adding
4694 // the default system libraries. Just mimic this for now.
4695 CmdArgs.push_back("-lgcc");
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004696
Eric Christopherdc6cc872012-09-13 06:32:34 +00004697 if (Args.hasArg(options::OPT_pthread)) {
4698 if (!Args.hasArg(options::OPT_shared) &&
4699 Args.hasArg(options::OPT_pg))
4700 CmdArgs.push_back("-lpthread_p");
4701 else
4702 CmdArgs.push_back("-lpthread");
4703 }
4704
Chandler Carruth657849c2011-12-17 22:32:42 +00004705 if (!Args.hasArg(options::OPT_shared)) {
Eric Christopherdc6cc872012-09-13 06:32:34 +00004706 if (Args.hasArg(options::OPT_pg))
Eli Friedman62d829a2011-12-15 02:15:56 +00004707 CmdArgs.push_back("-lc_p");
4708 else
4709 CmdArgs.push_back("-lc");
Chandler Carruth657849c2011-12-17 22:32:42 +00004710 }
Eric Christopherdc6cc872012-09-13 06:32:34 +00004711
Daniel Dunbar2bbcf662009-08-03 01:28:59 +00004712 CmdArgs.push_back("-lgcc");
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004713 }
4714
4715 if (!Args.hasArg(options::OPT_nostdlib) &&
4716 !Args.hasArg(options::OPT_nostartfiles)) {
4717 if (!Args.hasArg(options::OPT_shared))
Chris Lattner38e317d2010-07-07 16:01:42 +00004718 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004719 getToolChain().GetFilePath("crtend.o")));
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004720 else
Chris Lattner38e317d2010-07-07 16:01:42 +00004721 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004722 getToolChain().GetFilePath("crtendS.o")));
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004723 }
4724
4725 const char *Exec =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004726 Args.MakeArgString(getToolChain().GetProgramPath("ld"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004727 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00004728}
Ed Schoutenc66a5a32009-04-02 19:13:12 +00004729
Eli Friedman42f74f22012-08-08 23:57:20 +00004730void bitrig::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
4731 const InputInfo &Output,
4732 const InputInfoList &Inputs,
4733 const ArgList &Args,
4734 const char *LinkingOutput) const {
4735 ArgStringList CmdArgs;
4736
4737 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
4738 options::OPT_Xassembler);
4739
4740 CmdArgs.push_back("-o");
4741 CmdArgs.push_back(Output.getFilename());
4742
4743 for (InputInfoList::const_iterator
4744 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
4745 const InputInfo &II = *it;
4746 CmdArgs.push_back(II.getFilename());
4747 }
4748
4749 const char *Exec =
4750 Args.MakeArgString(getToolChain().GetProgramPath("as"));
4751 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
4752}
4753
4754void bitrig::Link::ConstructJob(Compilation &C, const JobAction &JA,
4755 const InputInfo &Output,
4756 const InputInfoList &Inputs,
4757 const ArgList &Args,
4758 const char *LinkingOutput) const {
4759 const Driver &D = getToolChain().getDriver();
4760 ArgStringList CmdArgs;
4761
4762 if ((!Args.hasArg(options::OPT_nostdlib)) &&
4763 (!Args.hasArg(options::OPT_shared))) {
4764 CmdArgs.push_back("-e");
4765 CmdArgs.push_back("__start");
4766 }
4767
4768 if (Args.hasArg(options::OPT_static)) {
4769 CmdArgs.push_back("-Bstatic");
4770 } else {
4771 if (Args.hasArg(options::OPT_rdynamic))
4772 CmdArgs.push_back("-export-dynamic");
4773 CmdArgs.push_back("--eh-frame-hdr");
4774 CmdArgs.push_back("-Bdynamic");
4775 if (Args.hasArg(options::OPT_shared)) {
4776 CmdArgs.push_back("-shared");
4777 } else {
4778 CmdArgs.push_back("-dynamic-linker");
4779 CmdArgs.push_back("/usr/libexec/ld.so");
4780 }
4781 }
4782
4783 if (Output.isFilename()) {
4784 CmdArgs.push_back("-o");
4785 CmdArgs.push_back(Output.getFilename());
4786 } else {
4787 assert(Output.isNothing() && "Invalid output.");
4788 }
4789
4790 if (!Args.hasArg(options::OPT_nostdlib) &&
4791 !Args.hasArg(options::OPT_nostartfiles)) {
4792 if (!Args.hasArg(options::OPT_shared)) {
4793 if (Args.hasArg(options::OPT_pg))
4794 CmdArgs.push_back(Args.MakeArgString(
4795 getToolChain().GetFilePath("gcrt0.o")));
4796 else
4797 CmdArgs.push_back(Args.MakeArgString(
4798 getToolChain().GetFilePath("crt0.o")));
4799 CmdArgs.push_back(Args.MakeArgString(
4800 getToolChain().GetFilePath("crtbegin.o")));
4801 } else {
4802 CmdArgs.push_back(Args.MakeArgString(
4803 getToolChain().GetFilePath("crtbeginS.o")));
4804 }
4805 }
4806
4807 Args.AddAllArgs(CmdArgs, options::OPT_L);
4808 Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
4809 Args.AddAllArgs(CmdArgs, options::OPT_e);
4810
4811 AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
4812
4813 if (!Args.hasArg(options::OPT_nostdlib) &&
4814 !Args.hasArg(options::OPT_nodefaultlibs)) {
4815 if (D.CCCIsCXX) {
4816 getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
4817 if (Args.hasArg(options::OPT_pg))
4818 CmdArgs.push_back("-lm_p");
4819 else
4820 CmdArgs.push_back("-lm");
4821 }
4822
Rafael Espindola3667bbe2012-10-23 17:07:31 +00004823 if (Args.hasArg(options::OPT_pthread)) {
4824 if (!Args.hasArg(options::OPT_shared) &&
4825 Args.hasArg(options::OPT_pg))
4826 CmdArgs.push_back("-lpthread_p");
4827 else
4828 CmdArgs.push_back("-lpthread");
4829 }
4830
Eli Friedman42f74f22012-08-08 23:57:20 +00004831 if (!Args.hasArg(options::OPT_shared)) {
4832 if (Args.hasArg(options::OPT_pg))
4833 CmdArgs.push_back("-lc_p");
4834 else
4835 CmdArgs.push_back("-lc");
4836 }
4837
4838 std::string myarch = "-lclang_rt.";
4839 const llvm::Triple &T = getToolChain().getTriple();
4840 llvm::Triple::ArchType Arch = T.getArch();
4841 switch (Arch) {
4842 case llvm::Triple::arm:
4843 myarch += ("arm");
4844 break;
4845 case llvm::Triple::x86:
4846 myarch += ("i386");
4847 break;
4848 case llvm::Triple::x86_64:
4849 myarch += ("amd64");
4850 break;
4851 default:
4852 assert(0 && "Unsupported architecture");
4853 }
4854 CmdArgs.push_back(Args.MakeArgString(myarch));
4855 }
4856
4857 if (!Args.hasArg(options::OPT_nostdlib) &&
4858 !Args.hasArg(options::OPT_nostartfiles)) {
4859 if (!Args.hasArg(options::OPT_shared))
4860 CmdArgs.push_back(Args.MakeArgString(
4861 getToolChain().GetFilePath("crtend.o")));
4862 else
4863 CmdArgs.push_back(Args.MakeArgString(
4864 getToolChain().GetFilePath("crtendS.o")));
4865 }
Eli Friedmanc9c48db2012-08-09 22:42:04 +00004866
4867 const char *Exec =
4868 Args.MakeArgString(getToolChain().GetProgramPath("ld"));
4869 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Eli Friedman42f74f22012-08-08 23:57:20 +00004870}
4871
Daniel Dunbar68a31d42009-03-31 17:45:15 +00004872void freebsd::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004873 const InputInfo &Output,
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004874 const InputInfoList &Inputs,
4875 const ArgList &Args,
Mike Stump1eb44332009-09-09 15:08:12 +00004876 const char *LinkingOutput) const {
Daniel Dunbar68a31d42009-03-31 17:45:15 +00004877 ArgStringList CmdArgs;
4878
Daniel Dunbar008f54a2009-04-01 19:36:32 +00004879 // When building 32-bit code on FreeBSD/amd64, we have to explicitly
4880 // instruct as in the base system to assemble 32-bit code.
Eric Christopherc55da4b2012-09-05 21:32:44 +00004881 if (getToolChain().getArch() == llvm::Triple::x86)
Daniel Dunbar68a31d42009-03-31 17:45:15 +00004882 CmdArgs.push_back("--32");
Eric Christopherc55da4b2012-09-05 21:32:44 +00004883 else if (getToolChain().getArch() == llvm::Triple::ppc)
Roman Divacky3393cef2011-06-04 07:37:31 +00004884 CmdArgs.push_back("-a32");
Eric Christopherc55da4b2012-09-05 21:32:44 +00004885 else if (getToolChain().getArch() == llvm::Triple::mips ||
4886 getToolChain().getArch() == llvm::Triple::mipsel ||
4887 getToolChain().getArch() == llvm::Triple::mips64 ||
4888 getToolChain().getArch() == llvm::Triple::mips64el) {
4889 StringRef CPUName;
4890 StringRef ABIName;
4891 getMipsCPUAndABI(Args, getToolChain(), CPUName, ABIName);
Michael J. Spencer20249a12010-10-21 03:16:25 +00004892
Eric Christopherc55da4b2012-09-05 21:32:44 +00004893 CmdArgs.push_back("-march");
4894 CmdArgs.push_back(CPUName.data());
4895
4896 // Convert ABI name to the GNU tools acceptable variant.
4897 if (ABIName == "o32")
4898 ABIName = "32";
4899 else if (ABIName == "n64")
4900 ABIName = "64";
4901
4902 CmdArgs.push_back("-mabi");
4903 CmdArgs.push_back(ABIName.data());
4904
4905 if (getToolChain().getArch() == llvm::Triple::mips ||
4906 getToolChain().getArch() == llvm::Triple::mips64)
4907 CmdArgs.push_back("-EB");
4908 else
4909 CmdArgs.push_back("-EL");
4910
4911 Arg *LastPICArg = Args.getLastArg(options::OPT_fPIC, options::OPT_fno_PIC,
4912 options::OPT_fpic, options::OPT_fno_pic,
4913 options::OPT_fPIE, options::OPT_fno_PIE,
4914 options::OPT_fpie, options::OPT_fno_pie);
4915 if (LastPICArg &&
4916 (LastPICArg->getOption().matches(options::OPT_fPIC) ||
4917 LastPICArg->getOption().matches(options::OPT_fpic) ||
4918 LastPICArg->getOption().matches(options::OPT_fPIE) ||
4919 LastPICArg->getOption().matches(options::OPT_fpie))) {
4920 CmdArgs.push_back("-KPIC");
4921 }
4922 }
Eric Christophered734732010-03-02 02:41:08 +00004923
Daniel Dunbar68a31d42009-03-31 17:45:15 +00004924 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
4925 options::OPT_Xassembler);
4926
4927 CmdArgs.push_back("-o");
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00004928 CmdArgs.push_back(Output.getFilename());
Daniel Dunbar68a31d42009-03-31 17:45:15 +00004929
4930 for (InputInfoList::const_iterator
4931 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
4932 const InputInfo &II = *it;
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00004933 CmdArgs.push_back(II.getFilename());
Daniel Dunbar68a31d42009-03-31 17:45:15 +00004934 }
4935
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004936 const char *Exec =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00004937 Args.MakeArgString(getToolChain().GetProgramPath("as"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004938 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbar68a31d42009-03-31 17:45:15 +00004939}
Daniel Dunbar008f54a2009-04-01 19:36:32 +00004940
4941void freebsd::Link::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00004942 const InputInfo &Output,
Daniel Dunbarc21c4852009-04-08 23:54:23 +00004943 const InputInfoList &Inputs,
4944 const ArgList &Args,
Daniel Dunbara8304f62009-05-02 20:14:53 +00004945 const char *LinkingOutput) const {
Roman Divacky94380162012-08-28 15:09:03 +00004946 const toolchains::FreeBSD& ToolChain =
4947 static_cast<const toolchains::FreeBSD&>(getToolChain());
4948 const Driver &D = ToolChain.getDriver();
Daniel Dunbar008f54a2009-04-01 19:36:32 +00004949 ArgStringList CmdArgs;
David Chisnalldfa210b2012-07-29 15:24:44 +00004950
4951 // Silence warning for "clang -g foo.o -o foo"
4952 Args.ClaimAllArgs(options::OPT_g_Group);
4953 // and "clang -emit-llvm foo.o -o foo"
4954 Args.ClaimAllArgs(options::OPT_emit_llvm);
4955 // and for "clang -w foo.o -o foo". Other warning options are already
4956 // handled somewhere else.
4957 Args.ClaimAllArgs(options::OPT_w);
Daniel Dunbar008f54a2009-04-01 19:36:32 +00004958
Joerg Sonnenberger8ab2bdc2011-03-21 13:51:29 +00004959 if (!D.SysRoot.empty())
4960 CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot));
4961
Roman Divacky94380162012-08-28 15:09:03 +00004962 if (Args.hasArg(options::OPT_pie))
4963 CmdArgs.push_back("-pie");
4964
Daniel Dunbar008f54a2009-04-01 19:36:32 +00004965 if (Args.hasArg(options::OPT_static)) {
4966 CmdArgs.push_back("-Bstatic");
4967 } else {
Rafael Espindola65ba55d2010-11-11 02:17:51 +00004968 if (Args.hasArg(options::OPT_rdynamic))
4969 CmdArgs.push_back("-export-dynamic");
Daniel Dunbar008f54a2009-04-01 19:36:32 +00004970 CmdArgs.push_back("--eh-frame-hdr");
4971 if (Args.hasArg(options::OPT_shared)) {
4972 CmdArgs.push_back("-Bshareable");
4973 } else {
4974 CmdArgs.push_back("-dynamic-linker");
4975 CmdArgs.push_back("/libexec/ld-elf.so.1");
4976 }
Roman Divacky94380162012-08-28 15:09:03 +00004977 if (ToolChain.getTriple().getOSMajorVersion() >= 9) {
4978 llvm::Triple::ArchType Arch = ToolChain.getArch();
David Chisnalldfa210b2012-07-29 15:24:44 +00004979 if (Arch == llvm::Triple::arm || Arch == llvm::Triple::sparc ||
4980 Arch == llvm::Triple::x86 || Arch == llvm::Triple::x86_64) {
4981 CmdArgs.push_back("--hash-style=both");
4982 }
4983 }
4984 CmdArgs.push_back("--enable-new-dtags");
Daniel Dunbar008f54a2009-04-01 19:36:32 +00004985 }
4986
4987 // When building 32-bit code on FreeBSD/amd64, we have to explicitly
4988 // instruct ld in the base system to link 32-bit code.
Rafael Espindola64f7ad92012-10-07 04:44:33 +00004989 if (ToolChain.getArch() == llvm::Triple::x86) {
Daniel Dunbar008f54a2009-04-01 19:36:32 +00004990 CmdArgs.push_back("-m");
4991 CmdArgs.push_back("elf_i386_fbsd");
4992 }
4993
Rafael Espindola64f7ad92012-10-07 04:44:33 +00004994 if (ToolChain.getArch() == llvm::Triple::ppc) {
Roman Divacky000a6552011-06-04 07:40:24 +00004995 CmdArgs.push_back("-m");
Roman Divacky1052c1d2011-11-21 16:50:32 +00004996 CmdArgs.push_back("elf32ppc_fbsd");
Roman Divacky000a6552011-06-04 07:40:24 +00004997 }
4998
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00004999 if (Output.isFilename()) {
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005000 CmdArgs.push_back("-o");
5001 CmdArgs.push_back(Output.getFilename());
5002 } else {
5003 assert(Output.isNothing() && "Invalid output.");
5004 }
5005
5006 if (!Args.hasArg(options::OPT_nostdlib) &&
5007 !Args.hasArg(options::OPT_nostartfiles)) {
Roman Divacky94380162012-08-28 15:09:03 +00005008 const char *crt1 = NULL;
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005009 if (!Args.hasArg(options::OPT_shared)) {
Roman Divackyc16bb762011-02-10 16:59:40 +00005010 if (Args.hasArg(options::OPT_pg))
Roman Divacky94380162012-08-28 15:09:03 +00005011 crt1 = "gcrt1.o";
5012 else if (Args.hasArg(options::OPT_pie))
5013 crt1 = "Scrt1.o";
5014 else
5015 crt1 = "crt1.o";
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005016 }
Roman Divacky94380162012-08-28 15:09:03 +00005017 if (crt1)
5018 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crt1)));
5019
5020 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crti.o")));
5021
5022 const char *crtbegin = NULL;
5023 if (Args.hasArg(options::OPT_static))
5024 crtbegin = "crtbeginT.o";
5025 else if (Args.hasArg(options::OPT_shared) || Args.hasArg(options::OPT_pie))
5026 crtbegin = "crtbeginS.o";
5027 else
5028 crtbegin = "crtbegin.o";
5029
5030 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crtbegin)));
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005031 }
5032
5033 Args.AddAllArgs(CmdArgs, options::OPT_L);
Roman Divacky94380162012-08-28 15:09:03 +00005034 const ToolChain::path_list Paths = ToolChain.getFilePaths();
Roman Divacky58e5ac92011-03-01 17:53:14 +00005035 for (ToolChain::path_list::const_iterator i = Paths.begin(), e = Paths.end();
5036 i != e; ++i)
Chris Lattner5f9e2722011-07-23 10:55:15 +00005037 CmdArgs.push_back(Args.MakeArgString(StringRef("-L") + *i));
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005038 Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
5039 Args.AddAllArgs(CmdArgs, options::OPT_e);
David Chisnallc7363772010-08-15 22:58:12 +00005040 Args.AddAllArgs(CmdArgs, options::OPT_s);
5041 Args.AddAllArgs(CmdArgs, options::OPT_t);
5042 Args.AddAllArgs(CmdArgs, options::OPT_Z_Flag);
5043 Args.AddAllArgs(CmdArgs, options::OPT_r);
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005044
Roman Divacky94380162012-08-28 15:09:03 +00005045 AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs);
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005046
5047 if (!Args.hasArg(options::OPT_nostdlib) &&
5048 !Args.hasArg(options::OPT_nodefaultlibs)) {
Daniel Dunbar20022632010-02-17 08:07:51 +00005049 if (D.CCCIsCXX) {
Roman Divacky94380162012-08-28 15:09:03 +00005050 ToolChain.AddCXXStdlibLibArgs(Args, CmdArgs);
Roman Divackyc16bb762011-02-10 16:59:40 +00005051 if (Args.hasArg(options::OPT_pg))
5052 CmdArgs.push_back("-lm_p");
5053 else
5054 CmdArgs.push_back("-lm");
Daniel Dunbar20022632010-02-17 08:07:51 +00005055 }
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005056 // FIXME: For some reason GCC passes -lgcc and -lgcc_s before adding
5057 // the default system libraries. Just mimic this for now.
Roman Divackyc16bb762011-02-10 16:59:40 +00005058 if (Args.hasArg(options::OPT_pg))
5059 CmdArgs.push_back("-lgcc_p");
5060 else
5061 CmdArgs.push_back("-lgcc");
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005062 if (Args.hasArg(options::OPT_static)) {
5063 CmdArgs.push_back("-lgcc_eh");
Roman Divackyc16bb762011-02-10 16:59:40 +00005064 } else if (Args.hasArg(options::OPT_pg)) {
5065 CmdArgs.push_back("-lgcc_eh_p");
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005066 } else {
5067 CmdArgs.push_back("--as-needed");
5068 CmdArgs.push_back("-lgcc_s");
5069 CmdArgs.push_back("--no-as-needed");
5070 }
5071
Matt Beaumont-Gay24230262011-02-10 20:35:01 +00005072 if (Args.hasArg(options::OPT_pthread)) {
Roman Divackyc16bb762011-02-10 16:59:40 +00005073 if (Args.hasArg(options::OPT_pg))
5074 CmdArgs.push_back("-lpthread_p");
5075 else
5076 CmdArgs.push_back("-lpthread");
Matt Beaumont-Gay24230262011-02-10 20:35:01 +00005077 }
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005078
Roman Divackyc16bb762011-02-10 16:59:40 +00005079 if (Args.hasArg(options::OPT_pg)) {
5080 if (Args.hasArg(options::OPT_shared))
5081 CmdArgs.push_back("-lc");
5082 else
5083 CmdArgs.push_back("-lc_p");
5084 CmdArgs.push_back("-lgcc_p");
5085 } else {
5086 CmdArgs.push_back("-lc");
5087 CmdArgs.push_back("-lgcc");
5088 }
5089
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005090 if (Args.hasArg(options::OPT_static)) {
5091 CmdArgs.push_back("-lgcc_eh");
Roman Divackyc16bb762011-02-10 16:59:40 +00005092 } else if (Args.hasArg(options::OPT_pg)) {
5093 CmdArgs.push_back("-lgcc_eh_p");
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005094 } else {
5095 CmdArgs.push_back("--as-needed");
5096 CmdArgs.push_back("-lgcc_s");
5097 CmdArgs.push_back("--no-as-needed");
5098 }
5099 }
5100
5101 if (!Args.hasArg(options::OPT_nostdlib) &&
5102 !Args.hasArg(options::OPT_nostartfiles)) {
Roman Divackyf6513812012-09-07 13:36:21 +00005103 if (Args.hasArg(options::OPT_shared) || Args.hasArg(options::OPT_pie))
Roman Divacky94380162012-08-28 15:09:03 +00005104 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crtendS.o")));
Roman Divackyf6513812012-09-07 13:36:21 +00005105 else
5106 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crtend.o")));
Roman Divacky94380162012-08-28 15:09:03 +00005107 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crtn.o")));
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005108 }
5109
Roman Divacky94380162012-08-28 15:09:03 +00005110 addProfileRT(ToolChain, Args, CmdArgs, ToolChain.getTriple());
Nick Lewycky2e95a6d2011-05-24 21:54:59 +00005111
Daniel Dunbarc21c4852009-04-08 23:54:23 +00005112 const char *Exec =
Roman Divacky94380162012-08-28 15:09:03 +00005113 Args.MakeArgString(ToolChain.GetProgramPath("ld"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00005114 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbar008f54a2009-04-01 19:36:32 +00005115}
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005116
Benjamin Kramer8e50a962011-02-02 18:59:27 +00005117void netbsd::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
5118 const InputInfo &Output,
5119 const InputInfoList &Inputs,
5120 const ArgList &Args,
5121 const char *LinkingOutput) const {
5122 ArgStringList CmdArgs;
5123
5124 // When building 32-bit code on NetBSD/amd64, we have to explicitly
5125 // instruct as in the base system to assemble 32-bit code.
Joerg Sonnenberger1bd91372012-01-26 22:27:52 +00005126 if (getToolChain().getArch() == llvm::Triple::x86)
Benjamin Kramer8e50a962011-02-02 18:59:27 +00005127 CmdArgs.push_back("--32");
5128
Benjamin Kramer8e50a962011-02-02 18:59:27 +00005129 // Set byte order explicitly
Rafael Espindola64f7ad92012-10-07 04:44:33 +00005130 if (getToolChain().getArch() == llvm::Triple::mips)
Benjamin Kramer8e50a962011-02-02 18:59:27 +00005131 CmdArgs.push_back("-EB");
Rafael Espindola64f7ad92012-10-07 04:44:33 +00005132 else if (getToolChain().getArch() == llvm::Triple::mipsel)
Benjamin Kramer8e50a962011-02-02 18:59:27 +00005133 CmdArgs.push_back("-EL");
5134
5135 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
5136 options::OPT_Xassembler);
5137
5138 CmdArgs.push_back("-o");
5139 CmdArgs.push_back(Output.getFilename());
5140
5141 for (InputInfoList::const_iterator
5142 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
5143 const InputInfo &II = *it;
5144 CmdArgs.push_back(II.getFilename());
5145 }
5146
David Chisnall5adcec12011-09-27 22:03:18 +00005147 const char *Exec = Args.MakeArgString((getToolChain().GetProgramPath("as")));
Benjamin Kramer8e50a962011-02-02 18:59:27 +00005148 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
5149}
5150
5151void netbsd::Link::ConstructJob(Compilation &C, const JobAction &JA,
5152 const InputInfo &Output,
5153 const InputInfoList &Inputs,
5154 const ArgList &Args,
5155 const char *LinkingOutput) const {
5156 const Driver &D = getToolChain().getDriver();
5157 ArgStringList CmdArgs;
5158
Joerg Sonnenberger8ab2bdc2011-03-21 13:51:29 +00005159 if (!D.SysRoot.empty())
5160 CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot));
5161
Benjamin Kramer8e50a962011-02-02 18:59:27 +00005162 if (Args.hasArg(options::OPT_static)) {
5163 CmdArgs.push_back("-Bstatic");
5164 } else {
5165 if (Args.hasArg(options::OPT_rdynamic))
5166 CmdArgs.push_back("-export-dynamic");
5167 CmdArgs.push_back("--eh-frame-hdr");
5168 if (Args.hasArg(options::OPT_shared)) {
5169 CmdArgs.push_back("-Bshareable");
5170 } else {
5171 CmdArgs.push_back("-dynamic-linker");
5172 CmdArgs.push_back("/libexec/ld.elf_so");
5173 }
5174 }
5175
5176 // When building 32-bit code on NetBSD/amd64, we have to explicitly
5177 // instruct ld in the base system to link 32-bit code.
Joerg Sonnenberger1bd91372012-01-26 22:27:52 +00005178 if (getToolChain().getArch() == llvm::Triple::x86) {
Benjamin Kramer8e50a962011-02-02 18:59:27 +00005179 CmdArgs.push_back("-m");
5180 CmdArgs.push_back("elf_i386");
5181 }
5182
5183 if (Output.isFilename()) {
5184 CmdArgs.push_back("-o");
5185 CmdArgs.push_back(Output.getFilename());
5186 } else {
5187 assert(Output.isNothing() && "Invalid output.");
5188 }
5189
5190 if (!Args.hasArg(options::OPT_nostdlib) &&
5191 !Args.hasArg(options::OPT_nostartfiles)) {
5192 if (!Args.hasArg(options::OPT_shared)) {
5193 CmdArgs.push_back(Args.MakeArgString(
5194 getToolChain().GetFilePath("crt0.o")));
5195 CmdArgs.push_back(Args.MakeArgString(
5196 getToolChain().GetFilePath("crti.o")));
5197 CmdArgs.push_back(Args.MakeArgString(
5198 getToolChain().GetFilePath("crtbegin.o")));
5199 } else {
5200 CmdArgs.push_back(Args.MakeArgString(
5201 getToolChain().GetFilePath("crti.o")));
5202 CmdArgs.push_back(Args.MakeArgString(
5203 getToolChain().GetFilePath("crtbeginS.o")));
5204 }
5205 }
5206
5207 Args.AddAllArgs(CmdArgs, options::OPT_L);
5208 Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
5209 Args.AddAllArgs(CmdArgs, options::OPT_e);
5210 Args.AddAllArgs(CmdArgs, options::OPT_s);
5211 Args.AddAllArgs(CmdArgs, options::OPT_t);
5212 Args.AddAllArgs(CmdArgs, options::OPT_Z_Flag);
5213 Args.AddAllArgs(CmdArgs, options::OPT_r);
5214
5215 AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
5216
5217 if (!Args.hasArg(options::OPT_nostdlib) &&
5218 !Args.hasArg(options::OPT_nodefaultlibs)) {
5219 if (D.CCCIsCXX) {
5220 getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
5221 CmdArgs.push_back("-lm");
5222 }
5223 // FIXME: For some reason GCC passes -lgcc and -lgcc_s before adding
5224 // the default system libraries. Just mimic this for now.
Benjamin Kramer8e50a962011-02-02 18:59:27 +00005225 if (Args.hasArg(options::OPT_static)) {
5226 CmdArgs.push_back("-lgcc_eh");
5227 } else {
5228 CmdArgs.push_back("--as-needed");
5229 CmdArgs.push_back("-lgcc_s");
5230 CmdArgs.push_back("--no-as-needed");
5231 }
Joerg Sonnenbergerdb6393f2011-06-07 23:39:17 +00005232 CmdArgs.push_back("-lgcc");
Benjamin Kramer8e50a962011-02-02 18:59:27 +00005233
5234 if (Args.hasArg(options::OPT_pthread))
5235 CmdArgs.push_back("-lpthread");
5236 CmdArgs.push_back("-lc");
5237
5238 CmdArgs.push_back("-lgcc");
5239 if (Args.hasArg(options::OPT_static)) {
5240 CmdArgs.push_back("-lgcc_eh");
5241 } else {
5242 CmdArgs.push_back("--as-needed");
5243 CmdArgs.push_back("-lgcc_s");
5244 CmdArgs.push_back("--no-as-needed");
5245 }
5246 }
5247
5248 if (!Args.hasArg(options::OPT_nostdlib) &&
5249 !Args.hasArg(options::OPT_nostartfiles)) {
5250 if (!Args.hasArg(options::OPT_shared))
5251 CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath(
5252 "crtend.o")));
5253 else
5254 CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath(
5255 "crtendS.o")));
5256 CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath(
5257 "crtn.o")));
5258 }
5259
Bill Wendling3f4be6f2011-06-27 19:15:03 +00005260 addProfileRT(getToolChain(), Args, CmdArgs, getToolChain().getTriple());
Nick Lewycky2e95a6d2011-05-24 21:54:59 +00005261
David Chisnall5adcec12011-09-27 22:03:18 +00005262 const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("ld"));
Benjamin Kramer8e50a962011-02-02 18:59:27 +00005263 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
5264}
5265
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00005266void linuxtools::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
5267 const InputInfo &Output,
5268 const InputInfoList &Inputs,
5269 const ArgList &Args,
5270 const char *LinkingOutput) const {
5271 ArgStringList CmdArgs;
5272
5273 // Add --32/--64 to make sure we get the format we want.
5274 // This is incomplete
5275 if (getToolChain().getArch() == llvm::Triple::x86) {
5276 CmdArgs.push_back("--32");
5277 } else if (getToolChain().getArch() == llvm::Triple::x86_64) {
5278 CmdArgs.push_back("--64");
Eli Friedman7972c882011-11-28 23:46:52 +00005279 } else if (getToolChain().getArch() == llvm::Triple::ppc) {
5280 CmdArgs.push_back("-a32");
5281 CmdArgs.push_back("-mppc");
5282 CmdArgs.push_back("-many");
5283 } else if (getToolChain().getArch() == llvm::Triple::ppc64) {
5284 CmdArgs.push_back("-a64");
5285 CmdArgs.push_back("-mppc64");
5286 CmdArgs.push_back("-many");
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00005287 } else if (getToolChain().getArch() == llvm::Triple::arm) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00005288 StringRef MArch = getToolChain().getArchName();
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00005289 if (MArch == "armv7" || MArch == "armv7a" || MArch == "armv7-a")
5290 CmdArgs.push_back("-mfpu=neon");
Evgeniy Stepanov700c5082012-04-20 09:03:40 +00005291
5292 StringRef ARMFloatABI = getARMFloatABI(getToolChain().getDriver(), Args,
5293 getToolChain().getTriple());
5294 CmdArgs.push_back(Args.MakeArgString("-mfloat-abi=" + ARMFloatABI));
Evgeniy Stepanoveca187e2012-04-24 09:05:31 +00005295
5296 Args.AddLastArg(CmdArgs, options::OPT_march_EQ);
5297 Args.AddLastArg(CmdArgs, options::OPT_mcpu_EQ);
5298 Args.AddLastArg(CmdArgs, options::OPT_mfpu_EQ);
Akira Hatanakac85900f2011-11-30 19:31:38 +00005299 } else if (getToolChain().getArch() == llvm::Triple::mips ||
5300 getToolChain().getArch() == llvm::Triple::mipsel ||
5301 getToolChain().getArch() == llvm::Triple::mips64 ||
5302 getToolChain().getArch() == llvm::Triple::mips64el) {
Simon Atanasyan073a7802012-04-07 22:31:29 +00005303 StringRef CPUName;
5304 StringRef ABIName;
5305 getMipsCPUAndABI(Args, getToolChain(), CPUName, ABIName);
Akira Hatanakac85900f2011-11-30 19:31:38 +00005306
Simon Atanasyan073a7802012-04-07 22:31:29 +00005307 CmdArgs.push_back("-march");
5308 CmdArgs.push_back(CPUName.data());
5309
5310 // Convert ABI name to the GNU tools acceptable variant.
5311 if (ABIName == "o32")
5312 ABIName = "32";
5313 else if (ABIName == "n64")
5314 ABIName = "64";
5315
5316 CmdArgs.push_back("-mabi");
5317 CmdArgs.push_back(ABIName.data());
Simon Atanasyan5f0a1c12012-04-06 19:15:24 +00005318
5319 if (getToolChain().getArch() == llvm::Triple::mips ||
5320 getToolChain().getArch() == llvm::Triple::mips64)
5321 CmdArgs.push_back("-EB");
5322 else
5323 CmdArgs.push_back("-EL");
Simon Atanasyan1f0646e2012-05-29 19:07:33 +00005324
5325 Arg *LastPICArg = Args.getLastArg(options::OPT_fPIC, options::OPT_fno_PIC,
5326 options::OPT_fpic, options::OPT_fno_pic,
5327 options::OPT_fPIE, options::OPT_fno_PIE,
5328 options::OPT_fpie, options::OPT_fno_pie);
5329 if (LastPICArg &&
5330 (LastPICArg->getOption().matches(options::OPT_fPIC) ||
5331 LastPICArg->getOption().matches(options::OPT_fpic) ||
5332 LastPICArg->getOption().matches(options::OPT_fPIE) ||
5333 LastPICArg->getOption().matches(options::OPT_fpie))) {
5334 CmdArgs.push_back("-KPIC");
5335 }
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00005336 }
5337
5338 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
5339 options::OPT_Xassembler);
5340
5341 CmdArgs.push_back("-o");
5342 CmdArgs.push_back(Output.getFilename());
5343
5344 for (InputInfoList::const_iterator
5345 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
5346 const InputInfo &II = *it;
5347 CmdArgs.push_back(II.getFilename());
5348 }
5349
5350 const char *Exec =
5351 Args.MakeArgString(getToolChain().GetProgramPath("as"));
5352 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
5353}
5354
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005355static void AddLibgcc(llvm::Triple Triple, const Driver &D,
5356 ArgStringList &CmdArgs, const ArgList &Args) {
Logan Chien94a71422012-09-02 09:30:11 +00005357 bool isAndroid = Triple.getEnvironment() == llvm::Triple::Android;
Logan Chien529a73d2012-11-19 12:04:11 +00005358 bool StaticLibgcc = Args.hasArg(options::OPT_static) ||
5359 Args.hasArg(options::OPT_static_libgcc);
Rafael Espindolaabf3ac72011-10-17 21:39:04 +00005360 if (!D.CCCIsCXX)
5361 CmdArgs.push_back("-lgcc");
5362
Logan Chien529a73d2012-11-19 12:04:11 +00005363 if (StaticLibgcc || isAndroid) {
Rafael Espindolaabf3ac72011-10-17 21:39:04 +00005364 if (D.CCCIsCXX)
5365 CmdArgs.push_back("-lgcc");
5366 } else {
5367 if (!D.CCCIsCXX)
5368 CmdArgs.push_back("--as-needed");
5369 CmdArgs.push_back("-lgcc_s");
5370 if (!D.CCCIsCXX)
5371 CmdArgs.push_back("--no-as-needed");
5372 }
5373
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005374 if (StaticLibgcc && !isAndroid)
Rafael Espindolaabf3ac72011-10-17 21:39:04 +00005375 CmdArgs.push_back("-lgcc_eh");
5376 else if (!Args.hasArg(options::OPT_shared) && D.CCCIsCXX)
5377 CmdArgs.push_back("-lgcc");
Logan Chien529a73d2012-11-19 12:04:11 +00005378
5379 // According to Android ABI, we have to link with libdl if we are
5380 // linking with non-static libgcc.
5381 //
5382 // NOTE: This fixes a link error on Android MIPS as well. The non-static
5383 // libgcc for MIPS relies on _Unwind_Find_FDE and dl_iterate_phdr from libdl.
5384 if (isAndroid && !StaticLibgcc)
5385 CmdArgs.push_back("-ldl");
Rafael Espindolaabf3ac72011-10-17 21:39:04 +00005386}
5387
Simon Atanasyanf4bd3292012-10-21 11:44:57 +00005388static bool hasMipsN32ABIArg(const ArgList &Args) {
5389 Arg *A = Args.getLastArg(options::OPT_mabi_EQ);
Richard Smith1d489cf2012-11-01 04:30:05 +00005390 return A && (A->getValue() == StringRef("n32"));
Simon Atanasyanf4bd3292012-10-21 11:44:57 +00005391}
5392
Rafael Espindolac1da9812010-11-07 20:14:31 +00005393void linuxtools::Link::ConstructJob(Compilation &C, const JobAction &JA,
5394 const InputInfo &Output,
5395 const InputInfoList &Inputs,
5396 const ArgList &Args,
5397 const char *LinkingOutput) const {
5398 const toolchains::Linux& ToolChain =
5399 static_cast<const toolchains::Linux&>(getToolChain());
5400 const Driver &D = ToolChain.getDriver();
Rafael Espindola715852c2012-11-02 20:41:30 +00005401 const bool isAndroid =
5402 ToolChain.getTriple().getEnvironment() == llvm::Triple::Android;
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005403
Rafael Espindolac1da9812010-11-07 20:14:31 +00005404 ArgStringList CmdArgs;
5405
Rafael Espindola26f14c32010-11-15 18:28:16 +00005406 // Silence warning for "clang -g foo.o -o foo"
5407 Args.ClaimAllArgs(options::OPT_g_Group);
Rafael Espindola9c094fb2011-03-01 05:25:27 +00005408 // and "clang -emit-llvm foo.o -o foo"
5409 Args.ClaimAllArgs(options::OPT_emit_llvm);
David Chisnalldfa210b2012-07-29 15:24:44 +00005410 // and for "clang -w foo.o -o foo". Other warning options are already
Rafael Espindola7f6458b2010-11-17 20:37:10 +00005411 // handled somewhere else.
5412 Args.ClaimAllArgs(options::OPT_w);
Rafael Espindola26f14c32010-11-15 18:28:16 +00005413
Joerg Sonnenberger8ab2bdc2011-03-21 13:51:29 +00005414 if (!D.SysRoot.empty())
5415 CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot));
Rafael Espindolac1da9812010-11-07 20:14:31 +00005416
Rafael Espindolafdda1712010-11-17 22:26:15 +00005417 if (Args.hasArg(options::OPT_pie))
5418 CmdArgs.push_back("-pie");
5419
Rafael Espindoladc1b76d2010-11-07 22:57:16 +00005420 if (Args.hasArg(options::OPT_rdynamic))
5421 CmdArgs.push_back("-export-dynamic");
5422
Rafael Espindolae0e6d3b2010-11-11 19:34:42 +00005423 if (Args.hasArg(options::OPT_s))
5424 CmdArgs.push_back("-s");
5425
Rafael Espindolac1da9812010-11-07 20:14:31 +00005426 for (std::vector<std::string>::const_iterator i = ToolChain.ExtraOpts.begin(),
5427 e = ToolChain.ExtraOpts.end();
5428 i != e; ++i)
5429 CmdArgs.push_back(i->c_str());
5430
5431 if (!Args.hasArg(options::OPT_static)) {
5432 CmdArgs.push_back("--eh-frame-hdr");
5433 }
5434
5435 CmdArgs.push_back("-m");
5436 if (ToolChain.getArch() == llvm::Triple::x86)
5437 CmdArgs.push_back("elf_i386");
Eric Christopher88b7cf02011-08-19 00:30:14 +00005438 else if (ToolChain.getArch() == llvm::Triple::arm
Douglas Gregorf0594d82011-03-06 19:11:49 +00005439 || ToolChain.getArch() == llvm::Triple::thumb)
Rafael Espindolac1da9812010-11-07 20:14:31 +00005440 CmdArgs.push_back("armelf_linux_eabi");
Ted Kremenek43ac2972011-04-05 22:04:27 +00005441 else if (ToolChain.getArch() == llvm::Triple::ppc)
5442 CmdArgs.push_back("elf32ppclinux");
5443 else if (ToolChain.getArch() == llvm::Triple::ppc64)
5444 CmdArgs.push_back("elf64ppc");
Eli Friedman5bea4f62011-11-08 19:43:37 +00005445 else if (ToolChain.getArch() == llvm::Triple::mips)
5446 CmdArgs.push_back("elf32btsmip");
5447 else if (ToolChain.getArch() == llvm::Triple::mipsel)
5448 CmdArgs.push_back("elf32ltsmip");
Simon Atanasyanf4bd3292012-10-21 11:44:57 +00005449 else if (ToolChain.getArch() == llvm::Triple::mips64) {
5450 if (hasMipsN32ABIArg(Args))
5451 CmdArgs.push_back("elf32btsmipn32");
5452 else
5453 CmdArgs.push_back("elf64btsmip");
5454 }
5455 else if (ToolChain.getArch() == llvm::Triple::mips64el) {
5456 if (hasMipsN32ABIArg(Args))
5457 CmdArgs.push_back("elf32ltsmipn32");
5458 else
5459 CmdArgs.push_back("elf64ltsmip");
5460 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00005461 else
5462 CmdArgs.push_back("elf_x86_64");
5463
5464 if (Args.hasArg(options::OPT_static)) {
Douglas Gregorf0594d82011-03-06 19:11:49 +00005465 if (ToolChain.getArch() == llvm::Triple::arm
5466 || ToolChain.getArch() == llvm::Triple::thumb)
Rafael Espindolac1da9812010-11-07 20:14:31 +00005467 CmdArgs.push_back("-Bstatic");
5468 else
5469 CmdArgs.push_back("-static");
5470 } else if (Args.hasArg(options::OPT_shared)) {
5471 CmdArgs.push_back("-shared");
Rafael Espindola715852c2012-11-02 20:41:30 +00005472 if (isAndroid) {
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005473 CmdArgs.push_back("-Bsymbolic");
5474 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00005475 }
5476
5477 if (ToolChain.getArch() == llvm::Triple::arm ||
Douglas Gregorf0594d82011-03-06 19:11:49 +00005478 ToolChain.getArch() == llvm::Triple::thumb ||
Rafael Espindolac1da9812010-11-07 20:14:31 +00005479 (!Args.hasArg(options::OPT_static) &&
5480 !Args.hasArg(options::OPT_shared))) {
5481 CmdArgs.push_back("-dynamic-linker");
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005482 if (isAndroid)
5483 CmdArgs.push_back("/system/bin/linker");
5484 else if (ToolChain.getArch() == llvm::Triple::x86)
Rafael Espindolac1da9812010-11-07 20:14:31 +00005485 CmdArgs.push_back("/lib/ld-linux.so.2");
Douglas Gregorf0594d82011-03-06 19:11:49 +00005486 else if (ToolChain.getArch() == llvm::Triple::arm ||
Jiangning Liu6cc9dc82012-07-30 11:05:56 +00005487 ToolChain.getArch() == llvm::Triple::thumb) {
5488 if (ToolChain.getTriple().getEnvironment() == llvm::Triple::GNUEABIHF)
5489 CmdArgs.push_back("/lib/ld-linux-armhf.so.3");
5490 else
5491 CmdArgs.push_back("/lib/ld-linux.so.3");
5492 }
Eli Friedman5bea4f62011-11-08 19:43:37 +00005493 else if (ToolChain.getArch() == llvm::Triple::mips ||
5494 ToolChain.getArch() == llvm::Triple::mipsel)
5495 CmdArgs.push_back("/lib/ld.so.1");
Simon Atanasyan8491cb22012-04-06 20:14:27 +00005496 else if (ToolChain.getArch() == llvm::Triple::mips64 ||
Simon Atanasyanf4bd3292012-10-21 11:44:57 +00005497 ToolChain.getArch() == llvm::Triple::mips64el) {
5498 if (hasMipsN32ABIArg(Args))
5499 CmdArgs.push_back("/lib32/ld.so.1");
5500 else
5501 CmdArgs.push_back("/lib64/ld.so.1");
5502 }
Ted Kremenek43ac2972011-04-05 22:04:27 +00005503 else if (ToolChain.getArch() == llvm::Triple::ppc)
Chris Lattner09f43ed2011-04-11 21:15:37 +00005504 CmdArgs.push_back("/lib/ld.so.1");
Ted Kremenek43ac2972011-04-05 22:04:27 +00005505 else if (ToolChain.getArch() == llvm::Triple::ppc64)
Chris Lattner09f43ed2011-04-11 21:15:37 +00005506 CmdArgs.push_back("/lib64/ld64.so.1");
Rafael Espindolac1da9812010-11-07 20:14:31 +00005507 else
5508 CmdArgs.push_back("/lib64/ld-linux-x86-64.so.2");
5509 }
5510
5511 CmdArgs.push_back("-o");
5512 CmdArgs.push_back(Output.getFilename());
5513
Rafael Espindola49c64fd2010-12-01 01:52:43 +00005514 if (!Args.hasArg(options::OPT_nostdlib) &&
5515 !Args.hasArg(options::OPT_nostartfiles)) {
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005516 if (!isAndroid) {
5517 const char *crt1 = NULL;
5518 if (!Args.hasArg(options::OPT_shared)){
5519 if (Args.hasArg(options::OPT_pie))
5520 crt1 = "Scrt1.o";
5521 else
5522 crt1 = "crt1.o";
5523 }
5524 if (crt1)
5525 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crt1)));
Rafael Espindolac1da9812010-11-07 20:14:31 +00005526
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005527 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crti.o")));
5528 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00005529
Rafael Espindola89414b32010-11-12 03:00:39 +00005530 const char *crtbegin;
5531 if (Args.hasArg(options::OPT_static))
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005532 crtbegin = isAndroid ? "crtbegin_static.o" : "crtbeginT.o";
Evgeniy Stepanova92983d2012-09-10 10:30:12 +00005533 else if (Args.hasArg(options::OPT_shared))
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005534 crtbegin = isAndroid ? "crtbegin_so.o" : "crtbeginS.o";
Evgeniy Stepanova92983d2012-09-10 10:30:12 +00005535 else if (Args.hasArg(options::OPT_pie))
5536 crtbegin = isAndroid ? "crtbegin_dynamic.o" : "crtbeginS.o";
Rafael Espindola89414b32010-11-12 03:00:39 +00005537 else
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005538 crtbegin = isAndroid ? "crtbegin_dynamic.o" : "crtbegin.o";
Rafael Espindola89414b32010-11-12 03:00:39 +00005539 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crtbegin)));
Benjamin Kramere20e5082012-10-04 19:42:20 +00005540
5541 // Add crtfastmath.o if available and fast math is enabled.
5542 ToolChain.AddFastMathRuntimeIfAvailable(Args, CmdArgs);
Rafael Espindola89414b32010-11-12 03:00:39 +00005543 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00005544
5545 Args.AddAllArgs(CmdArgs, options::OPT_L);
5546
5547 const ToolChain::path_list Paths = ToolChain.getFilePaths();
5548
Roman Divacky58e5ac92011-03-01 17:53:14 +00005549 for (ToolChain::path_list::const_iterator i = Paths.begin(), e = Paths.end();
5550 i != e; ++i)
Chris Lattner5f9e2722011-07-23 10:55:15 +00005551 CmdArgs.push_back(Args.MakeArgString(StringRef("-L") + *i));
Rafael Espindolac1da9812010-11-07 20:14:31 +00005552
Rafael Espindolac5151542012-04-09 23:53:34 +00005553 // Tell the linker to load the plugin. This has to come before AddLinkerInputs
5554 // as gold requires -plugin to come before any -plugin-opt that -Wl might
5555 // forward.
5556 if (D.IsUsingLTO(Args) || Args.hasArg(options::OPT_use_gold_plugin)) {
5557 CmdArgs.push_back("-plugin");
5558 std::string Plugin = ToolChain.getDriver().Dir + "/../lib/LLVMgold.so";
5559 CmdArgs.push_back(Args.MakeArgString(Plugin));
5560 }
5561
Nick Lewyckye276cfc2012-08-17 03:39:16 +00005562 if (Args.hasArg(options::OPT_Z_Xlinker__no_demangle))
5563 CmdArgs.push_back("--no-demangle");
5564
Rafael Espindolac1da9812010-11-07 20:14:31 +00005565 AddLinkerInputs(ToolChain, Inputs, Args, CmdArgs);
5566
Alexey Samsonovbb1071c2012-11-06 15:09:03 +00005567 SanitizerArgs Sanitize(D, Args);
Richard Smithc4dabad2012-11-05 22:04:41 +00005568
Eric Christopher6716d942012-11-29 18:51:05 +00005569 // Call these before we add the C++ ABI library.
Richard Smithc4dabad2012-11-05 22:04:41 +00005570 if (Sanitize.needsUbsanRt())
5571 addUbsanRTLinux(getToolChain(), Args, CmdArgs);
Eric Christopher6716d942012-11-29 18:51:05 +00005572 if (Sanitize.needsAsanRt())
5573 addAsanRTLinux(getToolChain(), Args, CmdArgs);
5574 if (Sanitize.needsTsanRt())
5575 addTsanRTLinux(getToolChain(), Args, CmdArgs);
Evgeniy Stepanov09ccf392012-12-03 13:20:43 +00005576 if (Sanitize.needsMsanRt())
5577 addMsanRTLinux(getToolChain(), Args, CmdArgs);
Richard Smith8e1cee62012-10-25 02:14:12 +00005578
Chandler Carruth2ba542c2012-05-14 18:31:18 +00005579 if (D.CCCIsCXX &&
5580 !Args.hasArg(options::OPT_nostdlib) &&
5581 !Args.hasArg(options::OPT_nodefaultlibs)) {
Rafael Espindola19706f82011-10-17 22:14:51 +00005582 bool OnlyLibstdcxxStatic = Args.hasArg(options::OPT_static_libstdcxx) &&
5583 !Args.hasArg(options::OPT_static);
5584 if (OnlyLibstdcxxStatic)
5585 CmdArgs.push_back("-Bstatic");
Rafael Espindolac1da9812010-11-07 20:14:31 +00005586 ToolChain.AddCXXStdlibLibArgs(Args, CmdArgs);
Rafael Espindola19706f82011-10-17 22:14:51 +00005587 if (OnlyLibstdcxxStatic)
5588 CmdArgs.push_back("-Bdynamic");
Rafael Espindolac1da9812010-11-07 20:14:31 +00005589 CmdArgs.push_back("-lm");
5590 }
5591
Rafael Espindola89414b32010-11-12 03:00:39 +00005592 if (!Args.hasArg(options::OPT_nostdlib)) {
Chandler Carruth2ba542c2012-05-14 18:31:18 +00005593 if (!Args.hasArg(options::OPT_nodefaultlibs)) {
5594 if (Args.hasArg(options::OPT_static))
5595 CmdArgs.push_back("--start-group");
Nick Lewycky80df0252011-06-04 06:27:06 +00005596
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005597 AddLibgcc(ToolChain.getTriple(), D, CmdArgs, Args);
Rafael Espindola89414b32010-11-12 03:00:39 +00005598
Chandler Carruth2ba542c2012-05-14 18:31:18 +00005599 if (Args.hasArg(options::OPT_pthread) ||
5600 Args.hasArg(options::OPT_pthreads))
5601 CmdArgs.push_back("-lpthread");
5602
5603 CmdArgs.push_back("-lc");
5604
5605 if (Args.hasArg(options::OPT_static))
5606 CmdArgs.push_back("--end-group");
5607 else
5608 AddLibgcc(ToolChain.getTriple(), D, CmdArgs, Args);
5609 }
Rafael Espindolafdda1712010-11-17 22:26:15 +00005610
Rafael Espindola49c64fd2010-12-01 01:52:43 +00005611 if (!Args.hasArg(options::OPT_nostartfiles)) {
5612 const char *crtend;
Evgeniy Stepanova92983d2012-09-10 10:30:12 +00005613 if (Args.hasArg(options::OPT_shared))
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005614 crtend = isAndroid ? "crtend_so.o" : "crtendS.o";
Evgeniy Stepanova92983d2012-09-10 10:30:12 +00005615 else if (Args.hasArg(options::OPT_pie))
5616 crtend = isAndroid ? "crtend_android.o" : "crtendS.o";
Rafael Espindola49c64fd2010-12-01 01:52:43 +00005617 else
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005618 crtend = isAndroid ? "crtend_android.o" : "crtend.o";
Rafael Espindola89414b32010-11-12 03:00:39 +00005619
Rafael Espindola49c64fd2010-12-01 01:52:43 +00005620 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath(crtend)));
Evgeniy Stepanova6ddc022012-04-25 08:59:22 +00005621 if (!isAndroid)
5622 CmdArgs.push_back(Args.MakeArgString(ToolChain.GetFilePath("crtn.o")));
Rafael Espindola49c64fd2010-12-01 01:52:43 +00005623 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00005624 }
5625
Bill Wendling3f4be6f2011-06-27 19:15:03 +00005626 addProfileRT(getToolChain(), Args, CmdArgs, getToolChain().getTriple());
Nick Lewycky2e95a6d2011-05-24 21:54:59 +00005627
Rafael Espindolac1da9812010-11-07 20:14:31 +00005628 C.addCommand(new Command(JA, *this, ToolChain.Linker.c_str(), CmdArgs));
5629}
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00005630
Chris Lattner38e317d2010-07-07 16:01:42 +00005631void minix::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00005632 const InputInfo &Output,
5633 const InputInfoList &Inputs,
5634 const ArgList &Args,
5635 const char *LinkingOutput) const {
Chris Lattner38e317d2010-07-07 16:01:42 +00005636 ArgStringList CmdArgs;
5637
5638 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
5639 options::OPT_Xassembler);
5640
5641 CmdArgs.push_back("-o");
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00005642 CmdArgs.push_back(Output.getFilename());
Chris Lattner38e317d2010-07-07 16:01:42 +00005643
5644 for (InputInfoList::const_iterator
5645 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
5646 const InputInfo &II = *it;
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00005647 CmdArgs.push_back(II.getFilename());
Chris Lattner38e317d2010-07-07 16:01:42 +00005648 }
5649
5650 const char *Exec =
Eli Friedman6d402dc2011-12-08 23:54:21 +00005651 Args.MakeArgString(getToolChain().GetProgramPath("as"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00005652 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Chris Lattner38e317d2010-07-07 16:01:42 +00005653}
5654
5655void minix::Link::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00005656 const InputInfo &Output,
5657 const InputInfoList &Inputs,
5658 const ArgList &Args,
5659 const char *LinkingOutput) const {
Chris Lattner38e317d2010-07-07 16:01:42 +00005660 const Driver &D = getToolChain().getDriver();
5661 ArgStringList CmdArgs;
5662
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00005663 if (Output.isFilename()) {
Chris Lattner38e317d2010-07-07 16:01:42 +00005664 CmdArgs.push_back("-o");
5665 CmdArgs.push_back(Output.getFilename());
5666 } else {
5667 assert(Output.isNothing() && "Invalid output.");
5668 }
5669
5670 if (!Args.hasArg(options::OPT_nostdlib) &&
Eli Friedman6d402dc2011-12-08 23:54:21 +00005671 !Args.hasArg(options::OPT_nostartfiles)) {
5672 CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath("crt1.o")));
5673 CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath("crti.o")));
5674 CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath("crtbegin.o")));
5675 CmdArgs.push_back(Args.MakeArgString(getToolChain().GetFilePath("crtn.o")));
5676 }
Chris Lattner38e317d2010-07-07 16:01:42 +00005677
5678 Args.AddAllArgs(CmdArgs, options::OPT_L);
5679 Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
5680 Args.AddAllArgs(CmdArgs, options::OPT_e);
5681
Daniel Dunbar2008fee2010-09-17 00:24:54 +00005682 AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
Chris Lattner38e317d2010-07-07 16:01:42 +00005683
Eli Friedman6d402dc2011-12-08 23:54:21 +00005684 addProfileRT(getToolChain(), Args, CmdArgs, getToolChain().getTriple());
5685
Chris Lattner38e317d2010-07-07 16:01:42 +00005686 if (!Args.hasArg(options::OPT_nostdlib) &&
5687 !Args.hasArg(options::OPT_nodefaultlibs)) {
5688 if (D.CCCIsCXX) {
Daniel Dunbar132e35d2010-09-17 01:20:05 +00005689 getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
Chris Lattner38e317d2010-07-07 16:01:42 +00005690 CmdArgs.push_back("-lm");
5691 }
Chris Lattner38e317d2010-07-07 16:01:42 +00005692 }
5693
5694 if (!Args.hasArg(options::OPT_nostdlib) &&
5695 !Args.hasArg(options::OPT_nostartfiles)) {
Eli Friedman6d402dc2011-12-08 23:54:21 +00005696 if (Args.hasArg(options::OPT_pthread))
5697 CmdArgs.push_back("-lpthread");
5698 CmdArgs.push_back("-lc");
5699 CmdArgs.push_back("-lCompilerRT-Generic");
5700 CmdArgs.push_back("-L/usr/pkg/compiler-rt/lib");
5701 CmdArgs.push_back(
5702 Args.MakeArgString(getToolChain().GetFilePath("crtend.o")));
Chris Lattner38e317d2010-07-07 16:01:42 +00005703 }
5704
Eli Friedman6d402dc2011-12-08 23:54:21 +00005705 const char *Exec = Args.MakeArgString(getToolChain().GetProgramPath("ld"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00005706 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Chris Lattner38e317d2010-07-07 16:01:42 +00005707}
5708
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005709/// DragonFly Tools
5710
5711// For now, DragonFly Assemble does just about the same as for
5712// FreeBSD, but this may change soon.
5713void dragonfly::Assemble::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00005714 const InputInfo &Output,
Daniel Dunbar294691e2009-11-04 06:24:38 +00005715 const InputInfoList &Inputs,
5716 const ArgList &Args,
5717 const char *LinkingOutput) const {
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005718 ArgStringList CmdArgs;
5719
5720 // When building 32-bit code on DragonFly/pc64, we have to explicitly
5721 // instruct as in the base system to assemble 32-bit code.
Rafael Espindola64f7ad92012-10-07 04:44:33 +00005722 if (getToolChain().getArch() == llvm::Triple::x86)
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005723 CmdArgs.push_back("--32");
5724
5725 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA,
5726 options::OPT_Xassembler);
5727
5728 CmdArgs.push_back("-o");
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00005729 CmdArgs.push_back(Output.getFilename());
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005730
5731 for (InputInfoList::const_iterator
5732 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
5733 const InputInfo &II = *it;
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00005734 CmdArgs.push_back(II.getFilename());
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005735 }
5736
5737 const char *Exec =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00005738 Args.MakeArgString(getToolChain().GetProgramPath("as"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00005739 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005740}
5741
5742void dragonfly::Link::ConstructJob(Compilation &C, const JobAction &JA,
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00005743 const InputInfo &Output,
5744 const InputInfoList &Inputs,
5745 const ArgList &Args,
5746 const char *LinkingOutput) const {
Daniel Dunbaree788e72009-12-21 18:54:17 +00005747 const Driver &D = getToolChain().getDriver();
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005748 ArgStringList CmdArgs;
5749
Joerg Sonnenberger8ab2bdc2011-03-21 13:51:29 +00005750 if (!D.SysRoot.empty())
5751 CmdArgs.push_back(Args.MakeArgString("--sysroot=" + D.SysRoot));
5752
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005753 if (Args.hasArg(options::OPT_static)) {
5754 CmdArgs.push_back("-Bstatic");
5755 } else {
5756 if (Args.hasArg(options::OPT_shared))
5757 CmdArgs.push_back("-Bshareable");
5758 else {
5759 CmdArgs.push_back("-dynamic-linker");
5760 CmdArgs.push_back("/usr/libexec/ld-elf.so.2");
5761 }
5762 }
5763
5764 // When building 32-bit code on DragonFly/pc64, we have to explicitly
5765 // instruct ld in the base system to link 32-bit code.
Rafael Espindola64f7ad92012-10-07 04:44:33 +00005766 if (getToolChain().getArch() == llvm::Triple::x86) {
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005767 CmdArgs.push_back("-m");
5768 CmdArgs.push_back("elf_i386");
5769 }
5770
Daniel Dunbar7c1e4652010-08-02 02:38:21 +00005771 if (Output.isFilename()) {
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005772 CmdArgs.push_back("-o");
5773 CmdArgs.push_back(Output.getFilename());
5774 } else {
5775 assert(Output.isNothing() && "Invalid output.");
5776 }
5777
5778 if (!Args.hasArg(options::OPT_nostdlib) &&
5779 !Args.hasArg(options::OPT_nostartfiles)) {
5780 if (!Args.hasArg(options::OPT_shared)) {
Chris Lattner38e317d2010-07-07 16:01:42 +00005781 CmdArgs.push_back(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00005782 Args.MakeArgString(getToolChain().GetFilePath("crt1.o")));
Chris Lattner38e317d2010-07-07 16:01:42 +00005783 CmdArgs.push_back(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00005784 Args.MakeArgString(getToolChain().GetFilePath("crti.o")));
Chris Lattner38e317d2010-07-07 16:01:42 +00005785 CmdArgs.push_back(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00005786 Args.MakeArgString(getToolChain().GetFilePath("crtbegin.o")));
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005787 } else {
Chris Lattner38e317d2010-07-07 16:01:42 +00005788 CmdArgs.push_back(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00005789 Args.MakeArgString(getToolChain().GetFilePath("crti.o")));
Chris Lattner38e317d2010-07-07 16:01:42 +00005790 CmdArgs.push_back(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00005791 Args.MakeArgString(getToolChain().GetFilePath("crtbeginS.o")));
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005792 }
5793 }
5794
5795 Args.AddAllArgs(CmdArgs, options::OPT_L);
5796 Args.AddAllArgs(CmdArgs, options::OPT_T_Group);
5797 Args.AddAllArgs(CmdArgs, options::OPT_e);
5798
Daniel Dunbar2008fee2010-09-17 00:24:54 +00005799 AddLinkerInputs(getToolChain(), Inputs, Args, CmdArgs);
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005800
5801 if (!Args.hasArg(options::OPT_nostdlib) &&
5802 !Args.hasArg(options::OPT_nodefaultlibs)) {
5803 // FIXME: GCC passes on -lgcc, -lgcc_pic and a whole lot of
5804 // rpaths
5805 CmdArgs.push_back("-L/usr/lib/gcc41");
5806
5807 if (!Args.hasArg(options::OPT_static)) {
5808 CmdArgs.push_back("-rpath");
5809 CmdArgs.push_back("/usr/lib/gcc41");
5810
5811 CmdArgs.push_back("-rpath-link");
5812 CmdArgs.push_back("/usr/lib/gcc41");
5813
5814 CmdArgs.push_back("-rpath");
5815 CmdArgs.push_back("/usr/lib");
5816
5817 CmdArgs.push_back("-rpath-link");
5818 CmdArgs.push_back("/usr/lib");
5819 }
5820
Rafael Espindola405861d2010-07-20 12:59:03 +00005821 if (D.CCCIsCXX) {
Daniel Dunbar132e35d2010-09-17 01:20:05 +00005822 getToolChain().AddCXXStdlibLibArgs(Args, CmdArgs);
Rafael Espindola405861d2010-07-20 12:59:03 +00005823 CmdArgs.push_back("-lm");
5824 }
5825
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005826 if (Args.hasArg(options::OPT_shared)) {
5827 CmdArgs.push_back("-lgcc_pic");
5828 } else {
5829 CmdArgs.push_back("-lgcc");
5830 }
5831
5832
5833 if (Args.hasArg(options::OPT_pthread))
Mike Stump4d63f8b2009-10-31 20:11:46 +00005834 CmdArgs.push_back("-lpthread");
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005835
5836 if (!Args.hasArg(options::OPT_nolibc)) {
5837 CmdArgs.push_back("-lc");
5838 }
5839
5840 if (Args.hasArg(options::OPT_shared)) {
5841 CmdArgs.push_back("-lgcc_pic");
5842 } else {
5843 CmdArgs.push_back("-lgcc");
5844 }
5845 }
5846
5847 if (!Args.hasArg(options::OPT_nostdlib) &&
5848 !Args.hasArg(options::OPT_nostartfiles)) {
5849 if (!Args.hasArg(options::OPT_shared))
Chris Lattner38e317d2010-07-07 16:01:42 +00005850 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00005851 getToolChain().GetFilePath("crtend.o")));
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005852 else
Chris Lattner38e317d2010-07-07 16:01:42 +00005853 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00005854 getToolChain().GetFilePath("crtendS.o")));
Chris Lattner38e317d2010-07-07 16:01:42 +00005855 CmdArgs.push_back(Args.MakeArgString(
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00005856 getToolChain().GetFilePath("crtn.o")));
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005857 }
5858
Bill Wendling3f4be6f2011-06-27 19:15:03 +00005859 addProfileRT(getToolChain(), Args, CmdArgs, getToolChain().getTriple());
Nick Lewycky2e95a6d2011-05-24 21:54:59 +00005860
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005861 const char *Exec =
Daniel Dunbar4a7e8892010-07-14 18:46:23 +00005862 Args.MakeArgString(getToolChain().GetProgramPath("ld"));
Daniel Dunbar2fe238e2010-08-02 02:38:28 +00005863 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
Daniel Dunbar11e1b402009-05-02 18:28:39 +00005864}
Michael J. Spencerff58e362010-08-21 21:55:07 +00005865
5866void visualstudio::Link::ConstructJob(Compilation &C, const JobAction &JA,
5867 const InputInfo &Output,
5868 const InputInfoList &Inputs,
5869 const ArgList &Args,
5870 const char *LinkingOutput) const {
Michael J. Spencerff58e362010-08-21 21:55:07 +00005871 ArgStringList CmdArgs;
5872
5873 if (Output.isFilename()) {
Daniel Dunbare5a37f42010-09-17 00:45:02 +00005874 CmdArgs.push_back(Args.MakeArgString(std::string("-out:") +
5875 Output.getFilename()));
Michael J. Spencerff58e362010-08-21 21:55:07 +00005876 } else {
5877 assert(Output.isNothing() && "Invalid output.");
5878 }
5879
5880 if (!Args.hasArg(options::OPT_nostdlib) &&
5881 !Args.hasArg(options::OPT_nostartfiles)) {
5882 CmdArgs.push_back("-defaultlib:libcmt");
5883 }
5884
5885 CmdArgs.push_back("-nologo");
5886
Michael J. Spencera2284f52012-06-18 16:56:04 +00005887 Args.AddAllArgValues(CmdArgs, options::OPT_l);
5888
5889 // Add filenames immediately.
5890 for (InputInfoList::const_iterator
5891 it = Inputs.begin(), ie = Inputs.end(); it != ie; ++it) {
5892 if (it->isFilename())
5893 CmdArgs.push_back(it->getFilename());
5894 }
Michael J. Spencerff58e362010-08-21 21:55:07 +00005895
5896 const char *Exec =
Daniel Dunbar2008fee2010-09-17 00:24:54 +00005897 Args.MakeArgString(getToolChain().GetProgramPath("link.exe"));
Michael J. Spencerff58e362010-08-21 21:55:07 +00005898 C.addCommand(new Command(JA, *this, Exec, CmdArgs));
5899}