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: |
Daniel Dunbar | 670b7f4 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 30 | mutable llvm::DenseMap<unsigned, Tool*> Tools; |
| 31 | |
Daniel Dunbar | 83b08eb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 32 | public: |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 33 | Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple); |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 34 | ~Generic_GCC(); |
Daniel Dunbar | 83b08eb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 35 | |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame^] | 36 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, |
| 37 | const ActionList &Inputs) const; |
Daniel Dunbar | 670b7f4 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 38 | |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 39 | virtual bool IsUnwindTablesDefault() const; |
| 40 | virtual const char *GetDefaultRelocationModel() const; |
| 41 | virtual const char *GetForcedPicModel() const; |
Daniel Dunbar | 83b08eb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 42 | }; |
| 43 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 44 | /// Darwin - The base Darwin tool chain. |
Duncan Sands | 92dd191 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 45 | class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain { |
Daniel Dunbar | 25b58eb | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 46 | public: |
| 47 | /// The host version. |
| 48 | unsigned DarwinVersion[3]; |
| 49 | |
| 50 | private: |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 51 | mutable llvm::DenseMap<unsigned, Tool*> Tools; |
| 52 | |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 53 | /// Whether the information on the target has been initialized. |
| 54 | // |
| 55 | // FIXME: This should be eliminated. What we want to do is make this part of |
| 56 | // the "default target for arguments" selection process, once we get out of |
| 57 | // the argument translation business. |
| 58 | mutable bool TargetInitialized; |
| 59 | |
| 60 | /// Whether we are targetting iPhoneOS target. |
| 61 | mutable bool TargetIsIPhoneOS; |
Daniel Dunbar | eb840bd | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 62 | |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 63 | /// The OS version we are targetting. |
| 64 | mutable unsigned TargetVersion[3]; |
| 65 | |
Daniel Dunbar | 02633b5 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 66 | /// The default macosx-version-min of this tool chain; empty until |
| 67 | /// initialized. |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 68 | std::string MacosxVersionMin; |
Daniel Dunbar | 02633b5 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 69 | |
Daniel Dunbar | c0e665e | 2010-07-19 17:11:33 +0000 | [diff] [blame] | 70 | private: |
Daniel Dunbar | 60baf0f | 2010-07-19 17:11:36 +0000 | [diff] [blame] | 71 | void AddDeploymentTarget(DerivedArgList &Args) const; |
Daniel Dunbar | c0e665e | 2010-07-19 17:11:33 +0000 | [diff] [blame] | 72 | |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 73 | public: |
Daniel Dunbar | 25b58eb | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 74 | Darwin(const HostInfo &Host, const llvm::Triple& Triple); |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 75 | ~Darwin(); |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 76 | |
Daniel Dunbar | 00577ad | 2010-08-23 22:35:37 +0000 | [diff] [blame] | 77 | std::string ComputeEffectiveClangTriple(const ArgList &Args) const; |
| 78 | |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 79 | /// @name Darwin Specific Toolchain API |
| 80 | /// { |
| 81 | |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 82 | // FIXME: Eliminate these ...Target functions and derive separate tool chains |
| 83 | // for these targets and put version in constructor. |
| 84 | void setTarget(bool isIPhoneOS, unsigned Major, unsigned Minor, |
| 85 | unsigned Micro) const { |
| 86 | // FIXME: For now, allow reinitialization as long as values don't |
| 87 | // change. This will go away when we move away from argument translation. |
| 88 | if (TargetInitialized && TargetIsIPhoneOS == isIPhoneOS && |
| 89 | TargetVersion[0] == Major && TargetVersion[1] == Minor && |
| 90 | TargetVersion[2] == Micro) |
| 91 | return; |
| 92 | |
| 93 | assert(!TargetInitialized && "Target already initialized!"); |
| 94 | TargetInitialized = true; |
| 95 | TargetIsIPhoneOS = isIPhoneOS; |
| 96 | TargetVersion[0] = Major; |
| 97 | TargetVersion[1] = Minor; |
| 98 | TargetVersion[2] = Micro; |
| 99 | } |
| 100 | |
| 101 | bool isTargetIPhoneOS() const { |
| 102 | assert(TargetInitialized && "Target not initialized!"); |
| 103 | return TargetIsIPhoneOS; |
| 104 | } |
| 105 | |
Daniel Dunbar | 03d87ee | 2010-03-20 00:50:21 +0000 | [diff] [blame] | 106 | bool isTargetInitialized() const { return TargetInitialized; } |
| 107 | |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 108 | void getTargetVersion(unsigned (&Res)[3]) const { |
| 109 | assert(TargetInitialized && "Target not initialized!"); |
| 110 | Res[0] = TargetVersion[0]; |
| 111 | Res[1] = TargetVersion[1]; |
| 112 | Res[2] = TargetVersion[2]; |
| 113 | } |
| 114 | |
Daniel Dunbar | eeff406 | 2010-01-22 02:04:58 +0000 | [diff] [blame] | 115 | /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler |
| 116 | /// invocation. For example, Darwin treats different ARM variations as |
| 117 | /// distinct architectures. |
| 118 | llvm::StringRef getDarwinArchName(const ArgList &Args) const; |
| 119 | |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 120 | static bool isVersionLT(unsigned (&A)[3], unsigned (&B)[3]) { |
Daniel Dunbar | 608d04c | 2009-09-18 08:14:55 +0000 | [diff] [blame] | 121 | for (unsigned i=0; i < 3; ++i) { |
| 122 | if (A[i] > B[i]) return false; |
| 123 | if (A[i] < B[i]) return true; |
| 124 | } |
| 125 | return false; |
| 126 | } |
| 127 | |
Daniel Dunbar | cacb0f0 | 2010-01-27 00:56:56 +0000 | [diff] [blame] | 128 | bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const { |
| 129 | assert(isTargetIPhoneOS() && "Unexpected call for OS X target!"); |
| 130 | unsigned B[3] = { V0, V1, V2 }; |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 131 | return isVersionLT(TargetVersion, B); |
| 132 | } |
| 133 | |
| 134 | bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const { |
| 135 | assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!"); |
| 136 | unsigned B[3] = { V0, V1, V2 }; |
| 137 | return isVersionLT(TargetVersion, B); |
Daniel Dunbar | cacb0f0 | 2010-01-27 00:56:56 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 140 | /// AddLinkSearchPathArgs - Add the linker search paths to \arg CmdArgs. |
| 141 | /// |
| 142 | /// \param Args - The input argument list. |
| 143 | /// \param CmdArgs [out] - The command argument list to append the paths |
| 144 | /// (prefixed by -L) to. |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 145 | virtual void AddLinkSearchPathArgs(const ArgList &Args, |
| 146 | ArgStringList &CmdArgs) const = 0; |
Daniel Dunbar | 02633b5 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 147 | |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 148 | /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler |
| 149 | /// runtime library. |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 150 | virtual void AddLinkRuntimeLibArgs(const ArgList &Args, |
| 151 | ArgStringList &CmdArgs) const = 0; |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 152 | |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 153 | /// } |
| 154 | /// @name ToolChain Implementation |
| 155 | /// { |
| 156 | |
Daniel Dunbar | 4180011 | 2010-08-02 05:43:56 +0000 | [diff] [blame] | 157 | virtual types::ID LookupTypeForExtension(const char *Ext) const; |
| 158 | |
Daniel Dunbar | b993f5d | 2010-09-17 00:24:52 +0000 | [diff] [blame] | 159 | virtual bool HasNativeLLVMSupport() const; |
| 160 | |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 161 | virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args, |
Daniel Dunbar | 0dcb9a3 | 2009-09-09 18:36:12 +0000 | [diff] [blame] | 162 | const char *BoundArch) const; |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 163 | |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame^] | 164 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, |
| 165 | const ActionList &Inputs) const; |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 166 | |
Daniel Dunbar | 9e5cc6b | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 167 | virtual bool IsBlocksDefault() const { |
Daniel Dunbar | ef44a5d | 2010-07-22 00:40:31 +0000 | [diff] [blame] | 168 | // Always allow blocks on Darwin; users interested in versioning are |
| 169 | // expected to use /usr/include/Blocks.h. |
| 170 | return true; |
Daniel Dunbar | 9e5cc6b | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 171 | } |
Daniel Dunbar | eb840bd | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 172 | virtual bool IsIntegratedAssemblerDefault() const { |
Daniel Dunbar | 71a6cbc | 2010-06-23 18:15:13 +0000 | [diff] [blame] | 173 | #ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER |
| 174 | return false; |
| 175 | #else |
Daniel Dunbar | eb840bd | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 176 | // Default integrated assembler to on for x86. |
| 177 | return (getTriple().getArch() == llvm::Triple::x86 || |
| 178 | getTriple().getArch() == llvm::Triple::x86_64); |
Daniel Dunbar | 71a6cbc | 2010-06-23 18:15:13 +0000 | [diff] [blame] | 179 | #endif |
Daniel Dunbar | eb840bd | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 180 | } |
Daniel Dunbar | 398c610 | 2011-02-04 02:20:39 +0000 | [diff] [blame] | 181 | virtual bool IsStrictAliasingDefault() const { |
| 182 | #ifdef DISABLE_DEFAULT_STRICT_ALIASING |
| 183 | return false; |
| 184 | #else |
| 185 | return ToolChain::IsStrictAliasingDefault(); |
| 186 | #endif |
| 187 | } |
Ted Kremenek | c32647d | 2010-12-23 21:35:43 +0000 | [diff] [blame] | 188 | |
| 189 | virtual bool IsObjCDefaultSynthPropertiesDefault() const { |
Ted Kremenek | 2fb468d | 2011-02-17 02:17:56 +0000 | [diff] [blame] | 190 | return false; |
Ted Kremenek | c32647d | 2010-12-23 21:35:43 +0000 | [diff] [blame] | 191 | } |
| 192 | |
Daniel Dunbar | 9e5cc6b | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 193 | virtual bool IsObjCNonFragileABIDefault() const { |
Daniel Dunbar | f645aaa | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 194 | // Non-fragile ABI is default for everything but i386. |
| 195 | return getTriple().getArch() != llvm::Triple::x86; |
Daniel Dunbar | 9e5cc6b | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 196 | } |
Daniel Dunbar | 609508c | 2010-02-01 21:07:43 +0000 | [diff] [blame] | 197 | virtual bool IsObjCLegacyDispatchDefault() const { |
| 198 | // This is only used with the non-fragile ABI. |
Daniel Dunbar | f645aaa | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 199 | |
| 200 | // Legacy dispatch is used everywhere except on x86_64. |
| 201 | return getTriple().getArch() != llvm::Triple::x86_64; |
Daniel Dunbar | 609508c | 2010-02-01 21:07:43 +0000 | [diff] [blame] | 202 | } |
Daniel Dunbar | f643b9b | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 203 | virtual bool UseObjCMixedDispatch() const { |
Daniel Dunbar | f645aaa | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 204 | // This is only used with the non-fragile ABI and non-legacy dispatch. |
| 205 | |
| 206 | // Mixed dispatch is used everywhere except OS X before 10.6. |
| 207 | return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6)); |
Daniel Dunbar | f643b9b | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 208 | } |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 209 | virtual bool IsUnwindTablesDefault() const; |
Daniel Dunbar | 9e5cc6b | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 210 | virtual unsigned GetDefaultStackProtectorLevel() const { |
Daniel Dunbar | 5435fc9 | 2010-01-27 00:57:11 +0000 | [diff] [blame] | 211 | // Stack protectors default to on for 10.6 and beyond. |
| 212 | return !isTargetIPhoneOS() && !isMacosxVersionLT(10, 6); |
Daniel Dunbar | 9e5cc6b | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 213 | } |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 214 | virtual const char *GetDefaultRelocationModel() const; |
| 215 | virtual const char *GetForcedPicModel() const; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 216 | |
Daniel Dunbar | bbe8e3e | 2011-03-01 18:49:30 +0000 | [diff] [blame] | 217 | virtual bool SupportsProfiling() const; |
| 218 | |
Daniel Dunbar | 43a9b32 | 2010-04-10 16:20:23 +0000 | [diff] [blame] | 219 | virtual bool SupportsObjCGC() const; |
| 220 | |
Daniel Dunbar | f2d8b9f | 2009-12-18 02:43:17 +0000 | [diff] [blame] | 221 | virtual bool UseDwarfDebugFlags() const; |
| 222 | |
Daniel Dunbar | b2987d1 | 2010-02-10 18:49:11 +0000 | [diff] [blame] | 223 | virtual bool UseSjLjExceptions() const; |
| 224 | |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 225 | /// } |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 226 | }; |
| 227 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 228 | /// DarwinClang - The Darwin toolchain used by Clang. |
Duncan Sands | 92dd191 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 229 | class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 230 | public: |
Daniel Dunbar | 25b58eb | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 231 | DarwinClang(const HostInfo &Host, const llvm::Triple& Triple); |
Daniel Dunbar | 1d4612b | 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 | |
Daniel Dunbar | 132e35d | 2010-09-17 01:20:05 +0000 | [diff] [blame] | 242 | virtual void AddCXXStdlibLibArgs(const ArgList &Args, |
| 243 | ArgStringList &CmdArgs) const; |
Daniel Dunbar | efe91ea | 2010-09-17 01:16:06 +0000 | [diff] [blame] | 244 | |
Shantonu Sen | 7433fed | 2010-09-17 18:39:08 +0000 | [diff] [blame] | 245 | virtual void AddCCKextLibArgs(const ArgList &Args, |
| 246 | ArgStringList &CmdArgs) const; |
| 247 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 248 | /// } |
| 249 | }; |
| 250 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 251 | /// Darwin_Generic_GCC - Generic Darwin tool chain using gcc. |
Duncan Sands | 92dd191 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 252 | class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC { |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 253 | public: |
| 254 | Darwin_Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple) |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 255 | : Generic_GCC(Host, Triple) {} |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 256 | |
Daniel Dunbar | 00577ad | 2010-08-23 22:35:37 +0000 | [diff] [blame] | 257 | std::string ComputeEffectiveClangTriple(const ArgList &Args) const; |
| 258 | |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 259 | virtual const char *GetDefaultRelocationModel() const { return "pic"; } |
| 260 | }; |
| 261 | |
Rafael Espindola | e43cfa1 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 262 | class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC { |
| 263 | public: |
| 264 | Generic_ELF(const HostInfo &Host, const llvm::Triple& Triple) |
| 265 | : Generic_GCC(Host, Triple) {} |
| 266 | |
| 267 | virtual bool IsIntegratedAssemblerDefault() const { |
| 268 | // Default integrated assembler to on for x86. |
| 269 | return (getTriple().getArch() == llvm::Triple::x86 || |
| 270 | getTriple().getArch() == llvm::Triple::x86_64); |
| 271 | } |
| 272 | }; |
| 273 | |
Duncan Sands | 92dd191 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 274 | class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC { |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 275 | public: |
| 276 | AuroraUX(const HostInfo &Host, const llvm::Triple& Triple); |
| 277 | |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame^] | 278 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, |
| 279 | const ActionList &Inputs) const; |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 280 | }; |
| 281 | |
Rafael Espindola | e43cfa1 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 282 | class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF { |
Daniel Dunbar | f7b8eec | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 283 | public: |
| 284 | OpenBSD(const HostInfo &Host, const llvm::Triple& Triple); |
| 285 | |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame^] | 286 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, |
| 287 | const ActionList &Inputs) const; |
Daniel Dunbar | f7b8eec | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 288 | }; |
| 289 | |
Rafael Espindola | e43cfa1 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 290 | class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF { |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 291 | public: |
Daniel Dunbar | 214afe9 | 2010-08-02 05:43:59 +0000 | [diff] [blame] | 292 | FreeBSD(const HostInfo &Host, const llvm::Triple& Triple); |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 293 | |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame^] | 294 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, |
| 295 | const ActionList &Inputs) const; |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 296 | }; |
| 297 | |
Benjamin Kramer | 8e50a96 | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 298 | class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF { |
| 299 | public: |
| 300 | NetBSD(const HostInfo &Host, const llvm::Triple& Triple); |
| 301 | |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame^] | 302 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, |
| 303 | const ActionList &Inputs) const; |
Benjamin Kramer | 8e50a96 | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 304 | }; |
| 305 | |
Chris Lattner | 38e317d | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 306 | class LLVM_LIBRARY_VISIBILITY Minix : public Generic_GCC { |
| 307 | public: |
| 308 | Minix(const HostInfo &Host, const llvm::Triple& Triple); |
| 309 | |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame^] | 310 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, |
| 311 | const ActionList &Inputs) const; |
Chris Lattner | 38e317d | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 312 | }; |
| 313 | |
Rafael Espindola | e43cfa1 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 314 | class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF { |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 315 | public: |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 316 | DragonFly(const HostInfo &Host, const llvm::Triple& Triple); |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 317 | |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame^] | 318 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, |
| 319 | const ActionList &Inputs) const; |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 320 | }; |
| 321 | |
Rafael Espindola | e43cfa1 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 322 | class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF { |
Eli Friedman | 6b3454a | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 323 | public: |
| 324 | Linux(const HostInfo &Host, const llvm::Triple& Triple); |
Rafael Espindola | ba30bbe | 2010-08-10 00:25:48 +0000 | [diff] [blame] | 325 | |
Rafael Espindola | c1da981 | 2010-11-07 20:14:31 +0000 | [diff] [blame] | 326 | virtual bool HasNativeLLVMSupport() const; |
| 327 | |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame^] | 328 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, |
| 329 | const ActionList &Inputs) const; |
Rafael Espindola | c1da981 | 2010-11-07 20:14:31 +0000 | [diff] [blame] | 330 | |
| 331 | std::string Linker; |
| 332 | std::vector<std::string> ExtraOpts; |
Eli Friedman | 6b3454a | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 333 | }; |
| 334 | |
| 335 | |
Chris Lattner | 3a47c4e | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 336 | /// TCEToolChain - A tool chain using the llvm bitcode tools to perform |
| 337 | /// all subcommands. See http://tce.cs.tut.fi for our peculiar target. |
Duncan Sands | 92dd191 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 338 | class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain { |
Chris Lattner | 3a47c4e | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 339 | public: |
| 340 | TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple); |
| 341 | ~TCEToolChain(); |
| 342 | |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame^] | 343 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, |
| 344 | const ActionList &Inputs) const; |
Chris Lattner | 3a47c4e | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 345 | bool IsMathErrnoDefault() const; |
| 346 | bool IsUnwindTablesDefault() const; |
| 347 | const char* GetDefaultRelocationModel() const; |
| 348 | const char* GetForcedPicModel() const; |
| 349 | |
| 350 | private: |
| 351 | mutable llvm::DenseMap<unsigned, Tool*> Tools; |
| 352 | |
| 353 | }; |
| 354 | |
Michael J. Spencer | ff58e36 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 355 | class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain { |
| 356 | mutable llvm::DenseMap<unsigned, Tool*> Tools; |
| 357 | |
| 358 | public: |
| 359 | Windows(const HostInfo &Host, const llvm::Triple& Triple); |
| 360 | |
Daniel Dunbar | ac0659a | 2011-03-18 20:14:00 +0000 | [diff] [blame^] | 361 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, |
| 362 | const ActionList &Inputs) const; |
Michael J. Spencer | ff58e36 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 363 | |
| 364 | virtual bool IsIntegratedAssemblerDefault() const; |
| 365 | virtual bool IsUnwindTablesDefault() const; |
| 366 | virtual const char *GetDefaultRelocationModel() const; |
| 367 | virtual const char *GetForcedPicModel() const; |
| 368 | }; |
| 369 | |
Daniel Dunbar | 83b08eb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 370 | } // end namespace toolchains |
| 371 | } // end namespace driver |
| 372 | } // end namespace clang |
| 373 | |
| 374 | #endif |