blob: a8b33c3ec0d1f2a4fbea0954e6bf31a5ee98f35b [file] [log] [blame]
Nick Lewycky3fdcc6f2010-12-31 17:31:54 +00001//===--- ToolChains.cpp - ToolChain Implementations -----------------------===//
Daniel Dunbar39176082009-03-20 00:20:03 +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 "ToolChains.h"
11
Daniel Dunbarf3cad362009-03-25 04:13:45 +000012#include "clang/Driver/Arg.h"
13#include "clang/Driver/ArgList.h"
Daniel Dunbar0f602de2010-05-20 21:48:38 +000014#include "clang/Driver/Compilation.h"
Daniel Dunbarc50b00d2009-03-23 16:15:50 +000015#include "clang/Driver/Driver.h"
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +000016#include "clang/Driver/DriverDiagnostic.h"
Daniel Dunbar27e738d2009-11-19 00:15:11 +000017#include "clang/Driver/OptTable.h"
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +000018#include "clang/Driver/Option.h"
Daniel Dunbar265e9ef2009-11-19 04:25:22 +000019#include "clang/Driver/Options.h"
John McCall260611a2012-06-20 06:18:46 +000020#include "clang/Basic/ObjCRuntime.h"
Douglas Gregor34916db2010-09-03 17:16:03 +000021#include "clang/Basic/Version.h"
Daniel Dunbarc50b00d2009-03-23 16:15:50 +000022
Daniel Dunbar00577ad2010-08-23 22:35:37 +000023#include "llvm/ADT/SmallString.h"
Daniel Dunbarc50b00d2009-03-23 16:15:50 +000024#include "llvm/ADT/StringExtras.h"
Bob Wilsona59956b2011-10-07 00:37:57 +000025#include "llvm/ADT/StringSwitch.h"
John McCallf85e1932011-06-15 23:02:42 +000026#include "llvm/ADT/STLExtras.h"
Daniel Dunbar84ec96c2009-09-09 22:33:15 +000027#include "llvm/Support/ErrorHandling.h"
Michael J. Spencer32bef4e2011-01-10 02:34:13 +000028#include "llvm/Support/FileSystem.h"
Rafael Espindolac1da9812010-11-07 20:14:31 +000029#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbarec069ed2009-03-25 06:58:31 +000030#include "llvm/Support/raw_ostream.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000031#include "llvm/Support/Path.h"
Michael J. Spencer3a321e22010-12-09 17:36:38 +000032#include "llvm/Support/system_error.h"
Daniel Dunbarc50b00d2009-03-23 16:15:50 +000033
Alexey Samsonovbb1071c2012-11-06 15:09:03 +000034#include "SanitizerArgs.h"
35
Daniel Dunbarf36a06a2009-04-10 21:00:07 +000036#include <cstdlib> // ::getenv
37
Dylan Noblesmithcc8a9452012-02-14 15:54:49 +000038#include "clang/Config/config.h" // for GCC_INSTALL_PREFIX
Dylan Noblesmith89bb6142011-06-23 13:50:47 +000039
Daniel Dunbar39176082009-03-20 00:20:03 +000040using namespace clang::driver;
41using namespace clang::driver::toolchains;
Chris Lattner5f9e2722011-07-23 10:55:15 +000042using namespace clang;
Daniel Dunbar39176082009-03-20 00:20:03 +000043
Daniel Dunbarf3955282009-09-04 18:34:51 +000044/// Darwin - Darwin tool chain for i386 and x86_64.
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +000045
Chandler Carruth1d16f0f2012-01-31 02:21:20 +000046Darwin::Darwin(const Driver &D, const llvm::Triple& Triple)
John McCall260611a2012-06-20 06:18:46 +000047 : ToolChain(D, Triple), TargetInitialized(false)
Daniel Dunbar1d4612b2009-09-18 08:15:13 +000048{
Bob Wilson10853772012-01-31 21:30:03 +000049 // Compute the initial Darwin version from the triple
50 unsigned Major, Minor, Micro;
Bob Wilson4c5ffb32012-01-31 22:43:59 +000051 if (!Triple.getMacOSXVersion(Major, Minor, Micro))
52 getDriver().Diag(diag::err_drv_invalid_darwin_version) <<
53 Triple.getOSName();
54 llvm::raw_string_ostream(MacosxVersionMin)
55 << Major << '.' << Minor << '.' << Micro;
56
Bob Wilson10853772012-01-31 21:30:03 +000057 // FIXME: DarwinVersion is only used to find GCC's libexec directory.
58 // It should be removed when we stop supporting that.
59 DarwinVersion[0] = Minor + 4;
60 DarwinVersion[1] = Micro;
61 DarwinVersion[2] = 0;
Chad Rosierc793ea42012-05-09 18:46:30 +000062
63 // Compute the initial iOS version from the triple
Chad Rosier8c990272012-05-09 18:51:13 +000064 Triple.getiOSVersion(Major, Minor, Micro);
Chad Rosierc793ea42012-05-09 18:46:30 +000065 llvm::raw_string_ostream(iOSVersionMin)
66 << Major << '.' << Minor << '.' << Micro;
Daniel Dunbar1d4612b2009-09-18 08:15:13 +000067}
68
Daniel Dunbar41800112010-08-02 05:43:56 +000069types::ID Darwin::LookupTypeForExtension(const char *Ext) const {
70 types::ID Ty = types::lookupTypeForExtension(Ext);
71
72 // Darwin always preprocesses assembly files (unless -x is used explicitly).
73 if (Ty == types::TY_PP_Asm)
74 return types::TY_Asm;
75
76 return Ty;
77}
78
Daniel Dunbarb993f5d2010-09-17 00:24:52 +000079bool Darwin::HasNativeLLVMSupport() const {
80 return true;
81}
82
John McCall9f084a32011-07-06 00:26:06 +000083/// Darwin provides an ARC runtime starting in MacOS X 10.7 and iOS 5.0.
John McCall260611a2012-06-20 06:18:46 +000084ObjCRuntime Darwin::getDefaultObjCRuntime(bool isNonFragile) const {
Bob Wilson377e5c12012-11-09 01:59:30 +000085 if (isTargetIPhoneOS())
John McCall260611a2012-06-20 06:18:46 +000086 return ObjCRuntime(ObjCRuntime::iOS, TargetVersion);
Bob Wilson377e5c12012-11-09 01:59:30 +000087 if (isNonFragile)
88 return ObjCRuntime(ObjCRuntime::MacOSX, TargetVersion);
89 return ObjCRuntime(ObjCRuntime::FragileMacOSX, TargetVersion);
John McCall9f084a32011-07-06 00:26:06 +000090}
91
John McCall13db5cf2011-09-09 20:41:01 +000092/// Darwin provides a blocks runtime starting in MacOS X 10.6 and iOS 3.2.
93bool Darwin::hasBlocksRuntime() const {
94 if (isTargetIPhoneOS())
95 return !isIPhoneOSVersionLT(3, 2);
96 else
97 return !isMacosxVersionLT(10, 6);
98}
99
Chris Lattner5f9e2722011-07-23 10:55:15 +0000100static const char *GetArmArchForMArch(StringRef Value) {
Bob Wilsona59956b2011-10-07 00:37:57 +0000101 return llvm::StringSwitch<const char*>(Value)
102 .Case("armv6k", "armv6")
103 .Case("armv5tej", "armv5")
104 .Case("xscale", "xscale")
105 .Case("armv4t", "armv4t")
106 .Case("armv7", "armv7")
107 .Cases("armv7a", "armv7-a", "armv7")
108 .Cases("armv7r", "armv7-r", "armv7")
109 .Cases("armv7m", "armv7-m", "armv7")
Bob Wilson336bfa32012-09-29 23:52:50 +0000110 .Cases("armv7f", "armv7-f", "armv7f")
111 .Cases("armv7k", "armv7-k", "armv7k")
112 .Cases("armv7s", "armv7-s", "armv7s")
Bob Wilsona59956b2011-10-07 00:37:57 +0000113 .Default(0);
Daniel Dunbareeff4062010-01-22 02:04:58 +0000114}
115
Chris Lattner5f9e2722011-07-23 10:55:15 +0000116static const char *GetArmArchForMCpu(StringRef Value) {
Bob Wilsona59956b2011-10-07 00:37:57 +0000117 return llvm::StringSwitch<const char *>(Value)
118 .Cases("arm9e", "arm946e-s", "arm966e-s", "arm968e-s", "arm926ej-s","armv5")
119 .Cases("arm10e", "arm10tdmi", "armv5")
120 .Cases("arm1020t", "arm1020e", "arm1022e", "arm1026ej-s", "armv5")
121 .Case("xscale", "xscale")
122 .Cases("arm1136j-s", "arm1136jf-s", "arm1176jz-s",
123 "arm1176jzf-s", "cortex-m0", "armv6")
Silviu Baranga2df67ea2012-09-13 15:06:00 +0000124 .Cases("cortex-a8", "cortex-r4", "cortex-m3", "cortex-a9", "cortex-a15",
125 "armv7")
Bob Wilson336bfa32012-09-29 23:52:50 +0000126 .Case("cortex-a9-mp", "armv7f")
127 .Case("swift", "armv7s")
Bob Wilsona59956b2011-10-07 00:37:57 +0000128 .Default(0);
Daniel Dunbareeff4062010-01-22 02:04:58 +0000129}
130
Chris Lattner5f9e2722011-07-23 10:55:15 +0000131StringRef Darwin::getDarwinArchName(const ArgList &Args) const {
Daniel Dunbareeff4062010-01-22 02:04:58 +0000132 switch (getTriple().getArch()) {
133 default:
134 return getArchName();
NAKAMURA Takumi304ed3f2011-06-03 03:49:51 +0000135
Douglas Gregorf0594d82011-03-06 19:11:49 +0000136 case llvm::Triple::thumb:
Daniel Dunbareeff4062010-01-22 02:04:58 +0000137 case llvm::Triple::arm: {
138 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ))
Richard Smith1d489cf2012-11-01 04:30:05 +0000139 if (const char *Arch = GetArmArchForMArch(A->getValue()))
Daniel Dunbareeff4062010-01-22 02:04:58 +0000140 return Arch;
141
142 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
Richard Smith1d489cf2012-11-01 04:30:05 +0000143 if (const char *Arch = GetArmArchForMCpu(A->getValue()))
Daniel Dunbareeff4062010-01-22 02:04:58 +0000144 return Arch;
145
146 return "arm";
147 }
148 }
149}
150
Daniel Dunbarf3955282009-09-04 18:34:51 +0000151Darwin::~Darwin() {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000152 // Free tool implementations.
153 for (llvm::DenseMap<unsigned, Tool*>::iterator
154 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
155 delete it->second;
156}
157
Chad Rosier61ab80a2011-09-20 20:44:06 +0000158std::string Darwin::ComputeEffectiveClangTriple(const ArgList &Args,
159 types::ID InputType) const {
160 llvm::Triple Triple(ComputeLLVMTriple(Args, InputType));
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000161
162 // If the target isn't initialized (e.g., an unknown Darwin platform, return
163 // the default triple).
164 if (!isTargetInitialized())
165 return Triple.getTriple();
NAKAMURA Takumi304ed3f2011-06-03 03:49:51 +0000166
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000167 SmallString<16> Str;
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000168 Str += isTargetIPhoneOS() ? "ios" : "macosx";
169 Str += getTargetVersion().getAsString();
170 Triple.setOSName(Str);
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000171
172 return Triple.getTriple();
173}
174
David Blaikie99ba9e32011-12-20 02:48:34 +0000175void Generic_ELF::anchor() {}
176
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000177Tool &Darwin::SelectTool(const Compilation &C, const JobAction &JA,
178 const ActionList &Inputs) const {
Argyrios Kyrtzidisd6277fb2012-05-21 20:11:54 +0000179 Action::ActionClass Key = JA.getKind();
Nick Lewycky5bab9ae2012-11-15 05:36:36 +0000180
181 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) {
182 // FIXME: This seems like a hacky way to choose clang frontend.
183 Key = Action::AnalyzeJobClass;
184 }
185
Daniel Dunbar0f602de2010-05-20 21:48:38 +0000186 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
187 options::OPT_no_integrated_as,
Bob Wilson1a1764b2011-10-30 00:20:28 +0000188 IsIntegratedAssemblerDefault());
Daniel Dunbar0f602de2010-05-20 21:48:38 +0000189
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000190 Tool *&T = Tools[Key];
191 if (!T) {
192 switch (Key) {
193 case Action::InputClass:
194 case Action::BindArchClass:
David Blaikieb219cfc2011-09-23 05:06:16 +0000195 llvm_unreachable("Invalid tool kind.");
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000196 case Action::PreprocessJobClass:
Nick Lewycky5bab9ae2012-11-15 05:36:36 +0000197 T = new tools::darwin::Preprocess(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000198 case Action::AnalyzeJobClass:
Ted Kremenek30660a82012-03-06 20:06:33 +0000199 case Action::MigrateJobClass:
Nick Lewycky5bab9ae2012-11-15 05:36:36 +0000200 T = new tools::Clang(*this); break;
Daniel Dunbar9120f172009-03-29 22:27:40 +0000201 case Action::PrecompileJobClass:
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000202 case Action::CompileJobClass:
Nick Lewycky5bab9ae2012-11-15 05:36:36 +0000203 T = new tools::darwin::Compile(*this); break;
Daniel Dunbar0f602de2010-05-20 21:48:38 +0000204 case Action::AssembleJobClass: {
205 if (UseIntegratedAs)
206 T = new tools::ClangAs(*this);
207 else
208 T = new tools::darwin::Assemble(*this);
209 break;
210 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000211 case Action::LinkJobClass:
Daniel Dunbar8f289622009-09-04 17:39:02 +0000212 T = new tools::darwin::Link(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000213 case Action::LipoJobClass:
214 T = new tools::darwin::Lipo(*this); break;
Daniel Dunbar6e0f2542010-06-04 18:28:36 +0000215 case Action::DsymutilJobClass:
216 T = new tools::darwin::Dsymutil(*this); break;
Eric Christopherf8571862011-08-23 17:56:55 +0000217 case Action::VerifyJobClass:
218 T = new tools::darwin::VerifyDebug(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000219 }
220 }
221
222 return *T;
223}
224
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000225
Chandler Carruth1d16f0f2012-01-31 02:21:20 +0000226DarwinClang::DarwinClang(const Driver &D, const llvm::Triple& Triple)
227 : Darwin(D, Triple)
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000228{
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000229 getProgramPaths().push_back(getDriver().getInstalledDir());
230 if (getDriver().getInstalledDir() != getDriver().Dir)
231 getProgramPaths().push_back(getDriver().Dir);
232
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000233 // We expect 'as', 'ld', etc. to be adjacent to our install dir.
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000234 getProgramPaths().push_back(getDriver().getInstalledDir());
235 if (getDriver().getInstalledDir() != getDriver().Dir)
236 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000237}
238
John McCallf85e1932011-06-15 23:02:42 +0000239void DarwinClang::AddLinkARCArgs(const ArgList &Args,
240 ArgStringList &CmdArgs) const {
Eric Christopherf8571862011-08-23 17:56:55 +0000241
242 CmdArgs.push_back("-force_load");
John McCallf85e1932011-06-15 23:02:42 +0000243 llvm::sys::Path P(getDriver().ClangExecutable);
244 P.eraseComponent(); // 'clang'
245 P.eraseComponent(); // 'bin'
246 P.appendComponent("lib");
247 P.appendComponent("arc");
248 P.appendComponent("libarclite_");
249 std::string s = P.str();
250 // Mash in the platform.
Argyrios Kyrtzidisc19981c2011-10-18 17:40:15 +0000251 if (isTargetIOSSimulator())
252 s += "iphonesimulator";
253 else if (isTargetIPhoneOS())
John McCallf85e1932011-06-15 23:02:42 +0000254 s += "iphoneos";
John McCallf85e1932011-06-15 23:02:42 +0000255 else
256 s += "macosx";
257 s += ".a";
258
259 CmdArgs.push_back(Args.MakeArgString(s));
260}
261
Eric Christopher3404fe72011-06-22 17:41:40 +0000262void DarwinClang::AddLinkRuntimeLib(const ArgList &Args,
Eric Christopherf8571862011-08-23 17:56:55 +0000263 ArgStringList &CmdArgs,
Eric Christopher3404fe72011-06-22 17:41:40 +0000264 const char *DarwinStaticLib) const {
265 llvm::sys::Path P(getDriver().ResourceDir);
266 P.appendComponent("lib");
267 P.appendComponent("darwin");
268 P.appendComponent(DarwinStaticLib);
Eric Christopherf8571862011-08-23 17:56:55 +0000269
Eric Christopher3404fe72011-06-22 17:41:40 +0000270 // For now, allow missing resource libraries to support developers who may
271 // not have compiler-rt checked out or integrated into their build.
272 bool Exists;
273 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
274 CmdArgs.push_back(Args.MakeArgString(P.str()));
275}
276
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000277void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args,
278 ArgStringList &CmdArgs) const {
Daniel Dunbarc24767c2011-12-07 23:03:15 +0000279 // Darwin only supports the compiler-rt based runtime libraries.
280 switch (GetRuntimeLibType(Args)) {
281 case ToolChain::RLT_CompilerRT:
282 break;
283 default:
284 getDriver().Diag(diag::err_drv_unsupported_rtlib_for_platform)
Richard Smith1d489cf2012-11-01 04:30:05 +0000285 << Args.getLastArg(options::OPT_rtlib_EQ)->getValue() << "darwin";
Daniel Dunbarc24767c2011-12-07 23:03:15 +0000286 return;
287 }
288
Daniel Dunbareec99102010-01-22 03:38:14 +0000289 // Darwin doesn't support real static executables, don't link any runtime
290 // libraries with -static.
Daniel Dunbar7a0c0642012-10-15 22:23:53 +0000291 if (Args.hasArg(options::OPT_static) ||
292 Args.hasArg(options::OPT_fapple_kext) ||
293 Args.hasArg(options::OPT_mkernel))
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000294 return;
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000295
296 // Reject -static-libgcc for now, we can deal with this when and if someone
297 // cares. This is useful in situations where someone wants to statically link
298 // something like libstdc++, and needs its runtime support routines.
299 if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000300 getDriver().Diag(diag::err_drv_unsupported_opt)
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000301 << A->getAsString(Args);
302 return;
303 }
304
Daniel Dunbarf4714872011-11-17 00:36:57 +0000305 // If we are building profile support, link that library in.
306 if (Args.hasArg(options::OPT_fprofile_arcs) ||
307 Args.hasArg(options::OPT_fprofile_generate) ||
308 Args.hasArg(options::OPT_fcreate_profile) ||
309 Args.hasArg(options::OPT_coverage)) {
310 // Select the appropriate runtime library for the target.
311 if (isTargetIPhoneOS()) {
312 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.profile_ios.a");
313 } else {
314 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.profile_osx.a");
315 }
316 }
317
Alexey Samsonovbb1071c2012-11-06 15:09:03 +0000318 SanitizerArgs Sanitize(getDriver(), Args);
319
Alexey Samsonov75fcb192012-11-16 12:53:14 +0000320 // Add Ubsan runtime library, if required.
321 if (Sanitize.needsUbsanRt()) {
322 if (Args.hasArg(options::OPT_dynamiclib) ||
323 Args.hasArg(options::OPT_bundle)) {
324 // Assume the binary will provide the Ubsan runtime.
325 } else if (isTargetIPhoneOS()) {
326 getDriver().Diag(diag::err_drv_clang_unsupported_per_platform)
327 << "-fsanitize=undefined";
328 } else {
329 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.ubsan_osx.a");
330
331 // The Ubsan runtime library requires C++.
332 AddCXXStdlibLibArgs(Args, CmdArgs);
333 }
334 }
335
Kostya Serebryany7b5f1012011-12-06 19:18:44 +0000336 // Add ASAN runtime library, if required. Dynamic libraries and bundles
337 // should not be linked with the runtime library.
Alexey Samsonovbb1071c2012-11-06 15:09:03 +0000338 if (Sanitize.needsAsanRt()) {
Kostya Serebryany7b5f1012011-12-06 19:18:44 +0000339 if (Args.hasArg(options::OPT_dynamiclib) ||
Alexey Samsonov75fcb192012-11-16 12:53:14 +0000340 Args.hasArg(options::OPT_bundle)) {
341 // Assume the binary will provide the ASan runtime.
342 } else if (isTargetIPhoneOS()) {
Daniel Dunbar94b54ea2011-12-01 23:40:18 +0000343 getDriver().Diag(diag::err_drv_clang_unsupported_per_platform)
Alexey Samsonovbb1071c2012-11-06 15:09:03 +0000344 << "-fsanitize=address";
Daniel Dunbar94b54ea2011-12-01 23:40:18 +0000345 } else {
346 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.asan_osx.a");
347
348 // The ASAN runtime library requires C++ and CoreFoundation.
349 AddCXXStdlibLibArgs(Args, CmdArgs);
350 CmdArgs.push_back("-framework");
351 CmdArgs.push_back("CoreFoundation");
352 }
353 }
354
Daniel Dunbareec99102010-01-22 03:38:14 +0000355 // Otherwise link libSystem, then the dynamic runtime library, and finally any
356 // target specific static runtime library.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000357 CmdArgs.push_back("-lSystem");
Daniel Dunbareec99102010-01-22 03:38:14 +0000358
359 // Select the dynamic runtime library and the target specific static library.
Daniel Dunbar251ca6c2010-01-27 00:56:37 +0000360 if (isTargetIPhoneOS()) {
Daniel Dunbar87e945f2011-04-30 04:25:16 +0000361 // If we are compiling as iOS / simulator, don't attempt to link libgcc_s.1,
362 // it never went into the SDK.
Bob Wilson163b1512011-10-07 17:54:41 +0000363 // Linking against libgcc_s.1 isn't needed for iOS 5.0+
364 if (isIPhoneOSVersionLT(5, 0) && !isTargetIOSSimulator())
365 CmdArgs.push_back("-lgcc_s.1");
Daniel Dunbareec99102010-01-22 03:38:14 +0000366
Daniel Dunbar3cceec52011-04-18 23:48:36 +0000367 // We currently always need a static runtime library for iOS.
Eric Christopher3404fe72011-06-22 17:41:40 +0000368 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.ios.a");
Daniel Dunbareec99102010-01-22 03:38:14 +0000369 } else {
Daniel Dunbareec99102010-01-22 03:38:14 +0000370 // The dynamic runtime library was merged with libSystem for 10.6 and
371 // beyond; only 10.4 and 10.5 need an additional runtime library.
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000372 if (isMacosxVersionLT(10, 5))
Daniel Dunbareec99102010-01-22 03:38:14 +0000373 CmdArgs.push_back("-lgcc_s.10.4");
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000374 else if (isMacosxVersionLT(10, 6))
Daniel Dunbareec99102010-01-22 03:38:14 +0000375 CmdArgs.push_back("-lgcc_s.10.5");
376
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000377 // For OS X, we thought we would only need a static runtime library when
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000378 // targeting 10.4, to provide versions of the static functions which were
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000379 // omitted from 10.4.dylib.
380 //
381 // Unfortunately, that turned out to not be true, because Darwin system
382 // headers can still use eprintf on i386, and it is not exported from
383 // libSystem. Therefore, we still must provide a runtime library just for
384 // the tiny tiny handful of projects that *might* use that symbol.
385 if (isMacosxVersionLT(10, 5)) {
Eric Christopher3404fe72011-06-22 17:41:40 +0000386 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.10.4.a");
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000387 } else {
388 if (getTriple().getArch() == llvm::Triple::x86)
Eric Christopher3404fe72011-06-22 17:41:40 +0000389 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.eprintf.a");
390 AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.osx.a");
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000391 }
Daniel Dunbareec99102010-01-22 03:38:14 +0000392 }
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000393}
394
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000395void Darwin::AddDeploymentTarget(DerivedArgList &Args) const {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000396 const OptTable &Opts = getDriver().getOpts();
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000397
Daniel Dunbar9101bc52012-08-17 18:43:50 +0000398 // Support allowing the SDKROOT environment variable used by xcrun and other
399 // Xcode tools to define the default sysroot, by making it the default for
400 // isysroot.
401 if (!Args.hasArg(options::OPT_isysroot)) {
402 if (char *env = ::getenv("SDKROOT")) {
403 // We only use this value as the default if it is an absolute path and
404 // exists.
405 if (llvm::sys::path::is_absolute(env) && llvm::sys::fs::exists(env)) {
406 Args.append(Args.MakeSeparateArg(
407 0, Opts.getOption(options::OPT_isysroot), env));
408 }
409 }
410 }
411
Daniel Dunbar26031372010-01-27 00:56:25 +0000412 Arg *OSXVersion = Args.getLastArg(options::OPT_mmacosx_version_min_EQ);
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000413 Arg *iOSVersion = Args.getLastArg(options::OPT_miphoneos_version_min_EQ);
414 Arg *iOSSimVersion = Args.getLastArg(
415 options::OPT_mios_simulator_version_min_EQ);
Eli Friedman983d8352012-01-11 02:41:15 +0000416
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000417 if (OSXVersion && (iOSVersion || iOSSimVersion)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000418 getDriver().Diag(diag::err_drv_argument_not_allowed_with)
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000419 << OSXVersion->getAsString(Args)
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000420 << (iOSVersion ? iOSVersion : iOSSimVersion)->getAsString(Args);
421 iOSVersion = iOSSimVersion = 0;
422 } else if (iOSVersion && iOSSimVersion) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000423 getDriver().Diag(diag::err_drv_argument_not_allowed_with)
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000424 << iOSVersion->getAsString(Args)
425 << iOSSimVersion->getAsString(Args);
426 iOSSimVersion = 0;
427 } else if (!OSXVersion && !iOSVersion && !iOSSimVersion) {
Chad Rosiera4884972011-08-31 20:56:25 +0000428 // If no deployment target was specified on the command line, check for
Daniel Dunbar816bc312010-01-26 01:45:19 +0000429 // environment defines.
Chad Rosiera4884972011-08-31 20:56:25 +0000430 StringRef OSXTarget;
431 StringRef iOSTarget;
432 StringRef iOSSimTarget;
433 if (char *env = ::getenv("MACOSX_DEPLOYMENT_TARGET"))
434 OSXTarget = env;
435 if (char *env = ::getenv("IPHONEOS_DEPLOYMENT_TARGET"))
436 iOSTarget = env;
437 if (char *env = ::getenv("IOS_SIMULATOR_DEPLOYMENT_TARGET"))
438 iOSSimTarget = env;
Daniel Dunbarf36a06a2009-04-10 21:00:07 +0000439
NAKAMURA Takumia789ca92011-10-08 11:31:46 +0000440 // If no '-miphoneos-version-min' specified on the command line and
Chad Rosiera4884972011-08-31 20:56:25 +0000441 // IPHONEOS_DEPLOYMENT_TARGET is not defined, see if we can set the default
Gabor Greif241cbe42012-04-18 10:59:08 +0000442 // based on -isysroot.
Chad Rosiera4884972011-08-31 20:56:25 +0000443 if (iOSTarget.empty()) {
444 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
445 StringRef first, second;
Richard Smith1d489cf2012-11-01 04:30:05 +0000446 StringRef isysroot = A->getValue();
Chad Rosiera4884972011-08-31 20:56:25 +0000447 llvm::tie(first, second) = isysroot.split(StringRef("SDKs/iPhoneOS"));
448 if (second != "")
449 iOSTarget = second.substr(0,3);
450 }
451 }
Daniel Dunbar816bc312010-01-26 01:45:19 +0000452
Chad Rosier4f8de272011-09-28 00:46:32 +0000453 // If no OSX or iOS target has been specified and we're compiling for armv7,
454 // go ahead as assume we're targeting iOS.
Chad Rosier49033202012-05-09 18:55:57 +0000455 if (OSXTarget.empty() && iOSTarget.empty() &&
Bob Wilson336bfa32012-09-29 23:52:50 +0000456 (getDarwinArchName(Args) == "armv7" ||
457 getDarwinArchName(Args) == "armv7s"))
Chad Rosier87ca5582012-05-09 18:09:58 +0000458 iOSTarget = iOSVersionMin;
Chad Rosier4f8de272011-09-28 00:46:32 +0000459
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000460 // Handle conflicting deployment targets
Daniel Dunbar39053672010-02-02 17:31:12 +0000461 //
462 // FIXME: Don't hardcode default here.
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000463
464 // Do not allow conflicts with the iOS simulator target.
Chad Rosiera4884972011-08-31 20:56:25 +0000465 if (!iOSSimTarget.empty() && (!OSXTarget.empty() || !iOSTarget.empty())) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000466 getDriver().Diag(diag::err_drv_conflicting_deployment_targets)
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000467 << "IOS_SIMULATOR_DEPLOYMENT_TARGET"
Chad Rosiera4884972011-08-31 20:56:25 +0000468 << (!OSXTarget.empty() ? "MACOSX_DEPLOYMENT_TARGET" :
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000469 "IPHONEOS_DEPLOYMENT_TARGET");
470 }
471
472 // Allow conflicts among OSX and iOS for historical reasons, but choose the
473 // default platform.
Chad Rosiera4884972011-08-31 20:56:25 +0000474 if (!OSXTarget.empty() && !iOSTarget.empty()) {
Daniel Dunbar39053672010-02-02 17:31:12 +0000475 if (getTriple().getArch() == llvm::Triple::arm ||
476 getTriple().getArch() == llvm::Triple::thumb)
Chad Rosiera4884972011-08-31 20:56:25 +0000477 OSXTarget = "";
Daniel Dunbar39053672010-02-02 17:31:12 +0000478 else
Chad Rosiera4884972011-08-31 20:56:25 +0000479 iOSTarget = "";
Daniel Dunbar39053672010-02-02 17:31:12 +0000480 }
Daniel Dunbar1a3c1d92010-01-29 17:02:25 +0000481
Chad Rosiera4884972011-08-31 20:56:25 +0000482 if (!OSXTarget.empty()) {
Michael J. Spencere4151c52012-10-19 22:36:40 +0000483 const Option O = Opts.getOption(options::OPT_mmacosx_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000484 OSXVersion = Args.MakeJoinedArg(0, O, OSXTarget);
485 Args.append(OSXVersion);
Chad Rosiera4884972011-08-31 20:56:25 +0000486 } else if (!iOSTarget.empty()) {
Michael J. Spencere4151c52012-10-19 22:36:40 +0000487 const Option O = Opts.getOption(options::OPT_miphoneos_version_min_EQ);
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000488 iOSVersion = Args.MakeJoinedArg(0, O, iOSTarget);
489 Args.append(iOSVersion);
Chad Rosiera4884972011-08-31 20:56:25 +0000490 } else if (!iOSSimTarget.empty()) {
Michael J. Spencere4151c52012-10-19 22:36:40 +0000491 const Option O = Opts.getOption(
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000492 options::OPT_mios_simulator_version_min_EQ);
493 iOSSimVersion = Args.MakeJoinedArg(0, O, iOSSimTarget);
494 Args.append(iOSSimVersion);
Daniel Dunbar816bc312010-01-26 01:45:19 +0000495 } else {
Daniel Dunbar2bb38d02010-07-15 16:18:06 +0000496 // Otherwise, assume we are targeting OS X.
Michael J. Spencere4151c52012-10-19 22:36:40 +0000497 const Option O = Opts.getOption(options::OPT_mmacosx_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000498 OSXVersion = Args.MakeJoinedArg(0, O, MacosxVersionMin);
499 Args.append(OSXVersion);
Daniel Dunbar30392de2009-09-04 18:35:21 +0000500 }
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000501 }
Mike Stump1eb44332009-09-09 15:08:12 +0000502
Daniel Dunbar3fd823b2011-04-30 04:20:40 +0000503 // Reject invalid architecture combinations.
504 if (iOSSimVersion && (getTriple().getArch() != llvm::Triple::x86 &&
505 getTriple().getArch() != llvm::Triple::x86_64)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000506 getDriver().Diag(diag::err_drv_invalid_arch_for_deployment_target)
Daniel Dunbar3fd823b2011-04-30 04:20:40 +0000507 << getTriple().getArchName() << iOSSimVersion->getAsString(Args);
508 }
509
Daniel Dunbar26031372010-01-27 00:56:25 +0000510 // Set the tool chain target information.
511 unsigned Major, Minor, Micro;
512 bool HadExtra;
513 if (OSXVersion) {
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000514 assert((!iOSVersion && !iOSSimVersion) && "Unknown target platform!");
Richard Smith1d489cf2012-11-01 04:30:05 +0000515 if (!Driver::GetReleaseVersion(OSXVersion->getValue(), Major, Minor,
Daniel Dunbar26031372010-01-27 00:56:25 +0000516 Micro, HadExtra) || HadExtra ||
Daniel Dunbar8a3a7f32011-04-21 21:27:33 +0000517 Major != 10 || Minor >= 100 || Micro >= 100)
Chris Lattner5f9e2722011-07-23 10:55:15 +0000518 getDriver().Diag(diag::err_drv_invalid_version_number)
Daniel Dunbar26031372010-01-27 00:56:25 +0000519 << OSXVersion->getAsString(Args);
520 } else {
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000521 const Arg *Version = iOSVersion ? iOSVersion : iOSSimVersion;
522 assert(Version && "Unknown target platform!");
Richard Smith1d489cf2012-11-01 04:30:05 +0000523 if (!Driver::GetReleaseVersion(Version->getValue(), Major, Minor,
Eli Friedman983d8352012-01-11 02:41:15 +0000524 Micro, HadExtra) || HadExtra ||
525 Major >= 10 || Minor >= 100 || Micro >= 100)
526 getDriver().Diag(diag::err_drv_invalid_version_number)
527 << Version->getAsString(Args);
Daniel Dunbar26031372010-01-27 00:56:25 +0000528 }
Daniel Dunbar9d609f22011-04-30 04:15:58 +0000529
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000530 bool IsIOSSim = bool(iOSSimVersion);
531
532 // In GCC, the simulator historically was treated as being OS X in some
533 // contexts, like determining the link logic, despite generally being called
534 // with an iOS deployment target. For compatibility, we detect the
535 // simulator as iOS + x86, and treat it differently in a few contexts.
536 if (iOSVersion && (getTriple().getArch() == llvm::Triple::x86 ||
537 getTriple().getArch() == llvm::Triple::x86_64))
538 IsIOSSim = true;
539
540 setTarget(/*IsIPhoneOS=*/ !OSXVersion, Major, Minor, Micro, IsIOSSim);
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000541}
542
Daniel Dunbar132e35d2010-09-17 01:20:05 +0000543void DarwinClang::AddCXXStdlibLibArgs(const ArgList &Args,
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000544 ArgStringList &CmdArgs) const {
545 CXXStdlibType Type = GetCXXStdlibType(Args);
546
547 switch (Type) {
548 case ToolChain::CST_Libcxx:
549 CmdArgs.push_back("-lc++");
550 break;
551
552 case ToolChain::CST_Libstdcxx: {
553 // Unfortunately, -lstdc++ doesn't always exist in the standard search path;
554 // it was previously found in the gcc lib dir. However, for all the Darwin
555 // platforms we care about it was -lstdc++.6, so we search for that
556 // explicitly if we can't see an obvious -lstdc++ candidate.
557
558 // Check in the sysroot first.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000559 bool Exists;
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000560 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
Richard Smith1d489cf2012-11-01 04:30:05 +0000561 llvm::sys::Path P(A->getValue());
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000562 P.appendComponent("usr");
563 P.appendComponent("lib");
564 P.appendComponent("libstdc++.dylib");
565
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000566 if (llvm::sys::fs::exists(P.str(), Exists) || !Exists) {
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000567 P.eraseComponent();
568 P.appendComponent("libstdc++.6.dylib");
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000569 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists) {
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000570 CmdArgs.push_back(Args.MakeArgString(P.str()));
571 return;
572 }
573 }
574 }
575
576 // Otherwise, look in the root.
Bob Wilson5a5dcdc2011-11-11 07:47:04 +0000577 // FIXME: This should be removed someday when we don't have to care about
578 // 10.6 and earlier, where /usr/lib/libstdc++.dylib does not exist.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000579 if ((llvm::sys::fs::exists("/usr/lib/libstdc++.dylib", Exists) || !Exists)&&
580 (!llvm::sys::fs::exists("/usr/lib/libstdc++.6.dylib", Exists) && Exists)){
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000581 CmdArgs.push_back("/usr/lib/libstdc++.6.dylib");
582 return;
583 }
584
585 // Otherwise, let the linker search.
586 CmdArgs.push_back("-lstdc++");
587 break;
588 }
589 }
590}
591
Shantonu Sen7433fed2010-09-17 18:39:08 +0000592void DarwinClang::AddCCKextLibArgs(const ArgList &Args,
593 ArgStringList &CmdArgs) const {
594
595 // For Darwin platforms, use the compiler-rt-based support library
596 // instead of the gcc-provided one (which is also incidentally
597 // only present in the gcc lib dir, which makes it hard to find).
598
599 llvm::sys::Path P(getDriver().ResourceDir);
600 P.appendComponent("lib");
601 P.appendComponent("darwin");
Daniel Dunbar7a0c0642012-10-15 22:23:53 +0000602
603 // Use the newer cc_kext for iOS ARM after 6.0.
604 if (!isTargetIPhoneOS() || isTargetIOSSimulator() ||
605 !isIPhoneOSVersionLT(6, 0)) {
606 P.appendComponent("libclang_rt.cc_kext.a");
607 } else {
608 P.appendComponent("libclang_rt.cc_kext_ios5.a");
609 }
NAKAMURA Takumi304ed3f2011-06-03 03:49:51 +0000610
Shantonu Sen7433fed2010-09-17 18:39:08 +0000611 // For now, allow missing resource libraries to support developers who may
612 // not have compiler-rt checked out or integrated into their build.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000613 bool Exists;
614 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Shantonu Sen7433fed2010-09-17 18:39:08 +0000615 CmdArgs.push_back(Args.MakeArgString(P.str()));
616}
617
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000618DerivedArgList *Darwin::TranslateArgs(const DerivedArgList &Args,
619 const char *BoundArch) const {
620 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
621 const OptTable &Opts = getDriver().getOpts();
622
623 // FIXME: We really want to get out of the tool chain level argument
624 // translation business, as it makes the driver functionality much
625 // more opaque. For now, we follow gcc closely solely for the
626 // purpose of easily achieving feature parity & testability. Once we
627 // have something that works, we should reevaluate each translation
628 // and try to push it down into tool specific logic.
Daniel Dunbar26031372010-01-27 00:56:25 +0000629
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000630 for (ArgList::const_iterator it = Args.begin(),
631 ie = Args.end(); it != ie; ++it) {
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000632 Arg *A = *it;
633
634 if (A->getOption().matches(options::OPT_Xarch__)) {
Daniel Dunbar2a45fa72011-06-21 00:20:17 +0000635 // Skip this argument unless the architecture matches either the toolchain
636 // triple arch, or the arch being bound.
Rafael Espindola64f7ad92012-10-07 04:44:33 +0000637 llvm::Triple::ArchType XarchArch =
Richard Smith1d489cf2012-11-01 04:30:05 +0000638 tools::darwin::getArchTypeForDarwinArchName(A->getValue(0));
Rafael Espindola64f7ad92012-10-07 04:44:33 +0000639 if (!(XarchArch == getArch() ||
640 (BoundArch && XarchArch ==
Rafael Espindolacfed8282012-10-31 18:51:07 +0000641 tools::darwin::getArchTypeForDarwinArchName(BoundArch))))
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000642 continue;
643
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000644 Arg *OriginalArg = A;
Richard Smith1d489cf2012-11-01 04:30:05 +0000645 unsigned Index = Args.getBaseArgs().MakeIndex(A->getValue(1));
Daniel Dunbar0e100312010-06-14 21:23:08 +0000646 unsigned Prev = Index;
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000647 Arg *XarchArg = Opts.ParseOneArg(Args, Index);
Mike Stump1eb44332009-09-09 15:08:12 +0000648
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000649 // If the argument parsing failed or more than one argument was
650 // consumed, the -Xarch_ argument's parameter tried to consume
651 // extra arguments. Emit an error and ignore.
652 //
653 // We also want to disallow any options which would alter the
654 // driver behavior; that isn't going to work in our model. We
655 // use isDriverOption() as an approximation, although things
656 // like -O4 are going to slip through.
Daniel Dunbar0e02f6e2011-04-21 17:41:34 +0000657 if (!XarchArg || Index > Prev + 1) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000658 getDriver().Diag(diag::err_drv_invalid_Xarch_argument_with_args)
Daniel Dunbar7e9293b2011-04-21 17:32:21 +0000659 << A->getAsString(Args);
660 continue;
Michael J. Spencer91e06da2012-10-19 22:37:06 +0000661 } else if (XarchArg->getOption().hasFlag(options::DriverOption)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000662 getDriver().Diag(diag::err_drv_invalid_Xarch_argument_isdriver)
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000663 << A->getAsString(Args);
664 continue;
665 }
666
Daniel Dunbar478edc22009-03-29 22:29:05 +0000667 XarchArg->setBaseArg(A);
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000668 A = XarchArg;
Daniel Dunbar0e100312010-06-14 21:23:08 +0000669
670 DAL->AddSynthesizedArg(A);
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000671
672 // Linker input arguments require custom handling. The problem is that we
673 // have already constructed the phase actions, so we can not treat them as
674 // "input arguments".
Michael J. Spencer91e06da2012-10-19 22:37:06 +0000675 if (A->getOption().hasFlag(options::LinkerInput)) {
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000676 // Convert the argument into individual Zlinker_input_args.
677 for (unsigned i = 0, e = A->getNumValues(); i != e; ++i) {
678 DAL->AddSeparateArg(OriginalArg,
679 Opts.getOption(options::OPT_Zlinker_input),
Richard Smith1d489cf2012-11-01 04:30:05 +0000680 A->getValue(i));
NAKAMURA Takumi304ed3f2011-06-03 03:49:51 +0000681
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000682 }
683 continue;
684 }
Mike Stump1eb44332009-09-09 15:08:12 +0000685 }
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000686
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000687 // Sob. These is strictly gcc compatible for the time being. Apple
688 // gcc translates options twice, which means that self-expanding
689 // options add duplicates.
Daniel Dunbar9e1f9822009-11-19 04:14:53 +0000690 switch ((options::ID) A->getOption().getID()) {
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000691 default:
692 DAL->append(A);
693 break;
694
695 case options::OPT_mkernel:
696 case options::OPT_fapple_kext:
697 DAL->append(A);
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000698 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000699 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000700
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000701 case options::OPT_dependency_file:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000702 DAL->AddSeparateArg(A, Opts.getOption(options::OPT_MF),
Richard Smith1d489cf2012-11-01 04:30:05 +0000703 A->getValue());
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000704 break;
705
706 case options::OPT_gfull:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000707 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
708 DAL->AddFlagArg(A,
709 Opts.getOption(options::OPT_fno_eliminate_unused_debug_symbols));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000710 break;
711
712 case options::OPT_gused:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000713 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
714 DAL->AddFlagArg(A,
715 Opts.getOption(options::OPT_feliminate_unused_debug_symbols));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000716 break;
717
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000718 case options::OPT_shared:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000719 DAL->AddFlagArg(A, Opts.getOption(options::OPT_dynamiclib));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000720 break;
721
722 case options::OPT_fconstant_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000723 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mconstant_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000724 break;
725
726 case options::OPT_fno_constant_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000727 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_constant_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000728 break;
729
730 case options::OPT_Wnonportable_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000731 DAL->AddFlagArg(A,
732 Opts.getOption(options::OPT_mwarn_nonportable_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000733 break;
734
735 case options::OPT_Wno_nonportable_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000736 DAL->AddFlagArg(A,
737 Opts.getOption(options::OPT_mno_warn_nonportable_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000738 break;
739
740 case options::OPT_fpascal_strings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000741 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mpascal_strings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000742 break;
743
744 case options::OPT_fno_pascal_strings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000745 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_pascal_strings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000746 break;
747 }
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000748 }
749
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000750 if (getTriple().getArch() == llvm::Triple::x86 ||
751 getTriple().getArch() == llvm::Triple::x86_64)
Daniel Dunbare4bdae72009-11-19 04:00:53 +0000752 if (!Args.hasArgNoClaim(options::OPT_mtune_EQ))
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000753 DAL->AddJoinedArg(0, Opts.getOption(options::OPT_mtune_EQ), "core2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000754
755 // Add the arch options based on the particular spelling of -arch, to match
Chad Rosierc97e96a2012-04-27 14:58:16 +0000756 // how the driver driver works.
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000757 if (BoundArch) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000758 StringRef Name = BoundArch;
Michael J. Spencere4151c52012-10-19 22:36:40 +0000759 const Option MCpu = Opts.getOption(options::OPT_mcpu_EQ);
760 const Option MArch = Opts.getOption(options::OPT_march_EQ);
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000761
762 // This code must be kept in sync with LLVM's getArchTypeForDarwinArch,
763 // which defines the list of which architectures we accept.
764 if (Name == "ppc")
765 ;
766 else if (Name == "ppc601")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000767 DAL->AddJoinedArg(0, MCpu, "601");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000768 else if (Name == "ppc603")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000769 DAL->AddJoinedArg(0, MCpu, "603");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000770 else if (Name == "ppc604")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000771 DAL->AddJoinedArg(0, MCpu, "604");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000772 else if (Name == "ppc604e")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000773 DAL->AddJoinedArg(0, MCpu, "604e");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000774 else if (Name == "ppc750")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000775 DAL->AddJoinedArg(0, MCpu, "750");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000776 else if (Name == "ppc7400")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000777 DAL->AddJoinedArg(0, MCpu, "7400");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000778 else if (Name == "ppc7450")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000779 DAL->AddJoinedArg(0, MCpu, "7450");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000780 else if (Name == "ppc970")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000781 DAL->AddJoinedArg(0, MCpu, "970");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000782
783 else if (Name == "ppc64")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000784 DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000785
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000786 else if (Name == "i386")
787 ;
788 else if (Name == "i486")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000789 DAL->AddJoinedArg(0, MArch, "i486");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000790 else if (Name == "i586")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000791 DAL->AddJoinedArg(0, MArch, "i586");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000792 else if (Name == "i686")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000793 DAL->AddJoinedArg(0, MArch, "i686");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000794 else if (Name == "pentium")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000795 DAL->AddJoinedArg(0, MArch, "pentium");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000796 else if (Name == "pentium2")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000797 DAL->AddJoinedArg(0, MArch, "pentium2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000798 else if (Name == "pentpro")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000799 DAL->AddJoinedArg(0, MArch, "pentiumpro");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000800 else if (Name == "pentIIm3")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000801 DAL->AddJoinedArg(0, MArch, "pentium2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000802
803 else if (Name == "x86_64")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000804 DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64));
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000805
806 else if (Name == "arm")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000807 DAL->AddJoinedArg(0, MArch, "armv4t");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000808 else if (Name == "armv4t")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000809 DAL->AddJoinedArg(0, MArch, "armv4t");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000810 else if (Name == "armv5")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000811 DAL->AddJoinedArg(0, MArch, "armv5tej");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000812 else if (Name == "xscale")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000813 DAL->AddJoinedArg(0, MArch, "xscale");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000814 else if (Name == "armv6")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000815 DAL->AddJoinedArg(0, MArch, "armv6k");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000816 else if (Name == "armv7")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000817 DAL->AddJoinedArg(0, MArch, "armv7a");
Bob Wilson336bfa32012-09-29 23:52:50 +0000818 else if (Name == "armv7f")
819 DAL->AddJoinedArg(0, MArch, "armv7f");
820 else if (Name == "armv7k")
821 DAL->AddJoinedArg(0, MArch, "armv7k");
822 else if (Name == "armv7s")
823 DAL->AddJoinedArg(0, MArch, "armv7s");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000824
825 else
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000826 llvm_unreachable("invalid Darwin arch");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000827 }
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000828
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000829 // Add an explicit version min argument for the deployment target. We do this
830 // after argument translation because -Xarch_ arguments may add a version min
831 // argument.
Chad Rosier8202fb82012-04-27 19:51:11 +0000832 if (BoundArch)
833 AddDeploymentTarget(*DAL);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000834
Daniel Dunbar7a0c0642012-10-15 22:23:53 +0000835 // For iOS 6, undo the translation to add -static for -mkernel/-fapple-kext.
836 // FIXME: It would be far better to avoid inserting those -static arguments,
837 // but we can't check the deployment target in the translation code until
838 // it is set here.
839 if (isTargetIPhoneOS() && !isIPhoneOSVersionLT(6, 0)) {
840 for (ArgList::iterator it = DAL->begin(), ie = DAL->end(); it != ie; ) {
841 Arg *A = *it;
842 ++it;
843 if (A->getOption().getID() != options::OPT_mkernel &&
844 A->getOption().getID() != options::OPT_fapple_kext)
845 continue;
846 assert(it != ie && "unexpected argument translation");
847 A = *it;
848 assert(A->getOption().getID() == options::OPT_static &&
849 "missing expected -static argument");
850 it = DAL->getArgs().erase(it);
851 }
852 }
853
Bob Wilson163b1512011-10-07 17:54:41 +0000854 // Validate the C++ standard library choice.
855 CXXStdlibType Type = GetCXXStdlibType(*DAL);
856 if (Type == ToolChain::CST_Libcxx) {
John McCall260611a2012-06-20 06:18:46 +0000857 // Check whether the target provides libc++.
858 StringRef where;
859
860 // Complain about targetting iOS < 5.0 in any way.
Bob Wilson377e5c12012-11-09 01:59:30 +0000861 if (isTargetIPhoneOS() && isIPhoneOSVersionLT(5, 0))
862 where = "iOS 5.0";
John McCall260611a2012-06-20 06:18:46 +0000863
864 if (where != StringRef()) {
Bob Wilson163b1512011-10-07 17:54:41 +0000865 getDriver().Diag(clang::diag::err_drv_invalid_libcxx_deployment)
John McCall260611a2012-06-20 06:18:46 +0000866 << where;
Bob Wilson163b1512011-10-07 17:54:41 +0000867 }
868 }
869
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000870 return DAL;
Mike Stump1eb44332009-09-09 15:08:12 +0000871}
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000872
Daniel Dunbarf3955282009-09-04 18:34:51 +0000873bool Darwin::IsUnwindTablesDefault() const {
Rafael Espindolaa4a809e2012-10-07 03:23:40 +0000874 return getArch() == llvm::Triple::x86_64;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000875}
876
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000877bool Darwin::UseDwarfDebugFlags() const {
878 if (const char *S = ::getenv("RC_DEBUG_OPTIONS"))
879 return S[0] != '\0';
880 return false;
881}
882
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000883bool Darwin::UseSjLjExceptions() const {
884 // Darwin uses SjLj exceptions on ARM.
885 return (getTriple().getArch() == llvm::Triple::arm ||
886 getTriple().getArch() == llvm::Triple::thumb);
887}
888
Daniel Dunbarf3955282009-09-04 18:34:51 +0000889const char *Darwin::GetDefaultRelocationModel() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000890 return "pic";
891}
892
Daniel Dunbarf3955282009-09-04 18:34:51 +0000893const char *Darwin::GetForcedPicModel() const {
Rafael Espindola64f7ad92012-10-07 04:44:33 +0000894 if (getArch() == llvm::Triple::x86_64)
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000895 return "pic";
896 return 0;
897}
898
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000899bool Darwin::SupportsProfiling() const {
900 // Profiling instrumentation is only supported on x86.
Rafael Espindola64f7ad92012-10-07 04:44:33 +0000901 return getArch() == llvm::Triple::x86 || getArch() == llvm::Triple::x86_64;
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000902}
903
Daniel Dunbar43a9b322010-04-10 16:20:23 +0000904bool Darwin::SupportsObjCGC() const {
905 // Garbage collection is supported everywhere except on iPhone OS.
906 return !isTargetIPhoneOS();
907}
908
John McCall0a7dd782012-08-21 02:47:43 +0000909void Darwin::CheckObjCARC() const {
910 if (isTargetIPhoneOS() || !isMacosxVersionLT(10, 6))
911 return;
John McCall80fd37a2012-08-27 01:56:21 +0000912 getDriver().Diag(diag::err_arc_unsupported_on_toolchain);
Argyrios Kyrtzidis5840dd92012-02-29 03:43:52 +0000913}
914
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000915std::string
Chad Rosier61ab80a2011-09-20 20:44:06 +0000916Darwin_Generic_GCC::ComputeEffectiveClangTriple(const ArgList &Args,
917 types::ID InputType) const {
918 return ComputeLLVMTriple(Args, InputType);
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000919}
920
Daniel Dunbar39176082009-03-20 00:20:03 +0000921/// Generic_GCC - A tool chain using the 'gcc' command to perform
922/// all subcommands; this relies on gcc translating the majority of
923/// command line options.
924
Chandler Carruth19347ed2011-11-06 23:39:34 +0000925/// \brief Parse a GCCVersion object out of a string of text.
926///
927/// This is the primary means of forming GCCVersion objects.
928/*static*/
929Generic_GCC::GCCVersion Linux::GCCVersion::Parse(StringRef VersionText) {
930 const GCCVersion BadVersion = { VersionText.str(), -1, -1, -1, "" };
931 std::pair<StringRef, StringRef> First = VersionText.split('.');
932 std::pair<StringRef, StringRef> Second = First.second.split('.');
933
934 GCCVersion GoodVersion = { VersionText.str(), -1, -1, -1, "" };
935 if (First.first.getAsInteger(10, GoodVersion.Major) ||
936 GoodVersion.Major < 0)
937 return BadVersion;
938 if (Second.first.getAsInteger(10, GoodVersion.Minor) ||
939 GoodVersion.Minor < 0)
940 return BadVersion;
941
942 // First look for a number prefix and parse that if present. Otherwise just
943 // stash the entire patch string in the suffix, and leave the number
944 // unspecified. This covers versions strings such as:
945 // 4.4
946 // 4.4.0
947 // 4.4.x
948 // 4.4.2-rc4
949 // 4.4.x-patched
950 // And retains any patch number it finds.
951 StringRef PatchText = GoodVersion.PatchSuffix = Second.second.str();
952 if (!PatchText.empty()) {
953 if (unsigned EndNumber = PatchText.find_first_not_of("0123456789")) {
954 // Try to parse the number and any suffix.
955 if (PatchText.slice(0, EndNumber).getAsInteger(10, GoodVersion.Patch) ||
956 GoodVersion.Patch < 0)
957 return BadVersion;
958 GoodVersion.PatchSuffix = PatchText.substr(EndNumber).str();
959 }
960 }
961
962 return GoodVersion;
963}
964
965/// \brief Less-than for GCCVersion, implementing a Strict Weak Ordering.
966bool Generic_GCC::GCCVersion::operator<(const GCCVersion &RHS) const {
967 if (Major < RHS.Major) return true; if (Major > RHS.Major) return false;
968 if (Minor < RHS.Minor) return true; if (Minor > RHS.Minor) return false;
969
970 // Note that we rank versions with *no* patch specified is better than ones
971 // hard-coding a patch version. Thus if the RHS has no patch, it always
972 // wins, and the LHS only wins if it has no patch and the RHS does have
973 // a patch.
974 if (RHS.Patch == -1) return true; if (Patch == -1) return false;
975 if (Patch < RHS.Patch) return true; if (Patch > RHS.Patch) return false;
Gabor Greif241cbe42012-04-18 10:59:08 +0000976 if (PatchSuffix == RHS.PatchSuffix) return false;
Chandler Carruth19347ed2011-11-06 23:39:34 +0000977
978 // Finally, between completely tied version numbers, the version with the
979 // suffix loses as we prefer full releases.
980 if (RHS.PatchSuffix.empty()) return true;
981 return false;
982}
983
Rafael Espindola0e659592012-02-19 01:38:32 +0000984static StringRef getGCCToolchainDir(const ArgList &Args) {
985 const Arg *A = Args.getLastArg(options::OPT_gcc_toolchain);
986 if (A)
Richard Smith1d489cf2012-11-01 04:30:05 +0000987 return A->getValue();
Rafael Espindola0e659592012-02-19 01:38:32 +0000988 return GCC_INSTALL_PREFIX;
989}
990
Chandler Carruth19347ed2011-11-06 23:39:34 +0000991/// \brief Construct a GCCInstallationDetector from the driver.
992///
993/// This performs all of the autodetection and sets up the various paths.
Gabor Greif0407a042012-04-17 11:16:26 +0000994/// Once constructed, a GCCInstallationDetector is essentially immutable.
Chandler Carruth1c6f04a2012-01-25 07:21:38 +0000995///
996/// FIXME: We shouldn't need an explicit TargetTriple parameter here, and
997/// should instead pull the target out of the driver. This is currently
998/// necessary because the driver doesn't store the final version of the target
999/// triple.
1000Generic_GCC::GCCInstallationDetector::GCCInstallationDetector(
1001 const Driver &D,
Rafael Espindola0e659592012-02-19 01:38:32 +00001002 const llvm::Triple &TargetTriple,
1003 const ArgList &Args)
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001004 : IsValid(false) {
Chandler Carruth9b338a72012-02-13 02:02:09 +00001005 llvm::Triple MultiarchTriple
1006 = TargetTriple.isArch32Bit() ? TargetTriple.get64BitArchVariant()
1007 : TargetTriple.get32BitArchVariant();
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001008 llvm::Triple::ArchType TargetArch = TargetTriple.getArch();
Chandler Carruth19347ed2011-11-06 23:39:34 +00001009 // The library directories which may contain GCC installations.
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001010 SmallVector<StringRef, 4> CandidateLibDirs, CandidateMultiarchLibDirs;
Chandler Carruth19347ed2011-11-06 23:39:34 +00001011 // The compatible GCC triples for this particular architecture.
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001012 SmallVector<StringRef, 10> CandidateTripleAliases;
1013 SmallVector<StringRef, 10> CandidateMultiarchTripleAliases;
1014 CollectLibDirsAndTriples(TargetTriple, MultiarchTriple, CandidateLibDirs,
1015 CandidateTripleAliases,
1016 CandidateMultiarchLibDirs,
1017 CandidateMultiarchTripleAliases);
Chandler Carruth19347ed2011-11-06 23:39:34 +00001018
1019 // Compute the set of prefixes for our search.
1020 SmallVector<std::string, 8> Prefixes(D.PrefixDirs.begin(),
1021 D.PrefixDirs.end());
Rafael Espindola353300c2012-02-03 01:01:20 +00001022
Rafael Espindola0e659592012-02-19 01:38:32 +00001023 StringRef GCCToolchainDir = getGCCToolchainDir(Args);
1024 if (GCCToolchainDir != "") {
1025 if (GCCToolchainDir.back() == '/')
1026 GCCToolchainDir = GCCToolchainDir.drop_back(); // remove the /
Rafael Espindola353300c2012-02-03 01:01:20 +00001027
Rafael Espindola0e659592012-02-19 01:38:32 +00001028 Prefixes.push_back(GCCToolchainDir);
Rafael Espindola353300c2012-02-03 01:01:20 +00001029 } else {
1030 Prefixes.push_back(D.SysRoot);
1031 Prefixes.push_back(D.SysRoot + "/usr");
1032 Prefixes.push_back(D.InstalledDir + "/..");
1033 }
Chandler Carruth19347ed2011-11-06 23:39:34 +00001034
1035 // Loop over the various components which exist and select the best GCC
1036 // installation available. GCC installs are ranked by version number.
1037 Version = GCCVersion::Parse("0.0.0");
1038 for (unsigned i = 0, ie = Prefixes.size(); i < ie; ++i) {
1039 if (!llvm::sys::fs::exists(Prefixes[i]))
1040 continue;
1041 for (unsigned j = 0, je = CandidateLibDirs.size(); j < je; ++j) {
1042 const std::string LibDir = Prefixes[i] + CandidateLibDirs[j].str();
1043 if (!llvm::sys::fs::exists(LibDir))
1044 continue;
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001045 for (unsigned k = 0, ke = CandidateTripleAliases.size(); k < ke; ++k)
Simon Atanasyanf4bd3292012-10-21 11:44:57 +00001046 ScanLibDirForGCCTriple(TargetArch, Args, LibDir,
1047 CandidateTripleAliases[k]);
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001048 }
1049 for (unsigned j = 0, je = CandidateMultiarchLibDirs.size(); j < je; ++j) {
1050 const std::string LibDir
1051 = Prefixes[i] + CandidateMultiarchLibDirs[j].str();
1052 if (!llvm::sys::fs::exists(LibDir))
1053 continue;
1054 for (unsigned k = 0, ke = CandidateMultiarchTripleAliases.size(); k < ke;
1055 ++k)
Simon Atanasyanf4bd3292012-10-21 11:44:57 +00001056 ScanLibDirForGCCTriple(TargetArch, Args, LibDir,
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001057 CandidateMultiarchTripleAliases[k],
1058 /*NeedsMultiarchSuffix=*/true);
Chandler Carruth19347ed2011-11-06 23:39:34 +00001059 }
1060 }
1061}
1062
1063/*static*/ void Generic_GCC::GCCInstallationDetector::CollectLibDirsAndTriples(
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001064 const llvm::Triple &TargetTriple,
1065 const llvm::Triple &MultiarchTriple,
1066 SmallVectorImpl<StringRef> &LibDirs,
1067 SmallVectorImpl<StringRef> &TripleAliases,
1068 SmallVectorImpl<StringRef> &MultiarchLibDirs,
1069 SmallVectorImpl<StringRef> &MultiarchTripleAliases) {
1070 // Declare a bunch of static data sets that we'll select between below. These
1071 // are specifically designed to always refer to string literals to avoid any
1072 // lifetime or initialization issues.
1073 static const char *const ARMLibDirs[] = { "/lib" };
1074 static const char *const ARMTriples[] = {
1075 "arm-linux-gnueabi",
1076 "arm-linux-androideabi"
1077 };
Jiangning Liuff104a12012-07-31 08:06:29 +00001078 static const char *const ARMHFTriples[] = {
1079 "arm-linux-gnueabihf",
1080 };
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001081
1082 static const char *const X86_64LibDirs[] = { "/lib64", "/lib" };
1083 static const char *const X86_64Triples[] = {
1084 "x86_64-linux-gnu",
1085 "x86_64-unknown-linux-gnu",
1086 "x86_64-pc-linux-gnu",
1087 "x86_64-redhat-linux6E",
1088 "x86_64-redhat-linux",
1089 "x86_64-suse-linux",
1090 "x86_64-manbo-linux-gnu",
1091 "x86_64-linux-gnu",
1092 "x86_64-slackware-linux"
1093 };
1094 static const char *const X86LibDirs[] = { "/lib32", "/lib" };
1095 static const char *const X86Triples[] = {
1096 "i686-linux-gnu",
1097 "i686-pc-linux-gnu",
1098 "i486-linux-gnu",
1099 "i386-linux-gnu",
1100 "i686-redhat-linux",
1101 "i586-redhat-linux",
1102 "i386-redhat-linux",
1103 "i586-suse-linux",
Gabor Greif91720912012-05-15 11:21:03 +00001104 "i486-slackware-linux",
1105 "i686-montavista-linux"
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001106 };
1107
1108 static const char *const MIPSLibDirs[] = { "/lib" };
1109 static const char *const MIPSTriples[] = { "mips-linux-gnu" };
1110 static const char *const MIPSELLibDirs[] = { "/lib" };
Simon Atanasyanf8d9bd52012-10-03 17:46:38 +00001111 static const char *const MIPSELTriples[] = {
1112 "mipsel-linux-gnu",
1113 "mipsel-linux-android"
1114 };
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001115
Simon Atanasyanb8c43812012-04-26 19:57:02 +00001116 static const char *const MIPS64LibDirs[] = { "/lib64", "/lib" };
1117 static const char *const MIPS64Triples[] = { "mips64-linux-gnu" };
1118 static const char *const MIPS64ELLibDirs[] = { "/lib64", "/lib" };
1119 static const char *const MIPS64ELTriples[] = { "mips64el-linux-gnu" };
1120
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001121 static const char *const PPCLibDirs[] = { "/lib32", "/lib" };
1122 static const char *const PPCTriples[] = {
1123 "powerpc-linux-gnu",
1124 "powerpc-unknown-linux-gnu",
Gabor Greif91720912012-05-15 11:21:03 +00001125 "powerpc-suse-linux",
1126 "powerpc-montavista-linuxspe"
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001127 };
1128 static const char *const PPC64LibDirs[] = { "/lib64", "/lib" };
1129 static const char *const PPC64Triples[] = {
Chandler Carruth155c54c2012-02-26 09:03:21 +00001130 "powerpc64-linux-gnu",
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001131 "powerpc64-unknown-linux-gnu",
1132 "powerpc64-suse-linux",
1133 "ppc64-redhat-linux"
1134 };
1135
1136 switch (TargetTriple.getArch()) {
1137 case llvm::Triple::arm:
1138 case llvm::Triple::thumb:
Chandler Carruth19347ed2011-11-06 23:39:34 +00001139 LibDirs.append(ARMLibDirs, ARMLibDirs + llvm::array_lengthof(ARMLibDirs));
Jiangning Liuff104a12012-07-31 08:06:29 +00001140 if (TargetTriple.getEnvironment() == llvm::Triple::GNUEABIHF) {
1141 TripleAliases.append(
1142 ARMHFTriples, ARMHFTriples + llvm::array_lengthof(ARMHFTriples));
1143 } else {
1144 TripleAliases.append(
1145 ARMTriples, ARMTriples + llvm::array_lengthof(ARMTriples));
1146 }
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001147 break;
1148 case llvm::Triple::x86_64:
1149 LibDirs.append(
1150 X86_64LibDirs, X86_64LibDirs + llvm::array_lengthof(X86_64LibDirs));
1151 TripleAliases.append(
1152 X86_64Triples, X86_64Triples + llvm::array_lengthof(X86_64Triples));
1153 MultiarchLibDirs.append(
1154 X86LibDirs, X86LibDirs + llvm::array_lengthof(X86LibDirs));
1155 MultiarchTripleAliases.append(
1156 X86Triples, X86Triples + llvm::array_lengthof(X86Triples));
1157 break;
1158 case llvm::Triple::x86:
Chandler Carruth19347ed2011-11-06 23:39:34 +00001159 LibDirs.append(X86LibDirs, X86LibDirs + llvm::array_lengthof(X86LibDirs));
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001160 TripleAliases.append(
1161 X86Triples, X86Triples + llvm::array_lengthof(X86Triples));
1162 MultiarchLibDirs.append(
1163 X86_64LibDirs, X86_64LibDirs + llvm::array_lengthof(X86_64LibDirs));
1164 MultiarchTripleAliases.append(
1165 X86_64Triples, X86_64Triples + llvm::array_lengthof(X86_64Triples));
1166 break;
1167 case llvm::Triple::mips:
1168 LibDirs.append(
1169 MIPSLibDirs, MIPSLibDirs + llvm::array_lengthof(MIPSLibDirs));
1170 TripleAliases.append(
1171 MIPSTriples, MIPSTriples + llvm::array_lengthof(MIPSTriples));
Simon Atanasyanb8c43812012-04-26 19:57:02 +00001172 MultiarchLibDirs.append(
1173 MIPS64LibDirs, MIPS64LibDirs + llvm::array_lengthof(MIPS64LibDirs));
1174 MultiarchTripleAliases.append(
1175 MIPS64Triples, MIPS64Triples + llvm::array_lengthof(MIPS64Triples));
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001176 break;
1177 case llvm::Triple::mipsel:
1178 LibDirs.append(
1179 MIPSELLibDirs, MIPSELLibDirs + llvm::array_lengthof(MIPSELLibDirs));
1180 TripleAliases.append(
1181 MIPSELTriples, MIPSELTriples + llvm::array_lengthof(MIPSELTriples));
Simon Atanasyanb8c43812012-04-26 19:57:02 +00001182 MultiarchLibDirs.append(
1183 MIPS64ELLibDirs, MIPS64ELLibDirs + llvm::array_lengthof(MIPS64ELLibDirs));
1184 MultiarchTripleAliases.append(
1185 MIPS64ELTriples, MIPS64ELTriples + llvm::array_lengthof(MIPS64ELTriples));
1186 break;
1187 case llvm::Triple::mips64:
1188 LibDirs.append(
1189 MIPS64LibDirs, MIPS64LibDirs + llvm::array_lengthof(MIPS64LibDirs));
1190 TripleAliases.append(
1191 MIPS64Triples, MIPS64Triples + llvm::array_lengthof(MIPS64Triples));
1192 MultiarchLibDirs.append(
1193 MIPSLibDirs, MIPSLibDirs + llvm::array_lengthof(MIPSLibDirs));
1194 MultiarchTripleAliases.append(
1195 MIPSTriples, MIPSTriples + llvm::array_lengthof(MIPSTriples));
1196 break;
1197 case llvm::Triple::mips64el:
1198 LibDirs.append(
1199 MIPS64ELLibDirs, MIPS64ELLibDirs + llvm::array_lengthof(MIPS64ELLibDirs));
1200 TripleAliases.append(
1201 MIPS64ELTriples, MIPS64ELTriples + llvm::array_lengthof(MIPS64ELTriples));
1202 MultiarchLibDirs.append(
1203 MIPSELLibDirs, MIPSELLibDirs + llvm::array_lengthof(MIPSELLibDirs));
1204 MultiarchTripleAliases.append(
1205 MIPSELTriples, MIPSELTriples + llvm::array_lengthof(MIPSELTriples));
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001206 break;
1207 case llvm::Triple::ppc:
Chandler Carruth19347ed2011-11-06 23:39:34 +00001208 LibDirs.append(PPCLibDirs, PPCLibDirs + llvm::array_lengthof(PPCLibDirs));
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001209 TripleAliases.append(
1210 PPCTriples, PPCTriples + llvm::array_lengthof(PPCTriples));
1211 MultiarchLibDirs.append(
1212 PPC64LibDirs, PPC64LibDirs + llvm::array_lengthof(PPC64LibDirs));
1213 MultiarchTripleAliases.append(
1214 PPC64Triples, PPC64Triples + llvm::array_lengthof(PPC64Triples));
1215 break;
1216 case llvm::Triple::ppc64:
1217 LibDirs.append(
1218 PPC64LibDirs, PPC64LibDirs + llvm::array_lengthof(PPC64LibDirs));
1219 TripleAliases.append(
1220 PPC64Triples, PPC64Triples + llvm::array_lengthof(PPC64Triples));
1221 MultiarchLibDirs.append(
1222 PPCLibDirs, PPCLibDirs + llvm::array_lengthof(PPCLibDirs));
1223 MultiarchTripleAliases.append(
1224 PPCTriples, PPCTriples + llvm::array_lengthof(PPCTriples));
1225 break;
1226
1227 default:
1228 // By default, just rely on the standard lib directories and the original
1229 // triple.
1230 break;
Chandler Carruth19347ed2011-11-06 23:39:34 +00001231 }
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001232
1233 // Always append the drivers target triple to the end, in case it doesn't
1234 // match any of our aliases.
1235 TripleAliases.push_back(TargetTriple.str());
1236
1237 // Also include the multiarch variant if it's different.
1238 if (TargetTriple.str() != MultiarchTriple.str())
1239 MultiarchTripleAliases.push_back(MultiarchTriple.str());
Chandler Carruth19347ed2011-11-06 23:39:34 +00001240}
1241
Simon Atanasyanf4bd3292012-10-21 11:44:57 +00001242// FIXME: There is the same routine in the Tools.cpp.
1243static bool hasMipsN32ABIArg(const ArgList &Args) {
1244 Arg *A = Args.getLastArg(options::OPT_mabi_EQ);
Richard Smith1d489cf2012-11-01 04:30:05 +00001245 return A && (A->getValue() == StringRef("n32"));
Simon Atanasyanf4bd3292012-10-21 11:44:57 +00001246}
1247
1248static StringRef getTargetMultiarchSuffix(llvm::Triple::ArchType TargetArch,
1249 const ArgList &Args) {
1250 if (TargetArch == llvm::Triple::x86_64 ||
1251 TargetArch == llvm::Triple::ppc64)
1252 return "/64";
1253
1254 if (TargetArch == llvm::Triple::mips64 ||
1255 TargetArch == llvm::Triple::mips64el) {
1256 if (hasMipsN32ABIArg(Args))
1257 return "/n32";
1258 else
1259 return "/64";
1260 }
1261
1262 return "/32";
1263}
1264
Chandler Carruth19347ed2011-11-06 23:39:34 +00001265void Generic_GCC::GCCInstallationDetector::ScanLibDirForGCCTriple(
Simon Atanasyanf4bd3292012-10-21 11:44:57 +00001266 llvm::Triple::ArchType TargetArch, const ArgList &Args,
1267 const std::string &LibDir,
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001268 StringRef CandidateTriple, bool NeedsMultiarchSuffix) {
Chandler Carruth19347ed2011-11-06 23:39:34 +00001269 // There are various different suffixes involving the triple we
1270 // check for. We also record what is necessary to walk from each back
1271 // up to the lib directory.
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001272 const std::string LibSuffixes[] = {
Chandler Carruth19347ed2011-11-06 23:39:34 +00001273 "/gcc/" + CandidateTriple.str(),
1274 "/" + CandidateTriple.str() + "/gcc/" + CandidateTriple.str(),
1275
Hal Finkel02014b42012-09-18 22:25:07 +00001276 // The Freescale PPC SDK has the gcc libraries in
1277 // <sysroot>/usr/lib/<triple>/x.y.z so have a look there as well.
1278 "/" + CandidateTriple.str(),
1279
Chandler Carruth19347ed2011-11-06 23:39:34 +00001280 // Ubuntu has a strange mis-matched pair of triples that this happens to
1281 // match.
1282 // FIXME: It may be worthwhile to generalize this and look for a second
1283 // triple.
Chandler Carruthd936d9d2011-11-09 03:46:20 +00001284 "/i386-linux-gnu/gcc/" + CandidateTriple.str()
Chandler Carruth19347ed2011-11-06 23:39:34 +00001285 };
1286 const std::string InstallSuffixes[] = {
1287 "/../../..",
1288 "/../../../..",
Hal Finkel02014b42012-09-18 22:25:07 +00001289 "/../..",
Chandler Carruth19347ed2011-11-06 23:39:34 +00001290 "/../../../.."
1291 };
1292 // Only look at the final, weird Ubuntu suffix for i386-linux-gnu.
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001293 const unsigned NumLibSuffixes = (llvm::array_lengthof(LibSuffixes) -
1294 (TargetArch != llvm::Triple::x86));
1295 for (unsigned i = 0; i < NumLibSuffixes; ++i) {
1296 StringRef LibSuffix = LibSuffixes[i];
Chandler Carruth19347ed2011-11-06 23:39:34 +00001297 llvm::error_code EC;
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001298 for (llvm::sys::fs::directory_iterator LI(LibDir + LibSuffix, EC), LE;
Chandler Carruth19347ed2011-11-06 23:39:34 +00001299 !EC && LI != LE; LI = LI.increment(EC)) {
1300 StringRef VersionText = llvm::sys::path::filename(LI->path());
1301 GCCVersion CandidateVersion = GCCVersion::Parse(VersionText);
1302 static const GCCVersion MinVersion = { "4.1.1", 4, 1, 1, "" };
1303 if (CandidateVersion < MinVersion)
1304 continue;
1305 if (CandidateVersion <= Version)
1306 continue;
Hal Finkel2e55df42011-12-08 05:50:03 +00001307
1308 // Some versions of SUSE and Fedora on ppc64 put 32-bit libs
Chandler Carruth5d84bb42012-01-24 19:21:42 +00001309 // in what would normally be GCCInstallPath and put the 64-bit
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001310 // libs in a subdirectory named 64. The simple logic we follow is that
1311 // *if* there is a subdirectory of the right name with crtbegin.o in it,
1312 // we use that. If not, and if not a multiarch triple, we look for
1313 // crtbegin.o without the subdirectory.
Simon Atanasyanf4bd3292012-10-21 11:44:57 +00001314 StringRef MultiarchSuffix = getTargetMultiarchSuffix(TargetArch, Args);
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001315 if (llvm::sys::fs::exists(LI->path() + MultiarchSuffix + "/crtbegin.o")) {
1316 GCCMultiarchSuffix = MultiarchSuffix.str();
1317 } else {
1318 if (NeedsMultiarchSuffix ||
1319 !llvm::sys::fs::exists(LI->path() + "/crtbegin.o"))
1320 continue;
1321 GCCMultiarchSuffix.clear();
1322 }
Chandler Carruth19347ed2011-11-06 23:39:34 +00001323
1324 Version = CandidateVersion;
Chandler Carruthfa5be912012-01-24 19:28:29 +00001325 GCCTriple.setTriple(CandidateTriple);
Chandler Carruth19347ed2011-11-06 23:39:34 +00001326 // FIXME: We hack together the directory name here instead of
1327 // using LI to ensure stable path separators across Windows and
1328 // Linux.
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00001329 GCCInstallPath = LibDir + LibSuffixes[i] + "/" + VersionText.str();
Chandler Carruth5d84bb42012-01-24 19:21:42 +00001330 GCCParentLibPath = GCCInstallPath + InstallSuffixes[i];
Chandler Carruth19347ed2011-11-06 23:39:34 +00001331 IsValid = true;
1332 }
1333 }
1334}
1335
Rafael Espindola0e659592012-02-19 01:38:32 +00001336Generic_GCC::Generic_GCC(const Driver &D, const llvm::Triple& Triple,
1337 const ArgList &Args)
1338 : ToolChain(D, Triple), GCCInstallation(getDriver(), Triple, Args) {
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001339 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +00001340 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001341 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbarc50b00d2009-03-23 16:15:50 +00001342}
1343
Daniel Dunbar39176082009-03-20 00:20:03 +00001344Generic_GCC::~Generic_GCC() {
1345 // Free tool implementations.
1346 for (llvm::DenseMap<unsigned, Tool*>::iterator
1347 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
1348 delete it->second;
1349}
1350
Mike Stump1eb44332009-09-09 15:08:12 +00001351Tool &Generic_GCC::SelectTool(const Compilation &C,
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001352 const JobAction &JA,
1353 const ActionList &Inputs) const {
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00001354 Action::ActionClass Key;
1355 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1356 Key = Action::AnalyzeJobClass;
1357 else
1358 Key = JA.getKind();
Daniel Dunbar39176082009-03-20 00:20:03 +00001359
1360 Tool *&T = Tools[Key];
1361 if (!T) {
1362 switch (Key) {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +00001363 case Action::InputClass:
1364 case Action::BindArchClass:
David Blaikieb219cfc2011-09-23 05:06:16 +00001365 llvm_unreachable("Invalid tool kind.");
Daniel Dunbar39176082009-03-20 00:20:03 +00001366 case Action::PreprocessJobClass:
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00001367 T = new tools::gcc::Preprocess(*this); break;
Daniel Dunbar39176082009-03-20 00:20:03 +00001368 case Action::PrecompileJobClass:
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00001369 T = new tools::gcc::Precompile(*this); break;
Daniel Dunbar39176082009-03-20 00:20:03 +00001370 case Action::AnalyzeJobClass:
Ted Kremenek30660a82012-03-06 20:06:33 +00001371 case Action::MigrateJobClass:
Bob Wilson85b7f7d2012-11-08 01:03:34 +00001372 T = new tools::Clang(*this); break;
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00001373 case Action::CompileJobClass:
1374 T = new tools::gcc::Compile(*this); break;
Daniel Dunbar39176082009-03-20 00:20:03 +00001375 case Action::AssembleJobClass:
1376 T = new tools::gcc::Assemble(*this); break;
1377 case Action::LinkJobClass:
1378 T = new tools::gcc::Link(*this); break;
Mike Stump1eb44332009-09-09 15:08:12 +00001379
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +00001380 // This is a bit ungeneric, but the only platform using a driver
1381 // driver is Darwin.
1382 case Action::LipoJobClass:
1383 T = new tools::darwin::Lipo(*this); break;
Daniel Dunbar6e0f2542010-06-04 18:28:36 +00001384 case Action::DsymutilJobClass:
1385 T = new tools::darwin::Dsymutil(*this); break;
Eric Christopherf8571862011-08-23 17:56:55 +00001386 case Action::VerifyJobClass:
1387 T = new tools::darwin::VerifyDebug(*this); break;
Daniel Dunbar39176082009-03-20 00:20:03 +00001388 }
1389 }
1390
1391 return *T;
1392}
1393
Daniel Dunbar39176082009-03-20 00:20:03 +00001394bool Generic_GCC::IsUnwindTablesDefault() const {
Rafael Espindola6f009b62012-09-22 15:04:11 +00001395 return getArch() == llvm::Triple::x86_64;
Daniel Dunbar39176082009-03-20 00:20:03 +00001396}
1397
1398const char *Generic_GCC::GetDefaultRelocationModel() const {
1399 return "static";
1400}
1401
1402const char *Generic_GCC::GetForcedPicModel() const {
1403 return 0;
1404}
Tony Linthicum96319392011-12-12 21:14:55 +00001405/// Hexagon Toolchain
1406
Chandler Carruth1d16f0f2012-01-31 02:21:20 +00001407Hexagon_TC::Hexagon_TC(const Driver &D, const llvm::Triple& Triple)
1408 : ToolChain(D, Triple) {
Tony Linthicum96319392011-12-12 21:14:55 +00001409 getProgramPaths().push_back(getDriver().getInstalledDir());
1410 if (getDriver().getInstalledDir() != getDriver().Dir.c_str())
1411 getProgramPaths().push_back(getDriver().Dir);
1412}
1413
1414Hexagon_TC::~Hexagon_TC() {
1415 // Free tool implementations.
1416 for (llvm::DenseMap<unsigned, Tool*>::iterator
1417 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
1418 delete it->second;
1419}
1420
1421Tool &Hexagon_TC::SelectTool(const Compilation &C,
1422 const JobAction &JA,
1423 const ActionList &Inputs) const {
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00001424 Action::ActionClass Key;
1425 // if (JA.getKind () == Action::CompileJobClass)
1426 // Key = JA.getKind ();
1427 // else
1428
1429 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1430 Key = Action::AnalyzeJobClass;
1431 else
1432 Key = JA.getKind();
1433 // if ((JA.getKind () == Action::CompileJobClass)
1434 // && (JA.getType () != types::TY_LTO_BC)) {
1435 // Key = JA.getKind ();
1436 // }
1437
Tony Linthicum96319392011-12-12 21:14:55 +00001438 Tool *&T = Tools[Key];
1439 if (!T) {
1440 switch (Key) {
1441 case Action::InputClass:
1442 case Action::BindArchClass:
1443 assert(0 && "Invalid tool kind.");
1444 case Action::AnalyzeJobClass:
1445 T = new tools::Clang(*this); break;
1446 case Action::AssembleJobClass:
1447 T = new tools::hexagon::Assemble(*this); break;
1448 case Action::LinkJobClass:
1449 T = new tools::hexagon::Link(*this); break;
1450 default:
1451 assert(false && "Unsupported action for Hexagon target.");
1452 }
1453 }
1454
1455 return *T;
1456}
1457
Tony Linthicum96319392011-12-12 21:14:55 +00001458const char *Hexagon_TC::GetDefaultRelocationModel() const {
1459 return "static";
1460}
1461
1462const char *Hexagon_TC::GetForcedPicModel() const {
1463 return 0;
1464} // End Hexagon
1465
Daniel Dunbarf3cad362009-03-25 04:13:45 +00001466
Chris Lattner3a47c4e2010-03-04 21:07:38 +00001467/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
1468/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
1469/// Currently does not support anything else but compilation.
1470
Chandler Carruth1d16f0f2012-01-31 02:21:20 +00001471TCEToolChain::TCEToolChain(const Driver &D, const llvm::Triple& Triple)
1472 : ToolChain(D, Triple) {
Chris Lattner3a47c4e2010-03-04 21:07:38 +00001473 // Path mangling to find libexec
1474 std::string Path(getDriver().Dir);
1475
1476 Path += "/../libexec";
1477 getProgramPaths().push_back(Path);
1478}
1479
1480TCEToolChain::~TCEToolChain() {
1481 for (llvm::DenseMap<unsigned, Tool*>::iterator
1482 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
1483 delete it->second;
1484}
1485
NAKAMURA Takumi304ed3f2011-06-03 03:49:51 +00001486bool TCEToolChain::IsMathErrnoDefault() const {
1487 return true;
Chris Lattner3a47c4e2010-03-04 21:07:38 +00001488}
1489
Chris Lattner3a47c4e2010-03-04 21:07:38 +00001490const char *TCEToolChain::GetDefaultRelocationModel() const {
1491 return "static";
1492}
1493
1494const char *TCEToolChain::GetForcedPicModel() const {
1495 return 0;
1496}
1497
NAKAMURA Takumi304ed3f2011-06-03 03:49:51 +00001498Tool &TCEToolChain::SelectTool(const Compilation &C,
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001499 const JobAction &JA,
1500 const ActionList &Inputs) const {
Chris Lattner3a47c4e2010-03-04 21:07:38 +00001501 Action::ActionClass Key;
1502 Key = Action::AnalyzeJobClass;
1503
1504 Tool *&T = Tools[Key];
1505 if (!T) {
1506 switch (Key) {
1507 case Action::PreprocessJobClass:
1508 T = new tools::gcc::Preprocess(*this); break;
1509 case Action::AnalyzeJobClass:
1510 T = new tools::Clang(*this); break;
1511 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00001512 llvm_unreachable("Unsupported action for TCE target.");
Chris Lattner3a47c4e2010-03-04 21:07:38 +00001513 }
1514 }
1515 return *T;
1516}
1517
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00001518/// OpenBSD - OpenBSD tool chain which can call as(1) and ld(1) directly.
1519
Rafael Espindola0e659592012-02-19 01:38:32 +00001520OpenBSD::OpenBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
1521 : Generic_ELF(D, Triple, Args) {
Daniel Dunbaree788e72009-12-21 18:54:17 +00001522 getFilePaths().push_back(getDriver().Dir + "/../lib");
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00001523 getFilePaths().push_back("/usr/lib");
1524}
1525
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001526Tool &OpenBSD::SelectTool(const Compilation &C, const JobAction &JA,
1527 const ActionList &Inputs) const {
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00001528 Action::ActionClass Key;
1529 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1530 Key = Action::AnalyzeJobClass;
1531 else
1532 Key = JA.getKind();
1533
Rafael Espindoladda5b922010-11-07 23:13:01 +00001534 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
1535 options::OPT_no_integrated_as,
1536 IsIntegratedAssemblerDefault());
1537
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00001538 Tool *&T = Tools[Key];
1539 if (!T) {
1540 switch (Key) {
Rafael Espindoladda5b922010-11-07 23:13:01 +00001541 case Action::AssembleJobClass: {
1542 if (UseIntegratedAs)
1543 T = new tools::ClangAs(*this);
1544 else
1545 T = new tools::openbsd::Assemble(*this);
1546 break;
1547 }
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00001548 case Action::LinkJobClass:
1549 T = new tools::openbsd::Link(*this); break;
1550 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001551 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +00001552 }
1553 }
1554
1555 return *T;
1556}
1557
Eli Friedman42f74f22012-08-08 23:57:20 +00001558/// Bitrig - Bitrig tool chain which can call as(1) and ld(1) directly.
1559
1560Bitrig::Bitrig(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
1561 : Generic_ELF(D, Triple, Args) {
1562 getFilePaths().push_back(getDriver().Dir + "/../lib");
1563 getFilePaths().push_back("/usr/lib");
1564}
1565
1566Tool &Bitrig::SelectTool(const Compilation &C, const JobAction &JA,
1567 const ActionList &Inputs) const {
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00001568 Action::ActionClass Key;
1569 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1570 Key = Action::AnalyzeJobClass;
1571 else
1572 Key = JA.getKind();
1573
Eli Friedman42f74f22012-08-08 23:57:20 +00001574 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
1575 options::OPT_no_integrated_as,
1576 IsIntegratedAssemblerDefault());
1577
1578 Tool *&T = Tools[Key];
1579 if (!T) {
1580 switch (Key) {
1581 case Action::AssembleJobClass: {
1582 if (UseIntegratedAs)
1583 T = new tools::ClangAs(*this);
1584 else
1585 T = new tools::bitrig::Assemble(*this);
1586 break;
1587 }
1588 case Action::LinkJobClass:
1589 T = new tools::bitrig::Link(*this); break;
1590 default:
1591 T = &Generic_GCC::SelectTool(C, JA, Inputs);
1592 }
1593 }
1594
1595 return *T;
1596}
1597
1598void Bitrig::AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
1599 ArgStringList &CC1Args) const {
1600 if (DriverArgs.hasArg(options::OPT_nostdlibinc) ||
1601 DriverArgs.hasArg(options::OPT_nostdincxx))
1602 return;
1603
Chandler Carruth8e6881d2012-10-08 21:31:38 +00001604 switch (GetCXXStdlibType(DriverArgs)) {
1605 case ToolChain::CST_Libcxx:
1606 addSystemInclude(DriverArgs, CC1Args,
1607 getDriver().SysRoot + "/usr/include/c++/");
1608 break;
1609 case ToolChain::CST_Libstdcxx:
1610 addSystemInclude(DriverArgs, CC1Args,
1611 getDriver().SysRoot + "/usr/include/c++/stdc++");
1612 addSystemInclude(DriverArgs, CC1Args,
1613 getDriver().SysRoot + "/usr/include/c++/stdc++/backward");
Eli Friedman42f74f22012-08-08 23:57:20 +00001614
Chandler Carruth8e6881d2012-10-08 21:31:38 +00001615 StringRef Triple = getTriple().str();
1616 if (Triple.startswith("amd64"))
1617 addSystemInclude(DriverArgs, CC1Args,
1618 getDriver().SysRoot + "/usr/include/c++/stdc++/x86_64" +
1619 Triple.substr(5));
1620 else
1621 addSystemInclude(DriverArgs, CC1Args,
1622 getDriver().SysRoot + "/usr/include/c++/stdc++/" +
1623 Triple);
1624 break;
1625 }
Eli Friedman42f74f22012-08-08 23:57:20 +00001626}
1627
1628void Bitrig::AddCXXStdlibLibArgs(const ArgList &Args,
1629 ArgStringList &CmdArgs) const {
Chandler Carruth8e6881d2012-10-08 21:31:38 +00001630 switch (GetCXXStdlibType(Args)) {
1631 case ToolChain::CST_Libcxx:
1632 CmdArgs.push_back("-lc++");
1633 CmdArgs.push_back("-lcxxrt");
1634 // Include supc++ to provide Unwind until provided by libcxx.
1635 CmdArgs.push_back("-lgcc");
1636 break;
1637 case ToolChain::CST_Libstdcxx:
1638 CmdArgs.push_back("-lstdc++");
1639 break;
1640 }
Eli Friedman42f74f22012-08-08 23:57:20 +00001641}
1642
Daniel Dunbar75358d22009-03-30 21:06:03 +00001643/// FreeBSD - FreeBSD tool chain which can call as(1) and ld(1) directly.
1644
Rafael Espindola0e659592012-02-19 01:38:32 +00001645FreeBSD::FreeBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
1646 : Generic_ELF(D, Triple, Args) {
Daniel Dunbar214afe92010-08-02 05:43:59 +00001647
Chandler Carruth24248e32012-01-26 01:35:15 +00001648 // When targeting 32-bit platforms, look for '/usr/lib32/crt1.o' and fall
1649 // back to '/usr/lib' if it doesn't exist.
Chandler Carruth00646ba2012-01-25 11:24:24 +00001650 if ((Triple.getArch() == llvm::Triple::x86 ||
1651 Triple.getArch() == llvm::Triple::ppc) &&
Chandler Carruth24248e32012-01-26 01:35:15 +00001652 llvm::sys::fs::exists(getDriver().SysRoot + "/usr/lib32/crt1.o"))
Chandler Carruth00646ba2012-01-25 11:24:24 +00001653 getFilePaths().push_back(getDriver().SysRoot + "/usr/lib32");
1654 else
1655 getFilePaths().push_back(getDriver().SysRoot + "/usr/lib");
Daniel Dunbar75358d22009-03-30 21:06:03 +00001656}
1657
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001658Tool &FreeBSD::SelectTool(const Compilation &C, const JobAction &JA,
1659 const ActionList &Inputs) const {
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00001660 Action::ActionClass Key;
1661 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1662 Key = Action::AnalyzeJobClass;
1663 else
1664 Key = JA.getKind();
1665
Roman Divacky67dece72010-11-08 17:46:39 +00001666 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
1667 options::OPT_no_integrated_as,
1668 IsIntegratedAssemblerDefault());
1669
Daniel Dunbar75358d22009-03-30 21:06:03 +00001670 Tool *&T = Tools[Key];
1671 if (!T) {
1672 switch (Key) {
Daniel Dunbar68a31d42009-03-31 17:45:15 +00001673 case Action::AssembleJobClass:
Roman Divacky67dece72010-11-08 17:46:39 +00001674 if (UseIntegratedAs)
1675 T = new tools::ClangAs(*this);
1676 else
1677 T = new tools::freebsd::Assemble(*this);
Roman Divackyfe3a7ea2010-11-08 19:39:10 +00001678 break;
Daniel Dunbar008f54a2009-04-01 19:36:32 +00001679 case Action::LinkJobClass:
1680 T = new tools::freebsd::Link(*this); break;
Daniel Dunbar75358d22009-03-30 21:06:03 +00001681 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001682 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Daniel Dunbar75358d22009-03-30 21:06:03 +00001683 }
1684 }
1685
1686 return *T;
1687}
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001688
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001689/// NetBSD - NetBSD tool chain which can call as(1) and ld(1) directly.
1690
Rafael Espindola0e659592012-02-19 01:38:32 +00001691NetBSD::NetBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
1692 : Generic_ELF(D, Triple, Args) {
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001693
Joerg Sonnenberger05e59302011-03-21 13:59:26 +00001694 if (getDriver().UseStdLib) {
Chandler Carruth32f88be2012-01-25 11:18:20 +00001695 // When targeting a 32-bit platform, try the special directory used on
1696 // 64-bit hosts, and only fall back to the main library directory if that
1697 // doesn't work.
1698 // FIXME: It'd be nicer to test if this directory exists, but I'm not sure
1699 // what all logic is needed to emulate the '=' prefix here.
Joerg Sonnenberger66de97f2012-01-26 21:58:37 +00001700 if (Triple.getArch() == llvm::Triple::x86)
Joerg Sonnenberger05e59302011-03-21 13:59:26 +00001701 getFilePaths().push_back("=/usr/lib/i386");
Chandler Carruth32f88be2012-01-25 11:18:20 +00001702
1703 getFilePaths().push_back("=/usr/lib");
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001704 }
1705}
1706
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001707Tool &NetBSD::SelectTool(const Compilation &C, const JobAction &JA,
1708 const ActionList &Inputs) const {
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00001709 Action::ActionClass Key;
1710 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1711 Key = Action::AnalyzeJobClass;
1712 else
1713 Key = JA.getKind();
1714
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001715 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
1716 options::OPT_no_integrated_as,
1717 IsIntegratedAssemblerDefault());
1718
1719 Tool *&T = Tools[Key];
1720 if (!T) {
1721 switch (Key) {
1722 case Action::AssembleJobClass:
1723 if (UseIntegratedAs)
1724 T = new tools::ClangAs(*this);
1725 else
Joerg Sonnenberger1bd91372012-01-26 22:27:52 +00001726 T = new tools::netbsd::Assemble(*this);
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001727 break;
1728 case Action::LinkJobClass:
Joerg Sonnenberger1bd91372012-01-26 22:27:52 +00001729 T = new tools::netbsd::Link(*this);
Joerg Sonnenberger182564c2011-05-16 13:35:02 +00001730 break;
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001731 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001732 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001733 }
1734 }
1735
1736 return *T;
1737}
1738
Chris Lattner38e317d2010-07-07 16:01:42 +00001739/// Minix - Minix tool chain which can call as(1) and ld(1) directly.
1740
Rafael Espindola0e659592012-02-19 01:38:32 +00001741Minix::Minix(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
1742 : Generic_ELF(D, Triple, Args) {
Chris Lattner38e317d2010-07-07 16:01:42 +00001743 getFilePaths().push_back(getDriver().Dir + "/../lib");
1744 getFilePaths().push_back("/usr/lib");
Chris Lattner38e317d2010-07-07 16:01:42 +00001745}
1746
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001747Tool &Minix::SelectTool(const Compilation &C, const JobAction &JA,
1748 const ActionList &Inputs) const {
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00001749 Action::ActionClass Key;
1750 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1751 Key = Action::AnalyzeJobClass;
1752 else
1753 Key = JA.getKind();
Chris Lattner38e317d2010-07-07 16:01:42 +00001754
1755 Tool *&T = Tools[Key];
1756 if (!T) {
1757 switch (Key) {
1758 case Action::AssembleJobClass:
1759 T = new tools::minix::Assemble(*this); break;
1760 case Action::LinkJobClass:
1761 T = new tools::minix::Link(*this); break;
1762 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001763 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Chris Lattner38e317d2010-07-07 16:01:42 +00001764 }
1765 }
1766
1767 return *T;
1768}
1769
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001770/// AuroraUX - AuroraUX tool chain which can call as(1) and ld(1) directly.
1771
Rafael Espindola0e659592012-02-19 01:38:32 +00001772AuroraUX::AuroraUX(const Driver &D, const llvm::Triple& Triple,
1773 const ArgList &Args)
1774 : Generic_GCC(D, Triple, Args) {
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001775
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001776 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +00001777 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001778 getProgramPaths().push_back(getDriver().Dir);
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001779
Daniel Dunbaree788e72009-12-21 18:54:17 +00001780 getFilePaths().push_back(getDriver().Dir + "/../lib");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001781 getFilePaths().push_back("/usr/lib");
1782 getFilePaths().push_back("/usr/sfw/lib");
1783 getFilePaths().push_back("/opt/gcc4/lib");
Edward O'Callaghan7adf9492009-10-15 07:44:07 +00001784 getFilePaths().push_back("/opt/gcc4/lib/gcc/i386-pc-solaris2.11/4.2.4");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001785
1786}
1787
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001788Tool &AuroraUX::SelectTool(const Compilation &C, const JobAction &JA,
1789 const ActionList &Inputs) const {
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00001790 Action::ActionClass Key;
1791 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1792 Key = Action::AnalyzeJobClass;
1793 else
1794 Key = JA.getKind();
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001795
1796 Tool *&T = Tools[Key];
1797 if (!T) {
1798 switch (Key) {
1799 case Action::AssembleJobClass:
1800 T = new tools::auroraux::Assemble(*this); break;
1801 case Action::LinkJobClass:
1802 T = new tools::auroraux::Link(*this); break;
1803 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001804 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001805 }
1806 }
1807
1808 return *T;
1809}
1810
David Chisnall31c46902012-02-15 13:39:01 +00001811/// Solaris - Solaris tool chain which can call as(1) and ld(1) directly.
1812
Rafael Espindola0e659592012-02-19 01:38:32 +00001813Solaris::Solaris(const Driver &D, const llvm::Triple& Triple,
1814 const ArgList &Args)
1815 : Generic_GCC(D, Triple, Args) {
David Chisnall31c46902012-02-15 13:39:01 +00001816
1817 getProgramPaths().push_back(getDriver().getInstalledDir());
1818 if (getDriver().getInstalledDir() != getDriver().Dir)
1819 getProgramPaths().push_back(getDriver().Dir);
1820
1821 getFilePaths().push_back(getDriver().Dir + "/../lib");
1822 getFilePaths().push_back("/usr/lib");
1823}
1824
1825Tool &Solaris::SelectTool(const Compilation &C, const JobAction &JA,
1826 const ActionList &Inputs) const {
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00001827 Action::ActionClass Key;
1828 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1829 Key = Action::AnalyzeJobClass;
1830 else
1831 Key = JA.getKind();
David Chisnall31c46902012-02-15 13:39:01 +00001832
1833 Tool *&T = Tools[Key];
1834 if (!T) {
1835 switch (Key) {
1836 case Action::AssembleJobClass:
1837 T = new tools::solaris::Assemble(*this); break;
1838 case Action::LinkJobClass:
1839 T = new tools::solaris::Link(*this); break;
1840 default:
1841 T = &Generic_GCC::SelectTool(C, JA, Inputs);
1842 }
1843 }
1844
1845 return *T;
1846}
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001847
Eli Friedman6b3454a2009-05-26 07:52:18 +00001848/// Linux toolchain (very bare-bones at the moment).
1849
Rafael Espindolac1da9812010-11-07 20:14:31 +00001850enum LinuxDistro {
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001851 ArchLinux,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001852 DebianLenny,
1853 DebianSqueeze,
Eli Friedman0b200f62011-06-02 21:36:53 +00001854 DebianWheezy,
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001855 Exherbo,
Chris Lattnerd753b562011-05-22 05:36:06 +00001856 RHEL4,
1857 RHEL5,
1858 RHEL6,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001859 Fedora13,
1860 Fedora14,
Eric Christopher8f1cc072011-04-06 18:22:53 +00001861 Fedora15,
Benjamin Kramerafe55fb2012-02-06 15:33:06 +00001862 Fedora16,
Eric Christopher8f1cc072011-04-06 18:22:53 +00001863 FedoraRawhide,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001864 OpenSuse11_3,
David Chisnallde5c0482011-05-19 13:26:33 +00001865 OpenSuse11_4,
1866 OpenSuse12_1,
Douglas Gregor4e1b2922012-04-30 23:42:57 +00001867 OpenSuse12_2,
Douglas Gregor814638e2011-03-14 15:39:50 +00001868 UbuntuHardy,
1869 UbuntuIntrepid,
Rafael Espindola021aaa42010-11-10 05:00:22 +00001870 UbuntuJaunty,
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001871 UbuntuKarmic,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001872 UbuntuLucid,
1873 UbuntuMaverick,
Ted Kremenek43ac2972011-04-05 22:04:27 +00001874 UbuntuNatty,
Benjamin Kramer25a857b2011-06-05 16:08:59 +00001875 UbuntuOneiric,
Benjamin Kramer668ecd92012-02-06 14:36:09 +00001876 UbuntuPrecise,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001877 UnknownDistro
1878};
1879
Chris Lattnerd753b562011-05-22 05:36:06 +00001880static bool IsRedhat(enum LinuxDistro Distro) {
Benjamin Kramerafe55fb2012-02-06 15:33:06 +00001881 return (Distro >= Fedora13 && Distro <= FedoraRawhide) ||
1882 (Distro >= RHEL4 && Distro <= RHEL6);
Rafael Espindolac1da9812010-11-07 20:14:31 +00001883}
1884
1885static bool IsOpenSuse(enum LinuxDistro Distro) {
Douglas Gregor4e1b2922012-04-30 23:42:57 +00001886 return Distro >= OpenSuse11_3 && Distro <= OpenSuse12_2;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001887}
1888
1889static bool IsDebian(enum LinuxDistro Distro) {
Benjamin Kramerafe55fb2012-02-06 15:33:06 +00001890 return Distro >= DebianLenny && Distro <= DebianWheezy;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001891}
1892
1893static bool IsUbuntu(enum LinuxDistro Distro) {
Benjamin Kramer668ecd92012-02-06 14:36:09 +00001894 return Distro >= UbuntuHardy && Distro <= UbuntuPrecise;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001895}
1896
Rafael Espindolac1da9812010-11-07 20:14:31 +00001897static LinuxDistro DetectLinuxDistro(llvm::Triple::ArchType Arch) {
Dylan Noblesmith6f42b622012-02-05 02:12:40 +00001898 OwningPtr<llvm::MemoryBuffer> File;
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001899 if (!llvm::MemoryBuffer::getFile("/etc/lsb-release", File)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001900 StringRef Data = File.get()->getBuffer();
1901 SmallVector<StringRef, 8> Lines;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001902 Data.split(Lines, "\n");
Benjamin Kramer668ecd92012-02-06 14:36:09 +00001903 LinuxDistro Version = UnknownDistro;
1904 for (unsigned i = 0, s = Lines.size(); i != s; ++i)
1905 if (Version == UnknownDistro && Lines[i].startswith("DISTRIB_CODENAME="))
1906 Version = llvm::StringSwitch<LinuxDistro>(Lines[i].substr(17))
1907 .Case("hardy", UbuntuHardy)
1908 .Case("intrepid", UbuntuIntrepid)
1909 .Case("jaunty", UbuntuJaunty)
1910 .Case("karmic", UbuntuKarmic)
1911 .Case("lucid", UbuntuLucid)
1912 .Case("maverick", UbuntuMaverick)
1913 .Case("natty", UbuntuNatty)
1914 .Case("oneiric", UbuntuOneiric)
1915 .Case("precise", UbuntuPrecise)
1916 .Default(UnknownDistro);
1917 return Version;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001918 }
1919
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001920 if (!llvm::MemoryBuffer::getFile("/etc/redhat-release", File)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001921 StringRef Data = File.get()->getBuffer();
Benjamin Kramerafe55fb2012-02-06 15:33:06 +00001922 if (Data.startswith("Fedora release 16"))
1923 return Fedora16;
1924 else if (Data.startswith("Fedora release 15"))
Eric Christopher8f1cc072011-04-06 18:22:53 +00001925 return Fedora15;
1926 else if (Data.startswith("Fedora release 14"))
Rafael Espindolac1da9812010-11-07 20:14:31 +00001927 return Fedora14;
Eric Christopher8f1cc072011-04-06 18:22:53 +00001928 else if (Data.startswith("Fedora release 13"))
Rafael Espindolac1da9812010-11-07 20:14:31 +00001929 return Fedora13;
Eric Christopher8f1cc072011-04-06 18:22:53 +00001930 else if (Data.startswith("Fedora release") &&
Chris Lattner5f9e2722011-07-23 10:55:15 +00001931 Data.find("Rawhide") != StringRef::npos)
Eric Christopher8f1cc072011-04-06 18:22:53 +00001932 return FedoraRawhide;
Chris Lattnerd753b562011-05-22 05:36:06 +00001933 else if (Data.startswith("Red Hat Enterprise Linux") &&
Chris Lattner5f9e2722011-07-23 10:55:15 +00001934 Data.find("release 6") != StringRef::npos)
Chris Lattnerd753b562011-05-22 05:36:06 +00001935 return RHEL6;
Rafael Espindola5a640ef2011-06-03 15:23:24 +00001936 else if ((Data.startswith("Red Hat Enterprise Linux") ||
1937 Data.startswith("CentOS")) &&
Chris Lattner5f9e2722011-07-23 10:55:15 +00001938 Data.find("release 5") != StringRef::npos)
Chris Lattnerd753b562011-05-22 05:36:06 +00001939 return RHEL5;
Rafael Espindola5a640ef2011-06-03 15:23:24 +00001940 else if ((Data.startswith("Red Hat Enterprise Linux") ||
1941 Data.startswith("CentOS")) &&
Chris Lattner5f9e2722011-07-23 10:55:15 +00001942 Data.find("release 4") != StringRef::npos)
Chris Lattnerd753b562011-05-22 05:36:06 +00001943 return RHEL4;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001944 return UnknownDistro;
1945 }
1946
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001947 if (!llvm::MemoryBuffer::getFile("/etc/debian_version", File)) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001948 StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001949 if (Data[0] == '5')
1950 return DebianLenny;
Rafael Espindola0e743b12011-12-28 18:17:14 +00001951 else if (Data.startswith("squeeze/sid") || Data[0] == '6')
Rafael Espindolac1da9812010-11-07 20:14:31 +00001952 return DebianSqueeze;
Rafael Espindola0e743b12011-12-28 18:17:14 +00001953 else if (Data.startswith("wheezy/sid") || Data[0] == '7')
Eli Friedman0b200f62011-06-02 21:36:53 +00001954 return DebianWheezy;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001955 return UnknownDistro;
1956 }
1957
Benjamin Kramerafe55fb2012-02-06 15:33:06 +00001958 if (!llvm::MemoryBuffer::getFile("/etc/SuSE-release", File))
1959 return llvm::StringSwitch<LinuxDistro>(File.get()->getBuffer())
1960 .StartsWith("openSUSE 11.3", OpenSuse11_3)
1961 .StartsWith("openSUSE 11.4", OpenSuse11_4)
1962 .StartsWith("openSUSE 12.1", OpenSuse12_1)
Douglas Gregor4e1b2922012-04-30 23:42:57 +00001963 .StartsWith("openSUSE 12.2", OpenSuse12_2)
Benjamin Kramerafe55fb2012-02-06 15:33:06 +00001964 .Default(UnknownDistro);
Rafael Espindolac1da9812010-11-07 20:14:31 +00001965
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001966 bool Exists;
1967 if (!llvm::sys::fs::exists("/etc/exherbo-release", Exists) && Exists)
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001968 return Exherbo;
1969
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001970 if (!llvm::sys::fs::exists("/etc/arch-release", Exists) && Exists)
1971 return ArchLinux;
1972
Rafael Espindolac1da9812010-11-07 20:14:31 +00001973 return UnknownDistro;
1974}
1975
Chandler Carruthdeb73f82011-10-31 08:42:24 +00001976/// \brief Get our best guess at the multiarch triple for a target.
1977///
1978/// Debian-based systems are starting to use a multiarch setup where they use
1979/// a target-triple directory in the library and header search paths.
1980/// Unfortunately, this triple does not align with the vanilla target triple,
1981/// so we provide a rough mapping here.
1982static std::string getMultiarchTriple(const llvm::Triple TargetTriple,
1983 StringRef SysRoot) {
1984 // For most architectures, just use whatever we have rather than trying to be
1985 // clever.
1986 switch (TargetTriple.getArch()) {
1987 default:
1988 return TargetTriple.str();
1989
1990 // We use the existence of '/lib/<triple>' as a directory to detect some
1991 // common linux triples that don't quite match the Clang triple for both
Chandler Carruth236e0b62011-10-31 09:06:40 +00001992 // 32-bit and 64-bit targets. Multiarch fixes its install triples to these
1993 // regardless of what the actual target triple is.
Chad Rosier0337efd2012-07-11 19:08:21 +00001994 case llvm::Triple::arm:
1995 case llvm::Triple::thumb:
Jiangning Liuff104a12012-07-31 08:06:29 +00001996 if (TargetTriple.getEnvironment() == llvm::Triple::GNUEABIHF) {
1997 if (llvm::sys::fs::exists(SysRoot + "/lib/arm-linux-gnueabihf"))
1998 return "arm-linux-gnueabihf";
1999 } else {
2000 if (llvm::sys::fs::exists(SysRoot + "/lib/arm-linux-gnueabi"))
2001 return "arm-linux-gnueabi";
2002 }
Chad Rosier0337efd2012-07-11 19:08:21 +00002003 return TargetTriple.str();
Chandler Carruthdeb73f82011-10-31 08:42:24 +00002004 case llvm::Triple::x86:
Chandler Carruthdeb73f82011-10-31 08:42:24 +00002005 if (llvm::sys::fs::exists(SysRoot + "/lib/i386-linux-gnu"))
2006 return "i386-linux-gnu";
2007 return TargetTriple.str();
2008 case llvm::Triple::x86_64:
2009 if (llvm::sys::fs::exists(SysRoot + "/lib/x86_64-linux-gnu"))
2010 return "x86_64-linux-gnu";
Chandler Carruthdeb73f82011-10-31 08:42:24 +00002011 return TargetTriple.str();
Eli Friedman5bea4f62011-11-08 19:43:37 +00002012 case llvm::Triple::mips:
2013 if (llvm::sys::fs::exists(SysRoot + "/lib/mips-linux-gnu"))
2014 return "mips-linux-gnu";
2015 return TargetTriple.str();
2016 case llvm::Triple::mipsel:
2017 if (llvm::sys::fs::exists(SysRoot + "/lib/mipsel-linux-gnu"))
2018 return "mipsel-linux-gnu";
2019 return TargetTriple.str();
Chandler Carruth155c54c2012-02-26 09:03:21 +00002020 case llvm::Triple::ppc:
2021 if (llvm::sys::fs::exists(SysRoot + "/lib/powerpc-linux-gnu"))
2022 return "powerpc-linux-gnu";
2023 return TargetTriple.str();
2024 case llvm::Triple::ppc64:
2025 if (llvm::sys::fs::exists(SysRoot + "/lib/powerpc64-linux-gnu"))
2026 return "powerpc64-linux-gnu";
2027 return TargetTriple.str();
Chandler Carruthdeb73f82011-10-31 08:42:24 +00002028 }
2029}
2030
Chandler Carruth00646ba2012-01-25 11:24:24 +00002031static void addPathIfExists(Twine Path, ToolChain::path_list &Paths) {
2032 if (llvm::sys::fs::exists(Path)) Paths.push_back(Path.str());
2033}
2034
Simon Atanasyan7a918882012-09-14 11:27:24 +00002035static bool isMipsArch(llvm::Triple::ArchType Arch) {
2036 return Arch == llvm::Triple::mips ||
2037 Arch == llvm::Triple::mipsel ||
2038 Arch == llvm::Triple::mips64 ||
2039 Arch == llvm::Triple::mips64el;
2040}
2041
Simon Atanasyanf8d9bd52012-10-03 17:46:38 +00002042static bool isMipsR2Arch(llvm::Triple::ArchType Arch,
2043 const ArgList &Args) {
2044 if (Arch != llvm::Triple::mips &&
2045 Arch != llvm::Triple::mipsel)
2046 return false;
2047
2048 Arg *A = Args.getLastArg(options::OPT_march_EQ,
2049 options::OPT_mcpu_EQ,
2050 options::OPT_mips_CPUs_Group);
2051
2052 if (!A)
2053 return false;
2054
2055 if (A->getOption().matches(options::OPT_mips_CPUs_Group))
2056 return A->getOption().matches(options::OPT_mips32r2);
2057
Richard Smith1d489cf2012-11-01 04:30:05 +00002058 return A->getValue() == StringRef("mips32r2");
Simon Atanasyanf8d9bd52012-10-03 17:46:38 +00002059}
2060
Simon Atanasyan7a918882012-09-14 11:27:24 +00002061static StringRef getMultilibDir(const llvm::Triple &Triple,
2062 const ArgList &Args) {
2063 if (!isMipsArch(Triple.getArch()))
2064 return Triple.isArch32Bit() ? "lib32" : "lib64";
2065
2066 // lib32 directory has a special meaning on MIPS targets.
2067 // It contains N32 ABI binaries. Use this folder if produce
2068 // code for N32 ABI only.
Simon Atanasyanf4bd3292012-10-21 11:44:57 +00002069 if (hasMipsN32ABIArg(Args))
Simon Atanasyan7a918882012-09-14 11:27:24 +00002070 return "lib32";
2071
2072 return Triple.isArch32Bit() ? "lib" : "lib64";
2073}
2074
Rafael Espindola0e659592012-02-19 01:38:32 +00002075Linux::Linux(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
2076 : Generic_ELF(D, Triple, Args) {
Chandler Carruth89088792012-01-24 20:08:17 +00002077 llvm::Triple::ArchType Arch = Triple.getArch();
Chandler Carruthfde8d142011-10-03 06:41:08 +00002078 const std::string &SysRoot = getDriver().SysRoot;
Rafael Espindolac1da9812010-11-07 20:14:31 +00002079
Rafael Espindolaab784082011-09-01 16:25:49 +00002080 // OpenSuse stores the linker with the compiler, add that to the search
2081 // path.
2082 ToolChain::path_list &PPaths = getProgramPaths();
Chandler Carruthfa134592011-11-06 09:21:54 +00002083 PPaths.push_back(Twine(GCCInstallation.getParentLibPath() + "/../" +
Chandler Carruthfa5be912012-01-24 19:28:29 +00002084 GCCInstallation.getTriple().str() + "/bin").str());
Rafael Espindolaab784082011-09-01 16:25:49 +00002085
2086 Linker = GetProgramPath("ld");
Rafael Espindolac1da9812010-11-07 20:14:31 +00002087
2088 LinuxDistro Distro = DetectLinuxDistro(Arch);
2089
Chris Lattner64a89172011-05-22 16:45:07 +00002090 if (IsOpenSuse(Distro) || IsUbuntu(Distro)) {
Rafael Espindola94c80222010-11-08 14:48:47 +00002091 ExtraOpts.push_back("-z");
2092 ExtraOpts.push_back("relro");
2093 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00002094
Douglas Gregorf0594d82011-03-06 19:11:49 +00002095 if (Arch == llvm::Triple::arm || Arch == llvm::Triple::thumb)
Rafael Espindolac1da9812010-11-07 20:14:31 +00002096 ExtraOpts.push_back("-X");
2097
Logan Chien94a71422012-09-02 09:30:11 +00002098 const bool IsAndroid = Triple.getEnvironment() == llvm::Triple::Android;
Evgeniy Stepanov704e7322012-01-13 09:30:38 +00002099
Chandler Carruthd4e6e7e2011-12-09 04:45:18 +00002100 // Do not use 'gnu' hash style for Mips targets because .gnu.hash
2101 // and the MIPS ABI require .dynsym to be sorted in different ways.
2102 // .gnu.hash needs symbols to be grouped by hash code whereas the MIPS
2103 // ABI requires a mapping between the GOT and the symbol table.
Evgeniy Stepanov704e7322012-01-13 09:30:38 +00002104 // Android loader does not support .gnu.hash.
Simon Atanasyan7a918882012-09-14 11:27:24 +00002105 if (!isMipsArch(Arch) && !IsAndroid) {
Benjamin Kramer668ecd92012-02-06 14:36:09 +00002106 if (IsRedhat(Distro) || IsOpenSuse(Distro) ||
2107 (IsUbuntu(Distro) && Distro >= UbuntuMaverick))
Chandler Carruthd4e6e7e2011-12-09 04:45:18 +00002108 ExtraOpts.push_back("--hash-style=gnu");
2109
2110 if (IsDebian(Distro) || IsOpenSuse(Distro) || Distro == UbuntuLucid ||
2111 Distro == UbuntuJaunty || Distro == UbuntuKarmic)
2112 ExtraOpts.push_back("--hash-style=both");
2113 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00002114
Chris Lattnerd753b562011-05-22 05:36:06 +00002115 if (IsRedhat(Distro))
Rafael Espindolac1da9812010-11-07 20:14:31 +00002116 ExtraOpts.push_back("--no-add-needed");
2117
Eli Friedman0b200f62011-06-02 21:36:53 +00002118 if (Distro == DebianSqueeze || Distro == DebianWheezy ||
Rafael Espindola5a640ef2011-06-03 15:23:24 +00002119 IsOpenSuse(Distro) ||
2120 (IsRedhat(Distro) && Distro != RHEL4 && Distro != RHEL5) ||
Benjamin Kramer668ecd92012-02-06 14:36:09 +00002121 (IsUbuntu(Distro) && Distro >= UbuntuKarmic))
Rafael Espindolac1da9812010-11-07 20:14:31 +00002122 ExtraOpts.push_back("--build-id");
2123
Chris Lattner64a89172011-05-22 16:45:07 +00002124 if (IsOpenSuse(Distro))
Chandler Carruthf0b60ec2011-05-24 07:51:17 +00002125 ExtraOpts.push_back("--enable-new-dtags");
Chris Lattner64a89172011-05-22 16:45:07 +00002126
Chandler Carruthd2deee12011-10-03 05:28:29 +00002127 // The selection of paths to try here is designed to match the patterns which
2128 // the GCC driver itself uses, as this is part of the GCC-compatible driver.
2129 // This was determined by running GCC in a fake filesystem, creating all
2130 // possible permutations of these directories, and seeing which ones it added
2131 // to the link paths.
2132 path_list &Paths = getFilePaths();
Chandler Carruth3fd345a2011-02-25 06:39:53 +00002133
Simon Atanasyan7a918882012-09-14 11:27:24 +00002134 const std::string Multilib = getMultilibDir(Triple, Args);
Chandler Carruthdeb73f82011-10-31 08:42:24 +00002135 const std::string MultiarchTriple = getMultiarchTriple(Triple, SysRoot);
Chandler Carruthd2deee12011-10-03 05:28:29 +00002136
Chandler Carruthd1f73062011-11-06 23:09:05 +00002137 // Add the multilib suffixed paths where they are available.
2138 if (GCCInstallation.isValid()) {
Chandler Carruthfa5be912012-01-24 19:28:29 +00002139 const llvm::Triple &GCCTriple = GCCInstallation.getTriple();
Chandler Carruth89088792012-01-24 20:08:17 +00002140 const std::string &LibPath = GCCInstallation.getParentLibPath();
Simon Atanasyanf8d9bd52012-10-03 17:46:38 +00002141
2142 if (IsAndroid && isMipsR2Arch(Triple.getArch(), Args))
2143 addPathIfExists(GCCInstallation.getInstallPath() +
2144 GCCInstallation.getMultiarchSuffix() +
2145 "/mips-r2",
2146 Paths);
2147 else
2148 addPathIfExists((GCCInstallation.getInstallPath() +
2149 GCCInstallation.getMultiarchSuffix()),
2150 Paths);
Chandler Carruth9f314372012-04-06 16:32:06 +00002151
2152 // If the GCC installation we found is inside of the sysroot, we want to
2153 // prefer libraries installed in the parent prefix of the GCC installation.
2154 // It is important to *not* use these paths when the GCC installation is
Gabor Greif241cbe42012-04-18 10:59:08 +00002155 // outside of the system root as that can pick up unintended libraries.
Chandler Carruth9f314372012-04-06 16:32:06 +00002156 // This usually happens when there is an external cross compiler on the
2157 // host system, and a more minimal sysroot available that is the target of
2158 // the cross.
2159 if (StringRef(LibPath).startswith(SysRoot)) {
2160 addPathIfExists(LibPath + "/../" + GCCTriple.str() + "/lib/../" + Multilib,
2161 Paths);
2162 addPathIfExists(LibPath + "/" + MultiarchTriple, Paths);
2163 addPathIfExists(LibPath + "/../" + Multilib, Paths);
2164 }
Evgeniy Stepanov1d01afe2012-09-03 09:05:50 +00002165 // On Android, libraries in the parent prefix of the GCC installation are
2166 // preferred to the ones under sysroot.
2167 if (IsAndroid) {
2168 addPathIfExists(LibPath + "/../" + GCCTriple.str() + "/lib", Paths);
2169 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00002170 }
Chandler Carruthd1f73062011-11-06 23:09:05 +00002171 addPathIfExists(SysRoot + "/lib/" + MultiarchTriple, Paths);
2172 addPathIfExists(SysRoot + "/lib/../" + Multilib, Paths);
2173 addPathIfExists(SysRoot + "/usr/lib/" + MultiarchTriple, Paths);
2174 addPathIfExists(SysRoot + "/usr/lib/../" + Multilib, Paths);
2175
2176 // Try walking via the GCC triple path in case of multiarch GCC
2177 // installations with strange symlinks.
2178 if (GCCInstallation.isValid())
Chandler Carruthfa5be912012-01-24 19:28:29 +00002179 addPathIfExists(SysRoot + "/usr/lib/" + GCCInstallation.getTriple().str() +
Chandler Carruthd1f73062011-11-06 23:09:05 +00002180 "/../../" + Multilib, Paths);
Rafael Espindolac7409a02011-06-03 15:39:42 +00002181
Chandler Carruth7a09d012011-10-16 10:54:30 +00002182 // Add the non-multilib suffixed paths (if potentially different).
Chandler Carruth048e6492011-10-03 18:16:54 +00002183 if (GCCInstallation.isValid()) {
2184 const std::string &LibPath = GCCInstallation.getParentLibPath();
Chandler Carruthfa5be912012-01-24 19:28:29 +00002185 const llvm::Triple &GCCTriple = GCCInstallation.getTriple();
Chandler Carruth1c6f04a2012-01-25 07:21:38 +00002186 if (!GCCInstallation.getMultiarchSuffix().empty())
Chandler Carruth048e6492011-10-03 18:16:54 +00002187 addPathIfExists(GCCInstallation.getInstallPath(), Paths);
Chandler Carruth9f314372012-04-06 16:32:06 +00002188
2189 if (StringRef(LibPath).startswith(SysRoot)) {
2190 addPathIfExists(LibPath + "/../" + GCCTriple.str() + "/lib", Paths);
2191 addPathIfExists(LibPath, Paths);
2192 }
Chandler Carruthd2deee12011-10-03 05:28:29 +00002193 }
Chandler Carruthfde8d142011-10-03 06:41:08 +00002194 addPathIfExists(SysRoot + "/lib", Paths);
2195 addPathIfExists(SysRoot + "/usr/lib", Paths);
Rafael Espindolac1da9812010-11-07 20:14:31 +00002196}
2197
2198bool Linux::HasNativeLLVMSupport() const {
2199 return true;
Eli Friedman6b3454a2009-05-26 07:52:18 +00002200}
2201
Daniel Dunbarac0659a2011-03-18 20:14:00 +00002202Tool &Linux::SelectTool(const Compilation &C, const JobAction &JA,
2203 const ActionList &Inputs) const {
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00002204 Action::ActionClass Key;
2205 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
2206 Key = Action::AnalyzeJobClass;
2207 else
2208 Key = JA.getKind();
2209
Rafael Espindoladda5b922010-11-07 23:13:01 +00002210 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
2211 options::OPT_no_integrated_as,
2212 IsIntegratedAssemblerDefault());
2213
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00002214 Tool *&T = Tools[Key];
2215 if (!T) {
2216 switch (Key) {
2217 case Action::AssembleJobClass:
Rafael Espindoladda5b922010-11-07 23:13:01 +00002218 if (UseIntegratedAs)
2219 T = new tools::ClangAs(*this);
2220 else
2221 T = new tools::linuxtools::Assemble(*this);
2222 break;
Rafael Espindolac1da9812010-11-07 20:14:31 +00002223 case Action::LinkJobClass:
2224 T = new tools::linuxtools::Link(*this); break;
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00002225 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00002226 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00002227 }
2228 }
2229
2230 return *T;
2231}
2232
Rafael Espindola8af669f2012-06-19 01:26:10 +00002233void Linux::addClangTargetOptions(ArgStringList &CC1Args) const {
2234 const Generic_GCC::GCCVersion &V = GCCInstallation.getVersion();
2235 if (V >= Generic_GCC::GCCVersion::Parse("4.7.0"))
2236 CC1Args.push_back("-fuse-init-array");
2237}
2238
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002239void Linux::AddClangSystemIncludeArgs(const ArgList &DriverArgs,
2240 ArgStringList &CC1Args) const {
2241 const Driver &D = getDriver();
2242
2243 if (DriverArgs.hasArg(options::OPT_nostdinc))
2244 return;
2245
2246 if (!DriverArgs.hasArg(options::OPT_nostdlibinc))
2247 addSystemInclude(DriverArgs, CC1Args, D.SysRoot + "/usr/local/include");
2248
2249 if (!DriverArgs.hasArg(options::OPT_nobuiltininc)) {
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002250 llvm::sys::Path P(D.ResourceDir);
2251 P.appendComponent("include");
Chandler Carruth07643082011-11-07 09:17:31 +00002252 addSystemInclude(DriverArgs, CC1Args, P.str());
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002253 }
2254
2255 if (DriverArgs.hasArg(options::OPT_nostdlibinc))
2256 return;
2257
2258 // Check for configure-time C include directories.
2259 StringRef CIncludeDirs(C_INCLUDE_DIRS);
2260 if (CIncludeDirs != "") {
2261 SmallVector<StringRef, 5> dirs;
2262 CIncludeDirs.split(dirs, ":");
2263 for (SmallVectorImpl<StringRef>::iterator I = dirs.begin(), E = dirs.end();
2264 I != E; ++I) {
2265 StringRef Prefix = llvm::sys::path::is_absolute(*I) ? D.SysRoot : "";
2266 addExternCSystemInclude(DriverArgs, CC1Args, Prefix + *I);
2267 }
2268 return;
2269 }
2270
2271 // Lacking those, try to detect the correct set of system includes for the
2272 // target triple.
2273
Chandler Carrutha4630892011-11-06 08:21:07 +00002274 // Implement generic Debian multiarch support.
2275 const StringRef X86_64MultiarchIncludeDirs[] = {
2276 "/usr/include/x86_64-linux-gnu",
2277
2278 // FIXME: These are older forms of multiarch. It's not clear that they're
2279 // in use in any released version of Debian, so we should consider
2280 // removing them.
2281 "/usr/include/i686-linux-gnu/64",
2282 "/usr/include/i486-linux-gnu/64"
2283 };
2284 const StringRef X86MultiarchIncludeDirs[] = {
2285 "/usr/include/i386-linux-gnu",
2286
2287 // FIXME: These are older forms of multiarch. It's not clear that they're
2288 // in use in any released version of Debian, so we should consider
2289 // removing them.
2290 "/usr/include/x86_64-linux-gnu/32",
2291 "/usr/include/i686-linux-gnu",
2292 "/usr/include/i486-linux-gnu"
2293 };
2294 const StringRef ARMMultiarchIncludeDirs[] = {
2295 "/usr/include/arm-linux-gnueabi"
2296 };
Jiangning Liuff104a12012-07-31 08:06:29 +00002297 const StringRef ARMHFMultiarchIncludeDirs[] = {
2298 "/usr/include/arm-linux-gnueabihf"
2299 };
Eli Friedmand7df7852011-11-11 03:05:19 +00002300 const StringRef MIPSMultiarchIncludeDirs[] = {
2301 "/usr/include/mips-linux-gnu"
2302 };
2303 const StringRef MIPSELMultiarchIncludeDirs[] = {
2304 "/usr/include/mipsel-linux-gnu"
2305 };
Chandler Carruth079d2bb2012-02-26 09:21:43 +00002306 const StringRef PPCMultiarchIncludeDirs[] = {
2307 "/usr/include/powerpc-linux-gnu"
2308 };
2309 const StringRef PPC64MultiarchIncludeDirs[] = {
2310 "/usr/include/powerpc64-linux-gnu"
2311 };
Chandler Carrutha4630892011-11-06 08:21:07 +00002312 ArrayRef<StringRef> MultiarchIncludeDirs;
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002313 if (getTriple().getArch() == llvm::Triple::x86_64) {
Chandler Carrutha4630892011-11-06 08:21:07 +00002314 MultiarchIncludeDirs = X86_64MultiarchIncludeDirs;
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002315 } else if (getTriple().getArch() == llvm::Triple::x86) {
Chandler Carrutha4630892011-11-06 08:21:07 +00002316 MultiarchIncludeDirs = X86MultiarchIncludeDirs;
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002317 } else if (getTriple().getArch() == llvm::Triple::arm) {
Jiangning Liuff104a12012-07-31 08:06:29 +00002318 if (getTriple().getEnvironment() == llvm::Triple::GNUEABIHF)
2319 MultiarchIncludeDirs = ARMHFMultiarchIncludeDirs;
2320 else
2321 MultiarchIncludeDirs = ARMMultiarchIncludeDirs;
Eli Friedmand7df7852011-11-11 03:05:19 +00002322 } else if (getTriple().getArch() == llvm::Triple::mips) {
2323 MultiarchIncludeDirs = MIPSMultiarchIncludeDirs;
2324 } else if (getTriple().getArch() == llvm::Triple::mipsel) {
2325 MultiarchIncludeDirs = MIPSELMultiarchIncludeDirs;
Chandler Carruth079d2bb2012-02-26 09:21:43 +00002326 } else if (getTriple().getArch() == llvm::Triple::ppc) {
2327 MultiarchIncludeDirs = PPCMultiarchIncludeDirs;
2328 } else if (getTriple().getArch() == llvm::Triple::ppc64) {
2329 MultiarchIncludeDirs = PPC64MultiarchIncludeDirs;
Chandler Carrutha4630892011-11-06 08:21:07 +00002330 }
2331 for (ArrayRef<StringRef>::iterator I = MultiarchIncludeDirs.begin(),
2332 E = MultiarchIncludeDirs.end();
2333 I != E; ++I) {
Chandler Carruthd936d9d2011-11-09 03:46:20 +00002334 if (llvm::sys::fs::exists(D.SysRoot + *I)) {
Chandler Carrutha4630892011-11-06 08:21:07 +00002335 addExternCSystemInclude(DriverArgs, CC1Args, D.SysRoot + *I);
2336 break;
2337 }
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002338 }
2339
2340 if (getTriple().getOS() == llvm::Triple::RTEMS)
2341 return;
2342
Chandler Carruthc44bc2d2011-11-08 17:19:47 +00002343 // Add an include of '/include' directly. This isn't provided by default by
2344 // system GCCs, but is often used with cross-compiling GCCs, and harmless to
2345 // add even when Clang is acting as-if it were a system compiler.
2346 addExternCSystemInclude(DriverArgs, CC1Args, D.SysRoot + "/include");
2347
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002348 addExternCSystemInclude(DriverArgs, CC1Args, D.SysRoot + "/usr/include");
2349}
2350
Chandler Carruth79cbbdc2011-12-17 23:10:01 +00002351/// \brief Helper to add the thre variant paths for a libstdc++ installation.
2352/*static*/ bool Linux::addLibStdCXXIncludePaths(Twine Base, Twine TargetArchDir,
2353 const ArgList &DriverArgs,
2354 ArgStringList &CC1Args) {
Chandler Carruthabaa1d72011-11-06 10:31:01 +00002355 if (!llvm::sys::fs::exists(Base))
2356 return false;
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002357 addSystemInclude(DriverArgs, CC1Args, Base);
Chandler Carruthabaa1d72011-11-06 10:31:01 +00002358 addSystemInclude(DriverArgs, CC1Args, Base + "/" + TargetArchDir);
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002359 addSystemInclude(DriverArgs, CC1Args, Base + "/backward");
Chandler Carruthabaa1d72011-11-06 10:31:01 +00002360 return true;
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002361}
2362
2363void Linux::AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
2364 ArgStringList &CC1Args) const {
2365 if (DriverArgs.hasArg(options::OPT_nostdlibinc) ||
2366 DriverArgs.hasArg(options::OPT_nostdincxx))
2367 return;
2368
Chandler Carrutheb35ffc2011-11-07 09:01:17 +00002369 // Check if libc++ has been enabled and provide its include paths if so.
2370 if (GetCXXStdlibType(DriverArgs) == ToolChain::CST_Libcxx) {
2371 // libc++ is always installed at a fixed path on Linux currently.
2372 addSystemInclude(DriverArgs, CC1Args,
2373 getDriver().SysRoot + "/usr/include/c++/v1");
2374 return;
2375 }
2376
Chandler Carruthfc52f752012-01-25 08:04:13 +00002377 // We need a detected GCC installation on Linux to provide libstdc++'s
2378 // headers. We handled the libc++ case above.
2379 if (!GCCInstallation.isValid())
2380 return;
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002381
Chandler Carruthabaa1d72011-11-06 10:31:01 +00002382 // By default, look for the C++ headers in an include directory adjacent to
2383 // the lib directory of the GCC installation. Note that this is expect to be
2384 // equivalent to '/usr/include/c++/X.Y' in almost all cases.
2385 StringRef LibDir = GCCInstallation.getParentLibPath();
2386 StringRef InstallDir = GCCInstallation.getInstallPath();
Rafael Espindola8af669f2012-06-19 01:26:10 +00002387 StringRef Version = GCCInstallation.getVersion().Text;
Evgeniy Stepanov1d01afe2012-09-03 09:05:50 +00002388 StringRef TripleStr = GCCInstallation.getTriple().str();
2389
2390 const std::string IncludePathCandidates[] = {
2391 LibDir.str() + "/../include/c++/" + Version.str(),
Chandler Carruthabaa1d72011-11-06 10:31:01 +00002392 // Gentoo is weird and places its headers inside the GCC install, so if the
2393 // first attempt to find the headers fails, try this pattern.
Evgeniy Stepanov1d01afe2012-09-03 09:05:50 +00002394 InstallDir.str() + "/include/g++-v4",
2395 // Android standalone toolchain has C++ headers in yet another place.
2396 LibDir.str() + "/../" + TripleStr.str() + "/include/c++/" + Version.str(),
Hal Finkel02014b42012-09-18 22:25:07 +00002397 // Freescale SDK C++ headers are directly in <sysroot>/usr/include/c++,
2398 // without a subdirectory corresponding to the gcc version.
2399 LibDir.str() + "/../include/c++",
Evgeniy Stepanov1d01afe2012-09-03 09:05:50 +00002400 };
2401
2402 for (unsigned i = 0; i < llvm::array_lengthof(IncludePathCandidates); ++i) {
2403 if (addLibStdCXXIncludePaths(IncludePathCandidates[i], (TripleStr +
2404 GCCInstallation.getMultiarchSuffix()),
2405 DriverArgs, CC1Args))
2406 break;
Chandler Carruthabaa1d72011-11-06 10:31:01 +00002407 }
Chandler Carruth7d7e9f92011-11-05 20:17:13 +00002408}
2409
Daniel Dunbar11e1b402009-05-02 18:28:39 +00002410/// DragonFly - DragonFly tool chain which can call as(1) and ld(1) directly.
2411
Rafael Espindola0e659592012-02-19 01:38:32 +00002412DragonFly::DragonFly(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
2413 : Generic_ELF(D, Triple, Args) {
Daniel Dunbar11e1b402009-05-02 18:28:39 +00002414
2415 // Path mangling to find libexec
Daniel Dunbaredf29b02010-08-01 22:29:51 +00002416 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +00002417 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +00002418 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbar11e1b402009-05-02 18:28:39 +00002419
Daniel Dunbaree788e72009-12-21 18:54:17 +00002420 getFilePaths().push_back(getDriver().Dir + "/../lib");
Daniel Dunbar11e1b402009-05-02 18:28:39 +00002421 getFilePaths().push_back("/usr/lib");
2422 getFilePaths().push_back("/usr/lib/gcc41");
2423}
2424
Daniel Dunbarac0659a2011-03-18 20:14:00 +00002425Tool &DragonFly::SelectTool(const Compilation &C, const JobAction &JA,
2426 const ActionList &Inputs) const {
Nick Lewycky5bab9ae2012-11-15 05:36:36 +00002427 Action::ActionClass Key;
2428 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
2429 Key = Action::AnalyzeJobClass;
2430 else
2431 Key = JA.getKind();
Daniel Dunbar11e1b402009-05-02 18:28:39 +00002432
2433 Tool *&T = Tools[Key];
2434 if (!T) {
2435 switch (Key) {
2436 case Action::AssembleJobClass:
2437 T = new tools::dragonfly::Assemble(*this); break;
2438 case Action::LinkJobClass:
2439 T = new tools::dragonfly::Link(*this); break;
2440 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00002441 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Daniel Dunbar11e1b402009-05-02 18:28:39 +00002442 }
2443 }
2444
2445 return *T;
2446}