blob: 95a11beea158f0c87460d348f7b5ceeb2b349301 [file] [log] [blame]
Daniel Dunbar0a248bb2009-03-17 21:38:00 +00001//===--- ToolChains.h - ToolChain Implementations ---------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef CLANG_LIB_DRIVER_TOOLCHAINS_H_
11#define CLANG_LIB_DRIVER_TOOLCHAINS_H_
12
Daniel Dunbar04cb0292009-03-17 22:07:31 +000013#include "clang/Driver/Action.h"
Daniel Dunbar0a248bb2009-03-17 21:38:00 +000014#include "clang/Driver/ToolChain.h"
15
Benjamin Kramerddefa6d2012-03-10 20:55:36 +000016#include "clang/Basic/VersionTuple.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
Daniel Dunbar04cb0292009-03-17 22:07:31 +000020#include "Tools.h"
21
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
53 /// \brief Any textual suffix on the patch number.
54 std::string PatchSuffix;
55
56 static GCCVersion Parse(StringRef VersionText);
57 bool operator<(const GCCVersion &RHS) const;
58 bool operator>(const GCCVersion &RHS) const { return RHS < *this; }
59 bool operator<=(const GCCVersion &RHS) const { return !(*this > RHS); }
60 bool operator>=(const GCCVersion &RHS) const { return !(*this < RHS); }
61 };
62
63
64 /// \brief This is a class to find a viable GCC installation for Clang to
65 /// use.
66 ///
67 /// This class tries to find a GCC installation on the system, and report
68 /// information about it. It starts from the host information provided to the
69 /// Driver, and has logic for fuzzing that where appropriate.
70 class GCCInstallationDetector {
71
72 bool IsValid;
Chandler Carruth4d9d7682012-01-24 19:28:29 +000073 llvm::Triple GCCTriple;
Chandler Carruth4c90fba2011-11-06 23:39:34 +000074
75 // FIXME: These might be better as path objects.
Chandler Carruth64cee062012-01-24 19:21:42 +000076 std::string GCCInstallPath;
Chandler Carruth866faab2012-01-25 07:21:38 +000077 std::string GCCMultiarchSuffix;
Chandler Carruth64cee062012-01-24 19:21:42 +000078 std::string GCCParentLibPath;
Chandler Carruth4c90fba2011-11-06 23:39:34 +000079
80 GCCVersion Version;
81
82 public:
Rafael Espindola1af7c212012-02-19 01:38:32 +000083 GCCInstallationDetector(const Driver &D, const llvm::Triple &TargetTriple,
84 const ArgList &Args);
Chandler Carruth4c90fba2011-11-06 23:39:34 +000085
86 /// \brief Check whether we detected a valid GCC install.
87 bool isValid() const { return IsValid; }
88
89 /// \brief Get the GCC triple for the detected install.
Chandler Carruth4d9d7682012-01-24 19:28:29 +000090 const llvm::Triple &getTriple() const { return GCCTriple; }
Chandler Carruth4c90fba2011-11-06 23:39:34 +000091
92 /// \brief Get the detected GCC installation path.
Chandler Carruth64cee062012-01-24 19:21:42 +000093 StringRef getInstallPath() const { return GCCInstallPath; }
Chandler Carruth4c90fba2011-11-06 23:39:34 +000094
Chandler Carruth866faab2012-01-25 07:21:38 +000095 /// \brief Get the detected GCC installation path suffix for multiarch GCCs.
96 StringRef getMultiarchSuffix() const { return GCCMultiarchSuffix; }
97
Chandler Carruth4c90fba2011-11-06 23:39:34 +000098 /// \brief Get the detected GCC parent lib path.
Chandler Carruth64cee062012-01-24 19:21:42 +000099 StringRef getParentLibPath() const { return GCCParentLibPath; }
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000100
101 /// \brief Get the detected GCC version string.
Rafael Espindola66aa0452012-06-19 01:26:10 +0000102 const GCCVersion &getVersion() const { return Version; }
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000103
104 private:
Chandler Carruth866faab2012-01-25 07:21:38 +0000105 static void CollectLibDirsAndTriples(
106 const llvm::Triple &TargetTriple,
107 const llvm::Triple &MultiarchTriple,
108 SmallVectorImpl<StringRef> &LibDirs,
109 SmallVectorImpl<StringRef> &TripleAliases,
110 SmallVectorImpl<StringRef> &MultiarchLibDirs,
111 SmallVectorImpl<StringRef> &MultiarchTripleAliases);
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000112
Chandler Carruth866faab2012-01-25 07:21:38 +0000113 void ScanLibDirForGCCTriple(llvm::Triple::ArchType TargetArch,
Chandler Carruth6e46ca22011-11-09 03:46:20 +0000114 const std::string &LibDir,
Chandler Carruth866faab2012-01-25 07:21:38 +0000115 StringRef CandidateTriple,
116 bool NeedsMultiarchSuffix = false);
Chandler Carruth4c90fba2011-11-06 23:39:34 +0000117 };
118
119 GCCInstallationDetector GCCInstallation;
120
Daniel Dunbar04cb0292009-03-17 22:07:31 +0000121 mutable llvm::DenseMap<unsigned, Tool*> Tools;
122
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000123public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000124 Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbar59e5e882009-03-20 00:20:03 +0000125 ~Generic_GCC();
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000126
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000127 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
128 const ActionList &Inputs) const;
Daniel Dunbar04cb0292009-03-17 22:07:31 +0000129
Daniel Dunbar59e5e882009-03-20 00:20:03 +0000130 virtual bool IsUnwindTablesDefault() const;
131 virtual const char *GetDefaultRelocationModel() const;
132 virtual const char *GetForcedPicModel() const;
Chandler Carruthefad16a2011-11-06 23:39:37 +0000133
134protected:
135 /// \name ToolChain Implementation Helper Functions
136 /// @{
137
138 /// \brief Check whether the target triple's architecture is 64-bits.
Chandler Carruth9b5f8dd2012-02-11 03:31:12 +0000139 bool isTarget64Bit() const { return getTriple().isArch64Bit(); }
140
Chandler Carruthefad16a2011-11-06 23:39:37 +0000141 /// \brief Check whether the target triple's architecture is 32-bits.
Chandler Carruth9b5f8dd2012-02-11 03:31:12 +0000142 bool isTarget32Bit() const { return getTriple().isArch32Bit(); }
Chandler Carruthefad16a2011-11-06 23:39:37 +0000143
144 /// @}
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000145};
146
Tony Linthicum76329bf2011-12-12 21:14:55 +0000147class LLVM_LIBRARY_VISIBILITY Hexagon_TC : public ToolChain {
148protected:
149 mutable llvm::DenseMap<unsigned, Tool*> Tools;
150
151public:
Chandler Carruthd7fa2e02012-01-31 02:21:20 +0000152 Hexagon_TC(const Driver &D, const llvm::Triple& Triple);
Tony Linthicum76329bf2011-12-12 21:14:55 +0000153 ~Hexagon_TC();
154
155 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
156 const ActionList &Inputs) const;
157
158 virtual bool IsUnwindTablesDefault() const;
159 virtual const char *GetDefaultRelocationModel() const;
160 virtual const char *GetForcedPicModel() const;
161};
162
163 /// Darwin - The base Darwin tool chain.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000164class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain {
Daniel Dunbar71c723d2010-08-02 05:44:07 +0000165public:
166 /// The host version.
167 unsigned DarwinVersion[3];
168
169private:
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000170 mutable llvm::DenseMap<unsigned, Tool*> Tools;
171
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000172 /// Whether the information on the target has been initialized.
173 //
174 // FIXME: This should be eliminated. What we want to do is make this part of
175 // the "default target for arguments" selection process, once we get out of
176 // the argument translation business.
177 mutable bool TargetInitialized;
178
Chris Lattner57540c52011-04-15 05:22:18 +0000179 /// Whether we are targeting iPhoneOS target.
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000180 mutable bool TargetIsIPhoneOS;
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000181
Daniel Dunbarb1189432011-04-30 04:18:16 +0000182 /// Whether we are targeting the iPhoneOS simulator target.
183 mutable bool TargetIsIPhoneOSSimulator;
184
Chris Lattner57540c52011-04-15 05:22:18 +0000185 /// The OS version we are targeting.
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000186 mutable VersionTuple TargetVersion;
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000187
John McCall5fb5df92012-06-20 06:18:46 +0000188protected:
189 // FIXME: Remove this once there is a proper way to detect an ARC runtime
190 // for the simulator.
191 mutable VersionTuple TargetSimulatorVersionFromDefines;
192
193private:
Daniel Dunbarc1964212009-03-26 16:23:12 +0000194 /// The default macosx-version-min of this tool chain; empty until
195 /// initialized.
Daniel Dunbard54669d2010-01-26 01:45:19 +0000196 std::string MacosxVersionMin;
Daniel Dunbarc1964212009-03-26 16:23:12 +0000197
Chad Rosier6037c6b2012-05-09 18:37:26 +0000198 /// The default ios-version-min of this tool chain; empty until
199 /// initialized.
200 std::string iOSVersionMin;
201
Daniel Dunbarb2b8a912010-07-19 17:11:33 +0000202private:
Daniel Dunbar354e96d2010-07-19 17:11:36 +0000203 void AddDeploymentTarget(DerivedArgList &Args) const;
Daniel Dunbarb2b8a912010-07-19 17:11:33 +0000204
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000205public:
Chandler Carruthd7fa2e02012-01-31 02:21:20 +0000206 Darwin(const Driver &D, const llvm::Triple& Triple);
Daniel Dunbarf0a5b9b2009-09-04 18:34:51 +0000207 ~Darwin();
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000208
Chad Rosierd3a0f952011-09-20 20:44:06 +0000209 std::string ComputeEffectiveClangTriple(const ArgList &Args,
210 types::ID InputType) const;
Daniel Dunbar82eb4ce2010-08-23 22:35:37 +0000211
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000212 /// @name Darwin Specific Toolchain API
213 /// {
214
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000215 // FIXME: Eliminate these ...Target functions and derive separate tool chains
216 // for these targets and put version in constructor.
Daniel Dunbarb1189432011-04-30 04:18:16 +0000217 void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor,
218 unsigned Micro, bool IsIOSSim) const {
219 assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!");
220
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000221 // FIXME: For now, allow reinitialization as long as values don't
222 // change. This will go away when we move away from argument translation.
Daniel Dunbarb1189432011-04-30 04:18:16 +0000223 if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS &&
224 TargetIsIPhoneOSSimulator == IsIOSSim &&
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000225 TargetVersion == VersionTuple(Major, Minor, Micro))
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000226 return;
227
228 assert(!TargetInitialized && "Target already initialized!");
229 TargetInitialized = true;
Daniel Dunbarb1189432011-04-30 04:18:16 +0000230 TargetIsIPhoneOS = IsIPhoneOS;
231 TargetIsIPhoneOSSimulator = IsIOSSim;
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000232 TargetVersion = VersionTuple(Major, Minor, Micro);
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000233 }
234
235 bool isTargetIPhoneOS() const {
236 assert(TargetInitialized && "Target not initialized!");
237 return TargetIsIPhoneOS;
238 }
239
Daniel Dunbarebc34df2011-03-31 17:12:33 +0000240 bool isTargetIOSSimulator() const {
Daniel Dunbarb1189432011-04-30 04:18:16 +0000241 assert(TargetInitialized && "Target not initialized!");
242 return TargetIsIPhoneOSSimulator;
Daniel Dunbarebc34df2011-03-31 17:12:33 +0000243 }
244
Ted Kremeneke65b0862012-03-06 20:05:56 +0000245 bool isTargetMacOS() const {
246 return !isTargetIOSSimulator() &&
247 !isTargetIPhoneOS() &&
John McCall5fb5df92012-06-20 06:18:46 +0000248 TargetSimulatorVersionFromDefines == VersionTuple();
Ted Kremeneke65b0862012-03-06 20:05:56 +0000249 }
250
Daniel Dunbar47d25b12010-03-20 00:50:21 +0000251 bool isTargetInitialized() const { return TargetInitialized; }
252
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000253 VersionTuple getTargetVersion() const {
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000254 assert(TargetInitialized && "Target not initialized!");
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000255 return TargetVersion;
Daniel Dunbar3b8e50d2010-01-27 00:56:25 +0000256 }
257
Daniel Dunbardcc3b652010-01-22 02:04:58 +0000258 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
259 /// invocation. For example, Darwin treats different ARM variations as
260 /// distinct architectures.
Chris Lattner01cf8db2011-07-20 06:58:45 +0000261 StringRef getDarwinArchName(const ArgList &Args) const;
Daniel Dunbardcc3b652010-01-22 02:04:58 +0000262
Daniel Dunbar83608032010-01-27 00:56:56 +0000263 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
264 assert(isTargetIPhoneOS() && "Unexpected call for OS X target!");
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000265 return TargetVersion < VersionTuple(V0, V1, V2);
Daniel Dunbar6d23b2f2010-01-27 00:57:03 +0000266 }
267
268 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
269 assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!");
Benjamin Kramerddefa6d2012-03-10 20:55:36 +0000270 return TargetVersion < VersionTuple(V0, V1, V2);
Daniel Dunbar83608032010-01-27 00:56:56 +0000271 }
272
John McCall31168b02011-06-15 23:02:42 +0000273 /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library.
274 virtual void AddLinkARCArgs(const ArgList &Args,
275 ArgStringList &CmdArgs) const = 0;
276
Daniel Dunbar26d482a2009-09-18 08:15:03 +0000277 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
278 /// runtime library.
Daniel Dunbar6276f992009-09-18 08:15:13 +0000279 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
280 ArgStringList &CmdArgs) const = 0;
Eric Christopherc235d0c62011-06-22 17:41:40 +0000281
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000282 /// }
283 /// @name ToolChain Implementation
284 /// {
285
Daniel Dunbarcc7df6c2010-08-02 05:43:56 +0000286 virtual types::ID LookupTypeForExtension(const char *Ext) const;
287
Daniel Dunbar62123a12010-09-17 00:24:52 +0000288 virtual bool HasNativeLLVMSupport() const;
289
John McCall5fb5df92012-06-20 06:18:46 +0000290 virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const;
John McCall7959fee2011-09-09 20:41:01 +0000291 virtual bool hasBlocksRuntime() const;
John McCall31168b02011-06-15 23:02:42 +0000292
Daniel Dunbar775d4062010-06-11 22:00:26 +0000293 virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args,
Daniel Dunbare7af3412009-09-09 18:36:12 +0000294 const char *BoundArch) const;
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000295
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000296 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
297 const ActionList &Inputs) const;
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000298
Daniel Dunbar4930e332009-11-17 08:07:36 +0000299 virtual bool IsBlocksDefault() const {
Daniel Dunbara66a4d12010-07-22 00:40:31 +0000300 // Always allow blocks on Darwin; users interested in versioning are
301 // expected to use /usr/include/Blocks.h.
302 return true;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000303 }
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000304 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbara99a3c12010-06-23 18:15:13 +0000305#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
306 return false;
307#else
Jim Grosbach2e166242012-02-27 23:55:25 +0000308 // Default integrated assembler to on for Darwin.
309 return true;
Daniel Dunbara99a3c12010-06-23 18:15:13 +0000310#endif
Daniel Dunbarf9ff3502010-05-14 02:03:00 +0000311 }
Daniel Dunbar7aa71f92011-02-04 02:20:39 +0000312 virtual bool IsStrictAliasingDefault() const {
313#ifdef DISABLE_DEFAULT_STRICT_ALIASING
314 return false;
315#else
316 return ToolChain::IsStrictAliasingDefault();
317#endif
318 }
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000319
320 virtual bool IsMathErrnoDefault() const {
321 return false;
322 }
323
Ted Kremenek1d56c9e2010-12-23 21:35:43 +0000324 virtual bool IsObjCDefaultSynthPropertiesDefault() const {
Ted Kremenekd151dde2012-03-06 20:06:15 +0000325 return true;
Ted Kremenek1d56c9e2010-12-23 21:35:43 +0000326 }
327
Daniel Dunbar4930e332009-11-17 08:07:36 +0000328 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000329 // Non-fragile ABI is default for everything but i386.
330 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar4930e332009-11-17 08:07:36 +0000331 }
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000332
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +0000333 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbardf3d1c22010-04-24 18:37:41 +0000334 // This is only used with the non-fragile ABI and non-legacy dispatch.
335
336 // Mixed dispatch is used everywhere except OS X before 10.6.
337 return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6));
Daniel Dunbarfca18c1b42010-04-24 17:56:46 +0000338 }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000339 virtual bool IsUnwindTablesDefault() const;
Nico Weberdd473632011-08-23 07:38:27 +0000340 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
341 // Stack protectors default to on for user code on 10.5,
342 // and for everything in 10.6 and beyond
Bob Wilson721d4b82011-12-14 06:08:25 +0000343 return isTargetIPhoneOS() ||
Nico Weberdd473632011-08-23 07:38:27 +0000344 (!isMacosxVersionLT(10, 6) ||
345 (!isMacosxVersionLT(10, 5) && !KernelOrKext));
Daniel Dunbar4930e332009-11-17 08:07:36 +0000346 }
Daniel Dunbarf4916cd2011-12-07 23:03:15 +0000347 virtual RuntimeLibType GetDefaultRuntimeLibType() const {
348 return ToolChain::RLT_CompilerRT;
349 }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000350 virtual const char *GetDefaultRelocationModel() const;
351 virtual const char *GetForcedPicModel() const;
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000352
Daniel Dunbar733b0f82011-03-01 18:49:30 +0000353 virtual bool SupportsProfiling() const;
354
Daniel Dunbar16334e12010-04-10 16:20:23 +0000355 virtual bool SupportsObjCGC() const;
356
Argyrios Kyrtzidis3dbeb552012-02-29 03:43:52 +0000357 virtual bool SupportsObjCARC() const;
358
Daniel Dunbar24c7f5e2009-12-18 02:43:17 +0000359 virtual bool UseDwarfDebugFlags() const;
360
Daniel Dunbar3241d402010-02-10 18:49:11 +0000361 virtual bool UseSjLjExceptions() const;
362
Daniel Dunbar4c30b892009-09-18 08:14:36 +0000363 /// }
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000364};
365
Daniel Dunbar6276f992009-09-18 08:15:13 +0000366/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000367class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Bob Wilson3e42bc52011-09-20 22:00:38 +0000368private:
369 void AddGCCLibexecPath(unsigned darwinVersion);
370
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000371public:
Chandler Carruthd7fa2e02012-01-31 02:21:20 +0000372 DarwinClang(const Driver &D, const llvm::Triple& Triple);
Daniel Dunbar6276f992009-09-18 08:15:13 +0000373
374 /// @name Darwin ToolChain Implementation
375 /// {
376
Daniel Dunbar6276f992009-09-18 08:15:13 +0000377 virtual void AddLinkRuntimeLibArgs(const ArgList &Args,
378 ArgStringList &CmdArgs) const;
Eric Christopherc235d0c62011-06-22 17:41:40 +0000379 void AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs,
380 const char *DarwinStaticLib) const;
381
Daniel Dunbar3f7796f2010-09-17 01:20:05 +0000382 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
383 ArgStringList &CmdArgs) const;
Daniel Dunbar8fa86b12010-09-17 01:16:06 +0000384
Shantonu Senafeb03b2010-09-17 18:39:08 +0000385 virtual void AddCCKextLibArgs(const ArgList &Args,
386 ArgStringList &CmdArgs) const;
387
John McCall31168b02011-06-15 23:02:42 +0000388 virtual void AddLinkARCArgs(const ArgList &Args,
389 ArgStringList &CmdArgs) const;
Daniel Dunbar6276f992009-09-18 08:15:13 +0000390 /// }
391};
392
Daniel Dunbar6276f992009-09-18 08:15:13 +0000393/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000394class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar6276f992009-09-18 08:15:13 +0000395public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000396 Darwin_Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
397 : Generic_GCC(D, Triple, Args) {}
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000398
Chad Rosierd3a0f952011-09-20 20:44:06 +0000399 std::string ComputeEffectiveClangTriple(const ArgList &Args,
400 types::ID InputType) const;
Daniel Dunbar82eb4ce2010-08-23 22:35:37 +0000401
Daniel Dunbar03e0a4f2009-03-20 00:57:52 +0000402 virtual const char *GetDefaultRelocationModel() const { return "pic"; }
403};
404
Rafael Espindolaacc87092010-10-29 20:14:02 +0000405class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {
David Blaikie68e081d2011-12-20 02:48:34 +0000406 virtual void anchor();
407public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000408 Generic_ELF(const Driver &D, const llvm::Triple& Triple, const ArgList &Args)
409 : Generic_GCC(D, Triple, Args) {}
Rafael Espindolaacc87092010-10-29 20:14:02 +0000410
411 virtual bool IsIntegratedAssemblerDefault() const {
412 // Default integrated assembler to on for x86.
413 return (getTriple().getArch() == llvm::Triple::x86 ||
414 getTriple().getArch() == llvm::Triple::x86_64);
415 }
416};
417
Duncan Sandsaf260b92010-05-11 20:16:05 +0000418class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000419public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000420 AuroraUX(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000421
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000422 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
423 const ActionList &Inputs) const;
Edward O'Callaghan856e4ff2009-08-22 01:06:46 +0000424};
425
David Chisnallf571cde2012-02-15 13:39:01 +0000426class LLVM_LIBRARY_VISIBILITY Solaris : public Generic_GCC {
427public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000428 Solaris(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
David Chisnallf571cde2012-02-15 13:39:01 +0000429
430 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
431 const ActionList &Inputs) const;
432
433 virtual bool IsIntegratedAssemblerDefault() const { return true; }
434};
435
436
Rafael Espindolaacc87092010-10-29 20:14:02 +0000437class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF {
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000438public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000439 OpenBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000440
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000441 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000442 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000443
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000444 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
445 const ActionList &Inputs) const;
Daniel Dunbar10de9e62009-06-29 20:52:51 +0000446};
447
Eli Friedman9fa28852012-08-08 23:57:20 +0000448class LLVM_LIBRARY_VISIBILITY Bitrig : public Generic_ELF {
449public:
450 Bitrig(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
451
452 virtual bool IsMathErrnoDefault() const { return false; }
453 virtual bool IsObjCNonFragileABIDefault() const { return true; }
454 virtual bool IsObjCLegacyDispatchDefault() const { return false; }
455
456 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
457 const ActionList &Inputs) const;
458
459 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
460 ArgStringList &CC1Args) const;
461 virtual void AddCXXStdlibLibArgs(const ArgList &Args,
462 ArgStringList &CmdArgs) const;
463 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
464 return 1;
465 }
466};
467
Rafael Espindolaacc87092010-10-29 20:14:02 +0000468class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF {
Daniel Dunbare24297c2009-03-30 21:06:03 +0000469public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000470 FreeBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbare24297c2009-03-30 21:06:03 +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
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000475 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
476 const ActionList &Inputs) const;
Daniel Dunbare24297c2009-03-30 21:06:03 +0000477};
478
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000479class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
480public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000481 NetBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000482
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000483 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000484 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnalla27cf0e2012-04-09 12:33:41 +0000485
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000486 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
487 const ActionList &Inputs) const;
Benjamin Kramer24f1d3e2011-02-02 18:59:27 +0000488};
489
Eli Friedman83de5132011-12-08 23:54:21 +0000490class LLVM_LIBRARY_VISIBILITY Minix : public Generic_ELF {
Chris Lattner3e2ee142010-07-07 16:01:42 +0000491public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000492 Minix(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Chris Lattner3e2ee142010-07-07 16:01:42 +0000493
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000494 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
495 const ActionList &Inputs) const;
Chris Lattner3e2ee142010-07-07 16:01:42 +0000496};
497
Rafael Espindolaacc87092010-10-29 20:14:02 +0000498class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
Daniel Dunbarcc912342009-05-02 18:28:39 +0000499public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000500 DragonFly(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Daniel Dunbarcc912342009-05-02 18:28:39 +0000501
Benjamin Kramerc242ef22012-05-02 14:55:48 +0000502 virtual bool IsMathErrnoDefault() const { return false; }
503
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000504 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
505 const ActionList &Inputs) const;
Daniel Dunbarcc912342009-05-02 18:28:39 +0000506};
507
Rafael Espindolaacc87092010-10-29 20:14:02 +0000508class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF {
Eli Friedman5cd659f2009-05-26 07:52:18 +0000509public:
Rafael Espindola1af7c212012-02-19 01:38:32 +0000510 Linux(const Driver &D, const llvm::Triple& Triple, const ArgList &Args);
Rafael Espindola92b00932010-08-10 00:25:48 +0000511
Rafael Espindolac8f008f2010-11-07 20:14:31 +0000512 virtual bool HasNativeLLVMSupport() const;
513
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000514 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
515 const ActionList &Inputs) const;
Rafael Espindolac8f008f2010-11-07 20:14:31 +0000516
Chandler Carrutha796f532011-11-05 20:17:13 +0000517 virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs,
518 ArgStringList &CC1Args) const;
Rafael Espindola66aa0452012-06-19 01:26:10 +0000519 virtual void addClangTargetOptions(ArgStringList &CC1Args) const;
Chandler Carrutha796f532011-11-05 20:17:13 +0000520 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
521 ArgStringList &CC1Args) const;
522
Rafael Espindolac8f008f2010-11-07 20:14:31 +0000523 std::string Linker;
524 std::vector<std::string> ExtraOpts;
Chandler Carruth1fc603e2011-12-17 23:10:01 +0000525
526private:
527 static bool addLibStdCXXIncludePaths(Twine Base, Twine TargetArchDir,
528 const ArgList &DriverArgs,
529 ArgStringList &CC1Args);
Eli Friedman5cd659f2009-05-26 07:52:18 +0000530};
531
532
Chris Lattner09797542010-03-04 21:07:38 +0000533/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
534/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sandsaf260b92010-05-11 20:16:05 +0000535class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner09797542010-03-04 21:07:38 +0000536public:
Chandler Carruthd7fa2e02012-01-31 02:21:20 +0000537 TCEToolChain(const Driver &D, const llvm::Triple& Triple);
Chris Lattner09797542010-03-04 21:07:38 +0000538 ~TCEToolChain();
539
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000540 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
541 const ActionList &Inputs) const;
Chris Lattner09797542010-03-04 21:07:38 +0000542 bool IsMathErrnoDefault() const;
543 bool IsUnwindTablesDefault() const;
544 const char* GetDefaultRelocationModel() const;
545 const char* GetForcedPicModel() const;
546
547private:
548 mutable llvm::DenseMap<unsigned, Tool*> Tools;
549
550};
551
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000552class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain {
553 mutable llvm::DenseMap<unsigned, Tool*> Tools;
554
555public:
Chandler Carruthd7fa2e02012-01-31 02:21:20 +0000556 Windows(const Driver &D, const llvm::Triple& Triple);
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000557
Daniel Dunbar1e1c3ca2011-03-18 20:14:00 +0000558 virtual Tool &SelectTool(const Compilation &C, const JobAction &JA,
559 const ActionList &Inputs) const;
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000560
Fariborz Jahanianc934dab2012-08-03 21:51:38 +0000561 virtual bool IsObjCDefaultSynthPropertiesDefault() const {
562 return true;
563 }
564
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000565 virtual bool IsIntegratedAssemblerDefault() const;
566 virtual bool IsUnwindTablesDefault() const;
567 virtual const char *GetDefaultRelocationModel() const;
568 virtual const char *GetForcedPicModel() const;
Chandler Carruthdf527832011-11-04 23:49:05 +0000569
570 virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs,
571 ArgStringList &CC1Args) const;
572 virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs,
573 ArgStringList &CC1Args) const;
574
Michael J. Spencerb186bc32010-08-21 21:55:07 +0000575};
576
Daniel Dunbar0a248bb2009-03-17 21:38:00 +0000577} // end namespace toolchains
578} // end namespace driver
579} // end namespace clang
580
581#endif