blob: c9ff3a0473d15e3da880959d999048b4bf86abc9 [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:
Daniel Dunbar670b7f42009-03-17 22:07:31 +000030 mutable llvm::DenseMap<unsigned, Tool*> Tools;
31
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000032public:
Daniel Dunbarcb8ab232009-05-22 02:53:45 +000033 Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar39176082009-03-20 00:20:03 +000034 ~Generic_GCC();
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000035
Daniel Dunbarac0659a2011-03-18 20:14:00 +000036 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
37 const ActionList &Inputs) const;
Daniel Dunbar670b7f42009-03-17 22:07:31 +000038
Daniel Dunbar39176082009-03-20 00:20:03 +000039 virtual bool IsUnwindTablesDefault() const;
40 virtual const char *GetDefaultRelocationModel() const;
41 virtual const char *GetForcedPicModel() const;
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000042};
43
Daniel Dunbar1d4612b2009-09-18 08:15:13 +000044/// Darwin - The base Darwin tool chain.
Duncan Sands92dd1912010-05-11 20:16:05 +000045class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain {
Daniel Dunbar25b58eb2010-08-02 05:44:07 +000046public:
47 /// The host version.
48 unsigned DarwinVersion[3];
49
50private:
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +000051 mutable llvm::DenseMap<unsigned, Tool*> Tools;
52
Daniel Dunbar26031372010-01-27 00:56:25 +000053 /// Whether the information on the target has been initialized.
54 //
55 // FIXME: This should be eliminated. What we want to do is make this part of
56 // the "default target for arguments" selection process, once we get out of
57 // the argument translation business.
58 mutable bool TargetInitialized;
59
John McCallf85e1932011-06-15 23:02:42 +000060 // FIXME: Remove this once there is a proper way to detect an ARC runtime
61 // for the simulator.
62 public:
63 mutable enum {
64 ARCSimulator_None,
65 ARCSimulator_HasARCRuntime,
66 ARCSimulator_NoARCRuntime
67 } ARCRuntimeForSimulator;
68
69private:
Chris Lattnerfc8f0e12011-04-15 05:22:18 +000070 /// Whether we are targeting iPhoneOS target.
Daniel Dunbar26031372010-01-27 00:56:25 +000071 mutable bool TargetIsIPhoneOS;
Daniel Dunbareb840bd2010-05-14 02:03:00 +000072
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +000073 /// Whether we are targeting the iPhoneOS simulator target.
74 mutable bool TargetIsIPhoneOSSimulator;
75
Chris Lattnerfc8f0e12011-04-15 05:22:18 +000076 /// The OS version we are targeting.
Daniel Dunbar26031372010-01-27 00:56:25 +000077 mutable unsigned TargetVersion[3];
78
Daniel Dunbar02633b52009-03-26 16:23:12 +000079 /// The default macosx-version-min of this tool chain; empty until
80 /// initialized.
Daniel Dunbar816bc312010-01-26 01:45:19 +000081 std::string MacosxVersionMin;
Daniel Dunbar02633b52009-03-26 16:23:12 +000082
John McCall9f084a32011-07-06 00:26:06 +000083 bool hasARCRuntime() const;
84
Daniel Dunbarc0e665e2010-07-19 17:11:33 +000085private:
Daniel Dunbar60baf0f2010-07-19 17:11:36 +000086 void AddDeploymentTarget(DerivedArgList &Args) const;
Daniel Dunbarc0e665e2010-07-19 17:11:33 +000087
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +000088public:
Daniel Dunbar25b58eb2010-08-02 05:44:07 +000089 Darwin(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbarf3955282009-09-04 18:34:51 +000090 ~Darwin();
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +000091
Chad Rosier61ab80a2011-09-20 20:44:06 +000092 std::string ComputeEffectiveClangTriple(const ArgList &Args,
93 types::ID InputType) const;
Daniel Dunbar00577ad2010-08-23 22:35:37 +000094
Daniel Dunbar6b200b22009-09-18 08:14:36 +000095 /// @name Darwin Specific Toolchain API
96 /// {
97
Daniel Dunbar26031372010-01-27 00:56:25 +000098 // FIXME: Eliminate these ...Target functions and derive separate tool chains
99 // for these targets and put version in constructor.
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000100 void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor,
101 unsigned Micro, bool IsIOSSim) const {
102 assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!");
103
Daniel Dunbar26031372010-01-27 00:56:25 +0000104 // FIXME: For now, allow reinitialization as long as values don't
105 // change. This will go away when we move away from argument translation.
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000106 if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS &&
107 TargetIsIPhoneOSSimulator == IsIOSSim &&
Daniel Dunbar26031372010-01-27 00:56:25 +0000108 TargetVersion[0] == Major && TargetVersion[1] == Minor &&
109 TargetVersion[2] == Micro)
110 return;
111
112 assert(!TargetInitialized && "Target already initialized!");
113 TargetInitialized = true;
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000114 TargetIsIPhoneOS = IsIPhoneOS;
115 TargetIsIPhoneOSSimulator = IsIOSSim;
Daniel Dunbar26031372010-01-27 00:56:25 +0000116 TargetVersion[0] = Major;
117 TargetVersion[1] = Minor;
118 TargetVersion[2] = Micro;
119 }
120
121 bool isTargetIPhoneOS() const {
122 assert(TargetInitialized && "Target not initialized!");
123 return TargetIsIPhoneOS;
124 }
125
Daniel Dunbar40355802011-03-31 17:12:33 +0000126 bool isTargetIOSSimulator() const {
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000127 assert(TargetInitialized && "Target not initialized!");
128 return TargetIsIPhoneOSSimulator;
Daniel Dunbar40355802011-03-31 17:12:33 +0000129 }
130
Daniel Dunbar03d87ee2010-03-20 00:50:21 +0000131 bool isTargetInitialized() const { return TargetInitialized; }
132
Daniel Dunbar26031372010-01-27 00:56:25 +0000133 void getTargetVersion(unsigned (&Res)[3]) const {
134 assert(TargetInitialized && "Target not initialized!");
135 Res[0] = TargetVersion[0];
136 Res[1] = TargetVersion[1];
137 Res[2] = TargetVersion[2];
138 }
139
Daniel Dunbareeff4062010-01-22 02:04:58 +0000140 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
141 /// invocation. For example, Darwin treats different ARM variations as
142 /// distinct architectures.
Chris Lattner686775d2011-07-20 06:58:45 +0000143 StringRef getDarwinArchName(const ArgList &Args) const;
Daniel Dunbareeff4062010-01-22 02:04:58 +0000144
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000145 static bool isVersionLT(unsigned (&A)[3], unsigned (&B)[3]) {
Daniel Dunbar608d04c2009-09-18 08:14:55 +0000146 for (unsigned i=0; i < 3; ++i) {
147 if (A[i] > B[i]) return false;
148 if (A[i] < B[i]) return true;
149 }
150 return false;
151 }
152
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000153 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
154 assert(isTargetIPhoneOS() && "Unexpected call for OS X target!");
155 unsigned B[3] = { V0, V1, V2 };
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000156 return isVersionLT(TargetVersion, B);
157 }
158
159 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
160 assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!");
161 unsigned B[3] = { V0, V1, V2 };
162 return isVersionLT(TargetVersion, B);
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000163 }
164
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000165 /// AddLinkSearchPathArgs - Add the linker search paths to \arg CmdArgs.
166 ///
167 /// \param Args - The input argument list.
168 /// \param CmdArgs [out] - The command argument list to append the paths
169 /// (prefixed by -L) to.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000170 virtual void AddLinkSearchPathArgs(const ArgList &Args,
171 ArgStringList &CmdArgs) const = 0;
Daniel Dunbar02633b52009-03-26 16:23:12 +0000172
John McCallf85e1932011-06-15 23:02:42 +0000173 /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library.
174 virtual void AddLinkARCArgs(const ArgList &Args,
175 ArgStringList &CmdArgs) const = 0;
176
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000177 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
178 /// runtime library.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000179 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
180 ArgStringList &CmdArgs) const = 0;
Eric Christopher3404fe72011-06-22 17:41:40 +0000181
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000182 /// }
183 /// @name ToolChain Implementation
184 /// {
185
Daniel Dunbar41800112010-08-02 05:43:56 +0000186 virtual types::ID LookupTypeForExtension(const char *Ext) const;
187
Daniel Dunbarb993f5d2010-09-17 00:24:52 +0000188 virtual bool HasNativeLLVMSupport() const;
189
John McCall9f084a32011-07-06 00:26:06 +0000190 virtual void configureObjCRuntime(ObjCRuntime &runtime) const;
John McCall13db5cf2011-09-09 20:41:01 +0000191 virtual bool hasBlocksRuntime() const;
John McCallf85e1932011-06-15 23:02:42 +0000192
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000193 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Daniel Dunbar0dcb9a32009-09-09 18:36:12 +0000194 const char *BoundArch) const;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000195
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000196 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
197 const ActionList &Inputs) const;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000198
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000199 virtual bool IsBlocksDefault() const {
Daniel Dunbaref44a5d2010-07-22 00:40:31 +0000200 // Always allow blocks on Darwin; users interested in versioning are
201 // expected to use /usr/include/Blocks.h.
202 return true;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000203 }
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000204 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000205#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
206 return false;
207#else
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000208 // Default integrated assembler to on for x86.
209 return (getTriple().getArch() == llvm::Triple::x86 ||
210 getTriple().getArch() == llvm::Triple::x86_64);
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000211#endif
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000212 }
Daniel Dunbar398c6102011-02-04 02:20:39 +0000213 virtual bool IsStrictAliasingDefault() const {
214#ifdef DISABLE_DEFAULT_STRICT_ALIASING
215 return false;
216#else
217 return ToolChain::IsStrictAliasingDefault();
218#endif
219 }
Ted Kremenekc32647d2010-12-23 21:35:43 +0000220
221 virtual bool IsObjCDefaultSynthPropertiesDefault() const {
Fariborz Jahaniane3685fd2011-09-01 20:23:17 +0000222 return false;
Ted Kremenekc32647d2010-12-23 21:35:43 +0000223 }
224
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000225 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000226 // Non-fragile ABI is default for everything but i386.
227 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000228 }
Daniel Dunbar609508c2010-02-01 21:07:43 +0000229 virtual bool IsObjCLegacyDispatchDefault() const {
230 // This is only used with the non-fragile ABI.
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000231
232 // Legacy dispatch is used everywhere except on x86_64.
233 return getTriple().getArch() != llvm::Triple::x86_64;
Daniel Dunbar609508c2010-02-01 21:07:43 +0000234 }
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000235 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000236 // This is only used with the non-fragile ABI and non-legacy dispatch.
237
238 // Mixed dispatch is used everywhere except OS X before 10.6.
239 return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6));
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000240 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000241 virtual bool IsUnwindTablesDefault() const;
Nico Weber2fef1112011-08-23 07:38:27 +0000242 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
243 // Stack protectors default to on for user code on 10.5,
244 // and for everything in 10.6 and beyond
245 return !isTargetIPhoneOS() &&
246 (!isMacosxVersionLT(10, 6) ||
247 (!isMacosxVersionLT(10, 5) && !KernelOrKext));
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000248 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000249 virtual const char *GetDefaultRelocationModel() const;
250 virtual const char *GetForcedPicModel() const;
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000251
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000252 virtual bool SupportsProfiling() const;
253
Daniel Dunbar43a9b322010-04-10 16:20:23 +0000254 virtual bool SupportsObjCGC() const;
255
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000256 virtual bool UseDwarfDebugFlags() const;
257
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000258 virtual bool UseSjLjExceptions() const;
259
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000260 /// }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000261};
262
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000263/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sands92dd1912010-05-11 20:16:05 +0000264class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Bob Wilson8aa76ea2011-09-20 22:00:38 +0000265private:
266 void AddGCCLibexecPath(unsigned darwinVersion);
267
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000268public:
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000269 DarwinClang(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000270
271 /// @name Darwin ToolChain Implementation
272 /// {
273
274 virtual void AddLinkSearchPathArgs(const ArgList &Args,
275 ArgStringList &CmdArgs) const;
276
277 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
278 ArgStringList &CmdArgs) const;
Eric Christopher3404fe72011-06-22 17:41:40 +0000279 void AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs,
280 const char *DarwinStaticLib) const;
281
Daniel Dunbar132e35d2010-09-17 01:20:05 +0000282 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
283 ArgStringList &CmdArgs) const;
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000284
Shantonu Sen7433fed2010-09-17 18:39:08 +0000285 virtual void AddCCKextLibArgs(const ArgList &Args,
286 ArgStringList &CmdArgs) const;
287
John McCallf85e1932011-06-15 23:02:42 +0000288 virtual void AddLinkARCArgs(const ArgList &Args,
289 ArgStringList &CmdArgs) const;
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000290 /// }
291};
292
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000293/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sands92dd1912010-05-11 20:16:05 +0000294class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000295public:
296 Darwin_Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple)
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000297 : Generic_GCC(Host, Triple) {}
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000298
Chad Rosier61ab80a2011-09-20 20:44:06 +0000299 std::string ComputeEffectiveClangTriple(const ArgList &Args,
300 types::ID InputType) const;
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000301
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000302 virtual const char *GetDefaultRelocationModel() const { return "pic"; }
303};
304
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000305class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {
306 public:
307 Generic_ELF(const HostInfo &Host, const llvm::Triple& Triple)
308 : Generic_GCC(Host, Triple) {}
309
310 virtual bool IsIntegratedAssemblerDefault() const {
311 // Default integrated assembler to on for x86.
312 return (getTriple().getArch() == llvm::Triple::x86 ||
313 getTriple().getArch() == llvm::Triple::x86_64);
314 }
315};
316
Duncan Sands92dd1912010-05-11 20:16:05 +0000317class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000318public:
319 AuroraUX(const HostInfo &Host, const llvm::Triple& Triple);
320
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000321 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
322 const ActionList &Inputs) const;
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000323};
324
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000325class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF {
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000326public:
327 OpenBSD(const HostInfo &Host, const llvm::Triple& Triple);
328
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000329 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
330 const ActionList &Inputs) const;
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000331};
332
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000333class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF {
Daniel Dunbar75358d22009-03-30 21:06:03 +0000334public:
Daniel Dunbar214afe92010-08-02 05:43:59 +0000335 FreeBSD(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar75358d22009-03-30 21:06:03 +0000336
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000337 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
338 const ActionList &Inputs) const;
Daniel Dunbar75358d22009-03-30 21:06:03 +0000339};
340
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000341class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
Joerg Sonnenberger182564c2011-05-16 13:35:02 +0000342 const llvm::Triple ToolTriple;
343
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000344public:
Joerg Sonnenberger182564c2011-05-16 13:35:02 +0000345 NetBSD(const HostInfo &Host, const llvm::Triple& Triple,
346 const llvm::Triple& ToolTriple);
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000347
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000348 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
349 const ActionList &Inputs) const;
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000350};
351
Chris Lattner38e317d2010-07-07 16:01:42 +0000352class LLVM_LIBRARY_VISIBILITY Minix : public Generic_GCC {
353public:
354 Minix(const HostInfo &Host, const llvm::Triple& Triple);
355
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000356 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
357 const ActionList &Inputs) const;
Chris Lattner38e317d2010-07-07 16:01:42 +0000358};
359
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000360class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000361public:
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000362 DragonFly(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000363
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000364 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
365 const ActionList &Inputs) const;
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000366};
367
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000368class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF {
Eli Friedman6b3454a2009-05-26 07:52:18 +0000369public:
370 Linux(const HostInfo &Host, const llvm::Triple& Triple);
Rafael Espindolaba30bbe2010-08-10 00:25:48 +0000371
Rafael Espindolac1da9812010-11-07 20:14:31 +0000372 virtual bool HasNativeLLVMSupport() const;
373
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000374 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
375 const ActionList &Inputs) const;
Rafael Espindolac1da9812010-11-07 20:14:31 +0000376
377 std::string Linker;
378 std::vector<std::string> ExtraOpts;
Eli Friedman6b3454a2009-05-26 07:52:18 +0000379};
380
381
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000382/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
383/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sands92dd1912010-05-11 20:16:05 +0000384class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000385public:
386 TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple);
387 ~TCEToolChain();
388
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000389 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
390 const ActionList &Inputs) const;
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000391 bool IsMathErrnoDefault() const;
392 bool IsUnwindTablesDefault() const;
393 const char* GetDefaultRelocationModel() const;
394 const char* GetForcedPicModel() const;
395
396private:
397 mutable llvm::DenseMap<unsigned, Tool*> Tools;
398
399};
400
Michael J. Spencerff58e362010-08-21 21:55:07 +0000401class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain {
402 mutable llvm::DenseMap<unsigned, Tool*> Tools;
403
404public:
405 Windows(const HostInfo &Host, const llvm::Triple& Triple);
406
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000407 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
408 const ActionList &Inputs) const;
Michael J. Spencerff58e362010-08-21 21:55:07 +0000409
410 virtual bool IsIntegratedAssemblerDefault() const;
411 virtual bool IsUnwindTablesDefault() const;
412 virtual const char *GetDefaultRelocationModel() const;
413 virtual const char *GetForcedPicModel() const;
414};
415
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000416} // end namespace toolchains
417} // end namespace driver
418} // end namespace clang
419
420#endif