1 //===- Thumb1FrameLowering.cpp - Thumb1 Frame 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 Thumb1 implementation of TargetFrameLowering class. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "Thumb1FrameLowering.h" 15 #include "ARMBaseInstrInfo.h" 16 #include "ARMBaseRegisterInfo.h" 17 #include "ARMMachineFunctionInfo.h" 18 #include "ARMSubtarget.h" 19 #include "Thumb1InstrInfo.h" 20 #include "ThumbRegisterInfo.h" 21 #include "Utils/ARMBaseInfo.h" 22 #include "llvm/ADT/BitVector.h" 23 #include "llvm/ADT/STLExtras.h" 24 #include "llvm/ADT/SmallVector.h" 25 #include "llvm/CodeGen/LivePhysRegs.h" 26 #include "llvm/CodeGen/MachineBasicBlock.h" 27 #include "llvm/CodeGen/MachineFrameInfo.h" 28 #include "llvm/CodeGen/MachineFunction.h" 29 #include "llvm/CodeGen/MachineInstr.h" 30 #include "llvm/CodeGen/MachineInstrBuilder.h" 31 #include "llvm/CodeGen/MachineModuleInfo.h" 32 #include "llvm/CodeGen/MachineOperand.h" 33 #include "llvm/CodeGen/MachineRegisterInfo.h" 34 #include "llvm/CodeGen/TargetInstrInfo.h" 35 #include "llvm/IR/DebugLoc.h" 36 #include "llvm/MC/MCContext.h" 37 #include "llvm/MC/MCDwarf.h" 38 #include "llvm/MC/MCRegisterInfo.h" 39 #include "llvm/Support/Compiler.h" 40 #include "llvm/Support/ErrorHandling.h" 41 #include "llvm/Support/MathExtras.h" 42 #include "llvm/Target/TargetOpcodes.h" 43 #include "llvm/Target/TargetSubtargetInfo.h" 44 #include <bitset> 45 #include <cassert> 46 #include <iterator> 47 #include <vector> 48 49 using namespace llvm; 50 51 Thumb1FrameLowering::Thumb1FrameLowering(const ARMSubtarget &sti) 52 : ARMFrameLowering(sti) {} 53 54 bool Thumb1FrameLowering::hasReservedCallFrame(const MachineFunction &MF) const{ 55 const MachineFrameInfo &MFI = MF.getFrameInfo(); 56 unsigned CFSize = MFI.getMaxCallFrameSize(); 57 // It's not always a good idea to include the call frame as part of the 58 // stack frame. ARM (especially Thumb) has small immediate offset to 59 // address the stack frame. So a large call frame can cause poor codegen 60 // and may even makes it impossible to scavenge a register. 61 if (CFSize >= ((1 << 8) - 1) * 4 / 2) // Half of imm8 * 4 62 return false; 63 64 return !MFI.hasVarSizedObjects(); 65 } 66 67 static void emitSPUpdate(MachineBasicBlock &MBB, 68 MachineBasicBlock::iterator &MBBI, 69 const TargetInstrInfo &TII, const DebugLoc &dl, 70 const ThumbRegisterInfo &MRI, int NumBytes, 71 unsigned MIFlags = MachineInstr::NoFlags) { 72 emitThumbRegPlusImmediate(MBB, MBBI, dl, ARM::SP, ARM::SP, NumBytes, TII, 73 MRI, MIFlags); 74 } 75 76 MachineBasicBlock::iterator Thumb1FrameLowering:: 77 eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB, 78 MachineBasicBlock::iterator I) const { 79 const Thumb1InstrInfo &TII = 80 *static_cast<const Thumb1InstrInfo *>(STI.getInstrInfo()); 81 const ThumbRegisterInfo *RegInfo = 82 static_cast<const ThumbRegisterInfo *>(STI.getRegisterInfo()); 83 if (!hasReservedCallFrame(MF)) { 84 // If we have alloca, convert as follows: 85 // ADJCALLSTACKDOWN -> sub, sp, sp, amount 86 // ADJCALLSTACKUP -> add, sp, sp, amount 87 MachineInstr &Old = *I; 88 DebugLoc dl = Old.getDebugLoc(); 89 unsigned Amount = TII.getFrameSize(Old); 90 if (Amount != 0) { 91 // We need to keep the stack aligned properly. To do this, we round the 92 // amount of space needed for the outgoing arguments up to the next 93 // alignment boundary. 94 Amount = alignTo(Amount, getStackAlignment()); 95 96 // Replace the pseudo instruction with a new instruction... 97 unsigned Opc = Old.getOpcode(); 98 if (Opc == ARM::ADJCALLSTACKDOWN || Opc == ARM::tADJCALLSTACKDOWN) { 99 emitSPUpdate(MBB, I, TII, dl, *RegInfo, -Amount); 100 } else { 101 assert(Opc == ARM::ADJCALLSTACKUP || Opc == ARM::tADJCALLSTACKUP); 102 emitSPUpdate(MBB, I, TII, dl, *RegInfo, Amount); 103 } 104 } 105 } 106 return MBB.erase(I); 107 } 108 109 void Thumb1FrameLowering::emitPrologue(MachineFunction &MF, 110 MachineBasicBlock &MBB) const { 111 MachineBasicBlock::iterator MBBI = MBB.begin(); 112 MachineFrameInfo &MFI = MF.getFrameInfo(); 113 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 114 MachineModuleInfo &MMI = MF.getMMI(); 115 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo(); 116 const ThumbRegisterInfo *RegInfo = 117 static_cast<const ThumbRegisterInfo *>(STI.getRegisterInfo()); 118 const Thumb1InstrInfo &TII = 119 *static_cast<const Thumb1InstrInfo *>(STI.getInstrInfo()); 120 121 unsigned ArgRegsSaveSize = AFI->getArgRegsSaveSize(); 122 unsigned NumBytes = MFI.getStackSize(); 123 assert(NumBytes >= ArgRegsSaveSize && 124 "ArgRegsSaveSize is included in NumBytes"); 125 const std::vector<CalleeSavedInfo> &CSI = MFI.getCalleeSavedInfo(); 126 127 // Debug location must be unknown since the first debug location is used 128 // to determine the end of the prologue. 129 DebugLoc dl; 130 131 unsigned FramePtr = RegInfo->getFrameRegister(MF); 132 unsigned BasePtr = RegInfo->getBaseRegister(); 133 int CFAOffset = 0; 134 135 // Thumb add/sub sp, imm8 instructions implicitly multiply the offset by 4. 136 NumBytes = (NumBytes + 3) & ~3; 137 MFI.setStackSize(NumBytes); 138 139 // Determine the sizes of each callee-save spill areas and record which frame 140 // belongs to which callee-save spill areas. 141 unsigned GPRCS1Size = 0, GPRCS2Size = 0, DPRCSSize = 0; 142 int FramePtrSpillFI = 0; 143 144 if (ArgRegsSaveSize) { 145 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, -ArgRegsSaveSize, 146 MachineInstr::FrameSetup); 147 CFAOffset -= ArgRegsSaveSize; 148 unsigned CFIIndex = MF.addFrameInst( 149 MCCFIInstruction::createDefCfaOffset(nullptr, CFAOffset)); 150 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION)) 151 .addCFIIndex(CFIIndex) 152 .setMIFlags(MachineInstr::FrameSetup); 153 } 154 155 if (!AFI->hasStackFrame()) { 156 if (NumBytes - ArgRegsSaveSize != 0) { 157 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, -(NumBytes - ArgRegsSaveSize), 158 MachineInstr::FrameSetup); 159 CFAOffset -= NumBytes - ArgRegsSaveSize; 160 unsigned CFIIndex = MF.addFrameInst( 161 MCCFIInstruction::createDefCfaOffset(nullptr, CFAOffset)); 162 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION)) 163 .addCFIIndex(CFIIndex) 164 .setMIFlags(MachineInstr::FrameSetup); 165 } 166 return; 167 } 168 169 for (unsigned i = 0, e = CSI.size(); i != e; ++i) { 170 unsigned Reg = CSI[i].getReg(); 171 int FI = CSI[i].getFrameIdx(); 172 switch (Reg) { 173 case ARM::R8: 174 case ARM::R9: 175 case ARM::R10: 176 case ARM::R11: 177 if (STI.splitFramePushPop(MF)) { 178 GPRCS2Size += 4; 179 break; 180 } 181 LLVM_FALLTHROUGH; 182 case ARM::R4: 183 case ARM::R5: 184 case ARM::R6: 185 case ARM::R7: 186 case ARM::LR: 187 if (Reg == FramePtr) 188 FramePtrSpillFI = FI; 189 GPRCS1Size += 4; 190 break; 191 default: 192 DPRCSSize += 8; 193 } 194 } 195 196 if (MBBI != MBB.end() && MBBI->getOpcode() == ARM::tPUSH) { 197 ++MBBI; 198 } 199 200 // Determine starting offsets of spill areas. 201 unsigned DPRCSOffset = NumBytes - ArgRegsSaveSize - (GPRCS1Size + GPRCS2Size + DPRCSSize); 202 unsigned GPRCS2Offset = DPRCSOffset + DPRCSSize; 203 unsigned GPRCS1Offset = GPRCS2Offset + GPRCS2Size; 204 bool HasFP = hasFP(MF); 205 if (HasFP) 206 AFI->setFramePtrSpillOffset(MFI.getObjectOffset(FramePtrSpillFI) + 207 NumBytes); 208 AFI->setGPRCalleeSavedArea1Offset(GPRCS1Offset); 209 AFI->setGPRCalleeSavedArea2Offset(GPRCS2Offset); 210 AFI->setDPRCalleeSavedAreaOffset(DPRCSOffset); 211 NumBytes = DPRCSOffset; 212 213 int FramePtrOffsetInBlock = 0; 214 unsigned adjustedGPRCS1Size = GPRCS1Size; 215 if (GPRCS1Size > 0 && GPRCS2Size == 0 && 216 tryFoldSPUpdateIntoPushPop(STI, MF, &*std::prev(MBBI), NumBytes)) { 217 FramePtrOffsetInBlock = NumBytes; 218 adjustedGPRCS1Size += NumBytes; 219 NumBytes = 0; 220 } 221 222 if (adjustedGPRCS1Size) { 223 CFAOffset -= adjustedGPRCS1Size; 224 unsigned CFIIndex = MF.addFrameInst( 225 MCCFIInstruction::createDefCfaOffset(nullptr, CFAOffset)); 226 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION)) 227 .addCFIIndex(CFIIndex) 228 .setMIFlags(MachineInstr::FrameSetup); 229 } 230 for (std::vector<CalleeSavedInfo>::const_iterator I = CSI.begin(), 231 E = CSI.end(); I != E; ++I) { 232 unsigned Reg = I->getReg(); 233 int FI = I->getFrameIdx(); 234 switch (Reg) { 235 case ARM::R8: 236 case ARM::R9: 237 case ARM::R10: 238 case ARM::R11: 239 case ARM::R12: 240 if (STI.splitFramePushPop(MF)) 241 break; 242 LLVM_FALLTHROUGH; 243 case ARM::R0: 244 case ARM::R1: 245 case ARM::R2: 246 case ARM::R3: 247 case ARM::R4: 248 case ARM::R5: 249 case ARM::R6: 250 case ARM::R7: 251 case ARM::LR: 252 unsigned CFIIndex = MF.addFrameInst(MCCFIInstruction::createOffset( 253 nullptr, MRI->getDwarfRegNum(Reg, true), MFI.getObjectOffset(FI))); 254 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION)) 255 .addCFIIndex(CFIIndex) 256 .setMIFlags(MachineInstr::FrameSetup); 257 break; 258 } 259 } 260 261 // Adjust FP so it point to the stack slot that contains the previous FP. 262 if (HasFP) { 263 FramePtrOffsetInBlock += 264 MFI.getObjectOffset(FramePtrSpillFI) + GPRCS1Size + ArgRegsSaveSize; 265 BuildMI(MBB, MBBI, dl, TII.get(ARM::tADDrSPi), FramePtr) 266 .addReg(ARM::SP) 267 .addImm(FramePtrOffsetInBlock / 4) 268 .setMIFlags(MachineInstr::FrameSetup) 269 .add(predOps(ARMCC::AL)); 270 if(FramePtrOffsetInBlock) { 271 CFAOffset += FramePtrOffsetInBlock; 272 unsigned CFIIndex = MF.addFrameInst(MCCFIInstruction::createDefCfa( 273 nullptr, MRI->getDwarfRegNum(FramePtr, true), CFAOffset)); 274 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION)) 275 .addCFIIndex(CFIIndex) 276 .setMIFlags(MachineInstr::FrameSetup); 277 } else { 278 unsigned CFIIndex = 279 MF.addFrameInst(MCCFIInstruction::createDefCfaRegister( 280 nullptr, MRI->getDwarfRegNum(FramePtr, true))); 281 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION)) 282 .addCFIIndex(CFIIndex) 283 .setMIFlags(MachineInstr::FrameSetup); 284 } 285 if (NumBytes > 508) 286 // If offset is > 508 then sp cannot be adjusted in a single instruction, 287 // try restoring from fp instead. 288 AFI->setShouldRestoreSPFromFP(true); 289 } 290 291 // Skip past the spilling of r8-r11, which could consist of multiple tPUSH 292 // and tMOVr instructions. We don't need to add any call frame information 293 // in-between these instructions, because they do not modify the high 294 // registers. 295 while (true) { 296 MachineBasicBlock::iterator OldMBBI = MBBI; 297 // Skip a run of tMOVr instructions 298 while (MBBI != MBB.end() && MBBI->getOpcode() == ARM::tMOVr) 299 MBBI++; 300 if (MBBI != MBB.end() && MBBI->getOpcode() == ARM::tPUSH) { 301 MBBI++; 302 } else { 303 // We have reached an instruction which is not a push, so the previous 304 // run of tMOVr instructions (which may have been empty) was not part of 305 // the prologue. Reset MBBI back to the last PUSH of the prologue. 306 MBBI = OldMBBI; 307 break; 308 } 309 } 310 311 // Emit call frame information for the callee-saved high registers. 312 for (auto &I : CSI) { 313 unsigned Reg = I.getReg(); 314 int FI = I.getFrameIdx(); 315 switch (Reg) { 316 case ARM::R8: 317 case ARM::R9: 318 case ARM::R10: 319 case ARM::R11: 320 case ARM::R12: { 321 unsigned CFIIndex = MF.addFrameInst(MCCFIInstruction::createOffset( 322 nullptr, MRI->getDwarfRegNum(Reg, true), MFI.getObjectOffset(FI))); 323 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION)) 324 .addCFIIndex(CFIIndex) 325 .setMIFlags(MachineInstr::FrameSetup); 326 break; 327 } 328 default: 329 break; 330 } 331 } 332 333 if (NumBytes) { 334 // Insert it after all the callee-save spills. 335 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, -NumBytes, 336 MachineInstr::FrameSetup); 337 if (!HasFP) { 338 CFAOffset -= NumBytes; 339 unsigned CFIIndex = MF.addFrameInst( 340 MCCFIInstruction::createDefCfaOffset(nullptr, CFAOffset)); 341 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION)) 342 .addCFIIndex(CFIIndex) 343 .setMIFlags(MachineInstr::FrameSetup); 344 } 345 } 346 347 if (STI.isTargetELF() && HasFP) 348 MFI.setOffsetAdjustment(MFI.getOffsetAdjustment() - 349 AFI->getFramePtrSpillOffset()); 350 351 AFI->setGPRCalleeSavedArea1Size(GPRCS1Size); 352 AFI->setGPRCalleeSavedArea2Size(GPRCS2Size); 353 AFI->setDPRCalleeSavedAreaSize(DPRCSSize); 354 355 if (RegInfo->needsStackRealignment(MF)) { 356 const unsigned NrBitsToZero = countTrailingZeros(MFI.getMaxAlignment()); 357 // Emit the following sequence, using R4 as a temporary, since we cannot use 358 // SP as a source or destination register for the shifts: 359 // mov r4, sp 360 // lsrs r4, r4, #NrBitsToZero 361 // lsls r4, r4, #NrBitsToZero 362 // mov sp, r4 363 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), ARM::R4) 364 .addReg(ARM::SP, RegState::Kill) 365 .add(predOps(ARMCC::AL)); 366 367 BuildMI(MBB, MBBI, dl, TII.get(ARM::tLSRri), ARM::R4) 368 .addDef(ARM::CPSR) 369 .addReg(ARM::R4, RegState::Kill) 370 .addImm(NrBitsToZero) 371 .add(predOps(ARMCC::AL)); 372 373 BuildMI(MBB, MBBI, dl, TII.get(ARM::tLSLri), ARM::R4) 374 .addDef(ARM::CPSR) 375 .addReg(ARM::R4, RegState::Kill) 376 .addImm(NrBitsToZero) 377 .add(predOps(ARMCC::AL)); 378 379 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), ARM::SP) 380 .addReg(ARM::R4, RegState::Kill) 381 .add(predOps(ARMCC::AL)); 382 383 AFI->setShouldRestoreSPFromFP(true); 384 } 385 386 // If we need a base pointer, set it up here. It's whatever the value 387 // of the stack pointer is at this point. Any variable size objects 388 // will be allocated after this, so we can still use the base pointer 389 // to reference locals. 390 if (RegInfo->hasBasePointer(MF)) 391 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), BasePtr) 392 .addReg(ARM::SP) 393 .add(predOps(ARMCC::AL)); 394 395 // If the frame has variable sized objects then the epilogue must restore 396 // the sp from fp. We can assume there's an FP here since hasFP already 397 // checks for hasVarSizedObjects. 398 if (MFI.hasVarSizedObjects()) 399 AFI->setShouldRestoreSPFromFP(true); 400 401 // In some cases, virtual registers have been introduced, e.g. by uses of 402 // emitThumbRegPlusImmInReg. 403 MF.getProperties().reset(MachineFunctionProperties::Property::NoVRegs); 404 } 405 406 static bool isCSRestore(MachineInstr &MI, const MCPhysReg *CSRegs) { 407 if (MI.getOpcode() == ARM::tLDRspi && MI.getOperand(1).isFI() && 408 isCalleeSavedRegister(MI.getOperand(0).getReg(), CSRegs)) 409 return true; 410 else if (MI.getOpcode() == ARM::tPOP) { 411 return true; 412 } else if (MI.getOpcode() == ARM::tMOVr) { 413 unsigned Dst = MI.getOperand(0).getReg(); 414 unsigned Src = MI.getOperand(1).getReg(); 415 return ((ARM::tGPRRegClass.contains(Src) || Src == ARM::LR) && 416 ARM::hGPRRegClass.contains(Dst)); 417 } 418 return false; 419 } 420 421 void Thumb1FrameLowering::emitEpilogue(MachineFunction &MF, 422 MachineBasicBlock &MBB) const { 423 MachineBasicBlock::iterator MBBI = MBB.getFirstTerminator(); 424 DebugLoc dl = MBBI != MBB.end() ? MBBI->getDebugLoc() : DebugLoc(); 425 MachineFrameInfo &MFI = MF.getFrameInfo(); 426 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 427 const ThumbRegisterInfo *RegInfo = 428 static_cast<const ThumbRegisterInfo *>(STI.getRegisterInfo()); 429 const Thumb1InstrInfo &TII = 430 *static_cast<const Thumb1InstrInfo *>(STI.getInstrInfo()); 431 432 unsigned ArgRegsSaveSize = AFI->getArgRegsSaveSize(); 433 int NumBytes = (int)MFI.getStackSize(); 434 assert((unsigned)NumBytes >= ArgRegsSaveSize && 435 "ArgRegsSaveSize is included in NumBytes"); 436 const MCPhysReg *CSRegs = RegInfo->getCalleeSavedRegs(&MF); 437 unsigned FramePtr = RegInfo->getFrameRegister(MF); 438 439 if (!AFI->hasStackFrame()) { 440 if (NumBytes - ArgRegsSaveSize != 0) 441 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, NumBytes - ArgRegsSaveSize); 442 } else { 443 // Unwind MBBI to point to first LDR / VLDRD. 444 if (MBBI != MBB.begin()) { 445 do 446 --MBBI; 447 while (MBBI != MBB.begin() && isCSRestore(*MBBI, CSRegs)); 448 if (!isCSRestore(*MBBI, CSRegs)) 449 ++MBBI; 450 } 451 452 // Move SP to start of FP callee save spill area. 453 NumBytes -= (AFI->getGPRCalleeSavedArea1Size() + 454 AFI->getGPRCalleeSavedArea2Size() + 455 AFI->getDPRCalleeSavedAreaSize() + 456 ArgRegsSaveSize); 457 458 if (AFI->shouldRestoreSPFromFP()) { 459 NumBytes = AFI->getFramePtrSpillOffset() - NumBytes; 460 // Reset SP based on frame pointer only if the stack frame extends beyond 461 // frame pointer stack slot, the target is ELF and the function has FP, or 462 // the target uses var sized objects. 463 if (NumBytes) { 464 assert(!MFI.getPristineRegs(MF).test(ARM::R4) && 465 "No scratch register to restore SP from FP!"); 466 emitThumbRegPlusImmediate(MBB, MBBI, dl, ARM::R4, FramePtr, -NumBytes, 467 TII, *RegInfo); 468 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), ARM::SP) 469 .addReg(ARM::R4) 470 .add(predOps(ARMCC::AL)); 471 } else 472 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr), ARM::SP) 473 .addReg(FramePtr) 474 .add(predOps(ARMCC::AL)); 475 } else { 476 if (MBBI != MBB.end() && MBBI->getOpcode() == ARM::tBX_RET && 477 &MBB.front() != &*MBBI && std::prev(MBBI)->getOpcode() == ARM::tPOP) { 478 MachineBasicBlock::iterator PMBBI = std::prev(MBBI); 479 if (!tryFoldSPUpdateIntoPushPop(STI, MF, &*PMBBI, NumBytes)) 480 emitSPUpdate(MBB, PMBBI, TII, dl, *RegInfo, NumBytes); 481 } else if (!tryFoldSPUpdateIntoPushPop(STI, MF, &*MBBI, NumBytes)) 482 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, NumBytes); 483 } 484 } 485 486 if (needPopSpecialFixUp(MF)) { 487 bool Done = emitPopSpecialFixUp(MBB, /* DoIt */ true); 488 (void)Done; 489 assert(Done && "Emission of the special fixup failed!?"); 490 } 491 } 492 493 bool Thumb1FrameLowering::canUseAsEpilogue(const MachineBasicBlock &MBB) const { 494 if (!needPopSpecialFixUp(*MBB.getParent())) 495 return true; 496 497 MachineBasicBlock *TmpMBB = const_cast<MachineBasicBlock *>(&MBB); 498 return emitPopSpecialFixUp(*TmpMBB, /* DoIt */ false); 499 } 500 501 bool Thumb1FrameLowering::needPopSpecialFixUp(const MachineFunction &MF) const { 502 ARMFunctionInfo *AFI = 503 const_cast<MachineFunction *>(&MF)->getInfo<ARMFunctionInfo>(); 504 if (AFI->getArgRegsSaveSize()) 505 return true; 506 507 // LR cannot be encoded with Thumb1, i.e., it requires a special fix-up. 508 for (const CalleeSavedInfo &CSI : MF.getFrameInfo().getCalleeSavedInfo()) 509 if (CSI.getReg() == ARM::LR) 510 return true; 511 512 return false; 513 } 514 515 bool Thumb1FrameLowering::emitPopSpecialFixUp(MachineBasicBlock &MBB, 516 bool DoIt) const { 517 MachineFunction &MF = *MBB.getParent(); 518 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 519 unsigned ArgRegsSaveSize = AFI->getArgRegsSaveSize(); 520 const TargetInstrInfo &TII = *STI.getInstrInfo(); 521 const ThumbRegisterInfo *RegInfo = 522 static_cast<const ThumbRegisterInfo *>(STI.getRegisterInfo()); 523 524 // If MBBI is a return instruction, or is a tPOP followed by a return 525 // instruction in the successor BB, we may be able to directly restore 526 // LR in the PC. 527 // This is only possible with v5T ops (v4T can't change the Thumb bit via 528 // a POP PC instruction), and only if we do not need to emit any SP update. 529 // Otherwise, we need a temporary register to pop the value 530 // and copy that value into LR. 531 auto MBBI = MBB.getFirstTerminator(); 532 bool CanRestoreDirectly = STI.hasV5TOps() && !ArgRegsSaveSize; 533 if (CanRestoreDirectly) { 534 if (MBBI != MBB.end() && MBBI->getOpcode() != ARM::tB) 535 CanRestoreDirectly = (MBBI->getOpcode() == ARM::tBX_RET || 536 MBBI->getOpcode() == ARM::tPOP_RET); 537 else { 538 auto MBBI_prev = MBBI; 539 MBBI_prev--; 540 assert(MBBI_prev->getOpcode() == ARM::tPOP); 541 assert(MBB.succ_size() == 1); 542 if ((*MBB.succ_begin())->begin()->getOpcode() == ARM::tBX_RET) 543 MBBI = MBBI_prev; // Replace the final tPOP with a tPOP_RET. 544 else 545 CanRestoreDirectly = false; 546 } 547 } 548 549 if (CanRestoreDirectly) { 550 if (!DoIt || MBBI->getOpcode() == ARM::tPOP_RET) 551 return true; 552 MachineInstrBuilder MIB = 553 BuildMI(MBB, MBBI, MBBI->getDebugLoc(), TII.get(ARM::tPOP_RET)) 554 .add(predOps(ARMCC::AL)); 555 // Copy implicit ops and popped registers, if any. 556 for (auto MO: MBBI->operands()) 557 if (MO.isReg() && (MO.isImplicit() || MO.isDef())) 558 MIB.add(MO); 559 MIB.addReg(ARM::PC, RegState::Define); 560 // Erase the old instruction (tBX_RET or tPOP). 561 MBB.erase(MBBI); 562 return true; 563 } 564 565 // Look for a temporary register to use. 566 // First, compute the liveness information. 567 const TargetRegisterInfo &TRI = *STI.getRegisterInfo(); 568 LivePhysRegs UsedRegs(TRI); 569 UsedRegs.addLiveOuts(MBB); 570 // The semantic of pristines changed recently and now, 571 // the callee-saved registers that are touched in the function 572 // are not part of the pristines set anymore. 573 // Add those callee-saved now. 574 const MCPhysReg *CSRegs = TRI.getCalleeSavedRegs(&MF); 575 for (unsigned i = 0; CSRegs[i]; ++i) 576 UsedRegs.addReg(CSRegs[i]); 577 578 DebugLoc dl = DebugLoc(); 579 if (MBBI != MBB.end()) { 580 dl = MBBI->getDebugLoc(); 581 auto InstUpToMBBI = MBB.end(); 582 while (InstUpToMBBI != MBBI) 583 // The pre-decrement is on purpose here. 584 // We want to have the liveness right before MBBI. 585 UsedRegs.stepBackward(*--InstUpToMBBI); 586 } 587 588 // Look for a register that can be directly use in the POP. 589 unsigned PopReg = 0; 590 // And some temporary register, just in case. 591 unsigned TemporaryReg = 0; 592 BitVector PopFriendly = 593 TRI.getAllocatableSet(MF, TRI.getRegClass(ARM::tGPRRegClassID)); 594 assert(PopFriendly.any() && "No allocatable pop-friendly register?!"); 595 // Rebuild the GPRs from the high registers because they are removed 596 // form the GPR reg class for thumb1. 597 BitVector GPRsNoLRSP = 598 TRI.getAllocatableSet(MF, TRI.getRegClass(ARM::hGPRRegClassID)); 599 GPRsNoLRSP |= PopFriendly; 600 GPRsNoLRSP.reset(ARM::LR); 601 GPRsNoLRSP.reset(ARM::SP); 602 GPRsNoLRSP.reset(ARM::PC); 603 for (unsigned Register : GPRsNoLRSP.set_bits()) { 604 if (!UsedRegs.contains(Register)) { 605 // Remember the first pop-friendly register and exit. 606 if (PopFriendly.test(Register)) { 607 PopReg = Register; 608 TemporaryReg = 0; 609 break; 610 } 611 // Otherwise, remember that the register will be available to 612 // save a pop-friendly register. 613 TemporaryReg = Register; 614 } 615 } 616 617 if (!DoIt && !PopReg && !TemporaryReg) 618 return false; 619 620 assert((PopReg || TemporaryReg) && "Cannot get LR"); 621 622 if (TemporaryReg) { 623 assert(!PopReg && "Unnecessary MOV is about to be inserted"); 624 PopReg = PopFriendly.find_first(); 625 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr)) 626 .addReg(TemporaryReg, RegState::Define) 627 .addReg(PopReg, RegState::Kill) 628 .add(predOps(ARMCC::AL)); 629 } 630 631 if (MBBI != MBB.end() && MBBI->getOpcode() == ARM::tPOP_RET) { 632 // We couldn't use the direct restoration above, so 633 // perform the opposite conversion: tPOP_RET to tPOP. 634 MachineInstrBuilder MIB = 635 BuildMI(MBB, MBBI, MBBI->getDebugLoc(), TII.get(ARM::tPOP)) 636 .add(predOps(ARMCC::AL)); 637 bool Popped = false; 638 for (auto MO: MBBI->operands()) 639 if (MO.isReg() && (MO.isImplicit() || MO.isDef()) && 640 MO.getReg() != ARM::PC) { 641 MIB.add(MO); 642 if (!MO.isImplicit()) 643 Popped = true; 644 } 645 // Is there anything left to pop? 646 if (!Popped) 647 MBB.erase(MIB.getInstr()); 648 // Erase the old instruction. 649 MBB.erase(MBBI); 650 MBBI = BuildMI(MBB, MBB.end(), dl, TII.get(ARM::tBX_RET)) 651 .add(predOps(ARMCC::AL)); 652 } 653 654 assert(PopReg && "Do not know how to get LR"); 655 BuildMI(MBB, MBBI, dl, TII.get(ARM::tPOP)) 656 .add(predOps(ARMCC::AL)) 657 .addReg(PopReg, RegState::Define); 658 659 emitSPUpdate(MBB, MBBI, TII, dl, *RegInfo, ArgRegsSaveSize); 660 661 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr)) 662 .addReg(ARM::LR, RegState::Define) 663 .addReg(PopReg, RegState::Kill) 664 .add(predOps(ARMCC::AL)); 665 666 if (TemporaryReg) 667 BuildMI(MBB, MBBI, dl, TII.get(ARM::tMOVr)) 668 .addReg(PopReg, RegState::Define) 669 .addReg(TemporaryReg, RegState::Kill) 670 .add(predOps(ARMCC::AL)); 671 672 return true; 673 } 674 675 using ARMRegSet = std::bitset<ARM::NUM_TARGET_REGS>; 676 677 // Return the first iteraror after CurrentReg which is present in EnabledRegs, 678 // or OrderEnd if no further registers are in that set. This does not advance 679 // the iterator fiorst, so returns CurrentReg if it is in EnabledRegs. 680 static const unsigned *findNextOrderedReg(const unsigned *CurrentReg, 681 const ARMRegSet &EnabledRegs, 682 const unsigned *OrderEnd) { 683 while (CurrentReg != OrderEnd && !EnabledRegs[*CurrentReg]) 684 ++CurrentReg; 685 return CurrentReg; 686 } 687 688 bool Thumb1FrameLowering:: 689 spillCalleeSavedRegisters(MachineBasicBlock &MBB, 690 MachineBasicBlock::iterator MI, 691 const std::vector<CalleeSavedInfo> &CSI, 692 const TargetRegisterInfo *TRI) const { 693 if (CSI.empty()) 694 return false; 695 696 DebugLoc DL; 697 const TargetInstrInfo &TII = *STI.getInstrInfo(); 698 MachineFunction &MF = *MBB.getParent(); 699 const ARMBaseRegisterInfo *RegInfo = static_cast<const ARMBaseRegisterInfo *>( 700 MF.getSubtarget().getRegisterInfo()); 701 702 ARMRegSet LoRegsToSave; // r0-r7, lr 703 ARMRegSet HiRegsToSave; // r8-r11 704 ARMRegSet CopyRegs; // Registers which can be used after pushing 705 // LoRegs for saving HiRegs. 706 707 for (unsigned i = CSI.size(); i != 0; --i) { 708 unsigned Reg = CSI[i-1].getReg(); 709 710 if (ARM::tGPRRegClass.contains(Reg) || Reg == ARM::LR) { 711 LoRegsToSave[Reg] = true; 712 } else if (ARM::hGPRRegClass.contains(Reg) && Reg != ARM::LR) { 713 HiRegsToSave[Reg] = true; 714 } else { 715 llvm_unreachable("callee-saved register of unexpected class"); 716 } 717 718 if ((ARM::tGPRRegClass.contains(Reg) || Reg == ARM::LR) && 719 !MF.getRegInfo().isLiveIn(Reg) && 720 !(hasFP(MF) && Reg == RegInfo->getFrameRegister(MF))) 721 CopyRegs[Reg] = true; 722 } 723 724 // Unused argument registers can be used for the high register saving. 725 for (unsigned ArgReg : {ARM::R0, ARM::R1, ARM::R2, ARM::R3}) 726 if (!MF.getRegInfo().isLiveIn(ArgReg)) 727 CopyRegs[ArgReg] = true; 728 729 // Push the low registers and lr 730 const MachineRegisterInfo &MRI = MF.getRegInfo(); 731 if (!LoRegsToSave.none()) { 732 MachineInstrBuilder MIB = 733 BuildMI(MBB, MI, DL, TII.get(ARM::tPUSH)).add(predOps(ARMCC::AL)); 734 for (unsigned Reg : {ARM::R4, ARM::R5, ARM::R6, ARM::R7, ARM::LR}) { 735 if (LoRegsToSave[Reg]) { 736 bool isKill = !MRI.isLiveIn(Reg); 737 if (isKill && !MRI.isReserved(Reg)) 738 MBB.addLiveIn(Reg); 739 740 MIB.addReg(Reg, getKillRegState(isKill)); 741 } 742 } 743 MIB.setMIFlags(MachineInstr::FrameSetup); 744 } 745 746 // Push the high registers. There are no store instructions that can access 747 // these registers directly, so we have to move them to low registers, and 748 // push them. This might take multiple pushes, as it is possible for there to 749 // be fewer low registers available than high registers which need saving. 750 751 // These are in reverse order so that in the case where we need to use 752 // multiple PUSH instructions, the order of the registers on the stack still 753 // matches the unwind info. They need to be swicthed back to ascending order 754 // before adding to the PUSH instruction. 755 static const unsigned AllCopyRegs[] = {ARM::LR, ARM::R7, ARM::R6, 756 ARM::R5, ARM::R4, ARM::R3, 757 ARM::R2, ARM::R1, ARM::R0}; 758 static const unsigned AllHighRegs[] = {ARM::R11, ARM::R10, ARM::R9, ARM::R8}; 759 760 const unsigned *AllCopyRegsEnd = std::end(AllCopyRegs); 761 const unsigned *AllHighRegsEnd = std::end(AllHighRegs); 762 763 // Find the first register to save. 764 const unsigned *HiRegToSave = findNextOrderedReg( 765 std::begin(AllHighRegs), HiRegsToSave, AllHighRegsEnd); 766 767 while (HiRegToSave != AllHighRegsEnd) { 768 // Find the first low register to use. 769 const unsigned *CopyReg = 770 findNextOrderedReg(std::begin(AllCopyRegs), CopyRegs, AllCopyRegsEnd); 771 772 // Create the PUSH, but don't insert it yet (the MOVs need to come first). 773 MachineInstrBuilder PushMIB = 774 BuildMI(MF, DL, TII.get(ARM::tPUSH)).add(predOps(ARMCC::AL)); 775 776 SmallVector<unsigned, 4> RegsToPush; 777 while (HiRegToSave != AllHighRegsEnd && CopyReg != AllCopyRegsEnd) { 778 if (HiRegsToSave[*HiRegToSave]) { 779 bool isKill = !MRI.isLiveIn(*HiRegToSave); 780 if (isKill && !MRI.isReserved(*HiRegToSave)) 781 MBB.addLiveIn(*HiRegToSave); 782 783 // Emit a MOV from the high reg to the low reg. 784 BuildMI(MBB, MI, DL, TII.get(ARM::tMOVr)) 785 .addReg(*CopyReg, RegState::Define) 786 .addReg(*HiRegToSave, getKillRegState(isKill)) 787 .add(predOps(ARMCC::AL)); 788 789 // Record the register that must be added to the PUSH. 790 RegsToPush.push_back(*CopyReg); 791 792 CopyReg = findNextOrderedReg(++CopyReg, CopyRegs, AllCopyRegsEnd); 793 HiRegToSave = 794 findNextOrderedReg(++HiRegToSave, HiRegsToSave, AllHighRegsEnd); 795 } 796 } 797 798 // Add the low registers to the PUSH, in ascending order. 799 for (unsigned Reg : llvm::reverse(RegsToPush)) 800 PushMIB.addReg(Reg, RegState::Kill); 801 802 // Insert the PUSH instruction after the MOVs. 803 MBB.insert(MI, PushMIB); 804 } 805 806 return true; 807 } 808 809 bool Thumb1FrameLowering:: 810 restoreCalleeSavedRegisters(MachineBasicBlock &MBB, 811 MachineBasicBlock::iterator MI, 812 std::vector<CalleeSavedInfo> &CSI, 813 const TargetRegisterInfo *TRI) const { 814 if (CSI.empty()) 815 return false; 816 817 MachineFunction &MF = *MBB.getParent(); 818 ARMFunctionInfo *AFI = MF.getInfo<ARMFunctionInfo>(); 819 const TargetInstrInfo &TII = *STI.getInstrInfo(); 820 const ARMBaseRegisterInfo *RegInfo = static_cast<const ARMBaseRegisterInfo *>( 821 MF.getSubtarget().getRegisterInfo()); 822 823 bool isVarArg = AFI->getArgRegsSaveSize() > 0; 824 DebugLoc DL = MI != MBB.end() ? MI->getDebugLoc() : DebugLoc(); 825 826 ARMRegSet LoRegsToRestore; 827 ARMRegSet HiRegsToRestore; 828 // Low registers (r0-r7) which can be used to restore the high registers. 829 ARMRegSet CopyRegs; 830 831 for (CalleeSavedInfo I : CSI) { 832 unsigned Reg = I.getReg(); 833 834 if (ARM::tGPRRegClass.contains(Reg) || Reg == ARM::LR) { 835 LoRegsToRestore[Reg] = true; 836 } else if (ARM::hGPRRegClass.contains(Reg) && Reg != ARM::LR) { 837 HiRegsToRestore[Reg] = true; 838 } else { 839 llvm_unreachable("callee-saved register of unexpected class"); 840 } 841 842 // If this is a low register not used as the frame pointer, we may want to 843 // use it for restoring the high registers. 844 if ((ARM::tGPRRegClass.contains(Reg)) && 845 !(hasFP(MF) && Reg == RegInfo->getFrameRegister(MF))) 846 CopyRegs[Reg] = true; 847 } 848 849 // If this is a return block, we may be able to use some unused return value 850 // registers for restoring the high regs. 851 auto Terminator = MBB.getFirstTerminator(); 852 if (Terminator != MBB.end() && Terminator->getOpcode() == ARM::tBX_RET) { 853 CopyRegs[ARM::R0] = true; 854 CopyRegs[ARM::R1] = true; 855 CopyRegs[ARM::R2] = true; 856 CopyRegs[ARM::R3] = true; 857 for (auto Op : Terminator->implicit_operands()) { 858 if (Op.isReg()) 859 CopyRegs[Op.getReg()] = false; 860 } 861 } 862 863 static const unsigned AllCopyRegs[] = {ARM::R0, ARM::R1, ARM::R2, ARM::R3, 864 ARM::R4, ARM::R5, ARM::R6, ARM::R7}; 865 static const unsigned AllHighRegs[] = {ARM::R8, ARM::R9, ARM::R10, ARM::R11}; 866 867 const unsigned *AllCopyRegsEnd = std::end(AllCopyRegs); 868 const unsigned *AllHighRegsEnd = std::end(AllHighRegs); 869 870 // Find the first register to restore. 871 auto HiRegToRestore = findNextOrderedReg(std::begin(AllHighRegs), 872 HiRegsToRestore, AllHighRegsEnd); 873 874 while (HiRegToRestore != AllHighRegsEnd) { 875 assert(!CopyRegs.none()); 876 // Find the first low register to use. 877 auto CopyReg = 878 findNextOrderedReg(std::begin(AllCopyRegs), CopyRegs, AllCopyRegsEnd); 879 880 // Create the POP instruction. 881 MachineInstrBuilder PopMIB = 882 BuildMI(MBB, MI, DL, TII.get(ARM::tPOP)).add(predOps(ARMCC::AL)); 883 884 while (HiRegToRestore != AllHighRegsEnd && CopyReg != AllCopyRegsEnd) { 885 // Add the low register to the POP. 886 PopMIB.addReg(*CopyReg, RegState::Define); 887 888 // Create the MOV from low to high register. 889 BuildMI(MBB, MI, DL, TII.get(ARM::tMOVr)) 890 .addReg(*HiRegToRestore, RegState::Define) 891 .addReg(*CopyReg, RegState::Kill) 892 .add(predOps(ARMCC::AL)); 893 894 CopyReg = findNextOrderedReg(++CopyReg, CopyRegs, AllCopyRegsEnd); 895 HiRegToRestore = 896 findNextOrderedReg(++HiRegToRestore, HiRegsToRestore, AllHighRegsEnd); 897 } 898 } 899 900 MachineInstrBuilder MIB = 901 BuildMI(MF, DL, TII.get(ARM::tPOP)).add(predOps(ARMCC::AL)); 902 903 bool NeedsPop = false; 904 for (unsigned i = CSI.size(); i != 0; --i) { 905 CalleeSavedInfo &Info = CSI[i-1]; 906 unsigned Reg = Info.getReg(); 907 908 // High registers (excluding lr) have already been dealt with 909 if (!(ARM::tGPRRegClass.contains(Reg) || Reg == ARM::LR)) 910 continue; 911 912 if (Reg == ARM::LR) { 913 Info.setRestored(false); 914 if (MBB.succ_empty()) { 915 // Special epilogue for vararg functions. See emitEpilogue 916 if (isVarArg) 917 continue; 918 // ARMv4T requires BX, see emitEpilogue 919 if (!STI.hasV5TOps()) 920 continue; 921 // Tailcall optimization failed; change TCRETURN to a tBL 922 if (MI->getOpcode() == ARM::TCRETURNdi || 923 MI->getOpcode() == ARM::TCRETURNri) { 924 unsigned Opcode = MI->getOpcode() == ARM::TCRETURNdi 925 ? ARM::tBL : ARM::tBLXr; 926 MachineInstrBuilder BL = BuildMI(MF, DL, TII.get(Opcode)); 927 BL.add(predOps(ARMCC::AL)); 928 BL.add(MI->getOperand(0)); 929 MBB.insert(MI, &*BL); 930 } 931 Reg = ARM::PC; 932 (*MIB).setDesc(TII.get(ARM::tPOP_RET)); 933 if (MI != MBB.end()) 934 MIB.copyImplicitOps(*MI); 935 MI = MBB.erase(MI); 936 } else 937 // LR may only be popped into PC, as part of return sequence. 938 // If this isn't the return sequence, we'll need emitPopSpecialFixUp 939 // to restore LR the hard way. 940 continue; 941 } 942 MIB.addReg(Reg, getDefRegState(true)); 943 NeedsPop = true; 944 } 945 946 // It's illegal to emit pop instruction without operands. 947 if (NeedsPop) 948 MBB.insert(MI, &*MIB); 949 else 950 MF.DeleteMachineInstr(MIB); 951 952 return true; 953 } 954