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