blob: 732587447391aae24c569f01f6d8486489b485af [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
Daniel Dunbarb2b8a912010-07-19 17:11:33 +000083private:
Daniel Dunbar354e96d2010-07-19 17:11:36 +000084 void AddDeploymentTarget(DerivedArgList &Args) const;
Daniel Dunbarb2b8a912010-07-19 17:11:33 +000085
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +000086public:
Daniel Dunbar71c723d2010-08-02 05:44:07 +000087 Darwin(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbarf0a5b9b2009-09-04 18:34:51 +000088 ~Darwin();
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +000089
Daniel Dunbar82eb4ce2010-08-23 22:35:37 +000090 std::string ComputeEffectiveClangTriple(const ArgList &Args) const;
91
Daniel Dunbar4c30b892009-09-18 08:14:36 +000092 /// @name Darwin Specific Toolchain API
93 /// {
94
Daniel Dunbar3b8e50d2010-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 Dunbarb1189432011-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 Dunbar3b8e50d2010-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 Dunbarb1189432011-04-30 04:18:16 +0000103 if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS &&
104 TargetIsIPhoneOSSimulator == IsIOSSim &&
Daniel Dunbar3b8e50d2010-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 Dunbarb1189432011-04-30 04:18:16 +0000111 TargetIsIPhoneOS = IsIPhoneOS;
112 TargetIsIPhoneOSSimulator = IsIOSSim;
Daniel Dunbar3b8e50d2010-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 Dunbarebc34df2011-03-31 17:12:33 +0000123 bool isTargetIOSSimulator() const {
Daniel Dunbarb1189432011-04-30 04:18:16 +0000124 assert(TargetInitialized && "Target not initialized!");
125 return TargetIsIPhoneOSSimulator;
Daniel Dunbarebc34df2011-03-31 17:12:33 +0000126 }
127
Daniel Dunbar47d25b12010-03-20 00:50:21 +0000128 bool isTargetInitialized() const { return TargetInitialized; }
129
Daniel Dunbar3b8e50d2010-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 Dunbardcc3b652010-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 Dunbar6d23b2f2010-01-27 00:57:03 +0000142 static bool isVersionLT(unsigned (&A)[3], unsigned (&B)[3]) {
Daniel Dunbard5bd81e2009-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 Dunbar83608032010-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 Dunbar6d23b2f2010-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 Dunbar83608032010-01-27 00:56:56 +0000160 }
161
Daniel Dunbar4c30b892009-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 Dunbar6276f992009-09-18 08:15:13 +0000167 virtual void AddLinkSearchPathArgs(const ArgList &Args,
168 ArgStringList &CmdArgs) const = 0;
Daniel Dunbarc1964212009-03-26 16:23:12 +0000169
John McCall31168b02011-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 Dunbar26d482a2009-09-18 08:15:03 +0000174 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
175 /// runtime library.
Daniel Dunbar6276f992009-09-18 08:15:13 +0000176 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
177 ArgStringList &CmdArgs) const = 0;
Daniel Dunbar26d482a2009-09-18 08:15:03 +0000178
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000179 /// }
180 /// @name ToolChain Implementation
181 /// {
182
Daniel Dunbarcc7df6c2010-08-02 05:43:56 +0000183 virtual types::ID LookupTypeForExtension(const char *Ext) const;
184
Daniel Dunbar62123a12010-09-17 00:24:52 +0000185 virtual bool HasNativeLLVMSupport() const;
186
John McCall31168b02011-06-15 23:02:42 +0000187 virtual bool HasARCRuntime() const;
188
Daniel Dunbar775d4062010-06-11 22:00:26 +0000189 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Daniel Dunbare7af3412009-09-09 18:36:12 +0000190 const char *BoundArch) const;
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000191
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000192 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
193 const ActionList &Inputs) const;
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000194
Daniel Dunbar4930e332009-11-17 08:07:36 +0000195 virtual bool IsBlocksDefault() const {
Daniel Dunbara66a4d12010-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 Dunbar4930e332009-11-17 08:07:36 +0000199 }
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000200 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbara99a3c12010-06-23 18:15:13 +0000201#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
202 return false;
203#else
Daniel Dunbarf9ff3502010-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 Dunbara99a3c12010-06-23 18:15:13 +0000207#endif
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000208 }
Daniel Dunbar7aa71f92011-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 Kremenek1d56c9e2010-12-23 21:35:43 +0000216
217 virtual bool IsObjCDefaultSynthPropertiesDefault() const {
Ted Kremenek37831392011-02-17 02:17:56 +0000218 return false;
Ted Kremenek1d56c9e2010-12-23 21:35:43 +0000219 }
220
Daniel Dunbar4930e332009-11-17 08:07:36 +0000221 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000222 // Non-fragile ABI is default for everything but i386.
223 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000224 }
Daniel Dunbar98188412010-02-01 21:07:43 +0000225 virtual bool IsObjCLegacyDispatchDefault() const {
226 // This is only used with the non-fragile ABI.
Daniel Dunbardf3d1c22010-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 Dunbar98188412010-02-01 21:07:43 +0000230 }
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +0000231 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbardf3d1c22010-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 Dunbarfca18c1b42010-04-24 17:56:46 +0000236 }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000237 virtual bool IsUnwindTablesDefault() const;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000238 virtual unsigned GetDefaultStackProtectorLevel() const {
Daniel Dunbarf48d51d2010-01-27 00:57:11 +0000239 // Stack protectors default to on for 10.6 and beyond.
240 return !isTargetIPhoneOS() && !isMacosxVersionLT(10, 6);
Daniel Dunbar4930e332009-11-17 08:07:36 +0000241 }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000242 virtual const char *GetDefaultRelocationModel() const;
243 virtual const char *GetForcedPicModel() const;
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000244
Daniel Dunbar733b0f82011-03-01 18:49:30 +0000245 virtual bool SupportsProfiling() const;
246
Daniel Dunbar16334e12010-04-10 16:20:23 +0000247 virtual bool SupportsObjCGC() const;
248
Daniel Dunbar24c7f5e2009-12-18 02:43:17 +0000249 virtual bool UseDwarfDebugFlags() const;
250
Daniel Dunbar3241d402010-02-10 18:49:11 +0000251 virtual bool UseSjLjExceptions() const;
252
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000253 /// }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000254};
255
Daniel Dunbar6276f992009-09-18 08:15:13 +0000256/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000257class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000258public:
Daniel Dunbar71c723d2010-08-02 05:44:07 +0000259 DarwinClang(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar6276f992009-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;
269
Daniel Dunbar3f7796f2010-09-17 01:20:05 +0000270 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
271 ArgStringList &CmdArgs) const;
Daniel Dunbar8fa86b12010-09-17 01:16:06 +0000272
Shantonu Senafeb03b2010-09-17 18:39:08 +0000273 virtual void AddCCKextLibArgs(const ArgList &Args,
274 ArgStringList &CmdArgs) const;
275
John McCall31168b02011-06-15 23:02:42 +0000276 virtual void AddLinkARCArgs(const ArgList &Args,
277 ArgStringList &CmdArgs) const;
Daniel Dunbar6276f992009-09-18 08:15:13 +0000278 /// }
279};
280
Daniel Dunbar6276f992009-09-18 08:15:13 +0000281/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000282class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar6276f992009-09-18 08:15:13 +0000283public:
284 Darwin_Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple)
Daniel Dunbar51c7f972009-05-22 02:53:45 +0000285 : Generic_GCC(Host, Triple) {}
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000286
Daniel Dunbar82eb4ce2010-08-23 22:35:37 +0000287 std::string ComputeEffectiveClangTriple(const ArgList &Args) const;
288
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000289 virtual const char *GetDefaultRelocationModel() const { return "pic"; }
290};
291
Rafael Espindolaacc87092010-10-29 20:14:02 +0000292class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {
293 public:
294 Generic_ELF(const HostInfo &Host, const llvm::Triple& Triple)
295 : Generic_GCC(Host, Triple) {}
296
297 virtual bool IsIntegratedAssemblerDefault() const {
298 // Default integrated assembler to on for x86.
299 return (getTriple().getArch() == llvm::Triple::x86 ||
300 getTriple().getArch() == llvm::Triple::x86_64);
301 }
302};
303
Duncan Sandsaf260b92010-05-11 20:16:05 +0000304class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000305public:
306 AuroraUX(const HostInfo &Host, const llvm::Triple& Triple);
307
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000308 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
309 const ActionList &Inputs) const;
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000310};
311
Rafael Espindolaacc87092010-10-29 20:14:02 +0000312class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF {
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000313public:
314 OpenBSD(const HostInfo &Host, const llvm::Triple& Triple);
315
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000316 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
317 const ActionList &Inputs) const;
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000318};
319
Rafael Espindolaacc87092010-10-29 20:14:02 +0000320class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF {
Daniel Dunbare24297c2009-03-30 21:06:03 +0000321public:
Daniel Dunbara18a4872010-08-02 05:43:59 +0000322 FreeBSD(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbare24297c2009-03-30 21:06:03 +0000323
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000324 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
325 const ActionList &Inputs) const;
Daniel Dunbare24297c2009-03-30 21:06:03 +0000326};
327
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000328class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
Joerg Sonnenberger637603a2011-05-16 13:35:02 +0000329 const llvm::Triple ToolTriple;
330
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000331public:
Joerg Sonnenberger637603a2011-05-16 13:35:02 +0000332 NetBSD(const HostInfo &Host, const llvm::Triple& Triple,
333 const llvm::Triple& ToolTriple);
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000334
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000335 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
336 const ActionList &Inputs) const;
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000337};
338
Chris Lattner3e2ee142010-07-07 16:01:42 +0000339class LLVM_LIBRARY_VISIBILITY Minix : public Generic_GCC {
340public:
341 Minix(const HostInfo &Host, const llvm::Triple& Triple);
342
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000343 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
344 const ActionList &Inputs) const;
Chris Lattner3e2ee142010-07-07 16:01:42 +0000345};
346
Rafael Espindolaacc87092010-10-29 20:14:02 +0000347class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
Daniel Dunbarcc912342009-05-02 18:28:39 +0000348public:
Daniel Dunbar51c7f972009-05-22 02:53:45 +0000349 DragonFly(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbarcc912342009-05-02 18:28:39 +0000350
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000351 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
352 const ActionList &Inputs) const;
Daniel Dunbarcc912342009-05-02 18:28:39 +0000353};
354
Rafael Espindolaacc87092010-10-29 20:14:02 +0000355class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF {
Eli Friedman5cd659f2009-05-26 07:52:18 +0000356public:
357 Linux(const HostInfo &Host, const llvm::Triple& Triple);
Rafael Espindola92b00932010-08-10 00:25:48 +0000358
Rafael Espindolac8f008f2010-11-07 20:14:31 +0000359 virtual bool HasNativeLLVMSupport() const;
360
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000361 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
362 const ActionList &Inputs) const;
Rafael Espindolac8f008f2010-11-07 20:14:31 +0000363
364 std::string Linker;
365 std::vector<std::string> ExtraOpts;
Eli Friedman5cd659f2009-05-26 07:52:18 +0000366};
367
368
Chris Lattner09797542010-03-04 21:07:38 +0000369/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
370/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000371class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner09797542010-03-04 21:07:38 +0000372public:
373 TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple);
374 ~TCEToolChain();
375
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000376 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
377 const ActionList &Inputs) const;
Chris Lattner09797542010-03-04 21:07:38 +0000378 bool IsMathErrnoDefault() const;
379 bool IsUnwindTablesDefault() const;
380 const char* GetDefaultRelocationModel() const;
381 const char* GetForcedPicModel() const;
382
383private:
384 mutable llvm::DenseMap<unsigned, Tool*> Tools;
385
386};
387
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000388class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain {
389 mutable llvm::DenseMap<unsigned, Tool*> Tools;
390
391public:
392 Windows(const HostInfo &Host, const llvm::Triple& Triple);
393
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000394 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
395 const ActionList &Inputs) const;
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000396
397 virtual bool IsIntegratedAssemblerDefault() const;
398 virtual bool IsUnwindTablesDefault() const;
399 virtual const char *GetDefaultRelocationModel() const;
400 virtual const char *GetForcedPicModel() const;
401};
402
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000403} // end namespace toolchains
404} // end namespace driver
405} // end namespace clang
406
407#endif