blob: b3b1d2c6f7c0de9f9aa7061a13a2cbfea75bf061 [file] [log] [blame]
Daniel Dunbar83b08eb2009-03-17 21:38:00 +00001//===--- ToolChains.h - ToolChain Implementations ---------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef CLANG_LIB_DRIVER_TOOLCHAINS_H_
11#define CLANG_LIB_DRIVER_TOOLCHAINS_H_
12
Chandler Carruth55fc8732012-12-04 09:13:33 +000013#include "Tools.h"
14#include "clang/Basic/VersionTuple.h"
Daniel Dunbar670b7f42009-03-17 22:07:31 +000015#include "clang/Driver/Action.h"
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000016#include "clang/Driver/ToolChain.h"
Daniel Dunbar670b7f42009-03-17 22:07:31 +000017#include "llvm/ADT/DenseMap.h"
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000018#include "llvm/Support/Compiler.h"
Rafael Espindolaa2654612013-06-11 20:06:05 +000019#include <vector>
Benjamin Kramerf15b26c2013-08-14 18:38:51 +000020#include <set>
Rafael Espindolaa2654612013-06-11 20:06:05 +000021
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000022namespace clang {
23namespace driver {
Daniel Dunbar985b8252009-03-17 22:18:43 +000024namespace toolchains {
Daniel Dunbar83b08eb2009-03-17 21:38:00 +000025
Daniel Dunbar1d4612b2009-09-18 08:15:13 +000026/// Generic_GCC - A tool chain using the 'gcc' command to perform
27/// all subcommands; this relies on gcc translating the majority of
28/// command line options.
Duncan Sands92dd1912010-05-11 20:16:05 +000029class LLVM_LIBRARY_VISIBILITY Generic_GCC : public ToolChain {
Daniel Dunbar75358d22009-03-30 21:06:03 +000030protected:
Chandler Carruth19347ed2011-11-06 23:39:34 +000031 /// \brief Struct to store and manipulate GCC versions.
32 ///
33 /// We rely on assumptions about the form and structure of GCC version
34 /// numbers: they consist of at most three '.'-separated components, and each
35 /// component is a non-negative integer except for the last component. For
36 /// the last component we are very flexible in order to tolerate release
37 /// candidates or 'x' wildcards.
38 ///
39 /// Note that the ordering established among GCCVersions is based on the
40 /// preferred version string to use. For example we prefer versions without
41 /// a hard-coded patch number to those with a hard coded patch number.
42 ///
43 /// Currently this doesn't provide any logic for textual suffixes to patches
44 /// in the way that (for example) Debian's version format does. If that ever
45 /// becomes necessary, it can be added.
46 struct GCCVersion {
47 /// \brief The unparsed text of the version.
48 std::string Text;
49
50 /// \brief The parsed major, minor, and patch numbers.
51 int Major, Minor, Patch;
52
Chandler Carruth0affc672013-08-26 08:59:53 +000053 /// \brief The text of the parsed major, and major+minor versions.
54 std::string MajorStr, MinorStr;
55
Chandler Carruth19347ed2011-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 Kramered5f28f2013-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 Carruth19347ed2011-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 Carruth19347ed2011-11-06 23:39:34 +000078 bool IsValid;
Simon Atanasyan4e30cdf2013-10-10 07:57:44 +000079 const Driver &D;
Chandler Carruthfa5be912012-01-24 19:28:29 +000080 llvm::Triple GCCTriple;
Chandler Carruth19347ed2011-11-06 23:39:34 +000081
82 // FIXME: These might be better as path objects.
Chandler Carruth5d84bb42012-01-24 19:21:42 +000083 std::string GCCInstallPath;
Chandler Carruthd79486a2013-06-22 11:35:51 +000084 std::string GCCBiarchSuffix;
Chandler Carruth5d84bb42012-01-24 19:21:42 +000085 std::string GCCParentLibPath;
Simon Atanasyan5c805e92013-09-28 13:45:11 +000086 std::string GCCMultiLibSuffix;
Chandler Carruth19347ed2011-11-06 23:39:34 +000087
88 GCCVersion Version;
89
Chandler Carruth6365ab92013-07-30 17:57:09 +000090 // We retain the list of install paths that were considered and rejected in
91 // order to print out detailed information in verbose mode.
Benjamin Kramerf15b26c2013-08-14 18:38:51 +000092 std::set<std::string> CandidateGCCInstallPaths;
Chandler Carruth6365ab92013-07-30 17:57:09 +000093
Chandler Carruth19347ed2011-11-06 23:39:34 +000094 public:
Rafael Espindola0e659592012-02-19 01:38:32 +000095 GCCInstallationDetector(const Driver &D, const llvm::Triple &TargetTriple,
Reid Klecknerdd0b3c42013-06-17 13:59:19 +000096 const llvm::opt::ArgList &Args);
Chandler Carruth19347ed2011-11-06 23:39:34 +000097
98 /// \brief Check whether we detected a valid GCC install.
99 bool isValid() const { return IsValid; }
100
101 /// \brief Get the GCC triple for the detected install.
Chandler Carruthfa5be912012-01-24 19:28:29 +0000102 const llvm::Triple &getTriple() const { return GCCTriple; }
Chandler Carruth19347ed2011-11-06 23:39:34 +0000103
104 /// \brief Get the detected GCC installation path.
Chandler Carruth5d84bb42012-01-24 19:21:42 +0000105 StringRef getInstallPath() const { return GCCInstallPath; }
Chandler Carruth19347ed2011-11-06 23:39:34 +0000106
Chandler Carruthd79486a2013-06-22 11:35:51 +0000107 /// \brief Get the detected GCC installation path suffix for the bi-arch
108 /// target variant.
109 StringRef getBiarchSuffix() const { return GCCBiarchSuffix; }
Chandler Carruth1c6f04a2012-01-25 07:21:38 +0000110
Chandler Carruth19347ed2011-11-06 23:39:34 +0000111 /// \brief Get the detected GCC parent lib path.
Chandler Carruth5d84bb42012-01-24 19:21:42 +0000112 StringRef getParentLibPath() const { return GCCParentLibPath; }
Chandler Carruth19347ed2011-11-06 23:39:34 +0000113
Simon Atanasyan5c805e92013-09-28 13:45:11 +0000114 /// \brief Get the detected GCC lib path suffix.
115 StringRef getMultiLibSuffix() const { return GCCMultiLibSuffix; }
116
Chandler Carruth19347ed2011-11-06 23:39:34 +0000117 /// \brief Get the detected GCC version string.
Rafael Espindola8af669f2012-06-19 01:26:10 +0000118 const GCCVersion &getVersion() const { return Version; }
Chandler Carruth19347ed2011-11-06 23:39:34 +0000119
Chandler Carruth6365ab92013-07-30 17:57:09 +0000120 /// \brief Print information about the detected GCC installation.
121 void print(raw_ostream &OS) const;
122
Chandler Carruth19347ed2011-11-06 23:39:34 +0000123 private:
Chandler Carruthd79486a2013-06-22 11:35:51 +0000124 static void
125 CollectLibDirsAndTriples(const llvm::Triple &TargetTriple,
126 const llvm::Triple &BiarchTriple,
127 SmallVectorImpl<StringRef> &LibDirs,
128 SmallVectorImpl<StringRef> &TripleAliases,
129 SmallVectorImpl<StringRef> &BiarchLibDirs,
130 SmallVectorImpl<StringRef> &BiarchTripleAliases);
Chandler Carruth19347ed2011-11-06 23:39:34 +0000131
Chandler Carruth1c6f04a2012-01-25 07:21:38 +0000132 void ScanLibDirForGCCTriple(llvm::Triple::ArchType TargetArch,
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000133 const llvm::opt::ArgList &Args,
Chandler Carruthd936d9d2011-11-09 03:46:20 +0000134 const std::string &LibDir,
Chandler Carruth1c6f04a2012-01-25 07:21:38 +0000135 StringRef CandidateTriple,
Chandler Carruthd79486a2013-06-22 11:35:51 +0000136 bool NeedsBiarchSuffix = false);
Simon Atanasyan4e30cdf2013-10-10 07:57:44 +0000137
138 void findMultiLibSuffix(std::string &Suffix,
139 llvm::Triple::ArchType TargetArch,
140 StringRef Path,
141 const llvm::opt::ArgList &Args);
Chandler Carruth19347ed2011-11-06 23:39:34 +0000142 };
143
144 GCCInstallationDetector GCCInstallation;
145
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000146public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000147 Generic_GCC(const Driver &D, const llvm::Triple &Triple,
148 const llvm::opt::ArgList &Args);
Daniel Dunbar39176082009-03-20 00:20:03 +0000149 ~Generic_GCC();
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000150
Chandler Carruth6365ab92013-07-30 17:57:09 +0000151 virtual void printVerboseInfo(raw_ostream &OS) const;
152
Daniel Dunbar39176082009-03-20 00:20:03 +0000153 virtual bool IsUnwindTablesDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000154 virtual bool isPICDefault() const;
Peter Collingbourne52ca70d2013-04-09 04:35:11 +0000155 virtual bool isPIEDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000156 virtual bool isPICDefaultForced() const;
Chandler Carruthb37fe612011-11-06 23:39:37 +0000157
158protected:
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000159 virtual Tool *getTool(Action::ActionClass AC) const;
160 virtual Tool *buildAssembler() const;
161 virtual Tool *buildLinker() const;
162
Chandler Carruthb37fe612011-11-06 23:39:37 +0000163 /// \name ToolChain Implementation Helper Functions
164 /// @{
165
166 /// \brief Check whether the target triple's architecture is 64-bits.
Chandler Carruthd747efa2012-02-11 03:31:12 +0000167 bool isTarget64Bit() const { return getTriple().isArch64Bit(); }
168
Chandler Carruthb37fe612011-11-06 23:39:37 +0000169 /// \brief Check whether the target triple's architecture is 32-bits.
Chandler Carruthd747efa2012-02-11 03:31:12 +0000170 bool isTarget32Bit() const { return getTriple().isArch32Bit(); }
Chandler Carruthb37fe612011-11-06 23:39:37 +0000171
172 /// @}
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000173
174private:
175 mutable OwningPtr<tools::gcc::Preprocess> Preprocess;
176 mutable OwningPtr<tools::gcc::Precompile> Precompile;
177 mutable OwningPtr<tools::gcc::Compile> Compile;
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000178};
179
Tony Linthicum96319392011-12-12 21:14:55 +0000180 /// Darwin - The base Darwin tool chain.
Duncan Sands92dd1912010-05-11 20:16:05 +0000181class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain {
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000182public:
183 /// The host version.
184 unsigned DarwinVersion[3];
185
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000186protected:
187 virtual Tool *buildAssembler() const;
188 virtual Tool *buildLinker() const;
189 virtual Tool *getTool(Action::ActionClass AC) const;
190
Daniel Dunbar25b58eb2010-08-02 05:44:07 +0000191private:
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000192 mutable OwningPtr<tools::darwin::Lipo> Lipo;
193 mutable OwningPtr<tools::darwin::Dsymutil> Dsymutil;
194 mutable OwningPtr<tools::darwin::VerifyDebug> VerifyDebug;
195
Daniel Dunbar26031372010-01-27 00:56:25 +0000196 /// Whether the information on the target has been initialized.
197 //
198 // FIXME: This should be eliminated. What we want to do is make this part of
199 // the "default target for arguments" selection process, once we get out of
200 // the argument translation business.
201 mutable bool TargetInitialized;
202
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000203 /// Whether we are targeting iPhoneOS target.
Daniel Dunbar26031372010-01-27 00:56:25 +0000204 mutable bool TargetIsIPhoneOS;
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000205
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000206 /// Whether we are targeting the iPhoneOS simulator target.
207 mutable bool TargetIsIPhoneOSSimulator;
208
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000209 /// The OS version we are targeting.
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000210 mutable VersionTuple TargetVersion;
Daniel Dunbar26031372010-01-27 00:56:25 +0000211
John McCall260611a2012-06-20 06:18:46 +0000212private:
Daniel Dunbar02633b52009-03-26 16:23:12 +0000213 /// The default macosx-version-min of this tool chain; empty until
214 /// initialized.
Daniel Dunbar816bc312010-01-26 01:45:19 +0000215 std::string MacosxVersionMin;
Daniel Dunbar02633b52009-03-26 16:23:12 +0000216
Chad Rosier4ec26782012-05-09 18:37:26 +0000217 /// The default ios-version-min of this tool chain; empty until
218 /// initialized.
219 std::string iOSVersionMin;
220
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000221private:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000222 void AddDeploymentTarget(llvm::opt::DerivedArgList &Args) const;
Daniel Dunbarc0e665e2010-07-19 17:11:33 +0000223
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000224public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000225 Darwin(const Driver &D, const llvm::Triple &Triple,
226 const llvm::opt::ArgList &Args);
Daniel Dunbarf3955282009-09-04 18:34:51 +0000227 ~Darwin();
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000228
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000229 std::string ComputeEffectiveClangTriple(const llvm::opt::ArgList &Args,
Chad Rosier61ab80a2011-09-20 20:44:06 +0000230 types::ID InputType) const;
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000231
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000232 /// @name Darwin Specific Toolchain API
233 /// {
234
Daniel Dunbar26031372010-01-27 00:56:25 +0000235 // FIXME: Eliminate these ...Target functions and derive separate tool chains
236 // for these targets and put version in constructor.
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000237 void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor,
238 unsigned Micro, bool IsIOSSim) const {
239 assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!");
240
Daniel Dunbar26031372010-01-27 00:56:25 +0000241 // FIXME: For now, allow reinitialization as long as values don't
242 // change. This will go away when we move away from argument translation.
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000243 if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS &&
244 TargetIsIPhoneOSSimulator == IsIOSSim &&
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000245 TargetVersion == VersionTuple(Major, Minor, Micro))
Daniel Dunbar26031372010-01-27 00:56:25 +0000246 return;
247
248 assert(!TargetInitialized && "Target already initialized!");
249 TargetInitialized = true;
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000250 TargetIsIPhoneOS = IsIPhoneOS;
251 TargetIsIPhoneOSSimulator = IsIOSSim;
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000252 TargetVersion = VersionTuple(Major, Minor, Micro);
Daniel Dunbar26031372010-01-27 00:56:25 +0000253 }
254
255 bool isTargetIPhoneOS() const {
256 assert(TargetInitialized && "Target not initialized!");
257 return TargetIsIPhoneOS;
258 }
259
Daniel Dunbar40355802011-03-31 17:12:33 +0000260 bool isTargetIOSSimulator() const {
Daniel Dunbar5f5c37b2011-04-30 04:18:16 +0000261 assert(TargetInitialized && "Target not initialized!");
262 return TargetIsIPhoneOSSimulator;
Daniel Dunbar40355802011-03-31 17:12:33 +0000263 }
264
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000265 bool isTargetMacOS() const {
Bob Wilson377e5c12012-11-09 01:59:30 +0000266 return !isTargetIOSSimulator() && !isTargetIPhoneOS();
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000267 }
268
Daniel Dunbar03d87ee2010-03-20 00:50:21 +0000269 bool isTargetInitialized() const { return TargetInitialized; }
270
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000271 VersionTuple getTargetVersion() const {
Daniel Dunbar26031372010-01-27 00:56:25 +0000272 assert(TargetInitialized && "Target not initialized!");
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000273 return TargetVersion;
Daniel Dunbar26031372010-01-27 00:56:25 +0000274 }
275
Daniel Dunbareeff4062010-01-22 02:04:58 +0000276 /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler
277 /// invocation. For example, Darwin treats different ARM variations as
278 /// distinct architectures.
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000279 StringRef getDarwinArchName(const llvm::opt::ArgList &Args) const;
Daniel Dunbareeff4062010-01-22 02:04:58 +0000280
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000281 bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
282 assert(isTargetIPhoneOS() && "Unexpected call for OS X target!");
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000283 return TargetVersion < VersionTuple(V0, V1, V2);
Daniel Dunbarce3fdf22010-01-27 00:57:03 +0000284 }
285
286 bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const {
287 assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!");
Benjamin Kramer09c9a562012-03-10 20:55:36 +0000288 return TargetVersion < VersionTuple(V0, V1, V2);
Daniel Dunbarcacb0f02010-01-27 00:56:56 +0000289 }
290
John McCallf85e1932011-06-15 23:02:42 +0000291 /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library.
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000292 virtual void AddLinkARCArgs(const llvm::opt::ArgList &Args,
293 llvm::opt::ArgStringList &CmdArgs) const = 0;
294
Daniel Dunbar6cd41542009-09-18 08:15:03 +0000295 /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler
296 /// runtime library.
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000297 virtual void
298 AddLinkRuntimeLibArgs(const llvm::opt::ArgList &Args,
299 llvm::opt::ArgStringList &CmdArgs) const = 0;
300
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000301 /// }
302 /// @name ToolChain Implementation
303 /// {
304
Daniel Dunbar41800112010-08-02 05:43:56 +0000305 virtual types::ID LookupTypeForExtension(const char *Ext) const;
306
Daniel Dunbarb993f5d2010-09-17 00:24:52 +0000307 virtual bool HasNativeLLVMSupport() const;
308
John McCall260611a2012-06-20 06:18:46 +0000309 virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const;
John McCall13db5cf2011-09-09 20:41:01 +0000310 virtual bool hasBlocksRuntime() const;
John McCallf85e1932011-06-15 23:02:42 +0000311
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000312 virtual llvm::opt::DerivedArgList *
313 TranslateArgs(const llvm::opt::DerivedArgList &Args,
314 const char *BoundArch) const;
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000315
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000316 virtual bool IsBlocksDefault() const {
Daniel Dunbaref44a5d2010-07-22 00:40:31 +0000317 // Always allow blocks on Darwin; users interested in versioning are
318 // expected to use /usr/include/Blocks.h.
319 return true;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000320 }
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000321 virtual bool IsIntegratedAssemblerDefault() const {
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000322#ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER
323 return false;
324#else
Jim Grosbach033d3002012-02-27 23:55:25 +0000325 // Default integrated assembler to on for Darwin.
326 return true;
Daniel Dunbar71a6cbc2010-06-23 18:15:13 +0000327#endif
Daniel Dunbareb840bd2010-05-14 02:03:00 +0000328 }
Daniel Dunbar398c6102011-02-04 02:20:39 +0000329 virtual bool IsStrictAliasingDefault() const {
330#ifdef DISABLE_DEFAULT_STRICT_ALIASING
331 return false;
332#else
333 return ToolChain::IsStrictAliasingDefault();
334#endif
335 }
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000336
337 virtual bool IsMathErrnoDefault() const {
338 return false;
339 }
340
Fariborz Jahanian3d145f62012-11-15 19:02:45 +0000341 virtual bool IsEncodeExtendedBlockSignatureDefault() const {
342 return true;
343 }
344
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000345 virtual bool IsObjCNonFragileABIDefault() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000346 // Non-fragile ABI is default for everything but i386.
347 return getTriple().getArch() != llvm::Triple::x86;
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000348 }
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000349
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000350 virtual bool UseObjCMixedDispatch() const {
Daniel Dunbarf645aaa2010-04-24 18:37:41 +0000351 // This is only used with the non-fragile ABI and non-legacy dispatch.
352
353 // Mixed dispatch is used everywhere except OS X before 10.6.
354 return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6));
Daniel Dunbarf643b9b2010-04-24 17:56:46 +0000355 }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000356 virtual bool IsUnwindTablesDefault() const;
Nico Weber2fef1112011-08-23 07:38:27 +0000357 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
358 // Stack protectors default to on for user code on 10.5,
359 // and for everything in 10.6 and beyond
Bob Wilsondfba0272011-12-14 06:08:25 +0000360 return isTargetIPhoneOS() ||
Nico Weber2fef1112011-08-23 07:38:27 +0000361 (!isMacosxVersionLT(10, 6) ||
362 (!isMacosxVersionLT(10, 5) && !KernelOrKext));
Daniel Dunbar9e5cc6b2009-11-17 08:07:36 +0000363 }
Daniel Dunbarc24767c2011-12-07 23:03:15 +0000364 virtual RuntimeLibType GetDefaultRuntimeLibType() const {
365 return ToolChain::RLT_CompilerRT;
366 }
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000367 virtual bool isPICDefault() const;
Peter Collingbourne52ca70d2013-04-09 04:35:11 +0000368 virtual bool isPIEDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000369 virtual bool isPICDefaultForced() const;
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000370
Daniel Dunbarbbe8e3e2011-03-01 18:49:30 +0000371 virtual bool SupportsProfiling() const;
372
Daniel Dunbar43a9b322010-04-10 16:20:23 +0000373 virtual bool SupportsObjCGC() const;
374
John McCall0a7dd782012-08-21 02:47:43 +0000375 virtual void CheckObjCARC() const;
Argyrios Kyrtzidis5840dd92012-02-29 03:43:52 +0000376
Daniel Dunbarf2d8b9f2009-12-18 02:43:17 +0000377 virtual bool UseDwarfDebugFlags() const;
378
Daniel Dunbarb2987d12010-02-10 18:49:11 +0000379 virtual bool UseSjLjExceptions() const;
380
Daniel Dunbar6b200b22009-09-18 08:14:36 +0000381 /// }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000382};
383
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000384/// DarwinClang - The Darwin toolchain used by Clang.
Duncan Sands92dd1912010-05-11 20:16:05 +0000385class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin {
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000386public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000387 DarwinClang(const Driver &D, const llvm::Triple &Triple,
388 const llvm::opt::ArgList &Args);
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000389
390 /// @name Darwin ToolChain Implementation
391 /// {
392
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000393 virtual void AddLinkRuntimeLibArgs(const llvm::opt::ArgList &Args,
394 llvm::opt::ArgStringList &CmdArgs) const;
395 void AddLinkRuntimeLib(const llvm::opt::ArgList &Args,
396 llvm::opt::ArgStringList &CmdArgs,
Alexey Samsonov69b77d72012-11-21 14:17:42 +0000397 const char *DarwinStaticLib,
398 bool AlwaysLink = false) const;
399
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000400 virtual void AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,
401 llvm::opt::ArgStringList &CmdArgs) const;
Daniel Dunbarefe91ea2010-09-17 01:16:06 +0000402
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000403 virtual void AddCCKextLibArgs(const llvm::opt::ArgList &Args,
404 llvm::opt::ArgStringList &CmdArgs) const;
Shantonu Sen7433fed2010-09-17 18:39:08 +0000405
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000406 virtual void AddLinkARCArgs(const llvm::opt::ArgList &Args,
407 llvm::opt::ArgStringList &CmdArgs) const;
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000408 /// }
409};
410
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000411/// Darwin_Generic_GCC - Generic Darwin tool chain using gcc.
Duncan Sands92dd1912010-05-11 20:16:05 +0000412class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC {
Daniel Dunbar1d4612b2009-09-18 08:15:13 +0000413public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000414 Darwin_Generic_GCC(const Driver &D, const llvm::Triple &Triple,
415 const llvm::opt::ArgList &Args)
416 : Generic_GCC(D, Triple, Args) {}
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000417
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000418 std::string ComputeEffectiveClangTriple(const llvm::opt::ArgList &Args,
Chad Rosier61ab80a2011-09-20 20:44:06 +0000419 types::ID InputType) const;
Daniel Dunbar00577ad2010-08-23 22:35:37 +0000420
Chad Rosierf8fc6272012-11-27 17:31:26 +0000421 virtual bool isPICDefault() const { return false; }
Daniel Dunbar8eddb3f2009-03-20 00:57:52 +0000422};
423
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000424class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC {
David Blaikie99ba9e32011-12-20 02:48:34 +0000425 virtual void anchor();
426public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000427 Generic_ELF(const Driver &D, const llvm::Triple &Triple,
428 const llvm::opt::ArgList &Args)
429 : Generic_GCC(D, Triple, Args) {}
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000430
431 virtual bool IsIntegratedAssemblerDefault() const {
432 // Default integrated assembler to on for x86.
Tim Northoverc264e162013-01-31 12:13:10 +0000433 return (getTriple().getArch() == llvm::Triple::aarch64 ||
434 getTriple().getArch() == llvm::Triple::x86 ||
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000435 getTriple().getArch() == llvm::Triple::x86_64);
436 }
437};
438
Duncan Sands92dd1912010-05-11 20:16:05 +0000439class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC {
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000440public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000441 AuroraUX(const Driver &D, const llvm::Triple &Triple,
442 const llvm::opt::ArgList &Args);
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000443
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000444protected:
445 virtual Tool *buildAssembler() const;
446 virtual Tool *buildLinker() const;
Edward O'Callaghane7925a02009-08-22 01:06:46 +0000447};
448
David Chisnall31c46902012-02-15 13:39:01 +0000449class LLVM_LIBRARY_VISIBILITY Solaris : public Generic_GCC {
450public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000451 Solaris(const Driver &D, const llvm::Triple &Triple,
452 const llvm::opt::ArgList &Args);
David Chisnall31c46902012-02-15 13:39:01 +0000453
David Chisnall31c46902012-02-15 13:39:01 +0000454 virtual bool IsIntegratedAssemblerDefault() const { return true; }
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000455protected:
456 virtual Tool *buildAssembler() const;
457 virtual Tool *buildLinker() const;
458
David Chisnall31c46902012-02-15 13:39:01 +0000459};
460
461
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000462class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF {
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000463public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000464 OpenBSD(const Driver &D, const llvm::Triple &Triple,
465 const llvm::opt::ArgList &Args);
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000466
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000467 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000468 virtual bool IsObjCNonFragileABIDefault() const { return true; }
Rafael Espindola9adba392013-06-05 04:28:55 +0000469 virtual bool isPIEDefault() const { return true; }
470
471 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
472 return 1;
473 }
David Chisnallc3cb0722012-04-09 12:33:41 +0000474
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000475protected:
476 virtual Tool *buildAssembler() const;
477 virtual Tool *buildLinker() const;
Daniel Dunbarf7b8eec2009-06-29 20:52:51 +0000478};
479
Eli Friedman42f74f22012-08-08 23:57:20 +0000480class LLVM_LIBRARY_VISIBILITY Bitrig : public Generic_ELF {
481public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000482 Bitrig(const Driver &D, const llvm::Triple &Triple,
483 const llvm::opt::ArgList &Args);
Eli Friedman42f74f22012-08-08 23:57:20 +0000484
485 virtual bool IsMathErrnoDefault() const { return false; }
486 virtual bool IsObjCNonFragileABIDefault() const { return true; }
487 virtual bool IsObjCLegacyDispatchDefault() const { return false; }
488
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000489 virtual void
490 AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
491 llvm::opt::ArgStringList &CC1Args) const;
492 virtual void AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,
493 llvm::opt::ArgStringList &CmdArgs) const;
Eli Friedman42f74f22012-08-08 23:57:20 +0000494 virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const {
495 return 1;
496 }
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000497
498protected:
499 virtual Tool *buildAssembler() const;
500 virtual Tool *buildLinker() const;
Eli Friedman42f74f22012-08-08 23:57:20 +0000501};
502
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000503class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF {
Daniel Dunbar75358d22009-03-30 21:06:03 +0000504public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000505 FreeBSD(const Driver &D, const llvm::Triple &Triple,
506 const llvm::opt::ArgList &Args);
Daniel Dunbar75358d22009-03-30 21:06:03 +0000507
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000508 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000509 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000510
Rafael Espindola27fa2362012-12-13 04:17:14 +0000511 virtual bool UseSjLjExceptions() const;
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000512protected:
513 virtual Tool *buildAssembler() const;
514 virtual Tool *buildLinker() const;
Daniel Dunbar75358d22009-03-30 21:06:03 +0000515};
516
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000517class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF {
518public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000519 NetBSD(const Driver &D, const llvm::Triple &Triple,
520 const llvm::opt::ArgList &Args);
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000521
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000522 virtual bool IsMathErrnoDefault() const { return false; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000523 virtual bool IsObjCNonFragileABIDefault() const { return true; }
David Chisnallc3cb0722012-04-09 12:33:41 +0000524
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000525 virtual CXXStdlibType GetCXXStdlibType(const llvm::opt::ArgList &Args) const;
Joerg Sonnenbergera7efaf92013-04-30 01:21:43 +0000526
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000527 virtual void
528 AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
529 llvm::opt::ArgStringList &CC1Args) const;
Joerg Sonnenbergerba7fd422013-08-15 15:08:33 +0000530 virtual bool IsUnwindTablesDefault() const {
531 return true;
532 }
Joerg Sonnenberger14605ff2013-08-15 15:04:56 +0000533 virtual bool IsIntegratedAssemblerDefault() const {
534 if (getTriple().getArch() == llvm::Triple::ppc)
535 return true;
536 return Generic_ELF::IsIntegratedAssemblerDefault();
537 }
Joerg Sonnenbergera7efaf92013-04-30 01:21:43 +0000538
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000539protected:
540 virtual Tool *buildAssembler() const;
541 virtual Tool *buildLinker() const;
Benjamin Kramer8e50a962011-02-02 18:59:27 +0000542};
543
Eli Friedman6d402dc2011-12-08 23:54:21 +0000544class LLVM_LIBRARY_VISIBILITY Minix : public Generic_ELF {
Chris Lattner38e317d2010-07-07 16:01:42 +0000545public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000546 Minix(const Driver &D, const llvm::Triple &Triple,
547 const llvm::opt::ArgList &Args);
Chris Lattner38e317d2010-07-07 16:01:42 +0000548
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000549protected:
550 virtual Tool *buildAssembler() const;
551 virtual Tool *buildLinker() const;
Chris Lattner38e317d2010-07-07 16:01:42 +0000552};
553
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000554class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF {
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000555public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000556 DragonFly(const Driver &D, const llvm::Triple &Triple,
557 const llvm::opt::ArgList &Args);
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000558
Benjamin Kramer769aa2d2012-05-02 14:55:48 +0000559 virtual bool IsMathErrnoDefault() const { return false; }
560
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000561protected:
562 virtual Tool *buildAssembler() const;
563 virtual Tool *buildLinker() const;
Daniel Dunbar11e1b402009-05-02 18:28:39 +0000564};
565
Rafael Espindolae43cfa12010-10-29 20:14:02 +0000566class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF {
Eli Friedman6b3454a2009-05-26 07:52:18 +0000567public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000568 Linux(const Driver &D, const llvm::Triple &Triple,
569 const llvm::opt::ArgList &Args);
Rafael Espindolaba30bbe2010-08-10 00:25:48 +0000570
Rafael Espindolac1da9812010-11-07 20:14:31 +0000571 virtual bool HasNativeLLVMSupport() const;
572
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000573 virtual void
574 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
575 llvm::opt::ArgStringList &CC1Args) const;
576 virtual void addClangTargetOptions(const llvm::opt::ArgList &DriverArgs,
577 llvm::opt::ArgStringList &CC1Args) const;
578 virtual void
579 AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
580 llvm::opt::ArgStringList &CC1Args) const;
Peter Collingbourne52ca70d2013-04-09 04:35:11 +0000581 virtual bool isPIEDefault() const;
Chandler Carruth7d7e9f92011-11-05 20:17:13 +0000582
Rafael Espindolac1da9812010-11-07 20:14:31 +0000583 std::string Linker;
584 std::vector<std::string> ExtraOpts;
Chandler Carruth79cbbdc2011-12-17 23:10:01 +0000585
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000586protected:
587 virtual Tool *buildAssembler() const;
588 virtual Tool *buildLinker() const;
589
Chandler Carruth79cbbdc2011-12-17 23:10:01 +0000590private:
Dmitri Gribenkof2e7c352013-03-06 17:14:05 +0000591 static bool addLibStdCXXIncludePaths(Twine Base, Twine Suffix,
592 Twine TargetArchDir,
593 Twine MultiLibSuffix,
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000594 const llvm::opt::ArgList &DriverArgs,
595 llvm::opt::ArgStringList &CC1Args);
Chandler Carruth79cbbdc2011-12-17 23:10:01 +0000596 static bool addLibStdCXXIncludePaths(Twine Base, Twine TargetArchDir,
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000597 const llvm::opt::ArgList &DriverArgs,
598 llvm::opt::ArgStringList &CC1Args);
Simon Atanasyan8e8e95c2013-04-20 08:15:03 +0000599
Simon Atanasyanab5df752013-10-05 14:37:55 +0000600 std::string computeSysRoot() const;
Eli Friedman6b3454a2009-05-26 07:52:18 +0000601};
602
Matthew Curtisb3489a02012-12-06 12:43:18 +0000603class LLVM_LIBRARY_VISIBILITY Hexagon_TC : public Linux {
604protected:
Matthew Curtisb3489a02012-12-06 12:43:18 +0000605 GCCVersion GCCLibAndIncVersion;
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000606 virtual Tool *buildAssembler() const;
607 virtual Tool *buildLinker() const;
Matthew Curtisb3489a02012-12-06 12:43:18 +0000608
609public:
610 Hexagon_TC(const Driver &D, const llvm::Triple &Triple,
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000611 const llvm::opt::ArgList &Args);
Matthew Curtisb3489a02012-12-06 12:43:18 +0000612 ~Hexagon_TC();
613
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000614 virtual void
615 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
616 llvm::opt::ArgStringList &CC1Args) const;
617 virtual void
618 AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
619 llvm::opt::ArgStringList &CC1Args) const;
620 virtual CXXStdlibType GetCXXStdlibType(const llvm::opt::ArgList &Args) const;
Matthew Curtisb3489a02012-12-06 12:43:18 +0000621
622 StringRef GetGCCLibAndIncVersion() const { return GCCLibAndIncVersion.Text; }
623
624 static std::string GetGnuDir(const std::string &InstalledDir);
Matthew Curtis67814152012-12-06 14:16:43 +0000625
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000626 static StringRef GetTargetCPU(const llvm::opt::ArgList &Args);
Matthew Curtisb3489a02012-12-06 12:43:18 +0000627};
Eli Friedman6b3454a2009-05-26 07:52:18 +0000628
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000629/// TCEToolChain - A tool chain using the llvm bitcode tools to perform
630/// all subcommands. See http://tce.cs.tut.fi for our peculiar target.
Duncan Sands92dd1912010-05-11 20:16:05 +0000631class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain {
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000632public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000633 TCEToolChain(const Driver &D, const llvm::Triple &Triple,
634 const llvm::opt::ArgList &Args);
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000635 ~TCEToolChain();
636
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000637 bool IsMathErrnoDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000638 bool isPICDefault() const;
Peter Collingbourne52ca70d2013-04-09 04:35:11 +0000639 bool isPIEDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000640 bool isPICDefaultForced() const;
Chris Lattner3a47c4e2010-03-04 21:07:38 +0000641};
642
Michael J. Spencerff58e362010-08-21 21:55:07 +0000643class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain {
Michael J. Spencerff58e362010-08-21 21:55:07 +0000644public:
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000645 Windows(const Driver &D, const llvm::Triple &Triple,
646 const llvm::opt::ArgList &Args);
Michael J. Spencerff58e362010-08-21 21:55:07 +0000647
Michael J. Spencerff58e362010-08-21 21:55:07 +0000648 virtual bool IsIntegratedAssemblerDefault() const;
649 virtual bool IsUnwindTablesDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000650 virtual bool isPICDefault() const;
Peter Collingbourne52ca70d2013-04-09 04:35:11 +0000651 virtual bool isPIEDefault() const;
Chandler Carruth7ce816a2012-11-19 03:52:03 +0000652 virtual bool isPICDefaultForced() const;
Chandler Carruthca234192011-11-04 23:49:05 +0000653
Reid Klecknerdd0b3c42013-06-17 13:59:19 +0000654 virtual void
655 AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
656 llvm::opt::ArgStringList &CC1Args) const;
657 virtual void
658 AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
659 llvm::opt::ArgStringList &CC1Args) const;
660
Rafael Espindolaf48b93c2013-03-20 03:05:54 +0000661protected:
662 virtual Tool *buildLinker() const;
663 virtual Tool *buildAssembler() const;
Michael J. Spencerff58e362010-08-21 21:55:07 +0000664};
665
Robert Lytton4e490e22013-10-11 10:29:40 +0000666
667class LLVM_LIBRARY_VISIBILITY XCore : public ToolChain {
668public:
669 XCore(const Driver &D, const llvm::Triple &Triple,
670 const llvm::opt::ArgList &Args);
671protected:
672 virtual Tool *buildAssembler() const;
673 virtual Tool *buildLinker() const;
674public:
675 virtual bool isPICDefault() const;
676 virtual bool isPIEDefault() const;
677 virtual bool isPICDefaultForced() const;
678 virtual bool SupportsProfiling() const;
679 virtual bool hasBlocksRuntime() const;
680 virtual void AddClangSystemIncludeArgs(const llvm::opt::ArgList &DriverArgs,
681 llvm::opt::ArgStringList &CC1Args) const;
682 virtual void addClangTargetOptions(const llvm::opt::ArgList &DriverArgs,
683 llvm::opt::ArgStringList &CC1Args) const;
684 virtual void AddClangCXXStdlibIncludeArgs(const llvm::opt::ArgList &DriverArgs,
685 llvm::opt::ArgStringList &CC1Args) const;
686 virtual void AddCXXStdlibLibArgs(const llvm::opt::ArgList &Args,
687 llvm::opt::ArgStringList &CmdArgs) const;
688};
689
Daniel Dunbar83b08eb2009-03-17 21:38:00 +0000690} // end namespace toolchains
691} // end namespace driver
692} // end namespace clang
693
694#endif