blob: 77fc0219a64a66ca433b3ed99fdf15d5936b4032 [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 Dunbarac0659a2011-03-18 20:14:00 +0000172Tool &Darwin::SelectTool(const Compilation &C, const JobAction &JA,
173 const ActionList &Inputs) const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000174 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000175 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000176 Key = Action::AnalyzeJobClass;
177 else
178 Key = JA.getKind();
179
Daniel Dunbar0f602de2010-05-20 21:48:38 +0000180 // FIXME: This doesn't belong here, but ideally we will support static soon
181 // anyway.
182 bool HasStatic = (C.getArgs().hasArg(options::OPT_mkernel) ||
183 C.getArgs().hasArg(options::OPT_static) ||
184 C.getArgs().hasArg(options::OPT_fapple_kext));
185 bool IsIADefault = IsIntegratedAssemblerDefault() && !HasStatic;
186 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
187 options::OPT_no_integrated_as,
188 IsIADefault);
189
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:
195 assert(0 && "Invalid tool kind.");
196 case Action::PreprocessJobClass:
Daniel Dunbar9120f172009-03-29 22:27:40 +0000197 T = new tools::darwin::Preprocess(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000198 case Action::AnalyzeJobClass:
199 T = new tools::Clang(*this); break;
Daniel Dunbar9120f172009-03-29 22:27:40 +0000200 case Action::PrecompileJobClass:
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000201 case Action::CompileJobClass:
Daniel Dunbar9120f172009-03-29 22:27:40 +0000202 T = new tools::darwin::Compile(*this); break;
Daniel Dunbar0f602de2010-05-20 21:48:38 +0000203 case Action::AssembleJobClass: {
204 if (UseIntegratedAs)
205 T = new tools::ClangAs(*this);
206 else
207 T = new tools::darwin::Assemble(*this);
208 break;
209 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000210 case Action::LinkJobClass:
Daniel Dunbar8f289622009-09-04 17:39:02 +0000211 T = new tools::darwin::Link(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000212 case Action::LipoJobClass:
213 T = new tools::darwin::Lipo(*this); break;
Daniel Dunbar6e0f2542010-06-04 18:28:36 +0000214 case Action::DsymutilJobClass:
215 T = new tools::darwin::Dsymutil(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000216 }
217 }
218
219 return *T;
220}
221
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000222
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000223DarwinClang::DarwinClang(const HostInfo &Host, const llvm::Triple& Triple)
224 : Darwin(Host, Triple)
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000225{
Daniel Dunbar47023092011-03-18 19:25:15 +0000226 std::string UsrPrefix = "llvm-gcc-4.2/";
227
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000228 getProgramPaths().push_back(getDriver().getInstalledDir());
229 if (getDriver().getInstalledDir() != getDriver().Dir)
230 getProgramPaths().push_back(getDriver().Dir);
231
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000232 // We expect 'as', 'ld', etc. to be adjacent to our install dir.
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000233 getProgramPaths().push_back(getDriver().getInstalledDir());
234 if (getDriver().getInstalledDir() != getDriver().Dir)
235 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000236
237 // For fallback, we need to know how to find the GCC cc1 executables, so we
Daniel Dunbar47023092011-03-18 19:25:15 +0000238 // also add the GCC libexec paths. This is legacy code that can be removed
239 // once fallback is no longer useful.
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000240 std::string ToolChainDir = "i686-apple-darwin";
241 ToolChainDir += llvm::utostr(DarwinVersion[0]);
242 ToolChainDir += "/4.2.1";
243
244 std::string Path = getDriver().Dir;
Daniel Dunbar47023092011-03-18 19:25:15 +0000245 Path += "/../" + UsrPrefix + "libexec/gcc/";
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000246 Path += ToolChainDir;
247 getProgramPaths().push_back(Path);
248
Daniel Dunbar47023092011-03-18 19:25:15 +0000249 Path = "/usr/" + UsrPrefix + "libexec/gcc/";
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000250 Path += ToolChainDir;
251 getProgramPaths().push_back(Path);
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000252}
253
254void DarwinClang::AddLinkSearchPathArgs(const ArgList &Args,
255 ArgStringList &CmdArgs) const {
256 // The Clang toolchain uses explicit paths for internal libraries.
Daniel Dunbar424b6612010-06-30 23:56:13 +0000257
258 // Unfortunately, we still might depend on a few of the libraries that are
259 // only available in the gcc library directory (in particular
260 // libstdc++.dylib). For now, hardcode the path to the known install location.
261 llvm::sys::Path P(getDriver().Dir);
262 P.eraseComponent(); // .../usr/bin -> ../usr
263 P.appendComponent("lib");
264 P.appendComponent("gcc");
265 switch (getTriple().getArch()) {
266 default:
267 assert(0 && "Invalid Darwin arch!");
268 case llvm::Triple::x86:
269 case llvm::Triple::x86_64:
270 P.appendComponent("i686-apple-darwin10");
271 break;
272 case llvm::Triple::arm:
273 case llvm::Triple::thumb:
274 P.appendComponent("arm-apple-darwin10");
275 break;
276 case llvm::Triple::ppc:
277 case llvm::Triple::ppc64:
278 P.appendComponent("powerpc-apple-darwin10");
279 break;
280 }
281 P.appendComponent("4.2.1");
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000282
283 // Determine the arch specific GCC subdirectory.
284 const char *ArchSpecificDir = 0;
285 switch (getTriple().getArch()) {
286 default:
287 break;
288 case llvm::Triple::arm:
Daniel Dunbar3a0e3922010-08-26 00:55:52 +0000289 case llvm::Triple::thumb: {
290 std::string Triple = ComputeLLVMTriple(Args);
291 llvm::StringRef TripleStr = Triple;
292 if (TripleStr.startswith("armv5") || TripleStr.startswith("thumbv5"))
293 ArchSpecificDir = "v5";
294 else if (TripleStr.startswith("armv6") || TripleStr.startswith("thumbv6"))
295 ArchSpecificDir = "v6";
296 else if (TripleStr.startswith("armv7") || TripleStr.startswith("thumbv7"))
297 ArchSpecificDir = "v7";
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000298 break;
Daniel Dunbar3a0e3922010-08-26 00:55:52 +0000299 }
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000300 case llvm::Triple::ppc64:
301 ArchSpecificDir = "ppc64";
302 break;
303 case llvm::Triple::x86_64:
304 ArchSpecificDir = "x86_64";
305 break;
306 }
307
308 if (ArchSpecificDir) {
309 P.appendComponent(ArchSpecificDir);
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000310 bool Exists;
311 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000312 CmdArgs.push_back(Args.MakeArgString("-L" + P.str()));
313 P.eraseComponent();
314 }
315
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000316 bool Exists;
317 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Daniel Dunbar424b6612010-06-30 23:56:13 +0000318 CmdArgs.push_back(Args.MakeArgString("-L" + P.str()));
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000319}
320
321void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args,
322 ArgStringList &CmdArgs) const {
Daniel Dunbareec99102010-01-22 03:38:14 +0000323 // Darwin doesn't support real static executables, don't link any runtime
324 // libraries with -static.
325 if (Args.hasArg(options::OPT_static))
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000326 return;
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000327
328 // Reject -static-libgcc for now, we can deal with this when and if someone
329 // cares. This is useful in situations where someone wants to statically link
330 // something like libstdc++, and needs its runtime support routines.
331 if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000332 getDriver().Diag(clang::diag::err_drv_unsupported_opt)
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000333 << A->getAsString(Args);
334 return;
335 }
336
Daniel Dunbareec99102010-01-22 03:38:14 +0000337 // Otherwise link libSystem, then the dynamic runtime library, and finally any
338 // target specific static runtime library.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000339 CmdArgs.push_back("-lSystem");
Daniel Dunbareec99102010-01-22 03:38:14 +0000340
341 // Select the dynamic runtime library and the target specific static library.
342 const char *DarwinStaticLib = 0;
Daniel Dunbar251ca6c2010-01-27 00:56:37 +0000343 if (isTargetIPhoneOS()) {
Daniel Dunbareec99102010-01-22 03:38:14 +0000344 CmdArgs.push_back("-lgcc_s.1");
345
346 // We may need some static functions for armv6/thumb which are required to
347 // be in the same linkage unit as their caller.
348 if (getDarwinArchName(Args) == "armv6")
349 DarwinStaticLib = "libclang_rt.armv6.a";
350 } else {
Daniel Dunbareec99102010-01-22 03:38:14 +0000351 // The dynamic runtime library was merged with libSystem for 10.6 and
352 // beyond; only 10.4 and 10.5 need an additional runtime library.
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000353 if (isMacosxVersionLT(10, 5))
Daniel Dunbareec99102010-01-22 03:38:14 +0000354 CmdArgs.push_back("-lgcc_s.10.4");
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000355 else if (isMacosxVersionLT(10, 6))
Daniel Dunbareec99102010-01-22 03:38:14 +0000356 CmdArgs.push_back("-lgcc_s.10.5");
357
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000358 // For OS X, we thought we would only need a static runtime library when
359 // targetting 10.4, to provide versions of the static functions which were
360 // omitted from 10.4.dylib.
361 //
362 // Unfortunately, that turned out to not be true, because Darwin system
363 // headers can still use eprintf on i386, and it is not exported from
364 // libSystem. Therefore, we still must provide a runtime library just for
365 // the tiny tiny handful of projects that *might* use that symbol.
366 if (isMacosxVersionLT(10, 5)) {
Daniel Dunbareec99102010-01-22 03:38:14 +0000367 DarwinStaticLib = "libclang_rt.10.4.a";
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000368 } else {
369 if (getTriple().getArch() == llvm::Triple::x86)
370 DarwinStaticLib = "libclang_rt.eprintf.a";
371 }
Daniel Dunbareec99102010-01-22 03:38:14 +0000372 }
373
374 /// Add the target specific static library, if needed.
375 if (DarwinStaticLib) {
376 llvm::sys::Path P(getDriver().ResourceDir);
377 P.appendComponent("lib");
378 P.appendComponent("darwin");
379 P.appendComponent(DarwinStaticLib);
380
381 // For now, allow missing resource libraries to support developers who may
382 // not have compiler-rt checked out or integrated into their build.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000383 bool Exists;
384 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Daniel Dunbareec99102010-01-22 03:38:14 +0000385 CmdArgs.push_back(Args.MakeArgString(P.str()));
386 }
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000387}
388
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000389void Darwin::AddDeploymentTarget(DerivedArgList &Args) const {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000390 const OptTable &Opts = getDriver().getOpts();
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000391
Daniel Dunbar26031372010-01-27 00:56:25 +0000392 Arg *OSXVersion = Args.getLastArg(options::OPT_mmacosx_version_min_EQ);
393 Arg *iPhoneVersion = Args.getLastArg(options::OPT_miphoneos_version_min_EQ);
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000394 if (OSXVersion && iPhoneVersion) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000395 getDriver().Diag(clang::diag::err_drv_argument_not_allowed_with)
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000396 << OSXVersion->getAsString(Args)
Mike Stump1eb44332009-09-09 15:08:12 +0000397 << iPhoneVersion->getAsString(Args);
Daniel Dunbar26031372010-01-27 00:56:25 +0000398 iPhoneVersion = 0;
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000399 } else if (!OSXVersion && !iPhoneVersion) {
Daniel Dunbar816bc312010-01-26 01:45:19 +0000400 // If neither OS X nor iPhoneOS targets were specified, check for
401 // environment defines.
402 const char *OSXTarget = ::getenv("MACOSX_DEPLOYMENT_TARGET");
403 const char *iPhoneOSTarget = ::getenv("IPHONEOS_DEPLOYMENT_TARGET");
Daniel Dunbarf36a06a2009-04-10 21:00:07 +0000404
Daniel Dunbar816bc312010-01-26 01:45:19 +0000405 // Ignore empty strings.
406 if (OSXTarget && OSXTarget[0] == '\0')
407 OSXTarget = 0;
408 if (iPhoneOSTarget && iPhoneOSTarget[0] == '\0')
409 iPhoneOSTarget = 0;
410
Daniel Dunbar39053672010-02-02 17:31:12 +0000411 // Diagnose conflicting deployment targets, and choose default platform
412 // based on the tool chain.
413 //
414 // FIXME: Don't hardcode default here.
415 if (OSXTarget && iPhoneOSTarget) {
416 // FIXME: We should see if we can get away with warning or erroring on
417 // this. Perhaps put under -pedantic?
418 if (getTriple().getArch() == llvm::Triple::arm ||
419 getTriple().getArch() == llvm::Triple::thumb)
Daniel Dunbar84d1e6e2010-03-20 08:47:42 +0000420 OSXTarget = 0;
Daniel Dunbar39053672010-02-02 17:31:12 +0000421 else
Daniel Dunbar84d1e6e2010-03-20 08:47:42 +0000422 iPhoneOSTarget = 0;
Daniel Dunbar39053672010-02-02 17:31:12 +0000423 }
Daniel Dunbar1a3c1d92010-01-29 17:02:25 +0000424
Daniel Dunbar39053672010-02-02 17:31:12 +0000425 if (OSXTarget) {
Daniel Dunbar30392de2009-09-04 18:35:21 +0000426 const Option *O = Opts.getOption(options::OPT_mmacosx_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000427 OSXVersion = Args.MakeJoinedArg(0, O, OSXTarget);
428 Args.append(OSXVersion);
Daniel Dunbar816bc312010-01-26 01:45:19 +0000429 } else if (iPhoneOSTarget) {
Daniel Dunbar30392de2009-09-04 18:35:21 +0000430 const Option *O = Opts.getOption(options::OPT_miphoneos_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000431 iPhoneVersion = Args.MakeJoinedArg(0, O, iPhoneOSTarget);
432 Args.append(iPhoneVersion);
Daniel Dunbar816bc312010-01-26 01:45:19 +0000433 } else {
Daniel Dunbar2bb38d02010-07-15 16:18:06 +0000434 // Otherwise, assume we are targeting OS X.
435 const Option *O = Opts.getOption(options::OPT_mmacosx_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000436 OSXVersion = Args.MakeJoinedArg(0, O, MacosxVersionMin);
437 Args.append(OSXVersion);
Daniel Dunbar30392de2009-09-04 18:35:21 +0000438 }
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000439 }
Mike Stump1eb44332009-09-09 15:08:12 +0000440
Daniel Dunbar26031372010-01-27 00:56:25 +0000441 // Set the tool chain target information.
442 unsigned Major, Minor, Micro;
443 bool HadExtra;
444 if (OSXVersion) {
445 assert(!iPhoneVersion && "Unknown target platform!");
446 if (!Driver::GetReleaseVersion(OSXVersion->getValue(Args), Major, Minor,
447 Micro, HadExtra) || HadExtra ||
448 Major != 10 || Minor >= 10 || Micro >= 10)
449 getDriver().Diag(clang::diag::err_drv_invalid_version_number)
450 << OSXVersion->getAsString(Args);
451 } else {
452 assert(iPhoneVersion && "Unknown target platform!");
453 if (!Driver::GetReleaseVersion(iPhoneVersion->getValue(Args), Major, Minor,
454 Micro, HadExtra) || HadExtra ||
455 Major >= 10 || Minor >= 100 || Micro >= 100)
456 getDriver().Diag(clang::diag::err_drv_invalid_version_number)
457 << iPhoneVersion->getAsString(Args);
458 }
459 setTarget(iPhoneVersion, Major, Minor, Micro);
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000460}
461
Daniel Dunbar132e35d2010-09-17 01:20:05 +0000462void DarwinClang::AddCXXStdlibLibArgs(const ArgList &Args,
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000463 ArgStringList &CmdArgs) const {
464 CXXStdlibType Type = GetCXXStdlibType(Args);
465
466 switch (Type) {
467 case ToolChain::CST_Libcxx:
468 CmdArgs.push_back("-lc++");
469 break;
470
471 case ToolChain::CST_Libstdcxx: {
472 // Unfortunately, -lstdc++ doesn't always exist in the standard search path;
473 // it was previously found in the gcc lib dir. However, for all the Darwin
474 // platforms we care about it was -lstdc++.6, so we search for that
475 // explicitly if we can't see an obvious -lstdc++ candidate.
476
477 // Check in the sysroot first.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000478 bool Exists;
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000479 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
480 llvm::sys::Path P(A->getValue(Args));
481 P.appendComponent("usr");
482 P.appendComponent("lib");
483 P.appendComponent("libstdc++.dylib");
484
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 P.eraseComponent();
487 P.appendComponent("libstdc++.6.dylib");
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000488 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists) {
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000489 CmdArgs.push_back(Args.MakeArgString(P.str()));
490 return;
491 }
492 }
493 }
494
495 // Otherwise, look in the root.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000496 if ((llvm::sys::fs::exists("/usr/lib/libstdc++.dylib", Exists) || !Exists)&&
497 (!llvm::sys::fs::exists("/usr/lib/libstdc++.6.dylib", Exists) && Exists)){
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000498 CmdArgs.push_back("/usr/lib/libstdc++.6.dylib");
499 return;
500 }
501
502 // Otherwise, let the linker search.
503 CmdArgs.push_back("-lstdc++");
504 break;
505 }
506 }
507}
508
Shantonu Sen7433fed2010-09-17 18:39:08 +0000509void DarwinClang::AddCCKextLibArgs(const ArgList &Args,
510 ArgStringList &CmdArgs) const {
511
512 // For Darwin platforms, use the compiler-rt-based support library
513 // instead of the gcc-provided one (which is also incidentally
514 // only present in the gcc lib dir, which makes it hard to find).
515
516 llvm::sys::Path P(getDriver().ResourceDir);
517 P.appendComponent("lib");
518 P.appendComponent("darwin");
519 P.appendComponent("libclang_rt.cc_kext.a");
520
521 // For now, allow missing resource libraries to support developers who may
522 // not have compiler-rt checked out or integrated into their build.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000523 bool Exists;
524 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Shantonu Sen7433fed2010-09-17 18:39:08 +0000525 CmdArgs.push_back(Args.MakeArgString(P.str()));
526}
527
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000528DerivedArgList *Darwin::TranslateArgs(const DerivedArgList &Args,
529 const char *BoundArch) const {
530 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
531 const OptTable &Opts = getDriver().getOpts();
532
533 // FIXME: We really want to get out of the tool chain level argument
534 // translation business, as it makes the driver functionality much
535 // more opaque. For now, we follow gcc closely solely for the
536 // purpose of easily achieving feature parity & testability. Once we
537 // have something that works, we should reevaluate each translation
538 // and try to push it down into tool specific logic.
Daniel Dunbar26031372010-01-27 00:56:25 +0000539
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000540 for (ArgList::const_iterator it = Args.begin(),
541 ie = Args.end(); it != ie; ++it) {
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000542 Arg *A = *it;
543
544 if (A->getOption().matches(options::OPT_Xarch__)) {
545 // FIXME: Canonicalize name.
546 if (getArchName() != A->getValue(Args, 0))
547 continue;
548
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000549 Arg *OriginalArg = A;
Daniel Dunbar0e100312010-06-14 21:23:08 +0000550 unsigned Index = Args.getBaseArgs().MakeIndex(A->getValue(Args, 1));
551 unsigned Prev = Index;
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000552 Arg *XarchArg = Opts.ParseOneArg(Args, Index);
Mike Stump1eb44332009-09-09 15:08:12 +0000553
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000554 // If the argument parsing failed or more than one argument was
555 // consumed, the -Xarch_ argument's parameter tried to consume
556 // extra arguments. Emit an error and ignore.
557 //
558 // We also want to disallow any options which would alter the
559 // driver behavior; that isn't going to work in our model. We
560 // use isDriverOption() as an approximation, although things
561 // like -O4 are going to slip through.
Mike Stump1eb44332009-09-09 15:08:12 +0000562 if (!XarchArg || Index > Prev + 1 ||
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000563 XarchArg->getOption().isDriverOption()) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000564 getDriver().Diag(clang::diag::err_drv_invalid_Xarch_argument)
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000565 << A->getAsString(Args);
566 continue;
567 }
568
Daniel Dunbar478edc22009-03-29 22:29:05 +0000569 XarchArg->setBaseArg(A);
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000570 A = XarchArg;
Daniel Dunbar0e100312010-06-14 21:23:08 +0000571
572 DAL->AddSynthesizedArg(A);
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000573
574 // Linker input arguments require custom handling. The problem is that we
575 // have already constructed the phase actions, so we can not treat them as
576 // "input arguments".
577 if (A->getOption().isLinkerInput()) {
578 // Convert the argument into individual Zlinker_input_args.
579 for (unsigned i = 0, e = A->getNumValues(); i != e; ++i) {
580 DAL->AddSeparateArg(OriginalArg,
581 Opts.getOption(options::OPT_Zlinker_input),
582 A->getValue(Args, i));
583
584 }
585 continue;
586 }
Mike Stump1eb44332009-09-09 15:08:12 +0000587 }
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000588
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000589 // Sob. These is strictly gcc compatible for the time being. Apple
590 // gcc translates options twice, which means that self-expanding
591 // options add duplicates.
Daniel Dunbar9e1f9822009-11-19 04:14:53 +0000592 switch ((options::ID) A->getOption().getID()) {
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000593 default:
594 DAL->append(A);
595 break;
596
597 case options::OPT_mkernel:
598 case options::OPT_fapple_kext:
599 DAL->append(A);
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000600 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
601 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000602 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000603
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000604 case options::OPT_dependency_file:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000605 DAL->AddSeparateArg(A, Opts.getOption(options::OPT_MF),
606 A->getValue(Args));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000607 break;
608
609 case options::OPT_gfull:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000610 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
611 DAL->AddFlagArg(A,
612 Opts.getOption(options::OPT_fno_eliminate_unused_debug_symbols));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000613 break;
614
615 case options::OPT_gused:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000616 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
617 DAL->AddFlagArg(A,
618 Opts.getOption(options::OPT_feliminate_unused_debug_symbols));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000619 break;
620
621 case options::OPT_fterminated_vtables:
622 case options::OPT_findirect_virtual_calls:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000623 DAL->AddFlagArg(A, Opts.getOption(options::OPT_fapple_kext));
624 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000625 break;
626
627 case options::OPT_shared:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000628 DAL->AddFlagArg(A, Opts.getOption(options::OPT_dynamiclib));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000629 break;
630
631 case options::OPT_fconstant_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000632 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mconstant_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000633 break;
634
635 case options::OPT_fno_constant_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000636 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_constant_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000637 break;
638
639 case options::OPT_Wnonportable_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000640 DAL->AddFlagArg(A,
641 Opts.getOption(options::OPT_mwarn_nonportable_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000642 break;
643
644 case options::OPT_Wno_nonportable_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000645 DAL->AddFlagArg(A,
646 Opts.getOption(options::OPT_mno_warn_nonportable_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000647 break;
648
649 case options::OPT_fpascal_strings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000650 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mpascal_strings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000651 break;
652
653 case options::OPT_fno_pascal_strings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000654 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_pascal_strings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000655 break;
656 }
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000657 }
658
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000659 if (getTriple().getArch() == llvm::Triple::x86 ||
660 getTriple().getArch() == llvm::Triple::x86_64)
Daniel Dunbare4bdae72009-11-19 04:00:53 +0000661 if (!Args.hasArgNoClaim(options::OPT_mtune_EQ))
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000662 DAL->AddJoinedArg(0, Opts.getOption(options::OPT_mtune_EQ), "core2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000663
664 // Add the arch options based on the particular spelling of -arch, to match
665 // how the driver driver works.
666 if (BoundArch) {
667 llvm::StringRef Name = BoundArch;
668 const Option *MCpu = Opts.getOption(options::OPT_mcpu_EQ);
669 const Option *MArch = Opts.getOption(options::OPT_march_EQ);
670
671 // This code must be kept in sync with LLVM's getArchTypeForDarwinArch,
672 // which defines the list of which architectures we accept.
673 if (Name == "ppc")
674 ;
675 else if (Name == "ppc601")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000676 DAL->AddJoinedArg(0, MCpu, "601");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000677 else if (Name == "ppc603")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000678 DAL->AddJoinedArg(0, MCpu, "603");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000679 else if (Name == "ppc604")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000680 DAL->AddJoinedArg(0, MCpu, "604");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000681 else if (Name == "ppc604e")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000682 DAL->AddJoinedArg(0, MCpu, "604e");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000683 else if (Name == "ppc750")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000684 DAL->AddJoinedArg(0, MCpu, "750");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000685 else if (Name == "ppc7400")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000686 DAL->AddJoinedArg(0, MCpu, "7400");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000687 else if (Name == "ppc7450")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000688 DAL->AddJoinedArg(0, MCpu, "7450");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000689 else if (Name == "ppc970")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000690 DAL->AddJoinedArg(0, MCpu, "970");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000691
692 else if (Name == "ppc64")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000693 DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000694
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000695 else if (Name == "i386")
696 ;
697 else if (Name == "i486")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000698 DAL->AddJoinedArg(0, MArch, "i486");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000699 else if (Name == "i586")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000700 DAL->AddJoinedArg(0, MArch, "i586");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000701 else if (Name == "i686")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000702 DAL->AddJoinedArg(0, MArch, "i686");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000703 else if (Name == "pentium")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000704 DAL->AddJoinedArg(0, MArch, "pentium");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000705 else if (Name == "pentium2")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000706 DAL->AddJoinedArg(0, MArch, "pentium2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000707 else if (Name == "pentpro")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000708 DAL->AddJoinedArg(0, MArch, "pentiumpro");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000709 else if (Name == "pentIIm3")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000710 DAL->AddJoinedArg(0, MArch, "pentium2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000711
712 else if (Name == "x86_64")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000713 DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64));
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000714
715 else if (Name == "arm")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000716 DAL->AddJoinedArg(0, MArch, "armv4t");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000717 else if (Name == "armv4t")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000718 DAL->AddJoinedArg(0, MArch, "armv4t");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000719 else if (Name == "armv5")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000720 DAL->AddJoinedArg(0, MArch, "armv5tej");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000721 else if (Name == "xscale")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000722 DAL->AddJoinedArg(0, MArch, "xscale");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000723 else if (Name == "armv6")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000724 DAL->AddJoinedArg(0, MArch, "armv6k");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000725 else if (Name == "armv7")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000726 DAL->AddJoinedArg(0, MArch, "armv7a");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000727
728 else
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000729 llvm_unreachable("invalid Darwin arch");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000730 }
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000731
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000732 // Add an explicit version min argument for the deployment target. We do this
733 // after argument translation because -Xarch_ arguments may add a version min
734 // argument.
735 AddDeploymentTarget(*DAL);
736
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000737 return DAL;
Mike Stump1eb44332009-09-09 15:08:12 +0000738}
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000739
Daniel Dunbarf3955282009-09-04 18:34:51 +0000740bool Darwin::IsUnwindTablesDefault() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000741 // FIXME: Gross; we should probably have some separate target
742 // definition, possibly even reusing the one in clang.
743 return getArchName() == "x86_64";
744}
745
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000746bool Darwin::UseDwarfDebugFlags() const {
747 if (const char *S = ::getenv("RC_DEBUG_OPTIONS"))
748 return S[0] != '\0';
749 return false;
750}
751
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000752bool Darwin::UseSjLjExceptions() const {
753 // Darwin uses SjLj exceptions on ARM.
754 return (getTriple().getArch() == llvm::Triple::arm ||
755 getTriple().getArch() == llvm::Triple::thumb);
756}
757
Daniel Dunbarf3955282009-09-04 18:34:51 +0000758const char *Darwin::GetDefaultRelocationModel() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000759 return "pic";
760}
761
Daniel Dunbarf3955282009-09-04 18:34:51 +0000762const char *Darwin::GetForcedPicModel() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000763 if (getArchName() == "x86_64")
764 return "pic";
765 return 0;
766}
767
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000768bool Darwin::SupportsProfiling() const {
769 // Profiling instrumentation is only supported on x86.
770 return getArchName() == "i386" || getArchName() == "x86_64";
771}
772
Daniel Dunbar43a9b322010-04-10 16:20:23 +0000773bool Darwin::SupportsObjCGC() const {
774 // Garbage collection is supported everywhere except on iPhone OS.
775 return !isTargetIPhoneOS();
776}
777
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000778std::string
779Darwin_Generic_GCC::ComputeEffectiveClangTriple(const ArgList &Args) const {
780 return ComputeLLVMTriple(Args);
781}
782
Daniel Dunbar39176082009-03-20 00:20:03 +0000783/// Generic_GCC - A tool chain using the 'gcc' command to perform
784/// all subcommands; this relies on gcc translating the majority of
785/// command line options.
786
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000787Generic_GCC::Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple)
Mike Stump1eb44332009-09-09 15:08:12 +0000788 : ToolChain(Host, Triple) {
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000789 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +0000790 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000791 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbarc50b00d2009-03-23 16:15:50 +0000792}
793
Daniel Dunbar39176082009-03-20 00:20:03 +0000794Generic_GCC::~Generic_GCC() {
795 // Free tool implementations.
796 for (llvm::DenseMap<unsigned, Tool*>::iterator
797 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
798 delete it->second;
799}
800
Mike Stump1eb44332009-09-09 15:08:12 +0000801Tool &Generic_GCC::SelectTool(const Compilation &C,
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000802 const JobAction &JA,
803 const ActionList &Inputs) const {
Daniel Dunbar39176082009-03-20 00:20:03 +0000804 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000805 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar39176082009-03-20 00:20:03 +0000806 Key = Action::AnalyzeJobClass;
807 else
808 Key = JA.getKind();
809
810 Tool *&T = Tools[Key];
811 if (!T) {
812 switch (Key) {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000813 case Action::InputClass:
814 case Action::BindArchClass:
Daniel Dunbar39176082009-03-20 00:20:03 +0000815 assert(0 && "Invalid tool kind.");
816 case Action::PreprocessJobClass:
817 T = new tools::gcc::Preprocess(*this); break;
818 case Action::PrecompileJobClass:
819 T = new tools::gcc::Precompile(*this); break;
820 case Action::AnalyzeJobClass:
821 T = new tools::Clang(*this); break;
822 case Action::CompileJobClass:
823 T = new tools::gcc::Compile(*this); break;
824 case Action::AssembleJobClass:
825 T = new tools::gcc::Assemble(*this); break;
826 case Action::LinkJobClass:
827 T = new tools::gcc::Link(*this); break;
Mike Stump1eb44332009-09-09 15:08:12 +0000828
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000829 // This is a bit ungeneric, but the only platform using a driver
830 // driver is Darwin.
831 case Action::LipoJobClass:
832 T = new tools::darwin::Lipo(*this); break;
Daniel Dunbar6e0f2542010-06-04 18:28:36 +0000833 case Action::DsymutilJobClass:
834 T = new tools::darwin::Dsymutil(*this); break;
Daniel Dunbar39176082009-03-20 00:20:03 +0000835 }
836 }
837
838 return *T;
839}
840
Daniel Dunbar39176082009-03-20 00:20:03 +0000841bool Generic_GCC::IsUnwindTablesDefault() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000842 // FIXME: Gross; we should probably have some separate target
843 // definition, possibly even reusing the one in clang.
Daniel Dunbar39176082009-03-20 00:20:03 +0000844 return getArchName() == "x86_64";
845}
846
847const char *Generic_GCC::GetDefaultRelocationModel() const {
848 return "static";
849}
850
851const char *Generic_GCC::GetForcedPicModel() const {
852 return 0;
853}
Daniel Dunbarf3cad362009-03-25 04:13:45 +0000854
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000855/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
856/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
857/// Currently does not support anything else but compilation.
858
859TCEToolChain::TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple)
860 : ToolChain(Host, Triple) {
861 // Path mangling to find libexec
862 std::string Path(getDriver().Dir);
863
864 Path += "/../libexec";
865 getProgramPaths().push_back(Path);
866}
867
868TCEToolChain::~TCEToolChain() {
869 for (llvm::DenseMap<unsigned, Tool*>::iterator
870 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
871 delete it->second;
872}
873
874bool TCEToolChain::IsMathErrnoDefault() const {
875 return true;
876}
877
878bool TCEToolChain::IsUnwindTablesDefault() const {
879 return false;
880}
881
882const char *TCEToolChain::GetDefaultRelocationModel() const {
883 return "static";
884}
885
886const char *TCEToolChain::GetForcedPicModel() const {
887 return 0;
888}
889
890Tool &TCEToolChain::SelectTool(const Compilation &C,
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000891 const JobAction &JA,
892 const ActionList &Inputs) const {
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000893 Action::ActionClass Key;
894 Key = Action::AnalyzeJobClass;
895
896 Tool *&T = Tools[Key];
897 if (!T) {
898 switch (Key) {
899 case Action::PreprocessJobClass:
900 T = new tools::gcc::Preprocess(*this); break;
901 case Action::AnalyzeJobClass:
902 T = new tools::Clang(*this); break;
903 default:
904 assert(false && "Unsupported action for TCE target.");
905 }
906 }
907 return *T;
908}
909
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000910/// OpenBSD - OpenBSD tool chain which can call as(1) and ld(1) directly.
911
912OpenBSD::OpenBSD(const HostInfo &Host, const llvm::Triple& Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000913 : Generic_ELF(Host, Triple) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000914 getFilePaths().push_back(getDriver().Dir + "/../lib");
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000915 getFilePaths().push_back("/usr/lib");
916}
917
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000918Tool &OpenBSD::SelectTool(const Compilation &C, const JobAction &JA,
919 const ActionList &Inputs) const {
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000920 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000921 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000922 Key = Action::AnalyzeJobClass;
923 else
924 Key = JA.getKind();
925
Rafael Espindoladda5b922010-11-07 23:13:01 +0000926 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
927 options::OPT_no_integrated_as,
928 IsIntegratedAssemblerDefault());
929
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000930 Tool *&T = Tools[Key];
931 if (!T) {
932 switch (Key) {
Rafael Espindoladda5b922010-11-07 23:13:01 +0000933 case Action::AssembleJobClass: {
934 if (UseIntegratedAs)
935 T = new tools::ClangAs(*this);
936 else
937 T = new tools::openbsd::Assemble(*this);
938 break;
939 }
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000940 case Action::LinkJobClass:
941 T = new tools::openbsd::Link(*this); break;
942 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000943 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000944 }
945 }
946
947 return *T;
948}
949
Daniel Dunbar75358d22009-03-30 21:06:03 +0000950/// FreeBSD - FreeBSD tool chain which can call as(1) and ld(1) directly.
951
Daniel Dunbar214afe92010-08-02 05:43:59 +0000952FreeBSD::FreeBSD(const HostInfo &Host, const llvm::Triple& Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000953 : Generic_ELF(Host, Triple) {
Daniel Dunbar214afe92010-08-02 05:43:59 +0000954
955 // Determine if we are compiling 32-bit code on an x86_64 platform.
956 bool Lib32 = false;
957 if (Triple.getArch() == llvm::Triple::x86 &&
958 llvm::Triple(getDriver().DefaultHostTriple).getArch() ==
959 llvm::Triple::x86_64)
960 Lib32 = true;
961
Daniel Dunbarbc534662009-04-02 18:30:04 +0000962 if (Lib32) {
Daniel Dunbarbc534662009-04-02 18:30:04 +0000963 getFilePaths().push_back("/usr/lib32");
964 } else {
Daniel Dunbarbc534662009-04-02 18:30:04 +0000965 getFilePaths().push_back("/usr/lib");
966 }
Daniel Dunbar75358d22009-03-30 21:06:03 +0000967}
968
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000969Tool &FreeBSD::SelectTool(const Compilation &C, const JobAction &JA,
970 const ActionList &Inputs) const {
Daniel Dunbar75358d22009-03-30 21:06:03 +0000971 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000972 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar75358d22009-03-30 21:06:03 +0000973 Key = Action::AnalyzeJobClass;
974 else
975 Key = JA.getKind();
976
Roman Divacky67dece72010-11-08 17:46:39 +0000977 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
978 options::OPT_no_integrated_as,
979 IsIntegratedAssemblerDefault());
980
Daniel Dunbar75358d22009-03-30 21:06:03 +0000981 Tool *&T = Tools[Key];
982 if (!T) {
983 switch (Key) {
Daniel Dunbar68a31d42009-03-31 17:45:15 +0000984 case Action::AssembleJobClass:
Roman Divacky67dece72010-11-08 17:46:39 +0000985 if (UseIntegratedAs)
986 T = new tools::ClangAs(*this);
987 else
988 T = new tools::freebsd::Assemble(*this);
Roman Divackyfe3a7ea2010-11-08 19:39:10 +0000989 break;
Daniel Dunbar008f54a2009-04-01 19:36:32 +0000990 case Action::LinkJobClass:
991 T = new tools::freebsd::Link(*this); break;
Daniel Dunbar75358d22009-03-30 21:06:03 +0000992 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000993 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Daniel Dunbar75358d22009-03-30 21:06:03 +0000994 }
995 }
996
997 return *T;
998}
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000999
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001000/// NetBSD - NetBSD tool chain which can call as(1) and ld(1) directly.
1001
1002NetBSD::NetBSD(const HostInfo &Host, const llvm::Triple& Triple)
1003 : Generic_ELF(Host, Triple) {
1004
1005 // Determine if we are compiling 32-bit code on an x86_64 platform.
1006 bool Lib32 = false;
1007 if (Triple.getArch() == llvm::Triple::x86 &&
1008 llvm::Triple(getDriver().DefaultHostTriple).getArch() ==
1009 llvm::Triple::x86_64)
1010 Lib32 = true;
1011
1012 getProgramPaths().push_back(getDriver().Dir + "/../libexec");
1013 getProgramPaths().push_back("/usr/libexec");
1014 if (Lib32) {
1015 getFilePaths().push_back("/usr/lib/i386");
1016 } else {
1017 getFilePaths().push_back("/usr/lib");
1018 }
1019}
1020
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001021Tool &NetBSD::SelectTool(const Compilation &C, const JobAction &JA,
1022 const ActionList &Inputs) const {
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001023 Action::ActionClass Key;
1024 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1025 Key = Action::AnalyzeJobClass;
1026 else
1027 Key = JA.getKind();
1028
1029 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
1030 options::OPT_no_integrated_as,
1031 IsIntegratedAssemblerDefault());
1032
1033 Tool *&T = Tools[Key];
1034 if (!T) {
1035 switch (Key) {
1036 case Action::AssembleJobClass:
1037 if (UseIntegratedAs)
1038 T = new tools::ClangAs(*this);
1039 else
1040 T = new tools::netbsd::Assemble(*this);
1041 break;
1042 case Action::LinkJobClass:
1043 T = new tools::netbsd::Link(*this); break;
1044 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001045 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001046 }
1047 }
1048
1049 return *T;
1050}
1051
Chris Lattner38e317d2010-07-07 16:01:42 +00001052/// Minix - Minix tool chain which can call as(1) and ld(1) directly.
1053
1054Minix::Minix(const HostInfo &Host, const llvm::Triple& Triple)
1055 : Generic_GCC(Host, Triple) {
1056 getFilePaths().push_back(getDriver().Dir + "/../lib");
1057 getFilePaths().push_back("/usr/lib");
1058 getFilePaths().push_back("/usr/gnu/lib");
1059 getFilePaths().push_back("/usr/gnu/lib/gcc/i686-pc-minix/4.4.3");
1060}
1061
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001062Tool &Minix::SelectTool(const Compilation &C, const JobAction &JA,
1063 const ActionList &Inputs) const {
Chris Lattner38e317d2010-07-07 16:01:42 +00001064 Action::ActionClass Key;
1065 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1066 Key = Action::AnalyzeJobClass;
1067 else
1068 Key = JA.getKind();
1069
1070 Tool *&T = Tools[Key];
1071 if (!T) {
1072 switch (Key) {
1073 case Action::AssembleJobClass:
1074 T = new tools::minix::Assemble(*this); break;
1075 case Action::LinkJobClass:
1076 T = new tools::minix::Link(*this); break;
1077 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001078 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Chris Lattner38e317d2010-07-07 16:01:42 +00001079 }
1080 }
1081
1082 return *T;
1083}
1084
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001085/// AuroraUX - AuroraUX tool chain which can call as(1) and ld(1) directly.
1086
1087AuroraUX::AuroraUX(const HostInfo &Host, const llvm::Triple& Triple)
1088 : Generic_GCC(Host, Triple) {
1089
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001090 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +00001091 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001092 getProgramPaths().push_back(getDriver().Dir);
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001093
Daniel Dunbaree788e72009-12-21 18:54:17 +00001094 getFilePaths().push_back(getDriver().Dir + "/../lib");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001095 getFilePaths().push_back("/usr/lib");
1096 getFilePaths().push_back("/usr/sfw/lib");
1097 getFilePaths().push_back("/opt/gcc4/lib");
Edward O'Callaghan7adf9492009-10-15 07:44:07 +00001098 getFilePaths().push_back("/opt/gcc4/lib/gcc/i386-pc-solaris2.11/4.2.4");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001099
1100}
1101
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001102Tool &AuroraUX::SelectTool(const Compilation &C, const JobAction &JA,
1103 const ActionList &Inputs) const {
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001104 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +00001105 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001106 Key = Action::AnalyzeJobClass;
1107 else
1108 Key = JA.getKind();
1109
1110 Tool *&T = Tools[Key];
1111 if (!T) {
1112 switch (Key) {
1113 case Action::AssembleJobClass:
1114 T = new tools::auroraux::Assemble(*this); break;
1115 case Action::LinkJobClass:
1116 T = new tools::auroraux::Link(*this); break;
1117 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001118 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001119 }
1120 }
1121
1122 return *T;
1123}
1124
1125
Eli Friedman6b3454a2009-05-26 07:52:18 +00001126/// Linux toolchain (very bare-bones at the moment).
1127
Rafael Espindolac1da9812010-11-07 20:14:31 +00001128enum LinuxDistro {
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001129 ArchLinux,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001130 DebianLenny,
1131 DebianSqueeze,
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001132 Exherbo,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001133 Fedora13,
1134 Fedora14,
1135 OpenSuse11_3,
Douglas Gregor814638e2011-03-14 15:39:50 +00001136 UbuntuHardy,
1137 UbuntuIntrepid,
Rafael Espindola021aaa42010-11-10 05:00:22 +00001138 UbuntuJaunty,
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001139 UbuntuKarmic,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001140 UbuntuLucid,
1141 UbuntuMaverick,
1142 UnknownDistro
1143};
1144
1145static bool IsFedora(enum LinuxDistro Distro) {
1146 return Distro == Fedora13 || Distro == Fedora14;
1147}
1148
1149static bool IsOpenSuse(enum LinuxDistro Distro) {
1150 return Distro == OpenSuse11_3;
1151}
1152
1153static bool IsDebian(enum LinuxDistro Distro) {
1154 return Distro == DebianLenny || Distro == DebianSqueeze;
1155}
1156
1157static bool IsUbuntu(enum LinuxDistro Distro) {
Douglas Gregor814638e2011-03-14 15:39:50 +00001158 return Distro == UbuntuHardy || Distro == UbuntuIntrepid ||
1159 Distro == UbuntuLucid || Distro == UbuntuMaverick ||
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001160 Distro == UbuntuJaunty || Distro == UbuntuKarmic;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001161}
1162
1163static bool IsDebianBased(enum LinuxDistro Distro) {
1164 return IsDebian(Distro) || IsUbuntu(Distro);
1165}
1166
1167static bool HasMultilib(llvm::Triple::ArchType Arch, enum LinuxDistro Distro) {
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001168 if (Arch == llvm::Triple::x86_64) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001169 bool Exists;
1170 if (Distro == Exherbo &&
1171 (llvm::sys::fs::exists("/usr/lib32/libc.so", Exists) || !Exists))
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001172 return false;
1173
Rafael Espindolac1da9812010-11-07 20:14:31 +00001174 return true;
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001175 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00001176 if (Arch == llvm::Triple::x86 && IsDebianBased(Distro))
1177 return true;
1178 return false;
1179}
1180
1181static LinuxDistro DetectLinuxDistro(llvm::Triple::ArchType Arch) {
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001182 llvm::OwningPtr<llvm::MemoryBuffer> File;
1183 if (!llvm::MemoryBuffer::getFile("/etc/lsb-release", File)) {
1184 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001185 llvm::SmallVector<llvm::StringRef, 8> Lines;
1186 Data.split(Lines, "\n");
1187 for (unsigned int i = 0, s = Lines.size(); i < s; ++ i) {
Douglas Gregor814638e2011-03-14 15:39:50 +00001188 if (Lines[i] == "DISTRIB_CODENAME=hardy")
1189 return UbuntuHardy;
1190 if (Lines[i] == "DISTRIB_CODENAME=intrepid")
1191 return UbuntuIntrepid;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001192 if (Lines[i] == "DISTRIB_CODENAME=maverick")
1193 return UbuntuMaverick;
1194 else if (Lines[i] == "DISTRIB_CODENAME=lucid")
1195 return UbuntuLucid;
Rafael Espindola021aaa42010-11-10 05:00:22 +00001196 else if (Lines[i] == "DISTRIB_CODENAME=jaunty")
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001197 return UbuntuJaunty;
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001198 else if (Lines[i] == "DISTRIB_CODENAME=karmic")
1199 return UbuntuKarmic;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001200 }
1201 return UnknownDistro;
1202 }
1203
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001204 if (!llvm::MemoryBuffer::getFile("/etc/redhat-release", File)) {
1205 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001206 if (Data.startswith("Fedora release 14 (Laughlin)"))
1207 return Fedora14;
1208 else if (Data.startswith("Fedora release 13 (Goddard)"))
1209 return Fedora13;
1210 return UnknownDistro;
1211 }
1212
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001213 if (!llvm::MemoryBuffer::getFile("/etc/debian_version", File)) {
1214 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001215 if (Data[0] == '5')
1216 return DebianLenny;
1217 else if (Data.startswith("squeeze/sid"))
1218 return DebianSqueeze;
1219 return UnknownDistro;
1220 }
1221
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001222 if (!llvm::MemoryBuffer::getFile("/etc/SuSE-release", File)) {
1223 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001224 if (Data.startswith("openSUSE 11.3"))
1225 return OpenSuse11_3;
1226 return UnknownDistro;
1227 }
1228
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001229 bool Exists;
1230 if (!llvm::sys::fs::exists("/etc/exherbo-release", Exists) && Exists)
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001231 return Exherbo;
1232
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001233 if (!llvm::sys::fs::exists("/etc/arch-release", Exists) && Exists)
1234 return ArchLinux;
1235
Rafael Espindolac1da9812010-11-07 20:14:31 +00001236 return UnknownDistro;
1237}
1238
Nick Lewycky3fdcc6f2010-12-31 17:31:54 +00001239Linux::Linux(const HostInfo &Host, const llvm::Triple &Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +00001240 : Generic_ELF(Host, Triple) {
Rafael Espindolac1da9812010-11-07 20:14:31 +00001241 llvm::Triple::ArchType Arch =
1242 llvm::Triple(getDriver().DefaultHostTriple).getArch();
Daniel Dunbara9822de2009-08-06 01:47:11 +00001243
Rafael Espindolac1da9812010-11-07 20:14:31 +00001244 std::string Suffix32 = "";
1245 if (Arch == llvm::Triple::x86_64)
1246 Suffix32 = "/32";
Daniel Dunbara9822de2009-08-06 01:47:11 +00001247
Rafael Espindolac1da9812010-11-07 20:14:31 +00001248 std::string Suffix64 = "";
1249 if (Arch == llvm::Triple::x86)
1250 Suffix64 = "/64";
1251
1252 std::string Lib32 = "lib";
1253
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001254 bool Exists;
1255 if (!llvm::sys::fs::exists("/lib32", Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001256 Lib32 = "lib32";
1257
1258 std::string Lib64 = "lib";
Michael J. Spencer2dea7c72011-01-12 23:54:48 +00001259 bool Symlink;
Chris Lattner48aef362011-01-13 01:35:58 +00001260 if (!llvm::sys::fs::exists("/lib64", Exists) && Exists &&
1261 (llvm::sys::fs::is_symlink("/lib64", Symlink) || !Symlink))
Rafael Espindolac1da9812010-11-07 20:14:31 +00001262 Lib64 = "lib64";
1263
1264 std::string GccTriple = "";
Douglas Gregorf0594d82011-03-06 19:11:49 +00001265 if (Arch == llvm::Triple::arm || Arch == llvm::Triple::thumb) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001266 if (!llvm::sys::fs::exists("/usr/lib/gcc/arm-linux-gnueabi", Exists) &&
1267 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001268 GccTriple = "arm-linux-gnueabi";
1269 } else if (Arch == llvm::Triple::x86_64) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001270 if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-linux-gnu", Exists) &&
1271 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001272 GccTriple = "x86_64-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001273 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-unknown-linux-gnu",
1274 Exists) && Exists)
Rafael Espindola53dd00b2010-11-17 00:25:26 +00001275 GccTriple = "x86_64-unknown-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001276 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-pc-linux-gnu",
1277 Exists) && Exists)
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001278 GccTriple = "x86_64-pc-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001279 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-redhat-linux",
1280 Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001281 GccTriple = "x86_64-redhat-linux";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001282 else if (!llvm::sys::fs::exists("/usr/lib64/gcc/x86_64-suse-linux",
1283 Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001284 GccTriple = "x86_64-suse-linux";
Nick Lewyckye10f9002011-02-01 23:03:29 +00001285 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-manbo-linux-gnu",
1286 Exists) && Exists)
1287 GccTriple = "x86_64-manbo-linux-gnu";
Rafael Espindolac1da9812010-11-07 20:14:31 +00001288 } else if (Arch == llvm::Triple::x86) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001289 if (!llvm::sys::fs::exists("/usr/lib/gcc/i686-linux-gnu", Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001290 GccTriple = "i686-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001291 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i686-pc-linux-gnu", Exists) &&
1292 Exists)
Nuno Lopes2a69ddd2010-11-19 17:26:57 +00001293 GccTriple = "i686-pc-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001294 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i486-linux-gnu", Exists) &&
1295 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001296 GccTriple = "i486-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001297 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i686-redhat-linux", Exists) &&
1298 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001299 GccTriple = "i686-redhat-linux";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001300 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i586-suse-linux", Exists) &&
1301 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001302 GccTriple = "i586-suse-linux";
1303 }
1304
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001305 const char* GccVersions[] = {"4.5.2", "4.5.1", "4.5", "4.4.5", "4.4.4",
1306 "4.4.3", "4.4", "4.3.4", "4.3.3", "4.3.2",
Douglas Gregor814638e2011-03-14 15:39:50 +00001307 "4.3", "4.2.4", "4.2.3", "4.2.2", "4.2.1",
1308 "4.2"};
Rafael Espindolac1da9812010-11-07 20:14:31 +00001309 std::string Base = "";
1310 for (unsigned i = 0; i < sizeof(GccVersions)/sizeof(char*); ++i) {
1311 std::string Suffix = GccTriple + "/" + GccVersions[i];
1312 std::string t1 = "/usr/lib/gcc/" + Suffix;
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001313 if (!llvm::sys::fs::exists(t1 + "/crtbegin.o", Exists) && Exists) {
Rafael Espindolac1da9812010-11-07 20:14:31 +00001314 Base = t1;
1315 break;
1316 }
1317 std::string t2 = "/usr/lib64/gcc/" + Suffix;
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001318 if (!llvm::sys::fs::exists(t2 + "/crtbegin.o", Exists) && Exists) {
Rafael Espindolac1da9812010-11-07 20:14:31 +00001319 Base = t2;
1320 break;
1321 }
1322 }
1323
1324 path_list &Paths = getFilePaths();
1325 bool Is32Bits = getArch() == llvm::Triple::x86;
1326
1327 std::string Suffix;
1328 std::string Lib;
1329
1330 if (Is32Bits) {
1331 Suffix = Suffix32;
1332 Lib = Lib32;
1333 } else {
1334 Suffix = Suffix64;
1335 Lib = Lib64;
1336 }
1337
1338 llvm::sys::Path LinkerPath(Base + "/../../../../" + GccTriple + "/bin/ld");
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001339 if (!llvm::sys::fs::exists(LinkerPath.str(), Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001340 Linker = LinkerPath.str();
1341 else
1342 Linker = GetProgramPath("ld");
1343
1344 LinuxDistro Distro = DetectLinuxDistro(Arch);
1345
Rafael Espindola94c80222010-11-08 14:48:47 +00001346 if (IsUbuntu(Distro)) {
1347 ExtraOpts.push_back("-z");
1348 ExtraOpts.push_back("relro");
1349 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00001350
Douglas Gregorf0594d82011-03-06 19:11:49 +00001351 if (Arch == llvm::Triple::arm || Arch == llvm::Triple::thumb)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001352 ExtraOpts.push_back("-X");
1353
1354 if (IsFedora(Distro) || Distro == UbuntuMaverick)
1355 ExtraOpts.push_back("--hash-style=gnu");
1356
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001357 if (IsDebian(Distro) || Distro == UbuntuLucid || Distro == UbuntuJaunty ||
1358 Distro == UbuntuKarmic)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001359 ExtraOpts.push_back("--hash-style=both");
1360
1361 if (IsFedora(Distro))
1362 ExtraOpts.push_back("--no-add-needed");
1363
Rafael Espindola021aaa42010-11-10 05:00:22 +00001364 if (Distro == DebianSqueeze || IsOpenSuse(Distro) ||
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001365 IsFedora(Distro) || Distro == UbuntuLucid || Distro == UbuntuMaverick ||
1366 Distro == UbuntuKarmic)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001367 ExtraOpts.push_back("--build-id");
1368
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001369 if (Distro == ArchLinux)
1370 Lib = "lib";
1371
Rafael Espindolac1da9812010-11-07 20:14:31 +00001372 Paths.push_back(Base + Suffix);
1373 if (HasMultilib(Arch, Distro)) {
1374 if (IsOpenSuse(Distro) && Is32Bits)
1375 Paths.push_back(Base + "/../../../../" + GccTriple + "/lib/../lib");
1376 Paths.push_back(Base + "/../../../../" + Lib);
1377 Paths.push_back("/lib/../" + Lib);
1378 Paths.push_back("/usr/lib/../" + Lib);
1379 }
1380 if (!Suffix.empty())
1381 Paths.push_back(Base);
1382 if (IsOpenSuse(Distro))
1383 Paths.push_back(Base + "/../../../../" + GccTriple + "/lib");
1384 Paths.push_back(Base + "/../../..");
1385 if (Arch == getArch() && IsUbuntu(Distro))
1386 Paths.push_back("/usr/lib/" + GccTriple);
1387}
1388
1389bool Linux::HasNativeLLVMSupport() const {
1390 return true;
Eli Friedman6b3454a2009-05-26 07:52:18 +00001391}
1392
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001393Tool &Linux::SelectTool(const Compilation &C, const JobAction &JA,
1394 const ActionList &Inputs) const {
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001395 Action::ActionClass Key;
1396 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1397 Key = Action::AnalyzeJobClass;
1398 else
1399 Key = JA.getKind();
1400
Rafael Espindoladda5b922010-11-07 23:13:01 +00001401 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
1402 options::OPT_no_integrated_as,
1403 IsIntegratedAssemblerDefault());
1404
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001405 Tool *&T = Tools[Key];
1406 if (!T) {
1407 switch (Key) {
1408 case Action::AssembleJobClass:
Rafael Espindoladda5b922010-11-07 23:13:01 +00001409 if (UseIntegratedAs)
1410 T = new tools::ClangAs(*this);
1411 else
1412 T = new tools::linuxtools::Assemble(*this);
1413 break;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001414 case Action::LinkJobClass:
1415 T = new tools::linuxtools::Link(*this); break;
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001416 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001417 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001418 }
1419 }
1420
1421 return *T;
1422}
1423
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001424/// DragonFly - DragonFly tool chain which can call as(1) and ld(1) directly.
1425
Daniel Dunbarcb8ab232009-05-22 02:53:45 +00001426DragonFly::DragonFly(const HostInfo &Host, const llvm::Triple& Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +00001427 : Generic_ELF(Host, Triple) {
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001428
1429 // Path mangling to find libexec
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001430 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +00001431 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001432 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001433
Daniel Dunbaree788e72009-12-21 18:54:17 +00001434 getFilePaths().push_back(getDriver().Dir + "/../lib");
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001435 getFilePaths().push_back("/usr/lib");
1436 getFilePaths().push_back("/usr/lib/gcc41");
1437}
1438
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001439Tool &DragonFly::SelectTool(const Compilation &C, const JobAction &JA,
1440 const ActionList &Inputs) const {
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001441 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +00001442 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001443 Key = Action::AnalyzeJobClass;
1444 else
1445 Key = JA.getKind();
1446
1447 Tool *&T = Tools[Key];
1448 if (!T) {
1449 switch (Key) {
1450 case Action::AssembleJobClass:
1451 T = new tools::dragonfly::Assemble(*this); break;
1452 case Action::LinkJobClass:
1453 T = new tools::dragonfly::Link(*this); break;
1454 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001455 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001456 }
1457 }
1458
1459 return *T;
1460}
Michael J. Spencerff58e362010-08-21 21:55:07 +00001461
1462Windows::Windows(const HostInfo &Host, const llvm::Triple& Triple)
1463 : ToolChain(Host, Triple) {
1464}
1465
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001466Tool &Windows::SelectTool(const Compilation &C, const JobAction &JA,
1467 const ActionList &Inputs) const {
Michael J. Spencerff58e362010-08-21 21:55:07 +00001468 Action::ActionClass Key;
1469 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1470 Key = Action::AnalyzeJobClass;
1471 else
1472 Key = JA.getKind();
1473
1474 Tool *&T = Tools[Key];
1475 if (!T) {
1476 switch (Key) {
1477 case Action::InputClass:
1478 case Action::BindArchClass:
Chandler Carruthe97673f2010-08-22 06:56:37 +00001479 case Action::LipoJobClass:
1480 case Action::DsymutilJobClass:
Michael J. Spencerff58e362010-08-21 21:55:07 +00001481 assert(0 && "Invalid tool kind.");
1482 case Action::PreprocessJobClass:
1483 case Action::PrecompileJobClass:
1484 case Action::AnalyzeJobClass:
1485 case Action::CompileJobClass:
1486 T = new tools::Clang(*this); break;
1487 case Action::AssembleJobClass:
1488 T = new tools::ClangAs(*this); break;
1489 case Action::LinkJobClass:
1490 T = new tools::visualstudio::Link(*this); break;
1491 }
1492 }
1493
1494 return *T;
1495}
1496
1497bool Windows::IsIntegratedAssemblerDefault() const {
1498 return true;
1499}
1500
1501bool Windows::IsUnwindTablesDefault() const {
1502 // FIXME: Gross; we should probably have some separate target
1503 // definition, possibly even reusing the one in clang.
1504 return getArchName() == "x86_64";
1505}
1506
1507const char *Windows::GetDefaultRelocationModel() const {
1508 return "static";
1509}
1510
1511const char *Windows::GetForcedPicModel() const {
1512 if (getArchName() == "x86_64")
1513 return "pic";
1514 return 0;
1515}