1 //===--- PPC.cpp - PPC Helpers for Tools ------------------------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "PPC.h" 10 #include "ToolChains/CommonArgs.h" 11 #include "clang/Driver/Driver.h" 12 #include "clang/Driver/DriverDiagnostic.h" 13 #include "clang/Driver/Options.h" 14 #include "llvm/ADT/StringSwitch.h" 15 #include "llvm/Option/ArgList.h" 16 17 using namespace clang::driver; 18 using namespace clang::driver::tools; 19 using namespace clang; 20 using namespace llvm::opt; 21 22 /// getPPCTargetCPU - Get the (LLVM) name of the PowerPC cpu we are targeting. 23 std::string ppc::getPPCTargetCPU(const ArgList &Args) { 24 if (Arg *A = Args.getLastArg(clang::driver::options::OPT_mcpu_EQ)) { 25 StringRef CPUName = A->getValue(); 26 27 if (CPUName == "native") { 28 std::string CPU = llvm::sys::getHostCPUName(); 29 if (!CPU.empty() && CPU != "generic") 30 return CPU; 31 else 32 return ""; 33 } 34 35 return llvm::StringSwitch<const char *>(CPUName) 36 .Case("common", "generic") 37 .Case("440", "440") 38 .Case("440fp", "440") 39 .Case("450", "450") 40 .Case("601", "601") 41 .Case("602", "602") 42 .Case("603", "603") 43 .Case("603e", "603e") 44 .Case("603ev", "603ev") 45 .Case("604", "604") 46 .Case("604e", "604e") 47 .Case("620", "620") 48 .Case("630", "pwr3") 49 .Case("G3", "g3") 50 .Case("7400", "7400") 51 .Case("G4", "g4") 52 .Case("7450", "7450") 53 .Case("G4+", "g4+") 54 .Case("750", "750") 55 .Case("8548", "e500") 56 .Case("970", "970") 57 .Case("G5", "g5") 58 .Case("a2", "a2") 59 .Case("a2q", "a2q") 60 .Case("e500", "e500") 61 .Case("e500mc", "e500mc") 62 .Case("e5500", "e5500") 63 .Case("power3", "pwr3") 64 .Case("power4", "pwr4") 65 .Case("power5", "pwr5") 66 .Case("power5x", "pwr5x") 67 .Case("power6", "pwr6") 68 .Case("power6x", "pwr6x") 69 .Case("power7", "pwr7") 70 .Case("power8", "pwr8") 71 .Case("power9", "pwr9") 72 .Case("pwr3", "pwr3") 73 .Case("pwr4", "pwr4") 74 .Case("pwr5", "pwr5") 75 .Case("pwr5x", "pwr5x") 76 .Case("pwr6", "pwr6") 77 .Case("pwr6x", "pwr6x") 78 .Case("pwr7", "pwr7") 79 .Case("pwr8", "pwr8") 80 .Case("pwr9", "pwr9") 81 .Case("powerpc", "ppc") 82 .Case("powerpc64", "ppc64") 83 .Case("powerpc64le", "ppc64le") 84 .Default(""); 85 } 86 87 return ""; 88 } 89 90 const char *ppc::getPPCAsmModeForCPU(StringRef Name) { 91 return llvm::StringSwitch<const char *>(Name) 92 .Case("pwr7", "-mpower7") 93 .Case("power7", "-mpower7") 94 .Case("pwr8", "-mpower8") 95 .Case("power8", "-mpower8") 96 .Case("ppc64le", "-mpower8") 97 .Case("pwr9", "-mpower9") 98 .Case("power9", "-mpower9") 99 .Default("-many"); 100 } 101 102 void ppc::getPPCTargetFeatures(const Driver &D, const llvm::Triple &Triple, 103 const ArgList &Args, 104 std::vector<StringRef> &Features) { 105 if (Triple.getSubArch() == llvm::Triple::PPCSubArch_spe) 106 Features.push_back("+spe"); 107 108 handleTargetFeaturesGroup(Args, Features, options::OPT_m_ppc_Features_Group); 109 110 ppc::FloatABI FloatABI = ppc::getPPCFloatABI(D, Args); 111 if (FloatABI == ppc::FloatABI::Soft) 112 Features.push_back("-hard-float"); 113 114 ppc::ReadGOTPtrMode ReadGOT = ppc::getPPCReadGOTPtrMode(D, Triple, Args); 115 if (ReadGOT == ppc::ReadGOTPtrMode::SecurePlt) 116 Features.push_back("+secure-plt"); 117 } 118 119 ppc::ReadGOTPtrMode ppc::getPPCReadGOTPtrMode(const Driver &D, const llvm::Triple &Triple, 120 const ArgList &Args) { 121 if (Args.getLastArg(options::OPT_msecure_plt)) 122 return ppc::ReadGOTPtrMode::SecurePlt; 123 if ((Triple.isOSFreeBSD() && Triple.getOSMajorVersion() >= 13) || 124 Triple.isOSNetBSD() || Triple.isOSOpenBSD() || Triple.isMusl()) 125 return ppc::ReadGOTPtrMode::SecurePlt; 126 else 127 return ppc::ReadGOTPtrMode::Bss; 128 } 129 130 ppc::FloatABI ppc::getPPCFloatABI(const Driver &D, const ArgList &Args) { 131 ppc::FloatABI ABI = ppc::FloatABI::Invalid; 132 if (Arg *A = 133 Args.getLastArg(options::OPT_msoft_float, options::OPT_mhard_float, 134 options::OPT_mfloat_abi_EQ)) { 135 if (A->getOption().matches(options::OPT_msoft_float)) 136 ABI = ppc::FloatABI::Soft; 137 else if (A->getOption().matches(options::OPT_mhard_float)) 138 ABI = ppc::FloatABI::Hard; 139 else { 140 ABI = llvm::StringSwitch<ppc::FloatABI>(A->getValue()) 141 .Case("soft", ppc::FloatABI::Soft) 142 .Case("hard", ppc::FloatABI::Hard) 143 .Default(ppc::FloatABI::Invalid); 144 if (ABI == ppc::FloatABI::Invalid && !StringRef(A->getValue()).empty()) { 145 D.Diag(clang::diag::err_drv_invalid_mfloat_abi) << A->getAsString(Args); 146 ABI = ppc::FloatABI::Hard; 147 } 148 } 149 } 150 151 // If unspecified, choose the default based on the platform. 152 if (ABI == ppc::FloatABI::Invalid) { 153 ABI = ppc::FloatABI::Hard; 154 } 155 156 return ABI; 157 } 158 159 bool ppc::hasPPCAbiArg(const ArgList &Args, const char *Value) { 160 Arg *A = Args.getLastArg(options::OPT_mabi_EQ); 161 return A && (A->getValue() == StringRef(Value)); 162 } 163