Daniel Dunbar | 83b08eb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 1 | //===--- 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 Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 13 | #include "Tools.h" |
| 14 | #include "clang/Basic/VersionTuple.h" |
Daniel Dunbar | 670b7f4 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 15 | #include "clang/Driver/Action.h" |
Daniel Dunbar | 83b08eb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 16 | #include "clang/Driver/ToolChain.h" |
Daniel Dunbar | 670b7f4 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/DenseMap.h" |
Daniel Dunbar | 83b08eb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Compiler.h" |
| 19 | |
| 20 | namespace clang { |
| 21 | namespace driver { |
Daniel Dunbar | 985b825 | 2009-03-17 22:18:43 +0000 | [diff] [blame] | 22 | namespace toolchains { |
Daniel Dunbar | 83b08eb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 23 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 24 | /// Generic_GCC - A tool chain using the 'gcc' command to perform |
| 25 | /// all subcommands; this relies on gcc translating the majority of |
| 26 | /// command line options. |
Duncan Sands | 92dd191 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 27 | class LLVM_LIBRARY_VISIBILITY Generic_GCC : public ToolChain { |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 28 | protected: |
Chandler Carruth | 19347ed | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 29 | /// \brief Struct to store and manipulate GCC versions. |
| 30 | /// |
| 31 | /// We rely on assumptions about the form and structure of GCC version |
| 32 | /// numbers: they consist of at most three '.'-separated components, and each |
| 33 | /// component is a non-negative integer except for the last component. For |
| 34 | /// the last component we are very flexible in order to tolerate release |
| 35 | /// candidates or 'x' wildcards. |
| 36 | /// |
| 37 | /// Note that the ordering established among GCCVersions is based on the |
| 38 | /// preferred version string to use. For example we prefer versions without |
| 39 | /// a hard-coded patch number to those with a hard coded patch number. |
| 40 | /// |
| 41 | /// Currently this doesn't provide any logic for textual suffixes to patches |
| 42 | /// in the way that (for example) Debian's version format does. If that ever |
| 43 | /// becomes necessary, it can be added. |
| 44 | struct GCCVersion { |
| 45 | /// \brief The unparsed text of the version. |
| 46 | std::string Text; |
| 47 | |
| 48 | /// \brief The parsed major, minor, and patch numbers. |
| 49 | int Major, Minor, Patch; |
| 50 | |
| 51 | /// \brief Any textual suffix on the patch number. |
| 52 | std::string PatchSuffix; |
| 53 | |
| 54 | static GCCVersion Parse(StringRef VersionText); |
| 55 | bool operator<(const GCCVersion &RHS) const; |
| 56 | bool operator>(const GCCVersion &RHS) const { return RHS < *this; } |
| 57 | bool operator<=(const GCCVersion &RHS) const { return !(*this > RHS); } |
| 58 | bool operator>=(const GCCVersion &RHS) const { return !(*this < RHS); } |
| 59 | }; |
| 60 | |
| 61 | |
| 62 | /// \brief This is a class to find a viable GCC installation for Clang to |
| 63 | /// use. |
| 64 | /// |
| 65 | /// This class tries to find a GCC installation on the system, and report |
| 66 | /// information about it. It starts from the host information provided to the |
| 67 | /// Driver, and has logic for fuzzing that where appropriate. |
| 68 | class GCCInstallationDetector { |
| 69 | |
| 70 | bool IsValid; |
Chandler Carruth | fa5be91 | 2012-01-24 19:28:29 +0000 | [diff] [blame] | 71 | llvm::Triple GCCTriple; |
Chandler Carruth | 19347ed | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 72 | |
| 73 | // FIXME: These might be better as path objects. |
Chandler Carruth | 5d84bb4 | 2012-01-24 19:21:42 +0000 | [diff] [blame] | 74 | std::string GCCInstallPath; |
Chandler Carruth | 1c6f04a | 2012-01-25 07:21:38 +0000 | [diff] [blame] | 75 | std::string GCCMultiarchSuffix; |
Chandler Carruth | 5d84bb4 | 2012-01-24 19:21:42 +0000 | [diff] [blame] | 76 | std::string GCCParentLibPath; |
Chandler Carruth | 19347ed | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 77 | |
| 78 | GCCVersion Version; |
| 79 | |
| 80 | public: |
Rafael Espindola | 0e65959 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 81 | GCCInstallationDetector(const Driver &D, const llvm::Triple &TargetTriple, |
| 82 | const ArgList &Args); |
Chandler Carruth | 19347ed | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 83 | |
| 84 | /// \brief Check whether we detected a valid GCC install. |
| 85 | bool isValid() const { return IsValid; } |
| 86 | |
| 87 | /// \brief Get the GCC triple for the detected install. |
Chandler Carruth | fa5be91 | 2012-01-24 19:28:29 +0000 | [diff] [blame] | 88 | const llvm::Triple &getTriple() const { return GCCTriple; } |
Chandler Carruth | 19347ed | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 89 | |
| 90 | /// \brief Get the detected GCC installation path. |
Chandler Carruth | 5d84bb4 | 2012-01-24 19:21:42 +0000 | [diff] [blame] | 91 | StringRef getInstallPath() const { return GCCInstallPath; } |
Chandler Carruth | 19347ed | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 92 | |
Chandler Carruth | 1c6f04a | 2012-01-25 07:21:38 +0000 | [diff] [blame] | 93 | /// \brief Get the detected GCC installation path suffix for multiarch GCCs. |
| 94 | StringRef getMultiarchSuffix() const { return GCCMultiarchSuffix; } |
| 95 | |
Chandler Carruth | 19347ed | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 96 | /// \brief Get the detected GCC parent lib path. |
Chandler Carruth | 5d84bb4 | 2012-01-24 19:21:42 +0000 | [diff] [blame] | 97 | StringRef getParentLibPath() const { return GCCParentLibPath; } |
Chandler Carruth | 19347ed | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 98 | |
| 99 | /// \brief Get the detected GCC version string. |
Rafael Espindola | 8af669f | 2012-06-19 01:26:10 +0000 | [diff] [blame] | 100 | const GCCVersion &getVersion() const { return Version; } |
Chandler Carruth | 19347ed | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 101 | |
| 102 | private: |
Chandler Carruth | 1c6f04a | 2012-01-25 07:21:38 +0000 | [diff] [blame] | 103 | static void CollectLibDirsAndTriples( |
| 104 | const llvm::Triple &TargetTriple, |
| 105 | const llvm::Triple &MultiarchTriple, |
| 106 | SmallVectorImpl<StringRef> &LibDirs, |
| 107 | SmallVectorImpl<StringRef> &TripleAliases, |
| 108 | SmallVectorImpl<StringRef> &MultiarchLibDirs, |
| 109 | SmallVectorImpl<StringRef> &MultiarchTripleAliases); |
Chandler Carruth | 19347ed | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 110 | |
Chandler Carruth | 1c6f04a | 2012-01-25 07:21:38 +0000 | [diff] [blame] | 111 | void ScanLibDirForGCCTriple(llvm::Triple::ArchType TargetArch, |
Simon Atanasyan | f4bd329 | 2012-10-21 11:44:57 +0000 | [diff] [blame] | 112 | const ArgList &Args, |
Chandler Carruth | d936d9d | 2011-11-09 03:46:20 +0000 | [diff] [blame] | 113 | const std::string &LibDir, |
Chandler Carruth | 1c6f04a | 2012-01-25 07:21:38 +0000 | [diff] [blame] | 114 | StringRef CandidateTriple, |
| 115 | bool NeedsMultiarchSuffix = false); |
Chandler Carruth | 19347ed | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 116 | }; |
| 117 | |
| 118 | GCCInstallationDetector GCCInstallation; |
| 119 | |
Daniel Dunbar | 670b7f4 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 120 | mutable llvm::DenseMap<unsigned, Tool*> Tools; |
| 121 | |
Daniel Dunbar | 83b08eb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 122 | public: |
Rafael Espindola | 0e65959 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 123 | Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 124 | ~Generic_GCC(); |
Daniel Dunbar | 83b08eb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 125 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 126 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Daniel Dunbar | 670b7f4 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 127 | |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 128 | virtual bool IsUnwindTablesDefault() const; |
Chandler Carruth | 7ce816a | 2012-11-19 03:52:03 +0000 | [diff] [blame] | 129 | virtual bool isPICDefault() const; |
| 130 | virtual bool isPICDefaultForced() const; |
Chandler Carruth | b37fe61 | 2011-11-06 23:39:37 +0000 | [diff] [blame] | 131 | |
| 132 | protected: |
| 133 | /// \name ToolChain Implementation Helper Functions |
| 134 | /// @{ |
| 135 | |
| 136 | /// \brief Check whether the target triple's architecture is 64-bits. |
Chandler Carruth | d747efa | 2012-02-11 03:31:12 +0000 | [diff] [blame] | 137 | bool isTarget64Bit() const { return getTriple().isArch64Bit(); } |
| 138 | |
Chandler Carruth | b37fe61 | 2011-11-06 23:39:37 +0000 | [diff] [blame] | 139 | /// \brief Check whether the target triple's architecture is 32-bits. |
Chandler Carruth | d747efa | 2012-02-11 03:31:12 +0000 | [diff] [blame] | 140 | bool isTarget32Bit() const { return getTriple().isArch32Bit(); } |
Chandler Carruth | b37fe61 | 2011-11-06 23:39:37 +0000 | [diff] [blame] | 141 | |
| 142 | /// @} |
Daniel Dunbar | 83b08eb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 143 | }; |
| 144 | |
Tony Linthicum | 9631939 | 2011-12-12 21:14:55 +0000 | [diff] [blame] | 145 | /// Darwin - The base Darwin tool chain. |
Duncan Sands | 92dd191 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 146 | class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain { |
Daniel Dunbar | 25b58eb | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 147 | public: |
| 148 | /// The host version. |
| 149 | unsigned DarwinVersion[3]; |
| 150 | |
| 151 | private: |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 152 | mutable llvm::DenseMap<unsigned, Tool*> Tools; |
| 153 | |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 154 | /// Whether the information on the target has been initialized. |
| 155 | // |
| 156 | // FIXME: This should be eliminated. What we want to do is make this part of |
| 157 | // the "default target for arguments" selection process, once we get out of |
| 158 | // the argument translation business. |
| 159 | mutable bool TargetInitialized; |
| 160 | |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 161 | /// Whether we are targeting iPhoneOS target. |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 162 | mutable bool TargetIsIPhoneOS; |
Daniel Dunbar | eb840bd | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 163 | |
Daniel Dunbar | 5f5c37b | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 164 | /// Whether we are targeting the iPhoneOS simulator target. |
| 165 | mutable bool TargetIsIPhoneOSSimulator; |
| 166 | |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 167 | /// The OS version we are targeting. |
Benjamin Kramer | 09c9a56 | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 168 | mutable VersionTuple TargetVersion; |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 169 | |
John McCall | 260611a | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 170 | private: |
Daniel Dunbar | 02633b5 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 171 | /// The default macosx-version-min of this tool chain; empty until |
| 172 | /// initialized. |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 173 | std::string MacosxVersionMin; |
Daniel Dunbar | 02633b5 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 174 | |
Chad Rosier | 4ec2678 | 2012-05-09 18:37:26 +0000 | [diff] [blame] | 175 | /// The default ios-version-min of this tool chain; empty until |
| 176 | /// initialized. |
| 177 | std::string iOSVersionMin; |
| 178 | |
Daniel Dunbar | c0e665e | 2010-07-19 17:11:33 +0000 | [diff] [blame] | 179 | private: |
Daniel Dunbar | 60baf0f | 2010-07-19 17:11:36 +0000 | [diff] [blame] | 180 | void AddDeploymentTarget(DerivedArgList &Args) const; |
Daniel Dunbar | c0e665e | 2010-07-19 17:11:33 +0000 | [diff] [blame] | 181 | |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 182 | public: |
Chandler Carruth | 1d16f0f | 2012-01-31 02:21:20 +0000 | [diff] [blame] | 183 | Darwin(const Driver &D, const llvm::Triple& Triple); |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 184 | ~Darwin(); |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 185 | |
Chad Rosier | 61ab80a | 2011-09-20 20:44:06 +0000 | [diff] [blame] | 186 | std::string ComputeEffectiveClangTriple(const ArgList &Args, |
| 187 | types::ID InputType) const; |
Daniel Dunbar | 00577ad | 2010-08-23 22:35:37 +0000 | [diff] [blame] | 188 | |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 189 | /// @name Darwin Specific Toolchain API |
| 190 | /// { |
| 191 | |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 192 | // FIXME: Eliminate these ...Target functions and derive separate tool chains |
| 193 | // for these targets and put version in constructor. |
Daniel Dunbar | 5f5c37b | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 194 | void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor, |
| 195 | unsigned Micro, bool IsIOSSim) const { |
| 196 | assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!"); |
| 197 | |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 198 | // FIXME: For now, allow reinitialization as long as values don't |
| 199 | // change. This will go away when we move away from argument translation. |
Daniel Dunbar | 5f5c37b | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 200 | if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS && |
| 201 | TargetIsIPhoneOSSimulator == IsIOSSim && |
Benjamin Kramer | 09c9a56 | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 202 | TargetVersion == VersionTuple(Major, Minor, Micro)) |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 203 | return; |
| 204 | |
| 205 | assert(!TargetInitialized && "Target already initialized!"); |
| 206 | TargetInitialized = true; |
Daniel Dunbar | 5f5c37b | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 207 | TargetIsIPhoneOS = IsIPhoneOS; |
| 208 | TargetIsIPhoneOSSimulator = IsIOSSim; |
Benjamin Kramer | 09c9a56 | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 209 | TargetVersion = VersionTuple(Major, Minor, Micro); |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | bool isTargetIPhoneOS() const { |
| 213 | assert(TargetInitialized && "Target not initialized!"); |
| 214 | return TargetIsIPhoneOS; |
| 215 | } |
| 216 | |
Daniel Dunbar | 4035580 | 2011-03-31 17:12:33 +0000 | [diff] [blame] | 217 | bool isTargetIOSSimulator() const { |
Daniel Dunbar | 5f5c37b | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 218 | assert(TargetInitialized && "Target not initialized!"); |
| 219 | return TargetIsIPhoneOSSimulator; |
Daniel Dunbar | 4035580 | 2011-03-31 17:12:33 +0000 | [diff] [blame] | 220 | } |
| 221 | |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 222 | bool isTargetMacOS() const { |
Bob Wilson | 377e5c1 | 2012-11-09 01:59:30 +0000 | [diff] [blame] | 223 | return !isTargetIOSSimulator() && !isTargetIPhoneOS(); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 224 | } |
| 225 | |
Daniel Dunbar | 03d87ee | 2010-03-20 00:50:21 +0000 | [diff] [blame] | 226 | bool isTargetInitialized() const { return TargetInitialized; } |
| 227 | |
Benjamin Kramer | 09c9a56 | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 228 | VersionTuple getTargetVersion() const { |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 229 | assert(TargetInitialized && "Target not initialized!"); |
Benjamin Kramer | 09c9a56 | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 230 | return TargetVersion; |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 231 | } |
| 232 | |
Daniel Dunbar | eeff406 | 2010-01-22 02:04:58 +0000 | [diff] [blame] | 233 | /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler |
| 234 | /// invocation. For example, Darwin treats different ARM variations as |
| 235 | /// distinct architectures. |
Chris Lattner | 686775d | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 236 | StringRef getDarwinArchName(const ArgList &Args) const; |
Daniel Dunbar | eeff406 | 2010-01-22 02:04:58 +0000 | [diff] [blame] | 237 | |
Daniel Dunbar | cacb0f0 | 2010-01-27 00:56:56 +0000 | [diff] [blame] | 238 | bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const { |
| 239 | assert(isTargetIPhoneOS() && "Unexpected call for OS X target!"); |
Benjamin Kramer | 09c9a56 | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 240 | return TargetVersion < VersionTuple(V0, V1, V2); |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const { |
| 244 | assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!"); |
Benjamin Kramer | 09c9a56 | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 245 | return TargetVersion < VersionTuple(V0, V1, V2); |
Daniel Dunbar | cacb0f0 | 2010-01-27 00:56:56 +0000 | [diff] [blame] | 246 | } |
| 247 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 248 | /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library. |
| 249 | virtual void AddLinkARCArgs(const ArgList &Args, |
| 250 | ArgStringList &CmdArgs) const = 0; |
| 251 | |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 252 | /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler |
| 253 | /// runtime library. |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 254 | virtual void AddLinkRuntimeLibArgs(const ArgList &Args, |
| 255 | ArgStringList &CmdArgs) const = 0; |
Eric Christopher | 3404fe7 | 2011-06-22 17:41:40 +0000 | [diff] [blame] | 256 | |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 257 | /// } |
| 258 | /// @name ToolChain Implementation |
| 259 | /// { |
| 260 | |
Daniel Dunbar | 4180011 | 2010-08-02 05:43:56 +0000 | [diff] [blame] | 261 | virtual types::ID LookupTypeForExtension(const char *Ext) const; |
| 262 | |
Daniel Dunbar | b993f5d | 2010-09-17 00:24:52 +0000 | [diff] [blame] | 263 | virtual bool HasNativeLLVMSupport() const; |
| 264 | |
John McCall | 260611a | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 265 | virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const; |
John McCall | 13db5cf | 2011-09-09 20:41:01 +0000 | [diff] [blame] | 266 | virtual bool hasBlocksRuntime() const; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 267 | |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 268 | virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args, |
Daniel Dunbar | 0dcb9a3 | 2009-09-09 18:36:12 +0000 | [diff] [blame] | 269 | const char *BoundArch) const; |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 270 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 271 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 272 | |
Daniel Dunbar | 9e5cc6b | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 273 | virtual bool IsBlocksDefault() const { |
Daniel Dunbar | ef44a5d | 2010-07-22 00:40:31 +0000 | [diff] [blame] | 274 | // Always allow blocks on Darwin; users interested in versioning are |
| 275 | // expected to use /usr/include/Blocks.h. |
| 276 | return true; |
Daniel Dunbar | 9e5cc6b | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 277 | } |
Daniel Dunbar | eb840bd | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 278 | virtual bool IsIntegratedAssemblerDefault() const { |
Daniel Dunbar | 71a6cbc | 2010-06-23 18:15:13 +0000 | [diff] [blame] | 279 | #ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER |
| 280 | return false; |
| 281 | #else |
Jim Grosbach | 033d300 | 2012-02-27 23:55:25 +0000 | [diff] [blame] | 282 | // Default integrated assembler to on for Darwin. |
| 283 | return true; |
Daniel Dunbar | 71a6cbc | 2010-06-23 18:15:13 +0000 | [diff] [blame] | 284 | #endif |
Daniel Dunbar | eb840bd | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 285 | } |
Daniel Dunbar | 398c610 | 2011-02-04 02:20:39 +0000 | [diff] [blame] | 286 | virtual bool IsStrictAliasingDefault() const { |
| 287 | #ifdef DISABLE_DEFAULT_STRICT_ALIASING |
| 288 | return false; |
| 289 | #else |
| 290 | return ToolChain::IsStrictAliasingDefault(); |
| 291 | #endif |
| 292 | } |
Benjamin Kramer | 769aa2d | 2012-05-02 14:55:48 +0000 | [diff] [blame] | 293 | |
| 294 | virtual bool IsMathErrnoDefault() const { |
| 295 | return false; |
| 296 | } |
| 297 | |
Fariborz Jahanian | 3d145f6 | 2012-11-15 19:02:45 +0000 | [diff] [blame] | 298 | virtual bool IsEncodeExtendedBlockSignatureDefault() const { |
| 299 | return true; |
| 300 | } |
| 301 | |
Daniel Dunbar | 9e5cc6b | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 302 | virtual bool IsObjCNonFragileABIDefault() const { |
Daniel Dunbar | f645aaa | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 303 | // Non-fragile ABI is default for everything but i386. |
| 304 | return getTriple().getArch() != llvm::Triple::x86; |
Daniel Dunbar | 9e5cc6b | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 305 | } |
Daniel Dunbar | f645aaa | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 306 | |
Daniel Dunbar | f643b9b | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 307 | virtual bool UseObjCMixedDispatch() const { |
Daniel Dunbar | f645aaa | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 308 | // This is only used with the non-fragile ABI and non-legacy dispatch. |
| 309 | |
| 310 | // Mixed dispatch is used everywhere except OS X before 10.6. |
| 311 | return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6)); |
Daniel Dunbar | f643b9b | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 312 | } |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 313 | virtual bool IsUnwindTablesDefault() const; |
Nico Weber | 2fef111 | 2011-08-23 07:38:27 +0000 | [diff] [blame] | 314 | virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const { |
| 315 | // Stack protectors default to on for user code on 10.5, |
| 316 | // and for everything in 10.6 and beyond |
Bob Wilson | dfba027 | 2011-12-14 06:08:25 +0000 | [diff] [blame] | 317 | return isTargetIPhoneOS() || |
Nico Weber | 2fef111 | 2011-08-23 07:38:27 +0000 | [diff] [blame] | 318 | (!isMacosxVersionLT(10, 6) || |
| 319 | (!isMacosxVersionLT(10, 5) && !KernelOrKext)); |
Daniel Dunbar | 9e5cc6b | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 320 | } |
Daniel Dunbar | c24767c | 2011-12-07 23:03:15 +0000 | [diff] [blame] | 321 | virtual RuntimeLibType GetDefaultRuntimeLibType() const { |
| 322 | return ToolChain::RLT_CompilerRT; |
| 323 | } |
Chandler Carruth | 7ce816a | 2012-11-19 03:52:03 +0000 | [diff] [blame] | 324 | virtual bool isPICDefault() const; |
| 325 | virtual bool isPICDefaultForced() const; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 326 | |
Daniel Dunbar | bbe8e3e | 2011-03-01 18:49:30 +0000 | [diff] [blame] | 327 | virtual bool SupportsProfiling() const; |
| 328 | |
Daniel Dunbar | 43a9b32 | 2010-04-10 16:20:23 +0000 | [diff] [blame] | 329 | virtual bool SupportsObjCGC() const; |
| 330 | |
John McCall | 0a7dd78 | 2012-08-21 02:47:43 +0000 | [diff] [blame] | 331 | virtual void CheckObjCARC() const; |
Argyrios Kyrtzidis | 5840dd9 | 2012-02-29 03:43:52 +0000 | [diff] [blame] | 332 | |
Daniel Dunbar | f2d8b9f | 2009-12-18 02:43:17 +0000 | [diff] [blame] | 333 | virtual bool UseDwarfDebugFlags() const; |
| 334 | |
Daniel Dunbar | b2987d1 | 2010-02-10 18:49:11 +0000 | [diff] [blame] | 335 | virtual bool UseSjLjExceptions() const; |
| 336 | |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 337 | /// } |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 338 | }; |
| 339 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 340 | /// DarwinClang - The Darwin toolchain used by Clang. |
Duncan Sands | 92dd191 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 341 | class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 342 | public: |
Chandler Carruth | 1d16f0f | 2012-01-31 02:21:20 +0000 | [diff] [blame] | 343 | DarwinClang(const Driver &D, const llvm::Triple& Triple); |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 344 | |
| 345 | /// @name Darwin ToolChain Implementation |
| 346 | /// { |
| 347 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 348 | virtual void AddLinkRuntimeLibArgs(const ArgList &Args, |
| 349 | ArgStringList &CmdArgs) const; |
Alexey Samsonov | 69b77d7 | 2012-11-21 14:17:42 +0000 | [diff] [blame] | 350 | void AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs, |
| 351 | const char *DarwinStaticLib, |
| 352 | bool AlwaysLink = false) const; |
| 353 | |
Daniel Dunbar | 132e35d | 2010-09-17 01:20:05 +0000 | [diff] [blame] | 354 | virtual void AddCXXStdlibLibArgs(const ArgList &Args, |
| 355 | ArgStringList &CmdArgs) const; |
Daniel Dunbar | efe91ea | 2010-09-17 01:16:06 +0000 | [diff] [blame] | 356 | |
Shantonu Sen | 7433fed | 2010-09-17 18:39:08 +0000 | [diff] [blame] | 357 | virtual void AddCCKextLibArgs(const ArgList &Args, |
| 358 | ArgStringList &CmdArgs) const; |
| 359 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 360 | virtual void AddLinkARCArgs(const ArgList &Args, |
| 361 | ArgStringList &CmdArgs) const; |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 362 | /// } |
| 363 | }; |
| 364 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 365 | /// Darwin_Generic_GCC - Generic Darwin tool chain using gcc. |
Duncan Sands | 92dd191 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 366 | class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC { |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 367 | public: |
Rafael Espindola | 0e65959 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 368 | Darwin_Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args) |
| 369 | : Generic_GCC(D, Triple, Args) {} |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 370 | |
Chad Rosier | 61ab80a | 2011-09-20 20:44:06 +0000 | [diff] [blame] | 371 | std::string ComputeEffectiveClangTriple(const ArgList &Args, |
| 372 | types::ID InputType) const; |
Daniel Dunbar | 00577ad | 2010-08-23 22:35:37 +0000 | [diff] [blame] | 373 | |
Chad Rosier | f8fc627 | 2012-11-27 17:31:26 +0000 | [diff] [blame] | 374 | virtual bool isPICDefault() const { return false; } |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 375 | }; |
| 376 | |
Rafael Espindola | e43cfa1 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 377 | class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC { |
David Blaikie | 99ba9e3 | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 378 | virtual void anchor(); |
| 379 | public: |
Rafael Espindola | 0e65959 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 380 | Generic_ELF(const Driver &D, const llvm::Triple& Triple, const ArgList &Args) |
| 381 | : Generic_GCC(D, Triple, Args) {} |
Rafael Espindola | e43cfa1 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 382 | |
| 383 | virtual bool IsIntegratedAssemblerDefault() const { |
| 384 | // Default integrated assembler to on for x86. |
Tim Northover | c264e16 | 2013-01-31 12:13:10 +0000 | [diff] [blame] | 385 | return (getTriple().getArch() == llvm::Triple::aarch64 || |
| 386 | getTriple().getArch() == llvm::Triple::x86 || |
Rafael Espindola | e43cfa1 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 387 | getTriple().getArch() == llvm::Triple::x86_64); |
| 388 | } |
| 389 | }; |
| 390 | |
Duncan Sands | 92dd191 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 391 | class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC { |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 392 | public: |
Rafael Espindola | 0e65959 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 393 | AuroraUX(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 394 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 395 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 396 | }; |
| 397 | |
David Chisnall | 31c4690 | 2012-02-15 13:39:01 +0000 | [diff] [blame] | 398 | class LLVM_LIBRARY_VISIBILITY Solaris : public Generic_GCC { |
| 399 | public: |
Rafael Espindola | 0e65959 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 400 | Solaris(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); |
David Chisnall | 31c4690 | 2012-02-15 13:39:01 +0000 | [diff] [blame] | 401 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 402 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
David Chisnall | 31c4690 | 2012-02-15 13:39:01 +0000 | [diff] [blame] | 403 | |
| 404 | virtual bool IsIntegratedAssemblerDefault() const { return true; } |
| 405 | }; |
| 406 | |
| 407 | |
Rafael Espindola | e43cfa1 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 408 | class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF { |
Daniel Dunbar | f7b8eec | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 409 | public: |
Rafael Espindola | 0e65959 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 410 | OpenBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); |
Daniel Dunbar | f7b8eec | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 411 | |
Benjamin Kramer | 769aa2d | 2012-05-02 14:55:48 +0000 | [diff] [blame] | 412 | virtual bool IsMathErrnoDefault() const { return false; } |
David Chisnall | c3cb072 | 2012-04-09 12:33:41 +0000 | [diff] [blame] | 413 | virtual bool IsObjCNonFragileABIDefault() const { return true; } |
David Chisnall | c3cb072 | 2012-04-09 12:33:41 +0000 | [diff] [blame] | 414 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 415 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Daniel Dunbar | f7b8eec | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 416 | }; |
| 417 | |
Eli Friedman | 42f74f2 | 2012-08-08 23:57:20 +0000 | [diff] [blame] | 418 | class LLVM_LIBRARY_VISIBILITY Bitrig : public Generic_ELF { |
| 419 | public: |
| 420 | Bitrig(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); |
| 421 | |
| 422 | virtual bool IsMathErrnoDefault() const { return false; } |
| 423 | virtual bool IsObjCNonFragileABIDefault() const { return true; } |
| 424 | virtual bool IsObjCLegacyDispatchDefault() const { return false; } |
| 425 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 426 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Eli Friedman | 42f74f2 | 2012-08-08 23:57:20 +0000 | [diff] [blame] | 427 | |
| 428 | virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs, |
| 429 | ArgStringList &CC1Args) const; |
| 430 | virtual void AddCXXStdlibLibArgs(const ArgList &Args, |
| 431 | ArgStringList &CmdArgs) const; |
| 432 | virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const { |
| 433 | return 1; |
| 434 | } |
| 435 | }; |
| 436 | |
Rafael Espindola | e43cfa1 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 437 | class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF { |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 438 | public: |
Rafael Espindola | 0e65959 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 439 | FreeBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 440 | |
Benjamin Kramer | 769aa2d | 2012-05-02 14:55:48 +0000 | [diff] [blame] | 441 | virtual bool IsMathErrnoDefault() const { return false; } |
David Chisnall | c3cb072 | 2012-04-09 12:33:41 +0000 | [diff] [blame] | 442 | virtual bool IsObjCNonFragileABIDefault() const { return true; } |
David Chisnall | c3cb072 | 2012-04-09 12:33:41 +0000 | [diff] [blame] | 443 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 444 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Rafael Espindola | 27fa236 | 2012-12-13 04:17:14 +0000 | [diff] [blame] | 445 | virtual bool UseSjLjExceptions() const; |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 446 | }; |
| 447 | |
Benjamin Kramer | 8e50a96 | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 448 | class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF { |
| 449 | public: |
Rafael Espindola | 0e65959 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 450 | NetBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); |
Benjamin Kramer | 8e50a96 | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 451 | |
Benjamin Kramer | 769aa2d | 2012-05-02 14:55:48 +0000 | [diff] [blame] | 452 | virtual bool IsMathErrnoDefault() const { return false; } |
David Chisnall | c3cb072 | 2012-04-09 12:33:41 +0000 | [diff] [blame] | 453 | virtual bool IsObjCNonFragileABIDefault() const { return true; } |
David Chisnall | c3cb072 | 2012-04-09 12:33:41 +0000 | [diff] [blame] | 454 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 455 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Benjamin Kramer | 8e50a96 | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 456 | }; |
| 457 | |
Eli Friedman | 6d402dc | 2011-12-08 23:54:21 +0000 | [diff] [blame] | 458 | class LLVM_LIBRARY_VISIBILITY Minix : public Generic_ELF { |
Chris Lattner | 38e317d | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 459 | public: |
Rafael Espindola | 0e65959 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 460 | Minix(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); |
Chris Lattner | 38e317d | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 461 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 462 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Chris Lattner | 38e317d | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 463 | }; |
| 464 | |
Rafael Espindola | e43cfa1 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 465 | class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF { |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 466 | public: |
Rafael Espindola | 0e65959 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 467 | DragonFly(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 468 | |
Benjamin Kramer | 769aa2d | 2012-05-02 14:55:48 +0000 | [diff] [blame] | 469 | virtual bool IsMathErrnoDefault() const { return false; } |
| 470 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 471 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 472 | }; |
| 473 | |
Rafael Espindola | e43cfa1 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 474 | class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF { |
Eli Friedman | 6b3454a | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 475 | public: |
Rafael Espindola | 0e65959 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 476 | Linux(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); |
Rafael Espindola | ba30bbe | 2010-08-10 00:25:48 +0000 | [diff] [blame] | 477 | |
Rafael Espindola | c1da981 | 2010-11-07 20:14:31 +0000 | [diff] [blame] | 478 | virtual bool HasNativeLLVMSupport() const; |
| 479 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 480 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Rafael Espindola | c1da981 | 2010-11-07 20:14:31 +0000 | [diff] [blame] | 481 | |
Chandler Carruth | 7d7e9f9 | 2011-11-05 20:17:13 +0000 | [diff] [blame] | 482 | virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs, |
| 483 | ArgStringList &CC1Args) const; |
Chandler Carruth | a6b2581 | 2012-11-21 23:40:23 +0000 | [diff] [blame] | 484 | virtual void addClangTargetOptions(const ArgList &DriverArgs, |
| 485 | ArgStringList &CC1Args) const; |
Chandler Carruth | 7d7e9f9 | 2011-11-05 20:17:13 +0000 | [diff] [blame] | 486 | virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs, |
| 487 | ArgStringList &CC1Args) const; |
| 488 | |
Rafael Espindola | c1da981 | 2010-11-07 20:14:31 +0000 | [diff] [blame] | 489 | std::string Linker; |
| 490 | std::vector<std::string> ExtraOpts; |
Chandler Carruth | 79cbbdc | 2011-12-17 23:10:01 +0000 | [diff] [blame] | 491 | |
| 492 | private: |
Dmitri Gribenko | f2e7c35 | 2013-03-06 17:14:05 +0000 | [diff] [blame] | 493 | static bool addLibStdCXXIncludePaths(Twine Base, Twine Suffix, |
| 494 | Twine TargetArchDir, |
| 495 | Twine MultiLibSuffix, |
| 496 | const ArgList &DriverArgs, |
| 497 | ArgStringList &CC1Args); |
Chandler Carruth | 79cbbdc | 2011-12-17 23:10:01 +0000 | [diff] [blame] | 498 | static bool addLibStdCXXIncludePaths(Twine Base, Twine TargetArchDir, |
| 499 | const ArgList &DriverArgs, |
| 500 | ArgStringList &CC1Args); |
Eli Friedman | 6b3454a | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 501 | }; |
| 502 | |
Matthew Curtis | b3489a0 | 2012-12-06 12:43:18 +0000 | [diff] [blame] | 503 | class LLVM_LIBRARY_VISIBILITY Hexagon_TC : public Linux { |
| 504 | protected: |
| 505 | mutable llvm::DenseMap<unsigned, Tool*> Tools; |
| 506 | |
| 507 | GCCVersion GCCLibAndIncVersion; |
| 508 | |
| 509 | public: |
| 510 | Hexagon_TC(const Driver &D, const llvm::Triple &Triple, |
| 511 | const ArgList &Args); |
| 512 | ~Hexagon_TC(); |
| 513 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 514 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Matthew Curtis | b3489a0 | 2012-12-06 12:43:18 +0000 | [diff] [blame] | 515 | |
| 516 | virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs, |
| 517 | ArgStringList &CC1Args) const; |
| 518 | virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs, |
| 519 | ArgStringList &CC1Args) const; |
Matthew Curtis | 5fdf350 | 2012-12-06 15:46:07 +0000 | [diff] [blame] | 520 | virtual CXXStdlibType GetCXXStdlibType(const ArgList &Args) const; |
Matthew Curtis | b3489a0 | 2012-12-06 12:43:18 +0000 | [diff] [blame] | 521 | |
| 522 | StringRef GetGCCLibAndIncVersion() const { return GCCLibAndIncVersion.Text; } |
| 523 | |
| 524 | static std::string GetGnuDir(const std::string &InstalledDir); |
Matthew Curtis | 6781415 | 2012-12-06 14:16:43 +0000 | [diff] [blame] | 525 | |
| 526 | static StringRef GetTargetCPU(const ArgList &Args); |
Matthew Curtis | b3489a0 | 2012-12-06 12:43:18 +0000 | [diff] [blame] | 527 | }; |
Eli Friedman | 6b3454a | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 528 | |
Chris Lattner | 3a47c4e | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 529 | /// TCEToolChain - A tool chain using the llvm bitcode tools to perform |
| 530 | /// all subcommands. See http://tce.cs.tut.fi for our peculiar target. |
Duncan Sands | 92dd191 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 531 | class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain { |
Chris Lattner | 3a47c4e | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 532 | public: |
Chandler Carruth | 1d16f0f | 2012-01-31 02:21:20 +0000 | [diff] [blame] | 533 | TCEToolChain(const Driver &D, const llvm::Triple& Triple); |
Chris Lattner | 3a47c4e | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 534 | ~TCEToolChain(); |
| 535 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 536 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Chris Lattner | 3a47c4e | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 537 | bool IsMathErrnoDefault() const; |
Chandler Carruth | 7ce816a | 2012-11-19 03:52:03 +0000 | [diff] [blame] | 538 | bool isPICDefault() const; |
| 539 | bool isPICDefaultForced() const; |
Chris Lattner | 3a47c4e | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 540 | |
| 541 | private: |
| 542 | mutable llvm::DenseMap<unsigned, Tool*> Tools; |
| 543 | |
| 544 | }; |
| 545 | |
Michael J. Spencer | ff58e36 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 546 | class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain { |
| 547 | mutable llvm::DenseMap<unsigned, Tool*> Tools; |
| 548 | |
| 549 | public: |
Chandler Carruth | 1d16f0f | 2012-01-31 02:21:20 +0000 | [diff] [blame] | 550 | Windows(const Driver &D, const llvm::Triple& Triple); |
Michael J. Spencer | ff58e36 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 551 | |
Rafael Espindola | e5dce30 | 2013-03-18 17:25:58 +0000 | [diff] [blame^] | 552 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
Michael J. Spencer | ff58e36 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 553 | |
| 554 | virtual bool IsIntegratedAssemblerDefault() const; |
| 555 | virtual bool IsUnwindTablesDefault() const; |
Chandler Carruth | 7ce816a | 2012-11-19 03:52:03 +0000 | [diff] [blame] | 556 | virtual bool isPICDefault() const; |
| 557 | virtual bool isPICDefaultForced() const; |
Chandler Carruth | ca23419 | 2011-11-04 23:49:05 +0000 | [diff] [blame] | 558 | |
| 559 | virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs, |
| 560 | ArgStringList &CC1Args) const; |
| 561 | virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs, |
| 562 | ArgStringList &CC1Args) const; |
| 563 | |
Michael J. Spencer | ff58e36 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 564 | }; |
| 565 | |
Daniel Dunbar | 83b08eb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 566 | } // end namespace toolchains |
| 567 | } // end namespace driver |
| 568 | } // end namespace clang |
| 569 | |
| 570 | #endif |