1 //===-- PowerPCSubtarget.cpp - PPC Subtarget Information ------------------===// 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 // This file implements the PPC specific subclass of TargetSubtargetInfo. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "PPCSubtarget.h" 15 #include "PPC.h" 16 #include "PPCRegisterInfo.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/Host.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 /// Return the datalayout string of a subtarget. 36 static std::string getDataLayoutString(const Triple &T) { 37 bool is64Bit = T.getArch() == Triple::ppc64 || T.getArch() == Triple::ppc64le; 38 std::string Ret; 39 40 // Most PPC* platforms are big endian, PPC64LE is little endian. 41 if (T.getArch() == Triple::ppc64le) 42 Ret = "e"; 43 else 44 Ret = "E"; 45 46 Ret += DataLayout::getManglingComponent(T); 47 48 // PPC32 has 32 bit pointers. The PS3 (OS Lv2) is a PPC64 machine with 32 bit 49 // pointers. 50 if (!is64Bit || T.getOS() == Triple::Lv2) 51 Ret += "-p:32:32"; 52 53 // Note, the alignment values for f64 and i64 on ppc64 in Darwin 54 // documentation are wrong; these are correct (i.e. "what gcc does"). 55 if (is64Bit || !T.isOSDarwin()) 56 Ret += "-i64:64"; 57 else 58 Ret += "-f64:32:64"; 59 60 // PPC64 has 32 and 64 bit registers, PPC32 has only 32 bit ones. 61 if (is64Bit) 62 Ret += "-n32:64"; 63 else 64 Ret += "-n32"; 65 66 return Ret; 67 } 68 69 PPCSubtarget &PPCSubtarget::initializeSubtargetDependencies(StringRef CPU, 70 StringRef FS) { 71 initializeEnvironment(); 72 initSubtargetFeatures(CPU, FS); 73 return *this; 74 } 75 76 PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU, 77 const std::string &FS, const PPCTargetMachine &TM) 78 : PPCGenSubtargetInfo(TT, CPU, FS), TargetTriple(TT), 79 DL(getDataLayoutString(TargetTriple)), 80 IsPPC64(TargetTriple.getArch() == Triple::ppc64 || 81 TargetTriple.getArch() == Triple::ppc64le), 82 TargetABI(PPC_ABI_UNKNOWN), 83 FrameLowering(initializeSubtargetDependencies(CPU, FS)), InstrInfo(*this), 84 TLInfo(TM), TSInfo(&DL) {} 85 86 void PPCSubtarget::initializeEnvironment() { 87 StackAlignment = 16; 88 DarwinDirective = PPC::DIR_NONE; 89 HasMFOCRF = false; 90 Has64BitSupport = false; 91 Use64BitRegs = false; 92 UseCRBits = false; 93 HasAltivec = false; 94 HasSPE = false; 95 HasQPX = false; 96 HasVSX = false; 97 HasP8Vector = false; 98 HasFCPSGN = false; 99 HasFSQRT = false; 100 HasFRE = false; 101 HasFRES = false; 102 HasFRSQRTE = false; 103 HasFRSQRTES = false; 104 HasRecipPrec = false; 105 HasSTFIWX = false; 106 HasLFIWAX = false; 107 HasFPRND = false; 108 HasFPCVT = false; 109 HasISEL = false; 110 HasPOPCNTD = false; 111 HasCMPB = false; 112 HasLDBRX = false; 113 IsBookE = false; 114 HasOnlyMSYNC = false; 115 IsPPC4xx = false; 116 IsPPC6xx = false; 117 IsE500 = false; 118 DeprecatedMFTB = false; 119 DeprecatedDST = false; 120 HasLazyResolverStubs = false; 121 } 122 123 void PPCSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) { 124 // Determine default and user specified characteristics 125 std::string CPUName = CPU; 126 if (CPUName.empty()) 127 CPUName = "generic"; 128 #if (defined(__APPLE__) || defined(__linux__)) && \ 129 (defined(__ppc__) || defined(__powerpc__)) 130 if (CPUName == "generic") 131 CPUName = sys::getHostCPUName(); 132 #endif 133 134 // Initialize scheduling itinerary for the specified CPU. 135 InstrItins = getInstrItineraryForCPU(CPUName); 136 137 // Parse features string. 138 ParseSubtargetFeatures(CPUName, FS); 139 140 // If the user requested use of 64-bit regs, but the cpu selected doesn't 141 // support it, ignore. 142 if (IsPPC64 && has64BitSupport()) 143 Use64BitRegs = true; 144 145 // Set up darwin-specific properties. 146 if (isDarwin()) 147 HasLazyResolverStubs = true; 148 149 // QPX requires a 32-byte aligned stack. Note that we need to do this if 150 // we're compiling for a BG/Q system regardless of whether or not QPX 151 // is enabled because external functions will assume this alignment. 152 if (hasQPX() || isBGQ()) 153 StackAlignment = 32; 154 155 // Determine endianness. 156 IsLittleEndian = (TargetTriple.getArch() == Triple::ppc64le); 157 158 // Determine default ABI. 159 if (TargetABI == PPC_ABI_UNKNOWN) { 160 if (!isDarwin() && IsPPC64) { 161 if (IsLittleEndian) 162 TargetABI = PPC_ABI_ELFv2; 163 else 164 TargetABI = PPC_ABI_ELFv1; 165 } 166 } 167 } 168 169 /// hasLazyResolverStub - Return true if accesses to the specified global have 170 /// to go through a dyld lazy resolution stub. This means that an extra load 171 /// is required to get the address of the global. 172 bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV, 173 const TargetMachine &TM) const { 174 // We never have stubs if HasLazyResolverStubs=false or if in static mode. 175 if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static) 176 return false; 177 bool isDecl = GV->isDeclaration(); 178 if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage()) 179 return false; 180 return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() || 181 GV->hasCommonLinkage() || isDecl; 182 } 183 184 // Embedded cores need aggressive scheduling (and some others also benefit). 185 static bool needsAggressiveScheduling(unsigned Directive) { 186 switch (Directive) { 187 default: return false; 188 case PPC::DIR_440: 189 case PPC::DIR_A2: 190 case PPC::DIR_E500mc: 191 case PPC::DIR_E5500: 192 case PPC::DIR_PWR7: 193 case PPC::DIR_PWR8: 194 return true; 195 } 196 } 197 198 bool PPCSubtarget::enableMachineScheduler() const { 199 // Enable MI scheduling for the embedded cores. 200 // FIXME: Enable this for all cores (some additional modeling 201 // may be necessary). 202 return needsAggressiveScheduling(DarwinDirective); 203 } 204 205 // This overrides the PostRAScheduler bit in the SchedModel for each CPU. 206 bool PPCSubtarget::enablePostMachineScheduler() const { return true; } 207 208 PPCGenSubtargetInfo::AntiDepBreakMode PPCSubtarget::getAntiDepBreakMode() const { 209 return TargetSubtargetInfo::ANTIDEP_ALL; 210 } 211 212 void PPCSubtarget::getCriticalPathRCs(RegClassVector &CriticalPathRCs) const { 213 CriticalPathRCs.clear(); 214 CriticalPathRCs.push_back(isPPC64() ? 215 &PPC::G8RCRegClass : &PPC::GPRCRegClass); 216 } 217 218 void PPCSubtarget::overrideSchedPolicy(MachineSchedPolicy &Policy, 219 MachineInstr *begin, 220 MachineInstr *end, 221 unsigned NumRegionInstrs) const { 222 if (needsAggressiveScheduling(DarwinDirective)) { 223 Policy.OnlyTopDown = false; 224 Policy.OnlyBottomUp = false; 225 } 226 227 // Spilling is generally expensive on all PPC cores, so always enable 228 // register-pressure tracking. 229 Policy.ShouldTrackPressure = true; 230 } 231 232 bool PPCSubtarget::useAA() const { 233 // Use AA during code generation for the embedded cores. 234 return needsAggressiveScheduling(DarwinDirective); 235 } 236 237