blob: 9ed0dc2ef8e922d29b04df93c45ea62f7dcd4036 [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
Daniel Dunbarc0e665e2010-07-19 17:11:33 +000083private:
Daniel Dunbar60baf0f2010-07-19 17:11:36 +000084 void AddDeploymentTarget(DerivedArgList &Args) const;
Daniel Dunbarc0e665e2010-07-19 17:11:33 +000085
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +000086public:
Daniel Dunbar25b58eb2010-08-02 05:44:07 +000087 Darwin(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbarf3955282009-09-04 18:34:51 +000088 ~Darwin();
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +000089
Daniel Dunbar00577ad2010-08-23 22:35:37 +000090 std::string ComputeEffectiveClangTriple(const ArgList &Args) const;
91
Daniel Dunbar6b200b22009-09-18 08:14:36 +000092 /// @name Darwin Specific Toolchain API
93 /// {
94
Daniel Dunbar26031372010-01-27 00:56:25 +000095 // FIXME: Eliminate these ...Target functions and derive separate tool chains
96 // for these targets and put version in constructor.
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +000097 void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor,
98 unsigned Micro, bool IsIOSSim) const {
99 assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!");
100
Daniel Dunbar26031372010-01-27 00:56:25 +0000101 // FIXME: For now, allow reinitialization as long as values don't
102 // change. This will go away when we move away from argument translation.
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000103 if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS &&
104 TargetIsIPhoneOSSimulator == IsIOSSim &&
Daniel Dunbar26031372010-01-27 00:56:25 +0000105 TargetVersion[0] == Major && TargetVersion[1] == Minor &&
106 TargetVersion[2] == Micro)
107 return;
108
109 assert(!TargetInitialized && "Target already initialized!");
110 TargetInitialized = true;
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000111 TargetIsIPhoneOS = IsIPhoneOS;
112 TargetIsIPhoneOSSimulator = IsIOSSim;
Daniel Dunbar26031372010-01-27 00:56:25 +0000113 TargetVersion[0] = Major;
114 TargetVersion[1] = Minor;
115 TargetVersion[2] = Micro;
116 }
117
118 bool isTargetIPhoneOS() const {
119 assert(TargetInitialized && "Target not initialized!");
120 return TargetIsIPhoneOS;
121 }
122
Daniel Dunbar40355802011-03-31 17:12:33 +0000123 bool isTargetIOSSimulator() const {
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000124 assert(TargetInitialized && "Target not initialized!");
125 return TargetIsIPhoneOSSimulator;
Daniel Dunbar40355802011-03-31 17:12:33 +0000126 }
127
Daniel Dunbar03d87ee2010-03-20 00:50:21 +0000128 bool isTargetInitialized() const { return TargetInitialized; }
129
Daniel Dunbar26031372010-01-27 00:56:25 +0000130 void getTargetVersion(unsigned (&Res)[3]) const {
131 assert(TargetInitialized && "Target not initialized!");
132 Res[0] = TargetVersion[0];
133 Res[1] = TargetVersion[1];
134 Res[2] = TargetVersion[2];
135 }
136
Daniel Dunbareeff4062010-01-22 02:04:58 +0000137 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
138 /// invocation. For example, Darwin treats different ARM variations as
139 /// distinct architectures.
140 llvm::StringRef getDarwinArchName(const ArgList &Args) const;
141
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000142 static bool isVersionLT(unsigned (&A)[3], unsigned (&B)[3]) {
Daniel Dunbar608d04c2009-09-18 08:14:55 +0000143 for (unsigned i=0; i < 3; ++i) {
144 if (A[i] > B[i]) return false;
145 if (A[i] < B[i]) return true;
146 }
147 return false;
148 }
149
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000150 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
151 assert(isTargetIPhoneOS() && "Unexpected call for OS X target!");
152 unsigned B[3] = { V0, V1, V2 };
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000153 return isVersionLT(TargetVersion, B);
154 }
155
156 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
157 assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!");
158 unsigned B[3] = { V0, V1, V2 };
159 return isVersionLT(TargetVersion, B);
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000160 }
161
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000162 /// AddLinkSearchPathArgs - Add the linker search paths to \arg CmdArgs.
163 ///
164 /// \param Args - The input argument list.
165 /// \param CmdArgs [out] - The command argument list to append the paths
166 /// (prefixed by -L) to.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000167 virtual void AddLinkSearchPathArgs(const ArgList &Args,
168 ArgStringList &CmdArgs) const = 0;
Daniel Dunbar02633b52009-03-26 16:23:12 +0000169
John McCallf85e1932011-06-15 23:02:42 +0000170 /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library.
171 virtual void AddLinkARCArgs(const ArgList &Args,
172 ArgStringList &CmdArgs) const = 0;
173
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000174 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
175 /// runtime library.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000176 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
177 ArgStringList &CmdArgs) const = 0;
Eric Christopher3404fe72011-06-22 17:41:40 +0000178
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000179 /// }
180 /// @name ToolChain Implementation
181 /// {
182
Daniel Dunbar41800112010-08-02 05:43:56 +0000183 virtual types::ID LookupTypeForExtension(const char *Ext) const;
184
Daniel Dunbarb993f5d2010-09-17 00:24:52 +0000185 virtual bool HasNativeLLVMSupport() const;
186
John McCallf85e1932011-06-15 23:02:42 +0000187 virtual bool HasARCRuntime() const;
188
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000189 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Daniel Dunbar0dcb9a32009-09-09 18:36:12 +0000190 const char *BoundArch) const;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000191
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000192 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
193 const ActionList &Inputs) const;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000194
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000195 virtual bool IsBlocksDefault() const {
Daniel Dunbaref44a5d2010-07-22 00:40:31 +0000196 // Always allow blocks on Darwin; users interested in versioning are
197 // expected to use /usr/include/Blocks.h.
198 return true;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000199 }
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000200 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000201#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
202 return false;
203#else
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000204 // Default integrated assembler to on for x86.
205 return (getTriple().getArch() == llvm::Triple::x86 ||
206 getTriple().getArch() == llvm::Triple::x86_64);
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000207#endif
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000208 }
Daniel Dunbar398c6102011-02-04 02:20:39 +0000209 virtual bool IsStrictAliasingDefault() const {
210#ifdef DISABLE_DEFAULT_STRICT_ALIASING
211 return false;
212#else
213 return ToolChain::IsStrictAliasingDefault();
214#endif
215 }
Ted Kremenekc32647d2010-12-23 21:35:43 +0000216
217 virtual bool IsObjCDefaultSynthPropertiesDefault() const {
Ted Kremenek2fb468d2011-02-17 02:17:56 +0000218 return false;
Ted Kremenekc32647d2010-12-23 21:35:43 +0000219 }
220
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000221 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000222 // Non-fragile ABI is default for everything but i386.
223 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000224 }
Daniel Dunbar609508c2010-02-01 21:07:43 +0000225 virtual bool IsObjCLegacyDispatchDefault() const {
226 // This is only used with the non-fragile ABI.
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000227
228 // Legacy dispatch is used everywhere except on x86_64.
229 return getTriple().getArch() != llvm::Triple::x86_64;
Daniel Dunbar609508c2010-02-01 21:07:43 +0000230 }
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000231 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000232 // This is only used with the non-fragile ABI and non-legacy dispatch.
233
234 // Mixed dispatch is used everywhere except OS X before 10.6.
235 return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6));
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000236 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000237 virtual bool IsUnwindTablesDefault() const;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000238 virtual unsigned GetDefaultStackProtectorLevel() const {
Daniel Dunbar5435fc92010-01-27 00:57:11 +0000239 // Stack protectors default to on for 10.6 and beyond.
240 return !isTargetIPhoneOS() && !isMacosxVersionLT(10, 6);
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000241 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000242 virtual const char *GetDefaultRelocationModel() const;
243 virtual const char *GetForcedPicModel() const;
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000244
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000245 virtual bool SupportsProfiling() const;
246
Daniel Dunbar43a9b322010-04-10 16:20:23 +0000247 virtual bool SupportsObjCGC() const;
248
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000249 virtual bool UseDwarfDebugFlags() const;
250
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000251 virtual bool UseSjLjExceptions() const;
252
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000253 /// }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000254};
255
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000256/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sands92dd1912010-05-11 20:16:05 +0000257class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000258public:
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000259 DarwinClang(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000260
261 /// @name Darwin ToolChain Implementation
262 /// {
263
264 virtual void AddLinkSearchPathArgs(const ArgList &Args,
265 ArgStringList &CmdArgs) const;
266
267 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
268 ArgStringList &CmdArgs) const;
Eric Christopher3404fe72011-06-22 17:41:40 +0000269 void AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs,
270 const char *DarwinStaticLib) const;
271
Daniel Dunbar132e35d2010-09-17 01:20:05 +0000272 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
273 ArgStringList &CmdArgs) const;
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000274
Shantonu Sen7433fed2010-09-17 18:39:08 +0000275 virtual void AddCCKextLibArgs(const ArgList &Args,
276 ArgStringList &CmdArgs) const;
277
John McCallf85e1932011-06-15 23:02:42 +0000278 virtual void AddLinkARCArgs(const ArgList &Args,
279 ArgStringList &CmdArgs) const;
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000280 /// }
281};
282
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000283/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sands92dd1912010-05-11 20:16:05 +0000284class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000285public:
286 Darwin_Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple)
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000287 : Generic_GCC(Host, Triple) {}
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000288
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000289 std::string ComputeEffectiveClangTriple(const ArgList &Args) const;
290
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000291 virtual const char *GetDefaultRelocationModel() const { return "pic"; }
292};
293
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000294class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {
295 public:
296 Generic_ELF(const HostInfo &Host, const llvm::Triple& Triple)
297 : Generic_GCC(Host, Triple) {}
298
299 virtual bool IsIntegratedAssemblerDefault() const {
300 // Default integrated assembler to on for x86.
301 return (getTriple().getArch() == llvm::Triple::x86 ||
302 getTriple().getArch() == llvm::Triple::x86_64);
303 }
304};
305
Duncan Sands92dd1912010-05-11 20:16:05 +0000306class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000307public:
308 AuroraUX(const HostInfo &Host, const llvm::Triple& Triple);
309
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000310 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
311 const ActionList &Inputs) const;
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000312};
313
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000314class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF {
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000315public:
316 OpenBSD(const HostInfo &Host, const llvm::Triple& Triple);
317
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000318 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
319 const ActionList &Inputs) const;
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000320};
321
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000322class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF {
Daniel Dunbar75358d22009-03-30 21:06:03 +0000323public:
Daniel Dunbar214afe92010-08-02 05:43:59 +0000324 FreeBSD(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar75358d22009-03-30 21:06:03 +0000325
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000326 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
327 const ActionList &Inputs) const;
Daniel Dunbar75358d22009-03-30 21:06:03 +0000328};
329
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000330class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
Joerg Sonnenberger182564c2011-05-16 13:35:02 +0000331 const llvm::Triple ToolTriple;
332
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000333public:
Joerg Sonnenberger182564c2011-05-16 13:35:02 +0000334 NetBSD(const HostInfo &Host, const llvm::Triple& Triple,
335 const llvm::Triple& ToolTriple);
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000336
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000337 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
338 const ActionList &Inputs) const;
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000339};
340
Chris Lattner38e317d2010-07-07 16:01:42 +0000341class LLVM_LIBRARY_VISIBILITY Minix : public Generic_GCC {
342public:
343 Minix(const HostInfo &Host, const llvm::Triple& Triple);
344
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000345 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
346 const ActionList &Inputs) const;
Chris Lattner38e317d2010-07-07 16:01:42 +0000347};
348
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000349class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000350public:
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000351 DragonFly(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000352
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000353 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
354 const ActionList &Inputs) const;
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000355};
356
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000357class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF {
Eli Friedman6b3454a2009-05-26 07:52:18 +0000358public:
359 Linux(const HostInfo &Host, const llvm::Triple& Triple);
Rafael Espindolaba30bbe2010-08-10 00:25:48 +0000360
Rafael Espindolac1da9812010-11-07 20:14:31 +0000361 virtual bool HasNativeLLVMSupport() const;
362
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000363 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
364 const ActionList &Inputs) const;
Rafael Espindolac1da9812010-11-07 20:14:31 +0000365
366 std::string Linker;
367 std::vector<std::string> ExtraOpts;
Eli Friedman6b3454a2009-05-26 07:52:18 +0000368};
369
370
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000371/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
372/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sands92dd1912010-05-11 20:16:05 +0000373class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000374public:
375 TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple);
376 ~TCEToolChain();
377
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000378 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
379 const ActionList &Inputs) const;
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000380 bool IsMathErrnoDefault() const;
381 bool IsUnwindTablesDefault() const;
382 const char* GetDefaultRelocationModel() const;
383 const char* GetForcedPicModel() const;
384
385private:
386 mutable llvm::DenseMap<unsigned, Tool*> Tools;
387
388};
389
Michael J. Spencerff58e362010-08-21 21:55:07 +0000390class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain {
391 mutable llvm::DenseMap<unsigned, Tool*> Tools;
392
393public:
394 Windows(const HostInfo &Host, const llvm::Triple& Triple);
395
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000396 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
397 const ActionList &Inputs) const;
Michael J. Spencerff58e362010-08-21 21:55:07 +0000398
399 virtual bool IsIntegratedAssemblerDefault() const;
400 virtual bool IsUnwindTablesDefault() const;
401 virtual const char *GetDefaultRelocationModel() const;
402 virtual const char *GetForcedPicModel() const;
403};
404
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000405} // end namespace toolchains
406} // end namespace driver
407} // end namespace clang
408
409#endif