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