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