blob: 3421c53eb236681dbba01671640e7b89ea8e8d84 [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
Chandler Carruth3a022472012-12-04 09:13:33 +000013#include "Tools.h"
14#include "clang/Basic/VersionTuple.h"
Daniel Dunbar04cb0292009-03-17 22:07:31 +000015#include "clang/Driver/Action.h"
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000016#include "clang/Driver/ToolChain.h"
Daniel Dunbar04cb0292009-03-17 22:07:31 +000017#include "llvm/ADT/DenseMap.h"
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000018#include "llvm/Support/Compiler.h"
19
20namespace clang {
21namespace driver {
Daniel Dunbar15abb2e2009-03-17 22:18:43 +000022namespace toolchains {
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000023
Daniel Dunbar6276f992009-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 Sandsaf260b92010-05-11 20:16:05 +000027class LLVM_LIBRARY_VISIBILITY Generic_GCC : public ToolChain {
Daniel Dunbare24297c2009-03-30 21:06:03 +000028protected:
Chandler Carruth4c90fba2011-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 Carruth4d9d7682012-01-24 19:28:29 +000071 llvm::Triple GCCTriple;
Chandler Carruth4c90fba2011-11-06 23:39:34 +000072
73 // FIXME: These might be better as path objects.
Chandler Carruth64cee062012-01-24 19:21:42 +000074 std::string GCCInstallPath;
Chandler Carruth866faab2012-01-25 07:21:38 +000075 std::string GCCMultiarchSuffix;
Chandler Carruth64cee062012-01-24 19:21:42 +000076 std::string GCCParentLibPath;
Chandler Carruth4c90fba2011-11-06 23:39:34 +000077
78 GCCVersion Version;
79
80 public:
Rafael Espindola1af7c212012-02-19 01:38:32 +000081 GCCInstallationDetector(const Driver &D, const llvm::Triple &TargetTriple,
82 const ArgList &Args);
Chandler Carruth4c90fba2011-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 Carruth4d9d7682012-01-24 19:28:29 +000088 const llvm::Triple &getTriple() const { return GCCTriple; }
Chandler Carruth4c90fba2011-11-06 23:39:34 +000089
90 /// \brief Get the detected GCC installation path.
Chandler Carruth64cee062012-01-24 19:21:42 +000091 StringRef getInstallPath() const { return GCCInstallPath; }
Chandler Carruth4c90fba2011-11-06 23:39:34 +000092
Chandler Carruth866faab2012-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 Carruth4c90fba2011-11-06 23:39:34 +000096 /// \brief Get the detected GCC parent lib path.
Chandler Carruth64cee062012-01-24 19:21:42 +000097 StringRef getParentLibPath() const { return GCCParentLibPath; }
Chandler Carruth4c90fba2011-11-06 23:39:34 +000098
99 /// \brief Get the detected GCC version string.
Rafael Espindola66aa0452012-06-19 01:26:10 +0000100 const GCCVersion &getVersion() const { return Version; }
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000101
102 private:
Chandler Carruth866faab2012-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 Carruth4c90fba2011-11-06 23:39:34 +0000110
Chandler Carruth866faab2012-01-25 07:21:38 +0000111 void ScanLibDirForGCCTriple(llvm::Triple::ArchType TargetArch,
Simon Atanasyan2d1b1ad2012-10-21 11:44:57 +0000112 const ArgList &Args,
Chandler Carruth6e46ca22011-11-09 03:46:20 +0000113 const std::string &LibDir,
Chandler Carruth866faab2012-01-25 07:21:38 +0000114 StringRef CandidateTriple,
115 bool NeedsMultiarchSuffix = false);
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000116 };
117
118 GCCInstallationDetector GCCInstallation;
119
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000120public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000121 Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbar59e5e882009-03-20 00:20:03 +0000122 ~Generic_GCC();
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000123
Daniel Dunbar59e5e882009-03-20 00:20:03 +0000124 virtual bool IsUnwindTablesDefault() const;
Chandler Carruth76a943b2012-11-19 03:52:03 +0000125 virtual bool isPICDefault() const;
126 virtual bool isPICDefaultForced() const;
Chandler Carruthefad16a2011-11-06 23:39:37 +0000127
128protected:
Rafael Espindola7cf32212013-03-20 03:05:54 +0000129 virtual Tool *getTool(Action::ActionClass AC) const;
130 virtual Tool *buildAssembler() const;
131 virtual Tool *buildLinker() const;
132
Chandler Carruthefad16a2011-11-06 23:39:37 +0000133 /// \name ToolChain Implementation Helper Functions
134 /// @{
135
136 /// \brief Check whether the target triple's architecture is 64-bits.
Chandler Carruth9b5f8dd2012-02-11 03:31:12 +0000137 bool isTarget64Bit() const { return getTriple().isArch64Bit(); }
138
Chandler Carruthefad16a2011-11-06 23:39:37 +0000139 /// \brief Check whether the target triple's architecture is 32-bits.
Chandler Carruth9b5f8dd2012-02-11 03:31:12 +0000140 bool isTarget32Bit() const { return getTriple().isArch32Bit(); }
Chandler Carruthefad16a2011-11-06 23:39:37 +0000141
142 /// @}
Rafael Espindola7cf32212013-03-20 03:05:54 +0000143
144private:
145 mutable OwningPtr<tools::gcc::Preprocess> Preprocess;
146 mutable OwningPtr<tools::gcc::Precompile> Precompile;
147 mutable OwningPtr<tools::gcc::Compile> Compile;
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000148};
149
Tony Linthicum76329bf2011-12-12 21:14:55 +0000150 /// Darwin - The base Darwin tool chain.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000151class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain {
Daniel Dunbar71c723d2010-08-02 05:44:07 +0000152public:
153 /// The host version.
154 unsigned DarwinVersion[3];
155
Rafael Espindola7cf32212013-03-20 03:05:54 +0000156protected:
157 virtual Tool *buildAssembler() const;
158 virtual Tool *buildLinker() const;
159 virtual Tool *getTool(Action::ActionClass AC) const;
160
Daniel Dunbar71c723d2010-08-02 05:44:07 +0000161private:
Rafael Espindola7cf32212013-03-20 03:05:54 +0000162 mutable OwningPtr<tools::darwin::Lipo> Lipo;
163 mutable OwningPtr<tools::darwin::Dsymutil> Dsymutil;
164 mutable OwningPtr<tools::darwin::VerifyDebug> VerifyDebug;
165
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000166 /// Whether the information on the target has been initialized.
167 //
168 // FIXME: This should be eliminated. What we want to do is make this part of
169 // the "default target for arguments" selection process, once we get out of
170 // the argument translation business.
171 mutable bool TargetInitialized;
172
Chris Lattner57540c52011-04-15 05:22:18 +0000173 /// Whether we are targeting iPhoneOS target.
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000174 mutable bool TargetIsIPhoneOS;
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000175
Daniel Dunbarb1189432011-04-30 04:18:16 +0000176 /// Whether we are targeting the iPhoneOS simulator target.
177 mutable bool TargetIsIPhoneOSSimulator;
178
Chris Lattner57540c52011-04-15 05:22:18 +0000179 /// The OS version we are targeting.
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000180 mutable VersionTuple TargetVersion;
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000181
John McCall5fb5df92012-06-20 06:18:46 +0000182private:
Daniel Dunbarc1964212009-03-26 16:23:12 +0000183 /// The default macosx-version-min of this tool chain; empty until
184 /// initialized.
Daniel Dunbard54669d2010-01-26 01:45:19 +0000185 std::string MacosxVersionMin;
Daniel Dunbarc1964212009-03-26 16:23:12 +0000186
Chad Rosier6037c6b2012-05-09 18:37:26 +0000187 /// The default ios-version-min of this tool chain; empty until
188 /// initialized.
189 std::string iOSVersionMin;
190
Daniel Dunbarb2b8a912010-07-19 17:11:33 +0000191private:
Daniel Dunbar354e96d2010-07-19 17:11:36 +0000192 void AddDeploymentTarget(DerivedArgList &Args) const;
Daniel Dunbarb2b8a912010-07-19 17:11:33 +0000193
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000194public:
Rafael Espindola84b588b2013-03-18 18:10:27 +0000195 Darwin(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbarf0a5b9b2009-09-04 18:34:51 +0000196 ~Darwin();
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000197
Chad Rosierd3a0f952011-09-20 20:44:06 +0000198 std::string ComputeEffectiveClangTriple(const ArgList &Args,
199 types::ID InputType) const;
Daniel Dunbar82eb4ce2010-08-23 22:35:37 +0000200
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000201 /// @name Darwin Specific Toolchain API
202 /// {
203
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000204 // FIXME: Eliminate these ...Target functions and derive separate tool chains
205 // for these targets and put version in constructor.
Daniel Dunbarb1189432011-04-30 04:18:16 +0000206 void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor,
207 unsigned Micro, bool IsIOSSim) const {
208 assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!");
209
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000210 // FIXME: For now, allow reinitialization as long as values don't
211 // change. This will go away when we move away from argument translation.
Daniel Dunbarb1189432011-04-30 04:18:16 +0000212 if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS &&
213 TargetIsIPhoneOSSimulator == IsIOSSim &&
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000214 TargetVersion == VersionTuple(Major, Minor, Micro))
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000215 return;
216
217 assert(!TargetInitialized && "Target already initialized!");
218 TargetInitialized = true;
Daniel Dunbarb1189432011-04-30 04:18:16 +0000219 TargetIsIPhoneOS = IsIPhoneOS;
220 TargetIsIPhoneOSSimulator = IsIOSSim;
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000221 TargetVersion = VersionTuple(Major, Minor, Micro);
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000222 }
223
224 bool isTargetIPhoneOS() const {
225 assert(TargetInitialized && "Target not initialized!");
226 return TargetIsIPhoneOS;
227 }
228
Daniel Dunbarebc34df2011-03-31 17:12:33 +0000229 bool isTargetIOSSimulator() const {
Daniel Dunbarb1189432011-04-30 04:18:16 +0000230 assert(TargetInitialized && "Target not initialized!");
231 return TargetIsIPhoneOSSimulator;
Daniel Dunbarebc34df2011-03-31 17:12:33 +0000232 }
233
Ted Kremeneke65b0862012-03-06 20:05:56 +0000234 bool isTargetMacOS() const {
Bob Wilson5ad5a952012-11-09 01:59:30 +0000235 return !isTargetIOSSimulator() && !isTargetIPhoneOS();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000236 }
237
Daniel Dunbar47d25b12010-03-20 00:50:21 +0000238 bool isTargetInitialized() const { return TargetInitialized; }
239
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000240 VersionTuple getTargetVersion() const {
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000241 assert(TargetInitialized && "Target not initialized!");
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000242 return TargetVersion;
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000243 }
244
Daniel Dunbardcc3b652010-01-22 02:04:58 +0000245 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
246 /// invocation. For example, Darwin treats different ARM variations as
247 /// distinct architectures.
Chris Lattner01cf8db2011-07-20 06:58:45 +0000248 StringRef getDarwinArchName(const ArgList &Args) const;
Daniel Dunbardcc3b652010-01-22 02:04:58 +0000249
Daniel Dunbar83608032010-01-27 00:56:56 +0000250 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
251 assert(isTargetIPhoneOS() && "Unexpected call for OS X target!");
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000252 return TargetVersion < VersionTuple(V0, V1, V2);
Daniel Dunbar6d23b2f2010-01-27 00:57:03 +0000253 }
254
255 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
256 assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!");
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000257 return TargetVersion < VersionTuple(V0, V1, V2);
Daniel Dunbar83608032010-01-27 00:56:56 +0000258 }
259
John McCall31168b02011-06-15 23:02:42 +0000260 /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library.
261 virtual void AddLinkARCArgs(const ArgList &Args,
262 ArgStringList &CmdArgs) const = 0;
263
Daniel Dunbar26d482a2009-09-18 08:15:03 +0000264 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
265 /// runtime library.
Daniel Dunbar6276f992009-09-18 08:15:13 +0000266 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
267 ArgStringList &CmdArgs) const = 0;
Eric Christopherc235d0c62011-06-22 17:41:40 +0000268
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000269 /// }
270 /// @name ToolChain Implementation
271 /// {
272
Daniel Dunbarcc7df6c2010-08-02 05:43:56 +0000273 virtual types::ID LookupTypeForExtension(const char *Ext) const;
274
Daniel Dunbar62123a12010-09-17 00:24:52 +0000275 virtual bool HasNativeLLVMSupport() const;
276
John McCall5fb5df92012-06-20 06:18:46 +0000277 virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const;
John McCall7959fee2011-09-09 20:41:01 +0000278 virtual bool hasBlocksRuntime() const;
John McCall31168b02011-06-15 23:02:42 +0000279
Daniel Dunbar775d4062010-06-11 22:00:26 +0000280 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Daniel Dunbare7af3412009-09-09 18:36:12 +0000281 const char *BoundArch) const;
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000282
Daniel Dunbar4930e332009-11-17 08:07:36 +0000283 virtual bool IsBlocksDefault() const {
Daniel Dunbara66a4d12010-07-22 00:40:31 +0000284 // Always allow blocks on Darwin; users interested in versioning are
285 // expected to use /usr/include/Blocks.h.
286 return true;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000287 }
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000288 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbara99a3c12010-06-23 18:15:13 +0000289#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
290 return false;
291#else
Jim Grosbach2e166242012-02-27 23:55:25 +0000292 // Default integrated assembler to on for Darwin.
293 return true;
Daniel Dunbara99a3c12010-06-23 18:15:13 +0000294#endif
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000295 }
Daniel Dunbar7aa71f92011-02-04 02:20:39 +0000296 virtual bool IsStrictAliasingDefault() const {
297#ifdef DISABLE_DEFAULT_STRICT_ALIASING
298 return false;
299#else
300 return ToolChain::IsStrictAliasingDefault();
301#endif
302 }
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000303
304 virtual bool IsMathErrnoDefault() const {
305 return false;
306 }
307
Fariborz Jahanian0e3043b2012-11-15 19:02:45 +0000308 virtual bool IsEncodeExtendedBlockSignatureDefault() const {
309 return true;
310 }
311
Daniel Dunbar4930e332009-11-17 08:07:36 +0000312 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000313 // Non-fragile ABI is default for everything but i386.
314 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000315 }
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000316
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +0000317 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000318 // This is only used with the non-fragile ABI and non-legacy dispatch.
319
320 // Mixed dispatch is used everywhere except OS X before 10.6.
321 return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6));
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +0000322 }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000323 virtual bool IsUnwindTablesDefault() const;
Nico Weberdd473632011-08-23 07:38:27 +0000324 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
325 // Stack protectors default to on for user code on 10.5,
326 // and for everything in 10.6 and beyond
Bob Wilson721d4b82011-12-14 06:08:25 +0000327 return isTargetIPhoneOS() ||
Nico Weberdd473632011-08-23 07:38:27 +0000328 (!isMacosxVersionLT(10, 6) ||
329 (!isMacosxVersionLT(10, 5) && !KernelOrKext));
Daniel Dunbar4930e332009-11-17 08:07:36 +0000330 }
Daniel Dunbarf4916cd2011-12-07 23:03:15 +0000331 virtual RuntimeLibType GetDefaultRuntimeLibType() const {
332 return ToolChain::RLT_CompilerRT;
333 }
Chandler Carruth76a943b2012-11-19 03:52:03 +0000334 virtual bool isPICDefault() const;
335 virtual bool isPICDefaultForced() const;
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000336
Daniel Dunbar733b0f82011-03-01 18:49:30 +0000337 virtual bool SupportsProfiling() const;
338
Daniel Dunbar16334e12010-04-10 16:20:23 +0000339 virtual bool SupportsObjCGC() const;
340
John McCall3deb1ad2012-08-21 02:47:43 +0000341 virtual void CheckObjCARC() const;
Argyrios Kyrtzidis3dbeb552012-02-29 03:43:52 +0000342
Daniel Dunbar24c7f5e2009-12-18 02:43:17 +0000343 virtual bool UseDwarfDebugFlags() const;
344
Daniel Dunbar3241d402010-02-10 18:49:11 +0000345 virtual bool UseSjLjExceptions() const;
346
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000347 /// }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000348};
349
Daniel Dunbar6276f992009-09-18 08:15:13 +0000350/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000351class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000352public:
Rafael Espindola84b588b2013-03-18 18:10:27 +0000353 DarwinClang(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbar6276f992009-09-18 08:15:13 +0000354
355 /// @name Darwin ToolChain Implementation
356 /// {
357
Daniel Dunbar6276f992009-09-18 08:15:13 +0000358 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
359 ArgStringList &CmdArgs) const;
Alexey Samsonov8368b372012-11-21 14:17:42 +0000360 void AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs,
361 const char *DarwinStaticLib,
362 bool AlwaysLink = false) const;
363
Daniel Dunbar3f7796f2010-09-17 01:20:05 +0000364 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
365 ArgStringList &CmdArgs) const;
Daniel Dunbar8fa86b12010-09-17 01:16:06 +0000366
Shantonu Senafeb03b2010-09-17 18:39:08 +0000367 virtual void AddCCKextLibArgs(const ArgList &Args,
368 ArgStringList &CmdArgs) const;
369
John McCall31168b02011-06-15 23:02:42 +0000370 virtual void AddLinkARCArgs(const ArgList &Args,
371 ArgStringList &CmdArgs) const;
Daniel Dunbar6276f992009-09-18 08:15:13 +0000372 /// }
373};
374
Daniel Dunbar6276f992009-09-18 08:15:13 +0000375/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000376class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar6276f992009-09-18 08:15:13 +0000377public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000378 Darwin_Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
379 : Generic_GCC(D, Triple, Args) {}
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000380
Chad Rosierd3a0f952011-09-20 20:44:06 +0000381 std::string ComputeEffectiveClangTriple(const ArgList &Args,
382 types::ID InputType) const;
Daniel Dunbar82eb4ce2010-08-23 22:35:37 +0000383
Chad Rosier546c2612012-11-27 17:31:26 +0000384 virtual bool isPICDefault() const { return false; }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000385};
386
Rafael Espindolaacc87092010-10-29 20:14:02 +0000387class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {
David Blaikie68e081d2011-12-20 02:48:34 +0000388 virtual void anchor();
389public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000390 Generic_ELF(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
391 : Generic_GCC(D, Triple, Args) {}
Rafael Espindolaacc87092010-10-29 20:14:02 +0000392
393 virtual bool IsIntegratedAssemblerDefault() const {
394 // Default integrated assembler to on for x86.
Tim Northover9bb857a2013-01-31 12:13:10 +0000395 return (getTriple().getArch() == llvm::Triple::aarch64 ||
396 getTriple().getArch() == llvm::Triple::x86 ||
Rafael Espindolaacc87092010-10-29 20:14:02 +0000397 getTriple().getArch() == llvm::Triple::x86_64);
398 }
399};
400
Duncan Sandsaf260b92010-05-11 20:16:05 +0000401class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000402public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000403 AuroraUX(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000404
Rafael Espindola7cf32212013-03-20 03:05:54 +0000405protected:
406 virtual Tool *buildAssembler() const;
407 virtual Tool *buildLinker() const;
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000408};
409
David Chisnallf571cde2012-02-15 13:39:01 +0000410class LLVM_LIBRARY_VISIBILITY Solaris : public Generic_GCC {
411public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000412 Solaris(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
David Chisnallf571cde2012-02-15 13:39:01 +0000413
David Chisnallf571cde2012-02-15 13:39:01 +0000414 virtual bool IsIntegratedAssemblerDefault() const { return true; }
Rafael Espindola7cf32212013-03-20 03:05:54 +0000415protected:
416 virtual Tool *buildAssembler() const;
417 virtual Tool *buildLinker() const;
418
David Chisnallf571cde2012-02-15 13:39:01 +0000419};
420
421
Rafael Espindolaacc87092010-10-29 20:14:02 +0000422class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF {
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000423public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000424 OpenBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000425
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000426 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000427 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000428
Rafael Espindola7cf32212013-03-20 03:05:54 +0000429protected:
430 virtual Tool *buildAssembler() const;
431 virtual Tool *buildLinker() const;
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000432};
433
Eli Friedman9fa28852012-08-08 23:57:20 +0000434class LLVM_LIBRARY_VISIBILITY Bitrig : public Generic_ELF {
435public:
436 Bitrig(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
437
438 virtual bool IsMathErrnoDefault() const { return false; }
439 virtual bool IsObjCNonFragileABIDefault() const { return true; }
440 virtual bool IsObjCLegacyDispatchDefault() const { return false; }
441
Eli Friedman9fa28852012-08-08 23:57:20 +0000442 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
443 ArgStringList &CC1Args) const;
444 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
445 ArgStringList &CmdArgs) const;
446 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
447 return 1;
448 }
Rafael Espindola7cf32212013-03-20 03:05:54 +0000449
450protected:
451 virtual Tool *buildAssembler() const;
452 virtual Tool *buildLinker() const;
Eli Friedman9fa28852012-08-08 23:57:20 +0000453};
454
Rafael Espindolaacc87092010-10-29 20:14:02 +0000455class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF {
Daniel Dunbare24297c2009-03-30 21:06:03 +0000456public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000457 FreeBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbare24297c2009-03-30 21:06:03 +0000458
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000459 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000460 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000461
Rafael Espindola0f207ed2012-12-13 04:17:14 +0000462 virtual bool UseSjLjExceptions() const;
Rafael Espindola7cf32212013-03-20 03:05:54 +0000463protected:
464 virtual Tool *buildAssembler() const;
465 virtual Tool *buildLinker() const;
Daniel Dunbare24297c2009-03-30 21:06:03 +0000466};
467
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000468class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
469public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000470 NetBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000471
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000472 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000473 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000474
Rafael Espindola7cf32212013-03-20 03:05:54 +0000475protected:
476 virtual Tool *buildAssembler() const;
477 virtual Tool *buildLinker() const;
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000478};
479
Eli Friedman83de5132011-12-08 23:54:21 +0000480class LLVM_LIBRARY_VISIBILITY Minix : public Generic_ELF {
Chris Lattner3e2ee142010-07-07 16:01:42 +0000481public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000482 Minix(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Chris Lattner3e2ee142010-07-07 16:01:42 +0000483
Rafael Espindola7cf32212013-03-20 03:05:54 +0000484protected:
485 virtual Tool *buildAssembler() const;
486 virtual Tool *buildLinker() const;
Chris Lattner3e2ee142010-07-07 16:01:42 +0000487};
488
Rafael Espindolaacc87092010-10-29 20:14:02 +0000489class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
Daniel Dunbarcc912342009-05-02 18:28:39 +0000490public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000491 DragonFly(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbarcc912342009-05-02 18:28:39 +0000492
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000493 virtual bool IsMathErrnoDefault() const { return false; }
494
Rafael Espindola7cf32212013-03-20 03:05:54 +0000495protected:
496 virtual Tool *buildAssembler() const;
497 virtual Tool *buildLinker() const;
Daniel Dunbarcc912342009-05-02 18:28:39 +0000498};
499
Rafael Espindolaacc87092010-10-29 20:14:02 +0000500class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF {
Eli Friedman5cd659f2009-05-26 07:52:18 +0000501public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000502 Linux(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Rafael Espindola92b00932010-08-10 00:25:48 +0000503
Rafael Espindolac8f008f2010-11-07 20:14:31 +0000504 virtual bool HasNativeLLVMSupport() const;
505
Chandler Carrutha796f532011-11-05 20:17:13 +0000506 virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs,
507 ArgStringList &CC1Args) const;
Chandler Carruth05fb5852012-11-21 23:40:23 +0000508 virtual void addClangTargetOptions(const ArgList &DriverArgs,
509 ArgStringList &CC1Args) const;
Chandler Carrutha796f532011-11-05 20:17:13 +0000510 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
511 ArgStringList &CC1Args) const;
512
Rafael Espindolac8f008f2010-11-07 20:14:31 +0000513 std::string Linker;
514 std::vector<std::string> ExtraOpts;
Chandler Carruth1fc603e2011-12-17 23:10:01 +0000515
Rafael Espindola7cf32212013-03-20 03:05:54 +0000516protected:
517 virtual Tool *buildAssembler() const;
518 virtual Tool *buildLinker() const;
519
Chandler Carruth1fc603e2011-12-17 23:10:01 +0000520private:
Dmitri Gribenko15225ae2013-03-06 17:14:05 +0000521 static bool addLibStdCXXIncludePaths(Twine Base, Twine Suffix,
522 Twine TargetArchDir,
523 Twine MultiLibSuffix,
524 const ArgList &DriverArgs,
525 ArgStringList &CC1Args);
Chandler Carruth1fc603e2011-12-17 23:10:01 +0000526 static bool addLibStdCXXIncludePaths(Twine Base, Twine TargetArchDir,
527 const ArgList &DriverArgs,
528 ArgStringList &CC1Args);
Eli Friedman5cd659f2009-05-26 07:52:18 +0000529};
530
Matthew Curtis22dd8da2012-12-06 12:43:18 +0000531class LLVM_LIBRARY_VISIBILITY Hexagon_TC : public Linux {
532protected:
Matthew Curtis22dd8da2012-12-06 12:43:18 +0000533 GCCVersion GCCLibAndIncVersion;
Rafael Espindola7cf32212013-03-20 03:05:54 +0000534 virtual Tool *buildAssembler() const;
535 virtual Tool *buildLinker() const;
Matthew Curtis22dd8da2012-12-06 12:43:18 +0000536
537public:
538 Hexagon_TC(const Driver &D, const llvm::Triple &Triple,
539 const ArgList &Args);
540 ~Hexagon_TC();
541
Matthew Curtis22dd8da2012-12-06 12:43:18 +0000542 virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs,
543 ArgStringList &CC1Args) const;
544 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
545 ArgStringList &CC1Args) const;
Matthew Curtise689b052012-12-06 15:46:07 +0000546 virtual CXXStdlibType GetCXXStdlibType(const ArgList &Args) const;
Matthew Curtis22dd8da2012-12-06 12:43:18 +0000547
548 StringRef GetGCCLibAndIncVersion() const { return GCCLibAndIncVersion.Text; }
549
550 static std::string GetGnuDir(const std::string &InstalledDir);
Matthew Curtisf10a5952012-12-06 14:16:43 +0000551
552 static StringRef GetTargetCPU(const ArgList &Args);
Matthew Curtis22dd8da2012-12-06 12:43:18 +0000553};
Eli Friedman5cd659f2009-05-26 07:52:18 +0000554
Chris Lattner09797542010-03-04 21:07:38 +0000555/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
556/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000557class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner09797542010-03-04 21:07:38 +0000558public:
Rafael Espindola84b588b2013-03-18 18:10:27 +0000559 TCEToolChain(const Driver &D, const llvm::Triple& Triple,
560 const ArgList &Args);
Chris Lattner09797542010-03-04 21:07:38 +0000561 ~TCEToolChain();
562
Chris Lattner09797542010-03-04 21:07:38 +0000563 bool IsMathErrnoDefault() const;
Chandler Carruth76a943b2012-11-19 03:52:03 +0000564 bool isPICDefault() const;
565 bool isPICDefaultForced() const;
Chris Lattner09797542010-03-04 21:07:38 +0000566};
567
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000568class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain {
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000569public:
Rafael Espindola84b588b2013-03-18 18:10:27 +0000570 Windows(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000571
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000572 virtual bool IsIntegratedAssemblerDefault() const;
573 virtual bool IsUnwindTablesDefault() const;
Chandler Carruth76a943b2012-11-19 03:52:03 +0000574 virtual bool isPICDefault() const;
575 virtual bool isPICDefaultForced() const;
Chandler Carruthdf527832011-11-04 23:49:05 +0000576
577 virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs,
578 ArgStringList &CC1Args) const;
579 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
580 ArgStringList &CC1Args) const;
Rafael Espindola7cf32212013-03-20 03:05:54 +0000581protected:
582 virtual Tool *buildLinker() const;
583 virtual Tool *buildAssembler() const;
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000584};
585
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000586} // end namespace toolchains
587} // end namespace driver
588} // end namespace clang
589
590#endif