| 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 | |
| Daniel Dunbar | 04cb029 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 13 | #include "clang/Driver/Action.h" |
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 14 | #include "clang/Driver/ToolChain.h" |
| 15 | |
| Daniel Dunbar | 04cb029 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/DenseMap.h" |
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 17 | #include "llvm/Support/Compiler.h" |
| 18 | |
| Daniel Dunbar | 04cb029 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 19 | #include "Tools.h" |
| 20 | |
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 21 | namespace clang { |
| 22 | namespace driver { |
| Daniel Dunbar | 15abb2e | 2009-03-17 22:18:43 +0000 | [diff] [blame] | 23 | namespace toolchains { |
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 24 | |
| Daniel Dunbar | 6276f99 | 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 | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 28 | class LLVM_LIBRARY_VISIBILITY Generic_GCC : public ToolChain { |
| Daniel Dunbar | e24297c | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 29 | protected: |
| Daniel Dunbar | 04cb029 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 30 | mutable llvm::DenseMap<unsigned, Tool*> Tools; |
| 31 | |
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 32 | public: |
| Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 33 | Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple); |
| Daniel Dunbar | 59e5e88 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 34 | ~Generic_GCC(); |
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 35 | |
| Daniel Dunbar | 59e5e88 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 36 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
| Daniel Dunbar | 04cb029 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 37 | |
| Daniel Dunbar | 59e5e88 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 38 | virtual bool IsUnwindTablesDefault() const; |
| 39 | virtual const char *GetDefaultRelocationModel() const; |
| 40 | virtual const char *GetForcedPicModel() const; |
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 41 | }; |
| 42 | |
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 43 | /// Darwin - The base Darwin tool chain. |
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 44 | class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain { |
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 45 | mutable llvm::DenseMap<unsigned, Tool*> Tools; |
| 46 | |
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 47 | /// Whether the information on the target has been initialized. |
| 48 | // |
| 49 | // FIXME: This should be eliminated. What we want to do is make this part of |
| 50 | // the "default target for arguments" selection process, once we get out of |
| 51 | // the argument translation business. |
| 52 | mutable bool TargetInitialized; |
| 53 | |
| 54 | /// Whether we are targetting iPhoneOS target. |
| 55 | mutable bool TargetIsIPhoneOS; |
| Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 56 | |
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 57 | /// The OS version we are targetting. |
| 58 | mutable unsigned TargetVersion[3]; |
| 59 | |
| Daniel Dunbar | c196421 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 60 | /// The default macosx-version-min of this tool chain; empty until |
| 61 | /// initialized. |
| Daniel Dunbar | d54669d | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 62 | std::string MacosxVersionMin; |
| Daniel Dunbar | c196421 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 63 | |
| Daniel Dunbar | b2b8a91 | 2010-07-19 17:11:33 +0000 | [diff] [blame] | 64 | private: |
| Daniel Dunbar | 354e96d | 2010-07-19 17:11:36 +0000 | [diff] [blame] | 65 | void AddDeploymentTarget(DerivedArgList &Args) const; |
| Daniel Dunbar | b2b8a91 | 2010-07-19 17:11:33 +0000 | [diff] [blame] | 66 | |
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 67 | public: |
| Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 68 | Darwin(const HostInfo &Host, const llvm::Triple& Triple, |
| Daniel Dunbar | 7c870175 | 2010-01-27 00:56:44 +0000 | [diff] [blame] | 69 | const unsigned (&DarwinVersion)[3]); |
| Daniel Dunbar | f0a5b9b | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 70 | ~Darwin(); |
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 71 | |
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 72 | /// @name Darwin Specific Toolchain API |
| 73 | /// { |
| 74 | |
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 75 | // FIXME: Eliminate these ...Target functions and derive separate tool chains |
| 76 | // for these targets and put version in constructor. |
| 77 | void setTarget(bool isIPhoneOS, unsigned Major, unsigned Minor, |
| 78 | unsigned Micro) const { |
| 79 | // FIXME: For now, allow reinitialization as long as values don't |
| 80 | // change. This will go away when we move away from argument translation. |
| 81 | if (TargetInitialized && TargetIsIPhoneOS == isIPhoneOS && |
| 82 | TargetVersion[0] == Major && TargetVersion[1] == Minor && |
| 83 | TargetVersion[2] == Micro) |
| 84 | return; |
| 85 | |
| 86 | assert(!TargetInitialized && "Target already initialized!"); |
| 87 | TargetInitialized = true; |
| 88 | TargetIsIPhoneOS = isIPhoneOS; |
| 89 | TargetVersion[0] = Major; |
| 90 | TargetVersion[1] = Minor; |
| 91 | TargetVersion[2] = Micro; |
| 92 | } |
| 93 | |
| 94 | bool isTargetIPhoneOS() const { |
| 95 | assert(TargetInitialized && "Target not initialized!"); |
| 96 | return TargetIsIPhoneOS; |
| 97 | } |
| 98 | |
| Daniel Dunbar | 47d25b1 | 2010-03-20 00:50:21 +0000 | [diff] [blame] | 99 | bool isTargetInitialized() const { return TargetInitialized; } |
| 100 | |
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 101 | void getTargetVersion(unsigned (&Res)[3]) const { |
| 102 | assert(TargetInitialized && "Target not initialized!"); |
| 103 | Res[0] = TargetVersion[0]; |
| 104 | Res[1] = TargetVersion[1]; |
| 105 | Res[2] = TargetVersion[2]; |
| 106 | } |
| 107 | |
| Daniel Dunbar | dcc3b65 | 2010-01-22 02:04:58 +0000 | [diff] [blame] | 108 | /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler |
| 109 | /// invocation. For example, Darwin treats different ARM variations as |
| 110 | /// distinct architectures. |
| 111 | llvm::StringRef getDarwinArchName(const ArgList &Args) const; |
| 112 | |
| Daniel Dunbar | 6d23b2f | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 113 | static bool isVersionLT(unsigned (&A)[3], unsigned (&B)[3]) { |
| Daniel Dunbar | d5bd81e | 2009-09-18 08:14:55 +0000 | [diff] [blame] | 114 | for (unsigned i=0; i < 3; ++i) { |
| 115 | if (A[i] > B[i]) return false; |
| 116 | if (A[i] < B[i]) return true; |
| 117 | } |
| 118 | return false; |
| 119 | } |
| 120 | |
| Daniel Dunbar | 8360803 | 2010-01-27 00:56:56 +0000 | [diff] [blame] | 121 | bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const { |
| 122 | assert(isTargetIPhoneOS() && "Unexpected call for OS X target!"); |
| 123 | unsigned B[3] = { V0, V1, V2 }; |
| Daniel Dunbar | 6d23b2f | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 124 | return isVersionLT(TargetVersion, B); |
| 125 | } |
| 126 | |
| 127 | bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const { |
| 128 | assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!"); |
| 129 | unsigned B[3] = { V0, V1, V2 }; |
| 130 | return isVersionLT(TargetVersion, B); |
| Daniel Dunbar | 8360803 | 2010-01-27 00:56:56 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 133 | /// AddLinkSearchPathArgs - Add the linker search paths to \arg CmdArgs. |
| 134 | /// |
| 135 | /// \param Args - The input argument list. |
| 136 | /// \param CmdArgs [out] - The command argument list to append the paths |
| 137 | /// (prefixed by -L) to. |
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 138 | virtual void AddLinkSearchPathArgs(const ArgList &Args, |
| 139 | ArgStringList &CmdArgs) const = 0; |
| Daniel Dunbar | c196421 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 140 | |
| Daniel Dunbar | 26d482a | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 141 | /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler |
| 142 | /// runtime library. |
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 143 | virtual void AddLinkRuntimeLibArgs(const ArgList &Args, |
| 144 | ArgStringList &CmdArgs) const = 0; |
| Daniel Dunbar | 26d482a | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 145 | |
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 146 | /// } |
| 147 | /// @name ToolChain Implementation |
| 148 | /// { |
| 149 | |
| Daniel Dunbar | 775d406 | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 150 | virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args, |
| Daniel Dunbar | e7af341 | 2009-09-09 18:36:12 +0000 | [diff] [blame] | 151 | const char *BoundArch) const; |
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 152 | |
| 153 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
| 154 | |
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 155 | virtual bool IsBlocksDefault() const { |
| Daniel Dunbar | a66a4d1 | 2010-07-22 00:40:31 +0000 | [diff] [blame] | 156 | // Always allow blocks on Darwin; users interested in versioning are |
| 157 | // expected to use /usr/include/Blocks.h. |
| 158 | return true; |
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 159 | } |
| Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 160 | virtual bool IsIntegratedAssemblerDefault() const { |
| Daniel Dunbar | a99a3c1 | 2010-06-23 18:15:13 +0000 | [diff] [blame] | 161 | #ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER |
| 162 | return false; |
| 163 | #else |
| Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 164 | // Default integrated assembler to on for x86. |
| 165 | return (getTriple().getArch() == llvm::Triple::x86 || |
| 166 | getTriple().getArch() == llvm::Triple::x86_64); |
| Daniel Dunbar | a99a3c1 | 2010-06-23 18:15:13 +0000 | [diff] [blame] | 167 | #endif |
| Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 168 | } |
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 169 | virtual bool IsObjCNonFragileABIDefault() const { |
| Daniel Dunbar | df3d1c2 | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 170 | // Non-fragile ABI is default for everything but i386. |
| 171 | return getTriple().getArch() != llvm::Triple::x86; |
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 172 | } |
| Daniel Dunbar | 9818841 | 2010-02-01 21:07:43 +0000 | [diff] [blame] | 173 | virtual bool IsObjCLegacyDispatchDefault() const { |
| 174 | // This is only used with the non-fragile ABI. |
| Daniel Dunbar | df3d1c2 | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 175 | |
| 176 | // Legacy dispatch is used everywhere except on x86_64. |
| 177 | return getTriple().getArch() != llvm::Triple::x86_64; |
| Daniel Dunbar | 9818841 | 2010-02-01 21:07:43 +0000 | [diff] [blame] | 178 | } |
| Daniel Dunbar | fca18c1b4 | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 179 | virtual bool UseObjCMixedDispatch() const { |
| Daniel Dunbar | df3d1c2 | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 180 | // This is only used with the non-fragile ABI and non-legacy dispatch. |
| 181 | |
| 182 | // Mixed dispatch is used everywhere except OS X before 10.6. |
| 183 | return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6)); |
| Daniel Dunbar | fca18c1b4 | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 184 | } |
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 185 | virtual bool IsUnwindTablesDefault() const; |
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 186 | virtual unsigned GetDefaultStackProtectorLevel() const { |
| Daniel Dunbar | f48d51d | 2010-01-27 00:57:11 +0000 | [diff] [blame] | 187 | // Stack protectors default to on for 10.6 and beyond. |
| 188 | return !isTargetIPhoneOS() && !isMacosxVersionLT(10, 6); |
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 189 | } |
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 190 | virtual const char *GetDefaultRelocationModel() const; |
| 191 | virtual const char *GetForcedPicModel() const; |
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 192 | |
| Daniel Dunbar | 16334e1 | 2010-04-10 16:20:23 +0000 | [diff] [blame] | 193 | virtual bool SupportsObjCGC() const; |
| 194 | |
| Daniel Dunbar | 24c7f5e | 2009-12-18 02:43:17 +0000 | [diff] [blame] | 195 | virtual bool UseDwarfDebugFlags() const; |
| 196 | |
| Daniel Dunbar | 3241d40 | 2010-02-10 18:49:11 +0000 | [diff] [blame] | 197 | virtual bool UseSjLjExceptions() const; |
| 198 | |
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 199 | /// } |
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 200 | }; |
| 201 | |
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 202 | /// DarwinClang - The Darwin toolchain used by Clang. |
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 203 | class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin { |
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 204 | public: |
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 205 | DarwinClang(const HostInfo &Host, const llvm::Triple& Triple, |
| Daniel Dunbar | 7c870175 | 2010-01-27 00:56:44 +0000 | [diff] [blame] | 206 | const unsigned (&DarwinVersion)[3]); |
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 207 | |
| 208 | /// @name Darwin ToolChain Implementation |
| 209 | /// { |
| 210 | |
| 211 | virtual void AddLinkSearchPathArgs(const ArgList &Args, |
| 212 | ArgStringList &CmdArgs) const; |
| 213 | |
| 214 | virtual void AddLinkRuntimeLibArgs(const ArgList &Args, |
| 215 | ArgStringList &CmdArgs) const; |
| 216 | |
| 217 | /// } |
| 218 | }; |
| 219 | |
| 220 | /// DarwinGCC - The Darwin toolchain used by GCC. |
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 221 | class LLVM_LIBRARY_VISIBILITY DarwinGCC : public Darwin { |
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 222 | /// GCC version to use. |
| Ted Kremenek | 7881ac9 | 2009-10-07 03:21:11 +0000 | [diff] [blame] | 223 | unsigned GCCVersion[3]; |
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 224 | |
| 225 | /// The directory suffix for this tool chain. |
| 226 | std::string ToolChainDir; |
| 227 | |
| 228 | public: |
| 229 | DarwinGCC(const HostInfo &Host, const llvm::Triple& Triple, |
| Daniel Dunbar | 7c870175 | 2010-01-27 00:56:44 +0000 | [diff] [blame] | 230 | const unsigned (&DarwinVersion)[3], |
| 231 | const unsigned (&GCCVersion)[3]); |
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 232 | |
| 233 | /// @name Darwin ToolChain Implementation |
| 234 | /// { |
| 235 | |
| 236 | virtual void AddLinkSearchPathArgs(const ArgList &Args, |
| 237 | ArgStringList &CmdArgs) const; |
| 238 | |
| 239 | virtual void AddLinkRuntimeLibArgs(const ArgList &Args, |
| 240 | ArgStringList &CmdArgs) const; |
| 241 | |
| 242 | /// } |
| 243 | }; |
| 244 | |
| 245 | /// Darwin_Generic_GCC - Generic Darwin tool chain using gcc. |
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 246 | class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC { |
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 247 | public: |
| 248 | Darwin_Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple) |
| Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 249 | : Generic_GCC(Host, Triple) {} |
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 250 | |
| 251 | virtual const char *GetDefaultRelocationModel() const { return "pic"; } |
| 252 | }; |
| 253 | |
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 254 | class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC { |
| Edward O'Callaghan | 856e4ff | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 255 | public: |
| 256 | AuroraUX(const HostInfo &Host, const llvm::Triple& Triple); |
| 257 | |
| 258 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
| 259 | }; |
| 260 | |
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 261 | class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_GCC { |
| Daniel Dunbar | 10de9e6 | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 262 | public: |
| 263 | OpenBSD(const HostInfo &Host, const llvm::Triple& Triple); |
| 264 | |
| 265 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
| 266 | }; |
| 267 | |
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 268 | class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_GCC { |
| Daniel Dunbar | e24297c | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 269 | public: |
| Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 270 | FreeBSD(const HostInfo &Host, const llvm::Triple& Triple, bool Lib32); |
| Daniel Dunbar | e24297c | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 271 | |
| 272 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
| 273 | }; |
| 274 | |
| Chris Lattner | 3e2ee14 | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 275 | class LLVM_LIBRARY_VISIBILITY Minix : public Generic_GCC { |
| 276 | public: |
| 277 | Minix(const HostInfo &Host, const llvm::Triple& Triple); |
| 278 | |
| 279 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
| 280 | }; |
| 281 | |
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 282 | class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_GCC { |
| Daniel Dunbar | cc91234 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 283 | public: |
| Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 284 | DragonFly(const HostInfo &Host, const llvm::Triple& Triple); |
| Daniel Dunbar | cc91234 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 285 | |
| 286 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
| 287 | }; |
| 288 | |
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 289 | class LLVM_LIBRARY_VISIBILITY Linux : public Generic_GCC { |
| Eli Friedman | 5cd659f | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 290 | public: |
| 291 | Linux(const HostInfo &Host, const llvm::Triple& Triple); |
| 292 | }; |
| 293 | |
| 294 | |
| Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 295 | /// TCEToolChain - A tool chain using the llvm bitcode tools to perform |
| 296 | /// all subcommands. See http://tce.cs.tut.fi for our peculiar target. |
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 297 | class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain { |
| Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 298 | public: |
| 299 | TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple); |
| 300 | ~TCEToolChain(); |
| 301 | |
| Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 302 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA) const; |
| 303 | bool IsMathErrnoDefault() const; |
| 304 | bool IsUnwindTablesDefault() const; |
| 305 | const char* GetDefaultRelocationModel() const; |
| 306 | const char* GetForcedPicModel() const; |
| 307 | |
| 308 | private: |
| 309 | mutable llvm::DenseMap<unsigned, Tool*> Tools; |
| 310 | |
| 311 | }; |
| 312 | |
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 313 | } // end namespace toolchains |
| 314 | } // end namespace driver |
| 315 | } // end namespace clang |
| 316 | |
| 317 | #endif |