Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 1 | //===--- ToolChains.cpp - ToolChain Implementations ---------------------*-===// |
| 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 | #include "ToolChains.h" |
| 11 | |
Daniel Dunbar | f3cad36 | 2009-03-25 04:13:45 +0000 | [diff] [blame] | 12 | #include "clang/Driver/Arg.h" |
| 13 | #include "clang/Driver/ArgList.h" |
Daniel Dunbar | 0f602de | 2010-05-20 21:48:38 +0000 | [diff] [blame] | 14 | #include "clang/Driver/Compilation.h" |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 15 | #include "clang/Driver/Driver.h" |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 16 | #include "clang/Driver/DriverDiagnostic.h" |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 17 | #include "clang/Driver/HostInfo.h" |
Daniel Dunbar | 27e738d | 2009-11-19 00:15:11 +0000 | [diff] [blame] | 18 | #include "clang/Driver/OptTable.h" |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 19 | #include "clang/Driver/Option.h" |
Daniel Dunbar | 265e9ef | 2009-11-19 04:25:22 +0000 | [diff] [blame] | 20 | #include "clang/Driver/Options.h" |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 21 | |
| 22 | #include "llvm/ADT/StringExtras.h" |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 23 | #include "llvm/Support/ErrorHandling.h" |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 24 | #include "llvm/Support/raw_ostream.h" |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 25 | #include "llvm/System/Path.h" |
| 26 | |
Daniel Dunbar | f36a06a | 2009-04-10 21:00:07 +0000 | [diff] [blame] | 27 | #include <cstdlib> // ::getenv |
| 28 | |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 29 | using namespace clang::driver; |
| 30 | using namespace clang::driver::toolchains; |
| 31 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 32 | /// Darwin - Darwin tool chain for i386 and x86_64. |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 33 | |
Daniel Dunbar | 25b58eb | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 34 | Darwin::Darwin(const HostInfo &Host, const llvm::Triple& Triple) |
Daniel Dunbar | cc8e189 | 2010-01-27 00:56:44 +0000 | [diff] [blame] | 35 | : ToolChain(Host, Triple), TargetInitialized(false) |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 36 | { |
Daniel Dunbar | 25b58eb | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 37 | // Compute the initial Darwin version based on the host. |
| 38 | bool HadExtra; |
| 39 | std::string OSName = Triple.getOSName(); |
| 40 | if (!Driver::GetReleaseVersion(&OSName[6], |
| 41 | DarwinVersion[0], DarwinVersion[1], |
| 42 | DarwinVersion[2], HadExtra)) |
| 43 | getDriver().Diag(clang::diag::err_drv_invalid_darwin_version) << OSName; |
| 44 | |
Daniel Dunbar | 02633b5 | 2009-03-26 16:23:12 +0000 | [diff] [blame] | 45 | llvm::raw_string_ostream(MacosxVersionMin) |
Daniel Dunbar | 25b58eb | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 46 | << "10." << std::max(0, (int)DarwinVersion[0] - 4) << '.' |
| 47 | << DarwinVersion[1]; |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 48 | } |
| 49 | |
Daniel Dunbar | 4180011 | 2010-08-02 05:43:56 +0000 | [diff] [blame] | 50 | types::ID Darwin::LookupTypeForExtension(const char *Ext) const { |
| 51 | types::ID Ty = types::lookupTypeForExtension(Ext); |
| 52 | |
| 53 | // Darwin always preprocesses assembly files (unless -x is used explicitly). |
| 54 | if (Ty == types::TY_PP_Asm) |
| 55 | return types::TY_Asm; |
| 56 | |
| 57 | return Ty; |
| 58 | } |
| 59 | |
Daniel Dunbar | eeff406 | 2010-01-22 02:04:58 +0000 | [diff] [blame] | 60 | // FIXME: Can we tablegen this? |
| 61 | static const char *GetArmArchForMArch(llvm::StringRef Value) { |
| 62 | if (Value == "armv6k") |
| 63 | return "armv6"; |
| 64 | |
| 65 | if (Value == "armv5tej") |
| 66 | return "armv5"; |
| 67 | |
| 68 | if (Value == "xscale") |
| 69 | return "xscale"; |
| 70 | |
| 71 | if (Value == "armv4t") |
| 72 | return "armv4t"; |
| 73 | |
| 74 | if (Value == "armv7" || Value == "armv7-a" || Value == "armv7-r" || |
| 75 | Value == "armv7-m" || Value == "armv7a" || Value == "armv7r" || |
| 76 | Value == "armv7m") |
| 77 | return "armv7"; |
| 78 | |
| 79 | return 0; |
| 80 | } |
| 81 | |
| 82 | // FIXME: Can we tablegen this? |
| 83 | static const char *GetArmArchForMCpu(llvm::StringRef Value) { |
| 84 | if (Value == "arm10tdmi" || Value == "arm1020t" || Value == "arm9e" || |
| 85 | Value == "arm946e-s" || Value == "arm966e-s" || |
| 86 | Value == "arm968e-s" || Value == "arm10e" || |
| 87 | Value == "arm1020e" || Value == "arm1022e" || Value == "arm926ej-s" || |
| 88 | Value == "arm1026ej-s") |
| 89 | return "armv5"; |
| 90 | |
| 91 | if (Value == "xscale") |
| 92 | return "xscale"; |
| 93 | |
| 94 | if (Value == "arm1136j-s" || Value == "arm1136jf-s" || |
| 95 | Value == "arm1176jz-s" || Value == "arm1176jzf-s") |
| 96 | return "armv6"; |
| 97 | |
| 98 | if (Value == "cortex-a8" || Value == "cortex-r4" || Value == "cortex-m3") |
| 99 | return "armv7"; |
| 100 | |
| 101 | return 0; |
| 102 | } |
| 103 | |
| 104 | llvm::StringRef Darwin::getDarwinArchName(const ArgList &Args) const { |
| 105 | switch (getTriple().getArch()) { |
| 106 | default: |
| 107 | return getArchName(); |
| 108 | |
| 109 | case llvm::Triple::arm: { |
| 110 | if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) |
| 111 | if (const char *Arch = GetArmArchForMArch(A->getValue(Args))) |
| 112 | return Arch; |
| 113 | |
| 114 | if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) |
| 115 | if (const char *Arch = GetArmArchForMCpu(A->getValue(Args))) |
| 116 | return Arch; |
| 117 | |
| 118 | return "arm"; |
| 119 | } |
| 120 | } |
| 121 | } |
| 122 | |
Daniel Dunbar | 25b58eb | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 123 | DarwinGCC::DarwinGCC(const HostInfo &Host, const llvm::Triple& Triple) |
| 124 | : Darwin(Host, Triple) |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 125 | { |
Daniel Dunbar | c2bda62 | 2010-08-02 05:44:01 +0000 | [diff] [blame] | 126 | // We can only work with 4.2.1 currently. |
| 127 | GCCVersion[0] = 4; |
| 128 | GCCVersion[1] = 2; |
| 129 | GCCVersion[2] = 1; |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 130 | |
| 131 | // Set up the tool chain paths to match gcc. |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 132 | ToolChainDir = "i686-apple-darwin"; |
Ted Kremenek | 55bac53 | 2009-10-07 03:21:11 +0000 | [diff] [blame] | 133 | ToolChainDir += llvm::utostr(DarwinVersion[0]); |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 134 | ToolChainDir += "/"; |
| 135 | ToolChainDir += llvm::utostr(GCCVersion[0]); |
| 136 | ToolChainDir += '.'; |
| 137 | ToolChainDir += llvm::utostr(GCCVersion[1]); |
| 138 | ToolChainDir += '.'; |
| 139 | ToolChainDir += llvm::utostr(GCCVersion[2]); |
| 140 | |
Daniel Dunbar | 74782b0 | 2009-10-20 19:25:43 +0000 | [diff] [blame] | 141 | // Try the next major version if that tool chain dir is invalid. |
Daniel Dunbar | 080fb19 | 2009-10-22 00:12:00 +0000 | [diff] [blame] | 142 | std::string Tmp = "/usr/lib/gcc/" + ToolChainDir; |
| 143 | if (!llvm::sys::Path(Tmp).exists()) { |
Daniel Dunbar | 74782b0 | 2009-10-20 19:25:43 +0000 | [diff] [blame] | 144 | std::string Next = "i686-apple-darwin"; |
| 145 | Next += llvm::utostr(DarwinVersion[0] + 1); |
| 146 | Next += "/"; |
| 147 | Next += llvm::utostr(GCCVersion[0]); |
| 148 | Next += '.'; |
| 149 | Next += llvm::utostr(GCCVersion[1]); |
| 150 | Next += '.'; |
| 151 | Next += llvm::utostr(GCCVersion[2]); |
| 152 | |
| 153 | // Use that if it exists, otherwise hope the user isn't linking. |
| 154 | // |
| 155 | // FIXME: Drop dependency on gcc's tool chain. |
Daniel Dunbar | 080fb19 | 2009-10-22 00:12:00 +0000 | [diff] [blame] | 156 | Tmp = "/usr/lib/gcc/" + Next; |
| 157 | if (llvm::sys::Path(Tmp).exists()) |
Daniel Dunbar | 74782b0 | 2009-10-20 19:25:43 +0000 | [diff] [blame] | 158 | ToolChainDir = Next; |
| 159 | } |
| 160 | |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 161 | std::string Path; |
| 162 | if (getArchName() == "x86_64") { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 163 | Path = getDriver().Dir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 164 | Path += "/../lib/gcc/"; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 165 | Path += ToolChainDir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 166 | Path += "/x86_64"; |
| 167 | getFilePaths().push_back(Path); |
| 168 | |
| 169 | Path = "/usr/lib/gcc/"; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 170 | Path += ToolChainDir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 171 | Path += "/x86_64"; |
| 172 | getFilePaths().push_back(Path); |
| 173 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 174 | |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 175 | Path = getDriver().Dir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 176 | Path += "/../lib/gcc/"; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 177 | Path += ToolChainDir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 178 | getFilePaths().push_back(Path); |
| 179 | |
| 180 | Path = "/usr/lib/gcc/"; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 181 | Path += ToolChainDir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 182 | getFilePaths().push_back(Path); |
| 183 | |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 184 | Path = getDriver().Dir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 185 | Path += "/../libexec/gcc/"; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 186 | Path += ToolChainDir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 187 | getProgramPaths().push_back(Path); |
| 188 | |
| 189 | Path = "/usr/libexec/gcc/"; |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 190 | Path += ToolChainDir; |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 191 | getProgramPaths().push_back(Path); |
| 192 | |
Daniel Dunbar | edf29b0 | 2010-08-01 22:29:51 +0000 | [diff] [blame] | 193 | getProgramPaths().push_back(getDriver().getInstalledDir()); |
| 194 | if (getDriver().getInstalledDir() != getDriver().Dir) |
| 195 | getProgramPaths().push_back(getDriver().Dir); |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 196 | } |
| 197 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 198 | Darwin::~Darwin() { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 199 | // Free tool implementations. |
| 200 | for (llvm::DenseMap<unsigned, Tool*>::iterator |
| 201 | it = Tools.begin(), ie = Tools.end(); it != ie; ++it) |
| 202 | delete it->second; |
| 203 | } |
| 204 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 205 | Tool &Darwin::SelectTool(const Compilation &C, const JobAction &JA) const { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 206 | Action::ActionClass Key; |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 207 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 208 | Key = Action::AnalyzeJobClass; |
| 209 | else |
| 210 | Key = JA.getKind(); |
| 211 | |
Daniel Dunbar | 0f602de | 2010-05-20 21:48:38 +0000 | [diff] [blame] | 212 | // FIXME: This doesn't belong here, but ideally we will support static soon |
| 213 | // anyway. |
| 214 | bool HasStatic = (C.getArgs().hasArg(options::OPT_mkernel) || |
| 215 | C.getArgs().hasArg(options::OPT_static) || |
| 216 | C.getArgs().hasArg(options::OPT_fapple_kext)); |
| 217 | bool IsIADefault = IsIntegratedAssemblerDefault() && !HasStatic; |
| 218 | bool UseIntegratedAs = C.getArgs().hasFlag(options::OPT_integrated_as, |
| 219 | options::OPT_no_integrated_as, |
| 220 | IsIADefault); |
| 221 | |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 222 | Tool *&T = Tools[Key]; |
| 223 | if (!T) { |
| 224 | switch (Key) { |
| 225 | case Action::InputClass: |
| 226 | case Action::BindArchClass: |
| 227 | assert(0 && "Invalid tool kind."); |
| 228 | case Action::PreprocessJobClass: |
Daniel Dunbar | 9120f17 | 2009-03-29 22:27:40 +0000 | [diff] [blame] | 229 | T = new tools::darwin::Preprocess(*this); break; |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 230 | case Action::AnalyzeJobClass: |
| 231 | T = new tools::Clang(*this); break; |
Daniel Dunbar | 9120f17 | 2009-03-29 22:27:40 +0000 | [diff] [blame] | 232 | case Action::PrecompileJobClass: |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 233 | case Action::CompileJobClass: |
Daniel Dunbar | 9120f17 | 2009-03-29 22:27:40 +0000 | [diff] [blame] | 234 | T = new tools::darwin::Compile(*this); break; |
Daniel Dunbar | 0f602de | 2010-05-20 21:48:38 +0000 | [diff] [blame] | 235 | case Action::AssembleJobClass: { |
| 236 | if (UseIntegratedAs) |
| 237 | T = new tools::ClangAs(*this); |
| 238 | else |
| 239 | T = new tools::darwin::Assemble(*this); |
| 240 | break; |
| 241 | } |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 242 | case Action::LinkJobClass: |
Daniel Dunbar | 8f28962 | 2009-09-04 17:39:02 +0000 | [diff] [blame] | 243 | T = new tools::darwin::Link(*this); break; |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 244 | case Action::LipoJobClass: |
| 245 | T = new tools::darwin::Lipo(*this); break; |
Daniel Dunbar | 6e0f254 | 2010-06-04 18:28:36 +0000 | [diff] [blame] | 246 | case Action::DsymutilJobClass: |
| 247 | T = new tools::darwin::Dsymutil(*this); break; |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 248 | } |
| 249 | } |
| 250 | |
| 251 | return *T; |
| 252 | } |
| 253 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 254 | void DarwinGCC::AddLinkSearchPathArgs(const ArgList &Args, |
| 255 | ArgStringList &CmdArgs) const { |
Daniel Dunbar | e3c153a | 2010-04-10 18:18:57 +0000 | [diff] [blame] | 256 | std::string Tmp; |
| 257 | |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 258 | // FIXME: Derive these correctly. |
| 259 | if (getArchName() == "x86_64") { |
| 260 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc/" + ToolChainDir + |
| 261 | "/x86_64")); |
| 262 | // Intentionally duplicated for (temporary) gcc bug compatibility. |
| 263 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc/" + ToolChainDir + |
| 264 | "/x86_64")); |
| 265 | } |
Daniel Dunbar | 8bc9c55 | 2010-04-10 01:24:22 +0000 | [diff] [blame] | 266 | |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 267 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/" + ToolChainDir)); |
Daniel Dunbar | e3c153a | 2010-04-10 18:18:57 +0000 | [diff] [blame] | 268 | |
| 269 | Tmp = getDriver().Dir + "/../lib/gcc/" + ToolChainDir; |
| 270 | if (llvm::sys::Path(Tmp).exists()) |
| 271 | CmdArgs.push_back(Args.MakeArgString("-L" + Tmp)); |
| 272 | Tmp = getDriver().Dir + "/../lib/gcc"; |
| 273 | if (llvm::sys::Path(Tmp).exists()) |
| 274 | CmdArgs.push_back(Args.MakeArgString("-L" + Tmp)); |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 275 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc/" + ToolChainDir)); |
| 276 | // Intentionally duplicated for (temporary) gcc bug compatibility. |
| 277 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc/" + ToolChainDir)); |
Daniel Dunbar | e3c153a | 2010-04-10 18:18:57 +0000 | [diff] [blame] | 278 | Tmp = getDriver().Dir + "/../lib/" + ToolChainDir; |
| 279 | if (llvm::sys::Path(Tmp).exists()) |
| 280 | CmdArgs.push_back(Args.MakeArgString("-L" + Tmp)); |
| 281 | Tmp = getDriver().Dir + "/../lib"; |
| 282 | if (llvm::sys::Path(Tmp).exists()) |
| 283 | CmdArgs.push_back(Args.MakeArgString("-L" + Tmp)); |
Daniel Dunbar | 6b200b2 | 2009-09-18 08:14:36 +0000 | [diff] [blame] | 284 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc/" + ToolChainDir + |
| 285 | "/../../../" + ToolChainDir)); |
| 286 | CmdArgs.push_back(Args.MakeArgString("-L/usr/lib/gcc/" + ToolChainDir + |
| 287 | "/../../..")); |
| 288 | } |
| 289 | |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 290 | void DarwinGCC::AddLinkRuntimeLibArgs(const ArgList &Args, |
| 291 | ArgStringList &CmdArgs) const { |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 292 | // Note that this routine is only used for targetting OS X. |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 293 | |
| 294 | // Derived from libgcc and lib specs but refactored. |
| 295 | if (Args.hasArg(options::OPT_static)) { |
| 296 | CmdArgs.push_back("-lgcc_static"); |
| 297 | } else { |
| 298 | if (Args.hasArg(options::OPT_static_libgcc)) { |
| 299 | CmdArgs.push_back("-lgcc_eh"); |
| 300 | } else if (Args.hasArg(options::OPT_miphoneos_version_min_EQ)) { |
| 301 | // Derived from darwin_iphoneos_libgcc spec. |
Daniel Dunbar | 251ca6c | 2010-01-27 00:56:37 +0000 | [diff] [blame] | 302 | if (isTargetIPhoneOS()) { |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 303 | CmdArgs.push_back("-lgcc_s.1"); |
| 304 | } else { |
| 305 | CmdArgs.push_back("-lgcc_s.10.5"); |
| 306 | } |
| 307 | } else if (Args.hasArg(options::OPT_shared_libgcc) || |
Daniel Dunbar | 8a0d94d | 2010-01-10 00:46:10 +0000 | [diff] [blame] | 308 | Args.hasFlag(options::OPT_fexceptions, |
| 309 | options::OPT_fno_exceptions) || |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 310 | Args.hasArg(options::OPT_fgnu_runtime)) { |
| 311 | // FIXME: This is probably broken on 10.3? |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 312 | if (isMacosxVersionLT(10, 5)) |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 313 | CmdArgs.push_back("-lgcc_s.10.4"); |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 314 | else if (isMacosxVersionLT(10, 6)) |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 315 | CmdArgs.push_back("-lgcc_s.10.5"); |
| 316 | } else { |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 317 | if (isMacosxVersionLT(10, 3, 9)) |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 318 | ; // Do nothing. |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 319 | else if (isMacosxVersionLT(10, 5)) |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 320 | CmdArgs.push_back("-lgcc_s.10.4"); |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 321 | else if (isMacosxVersionLT(10, 6)) |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 322 | CmdArgs.push_back("-lgcc_s.10.5"); |
| 323 | } |
| 324 | |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 325 | if (isTargetIPhoneOS() || isMacosxVersionLT(10, 6)) { |
Daniel Dunbar | 6cd4154 | 2009-09-18 08:15:03 +0000 | [diff] [blame] | 326 | CmdArgs.push_back("-lgcc"); |
| 327 | CmdArgs.push_back("-lSystem"); |
| 328 | } else { |
| 329 | CmdArgs.push_back("-lSystem"); |
| 330 | CmdArgs.push_back("-lgcc"); |
| 331 | } |
| 332 | } |
| 333 | } |
| 334 | |
Daniel Dunbar | 25b58eb | 2010-08-02 05:44:07 +0000 | [diff] [blame] | 335 | DarwinClang::DarwinClang(const HostInfo &Host, const llvm::Triple& Triple) |
| 336 | : Darwin(Host, Triple) |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 337 | { |
| 338 | // We expect 'as', 'ld', etc. to be adjacent to our install dir. |
Daniel Dunbar | edf29b0 | 2010-08-01 22:29:51 +0000 | [diff] [blame] | 339 | getProgramPaths().push_back(getDriver().getInstalledDir()); |
| 340 | if (getDriver().getInstalledDir() != getDriver().Dir) |
| 341 | getProgramPaths().push_back(getDriver().Dir); |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | void DarwinClang::AddLinkSearchPathArgs(const ArgList &Args, |
| 345 | ArgStringList &CmdArgs) const { |
| 346 | // The Clang toolchain uses explicit paths for internal libraries. |
Daniel Dunbar | 424b661 | 2010-06-30 23:56:13 +0000 | [diff] [blame] | 347 | |
| 348 | // Unfortunately, we still might depend on a few of the libraries that are |
| 349 | // only available in the gcc library directory (in particular |
| 350 | // libstdc++.dylib). For now, hardcode the path to the known install location. |
| 351 | llvm::sys::Path P(getDriver().Dir); |
| 352 | P.eraseComponent(); // .../usr/bin -> ../usr |
| 353 | P.appendComponent("lib"); |
| 354 | P.appendComponent("gcc"); |
| 355 | switch (getTriple().getArch()) { |
| 356 | default: |
| 357 | assert(0 && "Invalid Darwin arch!"); |
| 358 | case llvm::Triple::x86: |
| 359 | case llvm::Triple::x86_64: |
| 360 | P.appendComponent("i686-apple-darwin10"); |
| 361 | break; |
| 362 | case llvm::Triple::arm: |
| 363 | case llvm::Triple::thumb: |
| 364 | P.appendComponent("arm-apple-darwin10"); |
| 365 | break; |
| 366 | case llvm::Triple::ppc: |
| 367 | case llvm::Triple::ppc64: |
| 368 | P.appendComponent("powerpc-apple-darwin10"); |
| 369 | break; |
| 370 | } |
| 371 | P.appendComponent("4.2.1"); |
| 372 | if (P.exists()) |
| 373 | CmdArgs.push_back(Args.MakeArgString("-L" + P.str())); |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args, |
| 377 | ArgStringList &CmdArgs) const { |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 378 | // Darwin doesn't support real static executables, don't link any runtime |
| 379 | // libraries with -static. |
| 380 | if (Args.hasArg(options::OPT_static)) |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 381 | return; |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 382 | |
| 383 | // Reject -static-libgcc for now, we can deal with this when and if someone |
| 384 | // cares. This is useful in situations where someone wants to statically link |
| 385 | // something like libstdc++, and needs its runtime support routines. |
| 386 | if (const Arg *A = Args.getLastArg(options::OPT_static_libgcc)) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 387 | getDriver().Diag(clang::diag::err_drv_unsupported_opt) |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 388 | << A->getAsString(Args); |
| 389 | return; |
| 390 | } |
| 391 | |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 392 | // Otherwise link libSystem, then the dynamic runtime library, and finally any |
| 393 | // target specific static runtime library. |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 394 | CmdArgs.push_back("-lSystem"); |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 395 | |
| 396 | // Select the dynamic runtime library and the target specific static library. |
| 397 | const char *DarwinStaticLib = 0; |
Daniel Dunbar | 251ca6c | 2010-01-27 00:56:37 +0000 | [diff] [blame] | 398 | if (isTargetIPhoneOS()) { |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 399 | CmdArgs.push_back("-lgcc_s.1"); |
| 400 | |
| 401 | // We may need some static functions for armv6/thumb which are required to |
| 402 | // be in the same linkage unit as their caller. |
| 403 | if (getDarwinArchName(Args) == "armv6") |
| 404 | DarwinStaticLib = "libclang_rt.armv6.a"; |
| 405 | } else { |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 406 | // The dynamic runtime library was merged with libSystem for 10.6 and |
| 407 | // beyond; only 10.4 and 10.5 need an additional runtime library. |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 408 | if (isMacosxVersionLT(10, 5)) |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 409 | CmdArgs.push_back("-lgcc_s.10.4"); |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 410 | else if (isMacosxVersionLT(10, 6)) |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 411 | CmdArgs.push_back("-lgcc_s.10.5"); |
| 412 | |
| 413 | // For OS X, we only need a static runtime library when targetting 10.4, to |
| 414 | // provide versions of the static functions which were omitted from |
| 415 | // 10.4.dylib. |
Daniel Dunbar | ce3fdf2 | 2010-01-27 00:57:03 +0000 | [diff] [blame] | 416 | if (isMacosxVersionLT(10, 5)) |
Daniel Dunbar | eec9910 | 2010-01-22 03:38:14 +0000 | [diff] [blame] | 417 | DarwinStaticLib = "libclang_rt.10.4.a"; |
| 418 | } |
| 419 | |
| 420 | /// Add the target specific static library, if needed. |
| 421 | if (DarwinStaticLib) { |
| 422 | llvm::sys::Path P(getDriver().ResourceDir); |
| 423 | P.appendComponent("lib"); |
| 424 | P.appendComponent("darwin"); |
| 425 | P.appendComponent(DarwinStaticLib); |
| 426 | |
| 427 | // For now, allow missing resource libraries to support developers who may |
| 428 | // not have compiler-rt checked out or integrated into their build. |
| 429 | if (!P.exists()) |
| 430 | getDriver().Diag(clang::diag::warn_drv_missing_resource_library) |
| 431 | << P.str(); |
| 432 | else |
| 433 | CmdArgs.push_back(Args.MakeArgString(P.str())); |
| 434 | } |
Daniel Dunbar | 1d4612b | 2009-09-18 08:15:13 +0000 | [diff] [blame] | 435 | } |
| 436 | |
Daniel Dunbar | 60baf0f | 2010-07-19 17:11:36 +0000 | [diff] [blame] | 437 | void Darwin::AddDeploymentTarget(DerivedArgList &Args) const { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 438 | const OptTable &Opts = getDriver().getOpts(); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 439 | |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 440 | Arg *OSXVersion = Args.getLastArg(options::OPT_mmacosx_version_min_EQ); |
| 441 | Arg *iPhoneVersion = Args.getLastArg(options::OPT_miphoneos_version_min_EQ); |
Daniel Dunbar | ff8857a | 2009-04-10 20:11:50 +0000 | [diff] [blame] | 442 | if (OSXVersion && iPhoneVersion) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 443 | getDriver().Diag(clang::diag::err_drv_argument_not_allowed_with) |
Daniel Dunbar | ff8857a | 2009-04-10 20:11:50 +0000 | [diff] [blame] | 444 | << OSXVersion->getAsString(Args) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 445 | << iPhoneVersion->getAsString(Args); |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 446 | iPhoneVersion = 0; |
Daniel Dunbar | ff8857a | 2009-04-10 20:11:50 +0000 | [diff] [blame] | 447 | } else if (!OSXVersion && !iPhoneVersion) { |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 448 | // If neither OS X nor iPhoneOS targets were specified, check for |
| 449 | // environment defines. |
| 450 | const char *OSXTarget = ::getenv("MACOSX_DEPLOYMENT_TARGET"); |
| 451 | const char *iPhoneOSTarget = ::getenv("IPHONEOS_DEPLOYMENT_TARGET"); |
Daniel Dunbar | f36a06a | 2009-04-10 21:00:07 +0000 | [diff] [blame] | 452 | |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 453 | // Ignore empty strings. |
| 454 | if (OSXTarget && OSXTarget[0] == '\0') |
| 455 | OSXTarget = 0; |
| 456 | if (iPhoneOSTarget && iPhoneOSTarget[0] == '\0') |
| 457 | iPhoneOSTarget = 0; |
| 458 | |
Daniel Dunbar | 3905367 | 2010-02-02 17:31:12 +0000 | [diff] [blame] | 459 | // Diagnose conflicting deployment targets, and choose default platform |
| 460 | // based on the tool chain. |
| 461 | // |
| 462 | // FIXME: Don't hardcode default here. |
| 463 | if (OSXTarget && iPhoneOSTarget) { |
| 464 | // FIXME: We should see if we can get away with warning or erroring on |
| 465 | // this. Perhaps put under -pedantic? |
| 466 | if (getTriple().getArch() == llvm::Triple::arm || |
| 467 | getTriple().getArch() == llvm::Triple::thumb) |
Daniel Dunbar | 84d1e6e | 2010-03-20 08:47:42 +0000 | [diff] [blame] | 468 | OSXTarget = 0; |
Daniel Dunbar | 3905367 | 2010-02-02 17:31:12 +0000 | [diff] [blame] | 469 | else |
Daniel Dunbar | 84d1e6e | 2010-03-20 08:47:42 +0000 | [diff] [blame] | 470 | iPhoneOSTarget = 0; |
Daniel Dunbar | 3905367 | 2010-02-02 17:31:12 +0000 | [diff] [blame] | 471 | } |
Daniel Dunbar | 1a3c1d9 | 2010-01-29 17:02:25 +0000 | [diff] [blame] | 472 | |
Daniel Dunbar | 3905367 | 2010-02-02 17:31:12 +0000 | [diff] [blame] | 473 | if (OSXTarget) { |
Daniel Dunbar | 30392de | 2009-09-04 18:35:21 +0000 | [diff] [blame] | 474 | const Option *O = Opts.getOption(options::OPT_mmacosx_version_min_EQ); |
Daniel Dunbar | 60baf0f | 2010-07-19 17:11:36 +0000 | [diff] [blame] | 475 | OSXVersion = Args.MakeJoinedArg(0, O, OSXTarget); |
| 476 | Args.append(OSXVersion); |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 477 | } else if (iPhoneOSTarget) { |
Daniel Dunbar | 30392de | 2009-09-04 18:35:21 +0000 | [diff] [blame] | 478 | const Option *O = Opts.getOption(options::OPT_miphoneos_version_min_EQ); |
Daniel Dunbar | 60baf0f | 2010-07-19 17:11:36 +0000 | [diff] [blame] | 479 | iPhoneVersion = Args.MakeJoinedArg(0, O, iPhoneOSTarget); |
| 480 | Args.append(iPhoneVersion); |
Daniel Dunbar | 816bc31 | 2010-01-26 01:45:19 +0000 | [diff] [blame] | 481 | } else { |
Daniel Dunbar | 2bb38d0 | 2010-07-15 16:18:06 +0000 | [diff] [blame] | 482 | // Otherwise, assume we are targeting OS X. |
| 483 | const Option *O = Opts.getOption(options::OPT_mmacosx_version_min_EQ); |
Daniel Dunbar | 60baf0f | 2010-07-19 17:11:36 +0000 | [diff] [blame] | 484 | OSXVersion = Args.MakeJoinedArg(0, O, MacosxVersionMin); |
| 485 | Args.append(OSXVersion); |
Daniel Dunbar | 30392de | 2009-09-04 18:35:21 +0000 | [diff] [blame] | 486 | } |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 487 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 488 | |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 489 | // Set the tool chain target information. |
| 490 | unsigned Major, Minor, Micro; |
| 491 | bool HadExtra; |
| 492 | if (OSXVersion) { |
| 493 | assert(!iPhoneVersion && "Unknown target platform!"); |
| 494 | if (!Driver::GetReleaseVersion(OSXVersion->getValue(Args), Major, Minor, |
| 495 | Micro, HadExtra) || HadExtra || |
| 496 | Major != 10 || Minor >= 10 || Micro >= 10) |
| 497 | getDriver().Diag(clang::diag::err_drv_invalid_version_number) |
| 498 | << OSXVersion->getAsString(Args); |
| 499 | } else { |
| 500 | assert(iPhoneVersion && "Unknown target platform!"); |
| 501 | if (!Driver::GetReleaseVersion(iPhoneVersion->getValue(Args), Major, Minor, |
| 502 | Micro, HadExtra) || HadExtra || |
| 503 | Major >= 10 || Minor >= 100 || Micro >= 100) |
| 504 | getDriver().Diag(clang::diag::err_drv_invalid_version_number) |
| 505 | << iPhoneVersion->getAsString(Args); |
| 506 | } |
| 507 | setTarget(iPhoneVersion, Major, Minor, Micro); |
Daniel Dunbar | c0e665e | 2010-07-19 17:11:33 +0000 | [diff] [blame] | 508 | } |
| 509 | |
| 510 | DerivedArgList *Darwin::TranslateArgs(const DerivedArgList &Args, |
| 511 | const char *BoundArch) const { |
| 512 | DerivedArgList *DAL = new DerivedArgList(Args.getBaseArgs()); |
| 513 | const OptTable &Opts = getDriver().getOpts(); |
| 514 | |
| 515 | // FIXME: We really want to get out of the tool chain level argument |
| 516 | // translation business, as it makes the driver functionality much |
| 517 | // more opaque. For now, we follow gcc closely solely for the |
| 518 | // purpose of easily achieving feature parity & testability. Once we |
| 519 | // have something that works, we should reevaluate each translation |
| 520 | // and try to push it down into tool specific logic. |
Daniel Dunbar | 2603137 | 2010-01-27 00:56:25 +0000 | [diff] [blame] | 521 | |
Daniel Dunbar | 279c1db | 2010-06-11 22:00:26 +0000 | [diff] [blame] | 522 | for (ArgList::const_iterator it = Args.begin(), |
| 523 | ie = Args.end(); it != ie; ++it) { |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 524 | Arg *A = *it; |
| 525 | |
| 526 | if (A->getOption().matches(options::OPT_Xarch__)) { |
| 527 | // FIXME: Canonicalize name. |
| 528 | if (getArchName() != A->getValue(Args, 0)) |
| 529 | continue; |
| 530 | |
Daniel Dunbar | 0e10031 | 2010-06-14 21:23:08 +0000 | [diff] [blame] | 531 | unsigned Index = Args.getBaseArgs().MakeIndex(A->getValue(Args, 1)); |
| 532 | unsigned Prev = Index; |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 533 | Arg *XarchArg = Opts.ParseOneArg(Args, Index); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 534 | |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 535 | // If the argument parsing failed or more than one argument was |
| 536 | // consumed, the -Xarch_ argument's parameter tried to consume |
| 537 | // extra arguments. Emit an error and ignore. |
| 538 | // |
| 539 | // We also want to disallow any options which would alter the |
| 540 | // driver behavior; that isn't going to work in our model. We |
| 541 | // use isDriverOption() as an approximation, although things |
| 542 | // like -O4 are going to slip through. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 543 | if (!XarchArg || Index > Prev + 1 || |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 544 | XarchArg->getOption().isDriverOption()) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 545 | getDriver().Diag(clang::diag::err_drv_invalid_Xarch_argument) |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 546 | << A->getAsString(Args); |
| 547 | continue; |
| 548 | } |
| 549 | |
Daniel Dunbar | 478edc2 | 2009-03-29 22:29:05 +0000 | [diff] [blame] | 550 | XarchArg->setBaseArg(A); |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 551 | A = XarchArg; |
Daniel Dunbar | 0e10031 | 2010-06-14 21:23:08 +0000 | [diff] [blame] | 552 | |
| 553 | DAL->AddSynthesizedArg(A); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 554 | } |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 555 | |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 556 | // Sob. These is strictly gcc compatible for the time being. Apple |
| 557 | // gcc translates options twice, which means that self-expanding |
| 558 | // options add duplicates. |
Daniel Dunbar | 9e1f982 | 2009-11-19 04:14:53 +0000 | [diff] [blame] | 559 | switch ((options::ID) A->getOption().getID()) { |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 560 | default: |
| 561 | DAL->append(A); |
| 562 | break; |
| 563 | |
| 564 | case options::OPT_mkernel: |
| 565 | case options::OPT_fapple_kext: |
| 566 | DAL->append(A); |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 567 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_static)); |
| 568 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_static)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 569 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 570 | |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 571 | case options::OPT_dependency_file: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 572 | DAL->AddSeparateArg(A, Opts.getOption(options::OPT_MF), |
| 573 | A->getValue(Args)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 574 | break; |
| 575 | |
| 576 | case options::OPT_gfull: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 577 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag)); |
| 578 | DAL->AddFlagArg(A, |
| 579 | Opts.getOption(options::OPT_fno_eliminate_unused_debug_symbols)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 580 | break; |
| 581 | |
| 582 | case options::OPT_gused: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 583 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_g_Flag)); |
| 584 | DAL->AddFlagArg(A, |
| 585 | Opts.getOption(options::OPT_feliminate_unused_debug_symbols)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 586 | break; |
| 587 | |
| 588 | case options::OPT_fterminated_vtables: |
| 589 | case options::OPT_findirect_virtual_calls: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 590 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_fapple_kext)); |
| 591 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_static)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 592 | break; |
| 593 | |
| 594 | case options::OPT_shared: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 595 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_dynamiclib)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 596 | break; |
| 597 | |
| 598 | case options::OPT_fconstant_cfstrings: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 599 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_mconstant_cfstrings)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 600 | break; |
| 601 | |
| 602 | case options::OPT_fno_constant_cfstrings: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 603 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_constant_cfstrings)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 604 | break; |
| 605 | |
| 606 | case options::OPT_Wnonportable_cfstrings: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 607 | DAL->AddFlagArg(A, |
| 608 | Opts.getOption(options::OPT_mwarn_nonportable_cfstrings)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 609 | break; |
| 610 | |
| 611 | case options::OPT_Wno_nonportable_cfstrings: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 612 | DAL->AddFlagArg(A, |
| 613 | Opts.getOption(options::OPT_mno_warn_nonportable_cfstrings)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 614 | break; |
| 615 | |
| 616 | case options::OPT_fpascal_strings: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 617 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_mpascal_strings)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 618 | break; |
| 619 | |
| 620 | case options::OPT_fno_pascal_strings: |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 621 | DAL->AddFlagArg(A, Opts.getOption(options::OPT_mno_pascal_strings)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 622 | break; |
| 623 | } |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 624 | } |
| 625 | |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 626 | if (getTriple().getArch() == llvm::Triple::x86 || |
| 627 | getTriple().getArch() == llvm::Triple::x86_64) |
Daniel Dunbar | e4bdae7 | 2009-11-19 04:00:53 +0000 | [diff] [blame] | 628 | if (!Args.hasArgNoClaim(options::OPT_mtune_EQ)) |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 629 | DAL->AddJoinedArg(0, Opts.getOption(options::OPT_mtune_EQ), "core2"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 630 | |
| 631 | // Add the arch options based on the particular spelling of -arch, to match |
| 632 | // how the driver driver works. |
| 633 | if (BoundArch) { |
| 634 | llvm::StringRef Name = BoundArch; |
| 635 | const Option *MCpu = Opts.getOption(options::OPT_mcpu_EQ); |
| 636 | const Option *MArch = Opts.getOption(options::OPT_march_EQ); |
| 637 | |
| 638 | // This code must be kept in sync with LLVM's getArchTypeForDarwinArch, |
| 639 | // which defines the list of which architectures we accept. |
| 640 | if (Name == "ppc") |
| 641 | ; |
| 642 | else if (Name == "ppc601") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 643 | DAL->AddJoinedArg(0, MCpu, "601"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 644 | else if (Name == "ppc603") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 645 | DAL->AddJoinedArg(0, MCpu, "603"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 646 | else if (Name == "ppc604") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 647 | DAL->AddJoinedArg(0, MCpu, "604"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 648 | else if (Name == "ppc604e") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 649 | DAL->AddJoinedArg(0, MCpu, "604e"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 650 | else if (Name == "ppc750") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 651 | DAL->AddJoinedArg(0, MCpu, "750"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 652 | else if (Name == "ppc7400") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 653 | DAL->AddJoinedArg(0, MCpu, "7400"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 654 | else if (Name == "ppc7450") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 655 | DAL->AddJoinedArg(0, MCpu, "7450"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 656 | else if (Name == "ppc970") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 657 | DAL->AddJoinedArg(0, MCpu, "970"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 658 | |
| 659 | else if (Name == "ppc64") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 660 | DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64)); |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 661 | |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 662 | else if (Name == "i386") |
| 663 | ; |
| 664 | else if (Name == "i486") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 665 | DAL->AddJoinedArg(0, MArch, "i486"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 666 | else if (Name == "i586") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 667 | DAL->AddJoinedArg(0, MArch, "i586"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 668 | else if (Name == "i686") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 669 | DAL->AddJoinedArg(0, MArch, "i686"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 670 | else if (Name == "pentium") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 671 | DAL->AddJoinedArg(0, MArch, "pentium"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 672 | else if (Name == "pentium2") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 673 | DAL->AddJoinedArg(0, MArch, "pentium2"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 674 | else if (Name == "pentpro") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 675 | DAL->AddJoinedArg(0, MArch, "pentiumpro"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 676 | else if (Name == "pentIIm3") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 677 | DAL->AddJoinedArg(0, MArch, "pentium2"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 678 | |
| 679 | else if (Name == "x86_64") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 680 | DAL->AddFlagArg(0, Opts.getOption(options::OPT_m64)); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 681 | |
| 682 | else if (Name == "arm") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 683 | DAL->AddJoinedArg(0, MArch, "armv4t"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 684 | else if (Name == "armv4t") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 685 | DAL->AddJoinedArg(0, MArch, "armv4t"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 686 | else if (Name == "armv5") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 687 | DAL->AddJoinedArg(0, MArch, "armv5tej"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 688 | else if (Name == "xscale") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 689 | DAL->AddJoinedArg(0, MArch, "xscale"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 690 | else if (Name == "armv6") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 691 | DAL->AddJoinedArg(0, MArch, "armv6k"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 692 | else if (Name == "armv7") |
Daniel Dunbar | 9d0863b | 2010-06-14 20:20:41 +0000 | [diff] [blame] | 693 | DAL->AddJoinedArg(0, MArch, "armv7a"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 694 | |
| 695 | else |
Jeffrey Yasskin | 9f61aa9 | 2009-12-12 05:05:38 +0000 | [diff] [blame] | 696 | llvm_unreachable("invalid Darwin arch"); |
Daniel Dunbar | 84ec96c | 2009-09-09 22:33:15 +0000 | [diff] [blame] | 697 | } |
Daniel Dunbar | ec069ed | 2009-03-25 06:58:31 +0000 | [diff] [blame] | 698 | |
Daniel Dunbar | 60baf0f | 2010-07-19 17:11:36 +0000 | [diff] [blame] | 699 | // Add an explicit version min argument for the deployment target. We do this |
| 700 | // after argument translation because -Xarch_ arguments may add a version min |
| 701 | // argument. |
| 702 | AddDeploymentTarget(*DAL); |
| 703 | |
Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 704 | return DAL; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 705 | } |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 706 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 707 | bool Darwin::IsUnwindTablesDefault() const { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 708 | // FIXME: Gross; we should probably have some separate target |
| 709 | // definition, possibly even reusing the one in clang. |
| 710 | return getArchName() == "x86_64"; |
| 711 | } |
| 712 | |
Daniel Dunbar | f2d8b9f | 2009-12-18 02:43:17 +0000 | [diff] [blame] | 713 | bool Darwin::UseDwarfDebugFlags() const { |
| 714 | if (const char *S = ::getenv("RC_DEBUG_OPTIONS")) |
| 715 | return S[0] != '\0'; |
| 716 | return false; |
| 717 | } |
| 718 | |
Daniel Dunbar | b2987d1 | 2010-02-10 18:49:11 +0000 | [diff] [blame] | 719 | bool Darwin::UseSjLjExceptions() const { |
| 720 | // Darwin uses SjLj exceptions on ARM. |
| 721 | return (getTriple().getArch() == llvm::Triple::arm || |
| 722 | getTriple().getArch() == llvm::Triple::thumb); |
| 723 | } |
| 724 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 725 | const char *Darwin::GetDefaultRelocationModel() const { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 726 | return "pic"; |
| 727 | } |
| 728 | |
Daniel Dunbar | f395528 | 2009-09-04 18:34:51 +0000 | [diff] [blame] | 729 | const char *Darwin::GetForcedPicModel() const { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 730 | if (getArchName() == "x86_64") |
| 731 | return "pic"; |
| 732 | return 0; |
| 733 | } |
| 734 | |
Daniel Dunbar | 43a9b32 | 2010-04-10 16:20:23 +0000 | [diff] [blame] | 735 | bool Darwin::SupportsObjCGC() const { |
| 736 | // Garbage collection is supported everywhere except on iPhone OS. |
| 737 | return !isTargetIPhoneOS(); |
| 738 | } |
| 739 | |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 740 | /// Generic_GCC - A tool chain using the 'gcc' command to perform |
| 741 | /// all subcommands; this relies on gcc translating the majority of |
| 742 | /// command line options. |
| 743 | |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 744 | Generic_GCC::Generic_GCC(const HostInfo &Host, const llvm::Triple& Triple) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 745 | : ToolChain(Host, Triple) { |
Daniel Dunbar | edf29b0 | 2010-08-01 22:29:51 +0000 | [diff] [blame] | 746 | getProgramPaths().push_back(getDriver().getInstalledDir()); |
| 747 | if (getDriver().getInstalledDir() != getDriver().Dir.c_str()) |
| 748 | getProgramPaths().push_back(getDriver().Dir); |
Daniel Dunbar | c50b00d | 2009-03-23 16:15:50 +0000 | [diff] [blame] | 749 | } |
| 750 | |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 751 | Generic_GCC::~Generic_GCC() { |
| 752 | // Free tool implementations. |
| 753 | for (llvm::DenseMap<unsigned, Tool*>::iterator |
| 754 | it = Tools.begin(), ie = Tools.end(); it != ie; ++it) |
| 755 | delete it->second; |
| 756 | } |
| 757 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 758 | Tool &Generic_GCC::SelectTool(const Compilation &C, |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 759 | const JobAction &JA) const { |
| 760 | Action::ActionClass Key; |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 761 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 762 | Key = Action::AnalyzeJobClass; |
| 763 | else |
| 764 | Key = JA.getKind(); |
| 765 | |
| 766 | Tool *&T = Tools[Key]; |
| 767 | if (!T) { |
| 768 | switch (Key) { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 769 | case Action::InputClass: |
| 770 | case Action::BindArchClass: |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 771 | assert(0 && "Invalid tool kind."); |
| 772 | case Action::PreprocessJobClass: |
| 773 | T = new tools::gcc::Preprocess(*this); break; |
| 774 | case Action::PrecompileJobClass: |
| 775 | T = new tools::gcc::Precompile(*this); break; |
| 776 | case Action::AnalyzeJobClass: |
| 777 | T = new tools::Clang(*this); break; |
| 778 | case Action::CompileJobClass: |
| 779 | T = new tools::gcc::Compile(*this); break; |
| 780 | case Action::AssembleJobClass: |
| 781 | T = new tools::gcc::Assemble(*this); break; |
| 782 | case Action::LinkJobClass: |
| 783 | T = new tools::gcc::Link(*this); break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 784 | |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 785 | // This is a bit ungeneric, but the only platform using a driver |
| 786 | // driver is Darwin. |
| 787 | case Action::LipoJobClass: |
| 788 | T = new tools::darwin::Lipo(*this); break; |
Daniel Dunbar | 6e0f254 | 2010-06-04 18:28:36 +0000 | [diff] [blame] | 789 | case Action::DsymutilJobClass: |
| 790 | T = new tools::darwin::Dsymutil(*this); break; |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 791 | } |
| 792 | } |
| 793 | |
| 794 | return *T; |
| 795 | } |
| 796 | |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 797 | bool Generic_GCC::IsUnwindTablesDefault() const { |
Daniel Dunbar | 8eddb3f | 2009-03-20 00:57:52 +0000 | [diff] [blame] | 798 | // FIXME: Gross; we should probably have some separate target |
| 799 | // definition, possibly even reusing the one in clang. |
Daniel Dunbar | 3917608 | 2009-03-20 00:20:03 +0000 | [diff] [blame] | 800 | return getArchName() == "x86_64"; |
| 801 | } |
| 802 | |
| 803 | const char *Generic_GCC::GetDefaultRelocationModel() const { |
| 804 | return "static"; |
| 805 | } |
| 806 | |
| 807 | const char *Generic_GCC::GetForcedPicModel() const { |
| 808 | return 0; |
| 809 | } |
Daniel Dunbar | f3cad36 | 2009-03-25 04:13:45 +0000 | [diff] [blame] | 810 | |
Chris Lattner | 3a47c4e | 2010-03-04 21:07:38 +0000 | [diff] [blame] | 811 | /// TCEToolChain - A tool chain using the llvm bitcode tools to perform |
| 812 | /// all subcommands. See http://tce.cs.tut.fi for our peculiar target. |
| 813 | /// Currently does not support anything else but compilation. |
| 814 | |
| 815 | TCEToolChain::TCEToolChain(const HostInfo &Host, const llvm::Triple& Triple) |
| 816 | : ToolChain(Host, Triple) { |
| 817 | // Path mangling to find libexec |
| 818 | std::string Path(getDriver().Dir); |
| 819 | |
| 820 | Path += "/../libexec"; |
| 821 | getProgramPaths().push_back(Path); |
| 822 | } |
| 823 | |
| 824 | TCEToolChain::~TCEToolChain() { |
| 825 | for (llvm::DenseMap<unsigned, Tool*>::iterator |
| 826 | it = Tools.begin(), ie = Tools.end(); it != ie; ++it) |
| 827 | delete it->second; |
| 828 | } |
| 829 | |
| 830 | bool TCEToolChain::IsMathErrnoDefault() const { |
| 831 | return true; |
| 832 | } |
| 833 | |
| 834 | bool TCEToolChain::IsUnwindTablesDefault() const { |
| 835 | return false; |
| 836 | } |
| 837 | |
| 838 | const char *TCEToolChain::GetDefaultRelocationModel() const { |
| 839 | return "static"; |
| 840 | } |
| 841 | |
| 842 | const char *TCEToolChain::GetForcedPicModel() const { |
| 843 | return 0; |
| 844 | } |
| 845 | |
| 846 | Tool &TCEToolChain::SelectTool(const Compilation &C, |
| 847 | const JobAction &JA) const { |
| 848 | Action::ActionClass Key; |
| 849 | Key = Action::AnalyzeJobClass; |
| 850 | |
| 851 | Tool *&T = Tools[Key]; |
| 852 | if (!T) { |
| 853 | switch (Key) { |
| 854 | case Action::PreprocessJobClass: |
| 855 | T = new tools::gcc::Preprocess(*this); break; |
| 856 | case Action::AnalyzeJobClass: |
| 857 | T = new tools::Clang(*this); break; |
| 858 | default: |
| 859 | assert(false && "Unsupported action for TCE target."); |
| 860 | } |
| 861 | } |
| 862 | return *T; |
| 863 | } |
| 864 | |
Daniel Dunbar | f7b8eec | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 865 | /// OpenBSD - OpenBSD tool chain which can call as(1) and ld(1) directly. |
| 866 | |
| 867 | OpenBSD::OpenBSD(const HostInfo &Host, const llvm::Triple& Triple) |
| 868 | : Generic_GCC(Host, Triple) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 869 | getFilePaths().push_back(getDriver().Dir + "/../lib"); |
Daniel Dunbar | f7b8eec | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 870 | getFilePaths().push_back("/usr/lib"); |
| 871 | } |
| 872 | |
| 873 | Tool &OpenBSD::SelectTool(const Compilation &C, const JobAction &JA) const { |
| 874 | Action::ActionClass Key; |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 875 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
Daniel Dunbar | f7b8eec | 2009-06-29 20:52:51 +0000 | [diff] [blame] | 876 | Key = Action::AnalyzeJobClass; |
| 877 | else |
| 878 | Key = JA.getKind(); |
| 879 | |
| 880 | Tool *&T = Tools[Key]; |
| 881 | if (!T) { |
| 882 | switch (Key) { |
| 883 | case Action::AssembleJobClass: |
| 884 | T = new tools::openbsd::Assemble(*this); break; |
| 885 | case Action::LinkJobClass: |
| 886 | T = new tools::openbsd::Link(*this); break; |
| 887 | default: |
| 888 | T = &Generic_GCC::SelectTool(C, JA); |
| 889 | } |
| 890 | } |
| 891 | |
| 892 | return *T; |
| 893 | } |
| 894 | |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 895 | /// FreeBSD - FreeBSD tool chain which can call as(1) and ld(1) directly. |
| 896 | |
Daniel Dunbar | 214afe9 | 2010-08-02 05:43:59 +0000 | [diff] [blame] | 897 | FreeBSD::FreeBSD(const HostInfo &Host, const llvm::Triple& Triple) |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 898 | : Generic_GCC(Host, Triple) { |
Daniel Dunbar | 214afe9 | 2010-08-02 05:43:59 +0000 | [diff] [blame] | 899 | |
| 900 | // Determine if we are compiling 32-bit code on an x86_64 platform. |
| 901 | bool Lib32 = false; |
| 902 | if (Triple.getArch() == llvm::Triple::x86 && |
| 903 | llvm::Triple(getDriver().DefaultHostTriple).getArch() == |
| 904 | llvm::Triple::x86_64) |
| 905 | Lib32 = true; |
| 906 | |
Daniel Dunbar | 7fb2c25 | 2010-06-15 15:03:31 +0000 | [diff] [blame] | 907 | getProgramPaths().push_back(getDriver().Dir + "/../libexec"); |
| 908 | getProgramPaths().push_back("/usr/libexec"); |
Daniel Dunbar | bc53466 | 2009-04-02 18:30:04 +0000 | [diff] [blame] | 909 | if (Lib32) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 910 | getFilePaths().push_back(getDriver().Dir + "/../lib32"); |
Daniel Dunbar | bc53466 | 2009-04-02 18:30:04 +0000 | [diff] [blame] | 911 | getFilePaths().push_back("/usr/lib32"); |
| 912 | } else { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 913 | getFilePaths().push_back(getDriver().Dir + "/../lib"); |
Daniel Dunbar | bc53466 | 2009-04-02 18:30:04 +0000 | [diff] [blame] | 914 | getFilePaths().push_back("/usr/lib"); |
| 915 | } |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 916 | } |
| 917 | |
| 918 | Tool &FreeBSD::SelectTool(const Compilation &C, const JobAction &JA) const { |
| 919 | Action::ActionClass Key; |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 920 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 921 | Key = Action::AnalyzeJobClass; |
| 922 | else |
| 923 | Key = JA.getKind(); |
| 924 | |
| 925 | Tool *&T = Tools[Key]; |
| 926 | if (!T) { |
| 927 | switch (Key) { |
Daniel Dunbar | 68a31d4 | 2009-03-31 17:45:15 +0000 | [diff] [blame] | 928 | case Action::AssembleJobClass: |
| 929 | T = new tools::freebsd::Assemble(*this); break; |
Daniel Dunbar | 008f54a | 2009-04-01 19:36:32 +0000 | [diff] [blame] | 930 | case Action::LinkJobClass: |
| 931 | T = new tools::freebsd::Link(*this); break; |
Daniel Dunbar | 75358d2 | 2009-03-30 21:06:03 +0000 | [diff] [blame] | 932 | default: |
| 933 | T = &Generic_GCC::SelectTool(C, JA); |
| 934 | } |
| 935 | } |
| 936 | |
| 937 | return *T; |
| 938 | } |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 939 | |
Chris Lattner | 38e317d | 2010-07-07 16:01:42 +0000 | [diff] [blame] | 940 | /// Minix - Minix tool chain which can call as(1) and ld(1) directly. |
| 941 | |
| 942 | Minix::Minix(const HostInfo &Host, const llvm::Triple& Triple) |
| 943 | : Generic_GCC(Host, Triple) { |
| 944 | getFilePaths().push_back(getDriver().Dir + "/../lib"); |
| 945 | getFilePaths().push_back("/usr/lib"); |
| 946 | getFilePaths().push_back("/usr/gnu/lib"); |
| 947 | getFilePaths().push_back("/usr/gnu/lib/gcc/i686-pc-minix/4.4.3"); |
| 948 | } |
| 949 | |
| 950 | Tool &Minix::SelectTool(const Compilation &C, const JobAction &JA) const { |
| 951 | Action::ActionClass Key; |
| 952 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
| 953 | Key = Action::AnalyzeJobClass; |
| 954 | else |
| 955 | Key = JA.getKind(); |
| 956 | |
| 957 | Tool *&T = Tools[Key]; |
| 958 | if (!T) { |
| 959 | switch (Key) { |
| 960 | case Action::AssembleJobClass: |
| 961 | T = new tools::minix::Assemble(*this); break; |
| 962 | case Action::LinkJobClass: |
| 963 | T = new tools::minix::Link(*this); break; |
| 964 | default: |
| 965 | T = &Generic_GCC::SelectTool(C, JA); |
| 966 | } |
| 967 | } |
| 968 | |
| 969 | return *T; |
| 970 | } |
| 971 | |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 972 | /// AuroraUX - AuroraUX tool chain which can call as(1) and ld(1) directly. |
| 973 | |
| 974 | AuroraUX::AuroraUX(const HostInfo &Host, const llvm::Triple& Triple) |
| 975 | : Generic_GCC(Host, Triple) { |
| 976 | |
Daniel Dunbar | edf29b0 | 2010-08-01 22:29:51 +0000 | [diff] [blame] | 977 | getProgramPaths().push_back(getDriver().getInstalledDir()); |
| 978 | if (getDriver().getInstalledDir() != getDriver().Dir.c_str()) |
| 979 | getProgramPaths().push_back(getDriver().Dir); |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 980 | |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 981 | getFilePaths().push_back(getDriver().Dir + "/../lib"); |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 982 | getFilePaths().push_back("/usr/lib"); |
| 983 | getFilePaths().push_back("/usr/sfw/lib"); |
| 984 | getFilePaths().push_back("/opt/gcc4/lib"); |
Edward O'Callaghan | 7adf949 | 2009-10-15 07:44:07 +0000 | [diff] [blame] | 985 | getFilePaths().push_back("/opt/gcc4/lib/gcc/i386-pc-solaris2.11/4.2.4"); |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 986 | |
| 987 | } |
| 988 | |
| 989 | Tool &AuroraUX::SelectTool(const Compilation &C, const JobAction &JA) const { |
| 990 | Action::ActionClass Key; |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 991 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
Edward O'Callaghan | e7925a0 | 2009-08-22 01:06:46 +0000 | [diff] [blame] | 992 | Key = Action::AnalyzeJobClass; |
| 993 | else |
| 994 | Key = JA.getKind(); |
| 995 | |
| 996 | Tool *&T = Tools[Key]; |
| 997 | if (!T) { |
| 998 | switch (Key) { |
| 999 | case Action::AssembleJobClass: |
| 1000 | T = new tools::auroraux::Assemble(*this); break; |
| 1001 | case Action::LinkJobClass: |
| 1002 | T = new tools::auroraux::Link(*this); break; |
| 1003 | default: |
| 1004 | T = &Generic_GCC::SelectTool(C, JA); |
| 1005 | } |
| 1006 | } |
| 1007 | |
| 1008 | return *T; |
| 1009 | } |
| 1010 | |
| 1011 | |
Eli Friedman | 6b3454a | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 1012 | /// Linux toolchain (very bare-bones at the moment). |
| 1013 | |
| 1014 | Linux::Linux(const HostInfo &Host, const llvm::Triple& Triple) |
| 1015 | : Generic_GCC(Host, Triple) { |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 1016 | getFilePaths().push_back(getDriver().Dir + "/../lib/clang/1.0/"); |
Eli Friedman | 6b3454a | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 1017 | getFilePaths().push_back("/lib/"); |
| 1018 | getFilePaths().push_back("/usr/lib/"); |
Daniel Dunbar | a9822de | 2009-08-06 01:47:11 +0000 | [diff] [blame] | 1019 | |
| 1020 | // Depending on the Linux distribution, any combination of lib{,32,64} is |
| 1021 | // possible. E.g. Debian uses lib and lib32 for mixed i386/x86-64 systems, |
| 1022 | // openSUSE uses lib and lib64 for the same purpose. |
| 1023 | getFilePaths().push_back("/lib32/"); |
| 1024 | getFilePaths().push_back("/usr/lib32/"); |
| 1025 | getFilePaths().push_back("/lib64/"); |
| 1026 | getFilePaths().push_back("/usr/lib64/"); |
| 1027 | |
Eli Friedman | 6b3454a | 2009-05-26 07:52:18 +0000 | [diff] [blame] | 1028 | // FIXME: Figure out some way to get gcc's libdir |
| 1029 | // (e.g. /usr/lib/gcc/i486-linux-gnu/4.3/ for Ubuntu 32-bit); we need |
| 1030 | // crtbegin.o/crtend.o/etc., and want static versions of various |
| 1031 | // libraries. If we had our own crtbegin.o/crtend.o/etc, we could probably |
| 1032 | // get away with using shared versions in /usr/lib, though. |
| 1033 | // We could fall back to the approach we used for includes (a massive |
| 1034 | // list), but that's messy at best. |
| 1035 | } |
| 1036 | |
Rafael Espindola | ba30bbe | 2010-08-10 00:25:48 +0000 | [diff] [blame^] | 1037 | Tool &Linux::SelectTool(const Compilation &C, const JobAction &JA) const { |
| 1038 | Action::ActionClass Key; |
| 1039 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
| 1040 | Key = Action::AnalyzeJobClass; |
| 1041 | else |
| 1042 | Key = JA.getKind(); |
| 1043 | |
| 1044 | Tool *&T = Tools[Key]; |
| 1045 | if (!T) { |
| 1046 | switch (Key) { |
| 1047 | case Action::AssembleJobClass: |
| 1048 | T = new tools::linuxtools::Assemble(*this); break; |
| 1049 | default: |
| 1050 | T = &Generic_GCC::SelectTool(C, JA); |
| 1051 | } |
| 1052 | } |
| 1053 | |
| 1054 | return *T; |
| 1055 | } |
| 1056 | |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 1057 | /// DragonFly - DragonFly tool chain which can call as(1) and ld(1) directly. |
| 1058 | |
Daniel Dunbar | cb8ab23 | 2009-05-22 02:53:45 +0000 | [diff] [blame] | 1059 | DragonFly::DragonFly(const HostInfo &Host, const llvm::Triple& Triple) |
| 1060 | : Generic_GCC(Host, Triple) { |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 1061 | |
| 1062 | // Path mangling to find libexec |
Daniel Dunbar | edf29b0 | 2010-08-01 22:29:51 +0000 | [diff] [blame] | 1063 | getProgramPaths().push_back(getDriver().getInstalledDir()); |
| 1064 | if (getDriver().getInstalledDir() != getDriver().Dir.c_str()) |
| 1065 | getProgramPaths().push_back(getDriver().Dir); |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 1066 | |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 1067 | getFilePaths().push_back(getDriver().Dir + "/../lib"); |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 1068 | getFilePaths().push_back("/usr/lib"); |
| 1069 | getFilePaths().push_back("/usr/lib/gcc41"); |
| 1070 | } |
| 1071 | |
| 1072 | Tool &DragonFly::SelectTool(const Compilation &C, const JobAction &JA) const { |
| 1073 | Action::ActionClass Key; |
Daniel Dunbar | ee788e7 | 2009-12-21 18:54:17 +0000 | [diff] [blame] | 1074 | if (getDriver().ShouldUseClangCompiler(C, JA, getTriple())) |
Daniel Dunbar | 11e1b40 | 2009-05-02 18:28:39 +0000 | [diff] [blame] | 1075 | Key = Action::AnalyzeJobClass; |
| 1076 | else |
| 1077 | Key = JA.getKind(); |
| 1078 | |
| 1079 | Tool *&T = Tools[Key]; |
| 1080 | if (!T) { |
| 1081 | switch (Key) { |
| 1082 | case Action::AssembleJobClass: |
| 1083 | T = new tools::dragonfly::Assemble(*this); break; |
| 1084 | case Action::LinkJobClass: |
| 1085 | T = new tools::dragonfly::Link(*this); break; |
| 1086 | default: |
| 1087 | T = &Generic_GCC::SelectTool(C, JA); |
| 1088 | } |
| 1089 | } |
| 1090 | |
| 1091 | return *T; |
| 1092 | } |