blob: 4e0320e92948eaafe0c1455e5fa2e8f386aec8bc [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
Benjamin Kramer09c9a562012-03-10 20:55:36 +000016#include "clang/Basic/VersionTuple.h"
Daniel Dunbar670b7f42009-03-17 22:07:31 +000017#include "llvm/ADT/DenseMap.h"
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000018#include "llvm/Support/Compiler.h"
19
Daniel Dunbar670b7f42009-03-17 22:07:31 +000020#include "Tools.h"
21
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000022namespace clang {
23namespace driver {
Daniel Dunbar985b8252009-03-17 22:18:43 +000024namespace toolchains {
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000025
Daniel Dunbar1d4612b2009-09-18 08:15:13 +000026/// Generic_GCC - A tool chain using the 'gcc' command to perform
27/// all subcommands; this relies on gcc translating the majority of
28/// command line options.
Duncan Sands92dd1912010-05-11 20:16:05 +000029class LLVM_LIBRARY_VISIBILITY Generic_GCC : public ToolChain {
Daniel Dunbar75358d22009-03-30 21:06:03 +000030protected:
Chandler Carruth19347ed2011-11-06 23:39:34 +000031 /// \brief Struct to store and manipulate GCC versions.
32 ///
33 /// We rely on assumptions about the form and structure of GCC version
34 /// numbers: they consist of at most three '.'-separated components, and each
35 /// component is a non-negative integer except for the last component. For
36 /// the last component we are very flexible in order to tolerate release
37 /// candidates or 'x' wildcards.
38 ///
39 /// Note that the ordering established among GCCVersions is based on the
40 /// preferred version string to use. For example we prefer versions without
41 /// a hard-coded patch number to those with a hard coded patch number.
42 ///
43 /// Currently this doesn't provide any logic for textual suffixes to patches
44 /// in the way that (for example) Debian's version format does. If that ever
45 /// becomes necessary, it can be added.
46 struct GCCVersion {
47 /// \brief The unparsed text of the version.
48 std::string Text;
49
50 /// \brief The parsed major, minor, and patch numbers.
51 int Major, Minor, Patch;
52
53 /// \brief Any textual suffix on the patch number.
54 std::string PatchSuffix;
55
56 static GCCVersion Parse(StringRef VersionText);
57 bool operator<(const GCCVersion &RHS) const;
58 bool operator>(const GCCVersion &RHS) const { return RHS < *this; }
59 bool operator<=(const GCCVersion &RHS) const { return !(*this > RHS); }
60 bool operator>=(const GCCVersion &RHS) const { return !(*this < RHS); }
61 };
62
63
64 /// \brief This is a class to find a viable GCC installation for Clang to
65 /// use.
66 ///
67 /// This class tries to find a GCC installation on the system, and report
68 /// information about it. It starts from the host information provided to the
69 /// Driver, and has logic for fuzzing that where appropriate.
70 class GCCInstallationDetector {
71
72 bool IsValid;
Chandler Carruthfa5be912012-01-24 19:28:29 +000073 llvm::Triple GCCTriple;
Chandler Carruth19347ed2011-11-06 23:39:34 +000074
75 // FIXME: These might be better as path objects.
Chandler Carruth5d84bb42012-01-24 19:21:42 +000076 std::string GCCInstallPath;
Chandler Carruth1c6f04a2012-01-25 07:21:38 +000077 std::string GCCMultiarchSuffix;
Chandler Carruth5d84bb42012-01-24 19:21:42 +000078 std::string GCCParentLibPath;
Chandler Carruth19347ed2011-11-06 23:39:34 +000079
80 GCCVersion Version;
81
82 public:
Rafael Espindola0e659592012-02-19 01:38:32 +000083 GCCInstallationDetector(const Driver &D, const llvm::Triple &TargetTriple,
84 const ArgList &Args);
Chandler Carruth19347ed2011-11-06 23:39:34 +000085
86 /// \brief Check whether we detected a valid GCC install.
87 bool isValid() const { return IsValid; }
88
89 /// \brief Get the GCC triple for the detected install.
Chandler Carruthfa5be912012-01-24 19:28:29 +000090 const llvm::Triple &getTriple() const { return GCCTriple; }
Chandler Carruth19347ed2011-11-06 23:39:34 +000091
92 /// \brief Get the detected GCC installation path.
Chandler Carruth5d84bb42012-01-24 19:21:42 +000093 StringRef getInstallPath() const { return GCCInstallPath; }
Chandler Carruth19347ed2011-11-06 23:39:34 +000094
Chandler Carruth1c6f04a2012-01-25 07:21:38 +000095 /// \brief Get the detected GCC installation path suffix for multiarch GCCs.
96 StringRef getMultiarchSuffix() const { return GCCMultiarchSuffix; }
97
Chandler Carruth19347ed2011-11-06 23:39:34 +000098 /// \brief Get the detected GCC parent lib path.
Chandler Carruth5d84bb42012-01-24 19:21:42 +000099 StringRef getParentLibPath() const { return GCCParentLibPath; }
Chandler Carruth19347ed2011-11-06 23:39:34 +0000100
101 /// \brief Get the detected GCC version string.
Rafael Espindola8af669f2012-06-19 01:26:10 +0000102 const GCCVersion &getVersion() const { return Version; }
Chandler Carruth19347ed2011-11-06 23:39:34 +0000103
104 private:
Chandler Carruth1c6f04a2012-01-25 07:21:38 +0000105 static void CollectLibDirsAndTriples(
106 const llvm::Triple &TargetTriple,
107 const llvm::Triple &MultiarchTriple,
108 SmallVectorImpl<StringRef> &LibDirs,
109 SmallVectorImpl<StringRef> &TripleAliases,
110 SmallVectorImpl<StringRef> &MultiarchLibDirs,
111 SmallVectorImpl<StringRef> &MultiarchTripleAliases);
Chandler Carruth19347ed2011-11-06 23:39:34 +0000112
Chandler Carruth1c6f04a2012-01-25 07:21:38 +0000113 void ScanLibDirForGCCTriple(llvm::Triple::ArchType TargetArch,
Simon Atanasyanf4bd3292012-10-21 11:44:57 +0000114 const ArgList &Args,
Chandler Carruthd936d9d2011-11-09 03:46:20 +0000115 const std::string &LibDir,
Chandler Carruth1c6f04a2012-01-25 07:21:38 +0000116 StringRef CandidateTriple,
117 bool NeedsMultiarchSuffix = false);
Chandler Carruth19347ed2011-11-06 23:39:34 +0000118 };
119
120 GCCInstallationDetector GCCInstallation;
121
Daniel Dunbar670b7f42009-03-17 22:07:31 +0000122 mutable llvm::DenseMap<unsigned, Tool*> Tools;
123
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000124public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000125 Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbar39176082009-03-20 00:20:03 +0000126 ~Generic_GCC();
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000127
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000128 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
129 const ActionList &Inputs) const;
Daniel Dunbar670b7f42009-03-17 22:07:31 +0000130
Daniel Dunbar39176082009-03-20 00:20:03 +0000131 virtual bool IsUnwindTablesDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000132 virtual bool isPICDefault() const;
133 virtual bool isPICDefaultForced() const;
Chandler Carruthb37fe612011-11-06 23:39:37 +0000134
135protected:
136 /// \name ToolChain Implementation Helper Functions
137 /// @{
138
139 /// \brief Check whether the target triple's architecture is 64-bits.
Chandler Carruthd747efa2012-02-11 03:31:12 +0000140 bool isTarget64Bit() const { return getTriple().isArch64Bit(); }
141
Chandler Carruthb37fe612011-11-06 23:39:37 +0000142 /// \brief Check whether the target triple's architecture is 32-bits.
Chandler Carruthd747efa2012-02-11 03:31:12 +0000143 bool isTarget32Bit() const { return getTriple().isArch32Bit(); }
Chandler Carruthb37fe612011-11-06 23:39:37 +0000144
145 /// @}
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000146};
147
Tony Linthicum96319392011-12-12 21:14:55 +0000148class LLVM_LIBRARY_VISIBILITY Hexagon_TC : public ToolChain {
149protected:
150 mutable llvm::DenseMap<unsigned, Tool*> Tools;
151
152public:
Chandler Carruth1d16f0f2012-01-31 02:21:20 +0000153 Hexagon_TC(const Driver &D, const llvm::Triple& Triple);
Tony Linthicum96319392011-12-12 21:14:55 +0000154 ~Hexagon_TC();
155
156 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
157 const ActionList &Inputs) const;
158
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000159 virtual bool isPICDefault() const;
160 virtual bool isPICDefaultForced() const;
Tony Linthicum96319392011-12-12 21:14:55 +0000161};
162
163 /// Darwin - The base Darwin tool chain.
Duncan Sands92dd1912010-05-11 20:16:05 +0000164class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain {
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000165public:
166 /// The host version.
167 unsigned DarwinVersion[3];
168
169private:
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000170 mutable llvm::DenseMap<unsigned, Tool*> Tools;
171
Daniel Dunbar26031372010-01-27 00:56:25 +0000172 /// Whether the information on the target has been initialized.
173 //
174 // FIXME: This should be eliminated. What we want to do is make this part of
175 // the "default target for arguments" selection process, once we get out of
176 // the argument translation business.
177 mutable bool TargetInitialized;
178
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000179 /// Whether we are targeting iPhoneOS target.
Daniel Dunbar26031372010-01-27 00:56:25 +0000180 mutable bool TargetIsIPhoneOS;
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000181
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000182 /// Whether we are targeting the iPhoneOS simulator target.
183 mutable bool TargetIsIPhoneOSSimulator;
184
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000185 /// The OS version we are targeting.
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000186 mutable VersionTuple TargetVersion;
Daniel Dunbar26031372010-01-27 00:56:25 +0000187
John McCall260611a2012-06-20 06:18:46 +0000188private:
Daniel Dunbar02633b52009-03-26 16:23:12 +0000189 /// The default macosx-version-min of this tool chain; empty until
190 /// initialized.
Daniel Dunbar816bc312010-01-26 01:45:19 +0000191 std::string MacosxVersionMin;
Daniel Dunbar02633b52009-03-26 16:23:12 +0000192
Chad Rosier4ec26782012-05-09 18:37:26 +0000193 /// The default ios-version-min of this tool chain; empty until
194 /// initialized.
195 std::string iOSVersionMin;
196
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000197private:
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000198 void AddDeploymentTarget(DerivedArgList &Args) const;
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000199
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000200public:
Chandler Carruth1d16f0f2012-01-31 02:21:20 +0000201 Darwin(const Driver &D, const llvm::Triple& Triple);
Daniel Dunbarf3955282009-09-04 18:34:51 +0000202 ~Darwin();
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000203
Chad Rosier61ab80a2011-09-20 20:44:06 +0000204 std::string ComputeEffectiveClangTriple(const ArgList &Args,
205 types::ID InputType) const;
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000206
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000207 /// @name Darwin Specific Toolchain API
208 /// {
209
Daniel Dunbar26031372010-01-27 00:56:25 +0000210 // FIXME: Eliminate these ...Target functions and derive separate tool chains
211 // for these targets and put version in constructor.
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000212 void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor,
213 unsigned Micro, bool IsIOSSim) const {
214 assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!");
215
Daniel Dunbar26031372010-01-27 00:56:25 +0000216 // FIXME: For now, allow reinitialization as long as values don't
217 // change. This will go away when we move away from argument translation.
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000218 if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS &&
219 TargetIsIPhoneOSSimulator == IsIOSSim &&
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000220 TargetVersion == VersionTuple(Major, Minor, Micro))
Daniel Dunbar26031372010-01-27 00:56:25 +0000221 return;
222
223 assert(!TargetInitialized && "Target already initialized!");
224 TargetInitialized = true;
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000225 TargetIsIPhoneOS = IsIPhoneOS;
226 TargetIsIPhoneOSSimulator = IsIOSSim;
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000227 TargetVersion = VersionTuple(Major, Minor, Micro);
Daniel Dunbar26031372010-01-27 00:56:25 +0000228 }
229
230 bool isTargetIPhoneOS() const {
231 assert(TargetInitialized && "Target not initialized!");
232 return TargetIsIPhoneOS;
233 }
234
Daniel Dunbar40355802011-03-31 17:12:33 +0000235 bool isTargetIOSSimulator() const {
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000236 assert(TargetInitialized && "Target not initialized!");
237 return TargetIsIPhoneOSSimulator;
Daniel Dunbar40355802011-03-31 17:12:33 +0000238 }
239
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000240 bool isTargetMacOS() const {
Bob Wilson377e5c12012-11-09 01:59:30 +0000241 return !isTargetIOSSimulator() && !isTargetIPhoneOS();
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000242 }
243
Daniel Dunbar03d87ee2010-03-20 00:50:21 +0000244 bool isTargetInitialized() const { return TargetInitialized; }
245
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000246 VersionTuple getTargetVersion() const {
Daniel Dunbar26031372010-01-27 00:56:25 +0000247 assert(TargetInitialized && "Target not initialized!");
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000248 return TargetVersion;
Daniel Dunbar26031372010-01-27 00:56:25 +0000249 }
250
Daniel Dunbareeff4062010-01-22 02:04:58 +0000251 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
252 /// invocation. For example, Darwin treats different ARM variations as
253 /// distinct architectures.
Chris Lattner686775d2011-07-20 06:58:45 +0000254 StringRef getDarwinArchName(const ArgList &Args) const;
Daniel Dunbareeff4062010-01-22 02:04:58 +0000255
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000256 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
257 assert(isTargetIPhoneOS() && "Unexpected call for OS X target!");
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000258 return TargetVersion < VersionTuple(V0, V1, V2);
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000259 }
260
261 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
262 assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!");
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000263 return TargetVersion < VersionTuple(V0, V1, V2);
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000264 }
265
John McCallf85e1932011-06-15 23:02:42 +0000266 /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library.
267 virtual void AddLinkARCArgs(const ArgList &Args,
268 ArgStringList &CmdArgs) const = 0;
269
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000270 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
271 /// runtime library.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000272 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
273 ArgStringList &CmdArgs) const = 0;
Eric Christopher3404fe72011-06-22 17:41:40 +0000274
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000275 /// }
276 /// @name ToolChain Implementation
277 /// {
278
Daniel Dunbar41800112010-08-02 05:43:56 +0000279 virtual types::ID LookupTypeForExtension(const char *Ext) const;
280
Daniel Dunbarb993f5d2010-09-17 00:24:52 +0000281 virtual bool HasNativeLLVMSupport() const;
282
John McCall260611a2012-06-20 06:18:46 +0000283 virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const;
John McCall13db5cf2011-09-09 20:41:01 +0000284 virtual bool hasBlocksRuntime() const;
John McCallf85e1932011-06-15 23:02:42 +0000285
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000286 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Daniel Dunbar0dcb9a32009-09-09 18:36:12 +0000287 const char *BoundArch) const;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000288
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000289 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
290 const ActionList &Inputs) const;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000291
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000292 virtual bool IsBlocksDefault() const {
Daniel Dunbaref44a5d2010-07-22 00:40:31 +0000293 // Always allow blocks on Darwin; users interested in versioning are
294 // expected to use /usr/include/Blocks.h.
295 return true;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000296 }
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000297 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000298#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
299 return false;
300#else
Jim Grosbach033d3002012-02-27 23:55:25 +0000301 // Default integrated assembler to on for Darwin.
302 return true;
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000303#endif
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000304 }
Daniel Dunbar398c6102011-02-04 02:20:39 +0000305 virtual bool IsStrictAliasingDefault() const {
306#ifdef DISABLE_DEFAULT_STRICT_ALIASING
307 return false;
308#else
309 return ToolChain::IsStrictAliasingDefault();
310#endif
311 }
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000312
313 virtual bool IsMathErrnoDefault() const {
314 return false;
315 }
316
Ted Kremenekc32647d2010-12-23 21:35:43 +0000317 virtual bool IsObjCDefaultSynthPropertiesDefault() const {
Ted Kremenek2a253962012-03-06 20:06:15 +0000318 return true;
Ted Kremenekc32647d2010-12-23 21:35:43 +0000319 }
320
Fariborz Jahanian3d145f62012-11-15 19:02:45 +0000321 virtual bool IsEncodeExtendedBlockSignatureDefault() const {
322 return true;
323 }
324
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000325 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000326 // Non-fragile ABI is default for everything but i386.
327 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000328 }
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000329
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000330 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000331 // This is only used with the non-fragile ABI and non-legacy dispatch.
332
333 // Mixed dispatch is used everywhere except OS X before 10.6.
334 return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6));
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000335 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000336 virtual bool IsUnwindTablesDefault() const;
Nico Weber2fef1112011-08-23 07:38:27 +0000337 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
338 // Stack protectors default to on for user code on 10.5,
339 // and for everything in 10.6 and beyond
Bob Wilsondfba0272011-12-14 06:08:25 +0000340 return isTargetIPhoneOS() ||
Nico Weber2fef1112011-08-23 07:38:27 +0000341 (!isMacosxVersionLT(10, 6) ||
342 (!isMacosxVersionLT(10, 5) && !KernelOrKext));
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000343 }
Daniel Dunbarc24767c2011-12-07 23:03:15 +0000344 virtual RuntimeLibType GetDefaultRuntimeLibType() const {
345 return ToolChain::RLT_CompilerRT;
346 }
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000347 virtual bool isPICDefault() const;
348 virtual bool isPICDefaultForced() const;
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000349
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000350 virtual bool SupportsProfiling() const;
351
Daniel Dunbar43a9b322010-04-10 16:20:23 +0000352 virtual bool SupportsObjCGC() const;
353
John McCall0a7dd782012-08-21 02:47:43 +0000354 virtual void CheckObjCARC() const;
Argyrios Kyrtzidis5840dd92012-02-29 03:43:52 +0000355
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000356 virtual bool UseDwarfDebugFlags() const;
357
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000358 virtual bool UseSjLjExceptions() const;
359
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000360 /// }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000361};
362
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000363/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sands92dd1912010-05-11 20:16:05 +0000364class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000365public:
Chandler Carruth1d16f0f2012-01-31 02:21:20 +0000366 DarwinClang(const Driver &D, const llvm::Triple& Triple);
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000367
368 /// @name Darwin ToolChain Implementation
369 /// {
370
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000371 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
372 ArgStringList &CmdArgs) const;
Alexey Samsonov69b77d72012-11-21 14:17:42 +0000373 void AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs,
374 const char *DarwinStaticLib,
375 bool AlwaysLink = false) const;
376
Daniel Dunbar132e35d2010-09-17 01:20:05 +0000377 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
378 ArgStringList &CmdArgs) const;
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000379
Shantonu Sen7433fed2010-09-17 18:39:08 +0000380 virtual void AddCCKextLibArgs(const ArgList &Args,
381 ArgStringList &CmdArgs) const;
382
John McCallf85e1932011-06-15 23:02:42 +0000383 virtual void AddLinkARCArgs(const ArgList &Args,
384 ArgStringList &CmdArgs) const;
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000385 /// }
386};
387
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000388/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sands92dd1912010-05-11 20:16:05 +0000389class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000390public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000391 Darwin_Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
392 : Generic_GCC(D, Triple, Args) {}
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000393
Chad Rosier61ab80a2011-09-20 20:44:06 +0000394 std::string ComputeEffectiveClangTriple(const ArgList &Args,
395 types::ID InputType) const;
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000396
Chad Rosierf8fc6272012-11-27 17:31:26 +0000397 virtual bool isPICDefault() const { return false; }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000398};
399
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000400class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {
David Blaikie99ba9e32011-12-20 02:48:34 +0000401 virtual void anchor();
402public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000403 Generic_ELF(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
404 : Generic_GCC(D, Triple, Args) {}
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000405
406 virtual bool IsIntegratedAssemblerDefault() const {
407 // Default integrated assembler to on for x86.
408 return (getTriple().getArch() == llvm::Triple::x86 ||
409 getTriple().getArch() == llvm::Triple::x86_64);
410 }
411};
412
Duncan Sands92dd1912010-05-11 20:16:05 +0000413class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000414public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000415 AuroraUX(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000416
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000417 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
418 const ActionList &Inputs) const;
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000419};
420
David Chisnall31c46902012-02-15 13:39:01 +0000421class LLVM_LIBRARY_VISIBILITY Solaris : public Generic_GCC {
422public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000423 Solaris(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
David Chisnall31c46902012-02-15 13:39:01 +0000424
425 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
426 const ActionList &Inputs) const;
427
428 virtual bool IsIntegratedAssemblerDefault() const { return true; }
429};
430
431
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000432class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF {
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000433public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000434 OpenBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000435
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000436 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000437 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000438
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000439 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
440 const ActionList &Inputs) const;
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000441};
442
Eli Friedman42f74f22012-08-08 23:57:20 +0000443class LLVM_LIBRARY_VISIBILITY Bitrig : public Generic_ELF {
444public:
445 Bitrig(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
446
447 virtual bool IsMathErrnoDefault() const { return false; }
448 virtual bool IsObjCNonFragileABIDefault() const { return true; }
449 virtual bool IsObjCLegacyDispatchDefault() const { return false; }
450
451 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
452 const ActionList &Inputs) const;
453
454 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
455 ArgStringList &CC1Args) const;
456 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
457 ArgStringList &CmdArgs) const;
458 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
459 return 1;
460 }
461};
462
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000463class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF {
Daniel Dunbar75358d22009-03-30 21:06:03 +0000464public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000465 FreeBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbar75358d22009-03-30 21:06:03 +0000466
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000467 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000468 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000469
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000470 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
471 const ActionList &Inputs) const;
Daniel Dunbar75358d22009-03-30 21:06:03 +0000472};
473
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000474class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
475public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000476 NetBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000477
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000478 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000479 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000480
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000481 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
482 const ActionList &Inputs) const;
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000483};
484
Eli Friedman6d402dc2011-12-08 23:54:21 +0000485class LLVM_LIBRARY_VISIBILITY Minix : public Generic_ELF {
Chris Lattner38e317d2010-07-07 16:01:42 +0000486public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000487 Minix(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Chris Lattner38e317d2010-07-07 16:01:42 +0000488
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000489 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
490 const ActionList &Inputs) const;
Chris Lattner38e317d2010-07-07 16:01:42 +0000491};
492
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000493class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000494public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000495 DragonFly(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000496
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000497 virtual bool IsMathErrnoDefault() const { return false; }
498
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000499 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
500 const ActionList &Inputs) const;
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000501};
502
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000503class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF {
Eli Friedman6b3454a2009-05-26 07:52:18 +0000504public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000505 Linux(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Rafael Espindolaba30bbe2010-08-10 00:25:48 +0000506
Rafael Espindolac1da9812010-11-07 20:14:31 +0000507 virtual bool HasNativeLLVMSupport() const;
508
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000509 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
510 const ActionList &Inputs) const;
Rafael Espindolac1da9812010-11-07 20:14:31 +0000511
Chandler Carruth7d7e9f92011-11-05 20:17:13 +0000512 virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs,
513 ArgStringList &CC1Args) const;
Chandler Carrutha6b25812012-11-21 23:40:23 +0000514 virtual void addClangTargetOptions(const ArgList &DriverArgs,
515 ArgStringList &CC1Args) const;
Chandler Carruth7d7e9f92011-11-05 20:17:13 +0000516 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
517 ArgStringList &CC1Args) const;
518
Rafael Espindolac1da9812010-11-07 20:14:31 +0000519 std::string Linker;
520 std::vector<std::string> ExtraOpts;
Chandler Carruth79cbbdc2011-12-17 23:10:01 +0000521
522private:
523 static bool addLibStdCXXIncludePaths(Twine Base, Twine TargetArchDir,
524 const ArgList &DriverArgs,
525 ArgStringList &CC1Args);
Eli Friedman6b3454a2009-05-26 07:52:18 +0000526};
527
528
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000529/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
530/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sands92dd1912010-05-11 20:16:05 +0000531class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000532public:
Chandler Carruth1d16f0f2012-01-31 02:21:20 +0000533 TCEToolChain(const Driver &D, const llvm::Triple& Triple);
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000534 ~TCEToolChain();
535
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000536 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
537 const ActionList &Inputs) const;
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000538 bool IsMathErrnoDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000539 bool isPICDefault() const;
540 bool isPICDefaultForced() const;
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000541
542private:
543 mutable llvm::DenseMap<unsigned, Tool*> Tools;
544
545};
546
Michael J. Spencerff58e362010-08-21 21:55:07 +0000547class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain {
548 mutable llvm::DenseMap<unsigned, Tool*> Tools;
549
550public:
Chandler Carruth1d16f0f2012-01-31 02:21:20 +0000551 Windows(const Driver &D, const llvm::Triple& Triple);
Michael J. Spencerff58e362010-08-21 21:55:07 +0000552
Daniel Dunbarac0659a2011-03-18 20:14:00 +0000553 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
554 const ActionList &Inputs) const;
Michael J. Spencerff58e362010-08-21 21:55:07 +0000555
Fariborz Jahanian51a0a942012-08-03 21:51:38 +0000556 virtual bool IsObjCDefaultSynthPropertiesDefault() const {
557 return true;
558 }
559
Michael J. Spencerff58e362010-08-21 21:55:07 +0000560 virtual bool IsIntegratedAssemblerDefault() const;
561 virtual bool IsUnwindTablesDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000562 virtual bool isPICDefault() const;
563 virtual bool isPICDefaultForced() const;
Chandler Carruthca234192011-11-04 23:49:05 +0000564
565 virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs,
566 ArgStringList &CC1Args) const;
567 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
568 ArgStringList &CC1Args) const;
569
Michael J. Spencerff58e362010-08-21 21:55:07 +0000570};
571
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000572} // end namespace toolchains
573} // end namespace driver
574} // end namespace clang
575
576#endif