blob: 6b152f442e623f4d35ef49b4f5bbb9d902daaa49 [file] [log] [blame]
Daniel Dunbar83b08eb2009-03-17 21:38:00 +00001//===--- ToolChains.h - ToolChain Implementations ---------------*- C++ -*-===//
2//
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#ifndef CLANG_LIB_DRIVER_TOOLCHAINS_H_
11#define CLANG_LIB_DRIVER_TOOLCHAINS_H_
12
Daniel Dunbar670b7f42009-03-17 22:07:31 +000013#include "clang/Driver/Action.h"
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000014#include "clang/Driver/ToolChain.h"
15
Daniel Dunbar670b7f42009-03-17 22:07:31 +000016#include "llvm/ADT/DenseMap.h"
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000017#include "llvm/Support/Compiler.h"
18
Daniel Dunbar670b7f42009-03-17 22:07:31 +000019#include "Tools.h"
20
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000021namespace clang {
22namespace driver {
Daniel Dunbar985b8252009-03-17 22:18:43 +000023namespace toolchains {
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000024
Daniel Dunbar1d4612b2009-09-18 08:15:13 +000025/// Generic_GCC - A tool chain using the 'gcc' command to perform
26/// all subcommands; this relies on gcc translating the majority of
27/// command line options.
Duncan Sands92dd1912010-05-11 20:16:05 +000028class LLVM_LIBRARY_VISIBILITY Generic_GCC : public ToolChain {
Daniel Dunbar75358d22009-03-30 21:06:03 +000029protected:
Chandler Carruth19347ed2011-11-06 23:39:34 +000030 /// \brief Struct to store and manipulate GCC versions.
31 ///
32 /// We rely on assumptions about the form and structure of GCC version
33 /// numbers: they consist of at most three '.'-separated components, and each
34 /// component is a non-negative integer except for the last component. For
35 /// the last component we are very flexible in order to tolerate release
36 /// candidates or 'x' wildcards.
37 ///
38 /// Note that the ordering established among GCCVersions is based on the
39 /// preferred version string to use. For example we prefer versions without
40 /// a hard-coded patch number to those with a hard coded patch number.
41 ///
42 /// Currently this doesn't provide any logic for textual suffixes to patches
43 /// in the way that (for example) Debian's version format does. If that ever
44 /// becomes necessary, it can be added.
45 struct GCCVersion {
46 /// \brief The unparsed text of the version.
47 std::string Text;
48
49 /// \brief The parsed major, minor, and patch numbers.
50 int Major, Minor, Patch;
51
52 /// \brief Any textual suffix on the patch number.
53 std::string PatchSuffix;
54
55 static GCCVersion Parse(StringRef VersionText);
56 bool operator<(const GCCVersion &RHS) const;
57 bool operator>(const GCCVersion &RHS) const { return RHS < *this; }
58 bool operator<=(const GCCVersion &RHS) const { return !(*this > RHS); }
59 bool operator>=(const GCCVersion &RHS) const { return !(*this < RHS); }
60 };
61
62
63 /// \brief This is a class to find a viable GCC installation for Clang to
64 /// use.
65 ///
66 /// This class tries to find a GCC installation on the system, and report
67 /// information about it. It starts from the host information provided to the
68 /// Driver, and has logic for fuzzing that where appropriate.
69 class GCCInstallationDetector {
70
71 bool IsValid;
Chandler Carruthfa5be912012-01-24 19:28:29 +000072 llvm::Triple GCCTriple;
Chandler Carruth19347ed2011-11-06 23:39:34 +000073
74 // FIXME: These might be better as path objects.
Chandler Carruth5d84bb42012-01-24 19:21:42 +000075 std::string GCCInstallPath;
76 std::string GCCParentLibPath;
Chandler Carruth19347ed2011-11-06 23:39:34 +000077
78 GCCVersion Version;
79
80 public:
81 GCCInstallationDetector(const Driver &D);
82
83 /// \brief Check whether we detected a valid GCC install.
84 bool isValid() const { return IsValid; }
85
86 /// \brief Get the GCC triple for the detected install.
Chandler Carruthfa5be912012-01-24 19:28:29 +000087 const llvm::Triple &getTriple() const { return GCCTriple; }
Chandler Carruth19347ed2011-11-06 23:39:34 +000088
89 /// \brief Get the detected GCC installation path.
Chandler Carruth5d84bb42012-01-24 19:21:42 +000090 StringRef getInstallPath() const { return GCCInstallPath; }
Chandler Carruth19347ed2011-11-06 23:39:34 +000091
92 /// \brief Get the detected GCC parent lib path.
Chandler Carruth5d84bb42012-01-24 19:21:42 +000093 StringRef getParentLibPath() const { return GCCParentLibPath; }
Chandler Carruth19347ed2011-11-06 23:39:34 +000094
95 /// \brief Get the detected GCC version string.
96 StringRef getVersion() const { return Version.Text; }
97
98 private:
99 static void CollectLibDirsAndTriples(llvm::Triple::ArchType HostArch,
100 SmallVectorImpl<StringRef> &LibDirs,
101 SmallVectorImpl<StringRef> &Triples);
102
Chandler Carruthd936d9d2011-11-09 03:46:20 +0000103 void ScanLibDirForGCCTriple(llvm::Triple::ArchType HostArch,
104 const std::string &LibDir,
Chandler Carruth19347ed2011-11-06 23:39:34 +0000105 StringRef CandidateTriple);
106 };
107
108 GCCInstallationDetector GCCInstallation;
109
Daniel Dunbar670b7f42009-03-17 22:07:31 +0000110 mutable llvm::DenseMap<unsigned, Tool*> Tools;
111
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000112public:
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000113 Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar39176082009-03-20 00:20:03 +0000114 ~Generic_GCC();
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000115
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000116 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
117 const ActionList &Inputs) const;
Daniel Dunbar670b7f42009-03-17 22:07:31 +0000118
Daniel Dunbar39176082009-03-20 00:20:03 +0000119 virtual bool IsUnwindTablesDefault() const;
120 virtual const char *GetDefaultRelocationModel() const;
121 virtual const char *GetForcedPicModel() const;
Chandler Carruthb37fe612011-11-06 23:39:37 +0000122
123protected:
124 /// \name ToolChain Implementation Helper Functions
125 /// @{
126
127 /// \brief Check whether the target triple's architecture is 64-bits.
128 bool isTarget64Bit() const {
129 return (getTriple().getArch() == llvm::Triple::x86_64 ||
130 getTriple().getArch() == llvm::Triple::ppc64);
131 }
132 /// \brief Check whether the target triple's architecture is 32-bits.
133 /// FIXME: This should likely do more than just negate the 64-bit query.
134 bool isTarget32Bit() const { return !isTarget64Bit(); }
135
136 /// @}
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000137};
138
Tony Linthicum96319392011-12-12 21:14:55 +0000139class LLVM_LIBRARY_VISIBILITY Hexagon_TC : public ToolChain {
140protected:
141 mutable llvm::DenseMap<unsigned, Tool*> Tools;
142
143public:
144 Hexagon_TC(const HostInfo &Host, const llvm::Triple& Triple);
145 ~Hexagon_TC();
146
147 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
148 const ActionList &Inputs) const;
149
150 virtual bool IsUnwindTablesDefault() const;
151 virtual const char *GetDefaultRelocationModel() const;
152 virtual const char *GetForcedPicModel() const;
153};
154
155 /// Darwin - The base Darwin tool chain.
Duncan Sands92dd1912010-05-11 20:16:05 +0000156class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain {
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000157public:
158 /// The host version.
159 unsigned DarwinVersion[3];
160
161private:
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000162 mutable llvm::DenseMap<unsigned, Tool*> Tools;
163
Daniel Dunbar26031372010-01-27 00:56:25 +0000164 /// Whether the information on the target has been initialized.
165 //
166 // FIXME: This should be eliminated. What we want to do is make this part of
167 // the "default target for arguments" selection process, once we get out of
168 // the argument translation business.
169 mutable bool TargetInitialized;
170
John McCallf85e1932011-06-15 23:02:42 +0000171 // FIXME: Remove this once there is a proper way to detect an ARC runtime
172 // for the simulator.
173 public:
174 mutable enum {
175 ARCSimulator_None,
176 ARCSimulator_HasARCRuntime,
177 ARCSimulator_NoARCRuntime
178 } ARCRuntimeForSimulator;
179
Bob Wilson163b1512011-10-07 17:54:41 +0000180 mutable enum {
181 LibCXXSimulator_None,
182 LibCXXSimulator_NotAvailable,
183 LibCXXSimulator_Available
184 } LibCXXForSimulator;
185
John McCallf85e1932011-06-15 23:02:42 +0000186private:
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000187 /// Whether we are targeting iPhoneOS target.
Daniel Dunbar26031372010-01-27 00:56:25 +0000188 mutable bool TargetIsIPhoneOS;
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000189
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000190 /// Whether we are targeting the iPhoneOS simulator target.
191 mutable bool TargetIsIPhoneOSSimulator;
192
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000193 /// The OS version we are targeting.
Daniel Dunbar26031372010-01-27 00:56:25 +0000194 mutable unsigned TargetVersion[3];
195
Daniel Dunbar02633b52009-03-26 16:23:12 +0000196 /// The default macosx-version-min of this tool chain; empty until
197 /// initialized.
Daniel Dunbar816bc312010-01-26 01:45:19 +0000198 std::string MacosxVersionMin;
Daniel Dunbar02633b52009-03-26 16:23:12 +0000199
John McCall9f084a32011-07-06 00:26:06 +0000200 bool hasARCRuntime() const;
201
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000202private:
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000203 void AddDeploymentTarget(DerivedArgList &Args) const;
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000204
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000205public:
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000206 Darwin(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbarf3955282009-09-04 18:34:51 +0000207 ~Darwin();
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000208
Chad Rosier61ab80a2011-09-20 20:44:06 +0000209 std::string ComputeEffectiveClangTriple(const ArgList &Args,
210 types::ID InputType) const;
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000211
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000212 /// @name Darwin Specific Toolchain API
213 /// {
214
Daniel Dunbar26031372010-01-27 00:56:25 +0000215 // FIXME: Eliminate these ...Target functions and derive separate tool chains
216 // for these targets and put version in constructor.
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000217 void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor,
218 unsigned Micro, bool IsIOSSim) const {
219 assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!");
220
Daniel Dunbar26031372010-01-27 00:56:25 +0000221 // FIXME: For now, allow reinitialization as long as values don't
222 // change. This will go away when we move away from argument translation.
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000223 if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS &&
224 TargetIsIPhoneOSSimulator == IsIOSSim &&
Daniel Dunbar26031372010-01-27 00:56:25 +0000225 TargetVersion[0] == Major && TargetVersion[1] == Minor &&
226 TargetVersion[2] == Micro)
227 return;
228
229 assert(!TargetInitialized && "Target already initialized!");
230 TargetInitialized = true;
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000231 TargetIsIPhoneOS = IsIPhoneOS;
232 TargetIsIPhoneOSSimulator = IsIOSSim;
Daniel Dunbar26031372010-01-27 00:56:25 +0000233 TargetVersion[0] = Major;
234 TargetVersion[1] = Minor;
235 TargetVersion[2] = Micro;
236 }
237
238 bool isTargetIPhoneOS() const {
239 assert(TargetInitialized && "Target not initialized!");
240 return TargetIsIPhoneOS;
241 }
242
Daniel Dunbar40355802011-03-31 17:12:33 +0000243 bool isTargetIOSSimulator() const {
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000244 assert(TargetInitialized && "Target not initialized!");
245 return TargetIsIPhoneOSSimulator;
Daniel Dunbar40355802011-03-31 17:12:33 +0000246 }
247
Daniel Dunbar03d87ee2010-03-20 00:50:21 +0000248 bool isTargetInitialized() const { return TargetInitialized; }
249
Daniel Dunbar26031372010-01-27 00:56:25 +0000250 void getTargetVersion(unsigned (&Res)[3]) const {
251 assert(TargetInitialized && "Target not initialized!");
252 Res[0] = TargetVersion[0];
253 Res[1] = TargetVersion[1];
254 Res[2] = TargetVersion[2];
255 }
256
Daniel Dunbareeff4062010-01-22 02:04:58 +0000257 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
258 /// invocation. For example, Darwin treats different ARM variations as
259 /// distinct architectures.
Chris Lattner686775d2011-07-20 06:58:45 +0000260 StringRef getDarwinArchName(const ArgList &Args) const;
Daniel Dunbareeff4062010-01-22 02:04:58 +0000261
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000262 static bool isVersionLT(unsigned (&A)[3], unsigned (&B)[3]) {
Daniel Dunbar608d04c2009-09-18 08:14:55 +0000263 for (unsigned i=0; i < 3; ++i) {
264 if (A[i] > B[i]) return false;
265 if (A[i] < B[i]) return true;
266 }
267 return false;
268 }
269
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000270 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
271 assert(isTargetIPhoneOS() && "Unexpected call for OS X target!");
272 unsigned B[3] = { V0, V1, V2 };
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000273 return isVersionLT(TargetVersion, B);
274 }
275
276 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
277 assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!");
278 unsigned B[3] = { V0, V1, V2 };
279 return isVersionLT(TargetVersion, B);
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000280 }
281
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000282 /// AddLinkSearchPathArgs - Add the linker search paths to \arg CmdArgs.
283 ///
284 /// \param Args - The input argument list.
285 /// \param CmdArgs [out] - The command argument list to append the paths
286 /// (prefixed by -L) to.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000287 virtual void AddLinkSearchPathArgs(const ArgList &Args,
288 ArgStringList &CmdArgs) const = 0;
Daniel Dunbar02633b52009-03-26 16:23:12 +0000289
John McCallf85e1932011-06-15 23:02:42 +0000290 /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library.
291 virtual void AddLinkARCArgs(const ArgList &Args,
292 ArgStringList &CmdArgs) const = 0;
293
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000294 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
295 /// runtime library.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000296 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
297 ArgStringList &CmdArgs) const = 0;
Eric Christopher3404fe72011-06-22 17:41:40 +0000298
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000299 /// }
300 /// @name ToolChain Implementation
301 /// {
302
Daniel Dunbar41800112010-08-02 05:43:56 +0000303 virtual types::ID LookupTypeForExtension(const char *Ext) const;
304
Daniel Dunbarb993f5d2010-09-17 00:24:52 +0000305 virtual bool HasNativeLLVMSupport() const;
306
John McCall9f084a32011-07-06 00:26:06 +0000307 virtual void configureObjCRuntime(ObjCRuntime &runtime) const;
John McCall13db5cf2011-09-09 20:41:01 +0000308 virtual bool hasBlocksRuntime() const;
John McCallf85e1932011-06-15 23:02:42 +0000309
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000310 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Daniel Dunbar0dcb9a32009-09-09 18:36:12 +0000311 const char *BoundArch) const;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000312
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000313 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
314 const ActionList &Inputs) const;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000315
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000316 virtual bool IsBlocksDefault() const {
Daniel Dunbaref44a5d2010-07-22 00:40:31 +0000317 // Always allow blocks on Darwin; users interested in versioning are
318 // expected to use /usr/include/Blocks.h.
319 return true;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000320 }
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000321 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000322#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
323 return false;
324#else
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000325 // Default integrated assembler to on for x86.
326 return (getTriple().getArch() == llvm::Triple::x86 ||
327 getTriple().getArch() == llvm::Triple::x86_64);
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000328#endif
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000329 }
Daniel Dunbar398c6102011-02-04 02:20:39 +0000330 virtual bool IsStrictAliasingDefault() const {
331#ifdef DISABLE_DEFAULT_STRICT_ALIASING
332 return false;
333#else
334 return ToolChain::IsStrictAliasingDefault();
335#endif
336 }
Ted Kremenekc32647d2010-12-23 21:35:43 +0000337
338 virtual bool IsObjCDefaultSynthPropertiesDefault() const {
Fariborz Jahaniane3685fd2011-09-01 20:23:17 +0000339 return false;
Ted Kremenekc32647d2010-12-23 21:35:43 +0000340 }
341
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000342 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000343 // Non-fragile ABI is default for everything but i386.
344 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000345 }
Daniel Dunbar609508c2010-02-01 21:07:43 +0000346 virtual bool IsObjCLegacyDispatchDefault() const {
347 // This is only used with the non-fragile ABI.
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000348
349 // Legacy dispatch is used everywhere except on x86_64.
350 return getTriple().getArch() != llvm::Triple::x86_64;
Daniel Dunbar609508c2010-02-01 21:07:43 +0000351 }
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000352 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000353 // This is only used with the non-fragile ABI and non-legacy dispatch.
354
355 // Mixed dispatch is used everywhere except OS X before 10.6.
356 return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6));
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000357 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000358 virtual bool IsUnwindTablesDefault() const;
Nico Weber2fef1112011-08-23 07:38:27 +0000359 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
360 // Stack protectors default to on for user code on 10.5,
361 // and for everything in 10.6 and beyond
Bob Wilsondfba0272011-12-14 06:08:25 +0000362 return isTargetIPhoneOS() ||
Nico Weber2fef1112011-08-23 07:38:27 +0000363 (!isMacosxVersionLT(10, 6) ||
364 (!isMacosxVersionLT(10, 5) && !KernelOrKext));
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000365 }
Daniel Dunbarc24767c2011-12-07 23:03:15 +0000366 virtual RuntimeLibType GetDefaultRuntimeLibType() const {
367 return ToolChain::RLT_CompilerRT;
368 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000369 virtual const char *GetDefaultRelocationModel() const;
370 virtual const char *GetForcedPicModel() const;
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000371
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000372 virtual bool SupportsProfiling() const;
373
Daniel Dunbar43a9b322010-04-10 16:20:23 +0000374 virtual bool SupportsObjCGC() const;
375
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000376 virtual bool UseDwarfDebugFlags() const;
377
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000378 virtual bool UseSjLjExceptions() const;
379
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000380 /// }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000381};
382
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000383/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sands92dd1912010-05-11 20:16:05 +0000384class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Bob Wilson8aa76ea2011-09-20 22:00:38 +0000385private:
386 void AddGCCLibexecPath(unsigned darwinVersion);
387
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000388public:
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000389 DarwinClang(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000390
391 /// @name Darwin ToolChain Implementation
392 /// {
393
394 virtual void AddLinkSearchPathArgs(const ArgList &Args,
395 ArgStringList &CmdArgs) const;
396
397 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
398 ArgStringList &CmdArgs) const;
Eric Christopher3404fe72011-06-22 17:41:40 +0000399 void AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs,
400 const char *DarwinStaticLib) const;
401
Daniel Dunbar132e35d2010-09-17 01:20:05 +0000402 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
403 ArgStringList &CmdArgs) const;
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000404
Shantonu Sen7433fed2010-09-17 18:39:08 +0000405 virtual void AddCCKextLibArgs(const ArgList &Args,
406 ArgStringList &CmdArgs) const;
407
John McCallf85e1932011-06-15 23:02:42 +0000408 virtual void AddLinkARCArgs(const ArgList &Args,
409 ArgStringList &CmdArgs) const;
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000410 /// }
411};
412
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000413/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sands92dd1912010-05-11 20:16:05 +0000414class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000415public:
416 Darwin_Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple)
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000417 : Generic_GCC(Host, Triple) {}
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000418
Chad Rosier61ab80a2011-09-20 20:44:06 +0000419 std::string ComputeEffectiveClangTriple(const ArgList &Args,
420 types::ID InputType) const;
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000421
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000422 virtual const char *GetDefaultRelocationModel() const { return "pic"; }
423};
424
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000425class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {
David Blaikie99ba9e32011-12-20 02:48:34 +0000426 virtual void anchor();
427public:
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000428 Generic_ELF(const HostInfo &Host, const llvm::Triple& Triple)
429 : Generic_GCC(Host, Triple) {}
430
431 virtual bool IsIntegratedAssemblerDefault() const {
432 // Default integrated assembler to on for x86.
433 return (getTriple().getArch() == llvm::Triple::x86 ||
434 getTriple().getArch() == llvm::Triple::x86_64);
435 }
436};
437
Duncan Sands92dd1912010-05-11 20:16:05 +0000438class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000439public:
440 AuroraUX(const HostInfo &Host, const llvm::Triple& Triple);
441
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000442 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
443 const ActionList &Inputs) const;
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000444};
445
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000446class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF {
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000447public:
448 OpenBSD(const HostInfo &Host, const llvm::Triple& Triple);
449
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000450 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
451 const ActionList &Inputs) const;
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000452};
453
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000454class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF {
Daniel Dunbar75358d22009-03-30 21:06:03 +0000455public:
Daniel Dunbar214afe92010-08-02 05:43:59 +0000456 FreeBSD(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar75358d22009-03-30 21:06:03 +0000457
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000458 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
459 const ActionList &Inputs) const;
Daniel Dunbar75358d22009-03-30 21:06:03 +0000460};
461
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000462class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
Joerg Sonnenberger182564c2011-05-16 13:35:02 +0000463 const llvm::Triple ToolTriple;
464
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000465public:
Joerg Sonnenberger182564c2011-05-16 13:35:02 +0000466 NetBSD(const HostInfo &Host, const llvm::Triple& Triple,
467 const llvm::Triple& ToolTriple);
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000468
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000469 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
470 const ActionList &Inputs) const;
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000471};
472
Eli Friedman6d402dc2011-12-08 23:54:21 +0000473class LLVM_LIBRARY_VISIBILITY Minix : public Generic_ELF {
Chris Lattner38e317d2010-07-07 16:01:42 +0000474public:
475 Minix(const HostInfo &Host, const llvm::Triple& Triple);
476
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000477 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
478 const ActionList &Inputs) const;
Chris Lattner38e317d2010-07-07 16:01:42 +0000479};
480
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000481class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000482public:
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000483 DragonFly(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000484
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000485 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
486 const ActionList &Inputs) const;
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000487};
488
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000489class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF {
Eli Friedman6b3454a2009-05-26 07:52:18 +0000490public:
491 Linux(const HostInfo &Host, const llvm::Triple& Triple);
Rafael Espindolaba30bbe2010-08-10 00:25:48 +0000492
Rafael Espindolac1da9812010-11-07 20:14:31 +0000493 virtual bool HasNativeLLVMSupport() const;
494
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000495 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
496 const ActionList &Inputs) const;
Rafael Espindolac1da9812010-11-07 20:14:31 +0000497
Chandler Carruth7d7e9f92011-11-05 20:17:13 +0000498 virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs,
499 ArgStringList &CC1Args) const;
500 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
501 ArgStringList &CC1Args) const;
502
Rafael Espindolac1da9812010-11-07 20:14:31 +0000503 std::string Linker;
504 std::vector<std::string> ExtraOpts;
Chandler Carruth79cbbdc2011-12-17 23:10:01 +0000505
506private:
507 static bool addLibStdCXXIncludePaths(Twine Base, Twine TargetArchDir,
508 const ArgList &DriverArgs,
509 ArgStringList &CC1Args);
Eli Friedman6b3454a2009-05-26 07:52:18 +0000510};
511
512
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000513/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
514/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sands92dd1912010-05-11 20:16:05 +0000515class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000516public:
517 TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple);
518 ~TCEToolChain();
519
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000520 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
521 const ActionList &Inputs) const;
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000522 bool IsMathErrnoDefault() const;
523 bool IsUnwindTablesDefault() const;
524 const char* GetDefaultRelocationModel() const;
525 const char* GetForcedPicModel() const;
526
527private:
528 mutable llvm::DenseMap<unsigned, Tool*> Tools;
529
530};
531
Michael J. Spencerff58e362010-08-21 21:55:07 +0000532class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain {
533 mutable llvm::DenseMap<unsigned, Tool*> Tools;
534
535public:
536 Windows(const HostInfo &Host, const llvm::Triple& Triple);
537
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000538 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
539 const ActionList &Inputs) const;
Michael J. Spencerff58e362010-08-21 21:55:07 +0000540
541 virtual bool IsIntegratedAssemblerDefault() const;
542 virtual bool IsUnwindTablesDefault() const;
543 virtual const char *GetDefaultRelocationModel() const;
544 virtual const char *GetForcedPicModel() const;
Chandler Carruthca234192011-11-04 23:49:05 +0000545
546 virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs,
547 ArgStringList &CC1Args) const;
548 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
549 ArgStringList &CC1Args) const;
550
Michael J. Spencerff58e362010-08-21 21:55:07 +0000551};
552
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000553} // end namespace toolchains
554} // end namespace driver
555} // end namespace clang
556
557#endif