David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 1 | //===--- CommonArgs.cpp - Args handling for multiple toolchains -*- 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 | #include "CommonArgs.h" |
| 11 | #include "InputInfo.h" |
| 12 | #include "Hexagon.h" |
| 13 | #include "Arch/AArch64.h" |
| 14 | #include "Arch/ARM.h" |
| 15 | #include "Arch/Mips.h" |
| 16 | #include "Arch/PPC.h" |
| 17 | #include "Arch/SystemZ.h" |
| 18 | #include "Arch/X86.h" |
| 19 | #include "clang/Basic/CharInfo.h" |
| 20 | #include "clang/Basic/LangOptions.h" |
| 21 | #include "clang/Basic/ObjCRuntime.h" |
| 22 | #include "clang/Basic/Version.h" |
| 23 | #include "clang/Basic/VirtualFileSystem.h" |
| 24 | #include "clang/Config/config.h" |
| 25 | #include "clang/Driver/Action.h" |
| 26 | #include "clang/Driver/Compilation.h" |
| 27 | #include "clang/Driver/Driver.h" |
| 28 | #include "clang/Driver/DriverDiagnostic.h" |
| 29 | #include "clang/Driver/Job.h" |
| 30 | #include "clang/Driver/Options.h" |
| 31 | #include "clang/Driver/SanitizerArgs.h" |
| 32 | #include "clang/Driver/ToolChain.h" |
| 33 | #include "clang/Driver/Util.h" |
| 34 | #include "llvm/ADT/STLExtras.h" |
| 35 | #include "llvm/ADT/SmallString.h" |
| 36 | #include "llvm/ADT/StringExtras.h" |
| 37 | #include "llvm/ADT/StringSwitch.h" |
| 38 | #include "llvm/ADT/Twine.h" |
| 39 | #include "llvm/Option/Arg.h" |
| 40 | #include "llvm/Option/ArgList.h" |
| 41 | #include "llvm/Option/Option.h" |
| 42 | #include "llvm/Support/CodeGen.h" |
| 43 | #include "llvm/Support/Compression.h" |
| 44 | #include "llvm/Support/ErrorHandling.h" |
| 45 | #include "llvm/Support/FileSystem.h" |
| 46 | #include "llvm/Support/Host.h" |
| 47 | #include "llvm/Support/Path.h" |
| 48 | #include "llvm/Support/Process.h" |
| 49 | #include "llvm/Support/Program.h" |
| 50 | #include "llvm/Support/ScopedPrinter.h" |
| 51 | #include "llvm/Support/TargetParser.h" |
| 52 | #include "llvm/Support/YAMLParser.h" |
| 53 | |
| 54 | using namespace clang::driver; |
| 55 | using namespace clang::driver::tools; |
| 56 | using namespace clang; |
| 57 | using namespace llvm::opt; |
| 58 | |
| 59 | void tools::addPathIfExists(const Driver &D, const Twine &Path, |
| 60 | ToolChain::path_list &Paths) { |
| 61 | if (D.getVFS().exists(Path)) |
| 62 | Paths.push_back(Path.str()); |
| 63 | } |
| 64 | |
| 65 | void tools::handleTargetFeaturesGroup(const ArgList &Args, |
| 66 | std::vector<StringRef> &Features, |
| 67 | OptSpecifier Group) { |
| 68 | for (const Arg *A : Args.filtered(Group)) { |
| 69 | StringRef Name = A->getOption().getName(); |
| 70 | A->claim(); |
| 71 | |
| 72 | // Skip over "-m". |
| 73 | assert(Name.startswith("m") && "Invalid feature name."); |
| 74 | Name = Name.substr(1); |
| 75 | |
| 76 | bool IsNegative = Name.startswith("no-"); |
| 77 | if (IsNegative) |
| 78 | Name = Name.substr(3); |
| 79 | Features.push_back(Args.MakeArgString((IsNegative ? "-" : "+") + Name)); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | void tools::addDirectoryList(const ArgList &Args, ArgStringList &CmdArgs, |
| 84 | const char *ArgName, const char *EnvVar) { |
| 85 | const char *DirList = ::getenv(EnvVar); |
| 86 | bool CombinedArg = false; |
| 87 | |
| 88 | if (!DirList) |
| 89 | return; // Nothing to do. |
| 90 | |
| 91 | StringRef Name(ArgName); |
| 92 | if (Name.equals("-I") || Name.equals("-L")) |
| 93 | CombinedArg = true; |
| 94 | |
| 95 | StringRef Dirs(DirList); |
| 96 | if (Dirs.empty()) // Empty string should not add '.'. |
| 97 | return; |
| 98 | |
| 99 | StringRef::size_type Delim; |
| 100 | while ((Delim = Dirs.find(llvm::sys::EnvPathSeparator)) != StringRef::npos) { |
| 101 | if (Delim == 0) { // Leading colon. |
| 102 | if (CombinedArg) { |
| 103 | CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + ".")); |
| 104 | } else { |
| 105 | CmdArgs.push_back(ArgName); |
| 106 | CmdArgs.push_back("."); |
| 107 | } |
| 108 | } else { |
| 109 | if (CombinedArg) { |
| 110 | CmdArgs.push_back( |
| 111 | Args.MakeArgString(std::string(ArgName) + Dirs.substr(0, Delim))); |
| 112 | } else { |
| 113 | CmdArgs.push_back(ArgName); |
| 114 | CmdArgs.push_back(Args.MakeArgString(Dirs.substr(0, Delim))); |
| 115 | } |
| 116 | } |
| 117 | Dirs = Dirs.substr(Delim + 1); |
| 118 | } |
| 119 | |
| 120 | if (Dirs.empty()) { // Trailing colon. |
| 121 | if (CombinedArg) { |
| 122 | CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + ".")); |
| 123 | } else { |
| 124 | CmdArgs.push_back(ArgName); |
| 125 | CmdArgs.push_back("."); |
| 126 | } |
| 127 | } else { // Add the last path. |
| 128 | if (CombinedArg) { |
| 129 | CmdArgs.push_back(Args.MakeArgString(std::string(ArgName) + Dirs)); |
| 130 | } else { |
| 131 | CmdArgs.push_back(ArgName); |
| 132 | CmdArgs.push_back(Args.MakeArgString(Dirs)); |
| 133 | } |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | void tools::AddLinkerInputs(const ToolChain &TC, const InputInfoList &Inputs, |
| 138 | const ArgList &Args, ArgStringList &CmdArgs, |
| 139 | const JobAction &JA) { |
| 140 | const Driver &D = TC.getDriver(); |
| 141 | |
| 142 | // Add extra linker input arguments which are not treated as inputs |
| 143 | // (constructed via -Xarch_). |
| 144 | Args.AddAllArgValues(CmdArgs, options::OPT_Zlinker_input); |
| 145 | |
| 146 | for (const auto &II : Inputs) { |
| 147 | // If the current tool chain refers to an OpenMP offloading host, we should |
| 148 | // ignore inputs that refer to OpenMP offloading devices - they will be |
| 149 | // embedded according to a proper linker script. |
| 150 | if (auto *IA = II.getAction()) |
| 151 | if (JA.isHostOffloading(Action::OFK_OpenMP) && |
| 152 | IA->isDeviceOffloading(Action::OFK_OpenMP)) |
| 153 | continue; |
| 154 | |
| 155 | if (!TC.HasNativeLLVMSupport() && types::isLLVMIR(II.getType())) |
| 156 | // Don't try to pass LLVM inputs unless we have native support. |
| 157 | D.Diag(diag::err_drv_no_linker_llvm_support) << TC.getTripleString(); |
| 158 | |
| 159 | // Add filenames immediately. |
| 160 | if (II.isFilename()) { |
| 161 | CmdArgs.push_back(II.getFilename()); |
| 162 | continue; |
| 163 | } |
| 164 | |
| 165 | // Otherwise, this is a linker input argument. |
| 166 | const Arg &A = II.getInputArg(); |
| 167 | |
| 168 | // Handle reserved library options. |
| 169 | if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx)) |
| 170 | TC.AddCXXStdlibLibArgs(Args, CmdArgs); |
| 171 | else if (A.getOption().matches(options::OPT_Z_reserved_lib_cckext)) |
| 172 | TC.AddCCKextLibArgs(Args, CmdArgs); |
| 173 | else if (A.getOption().matches(options::OPT_z)) { |
| 174 | // Pass -z prefix for gcc linker compatibility. |
| 175 | A.claim(); |
| 176 | A.render(Args, CmdArgs); |
| 177 | } else { |
| 178 | A.renderAsInput(Args, CmdArgs); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | // LIBRARY_PATH - included following the user specified library paths. |
| 183 | // and only supported on native toolchains. |
| 184 | if (!TC.isCrossCompiling()) { |
| 185 | addDirectoryList(Args, CmdArgs, "-L", "LIBRARY_PATH"); |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | void tools::AddTargetFeature(const ArgList &Args, |
| 190 | std::vector<StringRef> &Features, |
| 191 | OptSpecifier OnOpt, OptSpecifier OffOpt, |
| 192 | StringRef FeatureName) { |
| 193 | if (Arg *A = Args.getLastArg(OnOpt, OffOpt)) { |
| 194 | if (A->getOption().matches(OnOpt)) |
| 195 | Features.push_back(Args.MakeArgString("+" + FeatureName)); |
| 196 | else |
| 197 | Features.push_back(Args.MakeArgString("-" + FeatureName)); |
| 198 | } |
| 199 | } |
| 200 | |
| 201 | /// Get the (LLVM) name of the R600 gpu we are targeting. |
| 202 | static std::string getR600TargetGPU(const ArgList &Args) { |
| 203 | if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) { |
| 204 | const char *GPUName = A->getValue(); |
| 205 | return llvm::StringSwitch<const char *>(GPUName) |
| 206 | .Cases("rv630", "rv635", "r600") |
| 207 | .Cases("rv610", "rv620", "rs780", "rs880") |
| 208 | .Case("rv740", "rv770") |
| 209 | .Case("palm", "cedar") |
| 210 | .Cases("sumo", "sumo2", "sumo") |
| 211 | .Case("hemlock", "cypress") |
| 212 | .Case("aruba", "cayman") |
| 213 | .Default(GPUName); |
| 214 | } |
| 215 | return ""; |
| 216 | } |
| 217 | |
Nikolai Bozhenov | 35d3c35 | 2017-06-27 09:48:24 +0000 | [diff] [blame] | 218 | static std::string getNios2TargetCPU(const ArgList &Args) { |
| 219 | Arg *A = Args.getLastArg(options::OPT_mcpu_EQ); |
| 220 | if (!A) |
| 221 | A = Args.getLastArg(options::OPT_march_EQ); |
| 222 | |
| 223 | if (!A) |
| 224 | return ""; |
| 225 | |
| 226 | const char *name = A->getValue(); |
| 227 | return llvm::StringSwitch<const char *>(name) |
| 228 | .Case("r1", "nios2r1") |
| 229 | .Case("r2", "nios2r2") |
| 230 | .Default(name); |
| 231 | } |
| 232 | |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 233 | static std::string getLanaiTargetCPU(const ArgList &Args) { |
| 234 | if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) { |
| 235 | return A->getValue(); |
| 236 | } |
| 237 | return ""; |
| 238 | } |
| 239 | |
| 240 | /// Get the (LLVM) name of the WebAssembly cpu we are targeting. |
| 241 | static StringRef getWebAssemblyTargetCPU(const ArgList &Args) { |
| 242 | // If we have -mcpu=, use that. |
| 243 | if (Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) { |
| 244 | StringRef CPU = A->getValue(); |
| 245 | |
| 246 | #ifdef __wasm__ |
| 247 | // Handle "native" by examining the host. "native" isn't meaningful when |
| 248 | // cross compiling, so only support this when the host is also WebAssembly. |
| 249 | if (CPU == "native") |
| 250 | return llvm::sys::getHostCPUName(); |
| 251 | #endif |
| 252 | |
| 253 | return CPU; |
| 254 | } |
| 255 | |
| 256 | return "generic"; |
| 257 | } |
| 258 | |
| 259 | std::string tools::getCPUName(const ArgList &Args, const llvm::Triple &T, |
| 260 | bool FromAs) { |
| 261 | Arg *A; |
| 262 | |
| 263 | switch (T.getArch()) { |
| 264 | default: |
| 265 | return ""; |
| 266 | |
| 267 | case llvm::Triple::aarch64: |
| 268 | case llvm::Triple::aarch64_be: |
| 269 | return aarch64::getAArch64TargetCPU(Args, A); |
| 270 | |
| 271 | case llvm::Triple::arm: |
| 272 | case llvm::Triple::armeb: |
| 273 | case llvm::Triple::thumb: |
| 274 | case llvm::Triple::thumbeb: { |
| 275 | StringRef MArch, MCPU; |
| 276 | arm::getARMArchCPUFromArgs(Args, MArch, MCPU, FromAs); |
| 277 | return arm::getARMTargetCPU(MCPU, MArch, T); |
| 278 | } |
Leslie Zhai | ff04109 | 2017-04-20 04:23:24 +0000 | [diff] [blame] | 279 | |
| 280 | case llvm::Triple::avr: |
| 281 | if (const Arg *A = Args.getLastArg(options::OPT_mmcu_EQ)) |
| 282 | return A->getValue(); |
| 283 | return ""; |
| 284 | |
Nikolai Bozhenov | 35d3c35 | 2017-06-27 09:48:24 +0000 | [diff] [blame] | 285 | case llvm::Triple::nios2: { |
| 286 | return getNios2TargetCPU(Args); |
| 287 | } |
| 288 | |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 289 | case llvm::Triple::mips: |
| 290 | case llvm::Triple::mipsel: |
| 291 | case llvm::Triple::mips64: |
| 292 | case llvm::Triple::mips64el: { |
| 293 | StringRef CPUName; |
| 294 | StringRef ABIName; |
| 295 | mips::getMipsCPUAndABI(Args, T, CPUName, ABIName); |
| 296 | return CPUName; |
| 297 | } |
| 298 | |
| 299 | case llvm::Triple::nvptx: |
| 300 | case llvm::Triple::nvptx64: |
| 301 | if (const Arg *A = Args.getLastArg(options::OPT_march_EQ)) |
| 302 | return A->getValue(); |
| 303 | return ""; |
| 304 | |
| 305 | case llvm::Triple::ppc: |
| 306 | case llvm::Triple::ppc64: |
| 307 | case llvm::Triple::ppc64le: { |
| 308 | std::string TargetCPUName = ppc::getPPCTargetCPU(Args); |
| 309 | // LLVM may default to generating code for the native CPU, |
| 310 | // but, like gcc, we default to a more generic option for |
| 311 | // each architecture. (except on Darwin) |
| 312 | if (TargetCPUName.empty() && !T.isOSDarwin()) { |
| 313 | if (T.getArch() == llvm::Triple::ppc64) |
| 314 | TargetCPUName = "ppc64"; |
| 315 | else if (T.getArch() == llvm::Triple::ppc64le) |
| 316 | TargetCPUName = "ppc64le"; |
| 317 | else |
| 318 | TargetCPUName = "ppc"; |
| 319 | } |
| 320 | return TargetCPUName; |
| 321 | } |
| 322 | |
| 323 | case llvm::Triple::sparc: |
| 324 | case llvm::Triple::sparcel: |
| 325 | case llvm::Triple::sparcv9: |
| 326 | if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ)) |
| 327 | return A->getValue(); |
| 328 | return ""; |
| 329 | |
| 330 | case llvm::Triple::x86: |
| 331 | case llvm::Triple::x86_64: |
| 332 | return x86::getX86TargetCPU(Args, T); |
| 333 | |
| 334 | case llvm::Triple::hexagon: |
| 335 | return "hexagon" + |
| 336 | toolchains::HexagonToolChain::GetTargetCPUVersion(Args).str(); |
| 337 | |
| 338 | case llvm::Triple::lanai: |
| 339 | return getLanaiTargetCPU(Args); |
| 340 | |
| 341 | case llvm::Triple::systemz: |
| 342 | return systemz::getSystemZTargetCPU(Args); |
| 343 | |
| 344 | case llvm::Triple::r600: |
| 345 | case llvm::Triple::amdgcn: |
| 346 | return getR600TargetGPU(Args); |
| 347 | |
| 348 | case llvm::Triple::wasm32: |
| 349 | case llvm::Triple::wasm64: |
| 350 | return getWebAssemblyTargetCPU(Args); |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | unsigned tools::getLTOParallelism(const ArgList &Args, const Driver &D) { |
| 355 | unsigned Parallelism = 0; |
| 356 | Arg *LtoJobsArg = Args.getLastArg(options::OPT_flto_jobs_EQ); |
| 357 | if (LtoJobsArg && |
| 358 | StringRef(LtoJobsArg->getValue()).getAsInteger(10, Parallelism)) |
| 359 | D.Diag(diag::err_drv_invalid_int_value) << LtoJobsArg->getAsString(Args) |
| 360 | << LtoJobsArg->getValue(); |
| 361 | return Parallelism; |
| 362 | } |
| 363 | |
| 364 | // CloudABI and WebAssembly use -ffunction-sections and -fdata-sections by |
| 365 | // default. |
| 366 | bool tools::isUseSeparateSections(const llvm::Triple &Triple) { |
| 367 | return Triple.getOS() == llvm::Triple::CloudABI || |
| 368 | Triple.getArch() == llvm::Triple::wasm32 || |
| 369 | Triple.getArch() == llvm::Triple::wasm64; |
| 370 | } |
| 371 | |
| 372 | void tools::AddGoldPlugin(const ToolChain &ToolChain, const ArgList &Args, |
| 373 | ArgStringList &CmdArgs, bool IsThinLTO, |
| 374 | const Driver &D) { |
| 375 | // Tell the linker to load the plugin. This has to come before AddLinkerInputs |
| 376 | // as gold requires -plugin to come before any -plugin-opt that -Wl might |
| 377 | // forward. |
| 378 | CmdArgs.push_back("-plugin"); |
| 379 | std::string Plugin = |
| 380 | ToolChain.getDriver().Dir + "/../lib" CLANG_LIBDIR_SUFFIX "/LLVMgold.so"; |
| 381 | CmdArgs.push_back(Args.MakeArgString(Plugin)); |
| 382 | |
| 383 | // Try to pass driver level flags relevant to LTO code generation down to |
| 384 | // the plugin. |
| 385 | |
| 386 | // Handle flags for selecting CPU variants. |
| 387 | std::string CPU = getCPUName(Args, ToolChain.getTriple()); |
| 388 | if (!CPU.empty()) |
| 389 | CmdArgs.push_back(Args.MakeArgString(Twine("-plugin-opt=mcpu=") + CPU)); |
| 390 | |
| 391 | if (Arg *A = Args.getLastArg(options::OPT_O_Group)) { |
| 392 | StringRef OOpt; |
| 393 | if (A->getOption().matches(options::OPT_O4) || |
| 394 | A->getOption().matches(options::OPT_Ofast)) |
| 395 | OOpt = "3"; |
| 396 | else if (A->getOption().matches(options::OPT_O)) |
| 397 | OOpt = A->getValue(); |
| 398 | else if (A->getOption().matches(options::OPT_O0)) |
| 399 | OOpt = "0"; |
| 400 | if (!OOpt.empty()) |
| 401 | CmdArgs.push_back(Args.MakeArgString(Twine("-plugin-opt=O") + OOpt)); |
| 402 | } |
| 403 | |
| 404 | if (IsThinLTO) |
| 405 | CmdArgs.push_back("-plugin-opt=thinlto"); |
| 406 | |
| 407 | if (unsigned Parallelism = getLTOParallelism(Args, D)) |
| 408 | CmdArgs.push_back(Args.MakeArgString(Twine("-plugin-opt=jobs=") + |
| 409 | llvm::to_string(Parallelism))); |
| 410 | |
| 411 | // If an explicit debugger tuning argument appeared, pass it along. |
| 412 | if (Arg *A = Args.getLastArg(options::OPT_gTune_Group, |
| 413 | options::OPT_ggdbN_Group)) { |
| 414 | if (A->getOption().matches(options::OPT_glldb)) |
| 415 | CmdArgs.push_back("-plugin-opt=-debugger-tune=lldb"); |
| 416 | else if (A->getOption().matches(options::OPT_gsce)) |
| 417 | CmdArgs.push_back("-plugin-opt=-debugger-tune=sce"); |
| 418 | else |
| 419 | CmdArgs.push_back("-plugin-opt=-debugger-tune=gdb"); |
| 420 | } |
| 421 | |
| 422 | bool UseSeparateSections = |
| 423 | isUseSeparateSections(ToolChain.getEffectiveTriple()); |
| 424 | |
| 425 | if (Args.hasFlag(options::OPT_ffunction_sections, |
| 426 | options::OPT_fno_function_sections, UseSeparateSections)) { |
| 427 | CmdArgs.push_back("-plugin-opt=-function-sections"); |
| 428 | } |
| 429 | |
| 430 | if (Args.hasFlag(options::OPT_fdata_sections, options::OPT_fno_data_sections, |
| 431 | UseSeparateSections)) { |
| 432 | CmdArgs.push_back("-plugin-opt=-data-sections"); |
| 433 | } |
| 434 | |
Dehao Chen | ea4b78f | 2017-03-21 21:40:53 +0000 | [diff] [blame] | 435 | if (Arg *A = getLastProfileSampleUseArg(Args)) { |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 436 | StringRef FName = A->getValue(); |
| 437 | if (!llvm::sys::fs::exists(FName)) |
| 438 | D.Diag(diag::err_drv_no_such_file) << FName; |
| 439 | else |
| 440 | CmdArgs.push_back( |
| 441 | Args.MakeArgString(Twine("-plugin-opt=sample-profile=") + FName)); |
| 442 | } |
| 443 | } |
| 444 | |
| 445 | void tools::addArchSpecificRPath(const ToolChain &TC, const ArgList &Args, |
| 446 | ArgStringList &CmdArgs) { |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 447 | std::string CandidateRPath = TC.getArchSpecificLibPath(); |
| 448 | if (TC.getVFS().exists(CandidateRPath)) { |
| 449 | CmdArgs.push_back("-rpath"); |
| 450 | CmdArgs.push_back(Args.MakeArgString(CandidateRPath.c_str())); |
| 451 | } |
| 452 | } |
| 453 | |
Jonas Hahnfeld | 8ea76fa | 2017-04-19 13:55:39 +0000 | [diff] [blame] | 454 | bool tools::addOpenMPRuntime(ArgStringList &CmdArgs, const ToolChain &TC, |
| 455 | const ArgList &Args, bool IsOffloadingHost, |
| 456 | bool GompNeedsRT) { |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 457 | if (!Args.hasFlag(options::OPT_fopenmp, options::OPT_fopenmp_EQ, |
| 458 | options::OPT_fno_openmp, false)) |
Jonas Hahnfeld | 8ea76fa | 2017-04-19 13:55:39 +0000 | [diff] [blame] | 459 | return false; |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 460 | |
| 461 | switch (TC.getDriver().getOpenMPRuntime(Args)) { |
| 462 | case Driver::OMPRT_OMP: |
| 463 | CmdArgs.push_back("-lomp"); |
| 464 | break; |
| 465 | case Driver::OMPRT_GOMP: |
| 466 | CmdArgs.push_back("-lgomp"); |
Jonas Hahnfeld | 8ea76fa | 2017-04-19 13:55:39 +0000 | [diff] [blame] | 467 | |
| 468 | if (GompNeedsRT) |
| 469 | CmdArgs.push_back("-lrt"); |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 470 | break; |
| 471 | case Driver::OMPRT_IOMP5: |
| 472 | CmdArgs.push_back("-liomp5"); |
| 473 | break; |
| 474 | case Driver::OMPRT_Unknown: |
| 475 | // Already diagnosed. |
Jonas Hahnfeld | 8ea76fa | 2017-04-19 13:55:39 +0000 | [diff] [blame] | 476 | return false; |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 477 | } |
| 478 | |
Jonas Hahnfeld | 8ea76fa | 2017-04-19 13:55:39 +0000 | [diff] [blame] | 479 | if (IsOffloadingHost) |
| 480 | CmdArgs.push_back("-lomptarget"); |
| 481 | |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 482 | addArchSpecificRPath(TC, Args, CmdArgs); |
Jonas Hahnfeld | 8ea76fa | 2017-04-19 13:55:39 +0000 | [diff] [blame] | 483 | |
| 484 | return true; |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 485 | } |
| 486 | |
| 487 | static void addSanitizerRuntime(const ToolChain &TC, const ArgList &Args, |
| 488 | ArgStringList &CmdArgs, StringRef Sanitizer, |
| 489 | bool IsShared, bool IsWhole) { |
| 490 | // Wrap any static runtimes that must be forced into executable in |
| 491 | // whole-archive. |
| 492 | if (IsWhole) CmdArgs.push_back("-whole-archive"); |
| 493 | CmdArgs.push_back(TC.getCompilerRTArgString(Args, Sanitizer, IsShared)); |
| 494 | if (IsWhole) CmdArgs.push_back("-no-whole-archive"); |
| 495 | |
| 496 | if (IsShared) { |
| 497 | addArchSpecificRPath(TC, Args, CmdArgs); |
| 498 | } |
| 499 | } |
| 500 | |
| 501 | // Tries to use a file with the list of dynamic symbols that need to be exported |
| 502 | // from the runtime library. Returns true if the file was found. |
| 503 | static bool addSanitizerDynamicList(const ToolChain &TC, const ArgList &Args, |
| 504 | ArgStringList &CmdArgs, |
| 505 | StringRef Sanitizer) { |
| 506 | SmallString<128> SanRT(TC.getCompilerRT(Args, Sanitizer)); |
| 507 | if (llvm::sys::fs::exists(SanRT + ".syms")) { |
| 508 | CmdArgs.push_back(Args.MakeArgString("--dynamic-list=" + SanRT + ".syms")); |
| 509 | return true; |
| 510 | } |
| 511 | return false; |
| 512 | } |
| 513 | |
| 514 | void tools::linkSanitizerRuntimeDeps(const ToolChain &TC, |
| 515 | ArgStringList &CmdArgs) { |
| 516 | // Force linking against the system libraries sanitizers depends on |
| 517 | // (see PR15823 why this is necessary). |
| 518 | CmdArgs.push_back("--no-as-needed"); |
| 519 | // There's no libpthread or librt on RTEMS. |
| 520 | if (TC.getTriple().getOS() != llvm::Triple::RTEMS) { |
| 521 | CmdArgs.push_back("-lpthread"); |
| 522 | CmdArgs.push_back("-lrt"); |
| 523 | } |
| 524 | CmdArgs.push_back("-lm"); |
| 525 | // There's no libdl on FreeBSD or RTEMS. |
| 526 | if (TC.getTriple().getOS() != llvm::Triple::FreeBSD && |
| 527 | TC.getTriple().getOS() != llvm::Triple::RTEMS) |
| 528 | CmdArgs.push_back("-ldl"); |
| 529 | } |
| 530 | |
| 531 | static void |
| 532 | collectSanitizerRuntimes(const ToolChain &TC, const ArgList &Args, |
| 533 | SmallVectorImpl<StringRef> &SharedRuntimes, |
| 534 | SmallVectorImpl<StringRef> &StaticRuntimes, |
| 535 | SmallVectorImpl<StringRef> &NonWholeStaticRuntimes, |
| 536 | SmallVectorImpl<StringRef> &HelperStaticRuntimes, |
| 537 | SmallVectorImpl<StringRef> &RequiredSymbols) { |
| 538 | const SanitizerArgs &SanArgs = TC.getSanitizerArgs(); |
| 539 | // Collect shared runtimes. |
| 540 | if (SanArgs.needsAsanRt() && SanArgs.needsSharedAsanRt()) { |
| 541 | SharedRuntimes.push_back("asan"); |
| 542 | } |
| 543 | // The stats_client library is also statically linked into DSOs. |
| 544 | if (SanArgs.needsStatsRt()) |
| 545 | StaticRuntimes.push_back("stats_client"); |
| 546 | |
| 547 | // Collect static runtimes. |
| 548 | if (Args.hasArg(options::OPT_shared) || TC.getTriple().isAndroid()) { |
| 549 | // Don't link static runtimes into DSOs or if compiling for Android. |
| 550 | return; |
| 551 | } |
| 552 | if (SanArgs.needsAsanRt()) { |
| 553 | if (SanArgs.needsSharedAsanRt()) { |
| 554 | HelperStaticRuntimes.push_back("asan-preinit"); |
| 555 | } else { |
| 556 | StaticRuntimes.push_back("asan"); |
| 557 | if (SanArgs.linkCXXRuntimes()) |
| 558 | StaticRuntimes.push_back("asan_cxx"); |
| 559 | } |
| 560 | } |
| 561 | if (SanArgs.needsDfsanRt()) |
| 562 | StaticRuntimes.push_back("dfsan"); |
| 563 | if (SanArgs.needsLsanRt()) |
| 564 | StaticRuntimes.push_back("lsan"); |
| 565 | if (SanArgs.needsMsanRt()) { |
| 566 | StaticRuntimes.push_back("msan"); |
| 567 | if (SanArgs.linkCXXRuntimes()) |
| 568 | StaticRuntimes.push_back("msan_cxx"); |
| 569 | } |
| 570 | if (SanArgs.needsTsanRt()) { |
| 571 | StaticRuntimes.push_back("tsan"); |
| 572 | if (SanArgs.linkCXXRuntimes()) |
| 573 | StaticRuntimes.push_back("tsan_cxx"); |
| 574 | } |
| 575 | if (SanArgs.needsUbsanRt()) { |
| 576 | StaticRuntimes.push_back("ubsan_standalone"); |
| 577 | if (SanArgs.linkCXXRuntimes()) |
| 578 | StaticRuntimes.push_back("ubsan_standalone_cxx"); |
| 579 | } |
| 580 | if (SanArgs.needsSafeStackRt()) { |
| 581 | NonWholeStaticRuntimes.push_back("safestack"); |
| 582 | RequiredSymbols.push_back("__safestack_init"); |
| 583 | } |
| 584 | if (SanArgs.needsCfiRt()) |
| 585 | StaticRuntimes.push_back("cfi"); |
| 586 | if (SanArgs.needsCfiDiagRt()) { |
| 587 | StaticRuntimes.push_back("cfi_diag"); |
| 588 | if (SanArgs.linkCXXRuntimes()) |
| 589 | StaticRuntimes.push_back("ubsan_standalone_cxx"); |
| 590 | } |
| 591 | if (SanArgs.needsStatsRt()) { |
| 592 | NonWholeStaticRuntimes.push_back("stats"); |
| 593 | RequiredSymbols.push_back("__sanitizer_stats_register"); |
| 594 | } |
| 595 | if (SanArgs.needsEsanRt()) |
| 596 | StaticRuntimes.push_back("esan"); |
| 597 | } |
| 598 | |
George Karpenkov | f2fc5b0 | 2017-04-24 18:23:24 +0000 | [diff] [blame] | 599 | static void addLibFuzzerRuntime(const ToolChain &TC, |
| 600 | const ArgList &Args, |
| 601 | ArgStringList &CmdArgs) { |
| 602 | StringRef ParentDir = llvm::sys::path::parent_path(TC.getDriver().InstalledDir); |
| 603 | SmallString<128> P(ParentDir); |
| 604 | llvm::sys::path::append(P, "lib", "libLLVMFuzzer.a"); |
| 605 | CmdArgs.push_back(Args.MakeArgString(P)); |
| 606 | TC.AddCXXStdlibLibArgs(Args, CmdArgs); |
| 607 | } |
| 608 | |
| 609 | |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 610 | // Should be called before we add system libraries (C++ ABI, libstdc++/libc++, |
| 611 | // C runtime, etc). Returns true if sanitizer system deps need to be linked in. |
| 612 | bool tools::addSanitizerRuntimes(const ToolChain &TC, const ArgList &Args, |
| 613 | ArgStringList &CmdArgs) { |
| 614 | SmallVector<StringRef, 4> SharedRuntimes, StaticRuntimes, |
| 615 | NonWholeStaticRuntimes, HelperStaticRuntimes, RequiredSymbols; |
| 616 | collectSanitizerRuntimes(TC, Args, SharedRuntimes, StaticRuntimes, |
| 617 | NonWholeStaticRuntimes, HelperStaticRuntimes, |
| 618 | RequiredSymbols); |
George Karpenkov | f2fc5b0 | 2017-04-24 18:23:24 +0000 | [diff] [blame] | 619 | // Inject libfuzzer dependencies. |
George Karpenkov | 2363fdd | 2017-06-29 19:52:33 +0000 | [diff] [blame^] | 620 | if (TC.getSanitizerArgs().needsFuzzer() |
| 621 | && !Args.hasArg(options::OPT_shared)) { |
George Karpenkov | f2fc5b0 | 2017-04-24 18:23:24 +0000 | [diff] [blame] | 622 | addLibFuzzerRuntime(TC, Args, CmdArgs); |
| 623 | } |
| 624 | |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 625 | for (auto RT : SharedRuntimes) |
| 626 | addSanitizerRuntime(TC, Args, CmdArgs, RT, true, false); |
| 627 | for (auto RT : HelperStaticRuntimes) |
| 628 | addSanitizerRuntime(TC, Args, CmdArgs, RT, false, true); |
| 629 | bool AddExportDynamic = false; |
| 630 | for (auto RT : StaticRuntimes) { |
| 631 | addSanitizerRuntime(TC, Args, CmdArgs, RT, false, true); |
| 632 | AddExportDynamic |= !addSanitizerDynamicList(TC, Args, CmdArgs, RT); |
| 633 | } |
| 634 | for (auto RT : NonWholeStaticRuntimes) { |
| 635 | addSanitizerRuntime(TC, Args, CmdArgs, RT, false, false); |
| 636 | AddExportDynamic |= !addSanitizerDynamicList(TC, Args, CmdArgs, RT); |
| 637 | } |
| 638 | for (auto S : RequiredSymbols) { |
| 639 | CmdArgs.push_back("-u"); |
| 640 | CmdArgs.push_back(Args.MakeArgString(S)); |
| 641 | } |
| 642 | // If there is a static runtime with no dynamic list, force all the symbols |
| 643 | // to be dynamic to be sure we export sanitizer interface functions. |
| 644 | if (AddExportDynamic) |
| 645 | CmdArgs.push_back("-export-dynamic"); |
| 646 | |
| 647 | const SanitizerArgs &SanArgs = TC.getSanitizerArgs(); |
| 648 | if (SanArgs.hasCrossDsoCfi() && !AddExportDynamic) |
| 649 | CmdArgs.push_back("-export-dynamic-symbol=__cfi_check"); |
| 650 | |
| 651 | return !StaticRuntimes.empty() || !NonWholeStaticRuntimes.empty(); |
| 652 | } |
| 653 | |
| 654 | bool tools::areOptimizationsEnabled(const ArgList &Args) { |
| 655 | // Find the last -O arg and see if it is non-zero. |
| 656 | if (Arg *A = Args.getLastArg(options::OPT_O_Group)) |
| 657 | return !A->getOption().matches(options::OPT_O0); |
| 658 | // Defaults to -O0. |
| 659 | return false; |
| 660 | } |
| 661 | |
| 662 | const char *tools::SplitDebugName(const ArgList &Args, const InputInfo &Input) { |
| 663 | Arg *FinalOutput = Args.getLastArg(options::OPT_o); |
| 664 | if (FinalOutput && Args.hasArg(options::OPT_c)) { |
| 665 | SmallString<128> T(FinalOutput->getValue()); |
| 666 | llvm::sys::path::replace_extension(T, "dwo"); |
| 667 | return Args.MakeArgString(T); |
| 668 | } else { |
| 669 | // Use the compilation dir. |
| 670 | SmallString<128> T( |
| 671 | Args.getLastArgValue(options::OPT_fdebug_compilation_dir)); |
| 672 | SmallString<128> F(llvm::sys::path::stem(Input.getBaseInput())); |
| 673 | llvm::sys::path::replace_extension(F, "dwo"); |
| 674 | T += F; |
| 675 | return Args.MakeArgString(F); |
| 676 | } |
| 677 | } |
| 678 | |
| 679 | void tools::SplitDebugInfo(const ToolChain &TC, Compilation &C, const Tool &T, |
| 680 | const JobAction &JA, const ArgList &Args, |
| 681 | const InputInfo &Output, const char *OutFile) { |
| 682 | ArgStringList ExtractArgs; |
| 683 | ExtractArgs.push_back("--extract-dwo"); |
| 684 | |
| 685 | ArgStringList StripArgs; |
| 686 | StripArgs.push_back("--strip-dwo"); |
| 687 | |
| 688 | // Grabbing the output of the earlier compile step. |
| 689 | StripArgs.push_back(Output.getFilename()); |
| 690 | ExtractArgs.push_back(Output.getFilename()); |
| 691 | ExtractArgs.push_back(OutFile); |
| 692 | |
| 693 | const char *Exec = Args.MakeArgString(TC.GetProgramPath("objcopy")); |
| 694 | InputInfo II(types::TY_Object, Output.getFilename(), Output.getFilename()); |
| 695 | |
| 696 | // First extract the dwo sections. |
| 697 | C.addCommand(llvm::make_unique<Command>(JA, T, Exec, ExtractArgs, II)); |
| 698 | |
| 699 | // Then remove them from the original .o file. |
| 700 | C.addCommand(llvm::make_unique<Command>(JA, T, Exec, StripArgs, II)); |
| 701 | } |
| 702 | |
| 703 | // Claim options we don't want to warn if they are unused. We do this for |
| 704 | // options that build systems might add but are unused when assembling or only |
| 705 | // running the preprocessor for example. |
| 706 | void tools::claimNoWarnArgs(const ArgList &Args) { |
| 707 | // Don't warn about unused -f(no-)?lto. This can happen when we're |
| 708 | // preprocessing, precompiling or assembling. |
| 709 | Args.ClaimAllArgs(options::OPT_flto_EQ); |
| 710 | Args.ClaimAllArgs(options::OPT_flto); |
| 711 | Args.ClaimAllArgs(options::OPT_fno_lto); |
| 712 | } |
| 713 | |
| 714 | Arg *tools::getLastProfileUseArg(const ArgList &Args) { |
| 715 | auto *ProfileUseArg = Args.getLastArg( |
| 716 | options::OPT_fprofile_instr_use, options::OPT_fprofile_instr_use_EQ, |
| 717 | options::OPT_fprofile_use, options::OPT_fprofile_use_EQ, |
| 718 | options::OPT_fno_profile_instr_use); |
| 719 | |
| 720 | if (ProfileUseArg && |
| 721 | ProfileUseArg->getOption().matches(options::OPT_fno_profile_instr_use)) |
| 722 | ProfileUseArg = nullptr; |
| 723 | |
| 724 | return ProfileUseArg; |
| 725 | } |
| 726 | |
Dehao Chen | ea4b78f | 2017-03-21 21:40:53 +0000 | [diff] [blame] | 727 | Arg *tools::getLastProfileSampleUseArg(const ArgList &Args) { |
| 728 | auto *ProfileSampleUseArg = Args.getLastArg( |
| 729 | options::OPT_fprofile_sample_use, options::OPT_fprofile_sample_use_EQ, |
| 730 | options::OPT_fauto_profile, options::OPT_fauto_profile_EQ, |
| 731 | options::OPT_fno_profile_sample_use, options::OPT_fno_auto_profile); |
| 732 | |
| 733 | if (ProfileSampleUseArg && |
| 734 | (ProfileSampleUseArg->getOption().matches( |
| 735 | options::OPT_fno_profile_sample_use) || |
| 736 | ProfileSampleUseArg->getOption().matches(options::OPT_fno_auto_profile))) |
| 737 | return nullptr; |
| 738 | |
| 739 | return Args.getLastArg(options::OPT_fprofile_sample_use_EQ, |
| 740 | options::OPT_fauto_profile_EQ); |
| 741 | } |
| 742 | |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 743 | /// Parses the various -fpic/-fPIC/-fpie/-fPIE arguments. Then, |
| 744 | /// smooshes them together with platform defaults, to decide whether |
| 745 | /// this compile should be using PIC mode or not. Returns a tuple of |
| 746 | /// (RelocationModel, PICLevel, IsPIE). |
| 747 | std::tuple<llvm::Reloc::Model, unsigned, bool> |
| 748 | tools::ParsePICArgs(const ToolChain &ToolChain, const ArgList &Args) { |
| 749 | const llvm::Triple &EffectiveTriple = ToolChain.getEffectiveTriple(); |
| 750 | const llvm::Triple &Triple = ToolChain.getTriple(); |
| 751 | |
| 752 | bool PIE = ToolChain.isPIEDefault(); |
| 753 | bool PIC = PIE || ToolChain.isPICDefault(); |
| 754 | // The Darwin/MachO default to use PIC does not apply when using -static. |
| 755 | if (Triple.isOSBinFormatMachO() && Args.hasArg(options::OPT_static)) |
| 756 | PIE = PIC = false; |
| 757 | bool IsPICLevelTwo = PIC; |
| 758 | |
| 759 | bool KernelOrKext = |
| 760 | Args.hasArg(options::OPT_mkernel, options::OPT_fapple_kext); |
| 761 | |
| 762 | // Android-specific defaults for PIC/PIE |
| 763 | if (Triple.isAndroid()) { |
| 764 | switch (Triple.getArch()) { |
| 765 | case llvm::Triple::arm: |
| 766 | case llvm::Triple::armeb: |
| 767 | case llvm::Triple::thumb: |
| 768 | case llvm::Triple::thumbeb: |
| 769 | case llvm::Triple::aarch64: |
| 770 | case llvm::Triple::mips: |
| 771 | case llvm::Triple::mipsel: |
| 772 | case llvm::Triple::mips64: |
| 773 | case llvm::Triple::mips64el: |
| 774 | PIC = true; // "-fpic" |
| 775 | break; |
| 776 | |
| 777 | case llvm::Triple::x86: |
| 778 | case llvm::Triple::x86_64: |
| 779 | PIC = true; // "-fPIC" |
| 780 | IsPICLevelTwo = true; |
| 781 | break; |
| 782 | |
| 783 | default: |
| 784 | break; |
| 785 | } |
| 786 | } |
| 787 | |
| 788 | // OpenBSD-specific defaults for PIE |
| 789 | if (Triple.getOS() == llvm::Triple::OpenBSD) { |
| 790 | switch (ToolChain.getArch()) { |
Brad Smith | 3f2b1d7 | 2017-03-31 22:13:17 +0000 | [diff] [blame] | 791 | case llvm::Triple::arm: |
| 792 | case llvm::Triple::aarch64: |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 793 | case llvm::Triple::mips64: |
| 794 | case llvm::Triple::mips64el: |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 795 | case llvm::Triple::x86: |
| 796 | case llvm::Triple::x86_64: |
| 797 | IsPICLevelTwo = false; // "-fpie" |
| 798 | break; |
| 799 | |
| 800 | case llvm::Triple::ppc: |
| 801 | case llvm::Triple::sparc: |
Brad Smith | 3f2b1d7 | 2017-03-31 22:13:17 +0000 | [diff] [blame] | 802 | case llvm::Triple::sparcel: |
David L. Jones | f561aba | 2017-03-08 01:02:16 +0000 | [diff] [blame] | 803 | case llvm::Triple::sparcv9: |
| 804 | IsPICLevelTwo = true; // "-fPIE" |
| 805 | break; |
| 806 | |
| 807 | default: |
| 808 | break; |
| 809 | } |
| 810 | } |
| 811 | |
| 812 | // The last argument relating to either PIC or PIE wins, and no |
| 813 | // other argument is used. If the last argument is any flavor of the |
| 814 | // '-fno-...' arguments, both PIC and PIE are disabled. Any PIE |
| 815 | // option implicitly enables PIC at the same level. |
| 816 | Arg *LastPICArg = Args.getLastArg(options::OPT_fPIC, options::OPT_fno_PIC, |
| 817 | options::OPT_fpic, options::OPT_fno_pic, |
| 818 | options::OPT_fPIE, options::OPT_fno_PIE, |
| 819 | options::OPT_fpie, options::OPT_fno_pie); |
| 820 | if (Triple.isOSWindows() && LastPICArg && |
| 821 | LastPICArg == |
| 822 | Args.getLastArg(options::OPT_fPIC, options::OPT_fpic, |
| 823 | options::OPT_fPIE, options::OPT_fpie)) { |
| 824 | ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target) |
| 825 | << LastPICArg->getSpelling() << Triple.str(); |
| 826 | if (Triple.getArch() == llvm::Triple::x86_64) |
| 827 | return std::make_tuple(llvm::Reloc::PIC_, 2U, false); |
| 828 | return std::make_tuple(llvm::Reloc::Static, 0U, false); |
| 829 | } |
| 830 | |
| 831 | // Check whether the tool chain trumps the PIC-ness decision. If the PIC-ness |
| 832 | // is forced, then neither PIC nor PIE flags will have no effect. |
| 833 | if (!ToolChain.isPICDefaultForced()) { |
| 834 | if (LastPICArg) { |
| 835 | Option O = LastPICArg->getOption(); |
| 836 | if (O.matches(options::OPT_fPIC) || O.matches(options::OPT_fpic) || |
| 837 | O.matches(options::OPT_fPIE) || O.matches(options::OPT_fpie)) { |
| 838 | PIE = O.matches(options::OPT_fPIE) || O.matches(options::OPT_fpie); |
| 839 | PIC = |
| 840 | PIE || O.matches(options::OPT_fPIC) || O.matches(options::OPT_fpic); |
| 841 | IsPICLevelTwo = |
| 842 | O.matches(options::OPT_fPIE) || O.matches(options::OPT_fPIC); |
| 843 | } else { |
| 844 | PIE = PIC = false; |
| 845 | if (EffectiveTriple.isPS4CPU()) { |
| 846 | Arg *ModelArg = Args.getLastArg(options::OPT_mcmodel_EQ); |
| 847 | StringRef Model = ModelArg ? ModelArg->getValue() : ""; |
| 848 | if (Model != "kernel") { |
| 849 | PIC = true; |
| 850 | ToolChain.getDriver().Diag(diag::warn_drv_ps4_force_pic) |
| 851 | << LastPICArg->getSpelling(); |
| 852 | } |
| 853 | } |
| 854 | } |
| 855 | } |
| 856 | } |
| 857 | |
| 858 | // Introduce a Darwin and PS4-specific hack. If the default is PIC, but the |
| 859 | // PIC level would've been set to level 1, force it back to level 2 PIC |
| 860 | // instead. |
| 861 | if (PIC && (Triple.isOSDarwin() || EffectiveTriple.isPS4CPU())) |
| 862 | IsPICLevelTwo |= ToolChain.isPICDefault(); |
| 863 | |
| 864 | // This kernel flags are a trump-card: they will disable PIC/PIE |
| 865 | // generation, independent of the argument order. |
| 866 | if (KernelOrKext && |
| 867 | ((!EffectiveTriple.isiOS() || EffectiveTriple.isOSVersionLT(6)) && |
| 868 | !EffectiveTriple.isWatchOS())) |
| 869 | PIC = PIE = false; |
| 870 | |
| 871 | if (Arg *A = Args.getLastArg(options::OPT_mdynamic_no_pic)) { |
| 872 | // This is a very special mode. It trumps the other modes, almost no one |
| 873 | // uses it, and it isn't even valid on any OS but Darwin. |
| 874 | if (!Triple.isOSDarwin()) |
| 875 | ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target) |
| 876 | << A->getSpelling() << Triple.str(); |
| 877 | |
| 878 | // FIXME: Warn when this flag trumps some other PIC or PIE flag. |
| 879 | |
| 880 | // Only a forced PIC mode can cause the actual compile to have PIC defines |
| 881 | // etc., no flags are sufficient. This behavior was selected to closely |
| 882 | // match that of llvm-gcc and Apple GCC before that. |
| 883 | PIC = ToolChain.isPICDefault() && ToolChain.isPICDefaultForced(); |
| 884 | |
| 885 | return std::make_tuple(llvm::Reloc::DynamicNoPIC, PIC ? 2U : 0U, false); |
| 886 | } |
| 887 | |
| 888 | bool EmbeddedPISupported; |
| 889 | switch (Triple.getArch()) { |
| 890 | case llvm::Triple::arm: |
| 891 | case llvm::Triple::armeb: |
| 892 | case llvm::Triple::thumb: |
| 893 | case llvm::Triple::thumbeb: |
| 894 | EmbeddedPISupported = true; |
| 895 | break; |
| 896 | default: |
| 897 | EmbeddedPISupported = false; |
| 898 | break; |
| 899 | } |
| 900 | |
| 901 | bool ROPI = false, RWPI = false; |
| 902 | Arg* LastROPIArg = Args.getLastArg(options::OPT_fropi, options::OPT_fno_ropi); |
| 903 | if (LastROPIArg && LastROPIArg->getOption().matches(options::OPT_fropi)) { |
| 904 | if (!EmbeddedPISupported) |
| 905 | ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target) |
| 906 | << LastROPIArg->getSpelling() << Triple.str(); |
| 907 | ROPI = true; |
| 908 | } |
| 909 | Arg *LastRWPIArg = Args.getLastArg(options::OPT_frwpi, options::OPT_fno_rwpi); |
| 910 | if (LastRWPIArg && LastRWPIArg->getOption().matches(options::OPT_frwpi)) { |
| 911 | if (!EmbeddedPISupported) |
| 912 | ToolChain.getDriver().Diag(diag::err_drv_unsupported_opt_for_target) |
| 913 | << LastRWPIArg->getSpelling() << Triple.str(); |
| 914 | RWPI = true; |
| 915 | } |
| 916 | |
| 917 | // ROPI and RWPI are not comaptible with PIC or PIE. |
| 918 | if ((ROPI || RWPI) && (PIC || PIE)) |
| 919 | ToolChain.getDriver().Diag(diag::err_drv_ropi_rwpi_incompatible_with_pic); |
| 920 | |
| 921 | // When targettng MIPS64 with N64, the default is PIC, unless -mno-abicalls is |
| 922 | // used. |
| 923 | if ((Triple.getArch() == llvm::Triple::mips64 || |
| 924 | Triple.getArch() == llvm::Triple::mips64el) && |
| 925 | Args.hasArg(options::OPT_mno_abicalls)) |
| 926 | return std::make_tuple(llvm::Reloc::Static, 0U, false); |
| 927 | |
| 928 | if (PIC) |
| 929 | return std::make_tuple(llvm::Reloc::PIC_, IsPICLevelTwo ? 2U : 1U, PIE); |
| 930 | |
| 931 | llvm::Reloc::Model RelocM = llvm::Reloc::Static; |
| 932 | if (ROPI && RWPI) |
| 933 | RelocM = llvm::Reloc::ROPI_RWPI; |
| 934 | else if (ROPI) |
| 935 | RelocM = llvm::Reloc::ROPI; |
| 936 | else if (RWPI) |
| 937 | RelocM = llvm::Reloc::RWPI; |
| 938 | |
| 939 | return std::make_tuple(RelocM, 0U, false); |
| 940 | } |
| 941 | |
| 942 | void tools::AddAssemblerKPIC(const ToolChain &ToolChain, const ArgList &Args, |
| 943 | ArgStringList &CmdArgs) { |
| 944 | llvm::Reloc::Model RelocationModel; |
| 945 | unsigned PICLevel; |
| 946 | bool IsPIE; |
| 947 | std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args); |
| 948 | |
| 949 | if (RelocationModel != llvm::Reloc::Static) |
| 950 | CmdArgs.push_back("-KPIC"); |
| 951 | } |
| 952 | |
| 953 | /// \brief Determine whether Objective-C automated reference counting is |
| 954 | /// enabled. |
| 955 | bool tools::isObjCAutoRefCount(const ArgList &Args) { |
| 956 | return Args.hasFlag(options::OPT_fobjc_arc, options::OPT_fno_objc_arc, false); |
| 957 | } |
| 958 | |
| 959 | static void AddLibgcc(const llvm::Triple &Triple, const Driver &D, |
| 960 | ArgStringList &CmdArgs, const ArgList &Args) { |
| 961 | bool isAndroid = Triple.isAndroid(); |
| 962 | bool isCygMing = Triple.isOSCygMing(); |
| 963 | bool IsIAMCU = Triple.isOSIAMCU(); |
| 964 | bool StaticLibgcc = Args.hasArg(options::OPT_static_libgcc) || |
| 965 | Args.hasArg(options::OPT_static); |
| 966 | if (!D.CCCIsCXX()) |
| 967 | CmdArgs.push_back("-lgcc"); |
| 968 | |
| 969 | if (StaticLibgcc || isAndroid) { |
| 970 | if (D.CCCIsCXX()) |
| 971 | CmdArgs.push_back("-lgcc"); |
| 972 | } else { |
| 973 | if (!D.CCCIsCXX() && !isCygMing) |
| 974 | CmdArgs.push_back("--as-needed"); |
| 975 | CmdArgs.push_back("-lgcc_s"); |
| 976 | if (!D.CCCIsCXX() && !isCygMing) |
| 977 | CmdArgs.push_back("--no-as-needed"); |
| 978 | } |
| 979 | |
| 980 | if (StaticLibgcc && !isAndroid && !IsIAMCU) |
| 981 | CmdArgs.push_back("-lgcc_eh"); |
| 982 | else if (!Args.hasArg(options::OPT_shared) && D.CCCIsCXX()) |
| 983 | CmdArgs.push_back("-lgcc"); |
| 984 | |
| 985 | // According to Android ABI, we have to link with libdl if we are |
| 986 | // linking with non-static libgcc. |
| 987 | // |
| 988 | // NOTE: This fixes a link error on Android MIPS as well. The non-static |
| 989 | // libgcc for MIPS relies on _Unwind_Find_FDE and dl_iterate_phdr from libdl. |
| 990 | if (isAndroid && !StaticLibgcc) |
| 991 | CmdArgs.push_back("-ldl"); |
| 992 | } |
| 993 | |
| 994 | void tools::AddRunTimeLibs(const ToolChain &TC, const Driver &D, |
| 995 | ArgStringList &CmdArgs, const ArgList &Args) { |
| 996 | // Make use of compiler-rt if --rtlib option is used |
| 997 | ToolChain::RuntimeLibType RLT = TC.GetRuntimeLibType(Args); |
| 998 | |
| 999 | switch (RLT) { |
| 1000 | case ToolChain::RLT_CompilerRT: |
| 1001 | switch (TC.getTriple().getOS()) { |
| 1002 | default: |
| 1003 | llvm_unreachable("unsupported OS"); |
| 1004 | case llvm::Triple::Win32: |
| 1005 | case llvm::Triple::Linux: |
| 1006 | case llvm::Triple::Fuchsia: |
| 1007 | CmdArgs.push_back(TC.getCompilerRTArgString(Args, "builtins")); |
| 1008 | break; |
| 1009 | } |
| 1010 | break; |
| 1011 | case ToolChain::RLT_Libgcc: |
| 1012 | // Make sure libgcc is not used under MSVC environment by default |
| 1013 | if (TC.getTriple().isKnownWindowsMSVCEnvironment()) { |
| 1014 | // Issue error diagnostic if libgcc is explicitly specified |
| 1015 | // through command line as --rtlib option argument. |
| 1016 | if (Args.hasArg(options::OPT_rtlib_EQ)) { |
| 1017 | TC.getDriver().Diag(diag::err_drv_unsupported_rtlib_for_platform) |
| 1018 | << Args.getLastArg(options::OPT_rtlib_EQ)->getValue() << "MSVC"; |
| 1019 | } |
| 1020 | } else |
| 1021 | AddLibgcc(TC.getTriple(), D, CmdArgs, Args); |
| 1022 | break; |
| 1023 | } |
| 1024 | } |