ARMFrameLowering.cpp revision 4f28c1c71450c711e96aa283de53739d8b4504cd
1//=======- ARMFrameLowering.cpp - ARM Frame Information --------*- C++ -*-====// 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 ARM implementation of TargetFrameLowering class. 11// 12//===----------------------------------------------------------------------===// 13 14#include "ARMFrameLowering.h" 15#include "ARMAddressingModes.h" 16#include "ARMBaseInstrInfo.h" 17#include "ARMBaseRegisterInfo.h" 18#include "ARMMachineFunctionInfo.h" 19#include "llvm/CodeGen/MachineFrameInfo.h" 20#include "llvm/CodeGen/MachineFunction.h" 21#include "llvm/CodeGen/MachineInstrBuilder.h" 22#include "llvm/CodeGen/MachineRegisterInfo.h" 23#include "llvm/CodeGen/RegisterScavenging.h" 24#include "llvm/Target/TargetOptions.h" 25 26using namespace llvm; 27 28/// hasFP - Return true if the specified function should have a dedicated frame 29/// pointer register. This is true if the function has variable sized allocas 30/// or if frame pointer elimination is disabled. 31bool ARMFrameLowering::hasFP(const MachineFunction &MF) const { 32 const TargetRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo(); 33 34 // Mac OS X requires FP not to be clobbered for backtracing purpose. 35 if (STI.isTargetDarwin()) 36 return true; 37 38 const MachineFrameInfo *MFI = MF.getFrameInfo(); 39 // Always eliminate non-leaf frame pointers. 40 return ((DisableFramePointerElim(MF) && MFI->hasCalls()) || 41 RegInfo->needsStackRealignment(MF) || 42 MFI->hasVarSizedObjects() || 43 MFI->isFrameAddressTaken()); 44} 45 46/// hasReservedCallFrame - Under normal circumstances, when a frame pointer is 47/// not required, we reserve argument space for call sites in the function 48/// immediately on entry to the current function. This eliminates the need for 49/// add/sub sp brackets around call sites. Returns true if the call frame is 50/// included as part of the stack frame. 51bool ARMFrameLowering::hasReservedCallFrame(const MachineFunction &MF) const { 52 const MachineFrameInfo *FFI = MF.getFrameInfo(); 53 unsigned CFSize = FFI->getMaxCallFrameSize(); 54 // It's not always a good idea to include the call frame as part of the 55 // stack frame. ARM (especially Thumb) has small immediate offset to 56 // address the stack frame. So a large call frame can cause poor codegen 57 // and may even makes it impossible to scavenge a register. 58 if (CFSize >= ((1 << 12) - 1) / 2) // Half of imm12 59 return false; 60 61 return !MF.getFrameInfo()->hasVarSizedObjects(); 62} 63 64/// canSimplifyCallFramePseudos - If there is a reserved call frame, the 65/// call frame pseudos can be simplified. Unlike most targets, having a FP 66/// is not sufficient here since we still may reference some objects via SP 67/// even when FP is available in Thumb2 mode. 68bool 69ARMFrameLowering::canSimplifyCallFramePseudos(const MachineFunction &MF) const { 70 return hasReservedCallFrame(MF) || MF.getFrameInfo()->hasVarSizedObjects(); 71} 72 73static bool isCalleeSavedRegister(unsigned Reg, const unsigned *CSRegs) { 74 for (unsigned i = 0; CSRegs[i]; ++i) 75 if (Reg == CSRegs[i]) 76 return true; 77 return false; 78} 79 80static bool isCSRestore(MachineInstr *MI, 81 const ARMBaseInstrInfo &TII, 82 const unsigned *CSRegs) { 83 // Integer spill area is handled with "pop". 84 if (MI->getOpcode() == ARM::LDMIA_RET || 85 MI->getOpcode() == ARM::t2LDMIA_RET || 86 MI->getOpcode() == ARM::LDMIA_UPD || 87 MI->getOpcode() == ARM::t2LDMIA_UPD || 88 MI->getOpcode() == ARM::VLDMDIA_UPD) { 89 // The first two operands are predicates. The last two are 90 // imp-def and imp-use of SP. Check everything in between. 91 for (int i = 5, e = MI->getNumOperands(); i != e; ++i) 92 if (!isCalleeSavedRegister(MI->getOperand(i).getReg(), CSRegs)) 93 return false; 94 return true; 95 } 96 if ((MI->getOpcode() == ARM::LDR_POST || 97 MI->getOpcode() == ARM::t2LDR_POST) && 98 isCalleeSavedRegister(MI->getOperand(0).getReg(), CSRegs) && 99 MI->getOperand(1).getReg() == ARM::SP) 100 return true; 101 102 return false; 103} 104 105static void 106emitSPUpdate(bool isARM, 107 MachineBasicBlock &MBB, MachineBasicBlock::iterator &MBBI, 108 DebugLoc dl, const ARMBaseInstrInfo &TII, 109 int NumBytes, 110 ARMCC::CondCodes Pred = ARMCC::AL, unsigned PredReg = 0) { 111 if (isARM) 112 emitARMRegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes, 113 Pred, PredReg, TII); 114 else 115 emitT2RegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes, 116 Pred, PredReg, TII); 117} 118 119void ARMFrameLowering::emitPrologue(MachineFunction &MF) const { 120 MachineBasicBlock &MBB = MF.front(); 121 MachineBasicBlock::iterator MBBI = MBB.begin(); 122 MachineFrameInfo *MFI = MF.getFrameInfo(); 123 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 124 const ARMBaseRegisterInfo *RegInfo = 125 static_cast<const ARMBaseRegisterInfo*>(MF.getTarget().getRegisterInfo()); 126 const ARMBaseInstrInfo &TII = 127 *static_cast<const ARMBaseInstrInfo*>(MF.getTarget().getInstrInfo()); 128 assert(!AFI->isThumb1OnlyFunction() && 129 "This emitPrologue does not support Thumb1!"); 130 bool isARM = !AFI->isThumbFunction(); 131 unsigned VARegSaveSize = AFI->getVarArgsRegSaveSize(); 132 unsigned NumBytes = MFI->getStackSize(); 133 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo(); 134 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); 135 unsigned FramePtr = RegInfo->getFrameRegister(MF); 136 137 // Determine the sizes of each callee-save spill areas and record which frame 138 // belongs to which callee-save spill areas. 139 unsigned GPRCS1Size = 0, GPRCS2Size = 0, DPRCSSize = 0; 140 int FramePtrSpillFI = 0; 141 142 // Allocate the vararg register save area. This is not counted in NumBytes. 143 if (VARegSaveSize) 144 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -VARegSaveSize); 145 146 if (!AFI->hasStackFrame()) { 147 if (NumBytes != 0) 148 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -NumBytes); 149 return; 150 } 151 152 for (unsigned i = 0, e = CSI.size(); i != e; ++i) { 153 unsigned Reg = CSI[i].getReg(); 154 int FI = CSI[i].getFrameIdx(); 155 switch (Reg) { 156 case ARM::R4: 157 case ARM::R5: 158 case ARM::R6: 159 case ARM::R7: 160 case ARM::LR: 161 if (Reg == FramePtr) 162 FramePtrSpillFI = FI; 163 AFI->addGPRCalleeSavedArea1Frame(FI); 164 GPRCS1Size += 4; 165 break; 166 case ARM::R8: 167 case ARM::R9: 168 case ARM::R10: 169 case ARM::R11: 170 if (Reg == FramePtr) 171 FramePtrSpillFI = FI; 172 if (STI.isTargetDarwin()) { 173 AFI->addGPRCalleeSavedArea2Frame(FI); 174 GPRCS2Size += 4; 175 } else { 176 AFI->addGPRCalleeSavedArea1Frame(FI); 177 GPRCS1Size += 4; 178 } 179 break; 180 default: 181 AFI->addDPRCalleeSavedAreaFrame(FI); 182 DPRCSSize += 8; 183 } 184 } 185 186 // Move past area 1. 187 if (GPRCS1Size > 0) MBBI++; 188 189 // Set FP to point to the stack slot that contains the previous FP. 190 // For Darwin, FP is R7, which has now been stored in spill area 1. 191 // Otherwise, if this is not Darwin, all the callee-saved registers go 192 // into spill area 1, including the FP in R11. In either case, it is 193 // now safe to emit this assignment. 194 bool HasFP = hasFP(MF); 195 if (HasFP) { 196 unsigned ADDriOpc = !AFI->isThumbFunction() ? ARM::ADDri : ARM::t2ADDri; 197 MachineInstrBuilder MIB = 198 BuildMI(MBB, MBBI, dl, TII.get(ADDriOpc), FramePtr) 199 .addFrameIndex(FramePtrSpillFI).addImm(0); 200 AddDefaultCC(AddDefaultPred(MIB)); 201 } 202 203 // Move past area 2. 204 if (GPRCS2Size > 0) MBBI++; 205 206 // Determine starting offsets of spill areas. 207 unsigned DPRCSOffset = NumBytes - (GPRCS1Size + GPRCS2Size + DPRCSSize); 208 unsigned GPRCS2Offset = DPRCSOffset + DPRCSSize; 209 unsigned GPRCS1Offset = GPRCS2Offset + GPRCS2Size; 210 if (HasFP) 211 AFI->setFramePtrSpillOffset(MFI->getObjectOffset(FramePtrSpillFI) + 212 NumBytes); 213 AFI->setGPRCalleeSavedArea1Offset(GPRCS1Offset); 214 AFI->setGPRCalleeSavedArea2Offset(GPRCS2Offset); 215 AFI->setDPRCalleeSavedAreaOffset(DPRCSOffset); 216 217 // Move past area 3. 218 if (DPRCSSize > 0) MBBI++; 219 220 NumBytes = DPRCSOffset; 221 if (NumBytes) { 222 // Adjust SP after all the callee-save spills. 223 emitSPUpdate(isARM, MBB, MBBI, dl, TII, -NumBytes); 224 if (HasFP && isARM) 225 // Restore from fp only in ARM mode: e.g. sub sp, r7, #24 226 // Note it's not safe to do this in Thumb2 mode because it would have 227 // taken two instructions: 228 // mov sp, r7 229 // sub sp, #24 230 // If an interrupt is taken between the two instructions, then sp is in 231 // an inconsistent state (pointing to the middle of callee-saved area). 232 // The interrupt handler can end up clobbering the registers. 233 AFI->setShouldRestoreSPFromFP(true); 234 } 235 236 if (STI.isTargetELF() && hasFP(MF)) 237 MFI->setOffsetAdjustment(MFI->getOffsetAdjustment() - 238 AFI->getFramePtrSpillOffset()); 239 240 AFI->setGPRCalleeSavedArea1Size(GPRCS1Size); 241 AFI->setGPRCalleeSavedArea2Size(GPRCS2Size); 242 AFI->setDPRCalleeSavedAreaSize(DPRCSSize); 243 244 // If we need dynamic stack realignment, do it here. Be paranoid and make 245 // sure if we also have VLAs, we have a base pointer for frame access. 246 if (RegInfo->needsStackRealignment(MF)) { 247 unsigned MaxAlign = MFI->getMaxAlignment(); 248 assert (!AFI->isThumb1OnlyFunction()); 249 if (!AFI->isThumbFunction()) { 250 // Emit bic sp, sp, MaxAlign 251 AddDefaultCC(AddDefaultPred(BuildMI(MBB, MBBI, dl, 252 TII.get(ARM::BICri), ARM::SP) 253 .addReg(ARM::SP, RegState::Kill) 254 .addImm(MaxAlign-1))); 255 } else { 256 // We cannot use sp as source/dest register here, thus we're emitting the 257 // following sequence: 258 // mov r4, sp 259 // bic r4, r4, MaxAlign 260 // mov sp, r4 261 // FIXME: It will be better just to find spare register here. 262 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVgpr2tgpr), ARM::R4) 263 .addReg(ARM::SP, RegState::Kill); 264 AddDefaultCC(AddDefaultPred(BuildMI(MBB, MBBI, dl, 265 TII.get(ARM::t2BICri), ARM::R4) 266 .addReg(ARM::R4, RegState::Kill) 267 .addImm(MaxAlign-1))); 268 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVtgpr2gpr), ARM::SP) 269 .addReg(ARM::R4, RegState::Kill); 270 } 271 272 AFI->setShouldRestoreSPFromFP(true); 273 } 274 275 // If we need a base pointer, set it up here. It's whatever the value 276 // of the stack pointer is at this point. Any variable size objects 277 // will be allocated after this, so we can still use the base pointer 278 // to reference locals. 279 if (RegInfo->hasBasePointer(MF)) { 280 if (isARM) 281 BuildMI(MBB, MBBI, dl, 282 TII.get(ARM::MOVr), RegInfo->getBaseRegister()) 283 .addReg(ARM::SP) 284 .addImm((unsigned)ARMCC::AL).addReg(0).addReg(0); 285 else 286 BuildMI(MBB, MBBI, dl, 287 TII.get(ARM::tMOVgpr2gpr), RegInfo->getBaseRegister()) 288 .addReg(ARM::SP); 289 } 290 291 // If the frame has variable sized objects then the epilogue must restore 292 // the sp from fp. We can assume there's an FP here since hasFP already 293 // checks for hasVarSizedObjects. 294 if (MFI->hasVarSizedObjects()) 295 AFI->setShouldRestoreSPFromFP(true); 296} 297 298void ARMFrameLowering::emitEpilogue(MachineFunction &MF, 299 MachineBasicBlock &MBB) const { 300 MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr(); 301 assert(MBBI->getDesc().isReturn() && 302 "Can only insert epilog into returning blocks"); 303 unsigned RetOpcode = MBBI->getOpcode(); 304 DebugLoc dl = MBBI->getDebugLoc(); 305 MachineFrameInfo *MFI = MF.getFrameInfo(); 306 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 307 const TargetRegisterInfo *RegInfo = MF.getTarget().getRegisterInfo(); 308 const ARMBaseInstrInfo &TII = 309 *static_cast<const ARMBaseInstrInfo*>(MF.getTarget().getInstrInfo()); 310 assert(!AFI->isThumb1OnlyFunction() && 311 "This emitEpilogue does not support Thumb1!"); 312 bool isARM = !AFI->isThumbFunction(); 313 314 unsigned VARegSaveSize = AFI->getVarArgsRegSaveSize(); 315 int NumBytes = (int)MFI->getStackSize(); 316 unsigned FramePtr = RegInfo->getFrameRegister(MF); 317 318 if (!AFI->hasStackFrame()) { 319 if (NumBytes != 0) 320 emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes); 321 } else { 322 // Unwind MBBI to point to first LDR / VLDRD. 323 const unsigned *CSRegs = RegInfo->getCalleeSavedRegs(); 324 if (MBBI != MBB.begin()) { 325 do 326 --MBBI; 327 while (MBBI != MBB.begin() && isCSRestore(MBBI, TII, CSRegs)); 328 if (!isCSRestore(MBBI, TII, CSRegs)) 329 ++MBBI; 330 } 331 332 // Move SP to start of FP callee save spill area. 333 NumBytes -= (AFI->getGPRCalleeSavedArea1Size() + 334 AFI->getGPRCalleeSavedArea2Size() + 335 AFI->getDPRCalleeSavedAreaSize()); 336 337 // Reset SP based on frame pointer only if the stack frame extends beyond 338 // frame pointer stack slot or target is ELF and the function has FP. 339 if (AFI->shouldRestoreSPFromFP()) { 340 NumBytes = AFI->getFramePtrSpillOffset() - NumBytes; 341 if (NumBytes) { 342 if (isARM) 343 emitARMRegPlusImmediate(MBB, MBBI, dl, ARM::SP, FramePtr, -NumBytes, 344 ARMCC::AL, 0, TII); 345 else { 346 // It's not possible to restore SP from FP in a single instruction. 347 // For Darwin, this looks like: 348 // mov sp, r7 349 // sub sp, #24 350 // This is bad, if an interrupt is taken after the mov, sp is in an 351 // inconsistent state. 352 // Use the first callee-saved register as a scratch register. 353 assert(MF.getRegInfo().isPhysRegUsed(ARM::R4) && 354 "No scratch register to restore SP from FP!"); 355 emitT2RegPlusImmediate(MBB, MBBI, dl, ARM::R4, FramePtr, -NumBytes, 356 ARMCC::AL, 0, TII); 357 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVgpr2gpr), ARM::SP) 358 .addReg(ARM::R4); 359 } 360 } else { 361 // Thumb2 or ARM. 362 if (isARM) 363 BuildMI(MBB, MBBI, dl, TII.get(ARM::MOVr), ARM::SP) 364 .addReg(FramePtr).addImm((unsigned)ARMCC::AL).addReg(0).addReg(0); 365 else 366 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVgpr2gpr), ARM::SP) 367 .addReg(FramePtr); 368 } 369 } else if (NumBytes) 370 emitSPUpdate(isARM, MBB, MBBI, dl, TII, NumBytes); 371 372 // Increment past our save areas. 373 if (AFI->getDPRCalleeSavedAreaSize()) MBBI++; 374 if (AFI->getGPRCalleeSavedArea2Size()) MBBI++; 375 if (AFI->getGPRCalleeSavedArea1Size()) MBBI++; 376 } 377 378 if (RetOpcode == ARM::TCRETURNdi || RetOpcode == ARM::TCRETURNdiND || 379 RetOpcode == ARM::TCRETURNri || RetOpcode == ARM::TCRETURNriND) { 380 // Tail call return: adjust the stack pointer and jump to callee. 381 MBBI = MBB.getLastNonDebugInstr(); 382 MachineOperand &JumpTarget = MBBI->getOperand(0); 383 384 // Jump to label or value in register. 385 if (RetOpcode == ARM::TCRETURNdi || RetOpcode == ARM::TCRETURNdiND) { 386 unsigned TCOpcode = (RetOpcode == ARM::TCRETURNdi) 387 ? (STI.isThumb() ? ARM::TAILJMPdt : ARM::TAILJMPd) 388 : (STI.isThumb() ? ARM::TAILJMPdNDt : ARM::TAILJMPdND); 389 MachineInstrBuilder MIB = BuildMI(MBB, MBBI, dl, TII.get(TCOpcode)); 390 if (JumpTarget.isGlobal()) 391 MIB.addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset(), 392 JumpTarget.getTargetFlags()); 393 else { 394 assert(JumpTarget.isSymbol()); 395 MIB.addExternalSymbol(JumpTarget.getSymbolName(), 396 JumpTarget.getTargetFlags()); 397 } 398 } else if (RetOpcode == ARM::TCRETURNri) { 399 BuildMI(MBB, MBBI, dl, TII.get(ARM::TAILJMPr)). 400 addReg(JumpTarget.getReg(), RegState::Kill); 401 } else if (RetOpcode == ARM::TCRETURNriND) { 402 BuildMI(MBB, MBBI, dl, TII.get(ARM::TAILJMPrND)). 403 addReg(JumpTarget.getReg(), RegState::Kill); 404 } 405 406 MachineInstr *NewMI = prior(MBBI); 407 for (unsigned i = 1, e = MBBI->getNumOperands(); i != e; ++i) 408 NewMI->addOperand(MBBI->getOperand(i)); 409 410 // Delete the pseudo instruction TCRETURN. 411 MBB.erase(MBBI); 412 } 413 414 if (VARegSaveSize) 415 emitSPUpdate(isARM, MBB, MBBI, dl, TII, VARegSaveSize); 416} 417 418/// getFrameIndexReference - Provide a base+offset reference to an FI slot for 419/// debug info. It's the same as what we use for resolving the code-gen 420/// references for now. FIXME: This can go wrong when references are 421/// SP-relative and simple call frames aren't used. 422int 423ARMFrameLowering::getFrameIndexReference(const MachineFunction &MF, int FI, 424 unsigned &FrameReg) const { 425 return ResolveFrameIndexReference(MF, FI, FrameReg, 0); 426} 427 428int 429ARMFrameLowering::ResolveFrameIndexReference(const MachineFunction &MF, 430 int FI, 431 unsigned &FrameReg, 432 int SPAdj) const { 433 const MachineFrameInfo *MFI = MF.getFrameInfo(); 434 const ARMBaseRegisterInfo *RegInfo = 435 static_cast<const ARMBaseRegisterInfo*>(MF.getTarget().getRegisterInfo()); 436 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 437 int Offset = MFI->getObjectOffset(FI) + MFI->getStackSize(); 438 int FPOffset = Offset - AFI->getFramePtrSpillOffset(); 439 bool isFixed = MFI->isFixedObjectIndex(FI); 440 441 FrameReg = ARM::SP; 442 Offset += SPAdj; 443 if (AFI->isGPRCalleeSavedArea1Frame(FI)) 444 return Offset - AFI->getGPRCalleeSavedArea1Offset(); 445 else if (AFI->isGPRCalleeSavedArea2Frame(FI)) 446 return Offset - AFI->getGPRCalleeSavedArea2Offset(); 447 else if (AFI->isDPRCalleeSavedAreaFrame(FI)) 448 return Offset - AFI->getDPRCalleeSavedAreaOffset(); 449 450 // When dynamically realigning the stack, use the frame pointer for 451 // parameters, and the stack/base pointer for locals. 452 if (RegInfo->needsStackRealignment(MF)) { 453 assert (hasFP(MF) && "dynamic stack realignment without a FP!"); 454 if (isFixed) { 455 FrameReg = RegInfo->getFrameRegister(MF); 456 Offset = FPOffset; 457 } else if (MFI->hasVarSizedObjects()) { 458 assert(RegInfo->hasBasePointer(MF) && 459 "VLAs and dynamic stack alignment, but missing base pointer!"); 460 FrameReg = RegInfo->getBaseRegister(); 461 } 462 return Offset; 463 } 464 465 // If there is a frame pointer, use it when we can. 466 if (hasFP(MF) && AFI->hasStackFrame()) { 467 // Use frame pointer to reference fixed objects. Use it for locals if 468 // there are VLAs (and thus the SP isn't reliable as a base). 469 if (isFixed || (MFI->hasVarSizedObjects() && 470 !RegInfo->hasBasePointer(MF))) { 471 FrameReg = RegInfo->getFrameRegister(MF); 472 return FPOffset; 473 } else if (MFI->hasVarSizedObjects()) { 474 assert(RegInfo->hasBasePointer(MF) && "missing base pointer!"); 475 // Try to use the frame pointer if we can, else use the base pointer 476 // since it's available. This is handy for the emergency spill slot, in 477 // particular. 478 if (AFI->isThumb2Function()) { 479 if (FPOffset >= -255 && FPOffset < 0) { 480 FrameReg = RegInfo->getFrameRegister(MF); 481 return FPOffset; 482 } 483 } else 484 FrameReg = RegInfo->getBaseRegister(); 485 } else if (AFI->isThumb2Function()) { 486 // In Thumb2 mode, the negative offset is very limited. Try to avoid 487 // out of range references. 488 if (FPOffset >= -255 && FPOffset < 0) { 489 FrameReg = RegInfo->getFrameRegister(MF); 490 return FPOffset; 491 } 492 } else if (Offset > (FPOffset < 0 ? -FPOffset : FPOffset)) { 493 // Otherwise, use SP or FP, whichever is closer to the stack slot. 494 FrameReg = RegInfo->getFrameRegister(MF); 495 return FPOffset; 496 } 497 } 498 // Use the base pointer if we have one. 499 if (RegInfo->hasBasePointer(MF)) 500 FrameReg = RegInfo->getBaseRegister(); 501 return Offset; 502} 503 504int ARMFrameLowering::getFrameIndexOffset(const MachineFunction &MF, 505 int FI) const { 506 unsigned FrameReg; 507 return getFrameIndexReference(MF, FI, FrameReg); 508} 509 510void ARMFrameLowering::emitPushInst(MachineBasicBlock &MBB, 511 MachineBasicBlock::iterator MI, 512 const std::vector<CalleeSavedInfo> &CSI, 513 unsigned StmOpc, unsigned StrOpc, 514 bool NoGap, 515 bool(*Func)(unsigned, bool)) const { 516 MachineFunction &MF = *MBB.getParent(); 517 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo(); 518 519 DebugLoc DL; 520 if (MI != MBB.end()) DL = MI->getDebugLoc(); 521 522 SmallVector<std::pair<unsigned,bool>, 4> Regs; 523 unsigned i = CSI.size(); 524 while (i != 0) { 525 unsigned LastReg = 0; 526 for (; i != 0; --i) { 527 unsigned Reg = CSI[i-1].getReg(); 528 if (!(Func)(Reg, STI.isTargetDarwin())) continue; 529 530 // Add the callee-saved register as live-in unless it's LR and 531 // @llvm.returnaddress is called. If LR is returned for 532 // @llvm.returnaddress then it's already added to the function and 533 // entry block live-in sets. 534 bool isKill = true; 535 if (Reg == ARM::LR) { 536 if (MF.getFrameInfo()->isReturnAddressTaken() && 537 MF.getRegInfo().isLiveIn(Reg)) 538 isKill = false; 539 } 540 541 if (isKill) 542 MBB.addLiveIn(Reg); 543 544 // If NoGap is true, push consecutive registers and then leave the rest 545 // for other instructions. e.g. 546 // vpush {d8, d10, d11} -> vpush {d8}, vpush {d10, d11} 547 if (NoGap && LastReg && LastReg != Reg-1) 548 break; 549 LastReg = Reg; 550 Regs.push_back(std::make_pair(Reg, isKill)); 551 } 552 553 if (Regs.empty()) 554 continue; 555 if (Regs.size() > 1 || StrOpc== 0) { 556 MachineInstrBuilder MIB = 557 AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(StmOpc), ARM::SP) 558 .addReg(ARM::SP)); 559 for (unsigned i = 0, e = Regs.size(); i < e; ++i) 560 MIB.addReg(Regs[i].first, getKillRegState(Regs[i].second)); 561 } else if (Regs.size() == 1) { 562 MachineInstrBuilder MIB = BuildMI(MBB, MI, DL, TII.get(StrOpc), 563 ARM::SP) 564 .addReg(Regs[0].first, getKillRegState(Regs[0].second)) 565 .addReg(ARM::SP); 566 // ARM mode needs an extra reg0 here due to addrmode2. Will go away once 567 // that refactoring is complete (eventually). 568 if (StrOpc == ARM::STR_PRE) { 569 MIB.addReg(0); 570 MIB.addImm(ARM_AM::getAM2Opc(ARM_AM::sub, 4, ARM_AM::no_shift)); 571 } else 572 MIB.addImm(-4); 573 AddDefaultPred(MIB); 574 } 575 Regs.clear(); 576 } 577} 578 579void ARMFrameLowering::emitPopInst(MachineBasicBlock &MBB, 580 MachineBasicBlock::iterator MI, 581 const std::vector<CalleeSavedInfo> &CSI, 582 unsigned LdmOpc, unsigned LdrOpc, 583 bool isVarArg, bool NoGap, 584 bool(*Func)(unsigned, bool)) const { 585 MachineFunction &MF = *MBB.getParent(); 586 const TargetInstrInfo &TII = *MF.getTarget().getInstrInfo(); 587 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 588 DebugLoc DL = MI->getDebugLoc(); 589 590 SmallVector<unsigned, 4> Regs; 591 unsigned i = CSI.size(); 592 while (i != 0) { 593 unsigned LastReg = 0; 594 bool DeleteRet = false; 595 for (; i != 0; --i) { 596 unsigned Reg = CSI[i-1].getReg(); 597 if (!(Func)(Reg, STI.isTargetDarwin())) continue; 598 599 if (Reg == ARM::LR && !isVarArg && STI.hasV5TOps()) { 600 Reg = ARM::PC; 601 LdmOpc = AFI->isThumbFunction() ? ARM::t2LDMIA_RET : ARM::LDMIA_RET; 602 // Fold the return instruction into the LDM. 603 DeleteRet = true; 604 } 605 606 // If NoGap is true, pop consecutive registers and then leave the rest 607 // for other instructions. e.g. 608 // vpop {d8, d10, d11} -> vpop {d8}, vpop {d10, d11} 609 if (NoGap && LastReg && LastReg != Reg-1) 610 break; 611 612 LastReg = Reg; 613 Regs.push_back(Reg); 614 } 615 616 if (Regs.empty()) 617 continue; 618 if (Regs.size() > 1 || LdrOpc == 0) { 619 MachineInstrBuilder MIB = 620 AddDefaultPred(BuildMI(MBB, MI, DL, TII.get(LdmOpc), ARM::SP) 621 .addReg(ARM::SP)); 622 for (unsigned i = 0, e = Regs.size(); i < e; ++i) 623 MIB.addReg(Regs[i], getDefRegState(true)); 624 if (DeleteRet) 625 MI->eraseFromParent(); 626 MI = MIB; 627 } else if (Regs.size() == 1) { 628 // If we adjusted the reg to PC from LR above, switch it back here. We 629 // only do that for LDM. 630 if (Regs[0] == ARM::PC) 631 Regs[0] = ARM::LR; 632 MachineInstrBuilder MIB = 633 BuildMI(MBB, MI, DL, TII.get(LdrOpc), Regs[0]) 634 .addReg(ARM::SP, RegState::Define) 635 .addReg(ARM::SP); 636 // ARM mode needs an extra reg0 here due to addrmode2. Will go away once 637 // that refactoring is complete (eventually). 638 if (LdrOpc == ARM::LDR_POST) { 639 MIB.addReg(0); 640 MIB.addImm(ARM_AM::getAM2Opc(ARM_AM::add, 4, ARM_AM::no_shift)); 641 } else 642 MIB.addImm(4); 643 AddDefaultPred(MIB); 644 } 645 Regs.clear(); 646 } 647} 648 649bool ARMFrameLowering::spillCalleeSavedRegisters(MachineBasicBlock &MBB, 650 MachineBasicBlock::iterator MI, 651 const std::vector<CalleeSavedInfo> &CSI, 652 const TargetRegisterInfo *TRI) const { 653 if (CSI.empty()) 654 return false; 655 656 MachineFunction &MF = *MBB.getParent(); 657 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 658 DebugLoc DL = MI->getDebugLoc(); 659 660 unsigned PushOpc = AFI->isThumbFunction() ? ARM::t2STMDB_UPD : ARM::STMDB_UPD; 661 unsigned PushOneOpc = AFI->isThumbFunction() ? ARM::t2STR_PRE : ARM::STR_PRE; 662 unsigned FltOpc = ARM::VSTMDDB_UPD; 663 emitPushInst(MBB, MI, CSI, PushOpc, PushOneOpc, false, &isARMArea1Register); 664 emitPushInst(MBB, MI, CSI, PushOpc, PushOneOpc, false, &isARMArea2Register); 665 emitPushInst(MBB, MI, CSI, FltOpc, 0, true, &isARMArea3Register); 666 667 return true; 668} 669 670bool ARMFrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB, 671 MachineBasicBlock::iterator MI, 672 const std::vector<CalleeSavedInfo> &CSI, 673 const TargetRegisterInfo *TRI) const { 674 if (CSI.empty()) 675 return false; 676 677 MachineFunction &MF = *MBB.getParent(); 678 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 679 bool isVarArg = AFI->getVarArgsRegSaveSize() > 0; 680 DebugLoc DL = MI->getDebugLoc(); 681 682 unsigned PopOpc = AFI->isThumbFunction() ? ARM::t2LDMIA_UPD : ARM::LDMIA_UPD; 683 unsigned LdrOpc = AFI->isThumbFunction() ? ARM::t2LDR_POST : ARM::LDR_POST; 684 unsigned FltOpc = ARM::VLDMDIA_UPD; 685 emitPopInst(MBB, MI, CSI, FltOpc, 0, isVarArg, true, &isARMArea3Register); 686 emitPopInst(MBB, MI, CSI, PopOpc, LdrOpc, isVarArg, false, 687 &isARMArea2Register); 688 emitPopInst(MBB, MI, CSI, PopOpc, LdrOpc, isVarArg, false, 689 &isARMArea1Register); 690 691 return true; 692} 693 694// FIXME: Make generic? 695static unsigned GetFunctionSizeInBytes(const MachineFunction &MF, 696 const ARMBaseInstrInfo &TII) { 697 unsigned FnSize = 0; 698 for (MachineFunction::const_iterator MBBI = MF.begin(), E = MF.end(); 699 MBBI != E; ++MBBI) { 700 const MachineBasicBlock &MBB = *MBBI; 701 for (MachineBasicBlock::const_iterator I = MBB.begin(),E = MBB.end(); 702 I != E; ++I) 703 FnSize += TII.GetInstSizeInBytes(I); 704 } 705 return FnSize; 706} 707 708/// estimateStackSize - Estimate and return the size of the frame. 709/// FIXME: Make generic? 710static unsigned estimateStackSize(MachineFunction &MF) { 711 const MachineFrameInfo *FFI = MF.getFrameInfo(); 712 int Offset = 0; 713 for (int i = FFI->getObjectIndexBegin(); i != 0; ++i) { 714 int FixedOff = -FFI->getObjectOffset(i); 715 if (FixedOff > Offset) Offset = FixedOff; 716 } 717 for (unsigned i = 0, e = FFI->getObjectIndexEnd(); i != e; ++i) { 718 if (FFI->isDeadObjectIndex(i)) 719 continue; 720 Offset += FFI->getObjectSize(i); 721 unsigned Align = FFI->getObjectAlignment(i); 722 // Adjust to alignment boundary 723 Offset = (Offset+Align-1)/Align*Align; 724 } 725 return (unsigned)Offset; 726} 727 728/// estimateRSStackSizeLimit - Look at each instruction that references stack 729/// frames and return the stack size limit beyond which some of these 730/// instructions will require a scratch register during their expansion later. 731// FIXME: Move to TII? 732static unsigned estimateRSStackSizeLimit(MachineFunction &MF, 733 const TargetFrameLowering *TFI) { 734 const ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 735 unsigned Limit = (1 << 12) - 1; 736 for (MachineFunction::iterator BB = MF.begin(),E = MF.end(); BB != E; ++BB) { 737 for (MachineBasicBlock::iterator I = BB->begin(), E = BB->end(); 738 I != E; ++I) { 739 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { 740 if (!I->getOperand(i).isFI()) continue; 741 742 // When using ADDri to get the address of a stack object, 255 is the 743 // largest offset guaranteed to fit in the immediate offset. 744 if (I->getOpcode() == ARM::ADDri) { 745 Limit = std::min(Limit, (1U << 8) - 1); 746 break; 747 } 748 749 // Otherwise check the addressing mode. 750 switch (I->getDesc().TSFlags & ARMII::AddrModeMask) { 751 case ARMII::AddrMode3: 752 case ARMII::AddrModeT2_i8: 753 Limit = std::min(Limit, (1U << 8) - 1); 754 break; 755 case ARMII::AddrMode5: 756 case ARMII::AddrModeT2_i8s4: 757 Limit = std::min(Limit, ((1U << 8) - 1) * 4); 758 break; 759 case ARMII::AddrModeT2_i12: 760 // i12 supports only positive offset so these will be converted to 761 // i8 opcodes. See llvm::rewriteT2FrameIndex. 762 if (TFI->hasFP(MF) && AFI->hasStackFrame()) 763 Limit = std::min(Limit, (1U << 8) - 1); 764 break; 765 case ARMII::AddrMode4: 766 case ARMII::AddrMode6: 767 // Addressing modes 4 & 6 (load/store) instructions can't encode an 768 // immediate offset for stack references. 769 return 0; 770 default: 771 break; 772 } 773 break; // At most one FI per instruction 774 } 775 } 776 } 777 778 return Limit; 779} 780 781void 782ARMFrameLowering::processFunctionBeforeCalleeSavedScan(MachineFunction &MF, 783 RegScavenger *RS) const { 784 // This tells PEI to spill the FP as if it is any other callee-save register 785 // to take advantage the eliminateFrameIndex machinery. This also ensures it 786 // is spilled in the order specified by getCalleeSavedRegs() to make it easier 787 // to combine multiple loads / stores. 788 bool CanEliminateFrame = true; 789 bool CS1Spilled = false; 790 bool LRSpilled = false; 791 unsigned NumGPRSpills = 0; 792 SmallVector<unsigned, 4> UnspilledCS1GPRs; 793 SmallVector<unsigned, 4> UnspilledCS2GPRs; 794 const ARMBaseRegisterInfo *RegInfo = 795 static_cast<const ARMBaseRegisterInfo*>(MF.getTarget().getRegisterInfo()); 796 const ARMBaseInstrInfo &TII = 797 *static_cast<const ARMBaseInstrInfo*>(MF.getTarget().getInstrInfo()); 798 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 799 MachineFrameInfo *MFI = MF.getFrameInfo(); 800 unsigned FramePtr = RegInfo->getFrameRegister(MF); 801 802 // Spill R4 if Thumb2 function requires stack realignment - it will be used as 803 // scratch register. Also spill R4 if Thumb2 function has varsized objects, 804 // since it's always posible to restore sp from fp in a single instruction. 805 // FIXME: It will be better just to find spare register here. 806 if (AFI->isThumb2Function() && 807 (MFI->hasVarSizedObjects() || RegInfo->needsStackRealignment(MF))) 808 MF.getRegInfo().setPhysRegUsed(ARM::R4); 809 810 // Spill LR if Thumb1 function uses variable length argument lists. 811 if (AFI->isThumb1OnlyFunction() && AFI->getVarArgsRegSaveSize() > 0) 812 MF.getRegInfo().setPhysRegUsed(ARM::LR); 813 814 // Spill the BasePtr if it's used. 815 if (RegInfo->hasBasePointer(MF)) 816 MF.getRegInfo().setPhysRegUsed(RegInfo->getBaseRegister()); 817 818 // Don't spill FP if the frame can be eliminated. This is determined 819 // by scanning the callee-save registers to see if any is used. 820 const unsigned *CSRegs = RegInfo->getCalleeSavedRegs(); 821 for (unsigned i = 0; CSRegs[i]; ++i) { 822 unsigned Reg = CSRegs[i]; 823 bool Spilled = false; 824 if (MF.getRegInfo().isPhysRegUsed(Reg)) { 825 AFI->setCSRegisterIsSpilled(Reg); 826 Spilled = true; 827 CanEliminateFrame = false; 828 } else { 829 // Check alias registers too. 830 for (const unsigned *Aliases = 831 RegInfo->getAliasSet(Reg); *Aliases; ++Aliases) { 832 if (MF.getRegInfo().isPhysRegUsed(*Aliases)) { 833 Spilled = true; 834 CanEliminateFrame = false; 835 } 836 } 837 } 838 839 if (!ARM::GPRRegisterClass->contains(Reg)) 840 continue; 841 842 if (Spilled) { 843 NumGPRSpills++; 844 845 if (!STI.isTargetDarwin()) { 846 if (Reg == ARM::LR) 847 LRSpilled = true; 848 CS1Spilled = true; 849 continue; 850 } 851 852 // Keep track if LR and any of R4, R5, R6, and R7 is spilled. 853 switch (Reg) { 854 case ARM::LR: 855 LRSpilled = true; 856 // Fallthrough 857 case ARM::R4: case ARM::R5: 858 case ARM::R6: case ARM::R7: 859 CS1Spilled = true; 860 break; 861 default: 862 break; 863 } 864 } else { 865 if (!STI.isTargetDarwin()) { 866 UnspilledCS1GPRs.push_back(Reg); 867 continue; 868 } 869 870 switch (Reg) { 871 case ARM::R4: case ARM::R5: 872 case ARM::R6: case ARM::R7: 873 case ARM::LR: 874 UnspilledCS1GPRs.push_back(Reg); 875 break; 876 default: 877 UnspilledCS2GPRs.push_back(Reg); 878 break; 879 } 880 } 881 } 882 883 bool ForceLRSpill = false; 884 if (!LRSpilled && AFI->isThumb1OnlyFunction()) { 885 unsigned FnSize = GetFunctionSizeInBytes(MF, TII); 886 // Force LR to be spilled if the Thumb function size is > 2048. This enables 887 // use of BL to implement far jump. If it turns out that it's not needed 888 // then the branch fix up path will undo it. 889 if (FnSize >= (1 << 11)) { 890 CanEliminateFrame = false; 891 ForceLRSpill = true; 892 } 893 } 894 895 // If any of the stack slot references may be out of range of an immediate 896 // offset, make sure a register (or a spill slot) is available for the 897 // register scavenger. Note that if we're indexing off the frame pointer, the 898 // effective stack size is 4 bytes larger since the FP points to the stack 899 // slot of the previous FP. Also, if we have variable sized objects in the 900 // function, stack slot references will often be negative, and some of 901 // our instructions are positive-offset only, so conservatively consider 902 // that case to want a spill slot (or register) as well. Similarly, if 903 // the function adjusts the stack pointer during execution and the 904 // adjustments aren't already part of our stack size estimate, our offset 905 // calculations may be off, so be conservative. 906 // FIXME: We could add logic to be more precise about negative offsets 907 // and which instructions will need a scratch register for them. Is it 908 // worth the effort and added fragility? 909 bool BigStack = 910 (RS && 911 (estimateStackSize(MF) + ((hasFP(MF) && AFI->hasStackFrame()) ? 4:0) >= 912 estimateRSStackSizeLimit(MF, this))) 913 || MFI->hasVarSizedObjects() 914 || (MFI->adjustsStack() && !canSimplifyCallFramePseudos(MF)); 915 916 bool ExtraCSSpill = false; 917 if (BigStack || !CanEliminateFrame || RegInfo->cannotEliminateFrame(MF)) { 918 AFI->setHasStackFrame(true); 919 920 // If LR is not spilled, but at least one of R4, R5, R6, and R7 is spilled. 921 // Spill LR as well so we can fold BX_RET to the registers restore (LDM). 922 if (!LRSpilled && CS1Spilled) { 923 MF.getRegInfo().setPhysRegUsed(ARM::LR); 924 AFI->setCSRegisterIsSpilled(ARM::LR); 925 NumGPRSpills++; 926 UnspilledCS1GPRs.erase(std::find(UnspilledCS1GPRs.begin(), 927 UnspilledCS1GPRs.end(), (unsigned)ARM::LR)); 928 ForceLRSpill = false; 929 ExtraCSSpill = true; 930 } 931 932 if (hasFP(MF)) { 933 MF.getRegInfo().setPhysRegUsed(FramePtr); 934 NumGPRSpills++; 935 } 936 937 // If stack and double are 8-byte aligned and we are spilling an odd number 938 // of GPRs, spill one extra callee save GPR so we won't have to pad between 939 // the integer and double callee save areas. 940 unsigned TargetAlign = getStackAlignment(); 941 if (TargetAlign == 8 && (NumGPRSpills & 1)) { 942 if (CS1Spilled && !UnspilledCS1GPRs.empty()) { 943 for (unsigned i = 0, e = UnspilledCS1GPRs.size(); i != e; ++i) { 944 unsigned Reg = UnspilledCS1GPRs[i]; 945 // Don't spill high register if the function is thumb1 946 if (!AFI->isThumb1OnlyFunction() || 947 isARMLowRegister(Reg) || Reg == ARM::LR) { 948 MF.getRegInfo().setPhysRegUsed(Reg); 949 AFI->setCSRegisterIsSpilled(Reg); 950 if (!RegInfo->isReservedReg(MF, Reg)) 951 ExtraCSSpill = true; 952 break; 953 } 954 } 955 } else if (!UnspilledCS2GPRs.empty() && !AFI->isThumb1OnlyFunction()) { 956 unsigned Reg = UnspilledCS2GPRs.front(); 957 MF.getRegInfo().setPhysRegUsed(Reg); 958 AFI->setCSRegisterIsSpilled(Reg); 959 if (!RegInfo->isReservedReg(MF, Reg)) 960 ExtraCSSpill = true; 961 } 962 } 963 964 // Estimate if we might need to scavenge a register at some point in order 965 // to materialize a stack offset. If so, either spill one additional 966 // callee-saved register or reserve a special spill slot to facilitate 967 // register scavenging. Thumb1 needs a spill slot for stack pointer 968 // adjustments also, even when the frame itself is small. 969 if (BigStack && !ExtraCSSpill) { 970 // If any non-reserved CS register isn't spilled, just spill one or two 971 // extra. That should take care of it! 972 unsigned NumExtras = TargetAlign / 4; 973 SmallVector<unsigned, 2> Extras; 974 while (NumExtras && !UnspilledCS1GPRs.empty()) { 975 unsigned Reg = UnspilledCS1GPRs.back(); 976 UnspilledCS1GPRs.pop_back(); 977 if (!RegInfo->isReservedReg(MF, Reg) && 978 (!AFI->isThumb1OnlyFunction() || isARMLowRegister(Reg) || 979 Reg == ARM::LR)) { 980 Extras.push_back(Reg); 981 NumExtras--; 982 } 983 } 984 // For non-Thumb1 functions, also check for hi-reg CS registers 985 if (!AFI->isThumb1OnlyFunction()) { 986 while (NumExtras && !UnspilledCS2GPRs.empty()) { 987 unsigned Reg = UnspilledCS2GPRs.back(); 988 UnspilledCS2GPRs.pop_back(); 989 if (!RegInfo->isReservedReg(MF, Reg)) { 990 Extras.push_back(Reg); 991 NumExtras--; 992 } 993 } 994 } 995 if (Extras.size() && NumExtras == 0) { 996 for (unsigned i = 0, e = Extras.size(); i != e; ++i) { 997 MF.getRegInfo().setPhysRegUsed(Extras[i]); 998 AFI->setCSRegisterIsSpilled(Extras[i]); 999 } 1000 } else if (!AFI->isThumb1OnlyFunction()) { 1001 // note: Thumb1 functions spill to R12, not the stack. Reserve a slot 1002 // closest to SP or frame pointer. 1003 const TargetRegisterClass *RC = ARM::GPRRegisterClass; 1004 RS->setScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(), 1005 RC->getAlignment(), 1006 false)); 1007 } 1008 } 1009 } 1010 1011 if (ForceLRSpill) { 1012 MF.getRegInfo().setPhysRegUsed(ARM::LR); 1013 AFI->setCSRegisterIsSpilled(ARM::LR); 1014 AFI->setLRIsSpilledForFarJump(true); 1015 } 1016} 1017