blob: 9c567b61916179d1425dc5d07bb3d46bed85ed0c [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
60 /// Whether we are targetting iPhoneOS target.
61 mutable bool TargetIsIPhoneOS;
Daniel Dunbareb840bd2010-05-14 02:03:00 +000062
Daniel Dunbar26031372010-01-27 00:56:25 +000063 /// The OS version we are targetting.
64 mutable unsigned TargetVersion[3];
65
Daniel Dunbar02633b52009-03-26 16:23:12 +000066 /// The default macosx-version-min of this tool chain; empty until
67 /// initialized.
Daniel Dunbar816bc312010-01-26 01:45:19 +000068 std::string MacosxVersionMin;
Daniel Dunbar02633b52009-03-26 16:23:12 +000069
Daniel Dunbarc0e665e2010-07-19 17:11:33 +000070private:
Daniel Dunbar60baf0f2010-07-19 17:11:36 +000071 void AddDeploymentTarget(DerivedArgList &Args) const;
Daniel Dunbarc0e665e2010-07-19 17:11:33 +000072
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +000073public:
Daniel Dunbar25b58eb2010-08-02 05:44:07 +000074 Darwin(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbarf3955282009-09-04 18:34:51 +000075 ~Darwin();
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +000076
Daniel Dunbar00577ad2010-08-23 22:35:37 +000077 std::string ComputeEffectiveClangTriple(const ArgList &Args) const;
78
Daniel Dunbar6b200b22009-09-18 08:14:36 +000079 /// @name Darwin Specific Toolchain API
80 /// {
81
Daniel Dunbar26031372010-01-27 00:56:25 +000082 // FIXME: Eliminate these ...Target functions and derive separate tool chains
83 // for these targets and put version in constructor.
84 void setTarget(bool isIPhoneOS, unsigned Major, unsigned Minor,
85 unsigned Micro) const {
86 // FIXME: For now, allow reinitialization as long as values don't
87 // change. This will go away when we move away from argument translation.
88 if (TargetInitialized && TargetIsIPhoneOS == isIPhoneOS &&
89 TargetVersion[0] == Major && TargetVersion[1] == Minor &&
90 TargetVersion[2] == Micro)
91 return;
92
93 assert(!TargetInitialized && "Target already initialized!");
94 TargetInitialized = true;
95 TargetIsIPhoneOS = isIPhoneOS;
96 TargetVersion[0] = Major;
97 TargetVersion[1] = Minor;
98 TargetVersion[2] = Micro;
99 }
100
101 bool isTargetIPhoneOS() const {
102 assert(TargetInitialized && "Target not initialized!");
103 return TargetIsIPhoneOS;
104 }
105
Daniel Dunbar40355802011-03-31 17:12:33 +0000106 bool isTargetIOSSimulator() const {
107 // In GCC, the simulator historically was treated as being OS X in some
108 // contexts, like determining the link logic, despite generally being called
109 // with an iOS deployment target. For compatibility, we detect the
110 // simulator is iOS + x86, and treat it differently in a few contexts.
111 return isTargetIPhoneOS() &&
112 (getTriple().getArch() == llvm::Triple::x86 ||
113 getTriple().getArch() == llvm::Triple::x86_64);
114 }
115
Daniel Dunbar03d87ee2010-03-20 00:50:21 +0000116 bool isTargetInitialized() const { return TargetInitialized; }
117
Daniel Dunbar26031372010-01-27 00:56:25 +0000118 void getTargetVersion(unsigned (&Res)[3]) const {
119 assert(TargetInitialized && "Target not initialized!");
120 Res[0] = TargetVersion[0];
121 Res[1] = TargetVersion[1];
122 Res[2] = TargetVersion[2];
123 }
124
Daniel Dunbareeff4062010-01-22 02:04:58 +0000125 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
126 /// invocation. For example, Darwin treats different ARM variations as
127 /// distinct architectures.
128 llvm::StringRef getDarwinArchName(const ArgList &Args) const;
129
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000130 static bool isVersionLT(unsigned (&A)[3], unsigned (&B)[3]) {
Daniel Dunbar608d04c2009-09-18 08:14:55 +0000131 for (unsigned i=0; i < 3; ++i) {
132 if (A[i] > B[i]) return false;
133 if (A[i] < B[i]) return true;
134 }
135 return false;
136 }
137
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000138 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
139 assert(isTargetIPhoneOS() && "Unexpected call for OS X target!");
140 unsigned B[3] = { V0, V1, V2 };
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000141 return isVersionLT(TargetVersion, B);
142 }
143
144 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
145 assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!");
146 unsigned B[3] = { V0, V1, V2 };
147 return isVersionLT(TargetVersion, B);
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000148 }
149
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000150 /// AddLinkSearchPathArgs - Add the linker search paths to \arg CmdArgs.
151 ///
152 /// \param Args - The input argument list.
153 /// \param CmdArgs [out] - The command argument list to append the paths
154 /// (prefixed by -L) to.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000155 virtual void AddLinkSearchPathArgs(const ArgList &Args,
156 ArgStringList &CmdArgs) const = 0;
Daniel Dunbar02633b52009-03-26 16:23:12 +0000157
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000158 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
159 /// runtime library.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000160 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
161 ArgStringList &CmdArgs) const = 0;
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000162
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000163 /// }
164 /// @name ToolChain Implementation
165 /// {
166
Daniel Dunbar41800112010-08-02 05:43:56 +0000167 virtual types::ID LookupTypeForExtension(const char *Ext) const;
168
Daniel Dunbarb993f5d2010-09-17 00:24:52 +0000169 virtual bool HasNativeLLVMSupport() const;
170
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000171 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Daniel Dunbar0dcb9a32009-09-09 18:36:12 +0000172 const char *BoundArch) const;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000173
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000174 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
175 const ActionList &Inputs) const;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000176
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000177 virtual bool IsBlocksDefault() const {
Daniel Dunbaref44a5d2010-07-22 00:40:31 +0000178 // Always allow blocks on Darwin; users interested in versioning are
179 // expected to use /usr/include/Blocks.h.
180 return true;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000181 }
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000182 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000183#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
184 return false;
185#else
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000186 // Default integrated assembler to on for x86.
187 return (getTriple().getArch() == llvm::Triple::x86 ||
188 getTriple().getArch() == llvm::Triple::x86_64);
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000189#endif
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000190 }
Daniel Dunbar398c6102011-02-04 02:20:39 +0000191 virtual bool IsStrictAliasingDefault() const {
192#ifdef DISABLE_DEFAULT_STRICT_ALIASING
193 return false;
194#else
195 return ToolChain::IsStrictAliasingDefault();
196#endif
197 }
Ted Kremenekc32647d2010-12-23 21:35:43 +0000198
199 virtual bool IsObjCDefaultSynthPropertiesDefault() const {
Ted Kremenek2fb468d2011-02-17 02:17:56 +0000200 return false;
Ted Kremenekc32647d2010-12-23 21:35:43 +0000201 }
202
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000203 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000204 // Non-fragile ABI is default for everything but i386.
205 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000206 }
Daniel Dunbar609508c2010-02-01 21:07:43 +0000207 virtual bool IsObjCLegacyDispatchDefault() const {
208 // This is only used with the non-fragile ABI.
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000209
210 // Legacy dispatch is used everywhere except on x86_64.
211 return getTriple().getArch() != llvm::Triple::x86_64;
Daniel Dunbar609508c2010-02-01 21:07:43 +0000212 }
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000213 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000214 // This is only used with the non-fragile ABI and non-legacy dispatch.
215
216 // Mixed dispatch is used everywhere except OS X before 10.6.
217 return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6));
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000218 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000219 virtual bool IsUnwindTablesDefault() const;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000220 virtual unsigned GetDefaultStackProtectorLevel() const {
Daniel Dunbar5435fc92010-01-27 00:57:11 +0000221 // Stack protectors default to on for 10.6 and beyond.
222 return !isTargetIPhoneOS() && !isMacosxVersionLT(10, 6);
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000223 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000224 virtual const char *GetDefaultRelocationModel() const;
225 virtual const char *GetForcedPicModel() const;
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000226
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000227 virtual bool SupportsProfiling() const;
228
Daniel Dunbar43a9b322010-04-10 16:20:23 +0000229 virtual bool SupportsObjCGC() const;
230
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000231 virtual bool UseDwarfDebugFlags() const;
232
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000233 virtual bool UseSjLjExceptions() const;
234
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000235 /// }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000236};
237
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000238/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sands92dd1912010-05-11 20:16:05 +0000239class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000240public:
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000241 DarwinClang(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000242
243 /// @name Darwin ToolChain Implementation
244 /// {
245
246 virtual void AddLinkSearchPathArgs(const ArgList &Args,
247 ArgStringList &CmdArgs) const;
248
249 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
250 ArgStringList &CmdArgs) const;
251
Daniel Dunbar132e35d2010-09-17 01:20:05 +0000252 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
253 ArgStringList &CmdArgs) const;
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000254
Shantonu Sen7433fed2010-09-17 18:39:08 +0000255 virtual void AddCCKextLibArgs(const ArgList &Args,
256 ArgStringList &CmdArgs) const;
257
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000258 /// }
259};
260
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000261/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sands92dd1912010-05-11 20:16:05 +0000262class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000263public:
264 Darwin_Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple)
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000265 : Generic_GCC(Host, Triple) {}
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000266
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000267 std::string ComputeEffectiveClangTriple(const ArgList &Args) const;
268
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000269 virtual const char *GetDefaultRelocationModel() const { return "pic"; }
270};
271
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000272class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {
273 public:
274 Generic_ELF(const HostInfo &Host, const llvm::Triple& Triple)
275 : Generic_GCC(Host, Triple) {}
276
277 virtual bool IsIntegratedAssemblerDefault() const {
278 // Default integrated assembler to on for x86.
279 return (getTriple().getArch() == llvm::Triple::x86 ||
280 getTriple().getArch() == llvm::Triple::x86_64);
281 }
282};
283
Duncan Sands92dd1912010-05-11 20:16:05 +0000284class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000285public:
286 AuroraUX(const HostInfo &Host, const llvm::Triple& Triple);
287
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000288 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
289 const ActionList &Inputs) const;
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000290};
291
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000292class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF {
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000293public:
294 OpenBSD(const HostInfo &Host, const llvm::Triple& Triple);
295
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000296 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
297 const ActionList &Inputs) const;
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000298};
299
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000300class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF {
Daniel Dunbar75358d22009-03-30 21:06:03 +0000301public:
Daniel Dunbar214afe92010-08-02 05:43:59 +0000302 FreeBSD(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar75358d22009-03-30 21:06:03 +0000303
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000304 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
305 const ActionList &Inputs) const;
Daniel Dunbar75358d22009-03-30 21:06:03 +0000306};
307
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000308class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
309public:
310 NetBSD(const HostInfo &Host, const llvm::Triple& Triple);
311
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000312 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
313 const ActionList &Inputs) const;
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000314};
315
Chris Lattner38e317d2010-07-07 16:01:42 +0000316class LLVM_LIBRARY_VISIBILITY Minix : public Generic_GCC {
317public:
318 Minix(const HostInfo &Host, const llvm::Triple& Triple);
319
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000320 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
321 const ActionList &Inputs) const;
Chris Lattner38e317d2010-07-07 16:01:42 +0000322};
323
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000324class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000325public:
Daniel Dunbarcb8ab232009-05-22 02:53:45 +0000326 DragonFly(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000327
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000328 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
329 const ActionList &Inputs) const;
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000330};
331
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000332class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF {
Eli Friedman6b3454a2009-05-26 07:52:18 +0000333public:
334 Linux(const HostInfo &Host, const llvm::Triple& Triple);
Rafael Espindolaba30bbe2010-08-10 00:25:48 +0000335
Rafael Espindolac1da9812010-11-07 20:14:31 +0000336 virtual bool HasNativeLLVMSupport() const;
337
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000338 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
339 const ActionList &Inputs) const;
Rafael Espindolac1da9812010-11-07 20:14:31 +0000340
341 std::string Linker;
342 std::vector<std::string> ExtraOpts;
Eli Friedman6b3454a2009-05-26 07:52:18 +0000343};
344
345
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000346/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
347/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sands92dd1912010-05-11 20:16:05 +0000348class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000349public:
350 TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple);
351 ~TCEToolChain();
352
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000353 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
354 const ActionList &Inputs) const;
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000355 bool IsMathErrnoDefault() const;
356 bool IsUnwindTablesDefault() const;
357 const char* GetDefaultRelocationModel() const;
358 const char* GetForcedPicModel() const;
359
360private:
361 mutable llvm::DenseMap<unsigned, Tool*> Tools;
362
363};
364
Michael J. Spencerff58e362010-08-21 21:55:07 +0000365class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain {
366 mutable llvm::DenseMap<unsigned, Tool*> Tools;
367
368public:
369 Windows(const HostInfo &Host, const llvm::Triple& Triple);
370
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000371 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
372 const ActionList &Inputs) const;
Michael J. Spencerff58e362010-08-21 21:55:07 +0000373
374 virtual bool IsIntegratedAssemblerDefault() const;
375 virtual bool IsUnwindTablesDefault() const;
376 virtual const char *GetDefaultRelocationModel() const;
377 virtual const char *GetForcedPicModel() const;
378};
379
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000380} // end namespace toolchains
381} // end namespace driver
382} // end namespace clang
383
384#endif