| 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 | 1e1c3ca | 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 | 04cb029 | 2009-03-17 22:07:31 +0000 | [diff] [blame] | 38 |  | 
| Daniel Dunbar | 59e5e88 | 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 | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 42 | }; | 
|  | 43 |  | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 44 | /// Darwin - The base Darwin tool chain. | 
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 45 | class LLVM_LIBRARY_VISIBILITY Darwin : public ToolChain { | 
| Daniel Dunbar | 71c723d | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 46 | public: | 
|  | 47 | /// The host version. | 
|  | 48 | unsigned DarwinVersion[3]; | 
|  | 49 |  | 
|  | 50 | private: | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 51 | mutable llvm::DenseMap<unsigned, Tool*> Tools; | 
|  | 52 |  | 
| Daniel Dunbar | 3b8e50d | 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 | 31168b0 | 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 |  | 
|  | 69 | private: | 
| Chris Lattner | 57540c5 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 70 | /// Whether we are targeting iPhoneOS target. | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 71 | mutable bool TargetIsIPhoneOS; | 
| Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 72 |  | 
| Daniel Dunbar | b118943 | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 73 | /// Whether we are targeting the iPhoneOS simulator target. | 
|  | 74 | mutable bool TargetIsIPhoneOSSimulator; | 
|  | 75 |  | 
| Chris Lattner | 57540c5 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 76 | /// The OS version we are targeting. | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 77 | mutable unsigned TargetVersion[3]; | 
|  | 78 |  | 
| Daniel Dunbar | c196421 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 79 | /// The default macosx-version-min of this tool chain; empty until | 
|  | 80 | /// initialized. | 
| Daniel Dunbar | d54669d | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 81 | std::string MacosxVersionMin; | 
| Daniel Dunbar | c196421 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 82 |  | 
| Daniel Dunbar | b2b8a91 | 2010-07-19 17:11:33 +0000 | [diff] [blame] | 83 | private: | 
| Daniel Dunbar | 354e96d | 2010-07-19 17:11:36 +0000 | [diff] [blame] | 84 | void AddDeploymentTarget(DerivedArgList &Args) const; | 
| Daniel Dunbar | b2b8a91 | 2010-07-19 17:11:33 +0000 | [diff] [blame] | 85 |  | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 86 | public: | 
| Daniel Dunbar | 71c723d | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 87 | Darwin(const HostInfo &Host, const llvm::Triple& Triple); | 
| Daniel Dunbar | f0a5b9b | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 88 | ~Darwin(); | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 89 |  | 
| Daniel Dunbar | 82eb4ce | 2010-08-23 22:35:37 +0000 | [diff] [blame] | 90 | std::string ComputeEffectiveClangTriple(const ArgList &Args) const; | 
|  | 91 |  | 
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 92 | /// @name Darwin Specific Toolchain API | 
|  | 93 | /// { | 
|  | 94 |  | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 95 | // FIXME: Eliminate these ...Target functions and derive separate tool chains | 
|  | 96 | // for these targets and put version in constructor. | 
| Daniel Dunbar | b118943 | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 97 | void setTarget(bool IsIPhoneOS, unsigned Major, unsigned Minor, | 
|  | 98 | unsigned Micro, bool IsIOSSim) const { | 
|  | 99 | assert((!IsIOSSim || IsIPhoneOS) && "Unexpected deployment target!"); | 
|  | 100 |  | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 101 | // FIXME: For now, allow reinitialization as long as values don't | 
|  | 102 | // change. This will go away when we move away from argument translation. | 
| Daniel Dunbar | b118943 | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 103 | if (TargetInitialized && TargetIsIPhoneOS == IsIPhoneOS && | 
|  | 104 | TargetIsIPhoneOSSimulator == IsIOSSim && | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 105 | TargetVersion[0] == Major && TargetVersion[1] == Minor && | 
|  | 106 | TargetVersion[2] == Micro) | 
|  | 107 | return; | 
|  | 108 |  | 
|  | 109 | assert(!TargetInitialized && "Target already initialized!"); | 
|  | 110 | TargetInitialized = true; | 
| Daniel Dunbar | b118943 | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 111 | TargetIsIPhoneOS = IsIPhoneOS; | 
|  | 112 | TargetIsIPhoneOSSimulator = IsIOSSim; | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 113 | TargetVersion[0] = Major; | 
|  | 114 | TargetVersion[1] = Minor; | 
|  | 115 | TargetVersion[2] = Micro; | 
|  | 116 | } | 
|  | 117 |  | 
|  | 118 | bool isTargetIPhoneOS() const { | 
|  | 119 | assert(TargetInitialized && "Target not initialized!"); | 
|  | 120 | return TargetIsIPhoneOS; | 
|  | 121 | } | 
|  | 122 |  | 
| Daniel Dunbar | ebc34df | 2011-03-31 17:12:33 +0000 | [diff] [blame] | 123 | bool isTargetIOSSimulator() const { | 
| Daniel Dunbar | b118943 | 2011-04-30 04:18:16 +0000 | [diff] [blame] | 124 | assert(TargetInitialized && "Target not initialized!"); | 
|  | 125 | return TargetIsIPhoneOSSimulator; | 
| Daniel Dunbar | ebc34df | 2011-03-31 17:12:33 +0000 | [diff] [blame] | 126 | } | 
|  | 127 |  | 
| Daniel Dunbar | 47d25b1 | 2010-03-20 00:50:21 +0000 | [diff] [blame] | 128 | bool isTargetInitialized() const { return TargetInitialized; } | 
|  | 129 |  | 
| Daniel Dunbar | 3b8e50d | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 130 | void getTargetVersion(unsigned (&Res)[3]) const { | 
|  | 131 | assert(TargetInitialized && "Target not initialized!"); | 
|  | 132 | Res[0] = TargetVersion[0]; | 
|  | 133 | Res[1] = TargetVersion[1]; | 
|  | 134 | Res[2] = TargetVersion[2]; | 
|  | 135 | } | 
|  | 136 |  | 
| Daniel Dunbar | dcc3b65 | 2010-01-22 02:04:58 +0000 | [diff] [blame] | 137 | /// getDarwinArchName - Get the "Darwin" arch name for a particular compiler | 
|  | 138 | /// invocation. For example, Darwin treats different ARM variations as | 
|  | 139 | /// distinct architectures. | 
|  | 140 | llvm::StringRef getDarwinArchName(const ArgList &Args) const; | 
|  | 141 |  | 
| Daniel Dunbar | 6d23b2f | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 142 | static bool isVersionLT(unsigned (&A)[3], unsigned (&B)[3]) { | 
| Daniel Dunbar | d5bd81e | 2009-09-18 08:14:55 +0000 | [diff] [blame] | 143 | for (unsigned i=0; i < 3; ++i) { | 
|  | 144 | if (A[i] > B[i]) return false; | 
|  | 145 | if (A[i] < B[i]) return true; | 
|  | 146 | } | 
|  | 147 | return false; | 
|  | 148 | } | 
|  | 149 |  | 
| Daniel Dunbar | 8360803 | 2010-01-27 00:56:56 +0000 | [diff] [blame] | 150 | bool isIPhoneOSVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const { | 
|  | 151 | assert(isTargetIPhoneOS() && "Unexpected call for OS X target!"); | 
|  | 152 | unsigned B[3] = { V0, V1, V2 }; | 
| Daniel Dunbar | 6d23b2f | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 153 | return isVersionLT(TargetVersion, B); | 
|  | 154 | } | 
|  | 155 |  | 
|  | 156 | bool isMacosxVersionLT(unsigned V0, unsigned V1=0, unsigned V2=0) const { | 
|  | 157 | assert(!isTargetIPhoneOS() && "Unexpected call for iPhoneOS target!"); | 
|  | 158 | unsigned B[3] = { V0, V1, V2 }; | 
|  | 159 | return isVersionLT(TargetVersion, B); | 
| Daniel Dunbar | 8360803 | 2010-01-27 00:56:56 +0000 | [diff] [blame] | 160 | } | 
|  | 161 |  | 
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 162 | /// AddLinkSearchPathArgs - Add the linker search paths to \arg CmdArgs. | 
|  | 163 | /// | 
|  | 164 | /// \param Args - The input argument list. | 
|  | 165 | /// \param CmdArgs [out] - The command argument list to append the paths | 
|  | 166 | /// (prefixed by -L) to. | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 167 | virtual void AddLinkSearchPathArgs(const ArgList &Args, | 
|  | 168 | ArgStringList &CmdArgs) const = 0; | 
| Daniel Dunbar | c196421 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 169 |  | 
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame^] | 170 | /// AddLinkARCArgs - Add the linker arguments to link the ARC runtime library. | 
|  | 171 | virtual void AddLinkARCArgs(const ArgList &Args, | 
|  | 172 | ArgStringList &CmdArgs) const = 0; | 
|  | 173 |  | 
| Daniel Dunbar | 26d482a | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 174 | /// AddLinkRuntimeLibArgs - Add the linker arguments to link the compiler | 
|  | 175 | /// runtime library. | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 176 | virtual void AddLinkRuntimeLibArgs(const ArgList &Args, | 
|  | 177 | ArgStringList &CmdArgs) const = 0; | 
| Daniel Dunbar | 26d482a | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 178 |  | 
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 179 | /// } | 
|  | 180 | /// @name ToolChain Implementation | 
|  | 181 | /// { | 
|  | 182 |  | 
| Daniel Dunbar | cc7df6c | 2010-08-02 05:43:56 +0000 | [diff] [blame] | 183 | virtual types::ID LookupTypeForExtension(const char *Ext) const; | 
|  | 184 |  | 
| Daniel Dunbar | 62123a1 | 2010-09-17 00:24:52 +0000 | [diff] [blame] | 185 | virtual bool HasNativeLLVMSupport() const; | 
|  | 186 |  | 
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame^] | 187 | virtual bool HasARCRuntime() const; | 
|  | 188 |  | 
| Daniel Dunbar | 775d406 | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 189 | virtual DerivedArgList *TranslateArgs(const DerivedArgList &Args, | 
| Daniel Dunbar | e7af341 | 2009-09-09 18:36:12 +0000 | [diff] [blame] | 190 | const char *BoundArch) const; | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 191 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 192 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 193 | const ActionList &Inputs) const; | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 194 |  | 
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 195 | virtual bool IsBlocksDefault() const { | 
| Daniel Dunbar | a66a4d1 | 2010-07-22 00:40:31 +0000 | [diff] [blame] | 196 | // Always allow blocks on Darwin; users interested in versioning are | 
|  | 197 | // expected to use /usr/include/Blocks.h. | 
|  | 198 | return true; | 
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 199 | } | 
| Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 200 | virtual bool IsIntegratedAssemblerDefault() const { | 
| Daniel Dunbar | a99a3c1 | 2010-06-23 18:15:13 +0000 | [diff] [blame] | 201 | #ifdef DISABLE_DEFAULT_INTEGRATED_ASSEMBLER | 
|  | 202 | return false; | 
|  | 203 | #else | 
| Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 204 | // Default integrated assembler to on for x86. | 
|  | 205 | return (getTriple().getArch() == llvm::Triple::x86 || | 
|  | 206 | getTriple().getArch() == llvm::Triple::x86_64); | 
| Daniel Dunbar | a99a3c1 | 2010-06-23 18:15:13 +0000 | [diff] [blame] | 207 | #endif | 
| Daniel Dunbar | f9ff350 | 2010-05-14 02:03:00 +0000 | [diff] [blame] | 208 | } | 
| Daniel Dunbar | 7aa71f9 | 2011-02-04 02:20:39 +0000 | [diff] [blame] | 209 | virtual bool IsStrictAliasingDefault() const { | 
|  | 210 | #ifdef DISABLE_DEFAULT_STRICT_ALIASING | 
|  | 211 | return false; | 
|  | 212 | #else | 
|  | 213 | return ToolChain::IsStrictAliasingDefault(); | 
|  | 214 | #endif | 
|  | 215 | } | 
| Ted Kremenek | 1d56c9e | 2010-12-23 21:35:43 +0000 | [diff] [blame] | 216 |  | 
|  | 217 | virtual bool IsObjCDefaultSynthPropertiesDefault() const { | 
| Ted Kremenek | 3783139 | 2011-02-17 02:17:56 +0000 | [diff] [blame] | 218 | return false; | 
| Ted Kremenek | 1d56c9e | 2010-12-23 21:35:43 +0000 | [diff] [blame] | 219 | } | 
|  | 220 |  | 
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 221 | virtual bool IsObjCNonFragileABIDefault() const { | 
| Daniel Dunbar | df3d1c2 | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 222 | // Non-fragile ABI is default for everything but i386. | 
|  | 223 | return getTriple().getArch() != llvm::Triple::x86; | 
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 224 | } | 
| Daniel Dunbar | 9818841 | 2010-02-01 21:07:43 +0000 | [diff] [blame] | 225 | virtual bool IsObjCLegacyDispatchDefault() const { | 
|  | 226 | // This is only used with the non-fragile ABI. | 
| Daniel Dunbar | df3d1c2 | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 227 |  | 
|  | 228 | // Legacy dispatch is used everywhere except on x86_64. | 
|  | 229 | return getTriple().getArch() != llvm::Triple::x86_64; | 
| Daniel Dunbar | 9818841 | 2010-02-01 21:07:43 +0000 | [diff] [blame] | 230 | } | 
| Daniel Dunbar | fca18c1b4 | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 231 | virtual bool UseObjCMixedDispatch() const { | 
| Daniel Dunbar | df3d1c2 | 2010-04-24 18:37:41 +0000 | [diff] [blame] | 232 | // This is only used with the non-fragile ABI and non-legacy dispatch. | 
|  | 233 |  | 
|  | 234 | // Mixed dispatch is used everywhere except OS X before 10.6. | 
|  | 235 | return !(!isTargetIPhoneOS() && isMacosxVersionLT(10, 6)); | 
| Daniel Dunbar | fca18c1b4 | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 236 | } | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 237 | virtual bool IsUnwindTablesDefault() const; | 
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 238 | virtual unsigned GetDefaultStackProtectorLevel() const { | 
| Daniel Dunbar | f48d51d | 2010-01-27 00:57:11 +0000 | [diff] [blame] | 239 | // Stack protectors default to on for 10.6 and beyond. | 
|  | 240 | return !isTargetIPhoneOS() && !isMacosxVersionLT(10, 6); | 
| Daniel Dunbar | 4930e33 | 2009-11-17 08:07:36 +0000 | [diff] [blame] | 241 | } | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 242 | virtual const char *GetDefaultRelocationModel() const; | 
|  | 243 | virtual const char *GetForcedPicModel() const; | 
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 244 |  | 
| Daniel Dunbar | 733b0f8 | 2011-03-01 18:49:30 +0000 | [diff] [blame] | 245 | virtual bool SupportsProfiling() const; | 
|  | 246 |  | 
| Daniel Dunbar | 16334e1 | 2010-04-10 16:20:23 +0000 | [diff] [blame] | 247 | virtual bool SupportsObjCGC() const; | 
|  | 248 |  | 
| Daniel Dunbar | 24c7f5e | 2009-12-18 02:43:17 +0000 | [diff] [blame] | 249 | virtual bool UseDwarfDebugFlags() const; | 
|  | 250 |  | 
| Daniel Dunbar | 3241d40 | 2010-02-10 18:49:11 +0000 | [diff] [blame] | 251 | virtual bool UseSjLjExceptions() const; | 
|  | 252 |  | 
| Daniel Dunbar | 4c30b89 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 253 | /// } | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 254 | }; | 
|  | 255 |  | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 256 | /// DarwinClang - The Darwin toolchain used by Clang. | 
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 257 | class LLVM_LIBRARY_VISIBILITY DarwinClang : public Darwin { | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 258 | public: | 
| Daniel Dunbar | 71c723d | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 259 | DarwinClang(const HostInfo &Host, const llvm::Triple& Triple); | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 260 |  | 
|  | 261 | /// @name Darwin ToolChain Implementation | 
|  | 262 | /// { | 
|  | 263 |  | 
|  | 264 | virtual void AddLinkSearchPathArgs(const ArgList &Args, | 
|  | 265 | ArgStringList &CmdArgs) const; | 
|  | 266 |  | 
|  | 267 | virtual void AddLinkRuntimeLibArgs(const ArgList &Args, | 
|  | 268 | ArgStringList &CmdArgs) const; | 
|  | 269 |  | 
| Daniel Dunbar | 3f7796f | 2010-09-17 01:20:05 +0000 | [diff] [blame] | 270 | virtual void AddCXXStdlibLibArgs(const ArgList &Args, | 
|  | 271 | ArgStringList &CmdArgs) const; | 
| Daniel Dunbar | 8fa86b1 | 2010-09-17 01:16:06 +0000 | [diff] [blame] | 272 |  | 
| Shantonu Sen | afeb03b | 2010-09-17 18:39:08 +0000 | [diff] [blame] | 273 | virtual void AddCCKextLibArgs(const ArgList &Args, | 
|  | 274 | ArgStringList &CmdArgs) const; | 
|  | 275 |  | 
| John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame^] | 276 | virtual void AddLinkARCArgs(const ArgList &Args, | 
|  | 277 | ArgStringList &CmdArgs) const; | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 278 | /// } | 
|  | 279 | }; | 
|  | 280 |  | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 281 | /// Darwin_Generic_GCC - Generic Darwin tool chain using gcc. | 
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 282 | class LLVM_LIBRARY_VISIBILITY Darwin_Generic_GCC : public Generic_GCC { | 
| Daniel Dunbar | 6276f99 | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 283 | public: | 
|  | 284 | Darwin_Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple) | 
| Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 285 | : Generic_GCC(Host, Triple) {} | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 286 |  | 
| Daniel Dunbar | 82eb4ce | 2010-08-23 22:35:37 +0000 | [diff] [blame] | 287 | std::string ComputeEffectiveClangTriple(const ArgList &Args) const; | 
|  | 288 |  | 
| Daniel Dunbar | 03e0a4f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 289 | virtual const char *GetDefaultRelocationModel() const { return "pic"; } | 
|  | 290 | }; | 
|  | 291 |  | 
| Rafael Espindola | acc8709 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 292 | class LLVM_LIBRARY_VISIBILITY Generic_ELF : public Generic_GCC { | 
|  | 293 | public: | 
|  | 294 | Generic_ELF(const HostInfo &Host, const llvm::Triple& Triple) | 
|  | 295 | : Generic_GCC(Host, Triple) {} | 
|  | 296 |  | 
|  | 297 | virtual bool IsIntegratedAssemblerDefault() const { | 
|  | 298 | // Default integrated assembler to on for x86. | 
|  | 299 | return (getTriple().getArch() == llvm::Triple::x86 || | 
|  | 300 | getTriple().getArch() == llvm::Triple::x86_64); | 
|  | 301 | } | 
|  | 302 | }; | 
|  | 303 |  | 
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 304 | class LLVM_LIBRARY_VISIBILITY AuroraUX : public Generic_GCC { | 
| Edward O'Callaghan | 856e4ff | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 305 | public: | 
|  | 306 | AuroraUX(const HostInfo &Host, const llvm::Triple& Triple); | 
|  | 307 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 308 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 309 | const ActionList &Inputs) const; | 
| Edward O'Callaghan | 856e4ff | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 310 | }; | 
|  | 311 |  | 
| Rafael Espindola | acc8709 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 312 | class LLVM_LIBRARY_VISIBILITY OpenBSD : public Generic_ELF { | 
| Daniel Dunbar | 10de9e6 | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 313 | public: | 
|  | 314 | OpenBSD(const HostInfo &Host, const llvm::Triple& Triple); | 
|  | 315 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 316 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 317 | const ActionList &Inputs) const; | 
| Daniel Dunbar | 10de9e6 | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 318 | }; | 
|  | 319 |  | 
| Rafael Espindola | acc8709 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 320 | class LLVM_LIBRARY_VISIBILITY FreeBSD : public Generic_ELF { | 
| Daniel Dunbar | e24297c | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 321 | public: | 
| Daniel Dunbar | a18a487 | 2010-08-02 05:43:59 +0000 | [diff] [blame] | 322 | FreeBSD(const HostInfo &Host, const llvm::Triple& Triple); | 
| Daniel Dunbar | e24297c | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 323 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 324 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 325 | const ActionList &Inputs) const; | 
| Daniel Dunbar | e24297c | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 326 | }; | 
|  | 327 |  | 
| Benjamin Kramer | 24f1d3e | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 328 | class LLVM_LIBRARY_VISIBILITY NetBSD : public Generic_ELF { | 
| Joerg Sonnenberger | 637603a | 2011-05-16 13:35:02 +0000 | [diff] [blame] | 329 | const llvm::Triple ToolTriple; | 
|  | 330 |  | 
| Benjamin Kramer | 24f1d3e | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 331 | public: | 
| Joerg Sonnenberger | 637603a | 2011-05-16 13:35:02 +0000 | [diff] [blame] | 332 | NetBSD(const HostInfo &Host, const llvm::Triple& Triple, | 
|  | 333 | const llvm::Triple& ToolTriple); | 
| Benjamin Kramer | 24f1d3e | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 334 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 335 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 336 | const ActionList &Inputs) const; | 
| Benjamin Kramer | 24f1d3e | 2011-02-02 18:59:27 +0000 | [diff] [blame] | 337 | }; | 
|  | 338 |  | 
| Chris Lattner | 3e2ee14 | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 339 | class LLVM_LIBRARY_VISIBILITY Minix : public Generic_GCC { | 
|  | 340 | public: | 
|  | 341 | Minix(const HostInfo &Host, const llvm::Triple& Triple); | 
|  | 342 |  | 
| Daniel Dunbar | 1e1c3ca | 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 | 3e2ee14 | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 345 | }; | 
|  | 346 |  | 
| Rafael Espindola | acc8709 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 347 | class LLVM_LIBRARY_VISIBILITY DragonFly : public Generic_ELF { | 
| Daniel Dunbar | cc91234 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 348 | public: | 
| Daniel Dunbar | 51c7f97 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 349 | DragonFly(const HostInfo &Host, const llvm::Triple& Triple); | 
| Daniel Dunbar | cc91234 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 350 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 351 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 352 | const ActionList &Inputs) const; | 
| Daniel Dunbar | cc91234 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 353 | }; | 
|  | 354 |  | 
| Rafael Espindola | acc8709 | 2010-10-29 20:14:02 +0000 | [diff] [blame] | 355 | class LLVM_LIBRARY_VISIBILITY Linux : public Generic_ELF { | 
| Eli Friedman | 5cd659f | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 356 | public: | 
|  | 357 | Linux(const HostInfo &Host, const llvm::Triple& Triple); | 
| Rafael Espindola | 92b0093 | 2010-08-10 00:25:48 +0000 | [diff] [blame] | 358 |  | 
| Rafael Espindola | c8f008f | 2010-11-07 20:14:31 +0000 | [diff] [blame] | 359 | virtual bool HasNativeLLVMSupport() const; | 
|  | 360 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 361 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 362 | const ActionList &Inputs) const; | 
| Rafael Espindola | c8f008f | 2010-11-07 20:14:31 +0000 | [diff] [blame] | 363 |  | 
|  | 364 | std::string Linker; | 
|  | 365 | std::vector<std::string> ExtraOpts; | 
| Eli Friedman | 5cd659f | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 366 | }; | 
|  | 367 |  | 
|  | 368 |  | 
| Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 369 | /// TCEToolChain - A tool chain using the llvm bitcode tools to perform | 
|  | 370 | /// all subcommands. See http://tce.cs.tut.fi for our peculiar target. | 
| Duncan Sands | af260b9 | 2010-05-11 20:16:05 +0000 | [diff] [blame] | 371 | class LLVM_LIBRARY_VISIBILITY TCEToolChain : public ToolChain { | 
| Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 372 | public: | 
|  | 373 | TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple); | 
|  | 374 | ~TCEToolChain(); | 
|  | 375 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 376 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 377 | const ActionList &Inputs) const; | 
| Chris Lattner | 0979754 | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 378 | bool IsMathErrnoDefault() const; | 
|  | 379 | bool IsUnwindTablesDefault() const; | 
|  | 380 | const char* GetDefaultRelocationModel() const; | 
|  | 381 | const char* GetForcedPicModel() const; | 
|  | 382 |  | 
|  | 383 | private: | 
|  | 384 | mutable llvm::DenseMap<unsigned, Tool*> Tools; | 
|  | 385 |  | 
|  | 386 | }; | 
|  | 387 |  | 
| Michael J. Spencer | b186bc3 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 388 | class LLVM_LIBRARY_VISIBILITY Windows : public ToolChain { | 
|  | 389 | mutable llvm::DenseMap<unsigned, Tool*> Tools; | 
|  | 390 |  | 
|  | 391 | public: | 
|  | 392 | Windows(const HostInfo &Host, const llvm::Triple& Triple); | 
|  | 393 |  | 
| Daniel Dunbar | 1e1c3ca | 2011-03-18 20:14:00 +0000 | [diff] [blame] | 394 | virtual Tool &SelectTool(const Compilation &C, const JobAction &JA, | 
|  | 395 | const ActionList &Inputs) const; | 
| Michael J. Spencer | b186bc3 | 2010-08-21 21:55:07 +0000 | [diff] [blame] | 396 |  | 
|  | 397 | virtual bool IsIntegratedAssemblerDefault() const; | 
|  | 398 | virtual bool IsUnwindTablesDefault() const; | 
|  | 399 | virtual const char *GetDefaultRelocationModel() const; | 
|  | 400 | virtual const char *GetForcedPicModel() const; | 
|  | 401 | }; | 
|  | 402 |  | 
| Daniel Dunbar | 0a248bb | 2009-03-17 21:38:00 +0000 | [diff] [blame] | 403 | } // end namespace toolchains | 
|  | 404 | } // end namespace driver | 
|  | 405 | } // end namespace clang | 
|  | 406 |  | 
|  | 407 | #endif |