1 //===-- PowerPCSubtarget.cpp - PPC Subtarget Information ------------------===// 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 // This file implements the PPC specific subclass of TargetSubtargetInfo. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #include "PPCSubtarget.h" 14 #include "PPC.h" 15 #include "PPCRegisterInfo.h" 16 #include "PPCTargetMachine.h" 17 #include "llvm/CodeGen/MachineFunction.h" 18 #include "llvm/CodeGen/MachineScheduler.h" 19 #include "llvm/IR/Attributes.h" 20 #include "llvm/IR/Function.h" 21 #include "llvm/IR/GlobalValue.h" 22 #include "llvm/Support/CommandLine.h" 23 #include "llvm/Support/TargetRegistry.h" 24 #include "llvm/Target/TargetMachine.h" 25 #include <cstdlib> 26 27 using namespace llvm; 28 29 #define DEBUG_TYPE "ppc-subtarget" 30 31 #define GET_SUBTARGETINFO_TARGET_DESC 32 #define GET_SUBTARGETINFO_CTOR 33 #include "PPCGenSubtargetInfo.inc" 34 35 static cl::opt<bool> UseSubRegLiveness("ppc-track-subreg-liveness", 36 cl::desc("Enable subregister liveness tracking for PPC"), cl::Hidden); 37 38 static cl::opt<bool> QPXStackUnaligned("qpx-stack-unaligned", 39 cl::desc("Even when QPX is enabled the stack is not 32-byte aligned"), 40 cl::Hidden); 41 42 PPCSubtarget &PPCSubtarget::initializeSubtargetDependencies(StringRef CPU, 43 StringRef FS) { 44 initializeEnvironment(); 45 initSubtargetFeatures(CPU, FS); 46 return *this; 47 } 48 49 PPCSubtarget::PPCSubtarget(const Triple &TT, const std::string &CPU, 50 const std::string &FS, const PPCTargetMachine &TM) 51 : PPCGenSubtargetInfo(TT, CPU, FS), TargetTriple(TT), 52 IsPPC64(TargetTriple.getArch() == Triple::ppc64 || 53 TargetTriple.getArch() == Triple::ppc64le), 54 TM(TM), FrameLowering(initializeSubtargetDependencies(CPU, FS)), 55 InstrInfo(*this), TLInfo(TM, *this) {} 56 57 void PPCSubtarget::initializeEnvironment() { 58 StackAlignment = 16; 59 DarwinDirective = PPC::DIR_NONE; 60 HasMFOCRF = false; 61 Has64BitSupport = false; 62 Use64BitRegs = false; 63 UseCRBits = false; 64 HasHardFloat = false; 65 HasAltivec = false; 66 HasSPE = false; 67 HasFPU = false; 68 HasQPX = false; 69 HasVSX = false; 70 HasP8Vector = false; 71 HasP8Altivec = false; 72 HasP8Crypto = false; 73 HasP9Vector = false; 74 HasP9Altivec = false; 75 HasFCPSGN = false; 76 HasFSQRT = false; 77 HasFRE = false; 78 HasFRES = false; 79 HasFRSQRTE = false; 80 HasFRSQRTES = false; 81 HasRecipPrec = false; 82 HasSTFIWX = false; 83 HasLFIWAX = false; 84 HasFPRND = false; 85 HasFPCVT = false; 86 HasISEL = false; 87 HasBPERMD = false; 88 HasExtDiv = false; 89 HasCMPB = false; 90 HasLDBRX = false; 91 IsBookE = false; 92 HasOnlyMSYNC = false; 93 IsPPC4xx = false; 94 IsPPC6xx = false; 95 IsE500 = false; 96 FeatureMFTB = false; 97 DeprecatedDST = false; 98 HasLazyResolverStubs = false; 99 HasICBT = false; 100 HasInvariantFunctionDescriptors = false; 101 HasPartwordAtomics = false; 102 HasDirectMove = false; 103 IsQPXStackUnaligned = false; 104 HasHTM = false; 105 HasFusion = false; 106 HasFloat128 = false; 107 IsISA3_0 = false; 108 UseLongCalls = false; 109 SecurePlt = false; 110 VectorsUseTwoUnits = false; 111 112 HasPOPCNTD = POPCNTD_Unavailable; 113 } 114 115 void PPCSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) { 116 // Determine default and user specified characteristics 117 std::string CPUName = CPU; 118 if (CPUName.empty() || CPU == "generic") { 119 // If cross-compiling with -march=ppc64le without -mcpu 120 if (TargetTriple.getArch() == Triple::ppc64le) 121 CPUName = "ppc64le"; 122 else 123 CPUName = "generic"; 124 } 125 126 // Initialize scheduling itinerary for the specified CPU. 127 InstrItins = getInstrItineraryForCPU(CPUName); 128 129 // Parse features string. 130 ParseSubtargetFeatures(CPUName, FS); 131 132 // If the user requested use of 64-bit regs, but the cpu selected doesn't 133 // support it, ignore. 134 if (IsPPC64 && has64BitSupport()) 135 Use64BitRegs = true; 136 137 // Set up darwin-specific properties. 138 if (isDarwin()) 139 HasLazyResolverStubs = true; 140 141 if (TargetTriple.isOSNetBSD() || TargetTriple.isOSOpenBSD()) 142 SecurePlt = true; 143 144 if (HasSPE && IsPPC64) 145 report_fatal_error( "SPE is only supported for 32-bit targets.\n", false); 146 if (HasSPE && (HasAltivec || HasQPX || HasVSX || HasFPU)) 147 report_fatal_error( 148 "SPE and traditional floating point cannot both be enabled.\n", false); 149 150 // If not SPE, set standard FPU 151 if (!HasSPE) 152 HasFPU = true; 153 154 // QPX requires a 32-byte aligned stack. Note that we need to do this if 155 // we're compiling for a BG/Q system regardless of whether or not QPX 156 // is enabled because external functions will assume this alignment. 157 IsQPXStackUnaligned = QPXStackUnaligned; 158 StackAlignment = getPlatformStackAlignment(); 159 160 // Determine endianness. 161 // FIXME: Part of the TargetMachine. 162 IsLittleEndian = (TargetTriple.getArch() == Triple::ppc64le); 163 } 164 165 /// Return true if accesses to the specified global have to go through a dyld 166 /// lazy resolution stub. This means that an extra load is required to get the 167 /// address of the global. 168 bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV) const { 169 if (!HasLazyResolverStubs) 170 return false; 171 if (!TM.shouldAssumeDSOLocal(*GV->getParent(), GV)) 172 return true; 173 // 32 bit macho has no relocation for a-b if a is undefined, even if b is in 174 // the section that is being relocated. This means we have to use o load even 175 // for GVs that are known to be local to the dso. 176 if (GV->isDeclarationForLinker() || GV->hasCommonLinkage()) 177 return true; 178 return false; 179 } 180 181 bool PPCSubtarget::enableMachineScheduler() const { 182 return true; 183 } 184 185 // This overrides the PostRAScheduler bit in the SchedModel for each CPU. 186 bool PPCSubtarget::enablePostRAScheduler() const { return true; } 187 188 PPCGenSubtargetInfo::AntiDepBreakMode PPCSubtarget::getAntiDepBreakMode() const { 189 return TargetSubtargetInfo::ANTIDEP_ALL; 190 } 191 192 void PPCSubtarget::getCriticalPathRCs(RegClassVector &CriticalPathRCs) const { 193 CriticalPathRCs.clear(); 194 CriticalPathRCs.push_back(isPPC64() ? 195 &PPC::G8RCRegClass : &PPC::GPRCRegClass); 196 } 197 198 void PPCSubtarget::overrideSchedPolicy(MachineSchedPolicy &Policy, 199 unsigned NumRegionInstrs) const { 200 // The GenericScheduler that we use defaults to scheduling bottom up only. 201 // We want to schedule from both the top and the bottom and so we set 202 // OnlyBottomUp to false. 203 // We want to do bi-directional scheduling since it provides a more balanced 204 // schedule leading to better performance. 205 Policy.OnlyBottomUp = false; 206 // Spilling is generally expensive on all PPC cores, so always enable 207 // register-pressure tracking. 208 Policy.ShouldTrackPressure = true; 209 } 210 211 bool PPCSubtarget::useAA() const { 212 return true; 213 } 214 215 bool PPCSubtarget::enableSubRegLiveness() const { 216 return UseSubRegLiveness; 217 } 218 219 unsigned char 220 PPCSubtarget::classifyGlobalReference(const GlobalValue *GV) const { 221 // Note that currently we don't generate non-pic references. 222 // If a caller wants that, this will have to be updated. 223 224 // Large code model always uses the TOC even for local symbols. 225 if (TM.getCodeModel() == CodeModel::Large) 226 return PPCII::MO_PIC_FLAG | PPCII::MO_NLP_FLAG; 227 228 if (TM.shouldAssumeDSOLocal(*GV->getParent(), GV)) 229 return PPCII::MO_PIC_FLAG; 230 return PPCII::MO_PIC_FLAG | PPCII::MO_NLP_FLAG; 231 } 232 233 bool PPCSubtarget::isELFv2ABI() const { return TM.isELFv2ABI(); } 234 bool PPCSubtarget::isPPC64() const { return TM.isPPC64(); } 235