Jia Liu | 31d157a | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- PowerPCSubtarget.cpp - PPC Subtarget Information ------------------===// |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Evan Cheng | 5b1b4489 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 10 | // This file implements the PPC specific subclass of TargetSubtargetInfo. |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chris Lattner | 2668959 | 2005-10-14 23:51:18 +0000 | [diff] [blame] | 14 | #include "PPCSubtarget.h" |
Hal Finkel | 64c34e2 | 2011-12-02 04:58:02 +0000 | [diff] [blame] | 15 | #include "PPCRegisterInfo.h" |
Chris Lattner | 2668959 | 2005-10-14 23:51:18 +0000 | [diff] [blame] | 16 | #include "PPC.h" |
Jakob Stoklund Olesen | 138c2b4 | 2012-06-12 00:58:40 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/StringRef.h" |
| 18 | #include "llvm/ADT/StringSwitch.h" |
Daniel Dunbar | 3be0340 | 2009-08-02 22:11:08 +0000 | [diff] [blame] | 19 | #include "llvm/GlobalValue.h" |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetMachine.h" |
Jakob Stoklund Olesen | 138c2b4 | 2012-06-12 00:58:40 +0000 | [diff] [blame] | 21 | #include "llvm/Support/DataStream.h" |
| 22 | #include "llvm/Support/Debug.h" |
Evan Cheng | 3e74d6f | 2011-08-24 18:08:43 +0000 | [diff] [blame] | 23 | #include "llvm/Support/TargetRegistry.h" |
Dan Gohman | d68a076 | 2009-01-05 17:59:02 +0000 | [diff] [blame] | 24 | #include <cstdlib> |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 25 | |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 26 | #define GET_SUBTARGETINFO_TARGET_DESC |
Evan Cheng | ebdeeab | 2011-07-08 01:53:10 +0000 | [diff] [blame] | 27 | #define GET_SUBTARGETINFO_CTOR |
Evan Cheng | 385e930 | 2011-07-01 22:36:09 +0000 | [diff] [blame] | 28 | #include "PPCGenSubtargetInfo.inc" |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 29 | |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 30 | using namespace llvm; |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 31 | |
Jakob Stoklund Olesen | 138c2b4 | 2012-06-12 00:58:40 +0000 | [diff] [blame] | 32 | #if defined(__APPLE__) |
| 33 | #include <mach/mach.h> |
| 34 | #include <mach/mach_host.h> |
| 35 | #include <mach/host_info.h> |
| 36 | #include <mach/machine.h> |
| 37 | |
| 38 | /// GetCurrentPowerPCFeatures - Returns the current CPUs features. |
| 39 | static const char *GetCurrentPowerPCCPU() { |
| 40 | host_basic_info_data_t hostInfo; |
| 41 | mach_msg_type_number_t infoCount; |
| 42 | |
| 43 | infoCount = HOST_BASIC_INFO_COUNT; |
| 44 | host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, |
| 45 | &infoCount); |
| 46 | |
| 47 | if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic"; |
| 48 | |
| 49 | switch(hostInfo.cpu_subtype) { |
| 50 | case CPU_SUBTYPE_POWERPC_601: return "601"; |
| 51 | case CPU_SUBTYPE_POWERPC_602: return "602"; |
| 52 | case CPU_SUBTYPE_POWERPC_603: return "603"; |
| 53 | case CPU_SUBTYPE_POWERPC_603e: return "603e"; |
| 54 | case CPU_SUBTYPE_POWERPC_603ev: return "603ev"; |
| 55 | case CPU_SUBTYPE_POWERPC_604: return "604"; |
| 56 | case CPU_SUBTYPE_POWERPC_604e: return "604e"; |
| 57 | case CPU_SUBTYPE_POWERPC_620: return "620"; |
| 58 | case CPU_SUBTYPE_POWERPC_750: return "750"; |
| 59 | case CPU_SUBTYPE_POWERPC_7400: return "7400"; |
| 60 | case CPU_SUBTYPE_POWERPC_7450: return "7450"; |
| 61 | case CPU_SUBTYPE_POWERPC_970: return "970"; |
| 62 | default: ; |
| 63 | } |
| 64 | |
| 65 | return "generic"; |
| 66 | } |
| 67 | #elif defined(__linux__) && (defined(__ppc__) || defined(__powerpc__)) |
| 68 | static const char *GetCurrentPowerPCCPU() { |
| 69 | // Access to the Processor Version Register (PVR) on PowerPC is privileged, |
| 70 | // and so we must use an operating-system interface to determine the current |
| 71 | // processor type. On Linux, this is exposed through the /proc/cpuinfo file. |
| 72 | const char *generic = "generic"; |
| 73 | |
| 74 | // Note: We cannot mmap /proc/cpuinfo here and then process the resulting |
| 75 | // memory buffer because the 'file' has 0 size (it can be read from only |
| 76 | // as a stream). |
| 77 | |
| 78 | std::string Err; |
| 79 | DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err); |
| 80 | if (!DS) { |
| 81 | DEBUG(dbgs() << "Unable to open /proc/cpuinfo: " << Err << "\n"); |
| 82 | return generic; |
| 83 | } |
| 84 | |
| 85 | // The cpu line is second (after the 'processor: 0' line), so if this |
| 86 | // buffer is too small then something has changed (or is wrong). |
| 87 | char buffer[1024]; |
| 88 | size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer)); |
| 89 | delete DS; |
| 90 | |
| 91 | const char *CPUInfoStart = buffer; |
| 92 | const char *CPUInfoEnd = buffer + CPUInfoSize; |
| 93 | |
| 94 | const char *CIP = CPUInfoStart; |
| 95 | |
| 96 | const char *CPUStart = 0; |
| 97 | size_t CPULen = 0; |
| 98 | |
| 99 | // We need to find the first line which starts with cpu, spaces, and a colon. |
| 100 | // After the colon, there may be some additional spaces and then the cpu type. |
| 101 | while (CIP < CPUInfoEnd && CPUStart == 0) { |
| 102 | if (CIP < CPUInfoEnd && *CIP == '\n') |
| 103 | ++CIP; |
| 104 | |
| 105 | if (CIP < CPUInfoEnd && *CIP == 'c') { |
| 106 | ++CIP; |
| 107 | if (CIP < CPUInfoEnd && *CIP == 'p') { |
| 108 | ++CIP; |
| 109 | if (CIP < CPUInfoEnd && *CIP == 'u') { |
| 110 | ++CIP; |
| 111 | while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t')) |
| 112 | ++CIP; |
| 113 | |
| 114 | if (CIP < CPUInfoEnd && *CIP == ':') { |
| 115 | ++CIP; |
| 116 | while (CIP < CPUInfoEnd && (*CIP == ' ' || *CIP == '\t')) |
| 117 | ++CIP; |
| 118 | |
| 119 | if (CIP < CPUInfoEnd) { |
| 120 | CPUStart = CIP; |
| 121 | while (CIP < CPUInfoEnd && (*CIP != ' ' && *CIP != '\t' && |
| 122 | *CIP != ',' && *CIP != '\n')) |
| 123 | ++CIP; |
| 124 | CPULen = CIP - CPUStart; |
| 125 | } |
| 126 | } |
| 127 | } |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | if (CPUStart == 0) |
| 132 | while (CIP < CPUInfoEnd && *CIP != '\n') |
| 133 | ++CIP; |
| 134 | } |
| 135 | |
| 136 | if (CPUStart == 0) |
| 137 | return generic; |
| 138 | |
| 139 | return StringSwitch<const char *>(StringRef(CPUStart, CPULen)) |
| 140 | .Case("604e", "604e") |
| 141 | .Case("604", "604") |
| 142 | .Case("7400", "7400") |
| 143 | .Case("7410", "7400") |
| 144 | .Case("7447", "7400") |
| 145 | .Case("7455", "7450") |
| 146 | .Case("G4", "g4") |
| 147 | .Case("POWER4", "g4") |
| 148 | .Case("PPC970FX", "970") |
| 149 | .Case("PPC970MP", "970") |
| 150 | .Case("G5", "g5") |
| 151 | .Case("POWER5", "g5") |
| 152 | .Case("A2", "a2") |
| 153 | .Case("POWER6", "pwr6") |
| 154 | .Case("POWER7", "pwr7") |
| 155 | .Default(generic); |
| 156 | } |
| 157 | #endif |
| 158 | |
| 159 | |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 160 | PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU, |
| 161 | const std::string &FS, bool is64Bit) |
Evan Cheng | 0ddff1b | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 162 | : PPCGenSubtargetInfo(TT, CPU, FS) |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 163 | , StackAlignment(16) |
Dale Johannesen | db01c8b | 2008-02-14 23:35:16 +0000 | [diff] [blame] | 164 | , DarwinDirective(PPC::DIR_NONE) |
Hal Finkel | bd5cafd | 2012-06-11 19:57:01 +0000 | [diff] [blame] | 165 | , HasMFOCRF(false) |
Chris Lattner | a7a5854 | 2006-06-16 17:34:12 +0000 | [diff] [blame] | 166 | , Has64BitSupport(false) |
| 167 | , Use64BitRegs(false) |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 168 | , IsPPC64(is64Bit) |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 169 | , HasAltivec(false) |
| 170 | , HasFSQRT(false) |
Chris Lattner | 5126984 | 2006-03-01 05:50:56 +0000 | [diff] [blame] | 171 | , HasSTFIWX(false) |
Hal Finkel | c6d08f1 | 2011-10-17 04:03:49 +0000 | [diff] [blame] | 172 | , IsBookE(false) |
Chris Lattner | 564da5d | 2008-01-02 19:35:16 +0000 | [diff] [blame] | 173 | , HasLazyResolverStubs(false) |
Torok Edwin | 0e3a1a8 | 2010-08-04 20:47:44 +0000 | [diff] [blame] | 174 | , IsJITCodeModel(false) |
Daniel Dunbar | 869eca1 | 2011-04-19 20:54:28 +0000 | [diff] [blame] | 175 | , TargetTriple(TT) { |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 176 | |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 177 | // Determine default and user specified characteristics |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 178 | std::string CPUName = CPU; |
| 179 | if (CPUName.empty()) |
| 180 | CPUName = "generic"; |
Hal Finkel | 2bd0acd | 2012-06-11 15:43:13 +0000 | [diff] [blame] | 181 | #if defined(__APPLE__) || \ |
| 182 | (defined(__linux__) && (defined(__ppc__) || defined(__powerpc__))) |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 183 | if (CPUName == "generic") |
Jakob Stoklund Olesen | 138c2b4 | 2012-06-12 00:58:40 +0000 | [diff] [blame] | 184 | CPUName = GetCurrentPowerPCCPU(); |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 185 | #endif |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 186 | |
| 187 | // Parse features string. |
Evan Cheng | 0ddff1b | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 188 | ParseSubtargetFeatures(CPUName, FS); |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 189 | |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 190 | // Initialize scheduling itinerary for the specified CPU. |
| 191 | InstrItins = getInstrItineraryForCPU(CPUName); |
| 192 | |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 193 | // If we are generating code for ppc64, verify that options make sense. |
| 194 | if (is64Bit) { |
Dale Johannesen | 3b40744 | 2008-02-15 18:40:53 +0000 | [diff] [blame] | 195 | Has64BitSupport = true; |
Chris Lattner | 8fa05da | 2006-06-16 20:05:06 +0000 | [diff] [blame] | 196 | // Silently force 64-bit register use on ppc64. |
| 197 | Use64BitRegs = true; |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | // If the user requested use of 64-bit regs, but the cpu selected doesn't |
Dale Johannesen | 3b40744 | 2008-02-15 18:40:53 +0000 | [diff] [blame] | 201 | // support it, ignore. |
| 202 | if (use64BitRegs() && !has64BitSupport()) |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 203 | Use64BitRegs = false; |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 204 | |
| 205 | // Set up darwin-specific properties. |
Chris Lattner | 74da671 | 2009-08-11 22:49:34 +0000 | [diff] [blame] | 206 | if (isDarwin()) |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 207 | HasLazyResolverStubs = true; |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 208 | } |
| 209 | |
| 210 | /// SetJITMode - This is called to inform the subtarget info that we are |
| 211 | /// producing code for the JIT. |
| 212 | void PPCSubtarget::SetJITMode() { |
| 213 | // JIT mode doesn't want lazy resolver stubs, it knows exactly where |
| 214 | // everything is. This matters for PPC64, which codegens in PIC mode without |
| 215 | // stubs. |
| 216 | HasLazyResolverStubs = false; |
Torok Edwin | 0e3a1a8 | 2010-08-04 20:47:44 +0000 | [diff] [blame] | 217 | |
| 218 | // Calls to external functions need to use indirect calls |
| 219 | IsJITCodeModel = true; |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | |
| 223 | /// hasLazyResolverStub - Return true if accesses to the specified global have |
| 224 | /// to go through a dyld lazy resolution stub. This means that an extra load |
| 225 | /// is required to get the address of the global. |
Daniel Dunbar | 3be0340 | 2009-08-02 22:11:08 +0000 | [diff] [blame] | 226 | bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV, |
| 227 | const TargetMachine &TM) const { |
Chris Lattner | 1e61e69 | 2010-11-15 02:46:57 +0000 | [diff] [blame] | 228 | // We never have stubs if HasLazyResolverStubs=false or if in static mode. |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 229 | if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static) |
| 230 | return false; |
Evan Cheng | ae94e59 | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 231 | // If symbol visibility is hidden, the extra load is not needed if |
| 232 | // the symbol is definitely defined in the current translation unit. |
Jeffrey Yasskin | f0356fe | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 233 | bool isDecl = GV->isDeclaration() && !GV->isMaterializable(); |
Evan Cheng | ae94e59 | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 234 | if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage()) |
| 235 | return false; |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 236 | return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() || |
Evan Cheng | ae94e59 | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 237 | GV->hasCommonLinkage() || isDecl; |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 238 | } |
Hal Finkel | 64c34e2 | 2011-12-02 04:58:02 +0000 | [diff] [blame] | 239 | |
| 240 | bool PPCSubtarget::enablePostRAScheduler( |
| 241 | CodeGenOpt::Level OptLevel, |
| 242 | TargetSubtargetInfo::AntiDepBreakMode& Mode, |
| 243 | RegClassVector& CriticalPathRCs) const { |
Hal Finkel | 01a90f4 | 2012-06-10 11:15:36 +0000 | [diff] [blame] | 244 | // FIXME: It would be best to use TargetSubtargetInfo::ANTIDEP_ALL here, |
| 245 | // but we can't because we can't reassign the cr registers. There is a |
| 246 | // dependence between the cr register and the RLWINM instruction used |
| 247 | // to extract its value which the anti-dependency breaker can't currently |
| 248 | // see. Maybe we should make a late-expanded pseudo to encode this dependency. |
| 249 | // (the relevant code is in PPCDAGToDAGISel::SelectSETCC) |
| 250 | |
| 251 | Mode = TargetSubtargetInfo::ANTIDEP_CRITICAL; |
Hal Finkel | 64c34e2 | 2011-12-02 04:58:02 +0000 | [diff] [blame] | 252 | |
Hal Finkel | 64c34e2 | 2011-12-02 04:58:02 +0000 | [diff] [blame] | 253 | CriticalPathRCs.clear(); |
| 254 | |
| 255 | if (isPPC64()) |
| 256 | CriticalPathRCs.push_back(&PPC::G8RCRegClass); |
| 257 | else |
| 258 | CriticalPathRCs.push_back(&PPC::GPRCRegClass); |
Hal Finkel | 01a90f4 | 2012-06-10 11:15:36 +0000 | [diff] [blame] | 259 | |
| 260 | CriticalPathRCs.push_back(&PPC::F8RCRegClass); |
| 261 | CriticalPathRCs.push_back(&PPC::VRRCRegClass); |
Hal Finkel | 64c34e2 | 2011-12-02 04:58:02 +0000 | [diff] [blame] | 262 | |
| 263 | return OptLevel >= CodeGenOpt::Default; |
| 264 | } |
| 265 | |