1 //===-- PPCRegisterInfo.cpp - PowerPC Register 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 contains the PowerPC implementation of the TargetRegisterInfo 11 // class. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #define DEBUG_TYPE "reginfo" 16 #include "PPCRegisterInfo.h" 17 #include "PPC.h" 18 #include "PPCFrameLowering.h" 19 #include "PPCInstrBuilder.h" 20 #include "PPCMachineFunctionInfo.h" 21 #include "PPCSubtarget.h" 22 #include "llvm/ADT/BitVector.h" 23 #include "llvm/ADT/STLExtras.h" 24 #include "llvm/CodeGen/MachineFrameInfo.h" 25 #include "llvm/CodeGen/MachineFunction.h" 26 #include "llvm/CodeGen/MachineInstrBuilder.h" 27 #include "llvm/CodeGen/MachineModuleInfo.h" 28 #include "llvm/CodeGen/MachineRegisterInfo.h" 29 #include "llvm/CodeGen/RegisterScavenging.h" 30 #include "llvm/CodeGen/ValueTypes.h" 31 #include "llvm/IR/CallingConv.h" 32 #include "llvm/IR/Constants.h" 33 #include "llvm/IR/Function.h" 34 #include "llvm/IR/Type.h" 35 #include "llvm/Support/CommandLine.h" 36 #include "llvm/Support/Debug.h" 37 #include "llvm/Support/ErrorHandling.h" 38 #include "llvm/Support/MathExtras.h" 39 #include "llvm/Support/raw_ostream.h" 40 #include "llvm/Target/TargetFrameLowering.h" 41 #include "llvm/Target/TargetInstrInfo.h" 42 #include "llvm/Target/TargetMachine.h" 43 #include "llvm/Target/TargetOptions.h" 44 #include <cstdlib> 45 46 #define GET_REGINFO_TARGET_DESC 47 #include "PPCGenRegisterInfo.inc" 48 49 using namespace llvm; 50 51 PPCRegisterInfo::PPCRegisterInfo(const PPCSubtarget &ST, 52 const TargetInstrInfo &tii) 53 : PPCGenRegisterInfo(ST.isPPC64() ? PPC::LR8 : PPC::LR, 54 ST.isPPC64() ? 0 : 1, 55 ST.isPPC64() ? 0 : 1), 56 Subtarget(ST), TII(tii) { 57 ImmToIdxMap[PPC::LD] = PPC::LDX; ImmToIdxMap[PPC::STD] = PPC::STDX; 58 ImmToIdxMap[PPC::LBZ] = PPC::LBZX; ImmToIdxMap[PPC::STB] = PPC::STBX; 59 ImmToIdxMap[PPC::LHZ] = PPC::LHZX; ImmToIdxMap[PPC::LHA] = PPC::LHAX; 60 ImmToIdxMap[PPC::LWZ] = PPC::LWZX; ImmToIdxMap[PPC::LWA] = PPC::LWAX; 61 ImmToIdxMap[PPC::LFS] = PPC::LFSX; ImmToIdxMap[PPC::LFD] = PPC::LFDX; 62 ImmToIdxMap[PPC::STH] = PPC::STHX; ImmToIdxMap[PPC::STW] = PPC::STWX; 63 ImmToIdxMap[PPC::STFS] = PPC::STFSX; ImmToIdxMap[PPC::STFD] = PPC::STFDX; 64 ImmToIdxMap[PPC::ADDI] = PPC::ADD4; 65 66 // 64-bit 67 ImmToIdxMap[PPC::LHA8] = PPC::LHAX8; ImmToIdxMap[PPC::LBZ8] = PPC::LBZX8; 68 ImmToIdxMap[PPC::LHZ8] = PPC::LHZX8; ImmToIdxMap[PPC::LWZ8] = PPC::LWZX8; 69 ImmToIdxMap[PPC::STB8] = PPC::STBX8; ImmToIdxMap[PPC::STH8] = PPC::STHX8; 70 ImmToIdxMap[PPC::STW8] = PPC::STWX8; ImmToIdxMap[PPC::STDU] = PPC::STDUX; 71 ImmToIdxMap[PPC::ADDI8] = PPC::ADD8; 72 } 73 74 /// getPointerRegClass - Return the register class to use to hold pointers. 75 /// This is used for addressing modes. 76 const TargetRegisterClass * 77 PPCRegisterInfo::getPointerRegClass(const MachineFunction &MF, unsigned Kind) 78 const { 79 // Note that PPCInstrInfo::FoldImmediate also directly uses this Kind value 80 // when it checks for ZERO folding. 81 if (Kind == 1) { 82 if (Subtarget.isPPC64()) 83 return &PPC::G8RC_NOX0RegClass; 84 return &PPC::GPRC_NOR0RegClass; 85 } 86 87 if (Subtarget.isPPC64()) 88 return &PPC::G8RCRegClass; 89 return &PPC::GPRCRegClass; 90 } 91 92 const uint16_t* 93 PPCRegisterInfo::getCalleeSavedRegs(const MachineFunction *MF) const { 94 if (Subtarget.isDarwinABI()) 95 return Subtarget.isPPC64() ? CSR_Darwin64_SaveList : 96 CSR_Darwin32_SaveList; 97 98 return Subtarget.isPPC64() ? CSR_SVR464_SaveList : CSR_SVR432_SaveList; 99 } 100 101 const uint32_t* 102 PPCRegisterInfo::getCallPreservedMask(CallingConv::ID CC) const { 103 if (Subtarget.isDarwinABI()) 104 return Subtarget.isPPC64() ? CSR_Darwin64_RegMask : 105 CSR_Darwin32_RegMask; 106 107 return Subtarget.isPPC64() ? CSR_SVR464_RegMask : CSR_SVR432_RegMask; 108 } 109 110 const uint32_t* 111 PPCRegisterInfo::getNoPreservedMask() const { 112 // The naming here is inverted: The CSR_NoRegs_Altivec has the 113 // Altivec registers masked so that they're not saved and restored around 114 // instructions with this preserved mask. 115 116 if (!Subtarget.hasAltivec()) 117 return CSR_NoRegs_Altivec_RegMask; 118 119 if (Subtarget.isDarwin()) 120 return CSR_NoRegs_Darwin_RegMask; 121 return CSR_NoRegs_RegMask; 122 } 123 124 BitVector PPCRegisterInfo::getReservedRegs(const MachineFunction &MF) const { 125 BitVector Reserved(getNumRegs()); 126 const PPCFrameLowering *PPCFI = 127 static_cast<const PPCFrameLowering*>(MF.getTarget().getFrameLowering()); 128 129 // The ZERO register is not really a register, but the representation of r0 130 // when used in instructions that treat r0 as the constant 0. 131 Reserved.set(PPC::ZERO); 132 Reserved.set(PPC::ZERO8); 133 134 // The FP register is also not really a register, but is the representation 135 // of the frame pointer register used by ISD::FRAMEADDR. 136 Reserved.set(PPC::FP); 137 Reserved.set(PPC::FP8); 138 139 Reserved.set(PPC::R1); 140 Reserved.set(PPC::LR); 141 Reserved.set(PPC::LR8); 142 Reserved.set(PPC::RM); 143 144 // The SVR4 ABI reserves r2 and r13 145 if (Subtarget.isSVR4ABI()) { 146 Reserved.set(PPC::R2); // System-reserved register 147 Reserved.set(PPC::R13); // Small Data Area pointer register 148 } 149 150 // On PPC64, r13 is the thread pointer. Never allocate this register. 151 if (Subtarget.isPPC64()) { 152 Reserved.set(PPC::R13); 153 154 Reserved.set(PPC::X1); 155 Reserved.set(PPC::X13); 156 157 if (PPCFI->needsFP(MF)) 158 Reserved.set(PPC::X31); 159 160 // The 64-bit SVR4 ABI reserves r2 for the TOC pointer. 161 if (Subtarget.isSVR4ABI()) { 162 Reserved.set(PPC::X2); 163 } 164 } 165 166 if (PPCFI->needsFP(MF)) 167 Reserved.set(PPC::R31); 168 169 return Reserved; 170 } 171 172 unsigned 173 PPCRegisterInfo::getRegPressureLimit(const TargetRegisterClass *RC, 174 MachineFunction &MF) const { 175 const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering(); 176 const unsigned DefaultSafety = 1; 177 178 switch (RC->getID()) { 179 default: 180 return 0; 181 case PPC::G8RC_NOX0RegClassID: 182 case PPC::GPRC_NOR0RegClassID: 183 case PPC::G8RCRegClassID: 184 case PPC::GPRCRegClassID: { 185 unsigned FP = TFI->hasFP(MF) ? 1 : 0; 186 return 32 - FP - DefaultSafety; 187 } 188 case PPC::F8RCRegClassID: 189 case PPC::F4RCRegClassID: 190 case PPC::VRRCRegClassID: 191 return 32 - DefaultSafety; 192 case PPC::CRRCRegClassID: 193 return 8 - DefaultSafety; 194 } 195 } 196 197 //===----------------------------------------------------------------------===// 198 // Stack Frame Processing methods 199 //===----------------------------------------------------------------------===// 200 201 /// lowerDynamicAlloc - Generate the code for allocating an object in the 202 /// current frame. The sequence of code with be in the general form 203 /// 204 /// addi R0, SP, \#frameSize ; get the address of the previous frame 205 /// stwxu R0, SP, Rnegsize ; add and update the SP with the negated size 206 /// addi Rnew, SP, \#maxCalFrameSize ; get the top of the allocation 207 /// 208 void PPCRegisterInfo::lowerDynamicAlloc(MachineBasicBlock::iterator II) const { 209 // Get the instruction. 210 MachineInstr &MI = *II; 211 // Get the instruction's basic block. 212 MachineBasicBlock &MBB = *MI.getParent(); 213 // Get the basic block's function. 214 MachineFunction &MF = *MBB.getParent(); 215 // Get the frame info. 216 MachineFrameInfo *MFI = MF.getFrameInfo(); 217 // Determine whether 64-bit pointers are used. 218 bool LP64 = Subtarget.isPPC64(); 219 DebugLoc dl = MI.getDebugLoc(); 220 221 // Get the maximum call stack size. 222 unsigned maxCallFrameSize = MFI->getMaxCallFrameSize(); 223 // Get the total frame size. 224 unsigned FrameSize = MFI->getStackSize(); 225 226 // Get stack alignments. 227 unsigned TargetAlign = MF.getTarget().getFrameLowering()->getStackAlignment(); 228 unsigned MaxAlign = MFI->getMaxAlignment(); 229 if (MaxAlign > TargetAlign) 230 report_fatal_error("Dynamic alloca with large aligns not supported"); 231 232 // Determine the previous frame's address. If FrameSize can't be 233 // represented as 16 bits or we need special alignment, then we load the 234 // previous frame's address from 0(SP). Why not do an addis of the hi? 235 // Because R0 is our only safe tmp register and addi/addis treat R0 as zero. 236 // Constructing the constant and adding would take 3 instructions. 237 // Fortunately, a frame greater than 32K is rare. 238 const TargetRegisterClass *G8RC = &PPC::G8RCRegClass; 239 const TargetRegisterClass *GPRC = &PPC::GPRCRegClass; 240 unsigned Reg = MF.getRegInfo().createVirtualRegister(LP64 ? G8RC : GPRC); 241 242 if (MaxAlign < TargetAlign && isInt<16>(FrameSize)) { 243 BuildMI(MBB, II, dl, TII.get(PPC::ADDI), Reg) 244 .addReg(PPC::R31) 245 .addImm(FrameSize); 246 } else if (LP64) { 247 BuildMI(MBB, II, dl, TII.get(PPC::LD), Reg) 248 .addImm(0) 249 .addReg(PPC::X1); 250 } else { 251 BuildMI(MBB, II, dl, TII.get(PPC::LWZ), Reg) 252 .addImm(0) 253 .addReg(PPC::R1); 254 } 255 256 // Grow the stack and update the stack pointer link, then determine the 257 // address of new allocated space. 258 if (LP64) { 259 BuildMI(MBB, II, dl, TII.get(PPC::STDUX), PPC::X1) 260 .addReg(Reg, RegState::Kill) 261 .addReg(PPC::X1) 262 .addReg(MI.getOperand(1).getReg()); 263 if (!MI.getOperand(1).isKill()) 264 BuildMI(MBB, II, dl, TII.get(PPC::ADDI8), MI.getOperand(0).getReg()) 265 .addReg(PPC::X1) 266 .addImm(maxCallFrameSize); 267 else 268 // Implicitly kill the register. 269 BuildMI(MBB, II, dl, TII.get(PPC::ADDI8), MI.getOperand(0).getReg()) 270 .addReg(PPC::X1) 271 .addImm(maxCallFrameSize) 272 .addReg(MI.getOperand(1).getReg(), RegState::ImplicitKill); 273 } else { 274 BuildMI(MBB, II, dl, TII.get(PPC::STWUX), PPC::R1) 275 .addReg(Reg, RegState::Kill) 276 .addReg(PPC::R1) 277 .addReg(MI.getOperand(1).getReg()); 278 279 if (!MI.getOperand(1).isKill()) 280 BuildMI(MBB, II, dl, TII.get(PPC::ADDI), MI.getOperand(0).getReg()) 281 .addReg(PPC::R1) 282 .addImm(maxCallFrameSize); 283 else 284 // Implicitly kill the register. 285 BuildMI(MBB, II, dl, TII.get(PPC::ADDI), MI.getOperand(0).getReg()) 286 .addReg(PPC::R1) 287 .addImm(maxCallFrameSize) 288 .addReg(MI.getOperand(1).getReg(), RegState::ImplicitKill); 289 } 290 291 // Discard the DYNALLOC instruction. 292 MBB.erase(II); 293 } 294 295 /// lowerCRSpilling - Generate the code for spilling a CR register. Instead of 296 /// reserving a whole register (R0), we scrounge for one here. This generates 297 /// code like this: 298 /// 299 /// mfcr rA ; Move the conditional register into GPR rA. 300 /// rlwinm rA, rA, SB, 0, 31 ; Shift the bits left so they are in CR0's slot. 301 /// stw rA, FI ; Store rA to the frame. 302 /// 303 void PPCRegisterInfo::lowerCRSpilling(MachineBasicBlock::iterator II, 304 unsigned FrameIndex) const { 305 // Get the instruction. 306 MachineInstr &MI = *II; // ; SPILL_CR <SrcReg>, <offset> 307 // Get the instruction's basic block. 308 MachineBasicBlock &MBB = *MI.getParent(); 309 MachineFunction &MF = *MBB.getParent(); 310 DebugLoc dl = MI.getDebugLoc(); 311 312 bool LP64 = Subtarget.isPPC64(); 313 const TargetRegisterClass *G8RC = &PPC::G8RCRegClass; 314 const TargetRegisterClass *GPRC = &PPC::GPRCRegClass; 315 316 unsigned Reg = MF.getRegInfo().createVirtualRegister(LP64 ? G8RC : GPRC); 317 unsigned SrcReg = MI.getOperand(0).getReg(); 318 319 // We need to store the CR in the low 4-bits of the saved value. First, issue 320 // an MFCRpsued to save all of the CRBits and, if needed, kill the SrcReg. 321 BuildMI(MBB, II, dl, TII.get(LP64 ? PPC::MFCR8pseud : PPC::MFCRpseud), Reg) 322 .addReg(SrcReg, getKillRegState(MI.getOperand(0).isKill())); 323 324 // If the saved register wasn't CR0, shift the bits left so that they are in 325 // CR0's slot. 326 if (SrcReg != PPC::CR0) { 327 unsigned Reg1 = Reg; 328 Reg = MF.getRegInfo().createVirtualRegister(LP64 ? G8RC : GPRC); 329 330 // rlwinm rA, rA, ShiftBits, 0, 31. 331 BuildMI(MBB, II, dl, TII.get(LP64 ? PPC::RLWINM8 : PPC::RLWINM), Reg) 332 .addReg(Reg1, RegState::Kill) 333 .addImm(getEncodingValue(SrcReg) * 4) 334 .addImm(0) 335 .addImm(31); 336 } 337 338 addFrameReference(BuildMI(MBB, II, dl, TII.get(LP64 ? PPC::STW8 : PPC::STW)) 339 .addReg(Reg, RegState::Kill), 340 FrameIndex); 341 342 // Discard the pseudo instruction. 343 MBB.erase(II); 344 } 345 346 void PPCRegisterInfo::lowerCRRestore(MachineBasicBlock::iterator II, 347 unsigned FrameIndex) const { 348 // Get the instruction. 349 MachineInstr &MI = *II; // ; <DestReg> = RESTORE_CR <offset> 350 // Get the instruction's basic block. 351 MachineBasicBlock &MBB = *MI.getParent(); 352 MachineFunction &MF = *MBB.getParent(); 353 DebugLoc dl = MI.getDebugLoc(); 354 355 bool LP64 = Subtarget.isPPC64(); 356 const TargetRegisterClass *G8RC = &PPC::G8RCRegClass; 357 const TargetRegisterClass *GPRC = &PPC::GPRCRegClass; 358 359 unsigned Reg = MF.getRegInfo().createVirtualRegister(LP64 ? G8RC : GPRC); 360 unsigned DestReg = MI.getOperand(0).getReg(); 361 assert(MI.definesRegister(DestReg) && 362 "RESTORE_CR does not define its destination"); 363 364 addFrameReference(BuildMI(MBB, II, dl, TII.get(LP64 ? PPC::LWZ8 : PPC::LWZ), 365 Reg), FrameIndex); 366 367 // If the reloaded register isn't CR0, shift the bits right so that they are 368 // in the right CR's slot. 369 if (DestReg != PPC::CR0) { 370 unsigned Reg1 = Reg; 371 Reg = MF.getRegInfo().createVirtualRegister(LP64 ? G8RC : GPRC); 372 373 unsigned ShiftBits = getEncodingValue(DestReg)*4; 374 // rlwinm r11, r11, 32-ShiftBits, 0, 31. 375 BuildMI(MBB, II, dl, TII.get(LP64 ? PPC::RLWINM8 : PPC::RLWINM), Reg) 376 .addReg(Reg1, RegState::Kill).addImm(32-ShiftBits).addImm(0) 377 .addImm(31); 378 } 379 380 BuildMI(MBB, II, dl, TII.get(LP64 ? PPC::MTCRF8 : PPC::MTCRF), DestReg) 381 .addReg(Reg, RegState::Kill); 382 383 // Discard the pseudo instruction. 384 MBB.erase(II); 385 } 386 387 void PPCRegisterInfo::lowerVRSAVESpilling(MachineBasicBlock::iterator II, 388 unsigned FrameIndex) const { 389 // Get the instruction. 390 MachineInstr &MI = *II; // ; SPILL_VRSAVE <SrcReg>, <offset> 391 // Get the instruction's basic block. 392 MachineBasicBlock &MBB = *MI.getParent(); 393 MachineFunction &MF = *MBB.getParent(); 394 DebugLoc dl = MI.getDebugLoc(); 395 396 const TargetRegisterClass *GPRC = &PPC::GPRCRegClass; 397 unsigned Reg = MF.getRegInfo().createVirtualRegister(GPRC); 398 unsigned SrcReg = MI.getOperand(0).getReg(); 399 400 BuildMI(MBB, II, dl, TII.get(PPC::MFVRSAVEv), Reg) 401 .addReg(SrcReg, getKillRegState(MI.getOperand(0).isKill())); 402 403 addFrameReference(BuildMI(MBB, II, dl, TII.get(PPC::STW)) 404 .addReg(Reg, RegState::Kill), 405 FrameIndex); 406 407 // Discard the pseudo instruction. 408 MBB.erase(II); 409 } 410 411 void PPCRegisterInfo::lowerVRSAVERestore(MachineBasicBlock::iterator II, 412 unsigned FrameIndex) const { 413 // Get the instruction. 414 MachineInstr &MI = *II; // ; <DestReg> = RESTORE_VRSAVE <offset> 415 // Get the instruction's basic block. 416 MachineBasicBlock &MBB = *MI.getParent(); 417 MachineFunction &MF = *MBB.getParent(); 418 DebugLoc dl = MI.getDebugLoc(); 419 420 const TargetRegisterClass *GPRC = &PPC::GPRCRegClass; 421 unsigned Reg = MF.getRegInfo().createVirtualRegister(GPRC); 422 unsigned DestReg = MI.getOperand(0).getReg(); 423 assert(MI.definesRegister(DestReg) && 424 "RESTORE_VRSAVE does not define its destination"); 425 426 addFrameReference(BuildMI(MBB, II, dl, TII.get(PPC::LWZ), 427 Reg), FrameIndex); 428 429 BuildMI(MBB, II, dl, TII.get(PPC::MTVRSAVEv), DestReg) 430 .addReg(Reg, RegState::Kill); 431 432 // Discard the pseudo instruction. 433 MBB.erase(II); 434 } 435 436 bool 437 PPCRegisterInfo::hasReservedSpillSlot(const MachineFunction &MF, 438 unsigned Reg, int &FrameIdx) const { 439 440 // For the nonvolatile condition registers (CR2, CR3, CR4) in an SVR4 441 // ABI, return true to prevent allocating an additional frame slot. 442 // For 64-bit, the CR save area is at SP+8; the value of FrameIdx = 0 443 // is arbitrary and will be subsequently ignored. For 32-bit, we have 444 // previously created the stack slot if needed, so return its FrameIdx. 445 if (Subtarget.isSVR4ABI() && PPC::CR2 <= Reg && Reg <= PPC::CR4) { 446 if (Subtarget.isPPC64()) 447 FrameIdx = 0; 448 else { 449 const PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>(); 450 FrameIdx = FI->getCRSpillFrameIndex(); 451 } 452 return true; 453 } 454 return false; 455 } 456 457 void 458 PPCRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II, 459 int SPAdj, unsigned FIOperandNum, 460 RegScavenger *RS) const { 461 assert(SPAdj == 0 && "Unexpected"); 462 463 // Get the instruction. 464 MachineInstr &MI = *II; 465 // Get the instruction's basic block. 466 MachineBasicBlock &MBB = *MI.getParent(); 467 // Get the basic block's function. 468 MachineFunction &MF = *MBB.getParent(); 469 // Get the frame info. 470 MachineFrameInfo *MFI = MF.getFrameInfo(); 471 const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering(); 472 DebugLoc dl = MI.getDebugLoc(); 473 474 // Take into account whether it's an add or mem instruction 475 unsigned OffsetOperandNo = (FIOperandNum == 2) ? 1 : 2; 476 if (MI.isInlineAsm()) 477 OffsetOperandNo = FIOperandNum-1; 478 479 // Get the frame index. 480 int FrameIndex = MI.getOperand(FIOperandNum).getIndex(); 481 482 // Get the frame pointer save index. Users of this index are primarily 483 // DYNALLOC instructions. 484 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>(); 485 int FPSI = FI->getFramePointerSaveIndex(); 486 // Get the instruction opcode. 487 unsigned OpC = MI.getOpcode(); 488 489 // Special case for dynamic alloca. 490 if (FPSI && FrameIndex == FPSI && 491 (OpC == PPC::DYNALLOC || OpC == PPC::DYNALLOC8)) { 492 lowerDynamicAlloc(II); 493 return; 494 } 495 496 // Special case for pseudo-ops SPILL_CR and RESTORE_CR, etc. 497 if (OpC == PPC::SPILL_CR) { 498 lowerCRSpilling(II, FrameIndex); 499 return; 500 } else if (OpC == PPC::RESTORE_CR) { 501 lowerCRRestore(II, FrameIndex); 502 return; 503 } else if (OpC == PPC::SPILL_VRSAVE) { 504 lowerVRSAVESpilling(II, FrameIndex); 505 return; 506 } else if (OpC == PPC::RESTORE_VRSAVE) { 507 lowerVRSAVERestore(II, FrameIndex); 508 return; 509 } 510 511 // Replace the FrameIndex with base register with GPR1 (SP) or GPR31 (FP). 512 513 bool is64Bit = Subtarget.isPPC64(); 514 MI.getOperand(FIOperandNum).ChangeToRegister(TFI->hasFP(MF) ? 515 (is64Bit ? PPC::X31 : PPC::R31) : 516 (is64Bit ? PPC::X1 : PPC::R1), 517 false); 518 519 // Figure out if the offset in the instruction is shifted right two bits. This 520 // is true for instructions like "STD", which the machine implicitly adds two 521 // low zeros to. 522 bool isIXAddr = false; 523 switch (OpC) { 524 case PPC::LWA: 525 case PPC::LD: 526 case PPC::STD: 527 isIXAddr = true; 528 break; 529 } 530 531 // If the instruction is not present in ImmToIdxMap, then it has no immediate 532 // form (and must be r+r). 533 bool noImmForm = !MI.isInlineAsm() && !ImmToIdxMap.count(OpC); 534 535 // Now add the frame object offset to the offset from r1. 536 int Offset = MFI->getObjectOffset(FrameIndex); 537 if (!isIXAddr) 538 Offset += MI.getOperand(OffsetOperandNo).getImm(); 539 else 540 Offset += MI.getOperand(OffsetOperandNo).getImm() << 2; 541 542 // If we're not using a Frame Pointer that has been set to the value of the 543 // SP before having the stack size subtracted from it, then add the stack size 544 // to Offset to get the correct offset. 545 // Naked functions have stack size 0, although getStackSize may not reflect that 546 // because we didn't call all the pieces that compute it for naked functions. 547 if (!MF.getFunction()->getAttributes(). 548 hasAttribute(AttributeSet::FunctionIndex, Attribute::Naked)) 549 Offset += MFI->getStackSize(); 550 551 // If we can, encode the offset directly into the instruction. If this is a 552 // normal PPC "ri" instruction, any 16-bit value can be safely encoded. If 553 // this is a PPC64 "ix" instruction, only a 16-bit value with the low two bits 554 // clear can be encoded. This is extremely uncommon, because normally you 555 // only "std" to a stack slot that is at least 4-byte aligned, but it can 556 // happen in invalid code. 557 if (OpC == PPC::DBG_VALUE || // DBG_VALUE is always Reg+Imm 558 (!noImmForm && 559 isInt<16>(Offset) && (!isIXAddr || (Offset & 3) == 0))) { 560 if (isIXAddr) 561 Offset >>= 2; // The actual encoded value has the low two bits zero. 562 MI.getOperand(OffsetOperandNo).ChangeToImmediate(Offset); 563 return; 564 } 565 566 // The offset doesn't fit into a single register, scavenge one to build the 567 // offset in. 568 569 const TargetRegisterClass *G8RC = &PPC::G8RCRegClass; 570 const TargetRegisterClass *GPRC = &PPC::GPRCRegClass; 571 const TargetRegisterClass *RC = is64Bit ? G8RC : GPRC; 572 unsigned SRegHi = MF.getRegInfo().createVirtualRegister(RC), 573 SReg = MF.getRegInfo().createVirtualRegister(RC); 574 575 // Insert a set of rA with the full offset value before the ld, st, or add 576 BuildMI(MBB, II, dl, TII.get(is64Bit ? PPC::LIS8 : PPC::LIS), SRegHi) 577 .addImm(Offset >> 16); 578 BuildMI(MBB, II, dl, TII.get(is64Bit ? PPC::ORI8 : PPC::ORI), SReg) 579 .addReg(SRegHi, RegState::Kill) 580 .addImm(Offset); 581 582 // Convert into indexed form of the instruction: 583 // 584 // sth 0:rA, 1:imm 2:(rB) ==> sthx 0:rA, 2:rB, 1:r0 585 // addi 0:rA 1:rB, 2, imm ==> add 0:rA, 1:rB, 2:r0 586 unsigned OperandBase; 587 588 if (noImmForm) 589 OperandBase = 1; 590 else if (OpC != TargetOpcode::INLINEASM) { 591 assert(ImmToIdxMap.count(OpC) && 592 "No indexed form of load or store available!"); 593 unsigned NewOpcode = ImmToIdxMap.find(OpC)->second; 594 MI.setDesc(TII.get(NewOpcode)); 595 OperandBase = 1; 596 } else { 597 OperandBase = OffsetOperandNo; 598 } 599 600 unsigned StackReg = MI.getOperand(FIOperandNum).getReg(); 601 MI.getOperand(OperandBase).ChangeToRegister(StackReg, false); 602 MI.getOperand(OperandBase + 1).ChangeToRegister(SReg, false, false, true); 603 } 604 605 unsigned PPCRegisterInfo::getFrameRegister(const MachineFunction &MF) const { 606 const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering(); 607 608 if (!Subtarget.isPPC64()) 609 return TFI->hasFP(MF) ? PPC::R31 : PPC::R1; 610 else 611 return TFI->hasFP(MF) ? PPC::X31 : PPC::X1; 612 } 613 614 unsigned PPCRegisterInfo::getEHExceptionRegister() const { 615 return !Subtarget.isPPC64() ? PPC::R3 : PPC::X3; 616 } 617 618 unsigned PPCRegisterInfo::getEHHandlerRegister() const { 619 return !Subtarget.isPPC64() ? PPC::R4 : PPC::X4; 620 } 621