blob: d4691ac86ef48154d1eeae334c57d9e15c2aef28 [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 Dunbar5ce872f2011-03-18 20:14:03 +0000175
176 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) {
177 // Fallback to llvm-gcc for i386 kext compiles, we don't support that ABI.
178 if (Inputs.size() == 1 &&
179 types::isCXX(Inputs[0]->getType()) &&
180 getTriple().getOS() == llvm::Triple::Darwin &&
181 getTriple().getArch() == llvm::Triple::x86 &&
182 C.getArgs().getLastArg(options::OPT_fapple_kext))
183 Key = JA.getKind();
184 else
185 Key = Action::AnalyzeJobClass;
186 } else
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000187 Key = JA.getKind();
188
Daniel Dunbar0f602de2010-05-20 21:48:38 +0000189 // FIXME: This doesn't belong here, but ideally we will support static soon
190 // anyway.
191 bool HasStatic = (C.getArgs().hasArg(options::OPT_mkernel) ||
192 C.getArgs().hasArg(options::OPT_static) ||
193 C.getArgs().hasArg(options::OPT_fapple_kext));
194 bool IsIADefault = IsIntegratedAssemblerDefault() && !HasStatic;
195 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
196 options::OPT_no_integrated_as,
197 IsIADefault);
198
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000199 Tool *&T = Tools[Key];
200 if (!T) {
201 switch (Key) {
202 case Action::InputClass:
203 case Action::BindArchClass:
204 assert(0 && "Invalid tool kind.");
205 case Action::PreprocessJobClass:
Daniel Dunbar9120f172009-03-29 22:27:40 +0000206 T = new tools::darwin::Preprocess(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000207 case Action::AnalyzeJobClass:
208 T = new tools::Clang(*this); break;
Daniel Dunbar9120f172009-03-29 22:27:40 +0000209 case Action::PrecompileJobClass:
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000210 case Action::CompileJobClass:
Daniel Dunbar9120f172009-03-29 22:27:40 +0000211 T = new tools::darwin::Compile(*this); break;
Daniel Dunbar0f602de2010-05-20 21:48:38 +0000212 case Action::AssembleJobClass: {
213 if (UseIntegratedAs)
214 T = new tools::ClangAs(*this);
215 else
216 T = new tools::darwin::Assemble(*this);
217 break;
218 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000219 case Action::LinkJobClass:
Daniel Dunbar8f289622009-09-04 17:39:02 +0000220 T = new tools::darwin::Link(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000221 case Action::LipoJobClass:
222 T = new tools::darwin::Lipo(*this); break;
Daniel Dunbar6e0f2542010-06-04 18:28:36 +0000223 case Action::DsymutilJobClass:
224 T = new tools::darwin::Dsymutil(*this); break;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000225 }
226 }
227
228 return *T;
229}
230
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000231
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000232DarwinClang::DarwinClang(const HostInfo &Host, const llvm::Triple& Triple)
233 : Darwin(Host, Triple)
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000234{
Daniel Dunbar47023092011-03-18 19:25:15 +0000235 std::string UsrPrefix = "llvm-gcc-4.2/";
236
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000237 getProgramPaths().push_back(getDriver().getInstalledDir());
238 if (getDriver().getInstalledDir() != getDriver().Dir)
239 getProgramPaths().push_back(getDriver().Dir);
240
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000241 // We expect 'as', 'ld', etc. to be adjacent to our install dir.
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000242 getProgramPaths().push_back(getDriver().getInstalledDir());
243 if (getDriver().getInstalledDir() != getDriver().Dir)
244 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000245
246 // For fallback, we need to know how to find the GCC cc1 executables, so we
Daniel Dunbar47023092011-03-18 19:25:15 +0000247 // also add the GCC libexec paths. This is legacy code that can be removed
248 // once fallback is no longer useful.
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000249 std::string ToolChainDir = "i686-apple-darwin";
250 ToolChainDir += llvm::utostr(DarwinVersion[0]);
251 ToolChainDir += "/4.2.1";
252
253 std::string Path = getDriver().Dir;
Daniel Dunbar47023092011-03-18 19:25:15 +0000254 Path += "/../" + UsrPrefix + "libexec/gcc/";
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000255 Path += ToolChainDir;
256 getProgramPaths().push_back(Path);
257
Daniel Dunbar47023092011-03-18 19:25:15 +0000258 Path = "/usr/" + UsrPrefix + "libexec/gcc/";
Daniel Dunbar0e50ee42010-09-17 08:22:12 +0000259 Path += ToolChainDir;
260 getProgramPaths().push_back(Path);
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000261}
262
263void DarwinClang::AddLinkSearchPathArgs(const ArgList &Args,
264 ArgStringList &CmdArgs) const {
265 // The Clang toolchain uses explicit paths for internal libraries.
Daniel Dunbar424b6612010-06-30 23:56:13 +0000266
267 // Unfortunately, we still might depend on a few of the libraries that are
268 // only available in the gcc library directory (in particular
269 // libstdc++.dylib). For now, hardcode the path to the known install location.
270 llvm::sys::Path P(getDriver().Dir);
271 P.eraseComponent(); // .../usr/bin -> ../usr
272 P.appendComponent("lib");
273 P.appendComponent("gcc");
274 switch (getTriple().getArch()) {
275 default:
276 assert(0 && "Invalid Darwin arch!");
277 case llvm::Triple::x86:
278 case llvm::Triple::x86_64:
279 P.appendComponent("i686-apple-darwin10");
280 break;
281 case llvm::Triple::arm:
282 case llvm::Triple::thumb:
283 P.appendComponent("arm-apple-darwin10");
284 break;
285 case llvm::Triple::ppc:
286 case llvm::Triple::ppc64:
287 P.appendComponent("powerpc-apple-darwin10");
288 break;
289 }
290 P.appendComponent("4.2.1");
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000291
292 // Determine the arch specific GCC subdirectory.
293 const char *ArchSpecificDir = 0;
294 switch (getTriple().getArch()) {
295 default:
296 break;
297 case llvm::Triple::arm:
Daniel Dunbar3a0e3922010-08-26 00:55:52 +0000298 case llvm::Triple::thumb: {
299 std::string Triple = ComputeLLVMTriple(Args);
300 llvm::StringRef TripleStr = Triple;
301 if (TripleStr.startswith("armv5") || TripleStr.startswith("thumbv5"))
302 ArchSpecificDir = "v5";
303 else if (TripleStr.startswith("armv6") || TripleStr.startswith("thumbv6"))
304 ArchSpecificDir = "v6";
305 else if (TripleStr.startswith("armv7") || TripleStr.startswith("thumbv7"))
306 ArchSpecificDir = "v7";
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000307 break;
Daniel Dunbar3a0e3922010-08-26 00:55:52 +0000308 }
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000309 case llvm::Triple::ppc64:
310 ArchSpecificDir = "ppc64";
311 break;
312 case llvm::Triple::x86_64:
313 ArchSpecificDir = "x86_64";
314 break;
315 }
316
317 if (ArchSpecificDir) {
318 P.appendComponent(ArchSpecificDir);
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000319 bool Exists;
320 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Daniel Dunbareab3bc42010-08-23 20:58:52 +0000321 CmdArgs.push_back(Args.MakeArgString("-L" + P.str()));
322 P.eraseComponent();
323 }
324
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000325 bool Exists;
326 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Daniel Dunbar424b6612010-06-30 23:56:13 +0000327 CmdArgs.push_back(Args.MakeArgString("-L" + P.str()));
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000328}
329
330void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args,
331 ArgStringList &CmdArgs) const {
Daniel Dunbareec99102010-01-22 03:38:14 +0000332 // Darwin doesn't support real static executables, don't link any runtime
333 // libraries with -static.
334 if (Args.hasArg(options::OPT_static))
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000335 return;
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000336
337 // Reject -static-libgcc for now, we can deal with this when and if someone
338 // cares. This is useful in situations where someone wants to statically link
339 // something like libstdc++, and needs its runtime support routines.
340 if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000341 getDriver().Diag(clang::diag::err_drv_unsupported_opt)
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000342 << A->getAsString(Args);
343 return;
344 }
345
Daniel Dunbareec99102010-01-22 03:38:14 +0000346 // Otherwise link libSystem, then the dynamic runtime library, and finally any
347 // target specific static runtime library.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000348 CmdArgs.push_back("-lSystem");
Daniel Dunbareec99102010-01-22 03:38:14 +0000349
350 // Select the dynamic runtime library and the target specific static library.
351 const char *DarwinStaticLib = 0;
Daniel Dunbar251ca6c2010-01-27 00:56:37 +0000352 if (isTargetIPhoneOS()) {
Daniel Dunbareec99102010-01-22 03:38:14 +0000353 CmdArgs.push_back("-lgcc_s.1");
354
355 // We may need some static functions for armv6/thumb which are required to
356 // be in the same linkage unit as their caller.
357 if (getDarwinArchName(Args) == "armv6")
358 DarwinStaticLib = "libclang_rt.armv6.a";
359 } else {
Daniel Dunbareec99102010-01-22 03:38:14 +0000360 // The dynamic runtime library was merged with libSystem for 10.6 and
361 // beyond; only 10.4 and 10.5 need an additional runtime library.
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000362 if (isMacosxVersionLT(10, 5))
Daniel Dunbareec99102010-01-22 03:38:14 +0000363 CmdArgs.push_back("-lgcc_s.10.4");
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000364 else if (isMacosxVersionLT(10, 6))
Daniel Dunbareec99102010-01-22 03:38:14 +0000365 CmdArgs.push_back("-lgcc_s.10.5");
366
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000367 // For OS X, we thought we would only need a static runtime library when
368 // targetting 10.4, to provide versions of the static functions which were
369 // omitted from 10.4.dylib.
370 //
371 // Unfortunately, that turned out to not be true, because Darwin system
372 // headers can still use eprintf on i386, and it is not exported from
373 // libSystem. Therefore, we still must provide a runtime library just for
374 // the tiny tiny handful of projects that *might* use that symbol.
375 if (isMacosxVersionLT(10, 5)) {
Daniel Dunbareec99102010-01-22 03:38:14 +0000376 DarwinStaticLib = "libclang_rt.10.4.a";
Daniel Dunbar885b1db2010-09-22 00:03:52 +0000377 } else {
378 if (getTriple().getArch() == llvm::Triple::x86)
379 DarwinStaticLib = "libclang_rt.eprintf.a";
380 }
Daniel Dunbareec99102010-01-22 03:38:14 +0000381 }
382
383 /// Add the target specific static library, if needed.
384 if (DarwinStaticLib) {
385 llvm::sys::Path P(getDriver().ResourceDir);
386 P.appendComponent("lib");
387 P.appendComponent("darwin");
388 P.appendComponent(DarwinStaticLib);
389
390 // For now, allow missing resource libraries to support developers who may
391 // not have compiler-rt checked out or integrated into their build.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000392 bool Exists;
393 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Daniel Dunbareec99102010-01-22 03:38:14 +0000394 CmdArgs.push_back(Args.MakeArgString(P.str()));
395 }
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000396}
397
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000398void Darwin::AddDeploymentTarget(DerivedArgList &Args) const {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000399 const OptTable &Opts = getDriver().getOpts();
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000400
Daniel Dunbar26031372010-01-27 00:56:25 +0000401 Arg *OSXVersion = Args.getLastArg(options::OPT_mmacosx_version_min_EQ);
402 Arg *iPhoneVersion = Args.getLastArg(options::OPT_miphoneos_version_min_EQ);
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000403 if (OSXVersion && iPhoneVersion) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000404 getDriver().Diag(clang::diag::err_drv_argument_not_allowed_with)
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000405 << OSXVersion->getAsString(Args)
Mike Stump1eb44332009-09-09 15:08:12 +0000406 << iPhoneVersion->getAsString(Args);
Daniel Dunbar26031372010-01-27 00:56:25 +0000407 iPhoneVersion = 0;
Daniel Dunbarff8857a2009-04-10 20:11:50 +0000408 } else if (!OSXVersion && !iPhoneVersion) {
Daniel Dunbar816bc312010-01-26 01:45:19 +0000409 // If neither OS X nor iPhoneOS targets were specified, check for
410 // environment defines.
411 const char *OSXTarget = ::getenv("MACOSX_DEPLOYMENT_TARGET");
412 const char *iPhoneOSTarget = ::getenv("IPHONEOS_DEPLOYMENT_TARGET");
Daniel Dunbarf36a06a2009-04-10 21:00:07 +0000413
Daniel Dunbar816bc312010-01-26 01:45:19 +0000414 // Ignore empty strings.
415 if (OSXTarget && OSXTarget[0] == '\0')
416 OSXTarget = 0;
417 if (iPhoneOSTarget && iPhoneOSTarget[0] == '\0')
418 iPhoneOSTarget = 0;
419
Daniel Dunbar39053672010-02-02 17:31:12 +0000420 // Diagnose conflicting deployment targets, and choose default platform
421 // based on the tool chain.
422 //
423 // FIXME: Don't hardcode default here.
424 if (OSXTarget && iPhoneOSTarget) {
425 // FIXME: We should see if we can get away with warning or erroring on
426 // this. Perhaps put under -pedantic?
427 if (getTriple().getArch() == llvm::Triple::arm ||
428 getTriple().getArch() == llvm::Triple::thumb)
Daniel Dunbar84d1e6e2010-03-20 08:47:42 +0000429 OSXTarget = 0;
Daniel Dunbar39053672010-02-02 17:31:12 +0000430 else
Daniel Dunbar84d1e6e2010-03-20 08:47:42 +0000431 iPhoneOSTarget = 0;
Daniel Dunbar39053672010-02-02 17:31:12 +0000432 }
Daniel Dunbar1a3c1d92010-01-29 17:02:25 +0000433
Daniel Dunbar39053672010-02-02 17:31:12 +0000434 if (OSXTarget) {
Daniel Dunbar30392de2009-09-04 18:35:21 +0000435 const Option *O = Opts.getOption(options::OPT_mmacosx_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000436 OSXVersion = Args.MakeJoinedArg(0, O, OSXTarget);
437 Args.append(OSXVersion);
Daniel Dunbar816bc312010-01-26 01:45:19 +0000438 } else if (iPhoneOSTarget) {
Daniel Dunbar30392de2009-09-04 18:35:21 +0000439 const Option *O = Opts.getOption(options::OPT_miphoneos_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000440 iPhoneVersion = Args.MakeJoinedArg(0, O, iPhoneOSTarget);
441 Args.append(iPhoneVersion);
Daniel Dunbar816bc312010-01-26 01:45:19 +0000442 } else {
Daniel Dunbar2bb38d02010-07-15 16:18:06 +0000443 // Otherwise, assume we are targeting OS X.
444 const Option *O = Opts.getOption(options::OPT_mmacosx_version_min_EQ);
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000445 OSXVersion = Args.MakeJoinedArg(0, O, MacosxVersionMin);
446 Args.append(OSXVersion);
Daniel Dunbar30392de2009-09-04 18:35:21 +0000447 }
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000448 }
Mike Stump1eb44332009-09-09 15:08:12 +0000449
Daniel Dunbar26031372010-01-27 00:56:25 +0000450 // Set the tool chain target information.
451 unsigned Major, Minor, Micro;
452 bool HadExtra;
453 if (OSXVersion) {
454 assert(!iPhoneVersion && "Unknown target platform!");
455 if (!Driver::GetReleaseVersion(OSXVersion->getValue(Args), Major, Minor,
456 Micro, HadExtra) || HadExtra ||
457 Major != 10 || Minor >= 10 || Micro >= 10)
458 getDriver().Diag(clang::diag::err_drv_invalid_version_number)
459 << OSXVersion->getAsString(Args);
460 } else {
461 assert(iPhoneVersion && "Unknown target platform!");
462 if (!Driver::GetReleaseVersion(iPhoneVersion->getValue(Args), Major, Minor,
463 Micro, HadExtra) || HadExtra ||
464 Major >= 10 || Minor >= 100 || Micro >= 100)
465 getDriver().Diag(clang::diag::err_drv_invalid_version_number)
466 << iPhoneVersion->getAsString(Args);
467 }
468 setTarget(iPhoneVersion, Major, Minor, Micro);
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000469}
470
Daniel Dunbar132e35d2010-09-17 01:20:05 +0000471void DarwinClang::AddCXXStdlibLibArgs(const ArgList &Args,
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000472 ArgStringList &CmdArgs) const {
473 CXXStdlibType Type = GetCXXStdlibType(Args);
474
475 switch (Type) {
476 case ToolChain::CST_Libcxx:
477 CmdArgs.push_back("-lc++");
478 break;
479
480 case ToolChain::CST_Libstdcxx: {
481 // Unfortunately, -lstdc++ doesn't always exist in the standard search path;
482 // it was previously found in the gcc lib dir. However, for all the Darwin
483 // platforms we care about it was -lstdc++.6, so we search for that
484 // explicitly if we can't see an obvious -lstdc++ candidate.
485
486 // Check in the sysroot first.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000487 bool Exists;
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000488 if (const Arg *A = Args.getLastArg(options::OPT_isysroot)) {
489 llvm::sys::Path P(A->getValue(Args));
490 P.appendComponent("usr");
491 P.appendComponent("lib");
492 P.appendComponent("libstdc++.dylib");
493
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000494 if (llvm::sys::fs::exists(P.str(), Exists) || !Exists) {
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000495 P.eraseComponent();
496 P.appendComponent("libstdc++.6.dylib");
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000497 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists) {
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000498 CmdArgs.push_back(Args.MakeArgString(P.str()));
499 return;
500 }
501 }
502 }
503
504 // Otherwise, look in the root.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000505 if ((llvm::sys::fs::exists("/usr/lib/libstdc++.dylib", Exists) || !Exists)&&
506 (!llvm::sys::fs::exists("/usr/lib/libstdc++.6.dylib", Exists) && Exists)){
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000507 CmdArgs.push_back("/usr/lib/libstdc++.6.dylib");
508 return;
509 }
510
511 // Otherwise, let the linker search.
512 CmdArgs.push_back("-lstdc++");
513 break;
514 }
515 }
516}
517
Shantonu Sen7433fed2010-09-17 18:39:08 +0000518void DarwinClang::AddCCKextLibArgs(const ArgList &Args,
519 ArgStringList &CmdArgs) const {
520
521 // For Darwin platforms, use the compiler-rt-based support library
522 // instead of the gcc-provided one (which is also incidentally
523 // only present in the gcc lib dir, which makes it hard to find).
524
525 llvm::sys::Path P(getDriver().ResourceDir);
526 P.appendComponent("lib");
527 P.appendComponent("darwin");
528 P.appendComponent("libclang_rt.cc_kext.a");
529
530 // For now, allow missing resource libraries to support developers who may
531 // not have compiler-rt checked out or integrated into their build.
Michael J. Spencer32bef4e2011-01-10 02:34:13 +0000532 bool Exists;
533 if (!llvm::sys::fs::exists(P.str(), Exists) && Exists)
Shantonu Sen7433fed2010-09-17 18:39:08 +0000534 CmdArgs.push_back(Args.MakeArgString(P.str()));
535}
536
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000537DerivedArgList *Darwin::TranslateArgs(const DerivedArgList &Args,
538 const char *BoundArch) const {
539 DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs());
540 const OptTable &Opts = getDriver().getOpts();
541
542 // FIXME: We really want to get out of the tool chain level argument
543 // translation business, as it makes the driver functionality much
544 // more opaque. For now, we follow gcc closely solely for the
545 // purpose of easily achieving feature parity & testability. Once we
546 // have something that works, we should reevaluate each translation
547 // and try to push it down into tool specific logic.
Daniel Dunbar26031372010-01-27 00:56:25 +0000548
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000549 for (ArgList::const_iterator it = Args.begin(),
550 ie = Args.end(); it != ie; ++it) {
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000551 Arg *A = *it;
552
553 if (A->getOption().matches(options::OPT_Xarch__)) {
554 // FIXME: Canonicalize name.
555 if (getArchName() != A->getValue(Args, 0))
556 continue;
557
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000558 Arg *OriginalArg = A;
Daniel Dunbar0e100312010-06-14 21:23:08 +0000559 unsigned Index = Args.getBaseArgs().MakeIndex(A->getValue(Args, 1));
560 unsigned Prev = Index;
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000561 Arg *XarchArg = Opts.ParseOneArg(Args, Index);
Mike Stump1eb44332009-09-09 15:08:12 +0000562
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000563 // If the argument parsing failed or more than one argument was
564 // consumed, the -Xarch_ argument's parameter tried to consume
565 // extra arguments. Emit an error and ignore.
566 //
567 // We also want to disallow any options which would alter the
568 // driver behavior; that isn't going to work in our model. We
569 // use isDriverOption() as an approximation, although things
570 // like -O4 are going to slip through.
Mike Stump1eb44332009-09-09 15:08:12 +0000571 if (!XarchArg || Index > Prev + 1 ||
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000572 XarchArg->getOption().isDriverOption()) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000573 getDriver().Diag(clang::diag::err_drv_invalid_Xarch_argument)
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000574 << A->getAsString(Args);
575 continue;
576 }
577
Daniel Dunbar478edc22009-03-29 22:29:05 +0000578 XarchArg->setBaseArg(A);
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000579 A = XarchArg;
Daniel Dunbar0e100312010-06-14 21:23:08 +0000580
581 DAL->AddSynthesizedArg(A);
Daniel Dunbar8ac38d72011-02-19 05:33:51 +0000582
583 // Linker input arguments require custom handling. The problem is that we
584 // have already constructed the phase actions, so we can not treat them as
585 // "input arguments".
586 if (A->getOption().isLinkerInput()) {
587 // Convert the argument into individual Zlinker_input_args.
588 for (unsigned i = 0, e = A->getNumValues(); i != e; ++i) {
589 DAL->AddSeparateArg(OriginalArg,
590 Opts.getOption(options::OPT_Zlinker_input),
591 A->getValue(Args, i));
592
593 }
594 continue;
595 }
Mike Stump1eb44332009-09-09 15:08:12 +0000596 }
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000597
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000598 // Sob. These is strictly gcc compatible for the time being. Apple
599 // gcc translates options twice, which means that self-expanding
600 // options add duplicates.
Daniel Dunbar9e1f9822009-11-19 04:14:53 +0000601 switch ((options::ID) A->getOption().getID()) {
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000602 default:
603 DAL->append(A);
604 break;
605
606 case options::OPT_mkernel:
607 case options::OPT_fapple_kext:
608 DAL->append(A);
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000609 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
610 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000611 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000612
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000613 case options::OPT_dependency_file:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000614 DAL->AddSeparateArg(A, Opts.getOption(options::OPT_MF),
615 A->getValue(Args));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000616 break;
617
618 case options::OPT_gfull:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000619 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
620 DAL->AddFlagArg(A,
621 Opts.getOption(options::OPT_fno_eliminate_unused_debug_symbols));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000622 break;
623
624 case options::OPT_gused:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000625 DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag));
626 DAL->AddFlagArg(A,
627 Opts.getOption(options::OPT_feliminate_unused_debug_symbols));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000628 break;
629
630 case options::OPT_fterminated_vtables:
631 case options::OPT_findirect_virtual_calls:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000632 DAL->AddFlagArg(A, Opts.getOption(options::OPT_fapple_kext));
633 DAL->AddFlagArg(A, Opts.getOption(options::OPT_static));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000634 break;
635
636 case options::OPT_shared:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000637 DAL->AddFlagArg(A, Opts.getOption(options::OPT_dynamiclib));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000638 break;
639
640 case options::OPT_fconstant_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000641 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mconstant_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000642 break;
643
644 case options::OPT_fno_constant_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000645 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_constant_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000646 break;
647
648 case options::OPT_Wnonportable_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000649 DAL->AddFlagArg(A,
650 Opts.getOption(options::OPT_mwarn_nonportable_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000651 break;
652
653 case options::OPT_Wno_nonportable_cfstrings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000654 DAL->AddFlagArg(A,
655 Opts.getOption(options::OPT_mno_warn_nonportable_cfstrings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000656 break;
657
658 case options::OPT_fpascal_strings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000659 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mpascal_strings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000660 break;
661
662 case options::OPT_fno_pascal_strings:
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000663 DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_pascal_strings));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000664 break;
665 }
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000666 }
667
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000668 if (getTriple().getArch() == llvm::Triple::x86 ||
669 getTriple().getArch() == llvm::Triple::x86_64)
Daniel Dunbare4bdae72009-11-19 04:00:53 +0000670 if (!Args.hasArgNoClaim(options::OPT_mtune_EQ))
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000671 DAL->AddJoinedArg(0, Opts.getOption(options::OPT_mtune_EQ), "core2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000672
673 // Add the arch options based on the particular spelling of -arch, to match
674 // how the driver driver works.
675 if (BoundArch) {
676 llvm::StringRef Name = BoundArch;
677 const Option *MCpu = Opts.getOption(options::OPT_mcpu_EQ);
678 const Option *MArch = Opts.getOption(options::OPT_march_EQ);
679
680 // This code must be kept in sync with LLVM's getArchTypeForDarwinArch,
681 // which defines the list of which architectures we accept.
682 if (Name == "ppc")
683 ;
684 else if (Name == "ppc601")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000685 DAL->AddJoinedArg(0, MCpu, "601");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000686 else if (Name == "ppc603")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000687 DAL->AddJoinedArg(0, MCpu, "603");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000688 else if (Name == "ppc604")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000689 DAL->AddJoinedArg(0, MCpu, "604");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000690 else if (Name == "ppc604e")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000691 DAL->AddJoinedArg(0, MCpu, "604e");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000692 else if (Name == "ppc750")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000693 DAL->AddJoinedArg(0, MCpu, "750");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000694 else if (Name == "ppc7400")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000695 DAL->AddJoinedArg(0, MCpu, "7400");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000696 else if (Name == "ppc7450")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000697 DAL->AddJoinedArg(0, MCpu, "7450");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000698 else if (Name == "ppc970")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000699 DAL->AddJoinedArg(0, MCpu, "970");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000700
701 else if (Name == "ppc64")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000702 DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64));
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000703
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000704 else if (Name == "i386")
705 ;
706 else if (Name == "i486")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000707 DAL->AddJoinedArg(0, MArch, "i486");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000708 else if (Name == "i586")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000709 DAL->AddJoinedArg(0, MArch, "i586");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000710 else if (Name == "i686")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000711 DAL->AddJoinedArg(0, MArch, "i686");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000712 else if (Name == "pentium")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000713 DAL->AddJoinedArg(0, MArch, "pentium");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000714 else if (Name == "pentium2")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000715 DAL->AddJoinedArg(0, MArch, "pentium2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000716 else if (Name == "pentpro")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000717 DAL->AddJoinedArg(0, MArch, "pentiumpro");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000718 else if (Name == "pentIIm3")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000719 DAL->AddJoinedArg(0, MArch, "pentium2");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000720
721 else if (Name == "x86_64")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000722 DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64));
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000723
724 else if (Name == "arm")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000725 DAL->AddJoinedArg(0, MArch, "armv4t");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000726 else if (Name == "armv4t")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000727 DAL->AddJoinedArg(0, MArch, "armv4t");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000728 else if (Name == "armv5")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000729 DAL->AddJoinedArg(0, MArch, "armv5tej");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000730 else if (Name == "xscale")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000731 DAL->AddJoinedArg(0, MArch, "xscale");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000732 else if (Name == "armv6")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000733 DAL->AddJoinedArg(0, MArch, "armv6k");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000734 else if (Name == "armv7")
Daniel Dunbar9d0863b2010-06-14 20:20:41 +0000735 DAL->AddJoinedArg(0, MArch, "armv7a");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000736
737 else
Jeffrey Yasskin9f61aa92009-12-12 05:05:38 +0000738 llvm_unreachable("invalid Darwin arch");
Daniel Dunbar84ec96c2009-09-09 22:33:15 +0000739 }
Daniel Dunbarec069ed2009-03-25 06:58:31 +0000740
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000741 // Add an explicit version min argument for the deployment target. We do this
742 // after argument translation because -Xarch_ arguments may add a version min
743 // argument.
744 AddDeploymentTarget(*DAL);
745
Daniel Dunbar4e7e9cf2009-03-25 06:12:34 +0000746 return DAL;
Mike Stump1eb44332009-09-09 15:08:12 +0000747}
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000748
Daniel Dunbarf3955282009-09-04 18:34:51 +0000749bool Darwin::IsUnwindTablesDefault() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000750 // FIXME: Gross; we should probably have some separate target
751 // definition, possibly even reusing the one in clang.
752 return getArchName() == "x86_64";
753}
754
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000755bool Darwin::UseDwarfDebugFlags() const {
756 if (const char *S = ::getenv("RC_DEBUG_OPTIONS"))
757 return S[0] != '\0';
758 return false;
759}
760
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000761bool Darwin::UseSjLjExceptions() const {
762 // Darwin uses SjLj exceptions on ARM.
763 return (getTriple().getArch() == llvm::Triple::arm ||
764 getTriple().getArch() == llvm::Triple::thumb);
765}
766
Daniel Dunbarf3955282009-09-04 18:34:51 +0000767const char *Darwin::GetDefaultRelocationModel() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000768 return "pic";
769}
770
Daniel Dunbarf3955282009-09-04 18:34:51 +0000771const char *Darwin::GetForcedPicModel() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000772 if (getArchName() == "x86_64")
773 return "pic";
774 return 0;
775}
776
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000777bool Darwin::SupportsProfiling() const {
778 // Profiling instrumentation is only supported on x86.
779 return getArchName() == "i386" || getArchName() == "x86_64";
780}
781
Daniel Dunbar43a9b322010-04-10 16:20:23 +0000782bool Darwin::SupportsObjCGC() const {
783 // Garbage collection is supported everywhere except on iPhone OS.
784 return !isTargetIPhoneOS();
785}
786
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000787std::string
788Darwin_Generic_GCC::ComputeEffectiveClangTriple(const ArgList &Args) const {
789 return ComputeLLVMTriple(Args);
790}
791
Daniel Dunbar39176082009-03-20 00:20:03 +0000792/// Generic_GCC - A tool chain using the 'gcc' command to perform
793/// all subcommands; this relies on gcc translating the majority of
794/// command line options.
795
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000796Generic_GCC::Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple)
Mike Stump1eb44332009-09-09 15:08:12 +0000797 : ToolChain(Host, Triple) {
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000798 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +0000799 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +0000800 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbarc50b00d2009-03-23 16:15:50 +0000801}
802
Daniel Dunbar39176082009-03-20 00:20:03 +0000803Generic_GCC::~Generic_GCC() {
804 // Free tool implementations.
805 for (llvm::DenseMap<unsigned, Tool*>::iterator
806 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
807 delete it->second;
808}
809
Mike Stump1eb44332009-09-09 15:08:12 +0000810Tool &Generic_GCC::SelectTool(const Compilation &C,
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000811 const JobAction &JA,
812 const ActionList &Inputs) const {
Daniel Dunbar39176082009-03-20 00:20:03 +0000813 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000814 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar39176082009-03-20 00:20:03 +0000815 Key = Action::AnalyzeJobClass;
816 else
817 Key = JA.getKind();
818
819 Tool *&T = Tools[Key];
820 if (!T) {
821 switch (Key) {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000822 case Action::InputClass:
823 case Action::BindArchClass:
Daniel Dunbar39176082009-03-20 00:20:03 +0000824 assert(0 && "Invalid tool kind.");
825 case Action::PreprocessJobClass:
826 T = new tools::gcc::Preprocess(*this); break;
827 case Action::PrecompileJobClass:
828 T = new tools::gcc::Precompile(*this); break;
829 case Action::AnalyzeJobClass:
830 T = new tools::Clang(*this); break;
831 case Action::CompileJobClass:
832 T = new tools::gcc::Compile(*this); break;
833 case Action::AssembleJobClass:
834 T = new tools::gcc::Assemble(*this); break;
835 case Action::LinkJobClass:
836 T = new tools::gcc::Link(*this); break;
Mike Stump1eb44332009-09-09 15:08:12 +0000837
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000838 // This is a bit ungeneric, but the only platform using a driver
839 // driver is Darwin.
840 case Action::LipoJobClass:
841 T = new tools::darwin::Lipo(*this); break;
Daniel Dunbar6e0f2542010-06-04 18:28:36 +0000842 case Action::DsymutilJobClass:
843 T = new tools::darwin::Dsymutil(*this); break;
Daniel Dunbar39176082009-03-20 00:20:03 +0000844 }
845 }
846
847 return *T;
848}
849
Daniel Dunbar39176082009-03-20 00:20:03 +0000850bool Generic_GCC::IsUnwindTablesDefault() const {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000851 // FIXME: Gross; we should probably have some separate target
852 // definition, possibly even reusing the one in clang.
Daniel Dunbar39176082009-03-20 00:20:03 +0000853 return getArchName() == "x86_64";
854}
855
856const char *Generic_GCC::GetDefaultRelocationModel() const {
857 return "static";
858}
859
860const char *Generic_GCC::GetForcedPicModel() const {
861 return 0;
862}
Daniel Dunbarf3cad362009-03-25 04:13:45 +0000863
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000864/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
865/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
866/// Currently does not support anything else but compilation.
867
868TCEToolChain::TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple)
869 : ToolChain(Host, Triple) {
870 // Path mangling to find libexec
871 std::string Path(getDriver().Dir);
872
873 Path += "/../libexec";
874 getProgramPaths().push_back(Path);
875}
876
877TCEToolChain::~TCEToolChain() {
878 for (llvm::DenseMap<unsigned, Tool*>::iterator
879 it = Tools.begin(), ie = Tools.end(); it != ie; ++it)
880 delete it->second;
881}
882
883bool TCEToolChain::IsMathErrnoDefault() const {
884 return true;
885}
886
887bool TCEToolChain::IsUnwindTablesDefault() const {
888 return false;
889}
890
891const char *TCEToolChain::GetDefaultRelocationModel() const {
892 return "static";
893}
894
895const char *TCEToolChain::GetForcedPicModel() const {
896 return 0;
897}
898
899Tool &TCEToolChain::SelectTool(const Compilation &C,
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000900 const JobAction &JA,
901 const ActionList &Inputs) const {
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000902 Action::ActionClass Key;
903 Key = Action::AnalyzeJobClass;
904
905 Tool *&T = Tools[Key];
906 if (!T) {
907 switch (Key) {
908 case Action::PreprocessJobClass:
909 T = new tools::gcc::Preprocess(*this); break;
910 case Action::AnalyzeJobClass:
911 T = new tools::Clang(*this); break;
912 default:
913 assert(false && "Unsupported action for TCE target.");
914 }
915 }
916 return *T;
917}
918
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000919/// OpenBSD - OpenBSD tool chain which can call as(1) and ld(1) directly.
920
921OpenBSD::OpenBSD(const HostInfo &Host, const llvm::Triple& Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000922 : Generic_ELF(Host, Triple) {
Daniel Dunbaree788e72009-12-21 18:54:17 +0000923 getFilePaths().push_back(getDriver().Dir + "/../lib");
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000924 getFilePaths().push_back("/usr/lib");
925}
926
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000927Tool &OpenBSD::SelectTool(const Compilation &C, const JobAction &JA,
928 const ActionList &Inputs) const {
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000929 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000930 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000931 Key = Action::AnalyzeJobClass;
932 else
933 Key = JA.getKind();
934
Rafael Espindoladda5b922010-11-07 23:13:01 +0000935 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
936 options::OPT_no_integrated_as,
937 IsIntegratedAssemblerDefault());
938
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000939 Tool *&T = Tools[Key];
940 if (!T) {
941 switch (Key) {
Rafael Espindoladda5b922010-11-07 23:13:01 +0000942 case Action::AssembleJobClass: {
943 if (UseIntegratedAs)
944 T = new tools::ClangAs(*this);
945 else
946 T = new tools::openbsd::Assemble(*this);
947 break;
948 }
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000949 case Action::LinkJobClass:
950 T = new tools::openbsd::Link(*this); break;
951 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000952 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000953 }
954 }
955
956 return *T;
957}
958
Daniel Dunbar75358d22009-03-30 21:06:03 +0000959/// FreeBSD - FreeBSD tool chain which can call as(1) and ld(1) directly.
960
Daniel Dunbar214afe92010-08-02 05:43:59 +0000961FreeBSD::FreeBSD(const HostInfo &Host, const llvm::Triple& Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000962 : Generic_ELF(Host, Triple) {
Daniel Dunbar214afe92010-08-02 05:43:59 +0000963
964 // Determine if we are compiling 32-bit code on an x86_64 platform.
965 bool Lib32 = false;
966 if (Triple.getArch() == llvm::Triple::x86 &&
967 llvm::Triple(getDriver().DefaultHostTriple).getArch() ==
968 llvm::Triple::x86_64)
969 Lib32 = true;
970
Daniel Dunbarbc534662009-04-02 18:30:04 +0000971 if (Lib32) {
Daniel Dunbarbc534662009-04-02 18:30:04 +0000972 getFilePaths().push_back("/usr/lib32");
973 } else {
Daniel Dunbarbc534662009-04-02 18:30:04 +0000974 getFilePaths().push_back("/usr/lib");
975 }
Daniel Dunbar75358d22009-03-30 21:06:03 +0000976}
977
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000978Tool &FreeBSD::SelectTool(const Compilation &C, const JobAction &JA,
979 const ActionList &Inputs) const {
Daniel Dunbar75358d22009-03-30 21:06:03 +0000980 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +0000981 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar75358d22009-03-30 21:06:03 +0000982 Key = Action::AnalyzeJobClass;
983 else
984 Key = JA.getKind();
985
Roman Divacky67dece72010-11-08 17:46:39 +0000986 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
987 options::OPT_no_integrated_as,
988 IsIntegratedAssemblerDefault());
989
Daniel Dunbar75358d22009-03-30 21:06:03 +0000990 Tool *&T = Tools[Key];
991 if (!T) {
992 switch (Key) {
Daniel Dunbar68a31d42009-03-31 17:45:15 +0000993 case Action::AssembleJobClass:
Roman Divacky67dece72010-11-08 17:46:39 +0000994 if (UseIntegratedAs)
995 T = new tools::ClangAs(*this);
996 else
997 T = new tools::freebsd::Assemble(*this);
Roman Divackyfe3a7ea2010-11-08 19:39:10 +0000998 break;
Daniel Dunbar008f54a2009-04-01 19:36:32 +0000999 case Action::LinkJobClass:
1000 T = new tools::freebsd::Link(*this); break;
Daniel Dunbar75358d22009-03-30 21:06:03 +00001001 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001002 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Daniel Dunbar75358d22009-03-30 21:06:03 +00001003 }
1004 }
1005
1006 return *T;
1007}
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001008
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001009/// NetBSD - NetBSD tool chain which can call as(1) and ld(1) directly.
1010
1011NetBSD::NetBSD(const HostInfo &Host, const llvm::Triple& Triple)
1012 : Generic_ELF(Host, Triple) {
1013
1014 // Determine if we are compiling 32-bit code on an x86_64 platform.
1015 bool Lib32 = false;
1016 if (Triple.getArch() == llvm::Triple::x86 &&
1017 llvm::Triple(getDriver().DefaultHostTriple).getArch() ==
1018 llvm::Triple::x86_64)
1019 Lib32 = true;
1020
Joerg Sonnenberger05e59302011-03-21 13:59:26 +00001021 if (getDriver().UseStdLib) {
1022 if (Lib32)
1023 getFilePaths().push_back("=/usr/lib/i386");
1024 else
1025 getFilePaths().push_back("=/usr/lib");
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001026 }
1027}
1028
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001029Tool &NetBSD::SelectTool(const Compilation &C, const JobAction &JA,
1030 const ActionList &Inputs) const {
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001031 Action::ActionClass Key;
1032 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1033 Key = Action::AnalyzeJobClass;
1034 else
1035 Key = JA.getKind();
1036
1037 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
1038 options::OPT_no_integrated_as,
1039 IsIntegratedAssemblerDefault());
1040
1041 Tool *&T = Tools[Key];
1042 if (!T) {
1043 switch (Key) {
1044 case Action::AssembleJobClass:
1045 if (UseIntegratedAs)
1046 T = new tools::ClangAs(*this);
1047 else
1048 T = new tools::netbsd::Assemble(*this);
1049 break;
1050 case Action::LinkJobClass:
1051 T = new tools::netbsd::Link(*this); break;
1052 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001053 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Benjamin Kramer8e50a962011-02-02 18:59:27 +00001054 }
1055 }
1056
1057 return *T;
1058}
1059
Chris Lattner38e317d2010-07-07 16:01:42 +00001060/// Minix - Minix tool chain which can call as(1) and ld(1) directly.
1061
1062Minix::Minix(const HostInfo &Host, const llvm::Triple& Triple)
1063 : Generic_GCC(Host, Triple) {
1064 getFilePaths().push_back(getDriver().Dir + "/../lib");
1065 getFilePaths().push_back("/usr/lib");
1066 getFilePaths().push_back("/usr/gnu/lib");
1067 getFilePaths().push_back("/usr/gnu/lib/gcc/i686-pc-minix/4.4.3");
1068}
1069
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001070Tool &Minix::SelectTool(const Compilation &C, const JobAction &JA,
1071 const ActionList &Inputs) const {
Chris Lattner38e317d2010-07-07 16:01:42 +00001072 Action::ActionClass Key;
1073 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1074 Key = Action::AnalyzeJobClass;
1075 else
1076 Key = JA.getKind();
1077
1078 Tool *&T = Tools[Key];
1079 if (!T) {
1080 switch (Key) {
1081 case Action::AssembleJobClass:
1082 T = new tools::minix::Assemble(*this); break;
1083 case Action::LinkJobClass:
1084 T = new tools::minix::Link(*this); break;
1085 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001086 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Chris Lattner38e317d2010-07-07 16:01:42 +00001087 }
1088 }
1089
1090 return *T;
1091}
1092
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001093/// AuroraUX - AuroraUX tool chain which can call as(1) and ld(1) directly.
1094
1095AuroraUX::AuroraUX(const HostInfo &Host, const llvm::Triple& Triple)
1096 : Generic_GCC(Host, Triple) {
1097
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001098 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +00001099 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001100 getProgramPaths().push_back(getDriver().Dir);
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001101
Daniel Dunbaree788e72009-12-21 18:54:17 +00001102 getFilePaths().push_back(getDriver().Dir + "/../lib");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001103 getFilePaths().push_back("/usr/lib");
1104 getFilePaths().push_back("/usr/sfw/lib");
1105 getFilePaths().push_back("/opt/gcc4/lib");
Edward O'Callaghan7adf9492009-10-15 07:44:07 +00001106 getFilePaths().push_back("/opt/gcc4/lib/gcc/i386-pc-solaris2.11/4.2.4");
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001107
1108}
1109
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001110Tool &AuroraUX::SelectTool(const Compilation &C, const JobAction &JA,
1111 const ActionList &Inputs) const {
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001112 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +00001113 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001114 Key = Action::AnalyzeJobClass;
1115 else
1116 Key = JA.getKind();
1117
1118 Tool *&T = Tools[Key];
1119 if (!T) {
1120 switch (Key) {
1121 case Action::AssembleJobClass:
1122 T = new tools::auroraux::Assemble(*this); break;
1123 case Action::LinkJobClass:
1124 T = new tools::auroraux::Link(*this); break;
1125 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001126 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Edward O'Callaghane7925a02009-08-22 01:06:46 +00001127 }
1128 }
1129
1130 return *T;
1131}
1132
1133
Eli Friedman6b3454a2009-05-26 07:52:18 +00001134/// Linux toolchain (very bare-bones at the moment).
1135
Rafael Espindolac1da9812010-11-07 20:14:31 +00001136enum LinuxDistro {
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001137 ArchLinux,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001138 DebianLenny,
1139 DebianSqueeze,
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001140 Exherbo,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001141 Fedora13,
1142 Fedora14,
1143 OpenSuse11_3,
Douglas Gregor814638e2011-03-14 15:39:50 +00001144 UbuntuHardy,
1145 UbuntuIntrepid,
Rafael Espindola021aaa42010-11-10 05:00:22 +00001146 UbuntuJaunty,
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001147 UbuntuKarmic,
Rafael Espindolac1da9812010-11-07 20:14:31 +00001148 UbuntuLucid,
1149 UbuntuMaverick,
1150 UnknownDistro
1151};
1152
1153static bool IsFedora(enum LinuxDistro Distro) {
1154 return Distro == Fedora13 || Distro == Fedora14;
1155}
1156
1157static bool IsOpenSuse(enum LinuxDistro Distro) {
1158 return Distro == OpenSuse11_3;
1159}
1160
1161static bool IsDebian(enum LinuxDistro Distro) {
1162 return Distro == DebianLenny || Distro == DebianSqueeze;
1163}
1164
1165static bool IsUbuntu(enum LinuxDistro Distro) {
Douglas Gregor814638e2011-03-14 15:39:50 +00001166 return Distro == UbuntuHardy || Distro == UbuntuIntrepid ||
1167 Distro == UbuntuLucid || Distro == UbuntuMaverick ||
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001168 Distro == UbuntuJaunty || Distro == UbuntuKarmic;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001169}
1170
1171static bool IsDebianBased(enum LinuxDistro Distro) {
1172 return IsDebian(Distro) || IsUbuntu(Distro);
1173}
1174
1175static bool HasMultilib(llvm::Triple::ArchType Arch, enum LinuxDistro Distro) {
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001176 if (Arch == llvm::Triple::x86_64) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001177 bool Exists;
1178 if (Distro == Exherbo &&
1179 (llvm::sys::fs::exists("/usr/lib32/libc.so", Exists) || !Exists))
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001180 return false;
1181
Rafael Espindolac1da9812010-11-07 20:14:31 +00001182 return true;
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001183 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00001184 if (Arch == llvm::Triple::x86 && IsDebianBased(Distro))
1185 return true;
1186 return false;
1187}
1188
1189static LinuxDistro DetectLinuxDistro(llvm::Triple::ArchType Arch) {
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001190 llvm::OwningPtr<llvm::MemoryBuffer> File;
1191 if (!llvm::MemoryBuffer::getFile("/etc/lsb-release", File)) {
1192 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001193 llvm::SmallVector<llvm::StringRef, 8> Lines;
1194 Data.split(Lines, "\n");
1195 for (unsigned int i = 0, s = Lines.size(); i < s; ++ i) {
Douglas Gregor814638e2011-03-14 15:39:50 +00001196 if (Lines[i] == "DISTRIB_CODENAME=hardy")
1197 return UbuntuHardy;
1198 if (Lines[i] == "DISTRIB_CODENAME=intrepid")
1199 return UbuntuIntrepid;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001200 if (Lines[i] == "DISTRIB_CODENAME=maverick")
1201 return UbuntuMaverick;
1202 else if (Lines[i] == "DISTRIB_CODENAME=lucid")
1203 return UbuntuLucid;
Rafael Espindola021aaa42010-11-10 05:00:22 +00001204 else if (Lines[i] == "DISTRIB_CODENAME=jaunty")
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001205 return UbuntuJaunty;
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001206 else if (Lines[i] == "DISTRIB_CODENAME=karmic")
1207 return UbuntuKarmic;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001208 }
1209 return UnknownDistro;
1210 }
1211
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001212 if (!llvm::MemoryBuffer::getFile("/etc/redhat-release", File)) {
1213 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001214 if (Data.startswith("Fedora release 14 (Laughlin)"))
1215 return Fedora14;
1216 else if (Data.startswith("Fedora release 13 (Goddard)"))
1217 return Fedora13;
1218 return UnknownDistro;
1219 }
1220
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001221 if (!llvm::MemoryBuffer::getFile("/etc/debian_version", File)) {
1222 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001223 if (Data[0] == '5')
1224 return DebianLenny;
1225 else if (Data.startswith("squeeze/sid"))
1226 return DebianSqueeze;
1227 return UnknownDistro;
1228 }
1229
Michael J. Spencer4eeebc42010-12-16 03:28:14 +00001230 if (!llvm::MemoryBuffer::getFile("/etc/SuSE-release", File)) {
1231 llvm::StringRef Data = File.get()->getBuffer();
Rafael Espindolac1da9812010-11-07 20:14:31 +00001232 if (Data.startswith("openSUSE 11.3"))
1233 return OpenSuse11_3;
1234 return UnknownDistro;
1235 }
1236
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001237 bool Exists;
1238 if (!llvm::sys::fs::exists("/etc/exherbo-release", Exists) && Exists)
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001239 return Exherbo;
1240
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001241 if (!llvm::sys::fs::exists("/etc/arch-release", Exists) && Exists)
1242 return ArchLinux;
1243
Rafael Espindolac1da9812010-11-07 20:14:31 +00001244 return UnknownDistro;
1245}
1246
Nick Lewycky3fdcc6f2010-12-31 17:31:54 +00001247Linux::Linux(const HostInfo &Host, const llvm::Triple &Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +00001248 : Generic_ELF(Host, Triple) {
Rafael Espindolac1da9812010-11-07 20:14:31 +00001249 llvm::Triple::ArchType Arch =
1250 llvm::Triple(getDriver().DefaultHostTriple).getArch();
Daniel Dunbara9822de2009-08-06 01:47:11 +00001251
Rafael Espindolac1da9812010-11-07 20:14:31 +00001252 std::string Suffix32 = "";
1253 if (Arch == llvm::Triple::x86_64)
1254 Suffix32 = "/32";
Daniel Dunbara9822de2009-08-06 01:47:11 +00001255
Rafael Espindolac1da9812010-11-07 20:14:31 +00001256 std::string Suffix64 = "";
1257 if (Arch == llvm::Triple::x86)
1258 Suffix64 = "/64";
1259
1260 std::string Lib32 = "lib";
1261
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001262 bool Exists;
1263 if (!llvm::sys::fs::exists("/lib32", Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001264 Lib32 = "lib32";
1265
1266 std::string Lib64 = "lib";
Michael J. Spencer2dea7c72011-01-12 23:54:48 +00001267 bool Symlink;
Chris Lattner48aef362011-01-13 01:35:58 +00001268 if (!llvm::sys::fs::exists("/lib64", Exists) && Exists &&
1269 (llvm::sys::fs::is_symlink("/lib64", Symlink) || !Symlink))
Rafael Espindolac1da9812010-11-07 20:14:31 +00001270 Lib64 = "lib64";
1271
1272 std::string GccTriple = "";
Douglas Gregorf0594d82011-03-06 19:11:49 +00001273 if (Arch == llvm::Triple::arm || Arch == llvm::Triple::thumb) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001274 if (!llvm::sys::fs::exists("/usr/lib/gcc/arm-linux-gnueabi", Exists) &&
1275 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001276 GccTriple = "arm-linux-gnueabi";
1277 } else if (Arch == llvm::Triple::x86_64) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001278 if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-linux-gnu", Exists) &&
1279 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001280 GccTriple = "x86_64-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001281 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-unknown-linux-gnu",
1282 Exists) && Exists)
Rafael Espindola53dd00b2010-11-17 00:25:26 +00001283 GccTriple = "x86_64-unknown-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001284 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-pc-linux-gnu",
1285 Exists) && Exists)
Rafael Espindola0a84aee2010-11-11 02:07:13 +00001286 GccTriple = "x86_64-pc-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001287 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-redhat-linux",
1288 Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001289 GccTriple = "x86_64-redhat-linux";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001290 else if (!llvm::sys::fs::exists("/usr/lib64/gcc/x86_64-suse-linux",
1291 Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001292 GccTriple = "x86_64-suse-linux";
Nick Lewyckye10f9002011-02-01 23:03:29 +00001293 else if (!llvm::sys::fs::exists("/usr/lib/gcc/x86_64-manbo-linux-gnu",
1294 Exists) && Exists)
1295 GccTriple = "x86_64-manbo-linux-gnu";
Rafael Espindolac1da9812010-11-07 20:14:31 +00001296 } else if (Arch == llvm::Triple::x86) {
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001297 if (!llvm::sys::fs::exists("/usr/lib/gcc/i686-linux-gnu", Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001298 GccTriple = "i686-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001299 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i686-pc-linux-gnu", Exists) &&
1300 Exists)
Nuno Lopes2a69ddd2010-11-19 17:26:57 +00001301 GccTriple = "i686-pc-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001302 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i486-linux-gnu", Exists) &&
1303 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001304 GccTriple = "i486-linux-gnu";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001305 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i686-redhat-linux", Exists) &&
1306 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001307 GccTriple = "i686-redhat-linux";
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001308 else if (!llvm::sys::fs::exists("/usr/lib/gcc/i586-suse-linux", Exists) &&
1309 Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001310 GccTriple = "i586-suse-linux";
1311 }
1312
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001313 const char* GccVersions[] = {"4.5.2", "4.5.1", "4.5", "4.4.5", "4.4.4",
1314 "4.4.3", "4.4", "4.3.4", "4.3.3", "4.3.2",
Douglas Gregor814638e2011-03-14 15:39:50 +00001315 "4.3", "4.2.4", "4.2.3", "4.2.2", "4.2.1",
1316 "4.2"};
Rafael Espindolac1da9812010-11-07 20:14:31 +00001317 std::string Base = "";
1318 for (unsigned i = 0; i < sizeof(GccVersions)/sizeof(char*); ++i) {
1319 std::string Suffix = GccTriple + "/" + GccVersions[i];
1320 std::string t1 = "/usr/lib/gcc/" + Suffix;
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001321 if (!llvm::sys::fs::exists(t1 + "/crtbegin.o", Exists) && Exists) {
Rafael Espindolac1da9812010-11-07 20:14:31 +00001322 Base = t1;
1323 break;
1324 }
1325 std::string t2 = "/usr/lib64/gcc/" + Suffix;
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001326 if (!llvm::sys::fs::exists(t2 + "/crtbegin.o", Exists) && Exists) {
Rafael Espindolac1da9812010-11-07 20:14:31 +00001327 Base = t2;
1328 break;
1329 }
1330 }
1331
1332 path_list &Paths = getFilePaths();
1333 bool Is32Bits = getArch() == llvm::Triple::x86;
1334
1335 std::string Suffix;
1336 std::string Lib;
1337
1338 if (Is32Bits) {
1339 Suffix = Suffix32;
1340 Lib = Lib32;
1341 } else {
1342 Suffix = Suffix64;
1343 Lib = Lib64;
1344 }
1345
1346 llvm::sys::Path LinkerPath(Base + "/../../../../" + GccTriple + "/bin/ld");
Michael J. Spencer32bef4e2011-01-10 02:34:13 +00001347 if (!llvm::sys::fs::exists(LinkerPath.str(), Exists) && Exists)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001348 Linker = LinkerPath.str();
1349 else
1350 Linker = GetProgramPath("ld");
1351
1352 LinuxDistro Distro = DetectLinuxDistro(Arch);
1353
Rafael Espindola94c80222010-11-08 14:48:47 +00001354 if (IsUbuntu(Distro)) {
1355 ExtraOpts.push_back("-z");
1356 ExtraOpts.push_back("relro");
1357 }
Rafael Espindolac1da9812010-11-07 20:14:31 +00001358
Douglas Gregorf0594d82011-03-06 19:11:49 +00001359 if (Arch == llvm::Triple::arm || Arch == llvm::Triple::thumb)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001360 ExtraOpts.push_back("-X");
1361
1362 if (IsFedora(Distro) || Distro == UbuntuMaverick)
1363 ExtraOpts.push_back("--hash-style=gnu");
1364
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001365 if (IsDebian(Distro) || Distro == UbuntuLucid || Distro == UbuntuJaunty ||
1366 Distro == UbuntuKarmic)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001367 ExtraOpts.push_back("--hash-style=both");
1368
1369 if (IsFedora(Distro))
1370 ExtraOpts.push_back("--no-add-needed");
1371
Rafael Espindola021aaa42010-11-10 05:00:22 +00001372 if (Distro == DebianSqueeze || IsOpenSuse(Distro) ||
Zhongxing Xu5ede8072010-11-15 09:01:52 +00001373 IsFedora(Distro) || Distro == UbuntuLucid || Distro == UbuntuMaverick ||
1374 Distro == UbuntuKarmic)
Rafael Espindolac1da9812010-11-07 20:14:31 +00001375 ExtraOpts.push_back("--build-id");
1376
Chandler Carruth3fd345a2011-02-25 06:39:53 +00001377 if (Distro == ArchLinux)
1378 Lib = "lib";
1379
Rafael Espindolac1da9812010-11-07 20:14:31 +00001380 Paths.push_back(Base + Suffix);
1381 if (HasMultilib(Arch, Distro)) {
1382 if (IsOpenSuse(Distro) && Is32Bits)
1383 Paths.push_back(Base + "/../../../../" + GccTriple + "/lib/../lib");
1384 Paths.push_back(Base + "/../../../../" + Lib);
1385 Paths.push_back("/lib/../" + Lib);
1386 Paths.push_back("/usr/lib/../" + Lib);
1387 }
1388 if (!Suffix.empty())
1389 Paths.push_back(Base);
1390 if (IsOpenSuse(Distro))
1391 Paths.push_back(Base + "/../../../../" + GccTriple + "/lib");
1392 Paths.push_back(Base + "/../../..");
1393 if (Arch == getArch() && IsUbuntu(Distro))
1394 Paths.push_back("/usr/lib/" + GccTriple);
1395}
1396
1397bool Linux::HasNativeLLVMSupport() const {
1398 return true;
Eli Friedman6b3454a2009-05-26 07:52:18 +00001399}
1400
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001401Tool &Linux::SelectTool(const Compilation &C, const JobAction &JA,
1402 const ActionList &Inputs) const {
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001403 Action::ActionClass Key;
1404 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1405 Key = Action::AnalyzeJobClass;
1406 else
1407 Key = JA.getKind();
1408
Rafael Espindoladda5b922010-11-07 23:13:01 +00001409 bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as,
1410 options::OPT_no_integrated_as,
1411 IsIntegratedAssemblerDefault());
1412
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001413 Tool *&T = Tools[Key];
1414 if (!T) {
1415 switch (Key) {
1416 case Action::AssembleJobClass:
Rafael Espindoladda5b922010-11-07 23:13:01 +00001417 if (UseIntegratedAs)
1418 T = new tools::ClangAs(*this);
1419 else
1420 T = new tools::linuxtools::Assemble(*this);
1421 break;
Rafael Espindolac1da9812010-11-07 20:14:31 +00001422 case Action::LinkJobClass:
1423 T = new tools::linuxtools::Link(*this); break;
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001424 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001425 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Rafael Espindolaba30bbe2010-08-10 00:25:48 +00001426 }
1427 }
1428
1429 return *T;
1430}
1431
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001432/// DragonFly - DragonFly tool chain which can call as(1) and ld(1) directly.
1433
Daniel Dunbarcb8ab232009-05-22 02:53:45 +00001434DragonFly::DragonFly(const HostInfo &Host, const llvm::Triple& Triple)
Rafael Espindolae43cfa12010-10-29 20:14:02 +00001435 : Generic_ELF(Host, Triple) {
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001436
1437 // Path mangling to find libexec
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001438 getProgramPaths().push_back(getDriver().getInstalledDir());
Benjamin Kramer86643b82011-03-01 22:50:47 +00001439 if (getDriver().getInstalledDir() != getDriver().Dir)
Daniel Dunbaredf29b02010-08-01 22:29:51 +00001440 getProgramPaths().push_back(getDriver().Dir);
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001441
Daniel Dunbaree788e72009-12-21 18:54:17 +00001442 getFilePaths().push_back(getDriver().Dir + "/../lib");
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001443 getFilePaths().push_back("/usr/lib");
1444 getFilePaths().push_back("/usr/lib/gcc41");
1445}
1446
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001447Tool &DragonFly::SelectTool(const Compilation &C, const JobAction &JA,
1448 const ActionList &Inputs) const {
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001449 Action::ActionClass Key;
Daniel Dunbaree788e72009-12-21 18:54:17 +00001450 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001451 Key = Action::AnalyzeJobClass;
1452 else
1453 Key = JA.getKind();
1454
1455 Tool *&T = Tools[Key];
1456 if (!T) {
1457 switch (Key) {
1458 case Action::AssembleJobClass:
1459 T = new tools::dragonfly::Assemble(*this); break;
1460 case Action::LinkJobClass:
1461 T = new tools::dragonfly::Link(*this); break;
1462 default:
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001463 T = &Generic_GCC::SelectTool(C, JA, Inputs);
Daniel Dunbar11e1b402009-05-02 18:28:39 +00001464 }
1465 }
1466
1467 return *T;
1468}
Michael J. Spencerff58e362010-08-21 21:55:07 +00001469
1470Windows::Windows(const HostInfo &Host, const llvm::Triple& Triple)
1471 : ToolChain(Host, Triple) {
1472}
1473
Daniel Dunbarac0659a2011-03-18 20:14:00 +00001474Tool &Windows::SelectTool(const Compilation &C, const JobAction &JA,
1475 const ActionList &Inputs) const {
Michael J. Spencerff58e362010-08-21 21:55:07 +00001476 Action::ActionClass Key;
1477 if (getDriver().ShouldUseClangCompiler(C, JA, getTriple()))
1478 Key = Action::AnalyzeJobClass;
1479 else
1480 Key = JA.getKind();
1481
1482 Tool *&T = Tools[Key];
1483 if (!T) {
1484 switch (Key) {
1485 case Action::InputClass:
1486 case Action::BindArchClass:
Chandler Carruthe97673f2010-08-22 06:56:37 +00001487 case Action::LipoJobClass:
1488 case Action::DsymutilJobClass:
Michael J. Spencerff58e362010-08-21 21:55:07 +00001489 assert(0 && "Invalid tool kind.");
1490 case Action::PreprocessJobClass:
1491 case Action::PrecompileJobClass:
1492 case Action::AnalyzeJobClass:
1493 case Action::CompileJobClass:
1494 T = new tools::Clang(*this); break;
1495 case Action::AssembleJobClass:
1496 T = new tools::ClangAs(*this); break;
1497 case Action::LinkJobClass:
1498 T = new tools::visualstudio::Link(*this); break;
1499 }
1500 }
1501
1502 return *T;
1503}
1504
1505bool Windows::IsIntegratedAssemblerDefault() const {
1506 return true;
1507}
1508
1509bool Windows::IsUnwindTablesDefault() const {
1510 // FIXME: Gross; we should probably have some separate target
1511 // definition, possibly even reusing the one in clang.
1512 return getArchName() == "x86_64";
1513}
1514
1515const char *Windows::GetDefaultRelocationModel() const {
1516 return "static";
1517}
1518
1519const char *Windows::GetForcedPicModel() const {
1520 if (getArchName() == "x86_64")
1521 return "pic";
1522 return 0;
1523}