blob: a933553f46b56eb6f8d7ee4c67d18e7353b4c5ac [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 Dunbar59e5e882009-03-20 00:20:03 +000036 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const;
Daniel Dunbar04cb0292009-03-17 22:07:31 +000037
Daniel Dunbar59e5e882009-03-20 00:20:03 +000038 virtual bool IsUnwindTablesDefault() const;
39 virtual const char *GetDefaultRelocationModel() const;
40 virtual const char *GetForcedPicModel() const;
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000041};
42
Daniel Dunbar6276f992009-09-18 08:15:13 +000043/// Darwin - The base Darwin tool chain.
Duncan Sandsaf260b92010-05-11 20:16:05 +000044class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain {
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +000045 mutable llvm::DenseMap<unsigned, Tool*> Tools;
46
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +000047 /// Whether the information on the target has been initialized.
48 //
49 // FIXME: This should be eliminated. What we want to do is make this part of
50 // the "default target for arguments" selection process, once we get out of
51 // the argument translation business.
52 mutable bool TargetInitialized;
53
54 /// Whether we are targetting iPhoneOS target.
55 mutable bool TargetIsIPhoneOS;
Daniel Dunbarf9ff3502010-05-14 02:03:00 +000056
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +000057 /// The OS version we are targetting.
58 mutable unsigned TargetVersion[3];
59
Daniel Dunbarc1964212009-03-26 16:23:12 +000060 /// The default macosx-version-min of this tool chain; empty until
61 /// initialized.
Daniel Dunbard54669d2010-01-26 01:45:19 +000062 std::string MacosxVersionMin;
Daniel Dunbarc1964212009-03-26 16:23:12 +000063
Daniel Dunbarb2b8a912010-07-19 17:11:33 +000064private:
65 void AddDeploymentTarget(const DerivedArgList &Args,
66 DerivedArgList *DAL) const;
67
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +000068public:
Mike Stump11289f42009-09-09 15:08:12 +000069 Darwin(const HostInfo &Host, const llvm::Triple& Triple,
Daniel Dunbar7c8701752010-01-27 00:56:44 +000070 const unsigned (&DarwinVersion)[3]);
Daniel Dunbarf0a5b9b2009-09-04 18:34:51 +000071 ~Darwin();
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +000072
Daniel Dunbar4c30b892009-09-18 08:14:36 +000073 /// @name Darwin Specific Toolchain API
74 /// {
75
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +000076 // FIXME: Eliminate these ...Target functions and derive separate tool chains
77 // for these targets and put version in constructor.
78 void setTarget(bool isIPhoneOS, unsigned Major, unsigned Minor,
79 unsigned Micro) const {
80 // FIXME: For now, allow reinitialization as long as values don't
81 // change. This will go away when we move away from argument translation.
82 if (TargetInitialized && TargetIsIPhoneOS == isIPhoneOS &&
83 TargetVersion[0] == Major && TargetVersion[1] == Minor &&
84 TargetVersion[2] == Micro)
85 return;
86
87 assert(!TargetInitialized && "Target already initialized!");
88 TargetInitialized = true;
89 TargetIsIPhoneOS = isIPhoneOS;
90 TargetVersion[0] = Major;
91 TargetVersion[1] = Minor;
92 TargetVersion[2] = Micro;
93 }
94
95 bool isTargetIPhoneOS() const {
96 assert(TargetInitialized && "Target not initialized!");
97 return TargetIsIPhoneOS;
98 }
99
Daniel Dunbar47d25b12010-03-20 00:50:21 +0000100 bool isTargetInitialized() const { return TargetInitialized; }
101
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000102 void getTargetVersion(unsigned (&Res)[3]) const {
103 assert(TargetInitialized && "Target not initialized!");
104 Res[0] = TargetVersion[0];
105 Res[1] = TargetVersion[1];
106 Res[2] = TargetVersion[2];
107 }
108
Daniel Dunbardcc3b652010-01-22 02:04:58 +0000109 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
110 /// invocation. For example, Darwin treats different ARM variations as
111 /// distinct architectures.
112 llvm::StringRef getDarwinArchName(const ArgList &Args) const;
113
Daniel Dunbar6d23b2f2010-01-27 00:57:03 +0000114 static bool isVersionLT(unsigned (&A)[3], unsigned (&B)[3]) {
Daniel Dunbard5bd81e2009-09-18 08:14:55 +0000115 for (unsigned i=0; i < 3; ++i) {
116 if (A[i] > B[i]) return false;
117 if (A[i] < B[i]) return true;
118 }
119 return false;
120 }
121
Daniel Dunbar83608032010-01-27 00:56:56 +0000122 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
123 assert(isTargetIPhoneOS() && "Unexpected call for OS X target!");
124 unsigned B[3] = { V0, V1, V2 };
Daniel Dunbar6d23b2f2010-01-27 00:57:03 +0000125 return isVersionLT(TargetVersion, B);
126 }
127
128 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
129 assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!");
130 unsigned B[3] = { V0, V1, V2 };
131 return isVersionLT(TargetVersion, B);
Daniel Dunbar83608032010-01-27 00:56:56 +0000132 }
133
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000134 /// AddLinkSearchPathArgs - Add the linker search paths to \arg CmdArgs.
135 ///
136 /// \param Args - The input argument list.
137 /// \param CmdArgs [out] - The command argument list to append the paths
138 /// (prefixed by -L) to.
Daniel Dunbar6276f992009-09-18 08:15:13 +0000139 virtual void AddLinkSearchPathArgs(const ArgList &Args,
140 ArgStringList &CmdArgs) const = 0;
Daniel Dunbarc1964212009-03-26 16:23:12 +0000141
Daniel Dunbar26d482a2009-09-18 08:15:03 +0000142 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
143 /// runtime library.
Daniel Dunbar6276f992009-09-18 08:15:13 +0000144 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
145 ArgStringList &CmdArgs) const = 0;
Daniel Dunbar26d482a2009-09-18 08:15:03 +0000146
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000147 /// }
148 /// @name ToolChain Implementation
149 /// {
150
Daniel Dunbar775d4062010-06-11 22:00:26 +0000151 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Daniel Dunbare7af3412009-09-09 18:36:12 +0000152 const char *BoundArch) const;
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000153
154 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const;
155
Daniel Dunbar4930e332009-11-17 08:07:36 +0000156 virtual bool IsBlocksDefault() const {
Daniel Dunbarf48d51d2010-01-27 00:57:11 +0000157 // Blocks default to on for OS X 10.6 and iPhoneOS 3.0 and beyond.
158 if (isTargetIPhoneOS())
159 return !isIPhoneOSVersionLT(3);
160 else
161 return !isMacosxVersionLT(10, 6);
Daniel Dunbar4930e332009-11-17 08:07:36 +0000162 }
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000163 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbara99a3c12010-06-23 18:15:13 +0000164#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
165 return false;
166#else
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000167 // Default integrated assembler to on for x86.
168 return (getTriple().getArch() == llvm::Triple::x86 ||
169 getTriple().getArch() == llvm::Triple::x86_64);
Daniel Dunbara99a3c12010-06-23 18:15:13 +0000170#endif
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000171 }
Daniel Dunbar4930e332009-11-17 08:07:36 +0000172 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000173 // Non-fragile ABI is default for everything but i386.
174 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000175 }
Daniel Dunbar98188412010-02-01 21:07:43 +0000176 virtual bool IsObjCLegacyDispatchDefault() const {
177 // This is only used with the non-fragile ABI.
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000178
179 // Legacy dispatch is used everywhere except on x86_64.
180 return getTriple().getArch() != llvm::Triple::x86_64;
Daniel Dunbar98188412010-02-01 21:07:43 +0000181 }
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +0000182 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000183 // This is only used with the non-fragile ABI and non-legacy dispatch.
184
185 // Mixed dispatch is used everywhere except OS X before 10.6.
186 return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6));
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +0000187 }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000188 virtual bool IsUnwindTablesDefault() const;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000189 virtual unsigned GetDefaultStackProtectorLevel() const {
Daniel Dunbarf48d51d2010-01-27 00:57:11 +0000190 // Stack protectors default to on for 10.6 and beyond.
191 return !isTargetIPhoneOS() && !isMacosxVersionLT(10, 6);
Daniel Dunbar4930e332009-11-17 08:07:36 +0000192 }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000193 virtual const char *GetDefaultRelocationModel() const;
194 virtual const char *GetForcedPicModel() const;
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000195
Daniel Dunbar16334e12010-04-10 16:20:23 +0000196 virtual bool SupportsObjCGC() const;
197
Daniel Dunbar24c7f5e2009-12-18 02:43:17 +0000198 virtual bool UseDwarfDebugFlags() const;
199
Daniel Dunbar3241d402010-02-10 18:49:11 +0000200 virtual bool UseSjLjExceptions() const;
201
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000202 /// }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000203};
204
Daniel Dunbar6276f992009-09-18 08:15:13 +0000205/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000206class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000207public:
Daniel Dunbar6276f992009-09-18 08:15:13 +0000208 DarwinClang(const HostInfo &Host, const llvm::Triple& Triple,
Daniel Dunbar7c8701752010-01-27 00:56:44 +0000209 const unsigned (&DarwinVersion)[3]);
Daniel Dunbar6276f992009-09-18 08:15:13 +0000210
211 /// @name Darwin ToolChain Implementation
212 /// {
213
214 virtual void AddLinkSearchPathArgs(const ArgList &Args,
215 ArgStringList &CmdArgs) const;
216
217 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
218 ArgStringList &CmdArgs) const;
219
220 /// }
221};
222
223/// DarwinGCC - The Darwin toolchain used by GCC.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000224class LLVM_LIBRARY_VISIBILITY DarwinGCC : public Darwin {
Daniel Dunbar6276f992009-09-18 08:15:13 +0000225 /// GCC version to use.
Ted Kremenek7881ac92009-10-07 03:21:11 +0000226 unsigned GCCVersion[3];
Daniel Dunbar6276f992009-09-18 08:15:13 +0000227
228 /// The directory suffix for this tool chain.
229 std::string ToolChainDir;
230
231public:
232 DarwinGCC(const HostInfo &Host, const llvm::Triple& Triple,
Daniel Dunbar7c8701752010-01-27 00:56:44 +0000233 const unsigned (&DarwinVersion)[3],
234 const unsigned (&GCCVersion)[3]);
Daniel Dunbar6276f992009-09-18 08:15:13 +0000235
236 /// @name Darwin ToolChain Implementation
237 /// {
238
239 virtual void AddLinkSearchPathArgs(const ArgList &Args,
240 ArgStringList &CmdArgs) const;
241
242 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
243 ArgStringList &CmdArgs) const;
244
245 /// }
246};
247
248/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000249class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar6276f992009-09-18 08:15:13 +0000250public:
251 Darwin_Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple)
Daniel Dunbar51c7f972009-05-22 02:53:45 +0000252 : Generic_GCC(Host, Triple) {}
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000253
254 virtual const char *GetDefaultRelocationModel() const { return "pic"; }
255};
256
Duncan Sandsaf260b92010-05-11 20:16:05 +0000257class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000258public:
259 AuroraUX(const HostInfo &Host, const llvm::Triple& Triple);
260
261 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const;
262};
263
Duncan Sandsaf260b92010-05-11 20:16:05 +0000264class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_GCC {
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000265public:
266 OpenBSD(const HostInfo &Host, const llvm::Triple& Triple);
267
268 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const;
269};
270
Duncan Sandsaf260b92010-05-11 20:16:05 +0000271class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_GCC {
Daniel Dunbare24297c2009-03-30 21:06:03 +0000272public:
Daniel Dunbar51c7f972009-05-22 02:53:45 +0000273 FreeBSD(const HostInfo &Host, const llvm::Triple& Triple, bool Lib32);
Daniel Dunbare24297c2009-03-30 21:06:03 +0000274
275 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const;
276};
277
Chris Lattner3e2ee142010-07-07 16:01:42 +0000278class LLVM_LIBRARY_VISIBILITY Minix : public Generic_GCC {
279public:
280 Minix(const HostInfo &Host, const llvm::Triple& Triple);
281
282 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const;
283};
284
Duncan Sandsaf260b92010-05-11 20:16:05 +0000285class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_GCC {
Daniel Dunbarcc912342009-05-02 18:28:39 +0000286public:
Daniel Dunbar51c7f972009-05-22 02:53:45 +0000287 DragonFly(const HostInfo &Host, const llvm::Triple& Triple);
Daniel Dunbarcc912342009-05-02 18:28:39 +0000288
289 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const;
290};
291
Duncan Sandsaf260b92010-05-11 20:16:05 +0000292class LLVM_LIBRARY_VISIBILITY Linux : public Generic_GCC {
Eli Friedman5cd659f2009-05-26 07:52:18 +0000293public:
294 Linux(const HostInfo &Host, const llvm::Triple& Triple);
295};
296
297
Chris Lattner09797542010-03-04 21:07:38 +0000298/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
299/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000300class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner09797542010-03-04 21:07:38 +0000301public:
302 TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple);
303 ~TCEToolChain();
304
Chris Lattner09797542010-03-04 21:07:38 +0000305 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const;
306 bool IsMathErrnoDefault() const;
307 bool IsUnwindTablesDefault() const;
308 const char* GetDefaultRelocationModel() const;
309 const char* GetForcedPicModel() const;
310
311private:
312 mutable llvm::DenseMap<unsigned, Tool*> Tools;
313
314};
315
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000316} // end namespace toolchains
317} // end namespace driver
318} // end namespace clang
319
320#endif