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