blob: 28b2f2e9d41287f31527cc60b6daaf7292f43098 [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" ||
Bob Wilson1ec0ade2011-03-21 20:40:05 +0000104 Value == "arm1176jz-s" || Value == "arm1176jzf-s" ||
105 Value == "cortex-m0" )
Daniel Dunbareeff4062010-01-22 02:04:58 +0000106 return "armv6";
107
108 if (Value == "cortex-a8" || Value == "cortex-r4" || Value == "cortex-m3")
109 return "armv7";
110
111 return 0;
112}
113
114llvm::StringRef Darwin::getDarwinArchName(const ArgList &Args) const {
115 switch (getTriple().getArch()) {
116 default:
117 return getArchName();
Douglas Gregorf0594d82011-03-06 19:11:49 +0000118
119 case llvm::Triple::thumb:
Daniel Dunbareeff4062010-01-22 02:04:58 +0000120 case llvm::Triple::arm: {
121 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ))
122 if (const char *Arch = GetArmArchForMArch(A->getValue(Args)))
123 return Arch;
124
125 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
126 if (const char *Arch = GetArmArchForMCpu(A->getValue(Args)))
127 return Arch;
128
129 return "arm";
130 }
131 }
132}
133
Daniel Dunbarf3955282009-09-04 18:34:51 +0000134Darwin::~Darwin() {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000135 // Free tool implementations.
136 for (llvm::DenseMap<unsigned, Tool*>::iterator
137 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
138 delete it->second;
139}
140
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000141std::string Darwin::ComputeEffectiveClangTriple(const ArgList &Args) const {
142 llvm::Triple Triple(ComputeLLVMTriple(Args));
143
144 // If the target isn't initialized (e.g., an unknown Darwin platform, return
145 // the default triple).
146 if (!isTargetInitialized())
147 return Triple.getTriple();
148
149 unsigned Version[3];
150 getTargetVersion(Version);
151
152 // Mangle the target version into the OS triple component. For historical
153 // reasons that make little sense, the version passed here is the "darwin"
154 // version, which drops the 10 and offsets by 4. See inverse code when
155 // setting the OS version preprocessor define.
156 if (!isTargetIPhoneOS()) {
157 Version[0] = Version[1] + 4;
158 Version[1] = Version[2];
159 Version[2] = 0;
160 } else {
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000161 // Use the environment to communicate that we are targeting iPhoneOS.
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000162 Triple.setEnvironmentName("iphoneos");
163 }
164
165 llvm::SmallString<16> Str;
166 llvm::raw_svector_ostream(Str) << "darwin" << Version[0]
167 << "." << Version[1] << "." << Version[2];
168 Triple.setOSName(Str.str());
169
170 return Triple.getTriple();
171}
172
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000173Tool &Darwin::SelectTool(const Compilation &C, const JobAction &JA,
174 const ActionList &Inputs) const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000175 Action::ActionClass Key;
Daniel Dunbar5ce872f2011-03-18 20:14:03 +0000176
177 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) {
178 // Fallback to llvm-gcc for i386 kext compiles, we don't support that ABI.
179 if (Inputs.size() == 1 &&
180 types::isCXX(Inputs[0]->getType()) &&
181 getTriple().getOS() == llvm::Triple::Darwin &&
182 getTriple().getArch() == llvm::Triple::x86 &&
183 C.getArgs().getLastArg(options::OPT_fapple_kext))
184 Key = JA.getKind();
185 else
186 Key = Action::AnalyzeJobClass;
187 } else
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000188 Key = JA.getKind();
189
Daniel Dunbar0f602de2010-05-20 21:48:38 +0000190 // FIXME: This doesn't belong here, but ideally we will support static soon
191 // anyway.
192 bool HasStatic = (C.getArgs().hasArg(options::OPT_mkernel) ||
193 C.getArgs().hasArg(options::OPT_static) ||
194 C.getArgs().hasArg(options::OPT_fapple_kext));
195 bool IsIADefault = IsIntegratedAssemblerDefault() && !HasStatic;
196 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
197 options::OPT_no_integrated_as,
198 IsIADefault);
199
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000200 Tool *&T = Tools[Key];
201 if (!T) {
202 switch (Key) {
203 case Action::InputClass:
204 case Action::BindArchClass:
205 assert(0 && "Invalid tool kind.");
206 case Action::PreprocessJobClass:
Daniel Dunbar9120f172009-03-29 22:27:40 +0000207 T = new tools::darwin::Preprocess(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000208 case Action::AnalyzeJobClass:
209 T = new tools::Clang(*this); break;
Daniel Dunbar9120f172009-03-29 22:27:40 +0000210 case Action::PrecompileJobClass:
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000211 case Action::CompileJobClass:
Daniel Dunbar9120f172009-03-29 22:27:40 +0000212 T = new tools::darwin::Compile(*this); break;
Daniel Dunbar0f602de2010-05-20 21:48:38 +0000213 case Action::AssembleJobClass: {
214 if (UseIntegratedAs)
215 T = new tools::ClangAs(*this);
216 else
217 T = new tools::darwin::Assemble(*this);
218 break;
219 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000220 case Action::LinkJobClass:
Daniel Dunbar8f289622009-09-04 17:39:02 +0000221 T = new tools::darwin::Link(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000222 case Action::LipoJobClass:
223 T = new tools::darwin::Lipo(*this); break;
Daniel Dunbar6e0f2542010-06-04 18:28:36 +0000224 case Action::DsymutilJobClass:
225 T = new tools::darwin::Dsymutil(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000226 }
227 }
228
229 return *T;
230}
231
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000232
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000233DarwinClang::DarwinClang(const HostInfo &Host, const llvm::Triple& Triple)
234 : Darwin(Host, Triple)
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000235{
Daniel Dunbar47023092011-03-18 19:25:15 +0000236 std::string UsrPrefix = "llvm-gcc-4.2/";
237
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000238 getProgramPaths().push_back(getDriver().getInstalledDir());
239 if (getDriver().getInstalledDir() != getDriver().Dir)
240 getProgramPaths().push_back(getDriver().Dir);
241
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000242 // We expect 'as', 'ld', etc. to be adjacent to our install dir.
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000243 getProgramPaths().push_back(getDriver().getInstalledDir());
244 if (getDriver().getInstalledDir() != getDriver().Dir)
245 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000246
247 // For fallback, we need to know how to find the GCC cc1 executables, so we
Daniel Dunbar47023092011-03-18 19:25:15 +0000248 // also add the GCC libexec paths. This is legacy code that can be removed
249 // once fallback is no longer useful.
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000250 std::string ToolChainDir = "i686-apple-darwin";
251 ToolChainDir += llvm::utostr(DarwinVersion[0]);
252 ToolChainDir += "/4.2.1";
253
254 std::string Path = getDriver().Dir;
Daniel Dunbar47023092011-03-18 19:25:15 +0000255 Path += "/../" + UsrPrefix + "libexec/gcc/";
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000256 Path += ToolChainDir;
257 getProgramPaths().push_back(Path);
258
Daniel Dunbar47023092011-03-18 19:25:15 +0000259 Path = "/usr/" + UsrPrefix + "libexec/gcc/";
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000260 Path += ToolChainDir;
261 getProgramPaths().push_back(Path);
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000262}
263
264void DarwinClang::AddLinkSearchPathArgs(const ArgList &Args,
265 ArgStringList &CmdArgs) const {
266 // The Clang toolchain uses explicit paths for internal libraries.
Daniel Dunbar424b6612010-06-30 23:56:13 +0000267
268 // Unfortunately, we still might depend on a few of the libraries that are
269 // only available in the gcc library directory (in particular
270 // libstdc++.dylib). For now, hardcode the path to the known install location.
271 llvm::sys::Path P(getDriver().Dir);
272 P.eraseComponent(); // .../usr/bin -> ../usr
273 P.appendComponent("lib");
274 P.appendComponent("gcc");
275 switch (getTriple().getArch()) {
276 default:
277 assert(0 && "Invalid Darwin arch!");
278 case llvm::Triple::x86:
279 case llvm::Triple::x86_64:
280 P.appendComponent("i686-apple-darwin10");
281 break;
282 case llvm::Triple::arm:
283 case llvm::Triple::thumb:
284 P.appendComponent("arm-apple-darwin10");
285 break;
286 case llvm::Triple::ppc:
287 case llvm::Triple::ppc64:
288 P.appendComponent("powerpc-apple-darwin10");
289 break;
290 }
291 P.appendComponent("4.2.1");
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000292
293 // Determine the arch specific GCC subdirectory.
294 const char *ArchSpecificDir = 0;
295 switch (getTriple().getArch()) {
296 default:
297 break;
298 case llvm::Triple::arm:
Daniel Dunbar3a0e3922010-08-26 00:55:52 +0000299 case llvm::Triple::thumb: {
300 std::string Triple = ComputeLLVMTriple(Args);
301 llvm::StringRef TripleStr = Triple;
302 if (TripleStr.startswith("armv5") || TripleStr.startswith("thumbv5"))
303 ArchSpecificDir = "v5";
304 else if (TripleStr.startswith("armv6") || TripleStr.startswith("thumbv6"))
305 ArchSpecificDir = "v6";
306 else if (TripleStr.startswith("armv7") || TripleStr.startswith("thumbv7"))
307 ArchSpecificDir = "v7";
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000308 break;
Daniel Dunbar3a0e3922010-08-26 00:55:52 +0000309 }
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000310 case llvm::Triple::ppc64:
311 ArchSpecificDir = "ppc64";
312 break;
313 case llvm::Triple::x86_64:
314 ArchSpecificDir = "x86_64";
315 break;
316 }
317
318 if (ArchSpecificDir) {
319 P.appendComponent(ArchSpecificDir);
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000320 bool Exists;
321 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000322 CmdArgs.push_back(Args.MakeArgString("-L" + P.str()));
323 P.eraseComponent();
324 }
325
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000326 bool Exists;
327 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Daniel Dunbar424b6612010-06-30 23:56:13 +0000328 CmdArgs.push_back(Args.MakeArgString("-L" + P.str()));
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000329}
330
331void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args,
332 ArgStringList &CmdArgs) const {
Daniel Dunbareec99102010-01-22 03:38:14 +0000333 // Darwin doesn't support real static executables, don't link any runtime
334 // libraries with -static.
335 if (Args.hasArg(options::OPT_static))
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000336 return;
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000337
338 // Reject -static-libgcc for now, we can deal with this when and if someone
339 // cares. This is useful in situations where someone wants to statically link
340 // something like libstdc++, and needs its runtime support routines.
341 if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000342 getDriver().Diag(clang::diag::err_drv_unsupported_opt)
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000343 << A->getAsString(Args);
344 return;
345 }
346
Daniel Dunbareec99102010-01-22 03:38:14 +0000347 // Otherwise link libSystem, then the dynamic runtime library, and finally any
348 // target specific static runtime library.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000349 CmdArgs.push_back("-lSystem");
Daniel Dunbareec99102010-01-22 03:38:14 +0000350
351 // Select the dynamic runtime library and the target specific static library.
352 const char *DarwinStaticLib = 0;
Daniel Dunbar251ca6c2010-01-27 00:56:37 +0000353 if (isTargetIPhoneOS()) {
Daniel Dunbareec99102010-01-22 03:38:14 +0000354 CmdArgs.push_back("-lgcc_s.1");
355
Daniel Dunbar3cceec52011-04-18 23:48:36 +0000356 // We currently always need a static runtime library for iOS.
357 DarwinStaticLib = "libclang_rt.ios.a";
Daniel Dunbareec99102010-01-22 03:38:14 +0000358 } else {
Daniel Dunbareec99102010-01-22 03:38:14 +0000359 // The dynamic runtime library was merged with libSystem for 10.6 and
360 // beyond; only 10.4 and 10.5 need an additional runtime library.
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000361 if (isMacosxVersionLT(10, 5))
Daniel Dunbareec99102010-01-22 03:38:14 +0000362 CmdArgs.push_back("-lgcc_s.10.4");
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000363 else if (isMacosxVersionLT(10, 6))
Daniel Dunbareec99102010-01-22 03:38:14 +0000364 CmdArgs.push_back("-lgcc_s.10.5");
365
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000366 // For OS X, we thought we would only need a static runtime library when
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000367 // targeting 10.4, to provide versions of the static functions which were
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000368 // omitted from 10.4.dylib.
369 //
370 // Unfortunately, that turned out to not be true, because Darwin system
371 // headers can still use eprintf on i386, and it is not exported from
372 // libSystem. Therefore, we still must provide a runtime library just for
373 // the tiny tiny handful of projects that *might* use that symbol.
374 if (isMacosxVersionLT(10, 5)) {
Daniel Dunbareec99102010-01-22 03:38:14 +0000375 DarwinStaticLib = "libclang_rt.10.4.a";
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000376 } else {
377 if (getTriple().getArch() == llvm::Triple::x86)
378 DarwinStaticLib = "libclang_rt.eprintf.a";
379 }
Daniel Dunbareec99102010-01-22 03:38:14 +0000380 }
381
382 /// Add the target specific static library, if needed.
383 if (DarwinStaticLib) {
384 llvm::sys::Path P(getDriver().ResourceDir);
385 P.appendComponent("lib");
386 P.appendComponent("darwin");
387 P.appendComponent(DarwinStaticLib);
388
389 // For now, allow missing resource libraries to support developers who may
390 // not have compiler-rt checked out or integrated into their build.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000391 bool Exists;
392 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Daniel Dunbareec99102010-01-22 03:38:14 +0000393 CmdArgs.push_back(Args.MakeArgString(P.str()));
394 }
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000395}
396
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000397void Darwin::AddDeploymentTarget(DerivedArgList &Args) const {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000398 const OptTable &Opts = getDriver().getOpts();
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000399
Daniel Dunbar26031372010-01-27 00:56:25 +0000400 Arg *OSXVersion = Args.getLastArg(options::OPT_mmacosx_version_min_EQ);
401 Arg *iPhoneVersion = Args.getLastArg(options::OPT_miphoneos_version_min_EQ);
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000402 if (OSXVersion && iPhoneVersion) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000403 getDriver().Diag(clang::diag::err_drv_argument_not_allowed_with)
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000404 << OSXVersion->getAsString(Args)
Mike Stump1eb44332009-09-09 15:08:12 +0000405 << iPhoneVersion->getAsString(Args);
Daniel Dunbar26031372010-01-27 00:56:25 +0000406 iPhoneVersion = 0;
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000407 } else if (!OSXVersion && !iPhoneVersion) {
Daniel Dunbar816bc312010-01-26 01:45:19 +0000408 // If neither OS X nor iPhoneOS targets were specified, check for
409 // environment defines.
410 const char *OSXTarget = ::getenv("MACOSX_DEPLOYMENT_TARGET");
411 const char *iPhoneOSTarget = ::getenv("IPHONEOS_DEPLOYMENT_TARGET");
Daniel Dunbarf36a06a2009-04-10 21:00:07 +0000412
Daniel Dunbar816bc312010-01-26 01:45:19 +0000413 // Ignore empty strings.
414 if (OSXTarget && OSXTarget[0] == '\0')
415 OSXTarget = 0;
416 if (iPhoneOSTarget && iPhoneOSTarget[0] == '\0')
417 iPhoneOSTarget = 0;
418
Daniel Dunbar39053672010-02-02 17:31:12 +0000419 // Diagnose conflicting deployment targets, and choose default platform
420 // based on the tool chain.
421 //
422 // FIXME: Don't hardcode default here.
423 if (OSXTarget && iPhoneOSTarget) {
424 // FIXME: We should see if we can get away with warning or erroring on
425 // this. Perhaps put under -pedantic?
426 if (getTriple().getArch() == llvm::Triple::arm ||
427 getTriple().getArch() == llvm::Triple::thumb)
Daniel Dunbar84d1e6e2010-03-20 08:47:42 +0000428 OSXTarget = 0;
Daniel Dunbar39053672010-02-02 17:31:12 +0000429 else
Daniel Dunbar84d1e6e2010-03-20 08:47:42 +0000430 iPhoneOSTarget = 0;
Daniel Dunbar39053672010-02-02 17:31:12 +0000431 }
Daniel Dunbar1a3c1d92010-01-29 17:02:25 +0000432
Daniel Dunbar39053672010-02-02 17:31:12 +0000433 if (OSXTarget) {
Daniel Dunbar30392de2009-09-04 18:35:21 +0000434 const Option *O = Opts.getOption(options::OPT_mmacosx_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000435 OSXVersion = Args.MakeJoinedArg(0, O, OSXTarget);
436 Args.append(OSXVersion);
Daniel Dunbar816bc312010-01-26 01:45:19 +0000437 } else if (iPhoneOSTarget) {
Daniel Dunbar30392de2009-09-04 18:35:21 +0000438 const Option *O = Opts.getOption(options::OPT_miphoneos_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000439 iPhoneVersion = Args.MakeJoinedArg(0, O, iPhoneOSTarget);
440 Args.append(iPhoneVersion);
Daniel Dunbar816bc312010-01-26 01:45:19 +0000441 } else {
Daniel Dunbar2bb38d02010-07-15 16:18:06 +0000442 // Otherwise, assume we are targeting OS X.
443 const Option *O = Opts.getOption(options::OPT_mmacosx_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000444 OSXVersion = Args.MakeJoinedArg(0, O, MacosxVersionMin);
445 Args.append(OSXVersion);
Daniel Dunbar30392de2009-09-04 18:35:21 +0000446 }
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000447 }
Mike Stump1eb44332009-09-09 15:08:12 +0000448
Daniel Dunbar26031372010-01-27 00:56:25 +0000449 // Set the tool chain target information.
450 unsigned Major, Minor, Micro;
451 bool HadExtra;
452 if (OSXVersion) {
453 assert(!iPhoneVersion && "Unknown target platform!");
454 if (!Driver::GetReleaseVersion(OSXVersion->getValue(Args), Major, Minor,
455 Micro, HadExtra) || HadExtra ||
456 Major != 10 || Minor >= 10 || Micro >= 10)
457 getDriver().Diag(clang::diag::err_drv_invalid_version_number)
458 << OSXVersion->getAsString(Args);
459 } else {
460 assert(iPhoneVersion && "Unknown target platform!");
461 if (!Driver::GetReleaseVersion(iPhoneVersion->getValue(Args), Major, Minor,
462 Micro, HadExtra) || HadExtra ||
463 Major >= 10 || Minor >= 100 || Micro >= 100)
464 getDriver().Diag(clang::diag::err_drv_invalid_version_number)
465 << iPhoneVersion->getAsString(Args);
466 }
467 setTarget(iPhoneVersion, Major, Minor, Micro);
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000468}
469
Daniel Dunbar132e35d2010-09-17 01:20:05 +0000470void DarwinClang::AddCXXStdlibLibArgs(const ArgList &Args,
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000471 ArgStringList &CmdArgs) const {
472 CXXStdlibType Type = GetCXXStdlibType(Args);
473
474 switch (Type) {
475 case ToolChain::CST_Libcxx:
476 CmdArgs.push_back("-lc++");
477 break;
478
479 case ToolChain::CST_Libstdcxx: {
480 // Unfortunately, -lstdc++ doesn't always exist in the standard search path;
481 // it was previously found in the gcc lib dir. However, for all the Darwin
482 // platforms we care about it was -lstdc++.6, so we search for that
483 // explicitly if we can't see an obvious -lstdc++ candidate.
484
485 // Check in the sysroot first.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000486 bool Exists;
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000487 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
488 llvm::sys::Path P(A->getValue(Args));
489 P.appendComponent("usr");
490 P.appendComponent("lib");
491 P.appendComponent("libstdc++.dylib");
492
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000493 if (llvm::sys::fs::exists(P.str(), Exists) || !Exists) {
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000494 P.eraseComponent();
495 P.appendComponent("libstdc++.6.dylib");
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000496 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists) {
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000497 CmdArgs.push_back(Args.MakeArgString(P.str()));
498 return;
499 }
500 }
501 }
502
503 // Otherwise, look in the root.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000504 if ((llvm::sys::fs::exists("/usr/lib/libstdc++.dylib", Exists) || !Exists)&&
505 (!llvm::sys::fs::exists("/usr/lib/libstdc++.6.dylib", Exists) && Exists)){
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000506 CmdArgs.push_back("/usr/lib/libstdc++.6.dylib");
507 return;
508 }
509
510 // Otherwise, let the linker search.
511 CmdArgs.push_back("-lstdc++");
512 break;
513 }
514 }
515}
516
Shantonu Sen7433fed2010-09-17 18:39:08 +0000517void DarwinClang::AddCCKextLibArgs(const ArgList &Args,
518 ArgStringList &CmdArgs) const {
519
520 // For Darwin platforms, use the compiler-rt-based support library
521 // instead of the gcc-provided one (which is also incidentally
522 // only present in the gcc lib dir, which makes it hard to find).
523
524 llvm::sys::Path P(getDriver().ResourceDir);
525 P.appendComponent("lib");
526 P.appendComponent("darwin");
527 P.appendComponent("libclang_rt.cc_kext.a");
528
529 // For now, allow missing resource libraries to support developers who may
530 // not have compiler-rt checked out or integrated into their build.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000531 bool Exists;
532 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Shantonu Sen7433fed2010-09-17 18:39:08 +0000533 CmdArgs.push_back(Args.MakeArgString(P.str()));
534}
535
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000536DerivedArgList *Darwin::TranslateArgs(const DerivedArgList &Args,
537 const char *BoundArch) const {
538 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
539 const OptTable &Opts = getDriver().getOpts();
540
541 // FIXME: We really want to get out of the tool chain level argument
542 // translation business, as it makes the driver functionality much
543 // more opaque. For now, we follow gcc closely solely for the
544 // purpose of easily achieving feature parity & testability. Once we
545 // have something that works, we should reevaluate each translation
546 // and try to push it down into tool specific logic.
Daniel Dunbar26031372010-01-27 00:56:25 +0000547
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000548 for (ArgList::const_iterator it = Args.begin(),
549 ie = Args.end(); it != ie; ++it) {
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000550 Arg *A = *it;
551
552 if (A->getOption().matches(options::OPT_Xarch__)) {
553 // FIXME: Canonicalize name.
554 if (getArchName() != A->getValue(Args, 0))
555 continue;
556
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000557 Arg *OriginalArg = A;
Daniel Dunbar0e100312010-06-14 21:23:08 +0000558 unsigned Index = Args.getBaseArgs().MakeIndex(A->getValue(Args, 1));
559 unsigned Prev = Index;
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000560 Arg *XarchArg = Opts.ParseOneArg(Args, Index);
Mike Stump1eb44332009-09-09 15:08:12 +0000561
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000562 // If the argument parsing failed or more than one argument was
563 // consumed, the -Xarch_ argument's parameter tried to consume
564 // extra arguments. Emit an error and ignore.
565 //
566 // We also want to disallow any options which would alter the
567 // driver behavior; that isn't going to work in our model. We
568 // use isDriverOption() as an approximation, although things
569 // like -O4 are going to slip through.
Mike Stump1eb44332009-09-09 15:08:12 +0000570 if (!XarchArg || Index > Prev + 1 ||
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000571 XarchArg->getOption().isDriverOption()) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000572 getDriver().Diag(clang::diag::err_drv_invalid_Xarch_argument)
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000573 << A->getAsString(Args);
574 continue;
575 }
576
Daniel Dunbar478edc22009-03-29 22:29:05 +0000577 XarchArg->setBaseArg(A);
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000578 A = XarchArg;
Daniel Dunbar0e100312010-06-14 21:23:08 +0000579
580 DAL->AddSynthesizedArg(A);
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000581
582 // Linker input arguments require custom handling. The problem is that we
583 // have already constructed the phase actions, so we can not treat them as
584 // "input arguments".
585 if (A->getOption().isLinkerInput()) {
586 // Convert the argument into individual Zlinker_input_args.
587 for (unsigned i = 0, e = A->getNumValues(); i != e; ++i) {
588 DAL->AddSeparateArg(OriginalArg,
589 Opts.getOption(options::OPT_Zlinker_input),
590 A->getValue(Args, i));
591
592 }
593 continue;
594 }
Mike Stump1eb44332009-09-09 15:08:12 +0000595 }
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000596
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000597 // Sob. These is strictly gcc compatible for the time being. Apple
598 // gcc translates options twice, which means that self-expanding
599 // options add duplicates.
Daniel Dunbar9e1f9822009-11-19 04:14:53 +0000600 switch ((options::ID) A->getOption().getID()) {
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000601 default:
602 DAL->append(A);
603 break;
604
605 case options::OPT_mkernel:
606 case options::OPT_fapple_kext:
607 DAL->append(A);
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000608 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
609 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000610 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000611
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000612 case options::OPT_dependency_file:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000613 DAL->AddSeparateArg(A, Opts.getOption(options::OPT_MF),
614 A->getValue(Args));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000615 break;
616
617 case options::OPT_gfull:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000618 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
619 DAL->AddFlagArg(A,
620 Opts.getOption(options::OPT_fno_eliminate_unused_debug_symbols));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000621 break;
622
623 case options::OPT_gused:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000624 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
625 DAL->AddFlagArg(A,
626 Opts.getOption(options::OPT_feliminate_unused_debug_symbols));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000627 break;
628
629 case options::OPT_fterminated_vtables:
630 case options::OPT_findirect_virtual_calls:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000631 DAL->AddFlagArg(A, Opts.getOption(options::OPT_fapple_kext));
632 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000633 break;
634
635 case options::OPT_shared:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000636 DAL->AddFlagArg(A, Opts.getOption(options::OPT_dynamiclib));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000637 break;
638
639 case options::OPT_fconstant_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000640 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mconstant_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000641 break;
642
643 case options::OPT_fno_constant_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000644 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_constant_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000645 break;
646
647 case options::OPT_Wnonportable_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000648 DAL->AddFlagArg(A,
649 Opts.getOption(options::OPT_mwarn_nonportable_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000650 break;
651
652 case options::OPT_Wno_nonportable_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000653 DAL->AddFlagArg(A,
654 Opts.getOption(options::OPT_mno_warn_nonportable_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000655 break;
656
657 case options::OPT_fpascal_strings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000658 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mpascal_strings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000659 break;
660
661 case options::OPT_fno_pascal_strings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000662 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_pascal_strings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000663 break;
664 }
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000665 }
666
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000667 if (getTriple().getArch() == llvm::Triple::x86 ||
668 getTriple().getArch() == llvm::Triple::x86_64)
Daniel Dunbare4bdae72009-11-19 04:00:53 +0000669 if (!Args.hasArgNoClaim(options::OPT_mtune_EQ))
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000670 DAL->AddJoinedArg(0, Opts.getOption(options::OPT_mtune_EQ), "core2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000671
672 // Add the arch options based on the particular spelling of -arch, to match
673 // how the driver driver works.
674 if (BoundArch) {
675 llvm::StringRef Name = BoundArch;
676 const Option *MCpu = Opts.getOption(options::OPT_mcpu_EQ);
677 const Option *MArch = Opts.getOption(options::OPT_march_EQ);
678
679 // This code must be kept in sync with LLVM's getArchTypeForDarwinArch,
680 // which defines the list of which architectures we accept.
681 if (Name == "ppc")
682 ;
683 else if (Name == "ppc601")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000684 DAL->AddJoinedArg(0, MCpu, "601");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000685 else if (Name == "ppc603")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000686 DAL->AddJoinedArg(0, MCpu, "603");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000687 else if (Name == "ppc604")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000688 DAL->AddJoinedArg(0, MCpu, "604");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000689 else if (Name == "ppc604e")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000690 DAL->AddJoinedArg(0, MCpu, "604e");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000691 else if (Name == "ppc750")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000692 DAL->AddJoinedArg(0, MCpu, "750");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000693 else if (Name == "ppc7400")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000694 DAL->AddJoinedArg(0, MCpu, "7400");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000695 else if (Name == "ppc7450")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000696 DAL->AddJoinedArg(0, MCpu, "7450");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000697 else if (Name == "ppc970")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000698 DAL->AddJoinedArg(0, MCpu, "970");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000699
700 else if (Name == "ppc64")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000701 DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000702
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000703 else if (Name == "i386")
704 ;
705 else if (Name == "i486")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000706 DAL->AddJoinedArg(0, MArch, "i486");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000707 else if (Name == "i586")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000708 DAL->AddJoinedArg(0, MArch, "i586");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000709 else if (Name == "i686")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000710 DAL->AddJoinedArg(0, MArch, "i686");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000711 else if (Name == "pentium")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000712 DAL->AddJoinedArg(0, MArch, "pentium");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000713 else if (Name == "pentium2")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000714 DAL->AddJoinedArg(0, MArch, "pentium2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000715 else if (Name == "pentpro")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000716 DAL->AddJoinedArg(0, MArch, "pentiumpro");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000717 else if (Name == "pentIIm3")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000718 DAL->AddJoinedArg(0, MArch, "pentium2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000719
720 else if (Name == "x86_64")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000721 DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64));
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000722
723 else if (Name == "arm")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000724 DAL->AddJoinedArg(0, MArch, "armv4t");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000725 else if (Name == "armv4t")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000726 DAL->AddJoinedArg(0, MArch, "armv4t");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000727 else if (Name == "armv5")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000728 DAL->AddJoinedArg(0, MArch, "armv5tej");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000729 else if (Name == "xscale")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000730 DAL->AddJoinedArg(0, MArch, "xscale");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000731 else if (Name == "armv6")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000732 DAL->AddJoinedArg(0, MArch, "armv6k");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000733 else if (Name == "armv7")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000734 DAL->AddJoinedArg(0, MArch, "armv7a");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000735
736 else
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000737 llvm_unreachable("invalid Darwin arch");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000738 }
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000739
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000740 // Add an explicit version min argument for the deployment target. We do this
741 // after argument translation because -Xarch_ arguments may add a version min
742 // argument.
743 AddDeploymentTarget(*DAL);
744
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000745 return DAL;
Mike Stump1eb44332009-09-09 15:08:12 +0000746}
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000747
Daniel Dunbarf3955282009-09-04 18:34:51 +0000748bool Darwin::IsUnwindTablesDefault() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000749 // FIXME: Gross; we should probably have some separate target
750 // definition, possibly even reusing the one in clang.
751 return getArchName() == "x86_64";
752}
753
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000754bool Darwin::UseDwarfDebugFlags() const {
755 if (const char *S = ::getenv("RC_DEBUG_OPTIONS"))
756 return S[0] != '\0';
757 return false;
758}
759
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000760bool Darwin::UseSjLjExceptions() const {
761 // Darwin uses SjLj exceptions on ARM.
762 return (getTriple().getArch() == llvm::Triple::arm ||
763 getTriple().getArch() == llvm::Triple::thumb);
764}
765
Daniel Dunbarf3955282009-09-04 18:34:51 +0000766const char *Darwin::GetDefaultRelocationModel() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000767 return "pic";
768}
769
Daniel Dunbarf3955282009-09-04 18:34:51 +0000770const char *Darwin::GetForcedPicModel() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000771 if (getArchName() == "x86_64")
772 return "pic";
773 return 0;
774}
775
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000776bool Darwin::SupportsProfiling() const {
777 // Profiling instrumentation is only supported on x86.
778 return getArchName() == "i386" || getArchName() == "x86_64";
779}
780
Daniel Dunbar43a9b322010-04-10 16:20:23 +0000781bool Darwin::SupportsObjCGC() const {
782 // Garbage collection is supported everywhere except on iPhone OS.
783 return !isTargetIPhoneOS();
784}
785
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000786std::string
787Darwin_Generic_GCC::ComputeEffectiveClangTriple(const ArgList &Args) const {
788 return ComputeLLVMTriple(Args);
789}
790
Daniel Dunbar39176082009-03-20 00:20:03 +0000791/// Generic_GCC - A tool chain using the 'gcc' command to perform
792/// all subcommands; this relies on gcc translating the majority of
793/// command line options.
794
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000795Generic_GCC::Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple)
Mike Stump1eb44332009-09-09 15:08:12 +0000796 : ToolChain(Host, Triple) {
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000797 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +0000798 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000799 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbarc50b00d2009-03-23 16:15:50 +0000800}
801
Daniel Dunbar39176082009-03-20 00:20:03 +0000802Generic_GCC::~Generic_GCC() {
803 // Free tool implementations.
804 for (llvm::DenseMap<unsigned, Tool*>::iterator
805 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
806 delete it->second;
807}
808
Mike Stump1eb44332009-09-09 15:08:12 +0000809Tool &Generic_GCC::SelectTool(const Compilation &C,
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000810 const JobAction &JA,
811 const ActionList &Inputs) const {
Daniel Dunbar39176082009-03-20 00:20:03 +0000812 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000813 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar39176082009-03-20 00:20:03 +0000814 Key = Action::AnalyzeJobClass;
815 else
816 Key = JA.getKind();
817
818 Tool *&T = Tools[Key];
819 if (!T) {
820 switch (Key) {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000821 case Action::InputClass:
822 case Action::BindArchClass:
Daniel Dunbar39176082009-03-20 00:20:03 +0000823 assert(0 && "Invalid tool kind.");
824 case Action::PreprocessJobClass:
825 T = new tools::gcc::Preprocess(*this); break;
826 case Action::PrecompileJobClass:
827 T = new tools::gcc::Precompile(*this); break;
828 case Action::AnalyzeJobClass:
829 T = new tools::Clang(*this); break;
830 case Action::CompileJobClass:
831 T = new tools::gcc::Compile(*this); break;
832 case Action::AssembleJobClass:
833 T = new tools::gcc::Assemble(*this); break;
834 case Action::LinkJobClass:
835 T = new tools::gcc::Link(*this); break;
Mike Stump1eb44332009-09-09 15:08:12 +0000836
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000837 // This is a bit ungeneric, but the only platform using a driver
838 // driver is Darwin.
839 case Action::LipoJobClass:
840 T = new tools::darwin::Lipo(*this); break;
Daniel Dunbar6e0f2542010-06-04 18:28:36 +0000841 case Action::DsymutilJobClass:
842 T = new tools::darwin::Dsymutil(*this); break;
Daniel Dunbar39176082009-03-20 00:20:03 +0000843 }
844 }
845
846 return *T;
847}
848
Daniel Dunbar39176082009-03-20 00:20:03 +0000849bool Generic_GCC::IsUnwindTablesDefault() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000850 // FIXME: Gross; we should probably have some separate target
851 // definition, possibly even reusing the one in clang.
Daniel Dunbar39176082009-03-20 00:20:03 +0000852 return getArchName() == "x86_64";
853}
854
855const char *Generic_GCC::GetDefaultRelocationModel() const {
856 return "static";
857}
858
859const char *Generic_GCC::GetForcedPicModel() const {
860 return 0;
861}
Daniel Dunbarf3cad362009-03-25 04:13:45 +0000862
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000863/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
864/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
865/// Currently does not support anything else but compilation.
866
867TCEToolChain::TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple)
868 : ToolChain(Host, Triple) {
869 // Path mangling to find libexec
870 std::string Path(getDriver().Dir);
871
872 Path += "/../libexec";
873 getProgramPaths().push_back(Path);
874}
875
876TCEToolChain::~TCEToolChain() {
877 for (llvm::DenseMap<unsigned, Tool*>::iterator
878 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
879 delete it->second;
880}
881
882bool TCEToolChain::IsMathErrnoDefault() const {
883 return true;
884}
885
886bool TCEToolChain::IsUnwindTablesDefault() const {
887 return false;
888}
889
890const char *TCEToolChain::GetDefaultRelocationModel() const {
891 return "static";
892}
893
894const char *TCEToolChain::GetForcedPicModel() const {
895 return 0;
896}
897
898Tool &TCEToolChain::SelectTool(const Compilation &C,
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000899 const JobAction &JA,
900 const ActionList &Inputs) const {
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000901 Action::ActionClass Key;
902 Key = Action::AnalyzeJobClass;
903
904 Tool *&T = Tools[Key];
905 if (!T) {
906 switch (Key) {
907 case Action::PreprocessJobClass:
908 T = new tools::gcc::Preprocess(*this); break;
909 case Action::AnalyzeJobClass:
910 T = new tools::Clang(*this); break;
911 default:
912 assert(false && "Unsupported action for TCE target.");
913 }
914 }
915 return *T;
916}
917
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000918/// OpenBSD - OpenBSD tool chain which can call as(1) and ld(1) directly.
919
920OpenBSD::OpenBSD(const HostInfo &Host, const llvm::Triple& Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000921 : Generic_ELF(Host, Triple) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000922 getFilePaths().push_back(getDriver().Dir + "/../lib");
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000923 getFilePaths().push_back("/usr/lib");
924}
925
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000926Tool &OpenBSD::SelectTool(const Compilation &C, const JobAction &JA,
927 const ActionList &Inputs) const {
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000928 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000929 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000930 Key = Action::AnalyzeJobClass;
931 else
932 Key = JA.getKind();
933
Rafael Espindoladda5b922010-11-07 23:13:01 +0000934 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
935 options::OPT_no_integrated_as,
936 IsIntegratedAssemblerDefault());
937
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000938 Tool *&T = Tools[Key];
939 if (!T) {
940 switch (Key) {
Rafael Espindoladda5b922010-11-07 23:13:01 +0000941 case Action::AssembleJobClass: {
942 if (UseIntegratedAs)
943 T = new tools::ClangAs(*this);
944 else
945 T = new tools::openbsd::Assemble(*this);
946 break;
947 }
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000948 case Action::LinkJobClass:
949 T = new tools::openbsd::Link(*this); break;
950 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000951 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000952 }
953 }
954
955 return *T;
956}
957
Daniel Dunbar75358d22009-03-30 21:06:03 +0000958/// FreeBSD - FreeBSD tool chain which can call as(1) and ld(1) directly.
959
Daniel Dunbar214afe92010-08-02 05:43:59 +0000960FreeBSD::FreeBSD(const HostInfo &Host, const llvm::Triple& Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000961 : Generic_ELF(Host, Triple) {
Daniel Dunbar214afe92010-08-02 05:43:59 +0000962
963 // Determine if we are compiling 32-bit code on an x86_64 platform.
964 bool Lib32 = false;
965 if (Triple.getArch() == llvm::Triple::x86 &&
966 llvm::Triple(getDriver().DefaultHostTriple).getArch() ==
967 llvm::Triple::x86_64)
968 Lib32 = true;
969
Daniel Dunbarbc534662009-04-02 18:30:04 +0000970 if (Lib32) {
Daniel Dunbarbc534662009-04-02 18:30:04 +0000971 getFilePaths().push_back("/usr/lib32");
972 } else {
Daniel Dunbarbc534662009-04-02 18:30:04 +0000973 getFilePaths().push_back("/usr/lib");
974 }
Daniel Dunbar75358d22009-03-30 21:06:03 +0000975}
976
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000977Tool &FreeBSD::SelectTool(const Compilation &C, const JobAction &JA,
978 const ActionList &Inputs) const {
Daniel Dunbar75358d22009-03-30 21:06:03 +0000979 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000980 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar75358d22009-03-30 21:06:03 +0000981 Key = Action::AnalyzeJobClass;
982 else
983 Key = JA.getKind();
984
Roman Divacky67dece72010-11-08 17:46:39 +0000985 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
986 options::OPT_no_integrated_as,
987 IsIntegratedAssemblerDefault());
988
Daniel Dunbar75358d22009-03-30 21:06:03 +0000989 Tool *&T = Tools[Key];
990 if (!T) {
991 switch (Key) {
Daniel Dunbar68a31d42009-03-31 17:45:15 +0000992 case Action::AssembleJobClass:
Roman Divacky67dece72010-11-08 17:46:39 +0000993 if (UseIntegratedAs)
994 T = new tools::ClangAs(*this);
995 else
996 T = new tools::freebsd::Assemble(*this);
Roman Divackyfe3a7ea2010-11-08 19:39:10 +0000997 break;
Daniel Dunbar008f54a2009-04-01 19:36:32 +0000998 case Action::LinkJobClass:
999 T = new tools::freebsd::Link(*this); break;
Daniel Dunbar75358d22009-03-30 21:06:03 +00001000 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001001 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Daniel Dunbar75358d22009-03-30 21:06:03 +00001002 }
1003 }
1004
1005 return *T;
1006}
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001007
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001008/// NetBSD - NetBSD tool chain which can call as(1) and ld(1) directly.
1009
1010NetBSD::NetBSD(const HostInfo &Host, const llvm::Triple& Triple)
1011 : Generic_ELF(Host, Triple) {
1012
1013 // Determine if we are compiling 32-bit code on an x86_64 platform.
1014 bool Lib32 = false;
1015 if (Triple.getArch() == llvm::Triple::x86 &&
1016 llvm::Triple(getDriver().DefaultHostTriple).getArch() ==
1017 llvm::Triple::x86_64)
1018 Lib32 = true;
1019
Joerg Sonnenberger05e59302011-03-21 13:59:26 +00001020 if (getDriver().UseStdLib) {
1021 if (Lib32)
1022 getFilePaths().push_back("=/usr/lib/i386");
1023 else
1024 getFilePaths().push_back("=/usr/lib");
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001025 }
1026}
1027
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001028Tool &NetBSD::SelectTool(const Compilation &C, const JobAction &JA,
1029 const ActionList &Inputs) const {
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001030 Action::ActionClass Key;
1031 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1032 Key = Action::AnalyzeJobClass;
1033 else
1034 Key = JA.getKind();
1035
1036 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
1037 options::OPT_no_integrated_as,
1038 IsIntegratedAssemblerDefault());
1039
1040 Tool *&T = Tools[Key];
1041 if (!T) {
1042 switch (Key) {
1043 case Action::AssembleJobClass:
1044 if (UseIntegratedAs)
1045 T = new tools::ClangAs(*this);
1046 else
1047 T = new tools::netbsd::Assemble(*this);
1048 break;
1049 case Action::LinkJobClass:
1050 T = new tools::netbsd::Link(*this); break;
1051 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001052 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001053 }
1054 }
1055
1056 return *T;
1057}
1058
Chris Lattner38e317d2010-07-07 16:01:42 +00001059/// Minix - Minix tool chain which can call as(1) and ld(1) directly.
1060
1061Minix::Minix(const HostInfo &Host, const llvm::Triple& Triple)
1062 : Generic_GCC(Host, Triple) {
1063 getFilePaths().push_back(getDriver().Dir + "/../lib");
1064 getFilePaths().push_back("/usr/lib");
1065 getFilePaths().push_back("/usr/gnu/lib");
1066 getFilePaths().push_back("/usr/gnu/lib/gcc/i686-pc-minix/4.4.3");
1067}
1068
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001069Tool &Minix::SelectTool(const Compilation &C, const JobAction &JA,
1070 const ActionList &Inputs) const {
Chris Lattner38e317d2010-07-07 16:01:42 +00001071 Action::ActionClass Key;
1072 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1073 Key = Action::AnalyzeJobClass;
1074 else
1075 Key = JA.getKind();
1076
1077 Tool *&T = Tools[Key];
1078 if (!T) {
1079 switch (Key) {
1080 case Action::AssembleJobClass:
1081 T = new tools::minix::Assemble(*this); break;
1082 case Action::LinkJobClass:
1083 T = new tools::minix::Link(*this); break;
1084 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001085 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Chris Lattner38e317d2010-07-07 16:01:42 +00001086 }
1087 }
1088
1089 return *T;
1090}
1091
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001092/// AuroraUX - AuroraUX tool chain which can call as(1) and ld(1) directly.
1093
1094AuroraUX::AuroraUX(const HostInfo &Host, const llvm::Triple& Triple)
1095 : Generic_GCC(Host, Triple) {
1096
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001097 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +00001098 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001099 getProgramPaths().push_back(getDriver().Dir);
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001100
Daniel Dunbaree788e72009-12-21 18:54:17 +00001101 getFilePaths().push_back(getDriver().Dir + "/../lib");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001102 getFilePaths().push_back("/usr/lib");
1103 getFilePaths().push_back("/usr/sfw/lib");
1104 getFilePaths().push_back("/opt/gcc4/lib");
Edward O'Callaghan7adf9492009-10-15 07:44:07 +00001105 getFilePaths().push_back("/opt/gcc4/lib/gcc/i386-pc-solaris2.11/4.2.4");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001106
1107}
1108
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001109Tool &AuroraUX::SelectTool(const Compilation &C, const JobAction &JA,
1110 const ActionList &Inputs) const {
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001111 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +00001112 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001113 Key = Action::AnalyzeJobClass;
1114 else
1115 Key = JA.getKind();
1116
1117 Tool *&T = Tools[Key];
1118 if (!T) {
1119 switch (Key) {
1120 case Action::AssembleJobClass:
1121 T = new tools::auroraux::Assemble(*this); break;
1122 case Action::LinkJobClass:
1123 T = new tools::auroraux::Link(*this); break;
1124 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001125 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001126 }
1127 }
1128
1129 return *T;
1130}
1131
1132
Eli Friedman6b3454a2009-05-26 07:52:18 +00001133/// Linux toolchain (very bare-bones at the moment).
1134
Rafael Espindolac1da9812010-11-07 20:14:31 +00001135enum LinuxDistro {
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001136 ArchLinux,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001137 DebianLenny,
1138 DebianSqueeze,
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001139 Exherbo,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001140 Fedora13,
1141 Fedora14,
Eric Christopher8f1cc072011-04-06 18:22:53 +00001142 Fedora15,
1143 FedoraRawhide,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001144 OpenSuse11_3,
Douglas Gregor814638e2011-03-14 15:39:50 +00001145 UbuntuHardy,
1146 UbuntuIntrepid,
Rafael Espindola021aaa42010-11-10 05:00:22 +00001147 UbuntuJaunty,
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001148 UbuntuKarmic,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001149 UbuntuLucid,
1150 UbuntuMaverick,
Ted Kremenek43ac2972011-04-05 22:04:27 +00001151 UbuntuNatty,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001152 UnknownDistro
1153};
1154
1155static bool IsFedora(enum LinuxDistro Distro) {
Eric Christopher8f1cc072011-04-06 18:22:53 +00001156 return Distro == Fedora13 || Distro == Fedora14 ||
1157 Distro == Fedora15 || Distro == FedoraRawhide;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001158}
1159
1160static bool IsOpenSuse(enum LinuxDistro Distro) {
1161 return Distro == OpenSuse11_3;
1162}
1163
1164static bool IsDebian(enum LinuxDistro Distro) {
1165 return Distro == DebianLenny || Distro == DebianSqueeze;
1166}
1167
1168static bool IsUbuntu(enum LinuxDistro Distro) {
Douglas Gregor814638e2011-03-14 15:39:50 +00001169 return Distro == UbuntuHardy || Distro == UbuntuIntrepid ||
1170 Distro == UbuntuLucid || Distro == UbuntuMaverick ||
Ted Kremenek43ac2972011-04-05 22:04:27 +00001171 Distro == UbuntuJaunty || Distro == UbuntuKarmic ||
1172 Distro == UbuntuNatty;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001173}
1174
1175static bool IsDebianBased(enum LinuxDistro Distro) {
1176 return IsDebian(Distro) || IsUbuntu(Distro);
1177}
1178
1179static bool HasMultilib(llvm::Triple::ArchType Arch, enum LinuxDistro Distro) {
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001180 if (Arch == llvm::Triple::x86_64) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001181 bool Exists;
1182 if (Distro == Exherbo &&
1183 (llvm::sys::fs::exists("/usr/lib32/libc.so", Exists) || !Exists))
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001184 return false;
1185
Rafael Espindolac1da9812010-11-07 20:14:31 +00001186 return true;
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001187 }
Ted Kremenek43ac2972011-04-05 22:04:27 +00001188 if (Arch == llvm::Triple::ppc64)
1189 return true;
1190 if ((Arch == llvm::Triple::x86 || Arch == llvm::Triple::ppc) && IsDebianBased(Distro))
Rafael Espindolac1da9812010-11-07 20:14:31 +00001191 return true;
1192 return false;
1193}
1194
1195static LinuxDistro DetectLinuxDistro(llvm::Triple::ArchType Arch) {
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001196 llvm::OwningPtr<llvm::MemoryBuffer> File;
1197 if (!llvm::MemoryBuffer::getFile("/etc/lsb-release", File)) {
1198 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001199 llvm::SmallVector<llvm::StringRef, 8> Lines;
1200 Data.split(Lines, "\n");
1201 for (unsigned int i = 0, s = Lines.size(); i < s; ++ i) {
Douglas Gregor814638e2011-03-14 15:39:50 +00001202 if (Lines[i] == "DISTRIB_CODENAME=hardy")
1203 return UbuntuHardy;
Ted Kremenek43ac2972011-04-05 22:04:27 +00001204 else if (Lines[i] == "DISTRIB_CODENAME=intrepid")
1205 return UbuntuIntrepid;
Rafael Espindola021aaa42010-11-10 05:00:22 +00001206 else if (Lines[i] == "DISTRIB_CODENAME=jaunty")
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001207 return UbuntuJaunty;
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001208 else if (Lines[i] == "DISTRIB_CODENAME=karmic")
1209 return UbuntuKarmic;
Ted Kremenek43ac2972011-04-05 22:04:27 +00001210 else if (Lines[i] == "DISTRIB_CODENAME=lucid")
1211 return UbuntuLucid;
1212 else if (Lines[i] == "DISTRIB_CODENAME=maverick")
1213 return UbuntuMaverick;
1214 else if (Lines[i] == "DISTRIB_CODENAME=natty")
1215 return UbuntuNatty;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001216 }
1217 return UnknownDistro;
1218 }
1219
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001220 if (!llvm::MemoryBuffer::getFile("/etc/redhat-release", File)) {
1221 llvm::StringRef Data = File.get()->getBuffer();
Eric Christopher8f1cc072011-04-06 18:22:53 +00001222 if (Data.startswith("Fedora release 15"))
1223 return Fedora15;
1224 else if (Data.startswith("Fedora release 14"))
Rafael Espindolac1da9812010-11-07 20:14:31 +00001225 return Fedora14;
Eric Christopher8f1cc072011-04-06 18:22:53 +00001226 else if (Data.startswith("Fedora release 13"))
Rafael Espindolac1da9812010-11-07 20:14:31 +00001227 return Fedora13;
Eric Christopher8f1cc072011-04-06 18:22:53 +00001228 else if (Data.startswith("Fedora release") &&
1229 Data.find("Rawhide") != llvm::StringRef::npos)
1230 return FedoraRawhide;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001231 return UnknownDistro;
1232 }
1233
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001234 if (!llvm::MemoryBuffer::getFile("/etc/debian_version", File)) {
1235 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001236 if (Data[0] == '5')
1237 return DebianLenny;
1238 else if (Data.startswith("squeeze/sid"))
1239 return DebianSqueeze;
1240 return UnknownDistro;
1241 }
1242
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001243 if (!llvm::MemoryBuffer::getFile("/etc/SuSE-release", File)) {
1244 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001245 if (Data.startswith("openSUSE 11.3"))
1246 return OpenSuse11_3;
1247 return UnknownDistro;
1248 }
1249
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001250 bool Exists;
1251 if (!llvm::sys::fs::exists("/etc/exherbo-release", Exists) && Exists)
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001252 return Exherbo;
1253
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001254 if (!llvm::sys::fs::exists("/etc/arch-release", Exists) && Exists)
1255 return ArchLinux;
1256
Rafael Espindolac1da9812010-11-07 20:14:31 +00001257 return UnknownDistro;
1258}
1259
Nick Lewycky3fdcc6f2010-12-31 17:31:54 +00001260Linux::Linux(const HostInfo &Host, const llvm::Triple &Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +00001261 : Generic_ELF(Host, Triple) {
Rafael Espindolac1da9812010-11-07 20:14:31 +00001262 llvm::Triple::ArchType Arch =
1263 llvm::Triple(getDriver().DefaultHostTriple).getArch();
Daniel Dunbara9822de2009-08-06 01:47:11 +00001264
Rafael Espindolac1da9812010-11-07 20:14:31 +00001265 std::string Suffix32 = "";
1266 if (Arch == llvm::Triple::x86_64)
1267 Suffix32 = "/32";
Daniel Dunbara9822de2009-08-06 01:47:11 +00001268
Rafael Espindolac1da9812010-11-07 20:14:31 +00001269 std::string Suffix64 = "";
Ted Kremenek43ac2972011-04-05 22:04:27 +00001270 if (Arch == llvm::Triple::x86 || Arch == llvm::Triple::ppc)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001271 Suffix64 = "/64";
1272
1273 std::string Lib32 = "lib";
1274
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001275 bool Exists;
1276 if (!llvm::sys::fs::exists("/lib32", Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001277 Lib32 = "lib32";
1278
1279 std::string Lib64 = "lib";
Michael J. Spencer2dea7c72011-01-12 23:54:48 +00001280 bool Symlink;
Chris Lattner48aef362011-01-13 01:35:58 +00001281 if (!llvm::sys::fs::exists("/lib64", Exists) && Exists &&
1282 (llvm::sys::fs::is_symlink("/lib64", Symlink) || !Symlink))
Rafael Espindolac1da9812010-11-07 20:14:31 +00001283 Lib64 = "lib64";
1284
1285 std::string GccTriple = "";
Douglas Gregorf0594d82011-03-06 19:11:49 +00001286 if (Arch == llvm::Triple::arm || Arch == llvm::Triple::thumb) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001287 if (!llvm::sys::fs::exists("/usr/lib/gcc/arm-linux-gnueabi", Exists) &&
1288 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001289 GccTriple = "arm-linux-gnueabi";
1290 } else if (Arch == llvm::Triple::x86_64) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001291 if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-linux-gnu", Exists) &&
1292 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001293 GccTriple = "x86_64-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001294 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-unknown-linux-gnu",
1295 Exists) && Exists)
Rafael Espindola53dd00b2010-11-17 00:25:26 +00001296 GccTriple = "x86_64-unknown-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001297 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-pc-linux-gnu",
1298 Exists) && Exists)
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001299 GccTriple = "x86_64-pc-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001300 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-redhat-linux",
1301 Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001302 GccTriple = "x86_64-redhat-linux";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001303 else if (!llvm::sys::fs::exists("/usr/lib64/gcc/x86_64-suse-linux",
1304 Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001305 GccTriple = "x86_64-suse-linux";
Nick Lewyckye10f9002011-02-01 23:03:29 +00001306 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-manbo-linux-gnu",
1307 Exists) && Exists)
1308 GccTriple = "x86_64-manbo-linux-gnu";
Rafael Espindolac1da9812010-11-07 20:14:31 +00001309 } else if (Arch == llvm::Triple::x86) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001310 if (!llvm::sys::fs::exists("/usr/lib/gcc/i686-linux-gnu", Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001311 GccTriple = "i686-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001312 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i686-pc-linux-gnu", Exists) &&
1313 Exists)
Nuno Lopes2a69ddd2010-11-19 17:26:57 +00001314 GccTriple = "i686-pc-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001315 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i486-linux-gnu", Exists) &&
1316 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001317 GccTriple = "i486-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001318 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i686-redhat-linux", Exists) &&
1319 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001320 GccTriple = "i686-redhat-linux";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001321 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i586-suse-linux", Exists) &&
1322 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001323 GccTriple = "i586-suse-linux";
Ted Kremenekd130c7d2011-04-18 17:50:19 +00001324 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i486-slackware-linux", Exists)
1325 && Exists)
1326 GccTriple = "i486-slackware-linux";
Ted Kremenek43ac2972011-04-05 22:04:27 +00001327 } else if (Arch == llvm::Triple::ppc) {
1328 if (!llvm::sys::fs::exists("/usr/lib/powerpc-linux-gnu", Exists) && Exists)
1329 GccTriple = "powerpc-linux-gnu";
1330 else if (!llvm::sys::fs::exists("/usr/lib/gcc/powerpc-unknown-linux-gnu", Exists) && Exists)
1331 GccTriple = "powerpc-unknown-linux-gnu";
1332 } else if (Arch == llvm::Triple::ppc64) {
1333 if (!llvm::sys::fs::exists("/usr/lib/gcc/powerpc64-unknown-linux-gnu", Exists) && Exists)
1334 GccTriple = "powerpc64-unknown-linux-gnu";
1335 else if (!llvm::sys::fs::exists("/usr/lib64/gcc/powerpc64-unknown-linux-gnu", Exists) && Exists)
1336 GccTriple = "powerpc64-unknown-linux-gnu";
Rafael Espindolac1da9812010-11-07 20:14:31 +00001337 }
1338
Eric Christopher8f1cc072011-04-06 18:22:53 +00001339 const char* GccVersions[] = {"4.6.0",
1340 "4.5.2", "4.5.1", "4.5",
1341 "4.4.5", "4.4.4", "4.4.3", "4.4",
1342 "4.3.4", "4.3.3", "4.3.2", "4.3",
1343 "4.2.4", "4.2.3", "4.2.2", "4.2.1", "4.2"};
Rafael Espindolac1da9812010-11-07 20:14:31 +00001344 std::string Base = "";
1345 for (unsigned i = 0; i < sizeof(GccVersions)/sizeof(char*); ++i) {
1346 std::string Suffix = GccTriple + "/" + GccVersions[i];
1347 std::string t1 = "/usr/lib/gcc/" + Suffix;
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001348 if (!llvm::sys::fs::exists(t1 + "/crtbegin.o", Exists) && Exists) {
Rafael Espindolac1da9812010-11-07 20:14:31 +00001349 Base = t1;
1350 break;
1351 }
1352 std::string t2 = "/usr/lib64/gcc/" + Suffix;
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001353 if (!llvm::sys::fs::exists(t2 + "/crtbegin.o", Exists) && Exists) {
Rafael Espindolac1da9812010-11-07 20:14:31 +00001354 Base = t2;
1355 break;
1356 }
Ted Kremenek43ac2972011-04-05 22:04:27 +00001357 std::string t3 = "/usr/lib/" + GccTriple + "/gcc/" + Suffix;
1358 if (!llvm::sys::fs::exists(t3 + "/crtbegin.o", Exists) && Exists) {
1359 Base = t3;
1360 break;
1361 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00001362 }
1363
1364 path_list &Paths = getFilePaths();
Ted Kremenek43ac2972011-04-05 22:04:27 +00001365 bool Is32Bits = (getArch() == llvm::Triple::x86 || getArch() == llvm::Triple::ppc);
Rafael Espindolac1da9812010-11-07 20:14:31 +00001366
1367 std::string Suffix;
1368 std::string Lib;
1369
1370 if (Is32Bits) {
1371 Suffix = Suffix32;
1372 Lib = Lib32;
1373 } else {
1374 Suffix = Suffix64;
1375 Lib = Lib64;
1376 }
1377
1378 llvm::sys::Path LinkerPath(Base + "/../../../../" + GccTriple + "/bin/ld");
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001379 if (!llvm::sys::fs::exists(LinkerPath.str(), Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001380 Linker = LinkerPath.str();
1381 else
1382 Linker = GetProgramPath("ld");
1383
1384 LinuxDistro Distro = DetectLinuxDistro(Arch);
1385
Rafael Espindola94c80222010-11-08 14:48:47 +00001386 if (IsUbuntu(Distro)) {
1387 ExtraOpts.push_back("-z");
1388 ExtraOpts.push_back("relro");
1389 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00001390
Douglas Gregorf0594d82011-03-06 19:11:49 +00001391 if (Arch == llvm::Triple::arm || Arch == llvm::Triple::thumb)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001392 ExtraOpts.push_back("-X");
1393
1394 if (IsFedora(Distro) || Distro == UbuntuMaverick)
1395 ExtraOpts.push_back("--hash-style=gnu");
1396
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001397 if (IsDebian(Distro) || Distro == UbuntuLucid || Distro == UbuntuJaunty ||
1398 Distro == UbuntuKarmic)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001399 ExtraOpts.push_back("--hash-style=both");
1400
1401 if (IsFedora(Distro))
1402 ExtraOpts.push_back("--no-add-needed");
1403
Rafael Espindola021aaa42010-11-10 05:00:22 +00001404 if (Distro == DebianSqueeze || IsOpenSuse(Distro) ||
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001405 IsFedora(Distro) || Distro == UbuntuLucid || Distro == UbuntuMaverick ||
1406 Distro == UbuntuKarmic)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001407 ExtraOpts.push_back("--build-id");
1408
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001409 if (Distro == ArchLinux)
1410 Lib = "lib";
1411
Rafael Espindolac1da9812010-11-07 20:14:31 +00001412 Paths.push_back(Base + Suffix);
1413 if (HasMultilib(Arch, Distro)) {
1414 if (IsOpenSuse(Distro) && Is32Bits)
1415 Paths.push_back(Base + "/../../../../" + GccTriple + "/lib/../lib");
1416 Paths.push_back(Base + "/../../../../" + Lib);
1417 Paths.push_back("/lib/../" + Lib);
1418 Paths.push_back("/usr/lib/../" + Lib);
1419 }
1420 if (!Suffix.empty())
1421 Paths.push_back(Base);
1422 if (IsOpenSuse(Distro))
1423 Paths.push_back(Base + "/../../../../" + GccTriple + "/lib");
1424 Paths.push_back(Base + "/../../..");
1425 if (Arch == getArch() && IsUbuntu(Distro))
1426 Paths.push_back("/usr/lib/" + GccTriple);
1427}
1428
1429bool Linux::HasNativeLLVMSupport() const {
1430 return true;
Eli Friedman6b3454a2009-05-26 07:52:18 +00001431}
1432
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001433Tool &Linux::SelectTool(const Compilation &C, const JobAction &JA,
1434 const ActionList &Inputs) const {
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001435 Action::ActionClass Key;
1436 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1437 Key = Action::AnalyzeJobClass;
1438 else
1439 Key = JA.getKind();
1440
Rafael Espindoladda5b922010-11-07 23:13:01 +00001441 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
1442 options::OPT_no_integrated_as,
1443 IsIntegratedAssemblerDefault());
1444
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001445 Tool *&T = Tools[Key];
1446 if (!T) {
1447 switch (Key) {
1448 case Action::AssembleJobClass:
Rafael Espindoladda5b922010-11-07 23:13:01 +00001449 if (UseIntegratedAs)
1450 T = new tools::ClangAs(*this);
1451 else
1452 T = new tools::linuxtools::Assemble(*this);
1453 break;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001454 case Action::LinkJobClass:
1455 T = new tools::linuxtools::Link(*this); break;
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001456 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001457 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001458 }
1459 }
1460
1461 return *T;
1462}
1463
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001464/// DragonFly - DragonFly tool chain which can call as(1) and ld(1) directly.
1465
Daniel Dunbarcb8ab232009-05-22 02:53:45 +00001466DragonFly::DragonFly(const HostInfo &Host, const llvm::Triple& Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +00001467 : Generic_ELF(Host, Triple) {
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001468
1469 // Path mangling to find libexec
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001470 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +00001471 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001472 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001473
Daniel Dunbaree788e72009-12-21 18:54:17 +00001474 getFilePaths().push_back(getDriver().Dir + "/../lib");
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001475 getFilePaths().push_back("/usr/lib");
1476 getFilePaths().push_back("/usr/lib/gcc41");
1477}
1478
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001479Tool &DragonFly::SelectTool(const Compilation &C, const JobAction &JA,
1480 const ActionList &Inputs) const {
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001481 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +00001482 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001483 Key = Action::AnalyzeJobClass;
1484 else
1485 Key = JA.getKind();
1486
1487 Tool *&T = Tools[Key];
1488 if (!T) {
1489 switch (Key) {
1490 case Action::AssembleJobClass:
1491 T = new tools::dragonfly::Assemble(*this); break;
1492 case Action::LinkJobClass:
1493 T = new tools::dragonfly::Link(*this); break;
1494 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001495 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001496 }
1497 }
1498
1499 return *T;
1500}
Michael J. Spencerff58e362010-08-21 21:55:07 +00001501
1502Windows::Windows(const HostInfo &Host, const llvm::Triple& Triple)
1503 : ToolChain(Host, Triple) {
1504}
1505
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001506Tool &Windows::SelectTool(const Compilation &C, const JobAction &JA,
1507 const ActionList &Inputs) const {
Michael J. Spencerff58e362010-08-21 21:55:07 +00001508 Action::ActionClass Key;
1509 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1510 Key = Action::AnalyzeJobClass;
1511 else
1512 Key = JA.getKind();
1513
1514 Tool *&T = Tools[Key];
1515 if (!T) {
1516 switch (Key) {
1517 case Action::InputClass:
1518 case Action::BindArchClass:
Chandler Carruthe97673f2010-08-22 06:56:37 +00001519 case Action::LipoJobClass:
1520 case Action::DsymutilJobClass:
Michael J. Spencerff58e362010-08-21 21:55:07 +00001521 assert(0 && "Invalid tool kind.");
1522 case Action::PreprocessJobClass:
1523 case Action::PrecompileJobClass:
1524 case Action::AnalyzeJobClass:
1525 case Action::CompileJobClass:
1526 T = new tools::Clang(*this); break;
1527 case Action::AssembleJobClass:
1528 T = new tools::ClangAs(*this); break;
1529 case Action::LinkJobClass:
1530 T = new tools::visualstudio::Link(*this); break;
1531 }
1532 }
1533
1534 return *T;
1535}
1536
1537bool Windows::IsIntegratedAssemblerDefault() const {
1538 return true;
1539}
1540
1541bool Windows::IsUnwindTablesDefault() const {
1542 // FIXME: Gross; we should probably have some separate target
1543 // definition, possibly even reusing the one in clang.
1544 return getArchName() == "x86_64";
1545}
1546
1547const char *Windows::GetDefaultRelocationModel() const {
1548 return "static";
1549}
1550
1551const char *Windows::GetForcedPicModel() const {
1552 if (getArchName() == "x86_64")
1553 return "pic";
1554 return 0;
1555}