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