blob: 91d96d9aae9a0659cb397ddcc06b6c40f7301a48 [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 Dunbarc50b00d2009-03-23 16:15:50 +000017#include "clang/Driver/HostInfo.h"
Daniel Dunbar27e738d2009-11-19 00:15:11 +000018#include "clang/Driver/OptTable.h"
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +000019#include "clang/Driver/Option.h"
Daniel Dunbar265e9ef2009-11-19 04:25:22 +000020#include "clang/Driver/Options.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"
Daniel Dunbar84ec96c2009-09-09 22:33:15 +000025#include "llvm/Support/ErrorHandling.h"
Michael J. Spencer32bef4e2011-01-10 02:34:13 +000026#include "llvm/Support/FileSystem.h"
Rafael Espindolac1da9812010-11-07 20:14:31 +000027#include "llvm/Support/MemoryBuffer.h"
Daniel Dunbarec069ed2009-03-25 06:58:31 +000028#include "llvm/Support/raw_ostream.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000029#include "llvm/Support/Path.h"
Michael J. Spencer3a321e22010-12-09 17:36:38 +000030#include "llvm/Support/system_error.h"
Daniel Dunbarc50b00d2009-03-23 16:15:50 +000031
Daniel Dunbarf36a06a2009-04-10 21:00:07 +000032#include <cstdlib> // ::getenv
33
Daniel Dunbar39176082009-03-20 00:20:03 +000034using namespace clang::driver;
35using namespace clang::driver::toolchains;
36
Daniel Dunbarf3955282009-09-04 18:34:51 +000037/// Darwin - Darwin tool chain for i386 and x86_64.
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +000038
Daniel Dunbar25b58eb2010-08-02 05:44:07 +000039Darwin::Darwin(const HostInfo &Host, const llvm::Triple& Triple)
Daniel Dunbarcc8e1892010-01-27 00:56:44 +000040 : ToolChain(Host, Triple), TargetInitialized(false)
Daniel Dunbar1d4612b2009-09-18 08:15:13 +000041{
Daniel Dunbar25b58eb2010-08-02 05:44:07 +000042 // Compute the initial Darwin version based on the host.
43 bool HadExtra;
44 std::string OSName = Triple.getOSName();
Daniel Dunbar34f9e292011-02-25 21:20:15 +000045 if (!Driver::GetReleaseVersion(&OSName.c_str()[6],
Daniel Dunbar25b58eb2010-08-02 05:44:07 +000046 DarwinVersion[0], DarwinVersion[1],
47 DarwinVersion[2], HadExtra))
48 getDriver().Diag(clang::diag::err_drv_invalid_darwin_version) << OSName;
49
Daniel Dunbar02633b52009-03-26 16:23:12 +000050 llvm::raw_string_ostream(MacosxVersionMin)
Daniel Dunbar25b58eb2010-08-02 05:44:07 +000051 << "10." << std::max(0, (int)DarwinVersion[0] - 4) << '.'
52 << DarwinVersion[1];
Daniel Dunbar1d4612b2009-09-18 08:15:13 +000053}
54
Daniel Dunbar41800112010-08-02 05:43:56 +000055types::ID Darwin::LookupTypeForExtension(const char *Ext) const {
56 types::ID Ty = types::lookupTypeForExtension(Ext);
57
58 // Darwin always preprocesses assembly files (unless -x is used explicitly).
59 if (Ty == types::TY_PP_Asm)
60 return types::TY_Asm;
61
62 return Ty;
63}
64
Daniel Dunbarb993f5d2010-09-17 00:24:52 +000065bool Darwin::HasNativeLLVMSupport() const {
66 return true;
67}
68
Daniel Dunbareeff4062010-01-22 02:04:58 +000069// FIXME: Can we tablegen this?
70static const char *GetArmArchForMArch(llvm::StringRef Value) {
71 if (Value == "armv6k")
72 return "armv6";
73
74 if (Value == "armv5tej")
75 return "armv5";
76
77 if (Value == "xscale")
78 return "xscale";
79
80 if (Value == "armv4t")
81 return "armv4t";
82
83 if (Value == "armv7" || Value == "armv7-a" || Value == "armv7-r" ||
84 Value == "armv7-m" || Value == "armv7a" || Value == "armv7r" ||
85 Value == "armv7m")
86 return "armv7";
87
88 return 0;
89}
90
91// FIXME: Can we tablegen this?
92static const char *GetArmArchForMCpu(llvm::StringRef Value) {
93 if (Value == "arm10tdmi" || Value == "arm1020t" || Value == "arm9e" ||
94 Value == "arm946e-s" || Value == "arm966e-s" ||
95 Value == "arm968e-s" || Value == "arm10e" ||
96 Value == "arm1020e" || Value == "arm1022e" || Value == "arm926ej-s" ||
97 Value == "arm1026ej-s")
98 return "armv5";
99
100 if (Value == "xscale")
101 return "xscale";
102
103 if (Value == "arm1136j-s" || Value == "arm1136jf-s" ||
104 Value == "arm1176jz-s" || Value == "arm1176jzf-s")
105 return "armv6";
106
107 if (Value == "cortex-a8" || Value == "cortex-r4" || Value == "cortex-m3")
108 return "armv7";
109
110 return 0;
111}
112
113llvm::StringRef Darwin::getDarwinArchName(const ArgList &Args) const {
114 switch (getTriple().getArch()) {
115 default:
116 return getArchName();
Douglas Gregorf0594d82011-03-06 19:11:49 +0000117
118 case llvm::Triple::thumb:
Daniel Dunbareeff4062010-01-22 02:04:58 +0000119 case llvm::Triple::arm: {
120 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ))
121 if (const char *Arch = GetArmArchForMArch(A->getValue(Args)))
122 return Arch;
123
124 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
125 if (const char *Arch = GetArmArchForMCpu(A->getValue(Args)))
126 return Arch;
127
128 return "arm";
129 }
130 }
131}
132
Daniel Dunbarf3955282009-09-04 18:34:51 +0000133Darwin::~Darwin() {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000134 // Free tool implementations.
135 for (llvm::DenseMap<unsigned, Tool*>::iterator
136 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
137 delete it->second;
138}
139
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000140std::string Darwin::ComputeEffectiveClangTriple(const ArgList &Args) const {
141 llvm::Triple Triple(ComputeLLVMTriple(Args));
142
143 // If the target isn't initialized (e.g., an unknown Darwin platform, return
144 // the default triple).
145 if (!isTargetInitialized())
146 return Triple.getTriple();
147
148 unsigned Version[3];
149 getTargetVersion(Version);
150
151 // Mangle the target version into the OS triple component. For historical
152 // reasons that make little sense, the version passed here is the "darwin"
153 // version, which drops the 10 and offsets by 4. See inverse code when
154 // setting the OS version preprocessor define.
155 if (!isTargetIPhoneOS()) {
156 Version[0] = Version[1] + 4;
157 Version[1] = Version[2];
158 Version[2] = 0;
159 } else {
160 // Use the environment to communicate that we are targetting iPhoneOS.
161 Triple.setEnvironmentName("iphoneos");
162 }
163
164 llvm::SmallString<16> Str;
165 llvm::raw_svector_ostream(Str) << "darwin" << Version[0]
166 << "." << Version[1] << "." << Version[2];
167 Triple.setOSName(Str.str());
168
169 return Triple.getTriple();
170}
171
Daniel Dunbarf3955282009-09-04 18:34:51 +0000172Tool &Darwin::SelectTool(const Compilation &C, const JobAction &JA) const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000173 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000174 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000175 Key = Action::AnalyzeJobClass;
176 else
177 Key = JA.getKind();
178
Daniel Dunbar0f602de2010-05-20 21:48:38 +0000179 // FIXME: This doesn't belong here, but ideally we will support static soon
180 // anyway.
181 bool HasStatic = (C.getArgs().hasArg(options::OPT_mkernel) ||
182 C.getArgs().hasArg(options::OPT_static) ||
183 C.getArgs().hasArg(options::OPT_fapple_kext));
184 bool IsIADefault = IsIntegratedAssemblerDefault() && !HasStatic;
185 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
186 options::OPT_no_integrated_as,
187 IsIADefault);
188
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000189 Tool *&T = Tools[Key];
190 if (!T) {
191 switch (Key) {
192 case Action::InputClass:
193 case Action::BindArchClass:
194 assert(0 && "Invalid tool kind.");
195 case Action::PreprocessJobClass:
Daniel Dunbar9120f172009-03-29 22:27:40 +0000196 T = new tools::darwin::Preprocess(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000197 case Action::AnalyzeJobClass:
198 T = new tools::Clang(*this); break;
Daniel Dunbar9120f172009-03-29 22:27:40 +0000199 case Action::PrecompileJobClass:
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000200 case Action::CompileJobClass:
Daniel Dunbar9120f172009-03-29 22:27:40 +0000201 T = new tools::darwin::Compile(*this); break;
Daniel Dunbar0f602de2010-05-20 21:48:38 +0000202 case Action::AssembleJobClass: {
203 if (UseIntegratedAs)
204 T = new tools::ClangAs(*this);
205 else
206 T = new tools::darwin::Assemble(*this);
207 break;
208 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000209 case Action::LinkJobClass:
Daniel Dunbar8f289622009-09-04 17:39:02 +0000210 T = new tools::darwin::Link(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000211 case Action::LipoJobClass:
212 T = new tools::darwin::Lipo(*this); break;
Daniel Dunbar6e0f2542010-06-04 18:28:36 +0000213 case Action::DsymutilJobClass:
214 T = new tools::darwin::Dsymutil(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000215 }
216 }
217
218 return *T;
219}
220
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000221
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000222DarwinClang::DarwinClang(const HostInfo &Host, const llvm::Triple& Triple)
223 : Darwin(Host, Triple)
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000224{
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000225 getProgramPaths().push_back(getDriver().getInstalledDir());
226 if (getDriver().getInstalledDir() != getDriver().Dir)
227 getProgramPaths().push_back(getDriver().Dir);
228
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000229 // We expect 'as', 'ld', etc. to be adjacent to our install dir.
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000230 getProgramPaths().push_back(getDriver().getInstalledDir());
231 if (getDriver().getInstalledDir() != getDriver().Dir)
232 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000233
234 // For fallback, we need to know how to find the GCC cc1 executables, so we
235 // also add the GCC libexec paths. This is legiy code that can be removed once
236 // fallback is no longer useful.
237 std::string ToolChainDir = "i686-apple-darwin";
238 ToolChainDir += llvm::utostr(DarwinVersion[0]);
239 ToolChainDir += "/4.2.1";
240
241 std::string Path = getDriver().Dir;
242 Path += "/../libexec/gcc/";
243 Path += ToolChainDir;
244 getProgramPaths().push_back(Path);
245
246 Path = "/usr/libexec/gcc/";
247 Path += ToolChainDir;
248 getProgramPaths().push_back(Path);
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000249}
250
251void DarwinClang::AddLinkSearchPathArgs(const ArgList &Args,
252 ArgStringList &CmdArgs) const {
253 // The Clang toolchain uses explicit paths for internal libraries.
Daniel Dunbar424b6612010-06-30 23:56:13 +0000254
255 // Unfortunately, we still might depend on a few of the libraries that are
256 // only available in the gcc library directory (in particular
257 // libstdc++.dylib). For now, hardcode the path to the known install location.
258 llvm::sys::Path P(getDriver().Dir);
259 P.eraseComponent(); // .../usr/bin -> ../usr
260 P.appendComponent("lib");
261 P.appendComponent("gcc");
262 switch (getTriple().getArch()) {
263 default:
264 assert(0 && "Invalid Darwin arch!");
265 case llvm::Triple::x86:
266 case llvm::Triple::x86_64:
267 P.appendComponent("i686-apple-darwin10");
268 break;
269 case llvm::Triple::arm:
270 case llvm::Triple::thumb:
271 P.appendComponent("arm-apple-darwin10");
272 break;
273 case llvm::Triple::ppc:
274 case llvm::Triple::ppc64:
275 P.appendComponent("powerpc-apple-darwin10");
276 break;
277 }
278 P.appendComponent("4.2.1");
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000279
280 // Determine the arch specific GCC subdirectory.
281 const char *ArchSpecificDir = 0;
282 switch (getTriple().getArch()) {
283 default:
284 break;
285 case llvm::Triple::arm:
Daniel Dunbar3a0e3922010-08-26 00:55:52 +0000286 case llvm::Triple::thumb: {
287 std::string Triple = ComputeLLVMTriple(Args);
288 llvm::StringRef TripleStr = Triple;
289 if (TripleStr.startswith("armv5") || TripleStr.startswith("thumbv5"))
290 ArchSpecificDir = "v5";
291 else if (TripleStr.startswith("armv6") || TripleStr.startswith("thumbv6"))
292 ArchSpecificDir = "v6";
293 else if (TripleStr.startswith("armv7") || TripleStr.startswith("thumbv7"))
294 ArchSpecificDir = "v7";
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000295 break;
Daniel Dunbar3a0e3922010-08-26 00:55:52 +0000296 }
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000297 case llvm::Triple::ppc64:
298 ArchSpecificDir = "ppc64";
299 break;
300 case llvm::Triple::x86_64:
301 ArchSpecificDir = "x86_64";
302 break;
303 }
304
305 if (ArchSpecificDir) {
306 P.appendComponent(ArchSpecificDir);
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000307 bool Exists;
308 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000309 CmdArgs.push_back(Args.MakeArgString("-L" + P.str()));
310 P.eraseComponent();
311 }
312
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000313 bool Exists;
314 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Daniel Dunbar424b6612010-06-30 23:56:13 +0000315 CmdArgs.push_back(Args.MakeArgString("-L" + P.str()));
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000316}
317
318void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args,
319 ArgStringList &CmdArgs) const {
Daniel Dunbareec99102010-01-22 03:38:14 +0000320 // Darwin doesn't support real static executables, don't link any runtime
321 // libraries with -static.
322 if (Args.hasArg(options::OPT_static))
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000323 return;
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000324
325 // Reject -static-libgcc for now, we can deal with this when and if someone
326 // cares. This is useful in situations where someone wants to statically link
327 // something like libstdc++, and needs its runtime support routines.
328 if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000329 getDriver().Diag(clang::diag::err_drv_unsupported_opt)
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000330 << A->getAsString(Args);
331 return;
332 }
333
Daniel Dunbareec99102010-01-22 03:38:14 +0000334 // Otherwise link libSystem, then the dynamic runtime library, and finally any
335 // target specific static runtime library.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000336 CmdArgs.push_back("-lSystem");
Daniel Dunbareec99102010-01-22 03:38:14 +0000337
338 // Select the dynamic runtime library and the target specific static library.
339 const char *DarwinStaticLib = 0;
Daniel Dunbar251ca6c2010-01-27 00:56:37 +0000340 if (isTargetIPhoneOS()) {
Daniel Dunbareec99102010-01-22 03:38:14 +0000341 CmdArgs.push_back("-lgcc_s.1");
342
343 // We may need some static functions for armv6/thumb which are required to
344 // be in the same linkage unit as their caller.
345 if (getDarwinArchName(Args) == "armv6")
346 DarwinStaticLib = "libclang_rt.armv6.a";
347 } else {
Daniel Dunbareec99102010-01-22 03:38:14 +0000348 // The dynamic runtime library was merged with libSystem for 10.6 and
349 // beyond; only 10.4 and 10.5 need an additional runtime library.
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000350 if (isMacosxVersionLT(10, 5))
Daniel Dunbareec99102010-01-22 03:38:14 +0000351 CmdArgs.push_back("-lgcc_s.10.4");
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000352 else if (isMacosxVersionLT(10, 6))
Daniel Dunbareec99102010-01-22 03:38:14 +0000353 CmdArgs.push_back("-lgcc_s.10.5");
354
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000355 // For OS X, we thought we would only need a static runtime library when
356 // targetting 10.4, to provide versions of the static functions which were
357 // omitted from 10.4.dylib.
358 //
359 // Unfortunately, that turned out to not be true, because Darwin system
360 // headers can still use eprintf on i386, and it is not exported from
361 // libSystem. Therefore, we still must provide a runtime library just for
362 // the tiny tiny handful of projects that *might* use that symbol.
363 if (isMacosxVersionLT(10, 5)) {
Daniel Dunbareec99102010-01-22 03:38:14 +0000364 DarwinStaticLib = "libclang_rt.10.4.a";
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000365 } else {
366 if (getTriple().getArch() == llvm::Triple::x86)
367 DarwinStaticLib = "libclang_rt.eprintf.a";
368 }
Daniel Dunbareec99102010-01-22 03:38:14 +0000369 }
370
371 /// Add the target specific static library, if needed.
372 if (DarwinStaticLib) {
373 llvm::sys::Path P(getDriver().ResourceDir);
374 P.appendComponent("lib");
375 P.appendComponent("darwin");
376 P.appendComponent(DarwinStaticLib);
377
378 // For now, allow missing resource libraries to support developers who may
379 // not have compiler-rt checked out or integrated into their build.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000380 bool Exists;
381 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Daniel Dunbareec99102010-01-22 03:38:14 +0000382 CmdArgs.push_back(Args.MakeArgString(P.str()));
383 }
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000384}
385
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000386void Darwin::AddDeploymentTarget(DerivedArgList &Args) const {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000387 const OptTable &Opts = getDriver().getOpts();
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000388
Daniel Dunbar26031372010-01-27 00:56:25 +0000389 Arg *OSXVersion = Args.getLastArg(options::OPT_mmacosx_version_min_EQ);
390 Arg *iPhoneVersion = Args.getLastArg(options::OPT_miphoneos_version_min_EQ);
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000391 if (OSXVersion && iPhoneVersion) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000392 getDriver().Diag(clang::diag::err_drv_argument_not_allowed_with)
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000393 << OSXVersion->getAsString(Args)
Mike Stump1eb44332009-09-09 15:08:12 +0000394 << iPhoneVersion->getAsString(Args);
Daniel Dunbar26031372010-01-27 00:56:25 +0000395 iPhoneVersion = 0;
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000396 } else if (!OSXVersion && !iPhoneVersion) {
Daniel Dunbar816bc312010-01-26 01:45:19 +0000397 // If neither OS X nor iPhoneOS targets were specified, check for
398 // environment defines.
399 const char *OSXTarget = ::getenv("MACOSX_DEPLOYMENT_TARGET");
400 const char *iPhoneOSTarget = ::getenv("IPHONEOS_DEPLOYMENT_TARGET");
Daniel Dunbarf36a06a2009-04-10 21:00:07 +0000401
Daniel Dunbar816bc312010-01-26 01:45:19 +0000402 // Ignore empty strings.
403 if (OSXTarget && OSXTarget[0] == '\0')
404 OSXTarget = 0;
405 if (iPhoneOSTarget && iPhoneOSTarget[0] == '\0')
406 iPhoneOSTarget = 0;
407
Daniel Dunbar39053672010-02-02 17:31:12 +0000408 // Diagnose conflicting deployment targets, and choose default platform
409 // based on the tool chain.
410 //
411 // FIXME: Don't hardcode default here.
412 if (OSXTarget && iPhoneOSTarget) {
413 // FIXME: We should see if we can get away with warning or erroring on
414 // this. Perhaps put under -pedantic?
415 if (getTriple().getArch() == llvm::Triple::arm ||
416 getTriple().getArch() == llvm::Triple::thumb)
Daniel Dunbar84d1e6e2010-03-20 08:47:42 +0000417 OSXTarget = 0;
Daniel Dunbar39053672010-02-02 17:31:12 +0000418 else
Daniel Dunbar84d1e6e2010-03-20 08:47:42 +0000419 iPhoneOSTarget = 0;
Daniel Dunbar39053672010-02-02 17:31:12 +0000420 }
Daniel Dunbar1a3c1d92010-01-29 17:02:25 +0000421
Daniel Dunbar39053672010-02-02 17:31:12 +0000422 if (OSXTarget) {
Daniel Dunbar30392de2009-09-04 18:35:21 +0000423 const Option *O = Opts.getOption(options::OPT_mmacosx_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000424 OSXVersion = Args.MakeJoinedArg(0, O, OSXTarget);
425 Args.append(OSXVersion);
Daniel Dunbar816bc312010-01-26 01:45:19 +0000426 } else if (iPhoneOSTarget) {
Daniel Dunbar30392de2009-09-04 18:35:21 +0000427 const Option *O = Opts.getOption(options::OPT_miphoneos_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000428 iPhoneVersion = Args.MakeJoinedArg(0, O, iPhoneOSTarget);
429 Args.append(iPhoneVersion);
Daniel Dunbar816bc312010-01-26 01:45:19 +0000430 } else {
Daniel Dunbar2bb38d02010-07-15 16:18:06 +0000431 // Otherwise, assume we are targeting OS X.
432 const Option *O = Opts.getOption(options::OPT_mmacosx_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000433 OSXVersion = Args.MakeJoinedArg(0, O, MacosxVersionMin);
434 Args.append(OSXVersion);
Daniel Dunbar30392de2009-09-04 18:35:21 +0000435 }
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000436 }
Mike Stump1eb44332009-09-09 15:08:12 +0000437
Daniel Dunbar26031372010-01-27 00:56:25 +0000438 // Set the tool chain target information.
439 unsigned Major, Minor, Micro;
440 bool HadExtra;
441 if (OSXVersion) {
442 assert(!iPhoneVersion && "Unknown target platform!");
443 if (!Driver::GetReleaseVersion(OSXVersion->getValue(Args), Major, Minor,
444 Micro, HadExtra) || HadExtra ||
445 Major != 10 || Minor >= 10 || Micro >= 10)
446 getDriver().Diag(clang::diag::err_drv_invalid_version_number)
447 << OSXVersion->getAsString(Args);
448 } else {
449 assert(iPhoneVersion && "Unknown target platform!");
450 if (!Driver::GetReleaseVersion(iPhoneVersion->getValue(Args), Major, Minor,
451 Micro, HadExtra) || HadExtra ||
452 Major >= 10 || Minor >= 100 || Micro >= 100)
453 getDriver().Diag(clang::diag::err_drv_invalid_version_number)
454 << iPhoneVersion->getAsString(Args);
455 }
456 setTarget(iPhoneVersion, Major, Minor, Micro);
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000457}
458
Daniel Dunbar132e35d2010-09-17 01:20:05 +0000459void DarwinClang::AddCXXStdlibLibArgs(const ArgList &Args,
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000460 ArgStringList &CmdArgs) const {
461 CXXStdlibType Type = GetCXXStdlibType(Args);
462
463 switch (Type) {
464 case ToolChain::CST_Libcxx:
465 CmdArgs.push_back("-lc++");
466 break;
467
468 case ToolChain::CST_Libstdcxx: {
469 // Unfortunately, -lstdc++ doesn't always exist in the standard search path;
470 // it was previously found in the gcc lib dir. However, for all the Darwin
471 // platforms we care about it was -lstdc++.6, so we search for that
472 // explicitly if we can't see an obvious -lstdc++ candidate.
473
474 // Check in the sysroot first.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000475 bool Exists;
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000476 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
477 llvm::sys::Path P(A->getValue(Args));
478 P.appendComponent("usr");
479 P.appendComponent("lib");
480 P.appendComponent("libstdc++.dylib");
481
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000482 if (llvm::sys::fs::exists(P.str(), Exists) || !Exists) {
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000483 P.eraseComponent();
484 P.appendComponent("libstdc++.6.dylib");
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000485 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists) {
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000486 CmdArgs.push_back(Args.MakeArgString(P.str()));
487 return;
488 }
489 }
490 }
491
492 // Otherwise, look in the root.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000493 if ((llvm::sys::fs::exists("/usr/lib/libstdc++.dylib", Exists) || !Exists)&&
494 (!llvm::sys::fs::exists("/usr/lib/libstdc++.6.dylib", Exists) && Exists)){
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000495 CmdArgs.push_back("/usr/lib/libstdc++.6.dylib");
496 return;
497 }
498
499 // Otherwise, let the linker search.
500 CmdArgs.push_back("-lstdc++");
501 break;
502 }
503 }
504}
505
Shantonu Sen7433fed2010-09-17 18:39:08 +0000506void DarwinClang::AddCCKextLibArgs(const ArgList &Args,
507 ArgStringList &CmdArgs) const {
508
509 // For Darwin platforms, use the compiler-rt-based support library
510 // instead of the gcc-provided one (which is also incidentally
511 // only present in the gcc lib dir, which makes it hard to find).
512
513 llvm::sys::Path P(getDriver().ResourceDir);
514 P.appendComponent("lib");
515 P.appendComponent("darwin");
516 P.appendComponent("libclang_rt.cc_kext.a");
517
518 // For now, allow missing resource libraries to support developers who may
519 // not have compiler-rt checked out or integrated into their build.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000520 bool Exists;
521 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Shantonu Sen7433fed2010-09-17 18:39:08 +0000522 CmdArgs.push_back(Args.MakeArgString(P.str()));
523}
524
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000525DerivedArgList *Darwin::TranslateArgs(const DerivedArgList &Args,
526 const char *BoundArch) const {
527 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
528 const OptTable &Opts = getDriver().getOpts();
529
530 // FIXME: We really want to get out of the tool chain level argument
531 // translation business, as it makes the driver functionality much
532 // more opaque. For now, we follow gcc closely solely for the
533 // purpose of easily achieving feature parity & testability. Once we
534 // have something that works, we should reevaluate each translation
535 // and try to push it down into tool specific logic.
Daniel Dunbar26031372010-01-27 00:56:25 +0000536
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000537 for (ArgList::const_iterator it = Args.begin(),
538 ie = Args.end(); it != ie; ++it) {
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000539 Arg *A = *it;
540
541 if (A->getOption().matches(options::OPT_Xarch__)) {
542 // FIXME: Canonicalize name.
543 if (getArchName() != A->getValue(Args, 0))
544 continue;
545
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000546 Arg *OriginalArg = A;
Daniel Dunbar0e100312010-06-14 21:23:08 +0000547 unsigned Index = Args.getBaseArgs().MakeIndex(A->getValue(Args, 1));
548 unsigned Prev = Index;
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000549 Arg *XarchArg = Opts.ParseOneArg(Args, Index);
Mike Stump1eb44332009-09-09 15:08:12 +0000550
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000551 // If the argument parsing failed or more than one argument was
552 // consumed, the -Xarch_ argument's parameter tried to consume
553 // extra arguments. Emit an error and ignore.
554 //
555 // We also want to disallow any options which would alter the
556 // driver behavior; that isn't going to work in our model. We
557 // use isDriverOption() as an approximation, although things
558 // like -O4 are going to slip through.
Mike Stump1eb44332009-09-09 15:08:12 +0000559 if (!XarchArg || Index > Prev + 1 ||
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000560 XarchArg->getOption().isDriverOption()) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000561 getDriver().Diag(clang::diag::err_drv_invalid_Xarch_argument)
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000562 << A->getAsString(Args);
563 continue;
564 }
565
Daniel Dunbar478edc22009-03-29 22:29:05 +0000566 XarchArg->setBaseArg(A);
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000567 A = XarchArg;
Daniel Dunbar0e100312010-06-14 21:23:08 +0000568
569 DAL->AddSynthesizedArg(A);
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000570
571 // Linker input arguments require custom handling. The problem is that we
572 // have already constructed the phase actions, so we can not treat them as
573 // "input arguments".
574 if (A->getOption().isLinkerInput()) {
575 // Convert the argument into individual Zlinker_input_args.
576 for (unsigned i = 0, e = A->getNumValues(); i != e; ++i) {
577 DAL->AddSeparateArg(OriginalArg,
578 Opts.getOption(options::OPT_Zlinker_input),
579 A->getValue(Args, i));
580
581 }
582 continue;
583 }
Mike Stump1eb44332009-09-09 15:08:12 +0000584 }
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000585
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000586 // Sob. These is strictly gcc compatible for the time being. Apple
587 // gcc translates options twice, which means that self-expanding
588 // options add duplicates.
Daniel Dunbar9e1f9822009-11-19 04:14:53 +0000589 switch ((options::ID) A->getOption().getID()) {
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000590 default:
591 DAL->append(A);
592 break;
593
594 case options::OPT_mkernel:
595 case options::OPT_fapple_kext:
596 DAL->append(A);
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000597 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
598 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000599 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000600
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000601 case options::OPT_dependency_file:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000602 DAL->AddSeparateArg(A, Opts.getOption(options::OPT_MF),
603 A->getValue(Args));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000604 break;
605
606 case options::OPT_gfull:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000607 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
608 DAL->AddFlagArg(A,
609 Opts.getOption(options::OPT_fno_eliminate_unused_debug_symbols));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000610 break;
611
612 case options::OPT_gused:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000613 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
614 DAL->AddFlagArg(A,
615 Opts.getOption(options::OPT_feliminate_unused_debug_symbols));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000616 break;
617
618 case options::OPT_fterminated_vtables:
619 case options::OPT_findirect_virtual_calls:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000620 DAL->AddFlagArg(A, Opts.getOption(options::OPT_fapple_kext));
621 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000622 break;
623
624 case options::OPT_shared:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000625 DAL->AddFlagArg(A, Opts.getOption(options::OPT_dynamiclib));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000626 break;
627
628 case options::OPT_fconstant_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000629 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mconstant_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000630 break;
631
632 case options::OPT_fno_constant_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000633 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_constant_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000634 break;
635
636 case options::OPT_Wnonportable_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000637 DAL->AddFlagArg(A,
638 Opts.getOption(options::OPT_mwarn_nonportable_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000639 break;
640
641 case options::OPT_Wno_nonportable_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000642 DAL->AddFlagArg(A,
643 Opts.getOption(options::OPT_mno_warn_nonportable_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000644 break;
645
646 case options::OPT_fpascal_strings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000647 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mpascal_strings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000648 break;
649
650 case options::OPT_fno_pascal_strings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000651 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_pascal_strings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000652 break;
653 }
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000654 }
655
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000656 if (getTriple().getArch() == llvm::Triple::x86 ||
657 getTriple().getArch() == llvm::Triple::x86_64)
Daniel Dunbare4bdae72009-11-19 04:00:53 +0000658 if (!Args.hasArgNoClaim(options::OPT_mtune_EQ))
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000659 DAL->AddJoinedArg(0, Opts.getOption(options::OPT_mtune_EQ), "core2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000660
661 // Add the arch options based on the particular spelling of -arch, to match
662 // how the driver driver works.
663 if (BoundArch) {
664 llvm::StringRef Name = BoundArch;
665 const Option *MCpu = Opts.getOption(options::OPT_mcpu_EQ);
666 const Option *MArch = Opts.getOption(options::OPT_march_EQ);
667
668 // This code must be kept in sync with LLVM's getArchTypeForDarwinArch,
669 // which defines the list of which architectures we accept.
670 if (Name == "ppc")
671 ;
672 else if (Name == "ppc601")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000673 DAL->AddJoinedArg(0, MCpu, "601");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000674 else if (Name == "ppc603")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000675 DAL->AddJoinedArg(0, MCpu, "603");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000676 else if (Name == "ppc604")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000677 DAL->AddJoinedArg(0, MCpu, "604");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000678 else if (Name == "ppc604e")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000679 DAL->AddJoinedArg(0, MCpu, "604e");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000680 else if (Name == "ppc750")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000681 DAL->AddJoinedArg(0, MCpu, "750");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000682 else if (Name == "ppc7400")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000683 DAL->AddJoinedArg(0, MCpu, "7400");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000684 else if (Name == "ppc7450")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000685 DAL->AddJoinedArg(0, MCpu, "7450");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000686 else if (Name == "ppc970")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000687 DAL->AddJoinedArg(0, MCpu, "970");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000688
689 else if (Name == "ppc64")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000690 DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000691
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000692 else if (Name == "i386")
693 ;
694 else if (Name == "i486")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000695 DAL->AddJoinedArg(0, MArch, "i486");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000696 else if (Name == "i586")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000697 DAL->AddJoinedArg(0, MArch, "i586");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000698 else if (Name == "i686")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000699 DAL->AddJoinedArg(0, MArch, "i686");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000700 else if (Name == "pentium")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000701 DAL->AddJoinedArg(0, MArch, "pentium");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000702 else if (Name == "pentium2")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000703 DAL->AddJoinedArg(0, MArch, "pentium2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000704 else if (Name == "pentpro")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000705 DAL->AddJoinedArg(0, MArch, "pentiumpro");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000706 else if (Name == "pentIIm3")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000707 DAL->AddJoinedArg(0, MArch, "pentium2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000708
709 else if (Name == "x86_64")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000710 DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64));
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000711
712 else if (Name == "arm")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000713 DAL->AddJoinedArg(0, MArch, "armv4t");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000714 else if (Name == "armv4t")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000715 DAL->AddJoinedArg(0, MArch, "armv4t");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000716 else if (Name == "armv5")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000717 DAL->AddJoinedArg(0, MArch, "armv5tej");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000718 else if (Name == "xscale")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000719 DAL->AddJoinedArg(0, MArch, "xscale");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000720 else if (Name == "armv6")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000721 DAL->AddJoinedArg(0, MArch, "armv6k");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000722 else if (Name == "armv7")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000723 DAL->AddJoinedArg(0, MArch, "armv7a");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000724
725 else
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000726 llvm_unreachable("invalid Darwin arch");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000727 }
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000728
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000729 // Add an explicit version min argument for the deployment target. We do this
730 // after argument translation because -Xarch_ arguments may add a version min
731 // argument.
732 AddDeploymentTarget(*DAL);
733
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000734 return DAL;
Mike Stump1eb44332009-09-09 15:08:12 +0000735}
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000736
Daniel Dunbarf3955282009-09-04 18:34:51 +0000737bool Darwin::IsUnwindTablesDefault() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000738 // FIXME: Gross; we should probably have some separate target
739 // definition, possibly even reusing the one in clang.
740 return getArchName() == "x86_64";
741}
742
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000743bool Darwin::UseDwarfDebugFlags() const {
744 if (const char *S = ::getenv("RC_DEBUG_OPTIONS"))
745 return S[0] != '\0';
746 return false;
747}
748
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000749bool Darwin::UseSjLjExceptions() const {
750 // Darwin uses SjLj exceptions on ARM.
751 return (getTriple().getArch() == llvm::Triple::arm ||
752 getTriple().getArch() == llvm::Triple::thumb);
753}
754
Daniel Dunbarf3955282009-09-04 18:34:51 +0000755const char *Darwin::GetDefaultRelocationModel() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000756 return "pic";
757}
758
Daniel Dunbarf3955282009-09-04 18:34:51 +0000759const char *Darwin::GetForcedPicModel() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000760 if (getArchName() == "x86_64")
761 return "pic";
762 return 0;
763}
764
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000765bool Darwin::SupportsProfiling() const {
766 // Profiling instrumentation is only supported on x86.
767 return getArchName() == "i386" || getArchName() == "x86_64";
768}
769
Daniel Dunbar43a9b322010-04-10 16:20:23 +0000770bool Darwin::SupportsObjCGC() const {
771 // Garbage collection is supported everywhere except on iPhone OS.
772 return !isTargetIPhoneOS();
773}
774
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000775std::string
776Darwin_Generic_GCC::ComputeEffectiveClangTriple(const ArgList &Args) const {
777 return ComputeLLVMTriple(Args);
778}
779
Daniel Dunbar39176082009-03-20 00:20:03 +0000780/// Generic_GCC - A tool chain using the 'gcc' command to perform
781/// all subcommands; this relies on gcc translating the majority of
782/// command line options.
783
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000784Generic_GCC::Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple)
Mike Stump1eb44332009-09-09 15:08:12 +0000785 : ToolChain(Host, Triple) {
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000786 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +0000787 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000788 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbarc50b00d2009-03-23 16:15:50 +0000789}
790
Daniel Dunbar39176082009-03-20 00:20:03 +0000791Generic_GCC::~Generic_GCC() {
792 // Free tool implementations.
793 for (llvm::DenseMap<unsigned, Tool*>::iterator
794 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
795 delete it->second;
796}
797
Mike Stump1eb44332009-09-09 15:08:12 +0000798Tool &Generic_GCC::SelectTool(const Compilation &C,
Daniel Dunbar39176082009-03-20 00:20:03 +0000799 const JobAction &JA) const {
800 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000801 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar39176082009-03-20 00:20:03 +0000802 Key = Action::AnalyzeJobClass;
803 else
804 Key = JA.getKind();
805
806 Tool *&T = Tools[Key];
807 if (!T) {
808 switch (Key) {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000809 case Action::InputClass:
810 case Action::BindArchClass:
Daniel Dunbar39176082009-03-20 00:20:03 +0000811 assert(0 && "Invalid tool kind.");
812 case Action::PreprocessJobClass:
813 T = new tools::gcc::Preprocess(*this); break;
814 case Action::PrecompileJobClass:
815 T = new tools::gcc::Precompile(*this); break;
816 case Action::AnalyzeJobClass:
817 T = new tools::Clang(*this); break;
818 case Action::CompileJobClass:
819 T = new tools::gcc::Compile(*this); break;
820 case Action::AssembleJobClass:
821 T = new tools::gcc::Assemble(*this); break;
822 case Action::LinkJobClass:
823 T = new tools::gcc::Link(*this); break;
Mike Stump1eb44332009-09-09 15:08:12 +0000824
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000825 // This is a bit ungeneric, but the only platform using a driver
826 // driver is Darwin.
827 case Action::LipoJobClass:
828 T = new tools::darwin::Lipo(*this); break;
Daniel Dunbar6e0f2542010-06-04 18:28:36 +0000829 case Action::DsymutilJobClass:
830 T = new tools::darwin::Dsymutil(*this); break;
Daniel Dunbar39176082009-03-20 00:20:03 +0000831 }
832 }
833
834 return *T;
835}
836
Daniel Dunbar39176082009-03-20 00:20:03 +0000837bool Generic_GCC::IsUnwindTablesDefault() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000838 // FIXME: Gross; we should probably have some separate target
839 // definition, possibly even reusing the one in clang.
Daniel Dunbar39176082009-03-20 00:20:03 +0000840 return getArchName() == "x86_64";
841}
842
843const char *Generic_GCC::GetDefaultRelocationModel() const {
844 return "static";
845}
846
847const char *Generic_GCC::GetForcedPicModel() const {
848 return 0;
849}
Daniel Dunbarf3cad362009-03-25 04:13:45 +0000850
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000851/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
852/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
853/// Currently does not support anything else but compilation.
854
855TCEToolChain::TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple)
856 : ToolChain(Host, Triple) {
857 // Path mangling to find libexec
858 std::string Path(getDriver().Dir);
859
860 Path += "/../libexec";
861 getProgramPaths().push_back(Path);
862}
863
864TCEToolChain::~TCEToolChain() {
865 for (llvm::DenseMap<unsigned, Tool*>::iterator
866 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
867 delete it->second;
868}
869
870bool TCEToolChain::IsMathErrnoDefault() const {
871 return true;
872}
873
874bool TCEToolChain::IsUnwindTablesDefault() const {
875 return false;
876}
877
878const char *TCEToolChain::GetDefaultRelocationModel() const {
879 return "static";
880}
881
882const char *TCEToolChain::GetForcedPicModel() const {
883 return 0;
884}
885
886Tool &TCEToolChain::SelectTool(const Compilation &C,
887 const JobAction &JA) const {
888 Action::ActionClass Key;
889 Key = Action::AnalyzeJobClass;
890
891 Tool *&T = Tools[Key];
892 if (!T) {
893 switch (Key) {
894 case Action::PreprocessJobClass:
895 T = new tools::gcc::Preprocess(*this); break;
896 case Action::AnalyzeJobClass:
897 T = new tools::Clang(*this); break;
898 default:
899 assert(false && "Unsupported action for TCE target.");
900 }
901 }
902 return *T;
903}
904
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000905/// OpenBSD - OpenBSD tool chain which can call as(1) and ld(1) directly.
906
907OpenBSD::OpenBSD(const HostInfo &Host, const llvm::Triple& Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000908 : Generic_ELF(Host, Triple) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000909 getFilePaths().push_back(getDriver().Dir + "/../lib");
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000910 getFilePaths().push_back("/usr/lib");
911}
912
913Tool &OpenBSD::SelectTool(const Compilation &C, const JobAction &JA) const {
914 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000915 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000916 Key = Action::AnalyzeJobClass;
917 else
918 Key = JA.getKind();
919
Rafael Espindoladda5b922010-11-07 23:13:01 +0000920 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
921 options::OPT_no_integrated_as,
922 IsIntegratedAssemblerDefault());
923
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000924 Tool *&T = Tools[Key];
925 if (!T) {
926 switch (Key) {
Rafael Espindoladda5b922010-11-07 23:13:01 +0000927 case Action::AssembleJobClass: {
928 if (UseIntegratedAs)
929 T = new tools::ClangAs(*this);
930 else
931 T = new tools::openbsd::Assemble(*this);
932 break;
933 }
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000934 case Action::LinkJobClass:
935 T = new tools::openbsd::Link(*this); break;
936 default:
937 T = &Generic_GCC::SelectTool(C, JA);
938 }
939 }
940
941 return *T;
942}
943
Daniel Dunbar75358d22009-03-30 21:06:03 +0000944/// FreeBSD - FreeBSD tool chain which can call as(1) and ld(1) directly.
945
Daniel Dunbar214afe92010-08-02 05:43:59 +0000946FreeBSD::FreeBSD(const HostInfo &Host, const llvm::Triple& Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000947 : Generic_ELF(Host, Triple) {
Daniel Dunbar214afe92010-08-02 05:43:59 +0000948
949 // Determine if we are compiling 32-bit code on an x86_64 platform.
950 bool Lib32 = false;
951 if (Triple.getArch() == llvm::Triple::x86 &&
952 llvm::Triple(getDriver().DefaultHostTriple).getArch() ==
953 llvm::Triple::x86_64)
954 Lib32 = true;
955
Daniel Dunbarbc534662009-04-02 18:30:04 +0000956 if (Lib32) {
Daniel Dunbarbc534662009-04-02 18:30:04 +0000957 getFilePaths().push_back("/usr/lib32");
958 } else {
Daniel Dunbarbc534662009-04-02 18:30:04 +0000959 getFilePaths().push_back("/usr/lib");
960 }
Daniel Dunbar75358d22009-03-30 21:06:03 +0000961}
962
963Tool &FreeBSD::SelectTool(const Compilation &C, const JobAction &JA) const {
964 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000965 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar75358d22009-03-30 21:06:03 +0000966 Key = Action::AnalyzeJobClass;
967 else
968 Key = JA.getKind();
969
Roman Divacky67dece72010-11-08 17:46:39 +0000970 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
971 options::OPT_no_integrated_as,
972 IsIntegratedAssemblerDefault());
973
Daniel Dunbar75358d22009-03-30 21:06:03 +0000974 Tool *&T = Tools[Key];
975 if (!T) {
976 switch (Key) {
Daniel Dunbar68a31d42009-03-31 17:45:15 +0000977 case Action::AssembleJobClass:
Roman Divacky67dece72010-11-08 17:46:39 +0000978 if (UseIntegratedAs)
979 T = new tools::ClangAs(*this);
980 else
981 T = new tools::freebsd::Assemble(*this);
Roman Divackyfe3a7ea2010-11-08 19:39:10 +0000982 break;
Daniel Dunbar008f54a2009-04-01 19:36:32 +0000983 case Action::LinkJobClass:
984 T = new tools::freebsd::Link(*this); break;
Daniel Dunbar75358d22009-03-30 21:06:03 +0000985 default:
986 T = &Generic_GCC::SelectTool(C, JA);
987 }
988 }
989
990 return *T;
991}
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000992
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000993/// NetBSD - NetBSD tool chain which can call as(1) and ld(1) directly.
994
995NetBSD::NetBSD(const HostInfo &Host, const llvm::Triple& Triple)
996 : Generic_ELF(Host, Triple) {
997
998 // Determine if we are compiling 32-bit code on an x86_64 platform.
999 bool Lib32 = false;
1000 if (Triple.getArch() == llvm::Triple::x86 &&
1001 llvm::Triple(getDriver().DefaultHostTriple).getArch() ==
1002 llvm::Triple::x86_64)
1003 Lib32 = true;
1004
1005 getProgramPaths().push_back(getDriver().Dir + "/../libexec");
1006 getProgramPaths().push_back("/usr/libexec");
1007 if (Lib32) {
1008 getFilePaths().push_back("/usr/lib/i386");
1009 } else {
1010 getFilePaths().push_back("/usr/lib");
1011 }
1012}
1013
1014Tool &NetBSD::SelectTool(const Compilation &C, const JobAction &JA) const {
1015 Action::ActionClass Key;
1016 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1017 Key = Action::AnalyzeJobClass;
1018 else
1019 Key = JA.getKind();
1020
1021 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
1022 options::OPT_no_integrated_as,
1023 IsIntegratedAssemblerDefault());
1024
1025 Tool *&T = Tools[Key];
1026 if (!T) {
1027 switch (Key) {
1028 case Action::AssembleJobClass:
1029 if (UseIntegratedAs)
1030 T = new tools::ClangAs(*this);
1031 else
1032 T = new tools::netbsd::Assemble(*this);
1033 break;
1034 case Action::LinkJobClass:
1035 T = new tools::netbsd::Link(*this); break;
1036 default:
1037 T = &Generic_GCC::SelectTool(C, JA);
1038 }
1039 }
1040
1041 return *T;
1042}
1043
Chris Lattner38e317d2010-07-07 16:01:42 +00001044/// Minix - Minix tool chain which can call as(1) and ld(1) directly.
1045
1046Minix::Minix(const HostInfo &Host, const llvm::Triple& Triple)
1047 : Generic_GCC(Host, Triple) {
1048 getFilePaths().push_back(getDriver().Dir + "/../lib");
1049 getFilePaths().push_back("/usr/lib");
1050 getFilePaths().push_back("/usr/gnu/lib");
1051 getFilePaths().push_back("/usr/gnu/lib/gcc/i686-pc-minix/4.4.3");
1052}
1053
1054Tool &Minix::SelectTool(const Compilation &C, const JobAction &JA) const {
1055 Action::ActionClass Key;
1056 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1057 Key = Action::AnalyzeJobClass;
1058 else
1059 Key = JA.getKind();
1060
1061 Tool *&T = Tools[Key];
1062 if (!T) {
1063 switch (Key) {
1064 case Action::AssembleJobClass:
1065 T = new tools::minix::Assemble(*this); break;
1066 case Action::LinkJobClass:
1067 T = new tools::minix::Link(*this); break;
1068 default:
1069 T = &Generic_GCC::SelectTool(C, JA);
1070 }
1071 }
1072
1073 return *T;
1074}
1075
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001076/// AuroraUX - AuroraUX tool chain which can call as(1) and ld(1) directly.
1077
1078AuroraUX::AuroraUX(const HostInfo &Host, const llvm::Triple& Triple)
1079 : Generic_GCC(Host, Triple) {
1080
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001081 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +00001082 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001083 getProgramPaths().push_back(getDriver().Dir);
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001084
Daniel Dunbaree788e72009-12-21 18:54:17 +00001085 getFilePaths().push_back(getDriver().Dir + "/../lib");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001086 getFilePaths().push_back("/usr/lib");
1087 getFilePaths().push_back("/usr/sfw/lib");
1088 getFilePaths().push_back("/opt/gcc4/lib");
Edward O'Callaghan7adf9492009-10-15 07:44:07 +00001089 getFilePaths().push_back("/opt/gcc4/lib/gcc/i386-pc-solaris2.11/4.2.4");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001090
1091}
1092
1093Tool &AuroraUX::SelectTool(const Compilation &C, const JobAction &JA) const {
1094 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +00001095 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001096 Key = Action::AnalyzeJobClass;
1097 else
1098 Key = JA.getKind();
1099
1100 Tool *&T = Tools[Key];
1101 if (!T) {
1102 switch (Key) {
1103 case Action::AssembleJobClass:
1104 T = new tools::auroraux::Assemble(*this); break;
1105 case Action::LinkJobClass:
1106 T = new tools::auroraux::Link(*this); break;
1107 default:
1108 T = &Generic_GCC::SelectTool(C, JA);
1109 }
1110 }
1111
1112 return *T;
1113}
1114
1115
Eli Friedman6b3454a2009-05-26 07:52:18 +00001116/// Linux toolchain (very bare-bones at the moment).
1117
Rafael Espindolac1da9812010-11-07 20:14:31 +00001118enum LinuxDistro {
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001119 ArchLinux,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001120 DebianLenny,
1121 DebianSqueeze,
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001122 Exherbo,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001123 Fedora13,
1124 Fedora14,
1125 OpenSuse11_3,
Douglas Gregor814638e2011-03-14 15:39:50 +00001126 UbuntuHardy,
1127 UbuntuIntrepid,
Rafael Espindola021aaa42010-11-10 05:00:22 +00001128 UbuntuJaunty,
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001129 UbuntuKarmic,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001130 UbuntuLucid,
1131 UbuntuMaverick,
1132 UnknownDistro
1133};
1134
1135static bool IsFedora(enum LinuxDistro Distro) {
1136 return Distro == Fedora13 || Distro == Fedora14;
1137}
1138
1139static bool IsOpenSuse(enum LinuxDistro Distro) {
1140 return Distro == OpenSuse11_3;
1141}
1142
1143static bool IsDebian(enum LinuxDistro Distro) {
1144 return Distro == DebianLenny || Distro == DebianSqueeze;
1145}
1146
1147static bool IsUbuntu(enum LinuxDistro Distro) {
Douglas Gregor814638e2011-03-14 15:39:50 +00001148 return Distro == UbuntuHardy || Distro == UbuntuIntrepid ||
1149 Distro == UbuntuLucid || Distro == UbuntuMaverick ||
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001150 Distro == UbuntuJaunty || Distro == UbuntuKarmic;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001151}
1152
1153static bool IsDebianBased(enum LinuxDistro Distro) {
1154 return IsDebian(Distro) || IsUbuntu(Distro);
1155}
1156
1157static bool HasMultilib(llvm::Triple::ArchType Arch, enum LinuxDistro Distro) {
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001158 if (Arch == llvm::Triple::x86_64) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001159 bool Exists;
1160 if (Distro == Exherbo &&
1161 (llvm::sys::fs::exists("/usr/lib32/libc.so", Exists) || !Exists))
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001162 return false;
1163
Rafael Espindolac1da9812010-11-07 20:14:31 +00001164 return true;
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001165 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00001166 if (Arch == llvm::Triple::x86 && IsDebianBased(Distro))
1167 return true;
1168 return false;
1169}
1170
1171static LinuxDistro DetectLinuxDistro(llvm::Triple::ArchType Arch) {
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001172 llvm::OwningPtr<llvm::MemoryBuffer> File;
1173 if (!llvm::MemoryBuffer::getFile("/etc/lsb-release", File)) {
1174 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001175 llvm::SmallVector<llvm::StringRef, 8> Lines;
1176 Data.split(Lines, "\n");
1177 for (unsigned int i = 0, s = Lines.size(); i < s; ++ i) {
Douglas Gregor814638e2011-03-14 15:39:50 +00001178 if (Lines[i] == "DISTRIB_CODENAME=hardy")
1179 return UbuntuHardy;
1180 if (Lines[i] == "DISTRIB_CODENAME=intrepid")
1181 return UbuntuIntrepid;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001182 if (Lines[i] == "DISTRIB_CODENAME=maverick")
1183 return UbuntuMaverick;
1184 else if (Lines[i] == "DISTRIB_CODENAME=lucid")
1185 return UbuntuLucid;
Rafael Espindola021aaa42010-11-10 05:00:22 +00001186 else if (Lines[i] == "DISTRIB_CODENAME=jaunty")
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001187 return UbuntuJaunty;
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001188 else if (Lines[i] == "DISTRIB_CODENAME=karmic")
1189 return UbuntuKarmic;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001190 }
1191 return UnknownDistro;
1192 }
1193
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001194 if (!llvm::MemoryBuffer::getFile("/etc/redhat-release", File)) {
1195 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001196 if (Data.startswith("Fedora release 14 (Laughlin)"))
1197 return Fedora14;
1198 else if (Data.startswith("Fedora release 13 (Goddard)"))
1199 return Fedora13;
1200 return UnknownDistro;
1201 }
1202
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001203 if (!llvm::MemoryBuffer::getFile("/etc/debian_version", File)) {
1204 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001205 if (Data[0] == '5')
1206 return DebianLenny;
1207 else if (Data.startswith("squeeze/sid"))
1208 return DebianSqueeze;
1209 return UnknownDistro;
1210 }
1211
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001212 if (!llvm::MemoryBuffer::getFile("/etc/SuSE-release", File)) {
1213 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001214 if (Data.startswith("openSUSE 11.3"))
1215 return OpenSuse11_3;
1216 return UnknownDistro;
1217 }
1218
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001219 bool Exists;
1220 if (!llvm::sys::fs::exists("/etc/exherbo-release", Exists) && Exists)
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001221 return Exherbo;
1222
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001223 if (!llvm::sys::fs::exists("/etc/arch-release", Exists) && Exists)
1224 return ArchLinux;
1225
Rafael Espindolac1da9812010-11-07 20:14:31 +00001226 return UnknownDistro;
1227}
1228
Nick Lewycky3fdcc6f2010-12-31 17:31:54 +00001229Linux::Linux(const HostInfo &Host, const llvm::Triple &Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +00001230 : Generic_ELF(Host, Triple) {
Rafael Espindolac1da9812010-11-07 20:14:31 +00001231 llvm::Triple::ArchType Arch =
1232 llvm::Triple(getDriver().DefaultHostTriple).getArch();
Daniel Dunbara9822de2009-08-06 01:47:11 +00001233
Rafael Espindolac1da9812010-11-07 20:14:31 +00001234 std::string Suffix32 = "";
1235 if (Arch == llvm::Triple::x86_64)
1236 Suffix32 = "/32";
Daniel Dunbara9822de2009-08-06 01:47:11 +00001237
Rafael Espindolac1da9812010-11-07 20:14:31 +00001238 std::string Suffix64 = "";
1239 if (Arch == llvm::Triple::x86)
1240 Suffix64 = "/64";
1241
1242 std::string Lib32 = "lib";
1243
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001244 bool Exists;
1245 if (!llvm::sys::fs::exists("/lib32", Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001246 Lib32 = "lib32";
1247
1248 std::string Lib64 = "lib";
Michael J. Spencer2dea7c72011-01-12 23:54:48 +00001249 bool Symlink;
Chris Lattner48aef362011-01-13 01:35:58 +00001250 if (!llvm::sys::fs::exists("/lib64", Exists) && Exists &&
1251 (llvm::sys::fs::is_symlink("/lib64", Symlink) || !Symlink))
Rafael Espindolac1da9812010-11-07 20:14:31 +00001252 Lib64 = "lib64";
1253
1254 std::string GccTriple = "";
Douglas Gregorf0594d82011-03-06 19:11:49 +00001255 if (Arch == llvm::Triple::arm || Arch == llvm::Triple::thumb) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001256 if (!llvm::sys::fs::exists("/usr/lib/gcc/arm-linux-gnueabi", Exists) &&
1257 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001258 GccTriple = "arm-linux-gnueabi";
1259 } else if (Arch == llvm::Triple::x86_64) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001260 if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-linux-gnu", Exists) &&
1261 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001262 GccTriple = "x86_64-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001263 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-unknown-linux-gnu",
1264 Exists) && Exists)
Rafael Espindola53dd00b2010-11-17 00:25:26 +00001265 GccTriple = "x86_64-unknown-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001266 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-pc-linux-gnu",
1267 Exists) && Exists)
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001268 GccTriple = "x86_64-pc-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001269 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-redhat-linux",
1270 Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001271 GccTriple = "x86_64-redhat-linux";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001272 else if (!llvm::sys::fs::exists("/usr/lib64/gcc/x86_64-suse-linux",
1273 Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001274 GccTriple = "x86_64-suse-linux";
Nick Lewyckye10f9002011-02-01 23:03:29 +00001275 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-manbo-linux-gnu",
1276 Exists) && Exists)
1277 GccTriple = "x86_64-manbo-linux-gnu";
Rafael Espindolac1da9812010-11-07 20:14:31 +00001278 } else if (Arch == llvm::Triple::x86) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001279 if (!llvm::sys::fs::exists("/usr/lib/gcc/i686-linux-gnu", Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001280 GccTriple = "i686-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001281 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i686-pc-linux-gnu", Exists) &&
1282 Exists)
Nuno Lopes2a69ddd2010-11-19 17:26:57 +00001283 GccTriple = "i686-pc-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001284 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i486-linux-gnu", Exists) &&
1285 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001286 GccTriple = "i486-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001287 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i686-redhat-linux", Exists) &&
1288 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001289 GccTriple = "i686-redhat-linux";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001290 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i586-suse-linux", Exists) &&
1291 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001292 GccTriple = "i586-suse-linux";
1293 }
1294
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001295 const char* GccVersions[] = {"4.5.2", "4.5.1", "4.5", "4.4.5", "4.4.4",
1296 "4.4.3", "4.4", "4.3.4", "4.3.3", "4.3.2",
Douglas Gregor814638e2011-03-14 15:39:50 +00001297 "4.3", "4.2.4", "4.2.3", "4.2.2", "4.2.1",
1298 "4.2"};
Rafael Espindolac1da9812010-11-07 20:14:31 +00001299 std::string Base = "";
1300 for (unsigned i = 0; i < sizeof(GccVersions)/sizeof(char*); ++i) {
1301 std::string Suffix = GccTriple + "/" + GccVersions[i];
1302 std::string t1 = "/usr/lib/gcc/" + Suffix;
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001303 if (!llvm::sys::fs::exists(t1 + "/crtbegin.o", Exists) && Exists) {
Rafael Espindolac1da9812010-11-07 20:14:31 +00001304 Base = t1;
1305 break;
1306 }
1307 std::string t2 = "/usr/lib64/gcc/" + Suffix;
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001308 if (!llvm::sys::fs::exists(t2 + "/crtbegin.o", Exists) && Exists) {
Rafael Espindolac1da9812010-11-07 20:14:31 +00001309 Base = t2;
1310 break;
1311 }
1312 }
1313
1314 path_list &Paths = getFilePaths();
1315 bool Is32Bits = getArch() == llvm::Triple::x86;
1316
1317 std::string Suffix;
1318 std::string Lib;
1319
1320 if (Is32Bits) {
1321 Suffix = Suffix32;
1322 Lib = Lib32;
1323 } else {
1324 Suffix = Suffix64;
1325 Lib = Lib64;
1326 }
1327
1328 llvm::sys::Path LinkerPath(Base + "/../../../../" + GccTriple + "/bin/ld");
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001329 if (!llvm::sys::fs::exists(LinkerPath.str(), Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001330 Linker = LinkerPath.str();
1331 else
1332 Linker = GetProgramPath("ld");
1333
1334 LinuxDistro Distro = DetectLinuxDistro(Arch);
1335
Rafael Espindola94c80222010-11-08 14:48:47 +00001336 if (IsUbuntu(Distro)) {
1337 ExtraOpts.push_back("-z");
1338 ExtraOpts.push_back("relro");
1339 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00001340
Douglas Gregorf0594d82011-03-06 19:11:49 +00001341 if (Arch == llvm::Triple::arm || Arch == llvm::Triple::thumb)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001342 ExtraOpts.push_back("-X");
1343
1344 if (IsFedora(Distro) || Distro == UbuntuMaverick)
1345 ExtraOpts.push_back("--hash-style=gnu");
1346
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001347 if (IsDebian(Distro) || Distro == UbuntuLucid || Distro == UbuntuJaunty ||
1348 Distro == UbuntuKarmic)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001349 ExtraOpts.push_back("--hash-style=both");
1350
1351 if (IsFedora(Distro))
1352 ExtraOpts.push_back("--no-add-needed");
1353
Rafael Espindola021aaa42010-11-10 05:00:22 +00001354 if (Distro == DebianSqueeze || IsOpenSuse(Distro) ||
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001355 IsFedora(Distro) || Distro == UbuntuLucid || Distro == UbuntuMaverick ||
1356 Distro == UbuntuKarmic)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001357 ExtraOpts.push_back("--build-id");
1358
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001359 if (Distro == ArchLinux)
1360 Lib = "lib";
1361
Rafael Espindolac1da9812010-11-07 20:14:31 +00001362 Paths.push_back(Base + Suffix);
1363 if (HasMultilib(Arch, Distro)) {
1364 if (IsOpenSuse(Distro) && Is32Bits)
1365 Paths.push_back(Base + "/../../../../" + GccTriple + "/lib/../lib");
1366 Paths.push_back(Base + "/../../../../" + Lib);
1367 Paths.push_back("/lib/../" + Lib);
1368 Paths.push_back("/usr/lib/../" + Lib);
1369 }
1370 if (!Suffix.empty())
1371 Paths.push_back(Base);
1372 if (IsOpenSuse(Distro))
1373 Paths.push_back(Base + "/../../../../" + GccTriple + "/lib");
1374 Paths.push_back(Base + "/../../..");
1375 if (Arch == getArch() && IsUbuntu(Distro))
1376 Paths.push_back("/usr/lib/" + GccTriple);
1377}
1378
1379bool Linux::HasNativeLLVMSupport() const {
1380 return true;
Eli Friedman6b3454a2009-05-26 07:52:18 +00001381}
1382
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001383Tool &Linux::SelectTool(const Compilation &C, const JobAction &JA) const {
1384 Action::ActionClass Key;
1385 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1386 Key = Action::AnalyzeJobClass;
1387 else
1388 Key = JA.getKind();
1389
Rafael Espindoladda5b922010-11-07 23:13:01 +00001390 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
1391 options::OPT_no_integrated_as,
1392 IsIntegratedAssemblerDefault());
1393
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001394 Tool *&T = Tools[Key];
1395 if (!T) {
1396 switch (Key) {
1397 case Action::AssembleJobClass:
Rafael Espindoladda5b922010-11-07 23:13:01 +00001398 if (UseIntegratedAs)
1399 T = new tools::ClangAs(*this);
1400 else
1401 T = new tools::linuxtools::Assemble(*this);
1402 break;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001403 case Action::LinkJobClass:
1404 T = new tools::linuxtools::Link(*this); break;
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001405 default:
1406 T = &Generic_GCC::SelectTool(C, JA);
1407 }
1408 }
1409
1410 return *T;
1411}
1412
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001413/// DragonFly - DragonFly tool chain which can call as(1) and ld(1) directly.
1414
Daniel Dunbarcb8ab232009-05-22 02:53:45 +00001415DragonFly::DragonFly(const HostInfo &Host, const llvm::Triple& Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +00001416 : Generic_ELF(Host, Triple) {
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001417
1418 // Path mangling to find libexec
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001419 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +00001420 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001421 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001422
Daniel Dunbaree788e72009-12-21 18:54:17 +00001423 getFilePaths().push_back(getDriver().Dir + "/../lib");
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001424 getFilePaths().push_back("/usr/lib");
1425 getFilePaths().push_back("/usr/lib/gcc41");
1426}
1427
1428Tool &DragonFly::SelectTool(const Compilation &C, const JobAction &JA) const {
1429 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +00001430 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001431 Key = Action::AnalyzeJobClass;
1432 else
1433 Key = JA.getKind();
1434
1435 Tool *&T = Tools[Key];
1436 if (!T) {
1437 switch (Key) {
1438 case Action::AssembleJobClass:
1439 T = new tools::dragonfly::Assemble(*this); break;
1440 case Action::LinkJobClass:
1441 T = new tools::dragonfly::Link(*this); break;
1442 default:
1443 T = &Generic_GCC::SelectTool(C, JA);
1444 }
1445 }
1446
1447 return *T;
1448}
Michael J. Spencerff58e362010-08-21 21:55:07 +00001449
1450Windows::Windows(const HostInfo &Host, const llvm::Triple& Triple)
1451 : ToolChain(Host, Triple) {
1452}
1453
1454Tool &Windows::SelectTool(const Compilation &C, const JobAction &JA) const {
1455 Action::ActionClass Key;
1456 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1457 Key = Action::AnalyzeJobClass;
1458 else
1459 Key = JA.getKind();
1460
1461 Tool *&T = Tools[Key];
1462 if (!T) {
1463 switch (Key) {
1464 case Action::InputClass:
1465 case Action::BindArchClass:
Chandler Carruthe97673f2010-08-22 06:56:37 +00001466 case Action::LipoJobClass:
1467 case Action::DsymutilJobClass:
Michael J. Spencerff58e362010-08-21 21:55:07 +00001468 assert(0 && "Invalid tool kind.");
1469 case Action::PreprocessJobClass:
1470 case Action::PrecompileJobClass:
1471 case Action::AnalyzeJobClass:
1472 case Action::CompileJobClass:
1473 T = new tools::Clang(*this); break;
1474 case Action::AssembleJobClass:
1475 T = new tools::ClangAs(*this); break;
1476 case Action::LinkJobClass:
1477 T = new tools::visualstudio::Link(*this); break;
1478 }
1479 }
1480
1481 return *T;
1482}
1483
1484bool Windows::IsIntegratedAssemblerDefault() const {
1485 return true;
1486}
1487
1488bool Windows::IsUnwindTablesDefault() const {
1489 // FIXME: Gross; we should probably have some separate target
1490 // definition, possibly even reusing the one in clang.
1491 return getArchName() == "x86_64";
1492}
1493
1494const char *Windows::GetDefaultRelocationModel() const {
1495 return "static";
1496}
1497
1498const char *Windows::GetForcedPicModel() const {
1499 if (getArchName() == "x86_64")
1500 return "pic";
1501 return 0;
1502}