blob: 24545ec4b79f89842fc08d7240b14e011009ec5e [file] [log] [blame]
Daniel Dunbar0a248bb2009-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 Dunbar04cb0292009-03-17 22:07:31 +000013#include "clang/Driver/Action.h"
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000014#include "clang/Driver/ToolChain.h"
15
Daniel Dunbar04cb0292009-03-17 22:07:31 +000016#include "llvm/ADT/DenseMap.h"
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000017#include "llvm/Support/Compiler.h"
18
Daniel Dunbar04cb0292009-03-17 22:07:31 +000019#include "Tools.h"
20
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000021namespace clang {
22namespace driver {
Daniel Dunbar15abb2e2009-03-17 22:18:43 +000023namespace toolchains {
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000024
Daniel Dunbar6276f992009-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 Sandsaf260b92010-05-11 20:16:05 +000028class LLVM_LIBRARY_VISIBILITY Generic_GCC : public ToolChain {
Daniel Dunbare24297c2009-03-30 21:06:03 +000029protected:
Daniel Dunbar04cb0292009-03-17 22:07:31 +000030 mutable llvm::DenseMap<unsigned, Tool*> Tools;
31
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000032public:
Daniel Dunbar51c7f972009-05-22 02:53:45 +000033 Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar59e5e882009-03-20 00:20:03 +000034 ~Generic_GCC();
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000035
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +000036 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
37 const ActionList &Inputs) const;
Daniel Dunbar04cb0292009-03-17 22:07:31 +000038
Daniel Dunbar59e5e882009-03-20 00:20:03 +000039 virtual bool IsUnwindTablesDefault() const;
40 virtual const char *GetDefaultRelocationModel() const;
41 virtual const char *GetForcedPicModel() const;
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000042};
43
Daniel Dunbar6276f992009-09-18 08:15:13 +000044/// Darwin - The base Darwin tool chain.
Duncan Sandsaf260b92010-05-11 20:16:05 +000045class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain {
Daniel Dunbar71c723d2010-08-02 05:44:07 +000046public:
47 /// The host version.
48 unsigned DarwinVersion[3];
49
50private:
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +000051 mutable llvm::DenseMap<unsigned, Tool*> Tools;
52
Daniel Dunbar3b8e50d2010-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 McCall31168b02011-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 Lattner57540c52011-04-15 05:22:18 +000070 /// Whether we are targeting iPhoneOS target.
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +000071 mutable bool TargetIsIPhoneOS;
Daniel Dunbarf9ff3502010-05-14 02:03:00 +000072
Daniel Dunbarb1189432011-04-30 04:18:16 +000073 /// Whether we are targeting the iPhoneOS simulator target.
74 mutable bool TargetIsIPhoneOSSimulator;
75
Chris Lattner57540c52011-04-15 05:22:18 +000076 /// The OS version we are targeting.
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +000077 mutable unsigned TargetVersion[3];
78
Daniel Dunbarc1964212009-03-26 16:23:12 +000079 /// The default macosx-version-min of this tool chain; empty until
80 /// initialized.
Daniel Dunbard54669d2010-01-26 01:45:19 +000081 std::string MacosxVersionMin;
Daniel Dunbarc1964212009-03-26 16:23:12 +000082
John McCall24fc0de2011-07-06 00:26:06 +000083 bool hasARCRuntime() const;
84
Daniel Dunbarb2b8a912010-07-19 17:11:33 +000085private:
Daniel Dunbar354e96d2010-07-19 17:11:36 +000086 void AddDeploymentTarget(DerivedArgList &Args) const;
Daniel Dunbarb2b8a912010-07-19 17:11:33 +000087
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +000088public:
Daniel Dunbar71c723d2010-08-02 05:44:07 +000089 Darwin(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbarf0a5b9b2009-09-04 18:34:51 +000090 ~Darwin();
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +000091
Daniel Dunbar82eb4ce2010-08-23 22:35:37 +000092 std::string ComputeEffectiveClangTriple(const ArgList &Args) const;
93
Daniel Dunbar4c30b892009-09-18 08:14:36 +000094 /// @name Darwin Specific Toolchain API
95 /// {
96
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +000097 // FIXME: Eliminate these ...Target functions and derive separate tool chains
98 // for these targets and put version in constructor.
Daniel Dunbarb1189432011-04-30 04:18:16 +000099 void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor,
100 unsigned Micro, bool IsIOSSim) const {
101 assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!");
102
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000103 // FIXME: For now, allow reinitialization as long as values don't
104 // change. This will go away when we move away from argument translation.
Daniel Dunbarb1189432011-04-30 04:18:16 +0000105 if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS &&
106 TargetIsIPhoneOSSimulator == IsIOSSim &&
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000107 TargetVersion[0] == Major && TargetVersion[1] == Minor &&
108 TargetVersion[2] == Micro)
109 return;
110
111 assert(!TargetInitialized && "Target already initialized!");
112 TargetInitialized = true;
Daniel Dunbarb1189432011-04-30 04:18:16 +0000113 TargetIsIPhoneOS = IsIPhoneOS;
114 TargetIsIPhoneOSSimulator = IsIOSSim;
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000115 TargetVersion[0] = Major;
116 TargetVersion[1] = Minor;
117 TargetVersion[2] = Micro;
118 }
119
120 bool isTargetIPhoneOS() const {
121 assert(TargetInitialized && "Target not initialized!");
122 return TargetIsIPhoneOS;
123 }
124
Daniel Dunbarebc34df2011-03-31 17:12:33 +0000125 bool isTargetIOSSimulator() const {
Daniel Dunbarb1189432011-04-30 04:18:16 +0000126 assert(TargetInitialized && "Target not initialized!");
127 return TargetIsIPhoneOSSimulator;
Daniel Dunbarebc34df2011-03-31 17:12:33 +0000128 }
129
Daniel Dunbar47d25b12010-03-20 00:50:21 +0000130 bool isTargetInitialized() const { return TargetInitialized; }
131
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000132 void getTargetVersion(unsigned (&Res)[3]) const {
133 assert(TargetInitialized && "Target not initialized!");
134 Res[0] = TargetVersion[0];
135 Res[1] = TargetVersion[1];
136 Res[2] = TargetVersion[2];
137 }
138
Daniel Dunbardcc3b652010-01-22 02:04:58 +0000139 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
140 /// invocation. For example, Darwin treats different ARM variations as
141 /// distinct architectures.
Chris Lattner01cf8db2011-07-20 06:58:45 +0000142 StringRef getDarwinArchName(const ArgList &Args) const;
Daniel Dunbardcc3b652010-01-22 02:04:58 +0000143
Daniel Dunbar6d23b2f2010-01-27 00:57:03 +0000144 static bool isVersionLT(unsigned (&A)[3], unsigned (&B)[3]) {
Daniel Dunbard5bd81e2009-09-18 08:14:55 +0000145 for (unsigned i=0; i < 3; ++i) {
146 if (A[i] > B[i]) return false;
147 if (A[i] < B[i]) return true;
148 }
149 return false;
150 }
151
Daniel Dunbar83608032010-01-27 00:56:56 +0000152 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
153 assert(isTargetIPhoneOS() && "Unexpected call for OS X target!");
154 unsigned B[3] = { V0, V1, V2 };
Daniel Dunbar6d23b2f2010-01-27 00:57:03 +0000155 return isVersionLT(TargetVersion, B);
156 }
157
158 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
159 assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!");
160 unsigned B[3] = { V0, V1, V2 };
161 return isVersionLT(TargetVersion, B);
Daniel Dunbar83608032010-01-27 00:56:56 +0000162 }
163
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000164 /// AddLinkSearchPathArgs - Add the linker search paths to \arg CmdArgs.
165 ///
166 /// \param Args - The input argument list.
167 /// \param CmdArgs [out] - The command argument list to append the paths
168 /// (prefixed by -L) to.
Daniel Dunbar6276f992009-09-18 08:15:13 +0000169 virtual void AddLinkSearchPathArgs(const ArgList &Args,
170 ArgStringList &CmdArgs) const = 0;
Daniel Dunbarc1964212009-03-26 16:23:12 +0000171
John McCall31168b02011-06-15 23:02:42 +0000172 /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library.
173 virtual void AddLinkARCArgs(const ArgList &Args,
174 ArgStringList &CmdArgs) const = 0;
175
Daniel Dunbar26d482a2009-09-18 08:15:03 +0000176 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
177 /// runtime library.
Daniel Dunbar6276f992009-09-18 08:15:13 +0000178 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
179 ArgStringList &CmdArgs) const = 0;
Eric Christopherc235d0c62011-06-22 17:41:40 +0000180
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000181 /// }
182 /// @name ToolChain Implementation
183 /// {
184
Daniel Dunbarcc7df6c2010-08-02 05:43:56 +0000185 virtual types::ID LookupTypeForExtension(const char *Ext) const;
186
Daniel Dunbar62123a12010-09-17 00:24:52 +0000187 virtual bool HasNativeLLVMSupport() const;
188
John McCall24fc0de2011-07-06 00:26:06 +0000189 virtual void configureObjCRuntime(ObjCRuntime &runtime) const;
John McCall31168b02011-06-15 23:02:42 +0000190
Daniel Dunbar775d4062010-06-11 22:00:26 +0000191 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Daniel Dunbare7af3412009-09-09 18:36:12 +0000192 const char *BoundArch) const;
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000193
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000194 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
195 const ActionList &Inputs) const;
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000196
Daniel Dunbar4930e332009-11-17 08:07:36 +0000197 virtual bool IsBlocksDefault() const {
Daniel Dunbara66a4d12010-07-22 00:40:31 +0000198 // Always allow blocks on Darwin; users interested in versioning are
199 // expected to use /usr/include/Blocks.h.
200 return true;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000201 }
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000202 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbara99a3c12010-06-23 18:15:13 +0000203#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
204 return false;
205#else
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000206 // Default integrated assembler to on for x86.
207 return (getTriple().getArch() == llvm::Triple::x86 ||
208 getTriple().getArch() == llvm::Triple::x86_64);
Daniel Dunbara99a3c12010-06-23 18:15:13 +0000209#endif
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000210 }
Daniel Dunbar7aa71f92011-02-04 02:20:39 +0000211 virtual bool IsStrictAliasingDefault() const {
212#ifdef DISABLE_DEFAULT_STRICT_ALIASING
213 return false;
214#else
215 return ToolChain::IsStrictAliasingDefault();
216#endif
217 }
Ted Kremenek1d56c9e2010-12-23 21:35:43 +0000218
219 virtual bool IsObjCDefaultSynthPropertiesDefault() const {
Ted Kremenek37831392011-02-17 02:17:56 +0000220 return false;
Ted Kremenek1d56c9e2010-12-23 21:35:43 +0000221 }
222
Daniel Dunbar4930e332009-11-17 08:07:36 +0000223 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000224 // Non-fragile ABI is default for everything but i386.
225 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000226 }
Daniel Dunbar98188412010-02-01 21:07:43 +0000227 virtual bool IsObjCLegacyDispatchDefault() const {
228 // This is only used with the non-fragile ABI.
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000229
230 // Legacy dispatch is used everywhere except on x86_64.
231 return getTriple().getArch() != llvm::Triple::x86_64;
Daniel Dunbar98188412010-02-01 21:07:43 +0000232 }
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +0000233 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000234 // This is only used with the non-fragile ABI and non-legacy dispatch.
235
236 // Mixed dispatch is used everywhere except OS X before 10.6.
237 return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6));
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +0000238 }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000239 virtual bool IsUnwindTablesDefault() const;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000240 virtual unsigned GetDefaultStackProtectorLevel() const {
Daniel Dunbarf48d51d2010-01-27 00:57:11 +0000241 // Stack protectors default to on for 10.6 and beyond.
242 return !isTargetIPhoneOS() && !isMacosxVersionLT(10, 6);
Daniel Dunbar4930e332009-11-17 08:07:36 +0000243 }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000244 virtual const char *GetDefaultRelocationModel() const;
245 virtual const char *GetForcedPicModel() const;
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000246
Daniel Dunbar733b0f82011-03-01 18:49:30 +0000247 virtual bool SupportsProfiling() const;
248
Daniel Dunbar16334e12010-04-10 16:20:23 +0000249 virtual bool SupportsObjCGC() const;
250
Daniel Dunbar24c7f5e2009-12-18 02:43:17 +0000251 virtual bool UseDwarfDebugFlags() const;
252
Daniel Dunbar3241d402010-02-10 18:49:11 +0000253 virtual bool UseSjLjExceptions() const;
254
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000255 /// }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000256};
257
Daniel Dunbar6276f992009-09-18 08:15:13 +0000258/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000259class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000260public:
Daniel Dunbar71c723d2010-08-02 05:44:07 +0000261 DarwinClang(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar6276f992009-09-18 08:15:13 +0000262
263 /// @name Darwin ToolChain Implementation
264 /// {
265
266 virtual void AddLinkSearchPathArgs(const ArgList &Args,
267 ArgStringList &CmdArgs) const;
268
269 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
270 ArgStringList &CmdArgs) const;
Eric Christopherc235d0c62011-06-22 17:41:40 +0000271 void AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs,
272 const char *DarwinStaticLib) const;
273
Daniel Dunbar3f7796f2010-09-17 01:20:05 +0000274 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
275 ArgStringList &CmdArgs) const;
Daniel Dunbar8fa86b12010-09-17 01:16:06 +0000276
Shantonu Senafeb03b2010-09-17 18:39:08 +0000277 virtual void AddCCKextLibArgs(const ArgList &Args,
278 ArgStringList &CmdArgs) const;
279
John McCall31168b02011-06-15 23:02:42 +0000280 virtual void AddLinkARCArgs(const ArgList &Args,
281 ArgStringList &CmdArgs) const;
Daniel Dunbar6276f992009-09-18 08:15:13 +0000282 /// }
283};
284
Daniel Dunbar6276f992009-09-18 08:15:13 +0000285/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000286class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar6276f992009-09-18 08:15:13 +0000287public:
288 Darwin_Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple)
Daniel Dunbar51c7f972009-05-22 02:53:45 +0000289 : Generic_GCC(Host, Triple) {}
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000290
Daniel Dunbar82eb4ce2010-08-23 22:35:37 +0000291 std::string ComputeEffectiveClangTriple(const ArgList &Args) const;
292
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000293 virtual const char *GetDefaultRelocationModel() const { return "pic"; }
294};
295
Rafael Espindolaacc87092010-10-29 20:14:02 +0000296class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {
297 public:
298 Generic_ELF(const HostInfo &Host, const llvm::Triple& Triple)
299 : Generic_GCC(Host, Triple) {}
300
301 virtual bool IsIntegratedAssemblerDefault() const {
302 // Default integrated assembler to on for x86.
303 return (getTriple().getArch() == llvm::Triple::x86 ||
304 getTriple().getArch() == llvm::Triple::x86_64);
305 }
306};
307
Duncan Sandsaf260b92010-05-11 20:16:05 +0000308class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000309public:
310 AuroraUX(const HostInfo &Host, const llvm::Triple& Triple);
311
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000312 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
313 const ActionList &Inputs) const;
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000314};
315
Rafael Espindolaacc87092010-10-29 20:14:02 +0000316class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF {
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000317public:
318 OpenBSD(const HostInfo &Host, const llvm::Triple& Triple);
319
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000320 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
321 const ActionList &Inputs) const;
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000322};
323
Rafael Espindolaacc87092010-10-29 20:14:02 +0000324class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF {
Daniel Dunbare24297c2009-03-30 21:06:03 +0000325public:
Daniel Dunbara18a4872010-08-02 05:43:59 +0000326 FreeBSD(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbare24297c2009-03-30 21:06:03 +0000327
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000328 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
329 const ActionList &Inputs) const;
Daniel Dunbare24297c2009-03-30 21:06:03 +0000330};
331
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000332class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
Joerg Sonnenberger637603a2011-05-16 13:35:02 +0000333 const llvm::Triple ToolTriple;
334
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000335public:
Joerg Sonnenberger637603a2011-05-16 13:35:02 +0000336 NetBSD(const HostInfo &Host, const llvm::Triple& Triple,
337 const llvm::Triple& ToolTriple);
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000338
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000339 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
340 const ActionList &Inputs) const;
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000341};
342
Chris Lattner3e2ee142010-07-07 16:01:42 +0000343class LLVM_LIBRARY_VISIBILITY Minix : public Generic_GCC {
344public:
345 Minix(const HostInfo &Host, const llvm::Triple& Triple);
346
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000347 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
348 const ActionList &Inputs) const;
Chris Lattner3e2ee142010-07-07 16:01:42 +0000349};
350
Rafael Espindolaacc87092010-10-29 20:14:02 +0000351class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
Daniel Dunbarcc912342009-05-02 18:28:39 +0000352public:
Daniel Dunbar51c7f972009-05-22 02:53:45 +0000353 DragonFly(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbarcc912342009-05-02 18:28:39 +0000354
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000355 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
356 const ActionList &Inputs) const;
Daniel Dunbarcc912342009-05-02 18:28:39 +0000357};
358
Rafael Espindolaacc87092010-10-29 20:14:02 +0000359class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF {
Eli Friedman5cd659f2009-05-26 07:52:18 +0000360public:
361 Linux(const HostInfo &Host, const llvm::Triple& Triple);
Rafael Espindola92b00932010-08-10 00:25:48 +0000362
Rafael Espindolac8f008f2010-11-07 20:14:31 +0000363 virtual bool HasNativeLLVMSupport() const;
364
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000365 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
366 const ActionList &Inputs) const;
Rafael Espindolac8f008f2010-11-07 20:14:31 +0000367
368 std::string Linker;
369 std::vector<std::string> ExtraOpts;
Eli Friedman5cd659f2009-05-26 07:52:18 +0000370};
371
372
Chris Lattner09797542010-03-04 21:07:38 +0000373/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
374/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000375class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner09797542010-03-04 21:07:38 +0000376public:
377 TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple);
378 ~TCEToolChain();
379
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000380 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
381 const ActionList &Inputs) const;
Chris Lattner09797542010-03-04 21:07:38 +0000382 bool IsMathErrnoDefault() const;
383 bool IsUnwindTablesDefault() const;
384 const char* GetDefaultRelocationModel() const;
385 const char* GetForcedPicModel() const;
386
387private:
388 mutable llvm::DenseMap<unsigned, Tool*> Tools;
389
390};
391
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000392class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain {
393 mutable llvm::DenseMap<unsigned, Tool*> Tools;
394
395public:
396 Windows(const HostInfo &Host, const llvm::Triple& Triple);
397
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000398 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
399 const ActionList &Inputs) const;
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000400
401 virtual bool IsIntegratedAssemblerDefault() const;
402 virtual bool IsUnwindTablesDefault() const;
403 virtual const char *GetDefaultRelocationModel() const;
404 virtual const char *GetForcedPicModel() const;
405};
406
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000407} // end namespace toolchains
408} // end namespace driver
409} // end namespace clang
410
411#endif