blob: 3afd8dd228b61cdc25bf674e003e49d98e7c5fef [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
Chandler Carruth55fc8732012-12-04 09:13:33 +000013#include "Tools.h"
14#include "clang/Basic/VersionTuple.h"
Daniel Dunbar670b7f42009-03-17 22:07:31 +000015#include "clang/Driver/Action.h"
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000016#include "clang/Driver/ToolChain.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
20namespace clang {
21namespace driver {
Daniel Dunbar985b8252009-03-17 22:18:43 +000022namespace toolchains {
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000023
Daniel Dunbar1d4612b2009-09-18 08:15:13 +000024/// Generic_GCC - A tool chain using the 'gcc' command to perform
25/// all subcommands; this relies on gcc translating the majority of
26/// command line options.
Duncan Sands92dd1912010-05-11 20:16:05 +000027class LLVM_LIBRARY_VISIBILITY Generic_GCC : public ToolChain {
Daniel Dunbar75358d22009-03-30 21:06:03 +000028protected:
Chandler Carruth19347ed2011-11-06 23:39:34 +000029 /// \brief Struct to store and manipulate GCC versions.
30 ///
31 /// We rely on assumptions about the form and structure of GCC version
32 /// numbers: they consist of at most three '.'-separated components, and each
33 /// component is a non-negative integer except for the last component. For
34 /// the last component we are very flexible in order to tolerate release
35 /// candidates or 'x' wildcards.
36 ///
37 /// Note that the ordering established among GCCVersions is based on the
38 /// preferred version string to use. For example we prefer versions without
39 /// a hard-coded patch number to those with a hard coded patch number.
40 ///
41 /// Currently this doesn't provide any logic for textual suffixes to patches
42 /// in the way that (for example) Debian's version format does. If that ever
43 /// becomes necessary, it can be added.
44 struct GCCVersion {
45 /// \brief The unparsed text of the version.
46 std::string Text;
47
48 /// \brief The parsed major, minor, and patch numbers.
49 int Major, Minor, Patch;
50
51 /// \brief Any textual suffix on the patch number.
52 std::string PatchSuffix;
53
54 static GCCVersion Parse(StringRef VersionText);
55 bool operator<(const GCCVersion &RHS) const;
56 bool operator>(const GCCVersion &RHS) const { return RHS < *this; }
57 bool operator<=(const GCCVersion &RHS) const { return !(*this > RHS); }
58 bool operator>=(const GCCVersion &RHS) const { return !(*this < RHS); }
59 };
60
61
62 /// \brief This is a class to find a viable GCC installation for Clang to
63 /// use.
64 ///
65 /// This class tries to find a GCC installation on the system, and report
66 /// information about it. It starts from the host information provided to the
67 /// Driver, and has logic for fuzzing that where appropriate.
68 class GCCInstallationDetector {
69
70 bool IsValid;
Chandler Carruthfa5be912012-01-24 19:28:29 +000071 llvm::Triple GCCTriple;
Chandler Carruth19347ed2011-11-06 23:39:34 +000072
73 // FIXME: These might be better as path objects.
Chandler Carruth5d84bb42012-01-24 19:21:42 +000074 std::string GCCInstallPath;
Chandler Carruth1c6f04a2012-01-25 07:21:38 +000075 std::string GCCMultiarchSuffix;
Chandler Carruth5d84bb42012-01-24 19:21:42 +000076 std::string GCCParentLibPath;
Chandler Carruth19347ed2011-11-06 23:39:34 +000077
78 GCCVersion Version;
79
80 public:
Rafael Espindola0e659592012-02-19 01:38:32 +000081 GCCInstallationDetector(const Driver &D, const llvm::Triple &TargetTriple,
82 const ArgList &Args);
Chandler Carruth19347ed2011-11-06 23:39:34 +000083
84 /// \brief Check whether we detected a valid GCC install.
85 bool isValid() const { return IsValid; }
86
87 /// \brief Get the GCC triple for the detected install.
Chandler Carruthfa5be912012-01-24 19:28:29 +000088 const llvm::Triple &getTriple() const { return GCCTriple; }
Chandler Carruth19347ed2011-11-06 23:39:34 +000089
90 /// \brief Get the detected GCC installation path.
Chandler Carruth5d84bb42012-01-24 19:21:42 +000091 StringRef getInstallPath() const { return GCCInstallPath; }
Chandler Carruth19347ed2011-11-06 23:39:34 +000092
Chandler Carruth1c6f04a2012-01-25 07:21:38 +000093 /// \brief Get the detected GCC installation path suffix for multiarch GCCs.
94 StringRef getMultiarchSuffix() const { return GCCMultiarchSuffix; }
95
Chandler Carruth19347ed2011-11-06 23:39:34 +000096 /// \brief Get the detected GCC parent lib path.
Chandler Carruth5d84bb42012-01-24 19:21:42 +000097 StringRef getParentLibPath() const { return GCCParentLibPath; }
Chandler Carruth19347ed2011-11-06 23:39:34 +000098
99 /// \brief Get the detected GCC version string.
Rafael Espindola8af669f2012-06-19 01:26:10 +0000100 const GCCVersion &getVersion() const { return Version; }
Chandler Carruth19347ed2011-11-06 23:39:34 +0000101
102 private:
Chandler Carruth1c6f04a2012-01-25 07:21:38 +0000103 static void CollectLibDirsAndTriples(
104 const llvm::Triple &TargetTriple,
105 const llvm::Triple &MultiarchTriple,
106 SmallVectorImpl<StringRef> &LibDirs,
107 SmallVectorImpl<StringRef> &TripleAliases,
108 SmallVectorImpl<StringRef> &MultiarchLibDirs,
109 SmallVectorImpl<StringRef> &MultiarchTripleAliases);
Chandler Carruth19347ed2011-11-06 23:39:34 +0000110
Chandler Carruth1c6f04a2012-01-25 07:21:38 +0000111 void ScanLibDirForGCCTriple(llvm::Triple::ArchType TargetArch,
Simon Atanasyanf4bd3292012-10-21 11:44:57 +0000112 const ArgList &Args,
Chandler Carruthd936d9d2011-11-09 03:46:20 +0000113 const std::string &LibDir,
Chandler Carruth1c6f04a2012-01-25 07:21:38 +0000114 StringRef CandidateTriple,
115 bool NeedsMultiarchSuffix = false);
Chandler Carruth19347ed2011-11-06 23:39:34 +0000116 };
117
118 GCCInstallationDetector GCCInstallation;
119
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000120public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000121 Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbar39176082009-03-20 00:20:03 +0000122 ~Generic_GCC();
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000123
Daniel Dunbar39176082009-03-20 00:20:03 +0000124 virtual bool IsUnwindTablesDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000125 virtual bool isPICDefault() const;
Peter Collingbourne52ca70d2013-04-09 04:35:11 +0000126 virtual bool isPIEDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000127 virtual bool isPICDefaultForced() const;
Chandler Carruthb37fe612011-11-06 23:39:37 +0000128
129protected:
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000130 virtual Tool *getTool(Action::ActionClass AC) const;
131 virtual Tool *buildAssembler() const;
132 virtual Tool *buildLinker() const;
133
Chandler Carruthb37fe612011-11-06 23:39:37 +0000134 /// \name ToolChain Implementation Helper Functions
135 /// @{
136
137 /// \brief Check whether the target triple's architecture is 64-bits.
Chandler Carruthd747efa2012-02-11 03:31:12 +0000138 bool isTarget64Bit() const { return getTriple().isArch64Bit(); }
139
Chandler Carruthb37fe612011-11-06 23:39:37 +0000140 /// \brief Check whether the target triple's architecture is 32-bits.
Chandler Carruthd747efa2012-02-11 03:31:12 +0000141 bool isTarget32Bit() const { return getTriple().isArch32Bit(); }
Chandler Carruthb37fe612011-11-06 23:39:37 +0000142
143 /// @}
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000144
145private:
146 mutable OwningPtr<tools::gcc::Preprocess> Preprocess;
147 mutable OwningPtr<tools::gcc::Precompile> Precompile;
148 mutable OwningPtr<tools::gcc::Compile> Compile;
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000149};
150
Tony Linthicum96319392011-12-12 21:14:55 +0000151 /// Darwin - The base Darwin tool chain.
Duncan Sands92dd1912010-05-11 20:16:05 +0000152class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain {
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000153public:
154 /// The host version.
155 unsigned DarwinVersion[3];
156
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000157protected:
158 virtual Tool *buildAssembler() const;
159 virtual Tool *buildLinker() const;
160 virtual Tool *getTool(Action::ActionClass AC) const;
161
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000162private:
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000163 mutable OwningPtr<tools::darwin::Lipo> Lipo;
164 mutable OwningPtr<tools::darwin::Dsymutil> Dsymutil;
165 mutable OwningPtr<tools::darwin::VerifyDebug> VerifyDebug;
166
Daniel Dunbar26031372010-01-27 00:56:25 +0000167 /// Whether the information on the target has been initialized.
168 //
169 // FIXME: This should be eliminated. What we want to do is make this part of
170 // the "default target for arguments" selection process, once we get out of
171 // the argument translation business.
172 mutable bool TargetInitialized;
173
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000174 /// Whether we are targeting iPhoneOS target.
Daniel Dunbar26031372010-01-27 00:56:25 +0000175 mutable bool TargetIsIPhoneOS;
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000176
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000177 /// Whether we are targeting the iPhoneOS simulator target.
178 mutable bool TargetIsIPhoneOSSimulator;
179
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000180 /// The OS version we are targeting.
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000181 mutable VersionTuple TargetVersion;
Daniel Dunbar26031372010-01-27 00:56:25 +0000182
John McCall260611a2012-06-20 06:18:46 +0000183private:
Daniel Dunbar02633b52009-03-26 16:23:12 +0000184 /// The default macosx-version-min of this tool chain; empty until
185 /// initialized.
Daniel Dunbar816bc312010-01-26 01:45:19 +0000186 std::string MacosxVersionMin;
Daniel Dunbar02633b52009-03-26 16:23:12 +0000187
Chad Rosier4ec26782012-05-09 18:37:26 +0000188 /// The default ios-version-min of this tool chain; empty until
189 /// initialized.
190 std::string iOSVersionMin;
191
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000192private:
Daniel Dunbar60baf0f2010-07-19 17:11:36 +0000193 void AddDeploymentTarget(DerivedArgList &Args) const;
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000194
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000195public:
Rafael Espindolaaf370e62013-03-18 18:10:27 +0000196 Darwin(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbarf3955282009-09-04 18:34:51 +0000197 ~Darwin();
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000198
Chad Rosier61ab80a2011-09-20 20:44:06 +0000199 std::string ComputeEffectiveClangTriple(const ArgList &Args,
200 types::ID InputType) const;
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000201
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000202 /// @name Darwin Specific Toolchain API
203 /// {
204
Daniel Dunbar26031372010-01-27 00:56:25 +0000205 // FIXME: Eliminate these ...Target functions and derive separate tool chains
206 // for these targets and put version in constructor.
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000207 void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor,
208 unsigned Micro, bool IsIOSSim) const {
209 assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!");
210
Daniel Dunbar26031372010-01-27 00:56:25 +0000211 // FIXME: For now, allow reinitialization as long as values don't
212 // change. This will go away when we move away from argument translation.
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000213 if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS &&
214 TargetIsIPhoneOSSimulator == IsIOSSim &&
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000215 TargetVersion == VersionTuple(Major, Minor, Micro))
Daniel Dunbar26031372010-01-27 00:56:25 +0000216 return;
217
218 assert(!TargetInitialized && "Target already initialized!");
219 TargetInitialized = true;
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000220 TargetIsIPhoneOS = IsIPhoneOS;
221 TargetIsIPhoneOSSimulator = IsIOSSim;
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000222 TargetVersion = VersionTuple(Major, Minor, Micro);
Daniel Dunbar26031372010-01-27 00:56:25 +0000223 }
224
225 bool isTargetIPhoneOS() const {
226 assert(TargetInitialized && "Target not initialized!");
227 return TargetIsIPhoneOS;
228 }
229
Daniel Dunbar40355802011-03-31 17:12:33 +0000230 bool isTargetIOSSimulator() const {
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000231 assert(TargetInitialized && "Target not initialized!");
232 return TargetIsIPhoneOSSimulator;
Daniel Dunbar40355802011-03-31 17:12:33 +0000233 }
234
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000235 bool isTargetMacOS() const {
Bob Wilson377e5c12012-11-09 01:59:30 +0000236 return !isTargetIOSSimulator() && !isTargetIPhoneOS();
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000237 }
238
Daniel Dunbar03d87ee2010-03-20 00:50:21 +0000239 bool isTargetInitialized() const { return TargetInitialized; }
240
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000241 VersionTuple getTargetVersion() const {
Daniel Dunbar26031372010-01-27 00:56:25 +0000242 assert(TargetInitialized && "Target not initialized!");
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000243 return TargetVersion;
Daniel Dunbar26031372010-01-27 00:56:25 +0000244 }
245
Daniel Dunbareeff4062010-01-22 02:04:58 +0000246 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
247 /// invocation. For example, Darwin treats different ARM variations as
248 /// distinct architectures.
Chris Lattner686775d2011-07-20 06:58:45 +0000249 StringRef getDarwinArchName(const ArgList &Args) const;
Daniel Dunbareeff4062010-01-22 02:04:58 +0000250
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000251 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
252 assert(isTargetIPhoneOS() && "Unexpected call for OS X target!");
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000253 return TargetVersion < VersionTuple(V0, V1, V2);
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000254 }
255
256 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
257 assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!");
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000258 return TargetVersion < VersionTuple(V0, V1, V2);
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000259 }
260
John McCallf85e1932011-06-15 23:02:42 +0000261 /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library.
262 virtual void AddLinkARCArgs(const ArgList &Args,
263 ArgStringList &CmdArgs) const = 0;
264
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000265 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
266 /// runtime library.
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000267 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
268 ArgStringList &CmdArgs) const = 0;
Eric Christopher3404fe72011-06-22 17:41:40 +0000269
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000270 /// }
271 /// @name ToolChain Implementation
272 /// {
273
Daniel Dunbar41800112010-08-02 05:43:56 +0000274 virtual types::ID LookupTypeForExtension(const char *Ext) const;
275
Daniel Dunbarb993f5d2010-09-17 00:24:52 +0000276 virtual bool HasNativeLLVMSupport() const;
277
John McCall260611a2012-06-20 06:18:46 +0000278 virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const;
John McCall13db5cf2011-09-09 20:41:01 +0000279 virtual bool hasBlocksRuntime() const;
John McCallf85e1932011-06-15 23:02:42 +0000280
Daniel Dunbar279c1db2010-06-11 22:00:26 +0000281 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Daniel Dunbar0dcb9a32009-09-09 18:36:12 +0000282 const char *BoundArch) const;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000283
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000284 virtual bool IsBlocksDefault() const {
Daniel Dunbaref44a5d2010-07-22 00:40:31 +0000285 // Always allow blocks on Darwin; users interested in versioning are
286 // expected to use /usr/include/Blocks.h.
287 return true;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000288 }
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000289 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000290#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
291 return false;
292#else
Jim Grosbach033d3002012-02-27 23:55:25 +0000293 // Default integrated assembler to on for Darwin.
294 return true;
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000295#endif
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000296 }
Daniel Dunbar398c6102011-02-04 02:20:39 +0000297 virtual bool IsStrictAliasingDefault() const {
298#ifdef DISABLE_DEFAULT_STRICT_ALIASING
299 return false;
300#else
301 return ToolChain::IsStrictAliasingDefault();
302#endif
303 }
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000304
305 virtual bool IsMathErrnoDefault() const {
306 return false;
307 }
308
Fariborz Jahanian3d145f62012-11-15 19:02:45 +0000309 virtual bool IsEncodeExtendedBlockSignatureDefault() const {
310 return true;
311 }
312
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000313 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000314 // Non-fragile ABI is default for everything but i386.
315 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000316 }
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000317
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000318 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000319 // This is only used with the non-fragile ABI and non-legacy dispatch.
320
321 // Mixed dispatch is used everywhere except OS X before 10.6.
322 return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6));
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000323 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000324 virtual bool IsUnwindTablesDefault() const;
Nico Weber2fef1112011-08-23 07:38:27 +0000325 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
326 // Stack protectors default to on for user code on 10.5,
327 // and for everything in 10.6 and beyond
Bob Wilsondfba0272011-12-14 06:08:25 +0000328 return isTargetIPhoneOS() ||
Nico Weber2fef1112011-08-23 07:38:27 +0000329 (!isMacosxVersionLT(10, 6) ||
330 (!isMacosxVersionLT(10, 5) && !KernelOrKext));
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000331 }
Daniel Dunbarc24767c2011-12-07 23:03:15 +0000332 virtual RuntimeLibType GetDefaultRuntimeLibType() const {
333 return ToolChain::RLT_CompilerRT;
334 }
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000335 virtual bool isPICDefault() const;
Peter Collingbourne52ca70d2013-04-09 04:35:11 +0000336 virtual bool isPIEDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000337 virtual bool isPICDefaultForced() const;
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000338
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000339 virtual bool SupportsProfiling() const;
340
Daniel Dunbar43a9b322010-04-10 16:20:23 +0000341 virtual bool SupportsObjCGC() const;
342
John McCall0a7dd782012-08-21 02:47:43 +0000343 virtual void CheckObjCARC() const;
Argyrios Kyrtzidis5840dd92012-02-29 03:43:52 +0000344
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000345 virtual bool UseDwarfDebugFlags() const;
346
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000347 virtual bool UseSjLjExceptions() const;
348
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000349 /// }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000350};
351
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000352/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sands92dd1912010-05-11 20:16:05 +0000353class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000354public:
Rafael Espindolaaf370e62013-03-18 18:10:27 +0000355 DarwinClang(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000356
357 /// @name Darwin ToolChain Implementation
358 /// {
359
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000360 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
361 ArgStringList &CmdArgs) const;
Alexey Samsonov69b77d72012-11-21 14:17:42 +0000362 void AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs,
363 const char *DarwinStaticLib,
364 bool AlwaysLink = false) const;
365
Daniel Dunbar132e35d2010-09-17 01:20:05 +0000366 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
367 ArgStringList &CmdArgs) const;
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000368
Shantonu Sen7433fed2010-09-17 18:39:08 +0000369 virtual void AddCCKextLibArgs(const ArgList &Args,
370 ArgStringList &CmdArgs) const;
371
John McCallf85e1932011-06-15 23:02:42 +0000372 virtual void AddLinkARCArgs(const ArgList &Args,
373 ArgStringList &CmdArgs) const;
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000374 /// }
375};
376
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000377/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sands92dd1912010-05-11 20:16:05 +0000378class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000379public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000380 Darwin_Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
381 : Generic_GCC(D, Triple, Args) {}
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000382
Chad Rosier61ab80a2011-09-20 20:44:06 +0000383 std::string ComputeEffectiveClangTriple(const ArgList &Args,
384 types::ID InputType) const;
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000385
Chad Rosierf8fc6272012-11-27 17:31:26 +0000386 virtual bool isPICDefault() const { return false; }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000387};
388
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000389class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {
David Blaikie99ba9e32011-12-20 02:48:34 +0000390 virtual void anchor();
391public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000392 Generic_ELF(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
393 : Generic_GCC(D, Triple, Args) {}
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000394
395 virtual bool IsIntegratedAssemblerDefault() const {
396 // Default integrated assembler to on for x86.
Tim Northoverc264e162013-01-31 12:13:10 +0000397 return (getTriple().getArch() == llvm::Triple::aarch64 ||
398 getTriple().getArch() == llvm::Triple::x86 ||
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000399 getTriple().getArch() == llvm::Triple::x86_64);
400 }
401};
402
Duncan Sands92dd1912010-05-11 20:16:05 +0000403class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000404public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000405 AuroraUX(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000406
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000407protected:
408 virtual Tool *buildAssembler() const;
409 virtual Tool *buildLinker() const;
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000410};
411
David Chisnall31c46902012-02-15 13:39:01 +0000412class LLVM_LIBRARY_VISIBILITY Solaris : public Generic_GCC {
413public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000414 Solaris(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
David Chisnall31c46902012-02-15 13:39:01 +0000415
David Chisnall31c46902012-02-15 13:39:01 +0000416 virtual bool IsIntegratedAssemblerDefault() const { return true; }
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000417protected:
418 virtual Tool *buildAssembler() const;
419 virtual Tool *buildLinker() const;
420
David Chisnall31c46902012-02-15 13:39:01 +0000421};
422
423
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000424class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF {
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000425public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000426 OpenBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000427
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000428 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000429 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000430
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000431protected:
432 virtual Tool *buildAssembler() const;
433 virtual Tool *buildLinker() const;
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000434};
435
Eli Friedman42f74f22012-08-08 23:57:20 +0000436class LLVM_LIBRARY_VISIBILITY Bitrig : public Generic_ELF {
437public:
438 Bitrig(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
439
440 virtual bool IsMathErrnoDefault() const { return false; }
441 virtual bool IsObjCNonFragileABIDefault() const { return true; }
442 virtual bool IsObjCLegacyDispatchDefault() const { return false; }
443
Eli Friedman42f74f22012-08-08 23:57:20 +0000444 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
445 ArgStringList &CC1Args) const;
446 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
447 ArgStringList &CmdArgs) const;
448 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
449 return 1;
450 }
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000451
452protected:
453 virtual Tool *buildAssembler() const;
454 virtual Tool *buildLinker() const;
Eli Friedman42f74f22012-08-08 23:57:20 +0000455};
456
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000457class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF {
Daniel Dunbar75358d22009-03-30 21:06:03 +0000458public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000459 FreeBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbar75358d22009-03-30 21:06:03 +0000460
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000461 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000462 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000463
Rafael Espindola27fa2362012-12-13 04:17:14 +0000464 virtual bool UseSjLjExceptions() const;
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000465protected:
466 virtual Tool *buildAssembler() const;
467 virtual Tool *buildLinker() const;
Daniel Dunbar75358d22009-03-30 21:06:03 +0000468};
469
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000470class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
471public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000472 NetBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000473
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000474 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000475 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000476
Joerg Sonnenbergera7efaf92013-04-30 01:21:43 +0000477 virtual CXXStdlibType GetCXXStdlibType(const ArgList &Args) const;
478
479 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
480 ArgStringList &CC1Args) const;
481
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000482protected:
483 virtual Tool *buildAssembler() const;
484 virtual Tool *buildLinker() const;
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000485};
486
Eli Friedman6d402dc2011-12-08 23:54:21 +0000487class LLVM_LIBRARY_VISIBILITY Minix : public Generic_ELF {
Chris Lattner38e317d2010-07-07 16:01:42 +0000488public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000489 Minix(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Chris Lattner38e317d2010-07-07 16:01:42 +0000490
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000491protected:
492 virtual Tool *buildAssembler() const;
493 virtual Tool *buildLinker() const;
Chris Lattner38e317d2010-07-07 16:01:42 +0000494};
495
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000496class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000497public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000498 DragonFly(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000499
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000500 virtual bool IsMathErrnoDefault() const { return false; }
501
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000502protected:
503 virtual Tool *buildAssembler() const;
504 virtual Tool *buildLinker() const;
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000505};
506
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000507class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF {
Eli Friedman6b3454a2009-05-26 07:52:18 +0000508public:
Rafael Espindola0e659592012-02-19 01:38:32 +0000509 Linux(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Rafael Espindolaba30bbe2010-08-10 00:25:48 +0000510
Rafael Espindolac1da9812010-11-07 20:14:31 +0000511 virtual bool HasNativeLLVMSupport() const;
512
Chandler Carruth7d7e9f92011-11-05 20:17:13 +0000513 virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs,
514 ArgStringList &CC1Args) const;
Chandler Carrutha6b25812012-11-21 23:40:23 +0000515 virtual void addClangTargetOptions(const ArgList &DriverArgs,
516 ArgStringList &CC1Args) const;
Chandler Carruth7d7e9f92011-11-05 20:17:13 +0000517 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
518 ArgStringList &CC1Args) const;
Peter Collingbourne52ca70d2013-04-09 04:35:11 +0000519 virtual bool isPIEDefault() const;
Chandler Carruth7d7e9f92011-11-05 20:17:13 +0000520
Rafael Espindolac1da9812010-11-07 20:14:31 +0000521 std::string Linker;
522 std::vector<std::string> ExtraOpts;
Peter Collingbourne52ca70d2013-04-09 04:35:11 +0000523 bool IsPIEDefault;
Chandler Carruth79cbbdc2011-12-17 23:10:01 +0000524
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000525protected:
526 virtual Tool *buildAssembler() const;
527 virtual Tool *buildLinker() const;
528
Chandler Carruth79cbbdc2011-12-17 23:10:01 +0000529private:
Dmitri Gribenkof2e7c352013-03-06 17:14:05 +0000530 static bool addLibStdCXXIncludePaths(Twine Base, Twine Suffix,
531 Twine TargetArchDir,
532 Twine MultiLibSuffix,
533 const ArgList &DriverArgs,
534 ArgStringList &CC1Args);
Chandler Carruth79cbbdc2011-12-17 23:10:01 +0000535 static bool addLibStdCXXIncludePaths(Twine Base, Twine TargetArchDir,
536 const ArgList &DriverArgs,
537 ArgStringList &CC1Args);
Simon Atanasyan8e8e95c2013-04-20 08:15:03 +0000538
539 std::string computeSysRoot(const ArgList &Args) const;
Eli Friedman6b3454a2009-05-26 07:52:18 +0000540};
541
Matthew Curtisb3489a02012-12-06 12:43:18 +0000542class LLVM_LIBRARY_VISIBILITY Hexagon_TC : public Linux {
543protected:
Matthew Curtisb3489a02012-12-06 12:43:18 +0000544 GCCVersion GCCLibAndIncVersion;
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000545 virtual Tool *buildAssembler() const;
546 virtual Tool *buildLinker() const;
Matthew Curtisb3489a02012-12-06 12:43:18 +0000547
548public:
549 Hexagon_TC(const Driver &D, const llvm::Triple &Triple,
550 const ArgList &Args);
551 ~Hexagon_TC();
552
Matthew Curtisb3489a02012-12-06 12:43:18 +0000553 virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs,
554 ArgStringList &CC1Args) const;
555 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
556 ArgStringList &CC1Args) const;
Matthew Curtis5fdf3502012-12-06 15:46:07 +0000557 virtual CXXStdlibType GetCXXStdlibType(const ArgList &Args) const;
Matthew Curtisb3489a02012-12-06 12:43:18 +0000558
559 StringRef GetGCCLibAndIncVersion() const { return GCCLibAndIncVersion.Text; }
560
561 static std::string GetGnuDir(const std::string &InstalledDir);
Matthew Curtis67814152012-12-06 14:16:43 +0000562
563 static StringRef GetTargetCPU(const ArgList &Args);
Matthew Curtisb3489a02012-12-06 12:43:18 +0000564};
Eli Friedman6b3454a2009-05-26 07:52:18 +0000565
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000566/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
567/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sands92dd1912010-05-11 20:16:05 +0000568class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000569public:
Rafael Espindolaaf370e62013-03-18 18:10:27 +0000570 TCEToolChain(const Driver &D, const llvm::Triple& Triple,
571 const ArgList &Args);
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000572 ~TCEToolChain();
573
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000574 bool IsMathErrnoDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000575 bool isPICDefault() const;
Peter Collingbourne52ca70d2013-04-09 04:35:11 +0000576 bool isPIEDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000577 bool isPICDefaultForced() const;
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000578};
579
Michael J. Spencerff58e362010-08-21 21:55:07 +0000580class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain {
Michael J. Spencerff58e362010-08-21 21:55:07 +0000581public:
Rafael Espindolaaf370e62013-03-18 18:10:27 +0000582 Windows(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Michael J. Spencerff58e362010-08-21 21:55:07 +0000583
Michael J. Spencerff58e362010-08-21 21:55:07 +0000584 virtual bool IsIntegratedAssemblerDefault() const;
585 virtual bool IsUnwindTablesDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000586 virtual bool isPICDefault() const;
Peter Collingbourne52ca70d2013-04-09 04:35:11 +0000587 virtual bool isPIEDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000588 virtual bool isPICDefaultForced() const;
Chandler Carruthca234192011-11-04 23:49:05 +0000589
590 virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs,
591 ArgStringList &CC1Args) const;
592 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
593 ArgStringList &CC1Args) const;
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000594protected:
595 virtual Tool *buildLinker() const;
596 virtual Tool *buildAssembler() const;
Michael J. Spencerff58e362010-08-21 21:55:07 +0000597};
598
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000599} // end namespace toolchains
600} // end namespace driver
601} // end namespace clang
602
603#endif