blob: 52cc45687900a7856f9dcc49f52ccc9be7071375 [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"
Rafael Espindola8fb2a7e2013-06-11 20:06:05 +000019#include <vector>
Benjamin Kramera97e4d12013-08-14 18:38:51 +000020#include <set>
Rafael Espindola8fb2a7e2013-06-11 20:06:05 +000021
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000022namespace clang {
23namespace driver {
Daniel Dunbar15abb2e2009-03-17 22:18:43 +000024namespace toolchains {
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000025
Daniel Dunbar6276f992009-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 Sandsaf260b92010-05-11 20:16:05 +000029class LLVM_LIBRARY_VISIBILITY Generic_GCC : public ToolChain {
Daniel Dunbare24297c2009-03-30 21:06:03 +000030protected:
Chandler Carruth4c90fba2011-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
Chandler Carruth1f2b2f82013-08-26 08:59:53 +000053 /// \brief The text of the parsed major, and major+minor versions.
54 std::string MajorStr, MinorStr;
55
Chandler Carruth4c90fba2011-11-06 23:39:34 +000056 /// \brief Any textual suffix on the patch number.
57 std::string PatchSuffix;
58
59 static GCCVersion Parse(StringRef VersionText);
Benjamin Kramer604e8482013-08-09 17:17:48 +000060 bool isOlderThan(int RHSMajor, int RHSMinor, int RHSPatch,
61 StringRef RHSPatchSuffix = StringRef()) const;
62 bool operator<(const GCCVersion &RHS) const {
63 return isOlderThan(RHS.Major, RHS.Minor, RHS.Patch, RHS.PatchSuffix);
64 }
Chandler Carruth4c90fba2011-11-06 23:39:34 +000065 bool operator>(const GCCVersion &RHS) const { return RHS < *this; }
66 bool operator<=(const GCCVersion &RHS) const { return !(*this > RHS); }
67 bool operator>=(const GCCVersion &RHS) const { return !(*this < RHS); }
68 };
69
70
71 /// \brief This is a class to find a viable GCC installation for Clang to
72 /// use.
73 ///
74 /// This class tries to find a GCC installation on the system, and report
75 /// information about it. It starts from the host information provided to the
76 /// Driver, and has logic for fuzzing that where appropriate.
77 class GCCInstallationDetector {
Chandler Carruth4c90fba2011-11-06 23:39:34 +000078 bool IsValid;
Chandler Carruth4d9d7682012-01-24 19:28:29 +000079 llvm::Triple GCCTriple;
Chandler Carruth4c90fba2011-11-06 23:39:34 +000080
81 // FIXME: These might be better as path objects.
Chandler Carruth64cee062012-01-24 19:21:42 +000082 std::string GCCInstallPath;
Chandler Carruthb427c562013-06-22 11:35:51 +000083 std::string GCCBiarchSuffix;
Chandler Carruth64cee062012-01-24 19:21:42 +000084 std::string GCCParentLibPath;
Simon Atanasyanee1accf2013-09-28 13:45:11 +000085 std::string GCCMultiLibSuffix;
Chandler Carruth4c90fba2011-11-06 23:39:34 +000086
87 GCCVersion Version;
88
Chandler Carruth0ae39aa2013-07-30 17:57:09 +000089 // We retain the list of install paths that were considered and rejected in
90 // order to print out detailed information in verbose mode.
Benjamin Kramera97e4d12013-08-14 18:38:51 +000091 std::set<std::string> CandidateGCCInstallPaths;
Chandler Carruth0ae39aa2013-07-30 17:57:09 +000092
Chandler Carruth4c90fba2011-11-06 23:39:34 +000093 public:
Rafael Espindola1af7c212012-02-19 01:38:32 +000094 GCCInstallationDetector(const Driver &D, const llvm::Triple &TargetTriple,
Reid Kleckner724c21c2013-06-17 13:59:19 +000095 const llvm::opt::ArgList &Args);
Chandler Carruth4c90fba2011-11-06 23:39:34 +000096
97 /// \brief Check whether we detected a valid GCC install.
98 bool isValid() const { return IsValid; }
99
100 /// \brief Get the GCC triple for the detected install.
Chandler Carruth4d9d7682012-01-24 19:28:29 +0000101 const llvm::Triple &getTriple() const { return GCCTriple; }
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000102
103 /// \brief Get the detected GCC installation path.
Chandler Carruth64cee062012-01-24 19:21:42 +0000104 StringRef getInstallPath() const { return GCCInstallPath; }
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000105
Chandler Carruthb427c562013-06-22 11:35:51 +0000106 /// \brief Get the detected GCC installation path suffix for the bi-arch
107 /// target variant.
108 StringRef getBiarchSuffix() const { return GCCBiarchSuffix; }
Chandler Carruth866faab2012-01-25 07:21:38 +0000109
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000110 /// \brief Get the detected GCC parent lib path.
Chandler Carruth64cee062012-01-24 19:21:42 +0000111 StringRef getParentLibPath() const { return GCCParentLibPath; }
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000112
Simon Atanasyanee1accf2013-09-28 13:45:11 +0000113 /// \brief Get the detected GCC lib path suffix.
114 StringRef getMultiLibSuffix() const { return GCCMultiLibSuffix; }
115
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000116 /// \brief Get the detected GCC version string.
Rafael Espindola66aa0452012-06-19 01:26:10 +0000117 const GCCVersion &getVersion() const { return Version; }
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000118
Chandler Carruth0ae39aa2013-07-30 17:57:09 +0000119 /// \brief Print information about the detected GCC installation.
120 void print(raw_ostream &OS) const;
121
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000122 private:
Chandler Carruthb427c562013-06-22 11:35:51 +0000123 static void
124 CollectLibDirsAndTriples(const llvm::Triple &TargetTriple,
125 const llvm::Triple &BiarchTriple,
126 SmallVectorImpl<StringRef> &LibDirs,
127 SmallVectorImpl<StringRef> &TripleAliases,
128 SmallVectorImpl<StringRef> &BiarchLibDirs,
129 SmallVectorImpl<StringRef> &BiarchTripleAliases);
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000130
Chandler Carruth866faab2012-01-25 07:21:38 +0000131 void ScanLibDirForGCCTriple(llvm::Triple::ArchType TargetArch,
Reid Kleckner724c21c2013-06-17 13:59:19 +0000132 const llvm::opt::ArgList &Args,
Chandler Carruth6e46ca22011-11-09 03:46:20 +0000133 const std::string &LibDir,
Chandler Carruth866faab2012-01-25 07:21:38 +0000134 StringRef CandidateTriple,
Chandler Carruthb427c562013-06-22 11:35:51 +0000135 bool NeedsBiarchSuffix = false);
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000136 };
137
138 GCCInstallationDetector GCCInstallation;
139
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000140public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000141 Generic_GCC(const Driver &D, const llvm::Triple &Triple,
142 const llvm::opt::ArgList &Args);
Daniel Dunbar59e5e882009-03-20 00:20:03 +0000143 ~Generic_GCC();
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000144
Chandler Carruth0ae39aa2013-07-30 17:57:09 +0000145 virtual void printVerboseInfo(raw_ostream &OS) const;
146
Daniel Dunbar59e5e882009-03-20 00:20:03 +0000147 virtual bool IsUnwindTablesDefault() const;
Chandler Carruth76a943b2012-11-19 03:52:03 +0000148 virtual bool isPICDefault() const;
Peter Collingbourne54d770c2013-04-09 04:35:11 +0000149 virtual bool isPIEDefault() const;
Chandler Carruth76a943b2012-11-19 03:52:03 +0000150 virtual bool isPICDefaultForced() const;
Chandler Carruthefad16a2011-11-06 23:39:37 +0000151
152protected:
Rafael Espindola7cf32212013-03-20 03:05:54 +0000153 virtual Tool *getTool(Action::ActionClass AC) const;
154 virtual Tool *buildAssembler() const;
155 virtual Tool *buildLinker() const;
156
Chandler Carruthefad16a2011-11-06 23:39:37 +0000157 /// \name ToolChain Implementation Helper Functions
158 /// @{
159
160 /// \brief Check whether the target triple's architecture is 64-bits.
Chandler Carruth9b5f8dd2012-02-11 03:31:12 +0000161 bool isTarget64Bit() const { return getTriple().isArch64Bit(); }
162
Chandler Carruthefad16a2011-11-06 23:39:37 +0000163 /// \brief Check whether the target triple's architecture is 32-bits.
Chandler Carruth9b5f8dd2012-02-11 03:31:12 +0000164 bool isTarget32Bit() const { return getTriple().isArch32Bit(); }
Chandler Carruthefad16a2011-11-06 23:39:37 +0000165
166 /// @}
Rafael Espindola7cf32212013-03-20 03:05:54 +0000167
168private:
169 mutable OwningPtr<tools::gcc::Preprocess> Preprocess;
170 mutable OwningPtr<tools::gcc::Precompile> Precompile;
171 mutable OwningPtr<tools::gcc::Compile> Compile;
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000172};
173
Tony Linthicum76329bf2011-12-12 21:14:55 +0000174 /// Darwin - The base Darwin tool chain.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000175class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain {
Daniel Dunbar71c723d2010-08-02 05:44:07 +0000176public:
177 /// The host version.
178 unsigned DarwinVersion[3];
179
Rafael Espindola7cf32212013-03-20 03:05:54 +0000180protected:
181 virtual Tool *buildAssembler() const;
182 virtual Tool *buildLinker() const;
183 virtual Tool *getTool(Action::ActionClass AC) const;
184
Daniel Dunbar71c723d2010-08-02 05:44:07 +0000185private:
Rafael Espindola7cf32212013-03-20 03:05:54 +0000186 mutable OwningPtr<tools::darwin::Lipo> Lipo;
187 mutable OwningPtr<tools::darwin::Dsymutil> Dsymutil;
188 mutable OwningPtr<tools::darwin::VerifyDebug> VerifyDebug;
189
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000190 /// Whether the information on the target has been initialized.
191 //
192 // FIXME: This should be eliminated. What we want to do is make this part of
193 // the "default target for arguments" selection process, once we get out of
194 // the argument translation business.
195 mutable bool TargetInitialized;
196
Chris Lattner57540c52011-04-15 05:22:18 +0000197 /// Whether we are targeting iPhoneOS target.
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000198 mutable bool TargetIsIPhoneOS;
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000199
Daniel Dunbarb1189432011-04-30 04:18:16 +0000200 /// Whether we are targeting the iPhoneOS simulator target.
201 mutable bool TargetIsIPhoneOSSimulator;
202
Chris Lattner57540c52011-04-15 05:22:18 +0000203 /// The OS version we are targeting.
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000204 mutable VersionTuple TargetVersion;
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000205
John McCall5fb5df92012-06-20 06:18:46 +0000206private:
Daniel Dunbarc1964212009-03-26 16:23:12 +0000207 /// The default macosx-version-min of this tool chain; empty until
208 /// initialized.
Daniel Dunbard54669d2010-01-26 01:45:19 +0000209 std::string MacosxVersionMin;
Daniel Dunbarc1964212009-03-26 16:23:12 +0000210
Chad Rosier6037c6b2012-05-09 18:37:26 +0000211 /// The default ios-version-min of this tool chain; empty until
212 /// initialized.
213 std::string iOSVersionMin;
214
Daniel Dunbarb2b8a912010-07-19 17:11:33 +0000215private:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000216 void AddDeploymentTarget(llvm::opt::DerivedArgList &Args) const;
Daniel Dunbarb2b8a912010-07-19 17:11:33 +0000217
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000218public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000219 Darwin(const Driver &D, const llvm::Triple &Triple,
220 const llvm::opt::ArgList &Args);
Daniel Dunbarf0a5b9b2009-09-04 18:34:51 +0000221 ~Darwin();
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000222
Reid Kleckner724c21c2013-06-17 13:59:19 +0000223 std::string ComputeEffectiveClangTriple(const llvm::opt::ArgList &Args,
Chad Rosierd3a0f952011-09-20 20:44:06 +0000224 types::ID InputType) const;
Daniel Dunbar82eb4ce2010-08-23 22:35:37 +0000225
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000226 /// @name Darwin Specific Toolchain API
227 /// {
228
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000229 // FIXME: Eliminate these ...Target functions and derive separate tool chains
230 // for these targets and put version in constructor.
Daniel Dunbarb1189432011-04-30 04:18:16 +0000231 void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor,
232 unsigned Micro, bool IsIOSSim) const {
233 assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!");
234
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000235 // FIXME: For now, allow reinitialization as long as values don't
236 // change. This will go away when we move away from argument translation.
Daniel Dunbarb1189432011-04-30 04:18:16 +0000237 if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS &&
238 TargetIsIPhoneOSSimulator == IsIOSSim &&
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000239 TargetVersion == VersionTuple(Major, Minor, Micro))
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000240 return;
241
242 assert(!TargetInitialized && "Target already initialized!");
243 TargetInitialized = true;
Daniel Dunbarb1189432011-04-30 04:18:16 +0000244 TargetIsIPhoneOS = IsIPhoneOS;
245 TargetIsIPhoneOSSimulator = IsIOSSim;
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000246 TargetVersion = VersionTuple(Major, Minor, Micro);
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000247 }
248
249 bool isTargetIPhoneOS() const {
250 assert(TargetInitialized && "Target not initialized!");
251 return TargetIsIPhoneOS;
252 }
253
Daniel Dunbarebc34df2011-03-31 17:12:33 +0000254 bool isTargetIOSSimulator() const {
Daniel Dunbarb1189432011-04-30 04:18:16 +0000255 assert(TargetInitialized && "Target not initialized!");
256 return TargetIsIPhoneOSSimulator;
Daniel Dunbarebc34df2011-03-31 17:12:33 +0000257 }
258
Ted Kremeneke65b0862012-03-06 20:05:56 +0000259 bool isTargetMacOS() const {
Bob Wilson5ad5a952012-11-09 01:59:30 +0000260 return !isTargetIOSSimulator() && !isTargetIPhoneOS();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000261 }
262
Daniel Dunbar47d25b12010-03-20 00:50:21 +0000263 bool isTargetInitialized() const { return TargetInitialized; }
264
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000265 VersionTuple getTargetVersion() const {
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000266 assert(TargetInitialized && "Target not initialized!");
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000267 return TargetVersion;
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000268 }
269
Daniel Dunbardcc3b652010-01-22 02:04:58 +0000270 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
271 /// invocation. For example, Darwin treats different ARM variations as
272 /// distinct architectures.
Reid Kleckner724c21c2013-06-17 13:59:19 +0000273 StringRef getDarwinArchName(const llvm::opt::ArgList &Args) const;
Daniel Dunbardcc3b652010-01-22 02:04:58 +0000274
Daniel Dunbar83608032010-01-27 00:56:56 +0000275 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
276 assert(isTargetIPhoneOS() && "Unexpected call for OS X target!");
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000277 return TargetVersion < VersionTuple(V0, V1, V2);
Daniel Dunbar6d23b2f2010-01-27 00:57:03 +0000278 }
279
280 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
281 assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!");
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000282 return TargetVersion < VersionTuple(V0, V1, V2);
Daniel Dunbar83608032010-01-27 00:56:56 +0000283 }
284
John McCall31168b02011-06-15 23:02:42 +0000285 /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library.
Reid Kleckner724c21c2013-06-17 13:59:19 +0000286 virtual void AddLinkARCArgs(const llvm::opt::ArgList &Args,
287 llvm::opt::ArgStringList &CmdArgs) const = 0;
288
Daniel Dunbar26d482a2009-09-18 08:15:03 +0000289 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
290 /// runtime library.
Reid Kleckner724c21c2013-06-17 13:59:19 +0000291 virtual void
292 AddLinkRuntimeLibArgs(const llvm::opt::ArgList &Args,
293 llvm::opt::ArgStringList &CmdArgs) const = 0;
294
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000295 /// }
296 /// @name ToolChain Implementation
297 /// {
298
Daniel Dunbarcc7df6c2010-08-02 05:43:56 +0000299 virtual types::ID LookupTypeForExtension(const char *Ext) const;
300
Daniel Dunbar62123a12010-09-17 00:24:52 +0000301 virtual bool HasNativeLLVMSupport() const;
302
John McCall5fb5df92012-06-20 06:18:46 +0000303 virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const;
John McCall7959fee2011-09-09 20:41:01 +0000304 virtual bool hasBlocksRuntime() const;
John McCall31168b02011-06-15 23:02:42 +0000305
Reid Kleckner724c21c2013-06-17 13:59:19 +0000306 virtual llvm::opt::DerivedArgList *
307 TranslateArgs(const llvm::opt::DerivedArgList &Args,
308 const char *BoundArch) const;
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000309
Daniel Dunbar4930e332009-11-17 08:07:36 +0000310 virtual bool IsBlocksDefault() const {
Daniel Dunbara66a4d12010-07-22 00:40:31 +0000311 // Always allow blocks on Darwin; users interested in versioning are
312 // expected to use /usr/include/Blocks.h.
313 return true;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000314 }
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000315 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbara99a3c12010-06-23 18:15:13 +0000316#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
317 return false;
318#else
Jim Grosbach2e166242012-02-27 23:55:25 +0000319 // Default integrated assembler to on for Darwin.
320 return true;
Daniel Dunbara99a3c12010-06-23 18:15:13 +0000321#endif
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000322 }
Daniel Dunbar7aa71f92011-02-04 02:20:39 +0000323 virtual bool IsStrictAliasingDefault() const {
324#ifdef DISABLE_DEFAULT_STRICT_ALIASING
325 return false;
326#else
327 return ToolChain::IsStrictAliasingDefault();
328#endif
329 }
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000330
331 virtual bool IsMathErrnoDefault() const {
332 return false;
333 }
334
Fariborz Jahanian0e3043b2012-11-15 19:02:45 +0000335 virtual bool IsEncodeExtendedBlockSignatureDefault() const {
336 return true;
337 }
338
Daniel Dunbar4930e332009-11-17 08:07:36 +0000339 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000340 // Non-fragile ABI is default for everything but i386.
341 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000342 }
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000343
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +0000344 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000345 // This is only used with the non-fragile ABI and non-legacy dispatch.
346
347 // Mixed dispatch is used everywhere except OS X before 10.6.
348 return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6));
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +0000349 }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000350 virtual bool IsUnwindTablesDefault() const;
Nico Weberdd473632011-08-23 07:38:27 +0000351 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
352 // Stack protectors default to on for user code on 10.5,
353 // and for everything in 10.6 and beyond
Bob Wilson721d4b82011-12-14 06:08:25 +0000354 return isTargetIPhoneOS() ||
Nico Weberdd473632011-08-23 07:38:27 +0000355 (!isMacosxVersionLT(10, 6) ||
356 (!isMacosxVersionLT(10, 5) && !KernelOrKext));
Daniel Dunbar4930e332009-11-17 08:07:36 +0000357 }
Daniel Dunbarf4916cd2011-12-07 23:03:15 +0000358 virtual RuntimeLibType GetDefaultRuntimeLibType() const {
359 return ToolChain::RLT_CompilerRT;
360 }
Chandler Carruth76a943b2012-11-19 03:52:03 +0000361 virtual bool isPICDefault() const;
Peter Collingbourne54d770c2013-04-09 04:35:11 +0000362 virtual bool isPIEDefault() const;
Chandler Carruth76a943b2012-11-19 03:52:03 +0000363 virtual bool isPICDefaultForced() const;
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000364
Daniel Dunbar733b0f82011-03-01 18:49:30 +0000365 virtual bool SupportsProfiling() const;
366
Daniel Dunbar16334e12010-04-10 16:20:23 +0000367 virtual bool SupportsObjCGC() const;
368
John McCall3deb1ad2012-08-21 02:47:43 +0000369 virtual void CheckObjCARC() const;
Argyrios Kyrtzidis3dbeb552012-02-29 03:43:52 +0000370
Daniel Dunbar24c7f5e2009-12-18 02:43:17 +0000371 virtual bool UseDwarfDebugFlags() const;
372
Daniel Dunbar3241d402010-02-10 18:49:11 +0000373 virtual bool UseSjLjExceptions() const;
374
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000375 /// }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000376};
377
Daniel Dunbar6276f992009-09-18 08:15:13 +0000378/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000379class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000380public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000381 DarwinClang(const Driver &D, const llvm::Triple &Triple,
382 const llvm::opt::ArgList &Args);
Daniel Dunbar6276f992009-09-18 08:15:13 +0000383
384 /// @name Darwin ToolChain Implementation
385 /// {
386
Reid Kleckner724c21c2013-06-17 13:59:19 +0000387 virtual void AddLinkRuntimeLibArgs(const llvm::opt::ArgList &Args,
388 llvm::opt::ArgStringList &CmdArgs) const;
389 void AddLinkRuntimeLib(const llvm::opt::ArgList &Args,
390 llvm::opt::ArgStringList &CmdArgs,
Alexey Samsonov8368b372012-11-21 14:17:42 +0000391 const char *DarwinStaticLib,
392 bool AlwaysLink = false) const;
393
Reid Kleckner724c21c2013-06-17 13:59:19 +0000394 virtual void AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,
395 llvm::opt::ArgStringList &CmdArgs) const;
Daniel Dunbar8fa86b12010-09-17 01:16:06 +0000396
Reid Kleckner724c21c2013-06-17 13:59:19 +0000397 virtual void AddCCKextLibArgs(const llvm::opt::ArgList &Args,
398 llvm::opt::ArgStringList &CmdArgs) const;
Shantonu Senafeb03b2010-09-17 18:39:08 +0000399
Reid Kleckner724c21c2013-06-17 13:59:19 +0000400 virtual void AddLinkARCArgs(const llvm::opt::ArgList &Args,
401 llvm::opt::ArgStringList &CmdArgs) const;
Daniel Dunbar6276f992009-09-18 08:15:13 +0000402 /// }
403};
404
Daniel Dunbar6276f992009-09-18 08:15:13 +0000405/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000406class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar6276f992009-09-18 08:15:13 +0000407public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000408 Darwin_Generic_GCC(const Driver &D, const llvm::Triple &Triple,
409 const llvm::opt::ArgList &Args)
410 : Generic_GCC(D, Triple, Args) {}
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000411
Reid Kleckner724c21c2013-06-17 13:59:19 +0000412 std::string ComputeEffectiveClangTriple(const llvm::opt::ArgList &Args,
Chad Rosierd3a0f952011-09-20 20:44:06 +0000413 types::ID InputType) const;
Daniel Dunbar82eb4ce2010-08-23 22:35:37 +0000414
Chad Rosier546c2612012-11-27 17:31:26 +0000415 virtual bool isPICDefault() const { return false; }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000416};
417
Rafael Espindolaacc87092010-10-29 20:14:02 +0000418class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {
David Blaikie68e081d2011-12-20 02:48:34 +0000419 virtual void anchor();
420public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000421 Generic_ELF(const Driver &D, const llvm::Triple &Triple,
422 const llvm::opt::ArgList &Args)
423 : Generic_GCC(D, Triple, Args) {}
Rafael Espindolaacc87092010-10-29 20:14:02 +0000424
425 virtual bool IsIntegratedAssemblerDefault() const {
426 // Default integrated assembler to on for x86.
Tim Northover9bb857a2013-01-31 12:13:10 +0000427 return (getTriple().getArch() == llvm::Triple::aarch64 ||
428 getTriple().getArch() == llvm::Triple::x86 ||
Rafael Espindolaacc87092010-10-29 20:14:02 +0000429 getTriple().getArch() == llvm::Triple::x86_64);
430 }
431};
432
Duncan Sandsaf260b92010-05-11 20:16:05 +0000433class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000434public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000435 AuroraUX(const Driver &D, const llvm::Triple &Triple,
436 const llvm::opt::ArgList &Args);
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000437
Rafael Espindola7cf32212013-03-20 03:05:54 +0000438protected:
439 virtual Tool *buildAssembler() const;
440 virtual Tool *buildLinker() const;
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000441};
442
David Chisnallf571cde2012-02-15 13:39:01 +0000443class LLVM_LIBRARY_VISIBILITY Solaris : public Generic_GCC {
444public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000445 Solaris(const Driver &D, const llvm::Triple &Triple,
446 const llvm::opt::ArgList &Args);
David Chisnallf571cde2012-02-15 13:39:01 +0000447
David Chisnallf571cde2012-02-15 13:39:01 +0000448 virtual bool IsIntegratedAssemblerDefault() const { return true; }
Rafael Espindola7cf32212013-03-20 03:05:54 +0000449protected:
450 virtual Tool *buildAssembler() const;
451 virtual Tool *buildLinker() const;
452
David Chisnallf571cde2012-02-15 13:39:01 +0000453};
454
455
Rafael Espindolaacc87092010-10-29 20:14:02 +0000456class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF {
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000457public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000458 OpenBSD(const Driver &D, const llvm::Triple &Triple,
459 const llvm::opt::ArgList &Args);
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000460
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000461 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000462 virtual bool IsObjCNonFragileABIDefault() const { return true; }
Rafael Espindola044f7832013-06-05 04:28:55 +0000463 virtual bool isPIEDefault() const { return true; }
464
465 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
466 return 1;
467 }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000468
Rafael Espindola7cf32212013-03-20 03:05:54 +0000469protected:
470 virtual Tool *buildAssembler() const;
471 virtual Tool *buildLinker() const;
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000472};
473
Eli Friedman9fa28852012-08-08 23:57:20 +0000474class LLVM_LIBRARY_VISIBILITY Bitrig : public Generic_ELF {
475public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000476 Bitrig(const Driver &D, const llvm::Triple &Triple,
477 const llvm::opt::ArgList &Args);
Eli Friedman9fa28852012-08-08 23:57:20 +0000478
479 virtual bool IsMathErrnoDefault() const { return false; }
480 virtual bool IsObjCNonFragileABIDefault() const { return true; }
481 virtual bool IsObjCLegacyDispatchDefault() const { return false; }
482
Reid Kleckner724c21c2013-06-17 13:59:19 +0000483 virtual void
484 AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
485 llvm::opt::ArgStringList &CC1Args) const;
486 virtual void AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,
487 llvm::opt::ArgStringList &CmdArgs) const;
Eli Friedman9fa28852012-08-08 23:57:20 +0000488 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
489 return 1;
490 }
Rafael Espindola7cf32212013-03-20 03:05:54 +0000491
492protected:
493 virtual Tool *buildAssembler() const;
494 virtual Tool *buildLinker() const;
Eli Friedman9fa28852012-08-08 23:57:20 +0000495};
496
Rafael Espindolaacc87092010-10-29 20:14:02 +0000497class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF {
Daniel Dunbare24297c2009-03-30 21:06:03 +0000498public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000499 FreeBSD(const Driver &D, const llvm::Triple &Triple,
500 const llvm::opt::ArgList &Args);
Daniel Dunbare24297c2009-03-30 21:06:03 +0000501
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000502 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000503 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000504
Rafael Espindola0f207ed2012-12-13 04:17:14 +0000505 virtual bool UseSjLjExceptions() const;
Rafael Espindola7cf32212013-03-20 03:05:54 +0000506protected:
507 virtual Tool *buildAssembler() const;
508 virtual Tool *buildLinker() const;
Daniel Dunbare24297c2009-03-30 21:06:03 +0000509};
510
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000511class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
512public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000513 NetBSD(const Driver &D, const llvm::Triple &Triple,
514 const llvm::opt::ArgList &Args);
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000515
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000516 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000517 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000518
Reid Kleckner724c21c2013-06-17 13:59:19 +0000519 virtual CXXStdlibType GetCXXStdlibType(const llvm::opt::ArgList &Args) const;
Joerg Sonnenberger428ef1e2013-04-30 01:21:43 +0000520
Reid Kleckner724c21c2013-06-17 13:59:19 +0000521 virtual void
522 AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
523 llvm::opt::ArgStringList &CC1Args) const;
Joerg Sonnenberger51f35822013-08-15 15:08:33 +0000524 virtual bool IsUnwindTablesDefault() const {
525 return true;
526 }
Joerg Sonnenberger88d4c532013-08-15 15:04:56 +0000527 virtual bool IsIntegratedAssemblerDefault() const {
528 if (getTriple().getArch() == llvm::Triple::ppc)
529 return true;
530 return Generic_ELF::IsIntegratedAssemblerDefault();
531 }
Joerg Sonnenberger428ef1e2013-04-30 01:21:43 +0000532
Rafael Espindola7cf32212013-03-20 03:05:54 +0000533protected:
534 virtual Tool *buildAssembler() const;
535 virtual Tool *buildLinker() const;
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000536};
537
Eli Friedman83de5132011-12-08 23:54:21 +0000538class LLVM_LIBRARY_VISIBILITY Minix : public Generic_ELF {
Chris Lattner3e2ee142010-07-07 16:01:42 +0000539public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000540 Minix(const Driver &D, const llvm::Triple &Triple,
541 const llvm::opt::ArgList &Args);
Chris Lattner3e2ee142010-07-07 16:01:42 +0000542
Rafael Espindola7cf32212013-03-20 03:05:54 +0000543protected:
544 virtual Tool *buildAssembler() const;
545 virtual Tool *buildLinker() const;
Chris Lattner3e2ee142010-07-07 16:01:42 +0000546};
547
Rafael Espindolaacc87092010-10-29 20:14:02 +0000548class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
Daniel Dunbarcc912342009-05-02 18:28:39 +0000549public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000550 DragonFly(const Driver &D, const llvm::Triple &Triple,
551 const llvm::opt::ArgList &Args);
Daniel Dunbarcc912342009-05-02 18:28:39 +0000552
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000553 virtual bool IsMathErrnoDefault() const { return false; }
554
Rafael Espindola7cf32212013-03-20 03:05:54 +0000555protected:
556 virtual Tool *buildAssembler() const;
557 virtual Tool *buildLinker() const;
Daniel Dunbarcc912342009-05-02 18:28:39 +0000558};
559
Rafael Espindolaacc87092010-10-29 20:14:02 +0000560class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF {
Eli Friedman5cd659f2009-05-26 07:52:18 +0000561public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000562 Linux(const Driver &D, const llvm::Triple &Triple,
563 const llvm::opt::ArgList &Args);
Rafael Espindola92b00932010-08-10 00:25:48 +0000564
Rafael Espindolac8f008f2010-11-07 20:14:31 +0000565 virtual bool HasNativeLLVMSupport() const;
566
Reid Kleckner724c21c2013-06-17 13:59:19 +0000567 virtual void
568 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
569 llvm::opt::ArgStringList &CC1Args) const;
570 virtual void addClangTargetOptions(const llvm::opt::ArgList &DriverArgs,
571 llvm::opt::ArgStringList &CC1Args) const;
572 virtual void
573 AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
574 llvm::opt::ArgStringList &CC1Args) const;
Peter Collingbourne54d770c2013-04-09 04:35:11 +0000575 virtual bool isPIEDefault() const;
Chandler Carrutha796f532011-11-05 20:17:13 +0000576
Rafael Espindolac8f008f2010-11-07 20:14:31 +0000577 std::string Linker;
578 std::vector<std::string> ExtraOpts;
Chandler Carruth1fc603e2011-12-17 23:10:01 +0000579
Rafael Espindola7cf32212013-03-20 03:05:54 +0000580protected:
581 virtual Tool *buildAssembler() const;
582 virtual Tool *buildLinker() const;
583
Chandler Carruth1fc603e2011-12-17 23:10:01 +0000584private:
Dmitri Gribenko15225ae2013-03-06 17:14:05 +0000585 static bool addLibStdCXXIncludePaths(Twine Base, Twine Suffix,
586 Twine TargetArchDir,
587 Twine MultiLibSuffix,
Reid Kleckner724c21c2013-06-17 13:59:19 +0000588 const llvm::opt::ArgList &DriverArgs,
589 llvm::opt::ArgStringList &CC1Args);
Chandler Carruth1fc603e2011-12-17 23:10:01 +0000590 static bool addLibStdCXXIncludePaths(Twine Base, Twine TargetArchDir,
Reid Kleckner724c21c2013-06-17 13:59:19 +0000591 const llvm::opt::ArgList &DriverArgs,
592 llvm::opt::ArgStringList &CC1Args);
Simon Atanasyan08450bd2013-04-20 08:15:03 +0000593
Simon Atanasyana0d89572013-10-05 14:37:55 +0000594 std::string computeSysRoot() const;
Eli Friedman5cd659f2009-05-26 07:52:18 +0000595};
596
Matthew Curtis22dd8da2012-12-06 12:43:18 +0000597class LLVM_LIBRARY_VISIBILITY Hexagon_TC : public Linux {
598protected:
Matthew Curtis22dd8da2012-12-06 12:43:18 +0000599 GCCVersion GCCLibAndIncVersion;
Rafael Espindola7cf32212013-03-20 03:05:54 +0000600 virtual Tool *buildAssembler() const;
601 virtual Tool *buildLinker() const;
Matthew Curtis22dd8da2012-12-06 12:43:18 +0000602
603public:
604 Hexagon_TC(const Driver &D, const llvm::Triple &Triple,
Reid Kleckner724c21c2013-06-17 13:59:19 +0000605 const llvm::opt::ArgList &Args);
Matthew Curtis22dd8da2012-12-06 12:43:18 +0000606 ~Hexagon_TC();
607
Reid Kleckner724c21c2013-06-17 13:59:19 +0000608 virtual void
609 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
610 llvm::opt::ArgStringList &CC1Args) const;
611 virtual void
612 AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
613 llvm::opt::ArgStringList &CC1Args) const;
614 virtual CXXStdlibType GetCXXStdlibType(const llvm::opt::ArgList &Args) const;
Matthew Curtis22dd8da2012-12-06 12:43:18 +0000615
616 StringRef GetGCCLibAndIncVersion() const { return GCCLibAndIncVersion.Text; }
617
618 static std::string GetGnuDir(const std::string &InstalledDir);
Matthew Curtisf10a5952012-12-06 14:16:43 +0000619
Reid Kleckner724c21c2013-06-17 13:59:19 +0000620 static StringRef GetTargetCPU(const llvm::opt::ArgList &Args);
Matthew Curtis22dd8da2012-12-06 12:43:18 +0000621};
Eli Friedman5cd659f2009-05-26 07:52:18 +0000622
Chris Lattner09797542010-03-04 21:07:38 +0000623/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
624/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000625class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner09797542010-03-04 21:07:38 +0000626public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000627 TCEToolChain(const Driver &D, const llvm::Triple &Triple,
628 const llvm::opt::ArgList &Args);
Chris Lattner09797542010-03-04 21:07:38 +0000629 ~TCEToolChain();
630
Chris Lattner09797542010-03-04 21:07:38 +0000631 bool IsMathErrnoDefault() const;
Chandler Carruth76a943b2012-11-19 03:52:03 +0000632 bool isPICDefault() const;
Peter Collingbourne54d770c2013-04-09 04:35:11 +0000633 bool isPIEDefault() const;
Chandler Carruth76a943b2012-11-19 03:52:03 +0000634 bool isPICDefaultForced() const;
Chris Lattner09797542010-03-04 21:07:38 +0000635};
636
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000637class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain {
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000638public:
Reid Kleckner724c21c2013-06-17 13:59:19 +0000639 Windows(const Driver &D, const llvm::Triple &Triple,
640 const llvm::opt::ArgList &Args);
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000641
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000642 virtual bool IsIntegratedAssemblerDefault() const;
643 virtual bool IsUnwindTablesDefault() const;
Chandler Carruth76a943b2012-11-19 03:52:03 +0000644 virtual bool isPICDefault() const;
Peter Collingbourne54d770c2013-04-09 04:35:11 +0000645 virtual bool isPIEDefault() const;
Chandler Carruth76a943b2012-11-19 03:52:03 +0000646 virtual bool isPICDefaultForced() const;
Chandler Carruthdf527832011-11-04 23:49:05 +0000647
Reid Kleckner724c21c2013-06-17 13:59:19 +0000648 virtual void
649 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
650 llvm::opt::ArgStringList &CC1Args) const;
651 virtual void
652 AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
653 llvm::opt::ArgStringList &CC1Args) const;
654
Rafael Espindola7cf32212013-03-20 03:05:54 +0000655protected:
656 virtual Tool *buildLinker() const;
657 virtual Tool *buildAssembler() const;
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000658};
659
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000660} // end namespace toolchains
661} // end namespace driver
662} // end namespace clang
663
664#endif