| Daniel Dunbar | 0a248bb | 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 | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 13 | #include "Tools.h" | 
|  | 14 | #include "clang/Basic/VersionTuple.h" | 
| Daniel Dunbar | 04cb029 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 15 | #include "clang/Driver/Action.h" | 
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 16 | #include "clang/Driver/ToolChain.h" | 
| Daniel Dunbar | 04cb029 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/DenseMap.h" | 
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Compiler.h" | 
|  | 19 |  | 
|  | 20 | namespace clang { | 
|  | 21 | namespace driver { | 
| Daniel Dunbar | 15abb2e | 2009-03-17 22:18:43 +0000 | [diff] [blame] | 22 | namespace toolchains { | 
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 23 |  | 
| Daniel Dunbar | 6276f99 | 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 | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 27 | class LLVM_LIBRARY_VISIBILITY Generic_GCC : public ToolChain { | 
| Daniel Dunbar | e24297c | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 28 | protected: | 
| Chandler Carruth | 4c90fba | 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 | 4d9d768 | 2012-01-24 19:28:29 +0000 | [diff] [blame] | 71 | llvm::Triple GCCTriple; | 
| Chandler Carruth | 4c90fba | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 72 |  | 
|  | 73 | // FIXME: These might be better as path objects. | 
| Chandler Carruth | 64cee06 | 2012-01-24 19:21:42 +0000 | [diff] [blame] | 74 | std::string GCCInstallPath; | 
| Chandler Carruth | 866faab | 2012-01-25 07:21:38 +0000 | [diff] [blame] | 75 | std::string GCCMultiarchSuffix; | 
| Chandler Carruth | 64cee06 | 2012-01-24 19:21:42 +0000 | [diff] [blame] | 76 | std::string GCCParentLibPath; | 
| Chandler Carruth | 4c90fba | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 77 |  | 
|  | 78 | GCCVersion Version; | 
|  | 79 |  | 
|  | 80 | public: | 
| Rafael Espindola | 1af7c21 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 81 | GCCInstallationDetector(const Driver &D, const llvm::Triple &TargetTriple, | 
|  | 82 | const ArgList &Args); | 
| Chandler Carruth | 4c90fba | 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 | 4d9d768 | 2012-01-24 19:28:29 +0000 | [diff] [blame] | 88 | const llvm::Triple &getTriple() const { return GCCTriple; } | 
| Chandler Carruth | 4c90fba | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 89 |  | 
|  | 90 | /// \brief Get the detected GCC installation path. | 
| Chandler Carruth | 64cee06 | 2012-01-24 19:21:42 +0000 | [diff] [blame] | 91 | StringRef getInstallPath() const { return GCCInstallPath; } | 
| Chandler Carruth | 4c90fba | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 92 |  | 
| Chandler Carruth | 866faab | 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 | 4c90fba | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 96 | /// \brief Get the detected GCC parent lib path. | 
| Chandler Carruth | 64cee06 | 2012-01-24 19:21:42 +0000 | [diff] [blame] | 97 | StringRef getParentLibPath() const { return GCCParentLibPath; } | 
| Chandler Carruth | 4c90fba | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 98 |  | 
|  | 99 | /// \brief Get the detected GCC version string. | 
| Rafael Espindola | 66aa045 | 2012-06-19 01:26:10 +0000 | [diff] [blame] | 100 | const GCCVersion &getVersion() const { return Version; } | 
| Chandler Carruth | 4c90fba | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 101 |  | 
|  | 102 | private: | 
| Chandler Carruth | 866faab | 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 | 4c90fba | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 110 |  | 
| Chandler Carruth | 866faab | 2012-01-25 07:21:38 +0000 | [diff] [blame] | 111 | void ScanLibDirForGCCTriple(llvm::Triple::ArchType TargetArch, | 
| Simon Atanasyan | 2d1b1ad | 2012-10-21 11:44:57 +0000 | [diff] [blame] | 112 | const ArgList &Args, | 
| Chandler Carruth | 6e46ca2 | 2011-11-09 03:46:20 +0000 | [diff] [blame] | 113 | const std::string &LibDir, | 
| Chandler Carruth | 866faab | 2012-01-25 07:21:38 +0000 | [diff] [blame] | 114 | StringRef CandidateTriple, | 
|  | 115 | bool NeedsMultiarchSuffix = false); | 
| Chandler Carruth | 4c90fba | 2011-11-06 23:39:34 +0000 | [diff] [blame] | 116 | }; | 
|  | 117 |  | 
|  | 118 | GCCInstallationDetector GCCInstallation; | 
|  | 119 |  | 
| Daniel Dunbar | 04cb029 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 120 | mutable llvm::DenseMap<unsigned, Tool*> Tools; | 
|  | 121 |  | 
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 122 | public: | 
| Rafael Espindola | 1af7c21 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 123 | Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); | 
| Daniel Dunbar | 59e5e88 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 124 | ~Generic_GCC(); | 
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 125 |  | 
| Daniel Dunbar | 1e1c3ca | 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 | 04cb029 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 128 |  | 
| Daniel Dunbar | 59e5e88 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 129 | virtual bool IsUnwindTablesDefault() const; | 
| Chandler Carruth | 76a943b | 2012-11-19 03:52:03 +0000 | [diff] [blame] | 130 | virtual bool isPICDefault() const; | 
|  | 131 | virtual bool isPICDefaultForced() const; | 
| Chandler Carruth | efad16a | 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 | 9b5f8dd | 2012-02-11 03:31:12 +0000 | [diff] [blame] | 138 | bool isTarget64Bit() const { return getTriple().isArch64Bit(); } | 
|  | 139 |  | 
| Chandler Carruth | efad16a | 2011-11-06 23:39:37 +0000 | [diff] [blame] | 140 | /// \brief Check whether the target triple's architecture is 32-bits. | 
| Chandler Carruth | 9b5f8dd | 2012-02-11 03:31:12 +0000 | [diff] [blame] | 141 | bool isTarget32Bit() const { return getTriple().isArch32Bit(); } | 
| Chandler Carruth | efad16a | 2011-11-06 23:39:37 +0000 | [diff] [blame] | 142 |  | 
|  | 143 | /// @} | 
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 144 | }; | 
|  | 145 |  | 
| Tony Linthicum | 76329bf | 2011-12-12 21:14:55 +0000 | [diff] [blame] | 146 | /// Darwin - The base Darwin tool chain. | 
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 147 | class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain { | 
| Daniel Dunbar | 71c723d | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 148 | public: | 
|  | 149 | /// The host version. | 
|  | 150 | unsigned DarwinVersion[3]; | 
|  | 151 |  | 
|  | 152 | private: | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 153 | mutable llvm::DenseMap<unsigned, Tool*> Tools; | 
|  | 154 |  | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 155 | /// Whether the information on the target has been initialized. | 
|  | 156 | // | 
|  | 157 | // FIXME: This should be eliminated. What we want to do is make this part of | 
|  | 158 | // the "default target for arguments" selection process, once we get out of | 
|  | 159 | // the argument translation business. | 
|  | 160 | mutable bool TargetInitialized; | 
|  | 161 |  | 
| Chris Lattner | 57540c5 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 162 | /// Whether we are targeting iPhoneOS target. | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 163 | mutable bool TargetIsIPhoneOS; | 
| Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 164 |  | 
| Daniel Dunbar | b118943 | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 165 | /// Whether we are targeting the iPhoneOS simulator target. | 
|  | 166 | mutable bool TargetIsIPhoneOSSimulator; | 
|  | 167 |  | 
| Chris Lattner | 57540c5 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 168 | /// The OS version we are targeting. | 
| Benjamin Kramer | ddefa6d | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 169 | mutable VersionTuple TargetVersion; | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 170 |  | 
| John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 171 | private: | 
| Daniel Dunbar | c196421 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 172 | /// The default macosx-version-min of this tool chain; empty until | 
|  | 173 | /// initialized. | 
| Daniel Dunbar | d54669d | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 174 | std::string MacosxVersionMin; | 
| Daniel Dunbar | c196421 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 175 |  | 
| Chad Rosier | 6037c6b | 2012-05-09 18:37:26 +0000 | [diff] [blame] | 176 | /// The default ios-version-min of this tool chain; empty until | 
|  | 177 | /// initialized. | 
|  | 178 | std::string iOSVersionMin; | 
|  | 179 |  | 
| Daniel Dunbar | b2b8a91 | 2010-07-19 17:11:33 +0000 | [diff] [blame] | 180 | private: | 
| Daniel Dunbar | 354e96d | 2010-07-19 17:11:36 +0000 | [diff] [blame] | 181 | void AddDeploymentTarget(DerivedArgList &Args) const; | 
| Daniel Dunbar | b2b8a91 | 2010-07-19 17:11:33 +0000 | [diff] [blame] | 182 |  | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 183 | public: | 
| Chandler Carruth | d7fa2e0 | 2012-01-31 02:21:20 +0000 | [diff] [blame] | 184 | Darwin(const Driver &D, const llvm::Triple& Triple); | 
| Daniel Dunbar | f0a5b9b | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 185 | ~Darwin(); | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 186 |  | 
| Chad Rosier | d3a0f95 | 2011-09-20 20:44:06 +0000 | [diff] [blame] | 187 | std::string ComputeEffectiveClangTriple(const ArgList &Args, | 
|  | 188 | types::ID InputType) const; | 
| Daniel Dunbar | 82eb4ce | 2010-08-23 22:35:37 +0000 | [diff] [blame] | 189 |  | 
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 190 | /// @name Darwin Specific Toolchain API | 
|  | 191 | /// { | 
|  | 192 |  | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 193 | // FIXME: Eliminate these ...Target functions and derive separate tool chains | 
|  | 194 | // for these targets and put version in constructor. | 
| Daniel Dunbar | b118943 | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 195 | void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor, | 
|  | 196 | unsigned Micro, bool IsIOSSim) const { | 
|  | 197 | assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!"); | 
|  | 198 |  | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 199 | // FIXME: For now, allow reinitialization as long as values don't | 
|  | 200 | // change. This will go away when we move away from argument translation. | 
| Daniel Dunbar | b118943 | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 201 | if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS && | 
|  | 202 | TargetIsIPhoneOSSimulator == IsIOSSim && | 
| Benjamin Kramer | ddefa6d | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 203 | TargetVersion == VersionTuple(Major, Minor, Micro)) | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 204 | return; | 
|  | 205 |  | 
|  | 206 | assert(!TargetInitialized && "Target already initialized!"); | 
|  | 207 | TargetInitialized = true; | 
| Daniel Dunbar | b118943 | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 208 | TargetIsIPhoneOS = IsIPhoneOS; | 
|  | 209 | TargetIsIPhoneOSSimulator = IsIOSSim; | 
| Benjamin Kramer | ddefa6d | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 210 | TargetVersion = VersionTuple(Major, Minor, Micro); | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 211 | } | 
|  | 212 |  | 
|  | 213 | bool isTargetIPhoneOS() const { | 
|  | 214 | assert(TargetInitialized && "Target not initialized!"); | 
|  | 215 | return TargetIsIPhoneOS; | 
|  | 216 | } | 
|  | 217 |  | 
| Daniel Dunbar | ebc34df | 2011-03-31 17:12:33 +0000 | [diff] [blame] | 218 | bool isTargetIOSSimulator() const { | 
| Daniel Dunbar | b118943 | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 219 | assert(TargetInitialized && "Target not initialized!"); | 
|  | 220 | return TargetIsIPhoneOSSimulator; | 
| Daniel Dunbar | ebc34df | 2011-03-31 17:12:33 +0000 | [diff] [blame] | 221 | } | 
|  | 222 |  | 
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 223 | bool isTargetMacOS() const { | 
| Bob Wilson | 5ad5a95 | 2012-11-09 01:59:30 +0000 | [diff] [blame] | 224 | return !isTargetIOSSimulator() && !isTargetIPhoneOS(); | 
| Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 225 | } | 
|  | 226 |  | 
| Daniel Dunbar | 47d25b1 | 2010-03-20 00:50:21 +0000 | [diff] [blame] | 227 | bool isTargetInitialized() const { return TargetInitialized; } | 
|  | 228 |  | 
| Benjamin Kramer | ddefa6d | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 229 | VersionTuple getTargetVersion() const { | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 230 | assert(TargetInitialized && "Target not initialized!"); | 
| Benjamin Kramer | ddefa6d | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 231 | return TargetVersion; | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 232 | } | 
|  | 233 |  | 
| Daniel Dunbar | dcc3b65 | 2010-01-22 02:04:58 +0000 | [diff] [blame] | 234 | /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler | 
|  | 235 | /// invocation. For example, Darwin treats different ARM variations as | 
|  | 236 | /// distinct architectures. | 
| Chris Lattner | 01cf8db | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 237 | StringRef getDarwinArchName(const ArgList &Args) const; | 
| Daniel Dunbar | dcc3b65 | 2010-01-22 02:04:58 +0000 | [diff] [blame] | 238 |  | 
| Daniel Dunbar | 8360803 | 2010-01-27 00:56:56 +0000 | [diff] [blame] | 239 | bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const { | 
|  | 240 | assert(isTargetIPhoneOS() && "Unexpected call for OS X target!"); | 
| Benjamin Kramer | ddefa6d | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 241 | return TargetVersion < VersionTuple(V0, V1, V2); | 
| Daniel Dunbar | 6d23b2f | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 242 | } | 
|  | 243 |  | 
|  | 244 | bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const { | 
|  | 245 | assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!"); | 
| Benjamin Kramer | ddefa6d | 2012-03-10 20:55:36 +0000 | [diff] [blame] | 246 | return TargetVersion < VersionTuple(V0, V1, V2); | 
| Daniel Dunbar | 8360803 | 2010-01-27 00:56:56 +0000 | [diff] [blame] | 247 | } | 
|  | 248 |  | 
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 249 | /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library. | 
|  | 250 | virtual void AddLinkARCArgs(const ArgList &Args, | 
|  | 251 | ArgStringList &CmdArgs) const = 0; | 
|  | 252 |  | 
| Daniel Dunbar | 26d482a | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 253 | /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler | 
|  | 254 | /// runtime library. | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 255 | virtual void AddLinkRuntimeLibArgs(const ArgList &Args, | 
|  | 256 | ArgStringList &CmdArgs) const = 0; | 
| Eric Christopher | c235d0c6 | 2011-06-22 17:41:40 +0000 | [diff] [blame] | 257 |  | 
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 258 | /// } | 
|  | 259 | /// @name ToolChain Implementation | 
|  | 260 | /// { | 
|  | 261 |  | 
| Daniel Dunbar | cc7df6c | 2010-08-02 05:43:56 +0000 | [diff] [blame] | 262 | virtual types::ID LookupTypeForExtension(const char *Ext) const; | 
|  | 263 |  | 
| Daniel Dunbar | 62123a1 | 2010-09-17 00:24:52 +0000 | [diff] [blame] | 264 | virtual bool HasNativeLLVMSupport() const; | 
|  | 265 |  | 
| John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 266 | virtual ObjCRuntime getDefaultObjCRuntime(bool isNonFragile) const; | 
| John McCall | 7959fee | 2011-09-09 20:41:01 +0000 | [diff] [blame] | 267 | virtual bool hasBlocksRuntime() const; | 
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 268 |  | 
| Daniel Dunbar | 775d406 | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 269 | virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args, | 
| Daniel Dunbar | e7af341 | 2009-09-09 18:36:12 +0000 | [diff] [blame] | 270 | const char *BoundArch) const; | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 271 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 272 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 273 | const ActionList &Inputs) const; | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 274 |  | 
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 275 | virtual bool IsBlocksDefault() const { | 
| Daniel Dunbar | a66a4d1 | 2010-07-22 00:40:31 +0000 | [diff] [blame] | 276 | // Always allow blocks on Darwin; users interested in versioning are | 
|  | 277 | // expected to use /usr/include/Blocks.h. | 
|  | 278 | return true; | 
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 279 | } | 
| Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 280 | virtual bool IsIntegratedAssemblerDefault() const { | 
| Daniel Dunbar | a99a3c1 | 2010-06-23 18:15:13 +0000 | [diff] [blame] | 281 | #ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER | 
|  | 282 | return false; | 
|  | 283 | #else | 
| Jim Grosbach | 2e16624 | 2012-02-27 23:55:25 +0000 | [diff] [blame] | 284 | // Default integrated assembler to on for Darwin. | 
|  | 285 | return true; | 
| Daniel Dunbar | a99a3c1 | 2010-06-23 18:15:13 +0000 | [diff] [blame] | 286 | #endif | 
| Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 287 | } | 
| Daniel Dunbar | 7aa71f9 | 2011-02-04 02:20:39 +0000 | [diff] [blame] | 288 | virtual bool IsStrictAliasingDefault() const { | 
|  | 289 | #ifdef DISABLE_DEFAULT_STRICT_ALIASING | 
|  | 290 | return false; | 
|  | 291 | #else | 
|  | 292 | return ToolChain::IsStrictAliasingDefault(); | 
|  | 293 | #endif | 
|  | 294 | } | 
| Benjamin Kramer | c242ef2 | 2012-05-02 14:55:48 +0000 | [diff] [blame] | 295 |  | 
|  | 296 | virtual bool IsMathErrnoDefault() const { | 
|  | 297 | return false; | 
|  | 298 | } | 
|  | 299 |  | 
| Ted Kremenek | 1d56c9e | 2010-12-23 21:35:43 +0000 | [diff] [blame] | 300 | virtual bool IsObjCDefaultSynthPropertiesDefault() const { | 
| Ted Kremenek | d151dde | 2012-03-06 20:06:15 +0000 | [diff] [blame] | 301 | return true; | 
| Ted Kremenek | 1d56c9e | 2010-12-23 21:35:43 +0000 | [diff] [blame] | 302 | } | 
|  | 303 |  | 
| Fariborz Jahanian | 0e3043b | 2012-11-15 19:02:45 +0000 | [diff] [blame] | 304 | virtual bool IsEncodeExtendedBlockSignatureDefault() const { | 
|  | 305 | return true; | 
|  | 306 | } | 
|  | 307 |  | 
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 308 | virtual bool IsObjCNonFragileABIDefault() const { | 
| Daniel Dunbar | df3d1c2 | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 309 | // Non-fragile ABI is default for everything but i386. | 
|  | 310 | return getTriple().getArch() != llvm::Triple::x86; | 
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 311 | } | 
| Daniel Dunbar | df3d1c2 | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 312 |  | 
| Daniel Dunbar | fca18c1b4 | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 313 | virtual bool UseObjCMixedDispatch() const { | 
| Daniel Dunbar | df3d1c2 | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 314 | // This is only used with the non-fragile ABI and non-legacy dispatch. | 
|  | 315 |  | 
|  | 316 | // Mixed dispatch is used everywhere except OS X before 10.6. | 
|  | 317 | return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6)); | 
| Daniel Dunbar | fca18c1b4 | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 318 | } | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 319 | virtual bool IsUnwindTablesDefault() const; | 
| Nico Weber | dd47363 | 2011-08-23 07:38:27 +0000 | [diff] [blame] | 320 | virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const { | 
|  | 321 | // Stack protectors default to on for user code on 10.5, | 
|  | 322 | // and for everything in 10.6 and beyond | 
| Bob Wilson | 721d4b8 | 2011-12-14 06:08:25 +0000 | [diff] [blame] | 323 | return isTargetIPhoneOS() || | 
| Nico Weber | dd47363 | 2011-08-23 07:38:27 +0000 | [diff] [blame] | 324 | (!isMacosxVersionLT(10, 6) || | 
|  | 325 | (!isMacosxVersionLT(10, 5) && !KernelOrKext)); | 
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 326 | } | 
| Daniel Dunbar | f4916cd | 2011-12-07 23:03:15 +0000 | [diff] [blame] | 327 | virtual RuntimeLibType GetDefaultRuntimeLibType() const { | 
|  | 328 | return ToolChain::RLT_CompilerRT; | 
|  | 329 | } | 
| Chandler Carruth | 76a943b | 2012-11-19 03:52:03 +0000 | [diff] [blame] | 330 | virtual bool isPICDefault() const; | 
|  | 331 | virtual bool isPICDefaultForced() const; | 
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 332 |  | 
| Daniel Dunbar | 733b0f8 | 2011-03-01 18:49:30 +0000 | [diff] [blame] | 333 | virtual bool SupportsProfiling() const; | 
|  | 334 |  | 
| Daniel Dunbar | 16334e1 | 2010-04-10 16:20:23 +0000 | [diff] [blame] | 335 | virtual bool SupportsObjCGC() const; | 
|  | 336 |  | 
| John McCall | 3deb1ad | 2012-08-21 02:47:43 +0000 | [diff] [blame] | 337 | virtual void CheckObjCARC() const; | 
| Argyrios Kyrtzidis | 3dbeb55 | 2012-02-29 03:43:52 +0000 | [diff] [blame] | 338 |  | 
| Daniel Dunbar | 24c7f5e | 2009-12-18 02:43:17 +0000 | [diff] [blame] | 339 | virtual bool UseDwarfDebugFlags() const; | 
|  | 340 |  | 
| Daniel Dunbar | 3241d40 | 2010-02-10 18:49:11 +0000 | [diff] [blame] | 341 | virtual bool UseSjLjExceptions() const; | 
|  | 342 |  | 
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 343 | /// } | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 344 | }; | 
|  | 345 |  | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 346 | /// DarwinClang - The Darwin toolchain used by Clang. | 
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 347 | class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin { | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 348 | public: | 
| Chandler Carruth | d7fa2e0 | 2012-01-31 02:21:20 +0000 | [diff] [blame] | 349 | DarwinClang(const Driver &D, const llvm::Triple& Triple); | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 350 |  | 
|  | 351 | /// @name Darwin ToolChain Implementation | 
|  | 352 | /// { | 
|  | 353 |  | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 354 | virtual void AddLinkRuntimeLibArgs(const ArgList &Args, | 
|  | 355 | ArgStringList &CmdArgs) const; | 
| Alexey Samsonov | 8368b37 | 2012-11-21 14:17:42 +0000 | [diff] [blame] | 356 | void AddLinkRuntimeLib(const ArgList &Args, ArgStringList &CmdArgs, | 
|  | 357 | const char *DarwinStaticLib, | 
|  | 358 | bool AlwaysLink = false) const; | 
|  | 359 |  | 
| Daniel Dunbar | 3f7796f | 2010-09-17 01:20:05 +0000 | [diff] [blame] | 360 | virtual void AddCXXStdlibLibArgs(const ArgList &Args, | 
|  | 361 | ArgStringList &CmdArgs) const; | 
| Daniel Dunbar | 8fa86b1 | 2010-09-17 01:16:06 +0000 | [diff] [blame] | 362 |  | 
| Shantonu Sen | afeb03b | 2010-09-17 18:39:08 +0000 | [diff] [blame] | 363 | virtual void AddCCKextLibArgs(const ArgList &Args, | 
|  | 364 | ArgStringList &CmdArgs) const; | 
|  | 365 |  | 
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 366 | virtual void AddLinkARCArgs(const ArgList &Args, | 
|  | 367 | ArgStringList &CmdArgs) const; | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 368 | /// } | 
|  | 369 | }; | 
|  | 370 |  | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 371 | /// Darwin_Generic_GCC - Generic Darwin tool chain using gcc. | 
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 372 | class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC { | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 373 | public: | 
| Rafael Espindola | 1af7c21 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 374 | Darwin_Generic_GCC(const Driver &D, const llvm::Triple& Triple, const ArgList &Args) | 
|  | 375 | : Generic_GCC(D, Triple, Args) {} | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 376 |  | 
| Chad Rosier | d3a0f95 | 2011-09-20 20:44:06 +0000 | [diff] [blame] | 377 | std::string ComputeEffectiveClangTriple(const ArgList &Args, | 
|  | 378 | types::ID InputType) const; | 
| Daniel Dunbar | 82eb4ce | 2010-08-23 22:35:37 +0000 | [diff] [blame] | 379 |  | 
| Chad Rosier | 546c261 | 2012-11-27 17:31:26 +0000 | [diff] [blame] | 380 | virtual bool isPICDefault() const { return false; } | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 381 | }; | 
|  | 382 |  | 
| Rafael Espindola | acc8709 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 383 | class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC { | 
| David Blaikie | 68e081d | 2011-12-20 02:48:34 +0000 | [diff] [blame] | 384 | virtual void anchor(); | 
|  | 385 | public: | 
| Rafael Espindola | 1af7c21 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 386 | Generic_ELF(const Driver &D, const llvm::Triple& Triple, const ArgList &Args) | 
|  | 387 | : Generic_GCC(D, Triple, Args) {} | 
| Rafael Espindola | acc8709 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 388 |  | 
|  | 389 | virtual bool IsIntegratedAssemblerDefault() const { | 
|  | 390 | // Default integrated assembler to on for x86. | 
|  | 391 | return (getTriple().getArch() == llvm::Triple::x86 || | 
|  | 392 | getTriple().getArch() == llvm::Triple::x86_64); | 
|  | 393 | } | 
|  | 394 | }; | 
|  | 395 |  | 
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 396 | class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC { | 
| Edward O'Callaghan | 856e4ff | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 397 | public: | 
| Rafael Espindola | 1af7c21 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 398 | AuroraUX(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); | 
| Edward O'Callaghan | 856e4ff | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 399 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 400 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 401 | const ActionList &Inputs) const; | 
| Edward O'Callaghan | 856e4ff | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 402 | }; | 
|  | 403 |  | 
| David Chisnall | f571cde | 2012-02-15 13:39:01 +0000 | [diff] [blame] | 404 | class LLVM_LIBRARY_VISIBILITY Solaris : public Generic_GCC { | 
|  | 405 | public: | 
| Rafael Espindola | 1af7c21 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 406 | Solaris(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); | 
| David Chisnall | f571cde | 2012-02-15 13:39:01 +0000 | [diff] [blame] | 407 |  | 
|  | 408 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 409 | const ActionList &Inputs) const; | 
|  | 410 |  | 
|  | 411 | virtual bool IsIntegratedAssemblerDefault() const { return true; } | 
|  | 412 | }; | 
|  | 413 |  | 
|  | 414 |  | 
| Rafael Espindola | acc8709 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 415 | class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF { | 
| Daniel Dunbar | 10de9e6 | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 416 | public: | 
| Rafael Espindola | 1af7c21 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 417 | OpenBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); | 
| Daniel Dunbar | 10de9e6 | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 418 |  | 
| Benjamin Kramer | c242ef2 | 2012-05-02 14:55:48 +0000 | [diff] [blame] | 419 | virtual bool IsMathErrnoDefault() const { return false; } | 
| David Chisnall | a27cf0e | 2012-04-09 12:33:41 +0000 | [diff] [blame] | 420 | virtual bool IsObjCNonFragileABIDefault() const { return true; } | 
| David Chisnall | a27cf0e | 2012-04-09 12:33:41 +0000 | [diff] [blame] | 421 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 422 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 423 | const ActionList &Inputs) const; | 
| Daniel Dunbar | 10de9e6 | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 424 | }; | 
|  | 425 |  | 
| Eli Friedman | 9fa2885 | 2012-08-08 23:57:20 +0000 | [diff] [blame] | 426 | class LLVM_LIBRARY_VISIBILITY Bitrig : public Generic_ELF { | 
|  | 427 | public: | 
|  | 428 | Bitrig(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); | 
|  | 429 |  | 
|  | 430 | virtual bool IsMathErrnoDefault() const { return false; } | 
|  | 431 | virtual bool IsObjCNonFragileABIDefault() const { return true; } | 
|  | 432 | virtual bool IsObjCLegacyDispatchDefault() const { return false; } | 
|  | 433 |  | 
|  | 434 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 435 | const ActionList &Inputs) const; | 
|  | 436 |  | 
|  | 437 | virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs, | 
|  | 438 | ArgStringList &CC1Args) const; | 
|  | 439 | virtual void AddCXXStdlibLibArgs(const ArgList &Args, | 
|  | 440 | ArgStringList &CmdArgs) const; | 
|  | 441 | virtual unsigned GetDefaultStackProtectorLevel(bool KernelOrKext) const { | 
|  | 442 | return 1; | 
|  | 443 | } | 
|  | 444 | }; | 
|  | 445 |  | 
| Rafael Espindola | acc8709 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 446 | class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF { | 
| Daniel Dunbar | e24297c | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 447 | public: | 
| Rafael Espindola | 1af7c21 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 448 | FreeBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); | 
| Daniel Dunbar | e24297c | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 449 |  | 
| Benjamin Kramer | c242ef2 | 2012-05-02 14:55:48 +0000 | [diff] [blame] | 450 | virtual bool IsMathErrnoDefault() const { return false; } | 
| David Chisnall | a27cf0e | 2012-04-09 12:33:41 +0000 | [diff] [blame] | 451 | virtual bool IsObjCNonFragileABIDefault() const { return true; } | 
| David Chisnall | a27cf0e | 2012-04-09 12:33:41 +0000 | [diff] [blame] | 452 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 453 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 454 | const ActionList &Inputs) const; | 
| Rafael Espindola | 0f207ed | 2012-12-13 04:17:14 +0000 | [diff] [blame^] | 455 | virtual bool UseSjLjExceptions() const; | 
| Daniel Dunbar | e24297c | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 456 | }; | 
|  | 457 |  | 
| Benjamin Kramer | 24f1d3e | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 458 | class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF { | 
|  | 459 | public: | 
| Rafael Espindola | 1af7c21 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 460 | NetBSD(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); | 
| Benjamin Kramer | 24f1d3e | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 461 |  | 
| Benjamin Kramer | c242ef2 | 2012-05-02 14:55:48 +0000 | [diff] [blame] | 462 | virtual bool IsMathErrnoDefault() const { return false; } | 
| David Chisnall | a27cf0e | 2012-04-09 12:33:41 +0000 | [diff] [blame] | 463 | virtual bool IsObjCNonFragileABIDefault() const { return true; } | 
| David Chisnall | a27cf0e | 2012-04-09 12:33:41 +0000 | [diff] [blame] | 464 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 465 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 466 | const ActionList &Inputs) const; | 
| Benjamin Kramer | 24f1d3e | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 467 | }; | 
|  | 468 |  | 
| Eli Friedman | 83de513 | 2011-12-08 23:54:21 +0000 | [diff] [blame] | 469 | class LLVM_LIBRARY_VISIBILITY Minix : public Generic_ELF { | 
| Chris Lattner | 3e2ee14 | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 470 | public: | 
| Rafael Espindola | 1af7c21 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 471 | Minix(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); | 
| Chris Lattner | 3e2ee14 | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 472 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 473 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 474 | const ActionList &Inputs) const; | 
| Chris Lattner | 3e2ee14 | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 475 | }; | 
|  | 476 |  | 
| Rafael Espindola | acc8709 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 477 | class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF { | 
| Daniel Dunbar | cc91234 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 478 | public: | 
| Rafael Espindola | 1af7c21 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 479 | DragonFly(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); | 
| Daniel Dunbar | cc91234 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 480 |  | 
| Benjamin Kramer | c242ef2 | 2012-05-02 14:55:48 +0000 | [diff] [blame] | 481 | virtual bool IsMathErrnoDefault() const { return false; } | 
|  | 482 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 483 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 484 | const ActionList &Inputs) const; | 
| Daniel Dunbar | cc91234 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 485 | }; | 
|  | 486 |  | 
| Rafael Espindola | acc8709 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 487 | class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF { | 
| Eli Friedman | 5cd659f | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 488 | public: | 
| Rafael Espindola | 1af7c21 | 2012-02-19 01:38:32 +0000 | [diff] [blame] | 489 | Linux(const Driver &D, const llvm::Triple& Triple, const ArgList &Args); | 
| Rafael Espindola | 92b0093 | 2010-08-10 00:25:48 +0000 | [diff] [blame] | 490 |  | 
| Rafael Espindola | c8f008f | 2010-11-07 20:14:31 +0000 | [diff] [blame] | 491 | virtual bool HasNativeLLVMSupport() const; | 
|  | 492 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 493 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 494 | const ActionList &Inputs) const; | 
| Rafael Espindola | c8f008f | 2010-11-07 20:14:31 +0000 | [diff] [blame] | 495 |  | 
| Chandler Carruth | a796f53 | 2011-11-05 20:17:13 +0000 | [diff] [blame] | 496 | virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs, | 
|  | 497 | ArgStringList &CC1Args) const; | 
| Chandler Carruth | 05fb585 | 2012-11-21 23:40:23 +0000 | [diff] [blame] | 498 | virtual void addClangTargetOptions(const ArgList &DriverArgs, | 
|  | 499 | ArgStringList &CC1Args) const; | 
| Chandler Carruth | a796f53 | 2011-11-05 20:17:13 +0000 | [diff] [blame] | 500 | virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs, | 
|  | 501 | ArgStringList &CC1Args) const; | 
|  | 502 |  | 
| Rafael Espindola | c8f008f | 2010-11-07 20:14:31 +0000 | [diff] [blame] | 503 | std::string Linker; | 
|  | 504 | std::vector<std::string> ExtraOpts; | 
| Chandler Carruth | 1fc603e | 2011-12-17 23:10:01 +0000 | [diff] [blame] | 505 |  | 
|  | 506 | private: | 
|  | 507 | static bool addLibStdCXXIncludePaths(Twine Base, Twine TargetArchDir, | 
|  | 508 | const ArgList &DriverArgs, | 
|  | 509 | ArgStringList &CC1Args); | 
| Eli Friedman | 5cd659f | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 510 | }; | 
|  | 511 |  | 
| Matthew Curtis | 22dd8da | 2012-12-06 12:43:18 +0000 | [diff] [blame] | 512 | class LLVM_LIBRARY_VISIBILITY Hexagon_TC : public Linux { | 
|  | 513 | protected: | 
|  | 514 | mutable llvm::DenseMap<unsigned, Tool*> Tools; | 
|  | 515 |  | 
|  | 516 | GCCVersion GCCLibAndIncVersion; | 
|  | 517 |  | 
|  | 518 | public: | 
|  | 519 | Hexagon_TC(const Driver &D, const llvm::Triple &Triple, | 
|  | 520 | const ArgList &Args); | 
|  | 521 | ~Hexagon_TC(); | 
|  | 522 |  | 
|  | 523 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 524 | const ActionList &Inputs) const; | 
|  | 525 |  | 
|  | 526 | virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs, | 
|  | 527 | ArgStringList &CC1Args) const; | 
|  | 528 | virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs, | 
|  | 529 | ArgStringList &CC1Args) const; | 
| Matthew Curtis | e689b05 | 2012-12-06 15:46:07 +0000 | [diff] [blame] | 530 | virtual CXXStdlibType GetCXXStdlibType(const ArgList &Args) const; | 
| Matthew Curtis | 22dd8da | 2012-12-06 12:43:18 +0000 | [diff] [blame] | 531 |  | 
|  | 532 | StringRef GetGCCLibAndIncVersion() const { return GCCLibAndIncVersion.Text; } | 
|  | 533 |  | 
|  | 534 | static std::string GetGnuDir(const std::string &InstalledDir); | 
| Matthew Curtis | f10a595 | 2012-12-06 14:16:43 +0000 | [diff] [blame] | 535 |  | 
|  | 536 | static StringRef GetTargetCPU(const ArgList &Args); | 
| Matthew Curtis | 22dd8da | 2012-12-06 12:43:18 +0000 | [diff] [blame] | 537 | }; | 
| Eli Friedman | 5cd659f | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 538 |  | 
| Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 539 | /// TCEToolChain - A tool chain using the llvm bitcode tools to perform | 
|  | 540 | /// all subcommands. See http://tce.cs.tut.fi for our peculiar target. | 
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 541 | class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain { | 
| Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 542 | public: | 
| Chandler Carruth | d7fa2e0 | 2012-01-31 02:21:20 +0000 | [diff] [blame] | 543 | TCEToolChain(const Driver &D, const llvm::Triple& Triple); | 
| Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 544 | ~TCEToolChain(); | 
|  | 545 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 546 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 547 | const ActionList &Inputs) const; | 
| Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 548 | bool IsMathErrnoDefault() const; | 
| Chandler Carruth | 76a943b | 2012-11-19 03:52:03 +0000 | [diff] [blame] | 549 | bool isPICDefault() const; | 
|  | 550 | bool isPICDefaultForced() const; | 
| Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 551 |  | 
|  | 552 | private: | 
|  | 553 | mutable llvm::DenseMap<unsigned, Tool*> Tools; | 
|  | 554 |  | 
|  | 555 | }; | 
|  | 556 |  | 
| Michael J. Spencer | b186bc3 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 557 | class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain { | 
|  | 558 | mutable llvm::DenseMap<unsigned, Tool*> Tools; | 
|  | 559 |  | 
|  | 560 | public: | 
| Chandler Carruth | d7fa2e0 | 2012-01-31 02:21:20 +0000 | [diff] [blame] | 561 | Windows(const Driver &D, const llvm::Triple& Triple); | 
| Michael J. Spencer | b186bc3 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 562 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 563 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 564 | const ActionList &Inputs) const; | 
| Michael J. Spencer | b186bc3 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 565 |  | 
| Fariborz Jahanian | c934dab | 2012-08-03 21:51:38 +0000 | [diff] [blame] | 566 | virtual bool IsObjCDefaultSynthPropertiesDefault() const { | 
|  | 567 | return true; | 
|  | 568 | } | 
|  | 569 |  | 
| Michael J. Spencer | b186bc3 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 570 | virtual bool IsIntegratedAssemblerDefault() const; | 
|  | 571 | virtual bool IsUnwindTablesDefault() const; | 
| Chandler Carruth | 76a943b | 2012-11-19 03:52:03 +0000 | [diff] [blame] | 572 | virtual bool isPICDefault() const; | 
|  | 573 | virtual bool isPICDefaultForced() const; | 
| Chandler Carruth | df52783 | 2011-11-04 23:49:05 +0000 | [diff] [blame] | 574 |  | 
|  | 575 | virtual void AddClangSystemIncludeArgs(const ArgList &DriverArgs, | 
|  | 576 | ArgStringList &CC1Args) const; | 
|  | 577 | virtual void AddClangCXXStdlibIncludeArgs(const ArgList &DriverArgs, | 
|  | 578 | ArgStringList &CC1Args) const; | 
|  | 579 |  | 
| Michael J. Spencer | b186bc3 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 580 | }; | 
|  | 581 |  | 
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 582 | } // end namespace toolchains | 
|  | 583 | } // end namespace driver | 
|  | 584 | } // end namespace clang | 
|  | 585 |  | 
|  | 586 | #endif |