blob: 28a347bf33cf1c775d4a57dba48776072df58a3a [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- PPCFrameLowering.cpp - PPC Frame Information ----------------------===//
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00002//
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//
Anton Korobeynikov2f931282011-01-10 12:39:04 +000010// This file contains the PPC implementation of TargetFrameLowering class.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000011//
12//===----------------------------------------------------------------------===//
13
Anton Korobeynikov2f931282011-01-10 12:39:04 +000014#include "PPCFrameLowering.h"
Roman Divackyc9e23d92012-09-12 14:47:47 +000015#include "PPCInstrBuilder.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "PPCInstrInfo.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000017#include "PPCMachineFunctionInfo.h"
Eric Christopherd104c312014-06-12 20:54:11 +000018#include "PPCSubtarget.h"
Eric Christopherfcd3d872015-02-13 22:48:53 +000019#include "PPCTargetMachine.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000020#include "llvm/CodeGen/MachineFrameInfo.h"
21#include "llvm/CodeGen/MachineFunction.h"
22#include "llvm/CodeGen/MachineInstrBuilder.h"
23#include "llvm/CodeGen/MachineModuleInfo.h"
24#include "llvm/CodeGen/MachineRegisterInfo.h"
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +000025#include "llvm/CodeGen/RegisterScavenging.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/Function.h"
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000027#include "llvm/Target/TargetOptions.h"
28
29using namespace llvm;
30
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000031/// VRRegNo - Map from a numbered VR register to its enum value.
32///
Craig Toppere5e035a32015-12-05 07:13:35 +000033static const MCPhysReg VRRegNo[] = {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +000034 PPC::V0 , PPC::V1 , PPC::V2 , PPC::V3 , PPC::V4 , PPC::V5 , PPC::V6 , PPC::V7 ,
35 PPC::V8 , PPC::V9 , PPC::V10, PPC::V11, PPC::V12, PPC::V13, PPC::V14, PPC::V15,
36 PPC::V16, PPC::V17, PPC::V18, PPC::V19, PPC::V20, PPC::V21, PPC::V22, PPC::V23,
37 PPC::V24, PPC::V25, PPC::V26, PPC::V27, PPC::V28, PPC::V29, PPC::V30, PPC::V31
38};
39
Eric Christopherf71609b2015-02-13 00:39:27 +000040static unsigned computeReturnSaveOffset(const PPCSubtarget &STI) {
41 if (STI.isDarwinABI())
42 return STI.isPPC64() ? 16 : 8;
43 // SVR4 ABI:
44 return STI.isPPC64() ? 16 : 4;
45}
46
Eric Christopher736d39e2015-02-13 00:39:36 +000047static unsigned computeTOCSaveOffset(const PPCSubtarget &STI) {
48 return STI.isELFv2ABI() ? 24 : 40;
49}
50
Eric Christopherdc3a8a42015-02-13 00:39:38 +000051static unsigned computeFramePointerSaveOffset(const PPCSubtarget &STI) {
52 // For the Darwin ABI:
53 // We cannot use the TOC save slot (offset +20) in the PowerPC linkage area
54 // for saving the frame pointer (if needed.) While the published ABI has
55 // not used this slot since at least MacOSX 10.2, there is older code
56 // around that does use it, and that needs to continue to work.
57 if (STI.isDarwinABI())
58 return STI.isPPC64() ? -8U : -4U;
59
60 // SVR4 ABI: First slot in the general register save area.
61 return STI.isPPC64() ? -8U : -4U;
62}
63
Eric Christophera4ae2132015-02-13 22:22:57 +000064static unsigned computeLinkageSize(const PPCSubtarget &STI) {
65 if (STI.isDarwinABI() || STI.isPPC64())
66 return (STI.isELFv2ABI() ? 4 : 6) * (STI.isPPC64() ? 8 : 4);
67
68 // SVR4 ABI:
69 return 8;
70}
71
Eric Christopherfcd3d872015-02-13 22:48:53 +000072static unsigned computeBasePointerSaveOffset(const PPCSubtarget &STI) {
73 if (STI.isDarwinABI())
74 return STI.isPPC64() ? -16U : -8U;
75
76 // SVR4 ABI: First slot in the general register save area.
77 return STI.isPPC64()
78 ? -16U
79 : (STI.getTargetMachine().getRelocationModel() == Reloc::PIC_)
80 ? -12U
81 : -8U;
82}
83
Eric Christopherd104c312014-06-12 20:54:11 +000084PPCFrameLowering::PPCFrameLowering(const PPCSubtarget &STI)
85 : TargetFrameLowering(TargetFrameLowering::StackGrowsDown,
Hal Finkelc93a9a22015-02-25 01:06:45 +000086 STI.getPlatformStackAlignment(), 0),
Eric Christopher736d39e2015-02-13 00:39:36 +000087 Subtarget(STI), ReturnSaveOffset(computeReturnSaveOffset(Subtarget)),
Eric Christopherdc3a8a42015-02-13 00:39:38 +000088 TOCSaveOffset(computeTOCSaveOffset(Subtarget)),
Eric Christophera4ae2132015-02-13 22:22:57 +000089 FramePointerSaveOffset(computeFramePointerSaveOffset(Subtarget)),
Eric Christopherfcd3d872015-02-13 22:48:53 +000090 LinkageSize(computeLinkageSize(Subtarget)),
91 BasePointerSaveOffset(computeBasePointerSaveOffset(STI)) {}
Eric Christopherd104c312014-06-12 20:54:11 +000092
Eric Christopherd104c312014-06-12 20:54:11 +000093// With the SVR4 ABI, callee-saved registers have fixed offsets on the stack.
94const PPCFrameLowering::SpillSlot *PPCFrameLowering::getCalleeSavedSpillSlots(
95 unsigned &NumEntries) const {
96 if (Subtarget.isDarwinABI()) {
97 NumEntries = 1;
98 if (Subtarget.isPPC64()) {
99 static const SpillSlot darwin64Offsets = {PPC::X31, -8};
100 return &darwin64Offsets;
101 } else {
102 static const SpillSlot darwinOffsets = {PPC::R31, -4};
103 return &darwinOffsets;
104 }
105 }
106
107 // Early exit if not using the SVR4 ABI.
108 if (!Subtarget.isSVR4ABI()) {
109 NumEntries = 0;
110 return nullptr;
111 }
112
113 // Note that the offsets here overlap, but this is fixed up in
114 // processFunctionBeforeFrameFinalized.
115
116 static const SpillSlot Offsets[] = {
117 // Floating-point register save area offsets.
118 {PPC::F31, -8},
119 {PPC::F30, -16},
120 {PPC::F29, -24},
121 {PPC::F28, -32},
122 {PPC::F27, -40},
123 {PPC::F26, -48},
124 {PPC::F25, -56},
125 {PPC::F24, -64},
126 {PPC::F23, -72},
127 {PPC::F22, -80},
128 {PPC::F21, -88},
129 {PPC::F20, -96},
130 {PPC::F19, -104},
131 {PPC::F18, -112},
132 {PPC::F17, -120},
133 {PPC::F16, -128},
134 {PPC::F15, -136},
135 {PPC::F14, -144},
136
137 // General register save area offsets.
138 {PPC::R31, -4},
139 {PPC::R30, -8},
140 {PPC::R29, -12},
141 {PPC::R28, -16},
142 {PPC::R27, -20},
143 {PPC::R26, -24},
144 {PPC::R25, -28},
145 {PPC::R24, -32},
146 {PPC::R23, -36},
147 {PPC::R22, -40},
148 {PPC::R21, -44},
149 {PPC::R20, -48},
150 {PPC::R19, -52},
151 {PPC::R18, -56},
152 {PPC::R17, -60},
153 {PPC::R16, -64},
154 {PPC::R15, -68},
155 {PPC::R14, -72},
156
157 // CR save area offset. We map each of the nonvolatile CR fields
158 // to the slot for CR2, which is the first of the nonvolatile CR
159 // fields to be assigned, so that we only allocate one save slot.
160 // See PPCRegisterInfo::hasReservedSpillSlot() for more information.
161 {PPC::CR2, -4},
162
163 // VRSAVE save area offset.
164 {PPC::VRSAVE, -4},
165
166 // Vector register save area
167 {PPC::V31, -16},
168 {PPC::V30, -32},
169 {PPC::V29, -48},
170 {PPC::V28, -64},
171 {PPC::V27, -80},
172 {PPC::V26, -96},
173 {PPC::V25, -112},
174 {PPC::V24, -128},
175 {PPC::V23, -144},
176 {PPC::V22, -160},
177 {PPC::V21, -176},
178 {PPC::V20, -192}};
179
180 static const SpillSlot Offsets64[] = {
181 // Floating-point register save area offsets.
182 {PPC::F31, -8},
183 {PPC::F30, -16},
184 {PPC::F29, -24},
185 {PPC::F28, -32},
186 {PPC::F27, -40},
187 {PPC::F26, -48},
188 {PPC::F25, -56},
189 {PPC::F24, -64},
190 {PPC::F23, -72},
191 {PPC::F22, -80},
192 {PPC::F21, -88},
193 {PPC::F20, -96},
194 {PPC::F19, -104},
195 {PPC::F18, -112},
196 {PPC::F17, -120},
197 {PPC::F16, -128},
198 {PPC::F15, -136},
199 {PPC::F14, -144},
200
201 // General register save area offsets.
202 {PPC::X31, -8},
203 {PPC::X30, -16},
204 {PPC::X29, -24},
205 {PPC::X28, -32},
206 {PPC::X27, -40},
207 {PPC::X26, -48},
208 {PPC::X25, -56},
209 {PPC::X24, -64},
210 {PPC::X23, -72},
211 {PPC::X22, -80},
212 {PPC::X21, -88},
213 {PPC::X20, -96},
214 {PPC::X19, -104},
215 {PPC::X18, -112},
216 {PPC::X17, -120},
217 {PPC::X16, -128},
218 {PPC::X15, -136},
219 {PPC::X14, -144},
220
221 // VRSAVE save area offset.
222 {PPC::VRSAVE, -4},
223
224 // Vector register save area
225 {PPC::V31, -16},
226 {PPC::V30, -32},
227 {PPC::V29, -48},
228 {PPC::V28, -64},
229 {PPC::V27, -80},
230 {PPC::V26, -96},
231 {PPC::V25, -112},
232 {PPC::V24, -128},
233 {PPC::V23, -144},
234 {PPC::V22, -160},
235 {PPC::V21, -176},
236 {PPC::V20, -192}};
237
238 if (Subtarget.isPPC64()) {
239 NumEntries = array_lengthof(Offsets64);
240
241 return Offsets64;
242 } else {
243 NumEntries = array_lengthof(Offsets);
244
245 return Offsets;
246 }
247}
248
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000249/// RemoveVRSaveCode - We have found that this function does not need any code
250/// to manipulate the VRSAVE register, even though it uses vector registers.
251/// This can happen when the only registers used are known to be live in or out
252/// of the function. Remove all of the VRSAVE related code from the function.
Bill Schmidt38d94582012-10-10 20:54:15 +0000253/// FIXME: The removal of the code results in a compile failure at -O0 when the
254/// function contains a function call, as the GPR containing original VRSAVE
255/// contents is spilled and reloaded around the call. Without the prolog code,
256/// the spill instruction refers to an undefined register. This code needs
257/// to account for all uses of that GPR.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000258static void RemoveVRSaveCode(MachineInstr *MI) {
259 MachineBasicBlock *Entry = MI->getParent();
260 MachineFunction *MF = Entry->getParent();
261
262 // We know that the MTVRSAVE instruction immediately follows MI. Remove it.
263 MachineBasicBlock::iterator MBBI = MI;
264 ++MBBI;
265 assert(MBBI != Entry->end() && MBBI->getOpcode() == PPC::MTVRSAVE);
266 MBBI->eraseFromParent();
267
268 bool RemovedAllMTVRSAVEs = true;
269 // See if we can find and remove the MTVRSAVE instruction from all of the
270 // epilog blocks.
271 for (MachineFunction::iterator I = MF->begin(), E = MF->end(); I != E; ++I) {
272 // If last instruction is a return instruction, add an epilogue
Matthias Braunc2d4bef2015-09-25 21:25:19 +0000273 if (I->isReturnBlock()) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000274 bool FoundIt = false;
275 for (MBBI = I->end(); MBBI != I->begin(); ) {
276 --MBBI;
277 if (MBBI->getOpcode() == PPC::MTVRSAVE) {
278 MBBI->eraseFromParent(); // remove it.
279 FoundIt = true;
280 break;
281 }
282 }
283 RemovedAllMTVRSAVEs &= FoundIt;
284 }
285 }
286
287 // If we found and removed all MTVRSAVE instructions, remove the read of
288 // VRSAVE as well.
289 if (RemovedAllMTVRSAVEs) {
290 MBBI = MI;
291 assert(MBBI != Entry->begin() && "UPDATE_VRSAVE is first instr in block?");
292 --MBBI;
293 assert(MBBI->getOpcode() == PPC::MFVRSAVE && "VRSAVE instrs wandered?");
294 MBBI->eraseFromParent();
295 }
296
297 // Finally, nuke the UPDATE_VRSAVE.
298 MI->eraseFromParent();
299}
300
301// HandleVRSaveUpdate - MI is the UPDATE_VRSAVE instruction introduced by the
302// instruction selector. Based on the vector registers that have been used,
303// transform this into the appropriate ORI instruction.
304static void HandleVRSaveUpdate(MachineInstr *MI, const TargetInstrInfo &TII) {
305 MachineFunction *MF = MI->getParent()->getParent();
Eric Christopherfc6de422014-08-05 02:39:49 +0000306 const TargetRegisterInfo *TRI = MF->getSubtarget().getRegisterInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000307 DebugLoc dl = MI->getDebugLoc();
308
Matthias Braun9912bb82015-07-14 17:52:07 +0000309 const MachineRegisterInfo &MRI = MF->getRegInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000310 unsigned UsedRegMask = 0;
311 for (unsigned i = 0; i != 32; ++i)
Matthias Braun9912bb82015-07-14 17:52:07 +0000312 if (MRI.isPhysRegModified(VRRegNo[i]))
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000313 UsedRegMask |= 1 << (31-i);
314
315 // Live in and live out values already must be in the mask, so don't bother
316 // marking them.
317 for (MachineRegisterInfo::livein_iterator
318 I = MF->getRegInfo().livein_begin(),
319 E = MF->getRegInfo().livein_end(); I != E; ++I) {
Hal Finkelfeea6532013-03-26 20:08:20 +0000320 unsigned RegNo = TRI->getEncodingValue(I->first);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000321 if (VRRegNo[RegNo] == I->first) // If this really is a vector reg.
322 UsedRegMask &= ~(1 << (31-RegNo)); // Doesn't need to be marked.
323 }
Jakob Stoklund Olesenbf034db2013-02-05 17:40:36 +0000324
325 // Live out registers appear as use operands on return instructions.
326 for (MachineFunction::const_iterator BI = MF->begin(), BE = MF->end();
327 UsedRegMask != 0 && BI != BE; ++BI) {
328 const MachineBasicBlock &MBB = *BI;
Matthias Braunc2d4bef2015-09-25 21:25:19 +0000329 if (!MBB.isReturnBlock())
Jakob Stoklund Olesenbf034db2013-02-05 17:40:36 +0000330 continue;
331 const MachineInstr &Ret = MBB.back();
332 for (unsigned I = 0, E = Ret.getNumOperands(); I != E; ++I) {
333 const MachineOperand &MO = Ret.getOperand(I);
334 if (!MO.isReg() || !PPC::VRRCRegClass.contains(MO.getReg()))
335 continue;
Hal Finkelfeea6532013-03-26 20:08:20 +0000336 unsigned RegNo = TRI->getEncodingValue(MO.getReg());
Jakob Stoklund Olesenbf034db2013-02-05 17:40:36 +0000337 UsedRegMask &= ~(1 << (31-RegNo));
338 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000339 }
340
341 // If no registers are used, turn this into a copy.
342 if (UsedRegMask == 0) {
343 // Remove all VRSAVE code.
344 RemoveVRSaveCode(MI);
345 return;
346 }
347
348 unsigned SrcReg = MI->getOperand(1).getReg();
349 unsigned DstReg = MI->getOperand(0).getReg();
350
351 if ((UsedRegMask & 0xFFFF) == UsedRegMask) {
352 if (DstReg != SrcReg)
353 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORI), DstReg)
354 .addReg(SrcReg)
355 .addImm(UsedRegMask);
356 else
357 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORI), DstReg)
358 .addReg(SrcReg, RegState::Kill)
359 .addImm(UsedRegMask);
360 } else if ((UsedRegMask & 0xFFFF0000) == UsedRegMask) {
361 if (DstReg != SrcReg)
362 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORIS), DstReg)
363 .addReg(SrcReg)
364 .addImm(UsedRegMask >> 16);
365 else
366 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORIS), DstReg)
367 .addReg(SrcReg, RegState::Kill)
368 .addImm(UsedRegMask >> 16);
369 } else {
370 if (DstReg != SrcReg)
371 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORIS), DstReg)
372 .addReg(SrcReg)
373 .addImm(UsedRegMask >> 16);
374 else
375 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORIS), DstReg)
376 .addReg(SrcReg, RegState::Kill)
377 .addImm(UsedRegMask >> 16);
378
379 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORI), DstReg)
380 .addReg(DstReg, RegState::Kill)
381 .addImm(UsedRegMask & 0xFFFF);
382 }
383
384 // Remove the old UPDATE_VRSAVE instruction.
385 MI->eraseFromParent();
386}
387
Roman Divackyc9e23d92012-09-12 14:47:47 +0000388static bool spillsCR(const MachineFunction &MF) {
389 const PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
390 return FuncInfo->isCRSpilled();
391}
392
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000393static bool spillsVRSAVE(const MachineFunction &MF) {
394 const PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
395 return FuncInfo->isVRSAVESpilled();
396}
397
Hal Finkelbb420f12013-03-15 05:06:04 +0000398static bool hasSpills(const MachineFunction &MF) {
399 const PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
400 return FuncInfo->hasSpills();
401}
402
Hal Finkelfcc51d42013-03-17 04:43:44 +0000403static bool hasNonRISpills(const MachineFunction &MF) {
404 const PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
405 return FuncInfo->hasNonRISpills();
406}
407
Bill Schmidt82f1c772015-02-10 19:09:05 +0000408/// MustSaveLR - Return true if this function requires that we save the LR
409/// register onto the stack in the prolog and restore it in the epilog of the
410/// function.
411static bool MustSaveLR(const MachineFunction &MF, unsigned LR) {
412 const PPCFunctionInfo *MFI = MF.getInfo<PPCFunctionInfo>();
413
414 // We need a save/restore of LR if there is any def of LR (which is
415 // defined by calls, including the PIC setup sequence), or if there is
416 // some use of the LR stack slot (e.g. for builtin_return_address).
417 // (LR comes in 32 and 64 bit versions.)
418 MachineRegisterInfo::def_iterator RI = MF.getRegInfo().def_begin(LR);
419 return RI !=MF.getRegInfo().def_end() || MFI->isLRStoreRequired();
420}
421
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000422/// determineFrameLayout - Determine the size of the frame and maximum call
423/// frame size.
Hal Finkelbb420f12013-03-15 05:06:04 +0000424unsigned PPCFrameLowering::determineFrameLayout(MachineFunction &MF,
425 bool UpdateMF,
426 bool UseEstimate) const {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000427 MachineFrameInfo *MFI = MF.getFrameInfo();
428
429 // Get the number of bytes to allocate from the FrameInfo
Hal Finkelbb420f12013-03-15 05:06:04 +0000430 unsigned FrameSize =
431 UseEstimate ? MFI->estimateStackSize(MF) : MFI->getStackSize();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000432
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000433 // Get stack alignments. The frame must be aligned to the greatest of these:
434 unsigned TargetAlign = getStackAlignment(); // alignment required per the ABI
435 unsigned MaxAlign = MFI->getMaxAlignment(); // algmt required by data in frame
Hal Finkela7c54e82013-07-17 00:45:52 +0000436 unsigned AlignMask = std::max(MaxAlign, TargetAlign) - 1;
437
Eric Christopherfc6de422014-08-05 02:39:49 +0000438 const PPCRegisterInfo *RegInfo =
Eric Christopher38522b82015-01-30 02:11:26 +0000439 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000440
441 // If we are a leaf function, and use up to 224 bytes of stack space,
442 // don't have a frame pointer, calls, or dynamic alloca then we do not need
Hal Finkel67369882013-04-15 02:07:05 +0000443 // to adjust the stack pointer (we fit in the Red Zone).
Bill Schmidt8ea7af82013-02-26 21:28:57 +0000444 // The 32-bit SVR4 ABI has no Red Zone. However, it can still generate
445 // stackless code if all local vars are reg-allocated.
Duncan P. N. Exon Smith5bedaf932015-02-14 02:54:07 +0000446 bool DisableRedZone = MF.getFunction()->hasFnAttribute(Attribute::NoRedZone);
Bill Schmidt82f1c772015-02-10 19:09:05 +0000447 unsigned LR = RegInfo->getRARegister();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000448 if (!DisableRedZone &&
Bill Schmidt8ea7af82013-02-26 21:28:57 +0000449 (Subtarget.isPPC64() || // 32-bit SVR4, no stack-
450 !Subtarget.isSVR4ABI() || // allocated locals.
Eric Christopherd1737492014-04-29 00:16:40 +0000451 FrameSize == 0) &&
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000452 FrameSize <= 224 && // Fits in red zone.
453 !MFI->hasVarSizedObjects() && // No dynamic alloca.
454 !MFI->adjustsStack() && // No calls.
Bill Schmidt82f1c772015-02-10 19:09:05 +0000455 !MustSaveLR(MF, LR) &&
Hal Finkela7c54e82013-07-17 00:45:52 +0000456 !RegInfo->hasBasePointer(MF)) { // No special alignment.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000457 // No need for frame
Hal Finkelbb420f12013-03-15 05:06:04 +0000458 if (UpdateMF)
459 MFI->setStackSize(0);
460 return 0;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000461 }
462
463 // Get the maximum call frame size of all the calls.
464 unsigned maxCallFrameSize = MFI->getMaxCallFrameSize();
465
Ulrich Weigandf316e1d2014-06-23 13:47:52 +0000466 // Maximum call frame needs to be at least big enough for linkage area.
Eric Christophera4ae2132015-02-13 22:22:57 +0000467 unsigned minCallFrameSize = getLinkageSize();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000468 maxCallFrameSize = std::max(maxCallFrameSize, minCallFrameSize);
469
470 // If we have dynamic alloca then maxCallFrameSize needs to be aligned so
471 // that allocations will be aligned.
472 if (MFI->hasVarSizedObjects())
473 maxCallFrameSize = (maxCallFrameSize + AlignMask) & ~AlignMask;
474
475 // Update maximum call frame size.
Hal Finkelbb420f12013-03-15 05:06:04 +0000476 if (UpdateMF)
477 MFI->setMaxCallFrameSize(maxCallFrameSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000478
479 // Include call frame size in total.
480 FrameSize += maxCallFrameSize;
481
482 // Make sure the frame is aligned.
483 FrameSize = (FrameSize + AlignMask) & ~AlignMask;
484
485 // Update frame info.
Hal Finkelbb420f12013-03-15 05:06:04 +0000486 if (UpdateMF)
487 MFI->setStackSize(FrameSize);
488
489 return FrameSize;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000490}
491
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000492// hasFP - Return true if the specified function actually has a dedicated frame
493// pointer register.
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000494bool PPCFrameLowering::hasFP(const MachineFunction &MF) const {
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000495 const MachineFrameInfo *MFI = MF.getFrameInfo();
Anton Korobeynikov3eb4fed2010-12-18 19:53:14 +0000496 // FIXME: This is pretty much broken by design: hasFP() might be called really
497 // early, before the stack layout was calculated and thus hasFP() might return
498 // true or false here depending on the time of call.
499 return (MFI->getStackSize()) && needsFP(MF);
500}
501
502// needsFP - Return true if the specified function should have a dedicated frame
503// pointer register. This is true if the function has variable sized allocas or
504// if frame pointer elimination is disabled.
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000505bool PPCFrameLowering::needsFP(const MachineFunction &MF) const {
Anton Korobeynikov3eb4fed2010-12-18 19:53:14 +0000506 const MachineFrameInfo *MFI = MF.getFrameInfo();
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000507
508 // Naked functions have no stack frame pushed, so we don't have a frame
509 // pointer.
Duncan P. N. Exon Smith5bedaf932015-02-14 02:54:07 +0000510 if (MF.getFunction()->hasFnAttribute(Attribute::Naked))
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000511 return false;
512
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000513 return MF.getTarget().Options.DisableFramePointerElim(MF) ||
514 MFI->hasVarSizedObjects() ||
Hal Finkel934361a2015-01-14 01:07:51 +0000515 MFI->hasStackMap() || MFI->hasPatchPoint() ||
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000516 (MF.getTarget().Options.GuaranteedTailCallOpt &&
517 MF.getInfo<PPCFunctionInfo>()->hasFastCall());
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000518}
519
Hal Finkelaa03c032013-03-21 19:03:19 +0000520void PPCFrameLowering::replaceFPWithRealFP(MachineFunction &MF) const {
521 bool is31 = needsFP(MF);
522 unsigned FPReg = is31 ? PPC::R31 : PPC::R1;
523 unsigned FP8Reg = is31 ? PPC::X31 : PPC::X1;
524
Eric Christopherfc6de422014-08-05 02:39:49 +0000525 const PPCRegisterInfo *RegInfo =
Eric Christopher38522b82015-01-30 02:11:26 +0000526 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
Hal Finkelf05d6c72013-07-17 23:50:51 +0000527 bool HasBP = RegInfo->hasBasePointer(MF);
Hal Finkel3ee2af72014-07-18 23:29:49 +0000528 unsigned BPReg = HasBP ? (unsigned) RegInfo->getBaseRegister(MF) : FPReg;
Hal Finkelf05d6c72013-07-17 23:50:51 +0000529 unsigned BP8Reg = HasBP ? (unsigned) PPC::X30 : FPReg;
530
Hal Finkelaa03c032013-03-21 19:03:19 +0000531 for (MachineFunction::iterator BI = MF.begin(), BE = MF.end();
532 BI != BE; ++BI)
533 for (MachineBasicBlock::iterator MBBI = BI->end(); MBBI != BI->begin(); ) {
534 --MBBI;
535 for (unsigned I = 0, E = MBBI->getNumOperands(); I != E; ++I) {
536 MachineOperand &MO = MBBI->getOperand(I);
537 if (!MO.isReg())
538 continue;
539
540 switch (MO.getReg()) {
541 case PPC::FP:
542 MO.setReg(FPReg);
543 break;
544 case PPC::FP8:
545 MO.setReg(FP8Reg);
546 break;
Hal Finkelf05d6c72013-07-17 23:50:51 +0000547 case PPC::BP:
548 MO.setReg(BPReg);
549 break;
550 case PPC::BP8:
551 MO.setReg(BP8Reg);
552 break;
553
Hal Finkelaa03c032013-03-21 19:03:19 +0000554 }
555 }
556 }
557}
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000558
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000559/* This function will do the following:
560 - If MBB is an entry or exit block, set SR1 and SR2 to R0 and R12
561 respectively (defaults recommended by the ABI) and return true
562 - If MBB is not an entry block, initialize the register scavenger and look
563 for available registers.
564 - If the defaults (R0/R12) are available, return true
565 - If TwoUniqueRegsRequired is set to true, it looks for two unique
566 registers. Otherwise, look for a single available register.
567 - If the required registers are found, set SR1 and SR2 and return true.
568 - If the required registers are not found, set SR2 or both SR1 and SR2 to
569 PPC::NoRegister and return false.
570
571 Note that if both SR1 and SR2 are valid parameters and TwoUniqueRegsRequired
572 is not set, this function will attempt to find two different registers, but
573 still return true if only one register is available (and set SR1 == SR2).
574*/
575bool
576PPCFrameLowering::findScratchRegister(MachineBasicBlock *MBB,
577 bool UseAtEnd,
578 bool TwoUniqueRegsRequired,
579 unsigned *SR1,
580 unsigned *SR2) const {
Kit Barton9c432ae2015-11-16 20:22:15 +0000581 RegScavenger RS;
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000582 unsigned R0 = Subtarget.isPPC64() ? PPC::X0 : PPC::R0;
583 unsigned R12 = Subtarget.isPPC64() ? PPC::X12 : PPC::R12;
Kit Barton9c432ae2015-11-16 20:22:15 +0000584
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000585 // Set the defaults for the two scratch registers.
586 if (SR1)
587 *SR1 = R0;
Kit Barton9c432ae2015-11-16 20:22:15 +0000588
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000589 if (SR2) {
590 assert (SR1 && "Asking for the second scratch register but not the first?");
591 *SR2 = R12;
592 }
593
594 // If MBB is an entry or exit block, use R0 and R12 as the scratch registers.
Kit Barton9c432ae2015-11-16 20:22:15 +0000595 if ((UseAtEnd && MBB->isReturnBlock()) ||
596 (!UseAtEnd && (&MBB->getParent()->front() == MBB)))
597 return true;
Alexey Samsonov39b7d652015-12-02 21:25:28 +0000598
Kit Barton9c432ae2015-11-16 20:22:15 +0000599 RS.enterBasicBlock(MBB);
600
Kit Bartonf4ce2f32015-11-30 18:59:41 +0000601 if (UseAtEnd && !MBB->empty()) {
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000602 // The scratch register will be used at the end of the block, so must
603 // consider all registers used within the block
Kit Bartonf4ce2f32015-11-30 18:59:41 +0000604
605 MachineBasicBlock::iterator MBBI = MBB->getFirstTerminator();
606 // If no terminator, back iterator up to previous instruction.
607 if (MBBI == MBB->end())
608 MBBI = std::prev(MBBI);
609
610 if (MBBI != MBB->begin())
611 RS.forward(MBBI);
612 }
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000613
614 // If the two registers are available, we're all good.
615 // Note that we only return here if both R0 and R12 are available because
616 // although the function may not require two unique registers, it may benefit
617 // from having two so we should try to provide them.
618 if (!RS.isRegUsed(R0) && !RS.isRegUsed(R12))
Kit Barton9c432ae2015-11-16 20:22:15 +0000619 return true;
620
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000621 // Get the list of callee-saved registers for the target.
622 const PPCRegisterInfo *RegInfo =
623 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
624 const MCPhysReg *CSRegs = RegInfo->getCalleeSavedRegs(MBB->getParent());
625
626 // Get all the available registers in the block.
627 BitVector BV = RS.getRegsAvailable(Subtarget.isPPC64() ? &PPC::G8RCRegClass :
628 &PPC::GPRCRegClass);
629
630 // We shouldn't use callee-saved registers as scratch registers as they may be
631 // available when looking for a candidate block for shrink wrapping but not
632 // available when the actual prologue/epilogue is being emitted because they
633 // were added as live-in to the prologue block by PrologueEpilogueInserter.
634 for (int i = 0; CSRegs[i]; ++i)
635 BV.reset(CSRegs[i]);
636
637 // Set the first scratch register to the first available one.
638 if (SR1) {
639 int FirstScratchReg = BV.find_first();
640 *SR1 = FirstScratchReg == -1 ? (unsigned)PPC::NoRegister : FirstScratchReg;
641 }
642
643 // If there is another one available, set the second scratch register to that.
644 // Otherwise, set it to either PPC::NoRegister if this function requires two
645 // or to whatever SR1 is set to if this function doesn't require two.
646 if (SR2) {
647 int SecondScratchReg = BV.find_next(*SR1);
648 if (SecondScratchReg != -1)
649 *SR2 = SecondScratchReg;
650 else
651 *SR2 = TwoUniqueRegsRequired ? (unsigned)PPC::NoRegister : *SR1;
652 }
653
654 // Now that we've done our best to provide both registers, double check
655 // whether we were unable to provide enough.
Aaron Ballman8374c1f2016-02-23 15:02:43 +0000656 if (BV.count() < (TwoUniqueRegsRequired ? 2U : 1U))
Kit Barton9c432ae2015-11-16 20:22:15 +0000657 return false;
658
Kit Barton9c432ae2015-11-16 20:22:15 +0000659 return true;
660}
661
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000662// We need a scratch register for spilling LR and for spilling CR. By default,
663// we use two scratch registers to hide latency. However, if only one scratch
664// register is available, we can adjust for that by not overlapping the spill
665// code. However, if we need to realign the stack (i.e. have a base pointer)
666// and the stack frame is large, we need two scratch registers.
667bool
668PPCFrameLowering::twoUniqueScratchRegsRequired(MachineBasicBlock *MBB) const {
669 const PPCRegisterInfo *RegInfo =
670 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
671 MachineFunction &MF = *(MBB->getParent());
672 bool HasBP = RegInfo->hasBasePointer(MF);
673 unsigned FrameSize = determineFrameLayout(MF, false);
674 int NegFrameSize = -FrameSize;
675 bool IsLargeFrame = !isInt<16>(NegFrameSize);
676 MachineFrameInfo *MFI = MF.getFrameInfo();
677 unsigned MaxAlign = MFI->getMaxAlignment();
678
679 return IsLargeFrame && HasBP && MaxAlign > 1;
680}
681
Kit Barton9c432ae2015-11-16 20:22:15 +0000682bool PPCFrameLowering::canUseAsPrologue(const MachineBasicBlock &MBB) const {
683 MachineBasicBlock *TmpMBB = const_cast<MachineBasicBlock *>(&MBB);
684
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000685 return findScratchRegister(TmpMBB, false,
686 twoUniqueScratchRegsRequired(TmpMBB));
Kit Barton9c432ae2015-11-16 20:22:15 +0000687}
688
689bool PPCFrameLowering::canUseAsEpilogue(const MachineBasicBlock &MBB) const {
690 MachineBasicBlock *TmpMBB = const_cast<MachineBasicBlock *>(&MBB);
691
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000692 return findScratchRegister(TmpMBB, true);
Kit Barton9c432ae2015-11-16 20:22:15 +0000693}
694
Quentin Colombet61b305e2015-05-05 17:38:16 +0000695void PPCFrameLowering::emitPrologue(MachineFunction &MF,
696 MachineBasicBlock &MBB) const {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000697 MachineBasicBlock::iterator MBBI = MBB.begin();
698 MachineFrameInfo *MFI = MF.getFrameInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000699 const PPCInstrInfo &TII =
Eric Christopher38522b82015-01-30 02:11:26 +0000700 *static_cast<const PPCInstrInfo *>(Subtarget.getInstrInfo());
Eric Christopherfc6de422014-08-05 02:39:49 +0000701 const PPCRegisterInfo *RegInfo =
Eric Christopher38522b82015-01-30 02:11:26 +0000702 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000703
704 MachineModuleInfo &MMI = MF.getMMI();
Bill Wendlingbc07a892013-06-18 07:20:20 +0000705 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000706 DebugLoc dl;
Jay Foad1f0a44e2014-12-01 09:42:32 +0000707 bool needsCFI = MMI.hasDebugInfo() ||
Rafael Espindolafc9bae62011-05-25 03:44:17 +0000708 MF.getFunction()->needsUnwindTableEntry();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000709
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000710 // Get processor type.
711 bool isPPC64 = Subtarget.isPPC64();
712 // Get the ABI.
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000713 bool isSVR4ABI = Subtarget.isSVR4ABI();
Ulrich Weigandbe928cc2014-07-21 00:03:18 +0000714 bool isELFv2ABI = Subtarget.isELFv2ABI();
Chandler Carruth003ed332015-02-14 09:14:44 +0000715 assert((Subtarget.isDarwinABI() || isSVR4ABI) &&
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000716 "Currently only Darwin and SVR4 ABIs are supported for PowerPC.");
717
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000718 // Scan the prolog, looking for an UPDATE_VRSAVE instruction. If we find it,
719 // process it.
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000720 if (!isSVR4ABI)
Bill Schmidt38d94582012-10-10 20:54:15 +0000721 for (unsigned i = 0; MBBI != MBB.end(); ++i, ++MBBI) {
722 if (MBBI->getOpcode() == PPC::UPDATE_VRSAVE) {
723 HandleVRSaveUpdate(MBBI, TII);
724 break;
725 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000726 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000727
Kit Bartond3b904d2015-09-10 01:55:44 +0000728 // Move MBBI back to the beginning of the prologue block.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000729 MBBI = MBB.begin();
730
731 // Work out frame sizes.
Hal Finkelbb420f12013-03-15 05:06:04 +0000732 unsigned FrameSize = determineFrameLayout(MF);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000733 int NegFrameSize = -FrameSize;
Hal Finkela7c54e82013-07-17 00:45:52 +0000734 if (!isInt<32>(NegFrameSize))
735 llvm_unreachable("Unhandled stack size!");
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000736
Hal Finkelaa03c032013-03-21 19:03:19 +0000737 if (MFI->isFrameAddressTaken())
738 replaceFPWithRealFP(MF);
739
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000740 // Check if the link register (LR) must be saved.
741 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
742 bool MustSaveLR = FI->mustSaveLR();
Craig Topperb94011f2013-07-14 04:42:23 +0000743 const SmallVectorImpl<unsigned> &MustSaveCRs = FI->getMustSaveCRs();
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000744 bool MustSaveCR = !MustSaveCRs.empty();
Bill Schmidtf381afc2013-08-20 03:12:23 +0000745 // Do we have a frame pointer and/or base pointer for this function?
Anton Korobeynikov3eb4fed2010-12-18 19:53:14 +0000746 bool HasFP = hasFP(MF);
Hal Finkela7c54e82013-07-17 00:45:52 +0000747 bool HasBP = RegInfo->hasBasePointer(MF);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000748
Bill Schmidtf381afc2013-08-20 03:12:23 +0000749 unsigned SPReg = isPPC64 ? PPC::X1 : PPC::R1;
Hal Finkel3ee2af72014-07-18 23:29:49 +0000750 unsigned BPReg = RegInfo->getBaseRegister(MF);
Bill Schmidtf381afc2013-08-20 03:12:23 +0000751 unsigned FPReg = isPPC64 ? PPC::X31 : PPC::R31;
752 unsigned LRReg = isPPC64 ? PPC::LR8 : PPC::LR;
Kit Barton9c432ae2015-11-16 20:22:15 +0000753 unsigned ScratchReg = 0;
Bill Schmidtf381afc2013-08-20 03:12:23 +0000754 unsigned TempReg = isPPC64 ? PPC::X12 : PPC::R12; // another scratch reg
755 // ...(R12/X12 is volatile in both Darwin & SVR4, & can't be a function arg.)
756 const MCInstrDesc& MFLRInst = TII.get(isPPC64 ? PPC::MFLR8
757 : PPC::MFLR );
758 const MCInstrDesc& StoreInst = TII.get(isPPC64 ? PPC::STD
759 : PPC::STW );
760 const MCInstrDesc& StoreUpdtInst = TII.get(isPPC64 ? PPC::STDU
761 : PPC::STWU );
762 const MCInstrDesc& StoreUpdtIdxInst = TII.get(isPPC64 ? PPC::STDUX
763 : PPC::STWUX);
764 const MCInstrDesc& LoadImmShiftedInst = TII.get(isPPC64 ? PPC::LIS8
765 : PPC::LIS );
766 const MCInstrDesc& OrImmInst = TII.get(isPPC64 ? PPC::ORI8
767 : PPC::ORI );
768 const MCInstrDesc& OrInst = TII.get(isPPC64 ? PPC::OR8
769 : PPC::OR );
770 const MCInstrDesc& SubtractCarryingInst = TII.get(isPPC64 ? PPC::SUBFC8
771 : PPC::SUBFC);
772 const MCInstrDesc& SubtractImmCarryingInst = TII.get(isPPC64 ? PPC::SUBFIC8
773 : PPC::SUBFIC);
774
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000775 // Regarding this assert: Even though LR is saved in the caller's frame (i.e.,
776 // LROffset is positive), that slot is callee-owned. Because PPC32 SVR4 has no
777 // Red Zone, an asynchronous event (a form of "callee") could claim a frame &
778 // overwrite it, so PPC32 SVR4 must claim at least a minimal frame to save LR.
779 assert((isPPC64 || !isSVR4ABI || !(!FrameSize && (MustSaveLR || HasFP))) &&
780 "FrameSize must be >0 to save/restore the FP or LR for 32-bit SVR4.");
781
Nemanja Ivanovicdaf0ca22016-02-20 20:45:37 +0000782 // Using the same bool variable as below to supress compiler warnings.
783 bool SingleScratchReg =
784 findScratchRegister(&MBB, false, twoUniqueScratchRegsRequired(&MBB),
785 &ScratchReg, &TempReg);
786 assert(SingleScratchReg &&
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000787 "Required number of registers not available in this block");
788
Nemanja Ivanovicdaf0ca22016-02-20 20:45:37 +0000789 SingleScratchReg = ScratchReg == TempReg;
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000790
Eric Christopherf71609b2015-02-13 00:39:27 +0000791 int LROffset = getReturnSaveOffset();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000792
793 int FPOffset = 0;
794 if (HasFP) {
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000795 if (isSVR4ABI) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000796 MachineFrameInfo *FFI = MF.getFrameInfo();
797 int FPIndex = FI->getFramePointerSaveIndex();
798 assert(FPIndex && "No Frame Pointer Save Slot!");
799 FPOffset = FFI->getObjectOffset(FPIndex);
800 } else {
Eric Christopherdc3a8a42015-02-13 00:39:38 +0000801 FPOffset = getFramePointerSaveOffset();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000802 }
803 }
804
Hal Finkela7c54e82013-07-17 00:45:52 +0000805 int BPOffset = 0;
806 if (HasBP) {
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000807 if (isSVR4ABI) {
Hal Finkela7c54e82013-07-17 00:45:52 +0000808 MachineFrameInfo *FFI = MF.getFrameInfo();
809 int BPIndex = FI->getBasePointerSaveIndex();
810 assert(BPIndex && "No Base Pointer Save Slot!");
811 BPOffset = FFI->getObjectOffset(BPIndex);
812 } else {
Eric Christopherfcd3d872015-02-13 22:48:53 +0000813 BPOffset = getBasePointerSaveOffset();
Hal Finkela7c54e82013-07-17 00:45:52 +0000814 }
815 }
816
Justin Hibbits654346e2015-01-10 01:57:21 +0000817 int PBPOffset = 0;
818 if (FI->usesPICBase()) {
819 MachineFrameInfo *FFI = MF.getFrameInfo();
820 int PBPIndex = FI->getPICBasePointerSaveIndex();
821 assert(PBPIndex && "No PIC Base Pointer Save Slot!");
822 PBPOffset = FFI->getObjectOffset(PBPIndex);
823 }
824
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000825 // Get stack alignments.
826 unsigned MaxAlign = MFI->getMaxAlignment();
827 if (HasBP && MaxAlign > 1)
828 assert(isPowerOf2_32(MaxAlign) && isInt<16>(MaxAlign) &&
829 "Invalid alignment!");
830
831 // Frames of 32KB & larger require special handling because they cannot be
832 // indexed into with a simple STDU/STWU/STD/STW immediate offset operand.
833 bool isLargeFrame = !isInt<16>(NegFrameSize);
834
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000835 assert((isPPC64 || !MustSaveCR) &&
836 "Prologue CR saving supported only in 64-bit mode");
837
838 // If we need to spill the CR and the LR but we don't have two separate
839 // registers available, we must spill them one at a time
840 if (MustSaveCR && SingleScratchReg && MustSaveLR) {
841 // FIXME: In the ELFv2 ABI, we are not required to save all CR fields.
842 // If only one or two CR fields are clobbered, it could be more
843 // efficient to use mfocrf to selectively save just those fields.
844 MachineInstrBuilder MIB =
845 BuildMI(MBB, MBBI, dl, TII.get(PPC::MFCR8), TempReg);
846 for (unsigned i = 0, e = MustSaveCRs.size(); i != e; ++i)
847 MIB.addReg(MustSaveCRs[i], RegState::ImplicitKill);
848 BuildMI(MBB, MBBI, dl, TII.get(PPC::STW8))
849 .addReg(TempReg, getKillRegState(true))
850 .addImm(8)
851 .addReg(SPReg);
852 }
853
Bill Schmidtf381afc2013-08-20 03:12:23 +0000854 if (MustSaveLR)
855 BuildMI(MBB, MBBI, dl, MFLRInst, ScratchReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000856
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000857 if (MustSaveCR &&
858 !(SingleScratchReg && MustSaveLR)) { // will only occur for PPC64
Ulrich Weigandbe928cc2014-07-21 00:03:18 +0000859 // FIXME: In the ELFv2 ABI, we are not required to save all CR fields.
860 // If only one or two CR fields are clobbered, it could be more
861 // efficient to use mfocrf to selectively save just those fields.
Bill Schmidtf381afc2013-08-20 03:12:23 +0000862 MachineInstrBuilder MIB =
863 BuildMI(MBB, MBBI, dl, TII.get(PPC::MFCR8), TempReg);
864 for (unsigned i = 0, e = MustSaveCRs.size(); i != e; ++i)
865 MIB.addReg(MustSaveCRs[i], RegState::ImplicitKill);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000866 }
867
Bill Schmidtf381afc2013-08-20 03:12:23 +0000868 if (HasFP)
869 // FIXME: On PPC32 SVR4, we must not spill before claiming the stackframe.
870 BuildMI(MBB, MBBI, dl, StoreInst)
871 .addReg(FPReg)
872 .addImm(FPOffset)
873 .addReg(SPReg);
874
Justin Hibbits654346e2015-01-10 01:57:21 +0000875 if (FI->usesPICBase())
Justin Hibbits98a532d2015-01-08 15:47:19 +0000876 // FIXME: On PPC32 SVR4, we must not spill before claiming the stackframe.
877 BuildMI(MBB, MBBI, dl, StoreInst)
878 .addReg(PPC::R30)
Justin Hibbits654346e2015-01-10 01:57:21 +0000879 .addImm(PBPOffset)
Justin Hibbits98a532d2015-01-08 15:47:19 +0000880 .addReg(SPReg);
881
Bill Schmidtf381afc2013-08-20 03:12:23 +0000882 if (HasBP)
883 // FIXME: On PPC32 SVR4, we must not spill before claiming the stackframe.
884 BuildMI(MBB, MBBI, dl, StoreInst)
885 .addReg(BPReg)
886 .addImm(BPOffset)
887 .addReg(SPReg);
888
889 if (MustSaveLR)
890 // FIXME: On PPC32 SVR4, we must not spill before claiming the stackframe.
891 BuildMI(MBB, MBBI, dl, StoreInst)
892 .addReg(ScratchReg)
893 .addImm(LROffset)
894 .addReg(SPReg);
895
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000896 if (MustSaveCR &&
897 !(SingleScratchReg && MustSaveLR)) // will only occur for PPC64
Bill Schmidtf381afc2013-08-20 03:12:23 +0000898 BuildMI(MBB, MBBI, dl, TII.get(PPC::STW8))
899 .addReg(TempReg, getKillRegState(true))
900 .addImm(8)
901 .addReg(SPReg);
902
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000903 // Skip the rest if this is a leaf function & all spills fit in the Red Zone.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000904 if (!FrameSize) return;
905
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000906 // Adjust stack pointer: r1 += NegFrameSize.
907 // If there is a preferred stack alignment, align R1 now
Hal Finkela7c54e82013-07-17 00:45:52 +0000908
Bill Schmidtf381afc2013-08-20 03:12:23 +0000909 if (HasBP) {
910 // Save a copy of r1 as the base pointer.
911 BuildMI(MBB, MBBI, dl, OrInst, BPReg)
912 .addReg(SPReg)
913 .addReg(SPReg);
914 }
915
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000916 // This condition must be kept in sync with canUseAsPrologue.
Bill Schmidtf381afc2013-08-20 03:12:23 +0000917 if (HasBP && MaxAlign > 1) {
918 if (isPPC64)
919 BuildMI(MBB, MBBI, dl, TII.get(PPC::RLDICL), ScratchReg)
920 .addReg(SPReg)
921 .addImm(0)
922 .addImm(64 - Log2_32(MaxAlign));
923 else // PPC32...
924 BuildMI(MBB, MBBI, dl, TII.get(PPC::RLWINM), ScratchReg)
925 .addReg(SPReg)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000926 .addImm(0)
927 .addImm(32 - Log2_32(MaxAlign))
928 .addImm(31);
Bill Schmidtf381afc2013-08-20 03:12:23 +0000929 if (!isLargeFrame) {
930 BuildMI(MBB, MBBI, dl, SubtractImmCarryingInst, ScratchReg)
931 .addReg(ScratchReg, RegState::Kill)
932 .addImm(NegFrameSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000933 } else {
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +0000934 assert(!SingleScratchReg && "Only a single scratch reg available");
Bill Schmidtf381afc2013-08-20 03:12:23 +0000935 BuildMI(MBB, MBBI, dl, LoadImmShiftedInst, TempReg)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000936 .addImm(NegFrameSize >> 16);
Bill Schmidtf381afc2013-08-20 03:12:23 +0000937 BuildMI(MBB, MBBI, dl, OrImmInst, TempReg)
938 .addReg(TempReg, RegState::Kill)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000939 .addImm(NegFrameSize & 0xFFFF);
Bill Schmidtf381afc2013-08-20 03:12:23 +0000940 BuildMI(MBB, MBBI, dl, SubtractCarryingInst, ScratchReg)
941 .addReg(ScratchReg, RegState::Kill)
942 .addReg(TempReg, RegState::Kill);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000943 }
Bill Schmidtf381afc2013-08-20 03:12:23 +0000944 BuildMI(MBB, MBBI, dl, StoreUpdtIdxInst, SPReg)
945 .addReg(SPReg, RegState::Kill)
946 .addReg(SPReg)
947 .addReg(ScratchReg);
Hal Finkela7c54e82013-07-17 00:45:52 +0000948
Bill Schmidtf381afc2013-08-20 03:12:23 +0000949 } else if (!isLargeFrame) {
950 BuildMI(MBB, MBBI, dl, StoreUpdtInst, SPReg)
951 .addReg(SPReg)
952 .addImm(NegFrameSize)
953 .addReg(SPReg);
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000954
Bill Schmidtf381afc2013-08-20 03:12:23 +0000955 } else {
956 BuildMI(MBB, MBBI, dl, LoadImmShiftedInst, ScratchReg)
957 .addImm(NegFrameSize >> 16);
958 BuildMI(MBB, MBBI, dl, OrImmInst, ScratchReg)
959 .addReg(ScratchReg, RegState::Kill)
960 .addImm(NegFrameSize & 0xFFFF);
961 BuildMI(MBB, MBBI, dl, StoreUpdtIdxInst, SPReg)
962 .addReg(SPReg, RegState::Kill)
963 .addReg(SPReg)
964 .addReg(ScratchReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000965 }
966
Jay Foad1f0a44e2014-12-01 09:42:32 +0000967 // Add Call Frame Information for the instructions we generated above.
968 if (needsCFI) {
969 unsigned CFIIndex;
970
971 if (HasBP) {
972 // Define CFA in terms of BP. Do this in preference to using FP/SP,
973 // because if the stack needed aligning then CFA won't be at a fixed
974 // offset from FP/SP.
975 unsigned Reg = MRI->getDwarfRegNum(BPReg, true);
976 CFIIndex = MMI.addFrameInst(
977 MCCFIInstruction::createDefCfaRegister(nullptr, Reg));
978 } else {
979 // Adjust the definition of CFA to account for the change in SP.
980 assert(NegFrameSize);
981 CFIIndex = MMI.addFrameInst(
982 MCCFIInstruction::createDefCfaOffset(nullptr, NegFrameSize));
983 }
Eric Christopher612bb692014-04-29 00:16:46 +0000984 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
985 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000986
987 if (HasFP) {
Jay Foad1f0a44e2014-12-01 09:42:32 +0000988 // Describe where FP was saved, at a fixed offset from CFA.
Bill Schmidtf381afc2013-08-20 03:12:23 +0000989 unsigned Reg = MRI->getDwarfRegNum(FPReg, true);
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000990 CFIIndex = MMI.addFrameInst(
991 MCCFIInstruction::createOffset(nullptr, Reg, FPOffset));
Eric Christopher612bb692014-04-29 00:16:46 +0000992 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000993 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000994 }
995
Justin Hibbits654346e2015-01-10 01:57:21 +0000996 if (FI->usesPICBase()) {
997 // Describe where FP was saved, at a fixed offset from CFA.
998 unsigned Reg = MRI->getDwarfRegNum(PPC::R30, true);
999 CFIIndex = MMI.addFrameInst(
1000 MCCFIInstruction::createOffset(nullptr, Reg, PBPOffset));
1001 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
1002 .addCFIIndex(CFIIndex);
1003 }
1004
Hal Finkela7c54e82013-07-17 00:45:52 +00001005 if (HasBP) {
Jay Foad1f0a44e2014-12-01 09:42:32 +00001006 // Describe where BP was saved, at a fixed offset from CFA.
Bill Schmidtf381afc2013-08-20 03:12:23 +00001007 unsigned Reg = MRI->getDwarfRegNum(BPReg, true);
Rafael Espindolab1f25f12014-03-07 06:08:31 +00001008 CFIIndex = MMI.addFrameInst(
1009 MCCFIInstruction::createOffset(nullptr, Reg, BPOffset));
Eric Christopher612bb692014-04-29 00:16:46 +00001010 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +00001011 .addCFIIndex(CFIIndex);
Hal Finkela7c54e82013-07-17 00:45:52 +00001012 }
1013
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001014 if (MustSaveLR) {
Jay Foad1f0a44e2014-12-01 09:42:32 +00001015 // Describe where LR was saved, at a fixed offset from CFA.
Bill Schmidtf381afc2013-08-20 03:12:23 +00001016 unsigned Reg = MRI->getDwarfRegNum(LRReg, true);
Rafael Espindolab1f25f12014-03-07 06:08:31 +00001017 CFIIndex = MMI.addFrameInst(
1018 MCCFIInstruction::createOffset(nullptr, Reg, LROffset));
Eric Christopher612bb692014-04-29 00:16:46 +00001019 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +00001020 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001021 }
1022 }
1023
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001024 // If there is a frame pointer, copy R1 into R31
1025 if (HasFP) {
Bill Schmidtf381afc2013-08-20 03:12:23 +00001026 BuildMI(MBB, MBBI, dl, OrInst, FPReg)
1027 .addReg(SPReg)
1028 .addReg(SPReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001029
Jay Foad1f0a44e2014-12-01 09:42:32 +00001030 if (!HasBP && needsCFI) {
1031 // Change the definition of CFA from SP+offset to FP+offset, because SP
1032 // will change at every alloca.
Bill Schmidtf381afc2013-08-20 03:12:23 +00001033 unsigned Reg = MRI->getDwarfRegNum(FPReg, true);
Rafael Espindolab1f25f12014-03-07 06:08:31 +00001034 unsigned CFIIndex = MMI.addFrameInst(
1035 MCCFIInstruction::createDefCfaRegister(nullptr, Reg));
1036
Eric Christopher612bb692014-04-29 00:16:46 +00001037 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +00001038 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001039 }
1040 }
1041
Jay Foad1f0a44e2014-12-01 09:42:32 +00001042 if (needsCFI) {
1043 // Describe where callee saved registers were saved, at fixed offsets from
1044 // CFA.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001045 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
1046 for (unsigned I = 0, E = CSI.size(); I != E; ++I) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001047 unsigned Reg = CSI[I].getReg();
1048 if (Reg == PPC::LR || Reg == PPC::LR8 || Reg == PPC::RM) continue;
Rafael Espindola08600bc2011-05-30 20:20:15 +00001049
1050 // This is a bit of a hack: CR2LT, CR2GT, CR2EQ and CR2UN are just
1051 // subregisters of CR2. We just need to emit a move of CR2.
Craig Topperabadc662012-04-20 06:31:50 +00001052 if (PPC::CRBITRCRegClass.contains(Reg))
Rafael Espindola08600bc2011-05-30 20:20:15 +00001053 continue;
Rafael Espindola08600bc2011-05-30 20:20:15 +00001054
Roman Divackyc9e23d92012-09-12 14:47:47 +00001055 // For SVR4, don't emit a move for the CR spill slot if we haven't
1056 // spilled CRs.
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001057 if (isSVR4ABI && (PPC::CR2 <= Reg && Reg <= PPC::CR4)
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +00001058 && !MustSaveCR)
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001059 continue;
Roman Divackyc9e23d92012-09-12 14:47:47 +00001060
1061 // For 64-bit SVR4 when we have spilled CRs, the spill location
1062 // is SP+8, not a frame-relative slot.
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001063 if (isSVR4ABI && isPPC64 && (PPC::CR2 <= Reg && Reg <= PPC::CR4)) {
Ulrich Weigandbe928cc2014-07-21 00:03:18 +00001064 // In the ELFv1 ABI, only CR2 is noted in CFI and stands in for
1065 // the whole CR word. In the ELFv2 ABI, every CR that was
1066 // actually saved gets its own CFI record.
1067 unsigned CRReg = isELFv2ABI? Reg : (unsigned) PPC::CR2;
Rafael Espindolab1f25f12014-03-07 06:08:31 +00001068 unsigned CFIIndex = MMI.addFrameInst(MCCFIInstruction::createOffset(
Ulrich Weigandbe928cc2014-07-21 00:03:18 +00001069 nullptr, MRI->getDwarfRegNum(CRReg, true), 8));
Eric Christopher612bb692014-04-29 00:16:46 +00001070 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +00001071 .addCFIIndex(CFIIndex);
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001072 continue;
Roman Divackyc9e23d92012-09-12 14:47:47 +00001073 }
1074
1075 int Offset = MFI->getObjectOffset(CSI[I].getFrameIdx());
Rafael Espindolab1f25f12014-03-07 06:08:31 +00001076 unsigned CFIIndex = MMI.addFrameInst(MCCFIInstruction::createOffset(
1077 nullptr, MRI->getDwarfRegNum(Reg, true), Offset));
Eric Christopher612bb692014-04-29 00:16:46 +00001078 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +00001079 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001080 }
1081 }
1082}
1083
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001084void PPCFrameLowering::emitEpilogue(MachineFunction &MF,
Kit Bartond3b904d2015-09-10 01:55:44 +00001085 MachineBasicBlock &MBB) const {
1086 MachineBasicBlock::iterator MBBI = MBB.getFirstTerminator();
1087 DebugLoc dl;
1088
1089 if (MBBI != MBB.end())
1090 dl = MBBI->getDebugLoc();
1091
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001092 const PPCInstrInfo &TII =
Eric Christopher38522b82015-01-30 02:11:26 +00001093 *static_cast<const PPCInstrInfo *>(Subtarget.getInstrInfo());
Eric Christopherfc6de422014-08-05 02:39:49 +00001094 const PPCRegisterInfo *RegInfo =
Eric Christopher38522b82015-01-30 02:11:26 +00001095 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001096
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001097 // Get alignment info so we know how to restore the SP.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001098 const MachineFrameInfo *MFI = MF.getFrameInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001099
1100 // Get the number of bytes allocated from the FrameInfo.
1101 int FrameSize = MFI->getStackSize();
1102
1103 // Get processor type.
1104 bool isPPC64 = Subtarget.isPPC64();
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001105 // Get the ABI.
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001106 bool isSVR4ABI = Subtarget.isSVR4ABI();
1107
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001108 // Check if the link register (LR) has been saved.
1109 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
1110 bool MustSaveLR = FI->mustSaveLR();
Craig Topperb94011f2013-07-14 04:42:23 +00001111 const SmallVectorImpl<unsigned> &MustSaveCRs = FI->getMustSaveCRs();
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +00001112 bool MustSaveCR = !MustSaveCRs.empty();
Bill Schmidtf381afc2013-08-20 03:12:23 +00001113 // Do we have a frame pointer and/or base pointer for this function?
Anton Korobeynikov3eb4fed2010-12-18 19:53:14 +00001114 bool HasFP = hasFP(MF);
Hal Finkela7c54e82013-07-17 00:45:52 +00001115 bool HasBP = RegInfo->hasBasePointer(MF);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001116
Bill Schmidtf381afc2013-08-20 03:12:23 +00001117 unsigned SPReg = isPPC64 ? PPC::X1 : PPC::R1;
Hal Finkel3ee2af72014-07-18 23:29:49 +00001118 unsigned BPReg = RegInfo->getBaseRegister(MF);
Bill Schmidtf381afc2013-08-20 03:12:23 +00001119 unsigned FPReg = isPPC64 ? PPC::X31 : PPC::R31;
Kit Barton9c432ae2015-11-16 20:22:15 +00001120 unsigned ScratchReg = 0;
Bill Schmidtf381afc2013-08-20 03:12:23 +00001121 unsigned TempReg = isPPC64 ? PPC::X12 : PPC::R12; // another scratch reg
1122 const MCInstrDesc& MTLRInst = TII.get( isPPC64 ? PPC::MTLR8
1123 : PPC::MTLR );
1124 const MCInstrDesc& LoadInst = TII.get( isPPC64 ? PPC::LD
1125 : PPC::LWZ );
1126 const MCInstrDesc& LoadImmShiftedInst = TII.get( isPPC64 ? PPC::LIS8
1127 : PPC::LIS );
1128 const MCInstrDesc& OrImmInst = TII.get( isPPC64 ? PPC::ORI8
1129 : PPC::ORI );
1130 const MCInstrDesc& AddImmInst = TII.get( isPPC64 ? PPC::ADDI8
1131 : PPC::ADDI );
1132 const MCInstrDesc& AddInst = TII.get( isPPC64 ? PPC::ADD8
1133 : PPC::ADD4 );
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +00001134
Eric Christopherf71609b2015-02-13 00:39:27 +00001135 int LROffset = getReturnSaveOffset();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001136
1137 int FPOffset = 0;
Kit Barton9c432ae2015-11-16 20:22:15 +00001138
Nemanja Ivanovicdaf0ca22016-02-20 20:45:37 +00001139 // Using the same bool variable as below to supress compiler warnings.
1140 bool SingleScratchReg = findScratchRegister(&MBB, true, false, &ScratchReg,
1141 &TempReg);
1142 assert(SingleScratchReg &&
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +00001143 "Could not find an available scratch register");
1144
Nemanja Ivanovicdaf0ca22016-02-20 20:45:37 +00001145 SingleScratchReg = ScratchReg == TempReg;
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +00001146
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001147 if (HasFP) {
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001148 if (isSVR4ABI) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001149 MachineFrameInfo *FFI = MF.getFrameInfo();
1150 int FPIndex = FI->getFramePointerSaveIndex();
1151 assert(FPIndex && "No Frame Pointer Save Slot!");
1152 FPOffset = FFI->getObjectOffset(FPIndex);
1153 } else {
Eric Christopherdc3a8a42015-02-13 00:39:38 +00001154 FPOffset = getFramePointerSaveOffset();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001155 }
1156 }
1157
Hal Finkela7c54e82013-07-17 00:45:52 +00001158 int BPOffset = 0;
1159 if (HasBP) {
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001160 if (isSVR4ABI) {
Hal Finkela7c54e82013-07-17 00:45:52 +00001161 MachineFrameInfo *FFI = MF.getFrameInfo();
1162 int BPIndex = FI->getBasePointerSaveIndex();
1163 assert(BPIndex && "No Base Pointer Save Slot!");
1164 BPOffset = FFI->getObjectOffset(BPIndex);
1165 } else {
Eric Christopherfcd3d872015-02-13 22:48:53 +00001166 BPOffset = getBasePointerSaveOffset();
Hal Finkela7c54e82013-07-17 00:45:52 +00001167 }
1168 }
1169
Justin Hibbits654346e2015-01-10 01:57:21 +00001170 int PBPOffset = 0;
1171 if (FI->usesPICBase()) {
1172 MachineFrameInfo *FFI = MF.getFrameInfo();
1173 int PBPIndex = FI->getPICBasePointerSaveIndex();
1174 assert(PBPIndex && "No PIC Base Pointer Save Slot!");
1175 PBPOffset = FFI->getObjectOffset(PBPIndex);
1176 }
1177
NAKAMURA Takumi8061e862015-09-11 08:20:56 +00001178 bool IsReturnBlock = (MBBI != MBB.end() && MBBI->isReturn());
Kit Bartond3b904d2015-09-10 01:55:44 +00001179
1180 if (IsReturnBlock) {
1181 unsigned RetOpcode = MBBI->getOpcode();
1182 bool UsesTCRet = RetOpcode == PPC::TCRETURNri ||
1183 RetOpcode == PPC::TCRETURNdi ||
1184 RetOpcode == PPC::TCRETURNai ||
1185 RetOpcode == PPC::TCRETURNri8 ||
1186 RetOpcode == PPC::TCRETURNdi8 ||
1187 RetOpcode == PPC::TCRETURNai8;
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001188
Kit Bartond3b904d2015-09-10 01:55:44 +00001189 if (UsesTCRet) {
1190 int MaxTCRetDelta = FI->getTailCallSPDelta();
1191 MachineOperand &StackAdjust = MBBI->getOperand(1);
1192 assert(StackAdjust.isImm() && "Expecting immediate value.");
1193 // Adjust stack pointer.
1194 int StackAdj = StackAdjust.getImm();
1195 int Delta = StackAdj - MaxTCRetDelta;
1196 assert((Delta >= 0) && "Delta must be positive");
1197 if (MaxTCRetDelta>0)
1198 FrameSize += (StackAdj +Delta);
1199 else
1200 FrameSize += StackAdj;
1201 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001202 }
1203
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001204 // Frames of 32KB & larger require special handling because they cannot be
1205 // indexed into with a simple LD/LWZ immediate offset operand.
1206 bool isLargeFrame = !isInt<16>(FrameSize);
1207
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001208 if (FrameSize) {
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001209 // In the prologue, the loaded (or persistent) stack pointer value is offset
1210 // by the STDU/STDUX/STWU/STWUX instruction. Add this offset back now.
Bill Schmidtf381afc2013-08-20 03:12:23 +00001211
1212 // If this function contained a fastcc call and GuaranteedTailCallOpt is
1213 // enabled (=> hasFastCall()==true) the fastcc call might contain a tail
1214 // call which invalidates the stack pointer value in SP(0). So we use the
1215 // value of R31 in this case.
1216 if (FI->hasFastCall()) {
1217 assert(HasFP && "Expecting a valid frame pointer.");
1218 if (!isLargeFrame) {
1219 BuildMI(MBB, MBBI, dl, AddImmInst, SPReg)
1220 .addReg(FPReg).addImm(FrameSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001221 } else {
Bill Schmidtf381afc2013-08-20 03:12:23 +00001222 BuildMI(MBB, MBBI, dl, LoadImmShiftedInst, ScratchReg)
1223 .addImm(FrameSize >> 16);
1224 BuildMI(MBB, MBBI, dl, OrImmInst, ScratchReg)
1225 .addReg(ScratchReg, RegState::Kill)
1226 .addImm(FrameSize & 0xFFFF);
1227 BuildMI(MBB, MBBI, dl, AddInst)
1228 .addReg(SPReg)
1229 .addReg(FPReg)
1230 .addReg(ScratchReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001231 }
Bill Schmidtf381afc2013-08-20 03:12:23 +00001232 } else if (!isLargeFrame && !HasBP && !MFI->hasVarSizedObjects()) {
1233 BuildMI(MBB, MBBI, dl, AddImmInst, SPReg)
1234 .addReg(SPReg)
1235 .addImm(FrameSize);
1236 } else {
1237 BuildMI(MBB, MBBI, dl, LoadInst, SPReg)
1238 .addImm(0)
1239 .addReg(SPReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001240 }
1241 }
1242
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +00001243 assert((isPPC64 || !MustSaveCR) &&
1244 "Epilogue CR restoring supported only in 64-bit mode");
1245
1246 // If we need to save both the LR and the CR and we only have one available
1247 // scratch register, we must do them one at a time.
1248 if (MustSaveCR && SingleScratchReg && MustSaveLR) {
1249 BuildMI(MBB, MBBI, dl, TII.get(PPC::LWZ8), TempReg)
1250 .addImm(8)
1251 .addReg(SPReg);
1252 for (unsigned i = 0, e = MustSaveCRs.size(); i != e; ++i)
1253 BuildMI(MBB, MBBI, dl, TII.get(PPC::MTOCRF8), MustSaveCRs[i])
1254 .addReg(TempReg, getKillRegState(i == e-1));
1255 }
1256
Bill Schmidtf381afc2013-08-20 03:12:23 +00001257 if (MustSaveLR)
1258 BuildMI(MBB, MBBI, dl, LoadInst, ScratchReg)
1259 .addImm(LROffset)
1260 .addReg(SPReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001261
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +00001262 if (MustSaveCR &&
1263 !(SingleScratchReg && MustSaveLR)) // will only occur for PPC64
Bill Schmidtf381afc2013-08-20 03:12:23 +00001264 BuildMI(MBB, MBBI, dl, TII.get(PPC::LWZ8), TempReg)
1265 .addImm(8)
1266 .addReg(SPReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001267
Bill Schmidtf381afc2013-08-20 03:12:23 +00001268 if (HasFP)
1269 BuildMI(MBB, MBBI, dl, LoadInst, FPReg)
1270 .addImm(FPOffset)
1271 .addReg(SPReg);
Hal Finkela7c54e82013-07-17 00:45:52 +00001272
Justin Hibbits654346e2015-01-10 01:57:21 +00001273 if (FI->usesPICBase())
Justin Hibbits98a532d2015-01-08 15:47:19 +00001274 // FIXME: On PPC32 SVR4, we must not spill before claiming the stackframe.
1275 BuildMI(MBB, MBBI, dl, LoadInst)
1276 .addReg(PPC::R30)
Justin Hibbits654346e2015-01-10 01:57:21 +00001277 .addImm(PBPOffset)
Justin Hibbits98a532d2015-01-08 15:47:19 +00001278 .addReg(SPReg);
1279
Bill Schmidtf381afc2013-08-20 03:12:23 +00001280 if (HasBP)
1281 BuildMI(MBB, MBBI, dl, LoadInst, BPReg)
1282 .addImm(BPOffset)
1283 .addReg(SPReg);
Hal Finkel67369882013-04-15 02:07:05 +00001284
Nemanja Ivanovicae22101c2016-02-20 18:16:25 +00001285 if (MustSaveCR &&
1286 !(SingleScratchReg && MustSaveLR)) // will only occur for PPC64
Bill Schmidtf381afc2013-08-20 03:12:23 +00001287 for (unsigned i = 0, e = MustSaveCRs.size(); i != e; ++i)
1288 BuildMI(MBB, MBBI, dl, TII.get(PPC::MTOCRF8), MustSaveCRs[i])
1289 .addReg(TempReg, getKillRegState(i == e-1));
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001290
Bill Schmidtf381afc2013-08-20 03:12:23 +00001291 if (MustSaveLR)
1292 BuildMI(MBB, MBBI, dl, MTLRInst).addReg(ScratchReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001293
1294 // Callee pop calling convention. Pop parameter/linkage area. Used for tail
1295 // call optimization
Kit Bartond3b904d2015-09-10 01:55:44 +00001296 if (IsReturnBlock) {
1297 unsigned RetOpcode = MBBI->getOpcode();
1298 if (MF.getTarget().Options.GuaranteedTailCallOpt &&
1299 (RetOpcode == PPC::BLR || RetOpcode == PPC::BLR8) &&
1300 MF.getFunction()->getCallingConv() == CallingConv::Fast) {
1301 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
1302 unsigned CallerAllocatedAmt = FI->getMinReservedArea();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001303
Kit Bartond3b904d2015-09-10 01:55:44 +00001304 if (CallerAllocatedAmt && isInt<16>(CallerAllocatedAmt)) {
1305 BuildMI(MBB, MBBI, dl, AddImmInst, SPReg)
1306 .addReg(SPReg).addImm(CallerAllocatedAmt);
1307 } else {
1308 BuildMI(MBB, MBBI, dl, LoadImmShiftedInst, ScratchReg)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001309 .addImm(CallerAllocatedAmt >> 16);
Kit Bartond3b904d2015-09-10 01:55:44 +00001310 BuildMI(MBB, MBBI, dl, OrImmInst, ScratchReg)
Bill Schmidtf381afc2013-08-20 03:12:23 +00001311 .addReg(ScratchReg, RegState::Kill)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001312 .addImm(CallerAllocatedAmt & 0xFFFF);
Kit Bartond3b904d2015-09-10 01:55:44 +00001313 BuildMI(MBB, MBBI, dl, AddInst)
Bill Schmidtf381afc2013-08-20 03:12:23 +00001314 .addReg(SPReg)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001315 .addReg(FPReg)
Bill Schmidtf381afc2013-08-20 03:12:23 +00001316 .addReg(ScratchReg);
Kit Bartond3b904d2015-09-10 01:55:44 +00001317 }
1318 } else if (RetOpcode == PPC::TCRETURNdi) {
1319 MBBI = MBB.getLastNonDebugInstr();
1320 MachineOperand &JumpTarget = MBBI->getOperand(0);
1321 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILB)).
1322 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset());
1323 } else if (RetOpcode == PPC::TCRETURNri) {
1324 MBBI = MBB.getLastNonDebugInstr();
1325 assert(MBBI->getOperand(0).isReg() && "Expecting register operand.");
1326 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBCTR));
1327 } else if (RetOpcode == PPC::TCRETURNai) {
1328 MBBI = MBB.getLastNonDebugInstr();
1329 MachineOperand &JumpTarget = MBBI->getOperand(0);
1330 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBA)).addImm(JumpTarget.getImm());
1331 } else if (RetOpcode == PPC::TCRETURNdi8) {
1332 MBBI = MBB.getLastNonDebugInstr();
1333 MachineOperand &JumpTarget = MBBI->getOperand(0);
1334 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILB8)).
1335 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset());
1336 } else if (RetOpcode == PPC::TCRETURNri8) {
1337 MBBI = MBB.getLastNonDebugInstr();
1338 assert(MBBI->getOperand(0).isReg() && "Expecting register operand.");
1339 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBCTR8));
1340 } else if (RetOpcode == PPC::TCRETURNai8) {
1341 MBBI = MBB.getLastNonDebugInstr();
1342 MachineOperand &JumpTarget = MBBI->getOperand(0);
1343 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBA8)).addImm(JumpTarget.getImm());
1344 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001345 }
1346}
Anton Korobeynikov14ee3442010-11-18 23:25:52 +00001347
Matthias Braun02564862015-07-14 17:17:13 +00001348void PPCFrameLowering::determineCalleeSaves(MachineFunction &MF,
1349 BitVector &SavedRegs,
1350 RegScavenger *RS) const {
1351 TargetFrameLowering::determineCalleeSaves(MF, SavedRegs, RS);
1352
Eric Christopherfc6de422014-08-05 02:39:49 +00001353 const PPCRegisterInfo *RegInfo =
Eric Christopher38522b82015-01-30 02:11:26 +00001354 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001355
1356 // Save and clear the LR state.
1357 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
1358 unsigned LR = RegInfo->getRARegister();
1359 FI->setMustSaveLR(MustSaveLR(MF, LR));
Matthias Braun02564862015-07-14 17:17:13 +00001360 SavedRegs.reset(LR);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001361
1362 // Save R31 if necessary
1363 int FPSI = FI->getFramePointerSaveIndex();
1364 bool isPPC64 = Subtarget.isPPC64();
1365 bool isDarwinABI = Subtarget.isDarwinABI();
1366 MachineFrameInfo *MFI = MF.getFrameInfo();
1367
1368 // If the frame pointer save index hasn't been defined yet.
Anton Korobeynikov3eb4fed2010-12-18 19:53:14 +00001369 if (!FPSI && needsFP(MF)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001370 // Find out what the fix offset of the frame pointer save area.
Eric Christopherdc3a8a42015-02-13 00:39:38 +00001371 int FPOffset = getFramePointerSaveOffset();
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001372 // Allocate the frame index for frame pointer save area.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001373 FPSI = MFI->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001374 // Save the result.
1375 FI->setFramePointerSaveIndex(FPSI);
1376 }
1377
Hal Finkela7c54e82013-07-17 00:45:52 +00001378 int BPSI = FI->getBasePointerSaveIndex();
1379 if (!BPSI && RegInfo->hasBasePointer(MF)) {
Eric Christopherfcd3d872015-02-13 22:48:53 +00001380 int BPOffset = getBasePointerSaveOffset();
Hal Finkela7c54e82013-07-17 00:45:52 +00001381 // Allocate the frame index for the base pointer save area.
1382 BPSI = MFI->CreateFixedObject(isPPC64? 8 : 4, BPOffset, true);
1383 // Save the result.
1384 FI->setBasePointerSaveIndex(BPSI);
1385 }
1386
Justin Hibbits654346e2015-01-10 01:57:21 +00001387 // Reserve stack space for the PIC Base register (R30).
1388 // Only used in SVR4 32-bit.
1389 if (FI->usesPICBase()) {
Saleem Abdulrasool3e190cb2015-08-14 03:48:35 +00001390 int PBPSI = MFI->CreateFixedObject(4, -8, true);
Justin Hibbits654346e2015-01-10 01:57:21 +00001391 FI->setPICBasePointerSaveIndex(PBPSI);
1392 }
1393
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001394 // Reserve stack space to move the linkage area to in case of a tail call.
1395 int TCSPDelta = 0;
Nick Lewycky50f02cb2011-12-02 22:16:29 +00001396 if (MF.getTarget().Options.GuaranteedTailCallOpt &&
1397 (TCSPDelta = FI->getTailCallSPDelta()) < 0) {
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001398 MFI->CreateFixedObject(-1 * TCSPDelta, TCSPDelta, true);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001399 }
1400
Eric Christopherd1737492014-04-29 00:16:40 +00001401 // For 32-bit SVR4, allocate the nonvolatile CR spill slot iff the
Bill Schmidtc68c6df2013-02-24 17:34:50 +00001402 // function uses CR 2, 3, or 4.
Eric Christopherd1737492014-04-29 00:16:40 +00001403 if (!isPPC64 && !isDarwinABI &&
Matthias Braun02564862015-07-14 17:17:13 +00001404 (SavedRegs.test(PPC::CR2) ||
1405 SavedRegs.test(PPC::CR3) ||
1406 SavedRegs.test(PPC::CR4))) {
Bill Schmidtc68c6df2013-02-24 17:34:50 +00001407 int FrameIdx = MFI->CreateFixedObject((uint64_t)4, (int64_t)-4, true);
1408 FI->setCRSpillFrameIndex(FrameIdx);
1409 }
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001410}
1411
Hal Finkel5a765fd2013-03-14 20:33:40 +00001412void PPCFrameLowering::processFunctionBeforeFrameFinalized(MachineFunction &MF,
Hal Finkelbb420f12013-03-15 05:06:04 +00001413 RegScavenger *RS) const {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001414 // Early exit if not using the SVR4 ABI.
Hal Finkelbb420f12013-03-15 05:06:04 +00001415 if (!Subtarget.isSVR4ABI()) {
1416 addScavengingSpillSlot(MF, RS);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001417 return;
Hal Finkelbb420f12013-03-15 05:06:04 +00001418 }
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001419
1420 // Get callee saved register information.
1421 MachineFrameInfo *FFI = MF.getFrameInfo();
1422 const std::vector<CalleeSavedInfo> &CSI = FFI->getCalleeSavedInfo();
1423
1424 // Early exit if no callee saved registers are modified!
Anton Korobeynikov3eb4fed2010-12-18 19:53:14 +00001425 if (CSI.empty() && !needsFP(MF)) {
Hal Finkelbb420f12013-03-15 05:06:04 +00001426 addScavengingSpillSlot(MF, RS);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001427 return;
1428 }
1429
1430 unsigned MinGPR = PPC::R31;
1431 unsigned MinG8R = PPC::X31;
1432 unsigned MinFPR = PPC::F31;
1433 unsigned MinVR = PPC::V31;
1434
1435 bool HasGPSaveArea = false;
1436 bool HasG8SaveArea = false;
1437 bool HasFPSaveArea = false;
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001438 bool HasVRSAVESaveArea = false;
1439 bool HasVRSaveArea = false;
1440
1441 SmallVector<CalleeSavedInfo, 18> GPRegs;
1442 SmallVector<CalleeSavedInfo, 18> G8Regs;
1443 SmallVector<CalleeSavedInfo, 18> FPRegs;
1444 SmallVector<CalleeSavedInfo, 18> VRegs;
1445
1446 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1447 unsigned Reg = CSI[i].getReg();
Craig Topperabadc662012-04-20 06:31:50 +00001448 if (PPC::GPRCRegClass.contains(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001449 HasGPSaveArea = true;
1450
1451 GPRegs.push_back(CSI[i]);
1452
1453 if (Reg < MinGPR) {
1454 MinGPR = Reg;
1455 }
Craig Topperabadc662012-04-20 06:31:50 +00001456 } else if (PPC::G8RCRegClass.contains(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001457 HasG8SaveArea = true;
1458
1459 G8Regs.push_back(CSI[i]);
1460
1461 if (Reg < MinG8R) {
1462 MinG8R = Reg;
1463 }
Craig Topperabadc662012-04-20 06:31:50 +00001464 } else if (PPC::F8RCRegClass.contains(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001465 HasFPSaveArea = true;
1466
1467 FPRegs.push_back(CSI[i]);
1468
1469 if (Reg < MinFPR) {
1470 MinFPR = Reg;
1471 }
Craig Topperabadc662012-04-20 06:31:50 +00001472 } else if (PPC::CRBITRCRegClass.contains(Reg) ||
1473 PPC::CRRCRegClass.contains(Reg)) {
Roman Divackyc9e23d92012-09-12 14:47:47 +00001474 ; // do nothing, as we already know whether CRs are spilled
Craig Topperabadc662012-04-20 06:31:50 +00001475 } else if (PPC::VRSAVERCRegClass.contains(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001476 HasVRSAVESaveArea = true;
Craig Topperabadc662012-04-20 06:31:50 +00001477 } else if (PPC::VRRCRegClass.contains(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001478 HasVRSaveArea = true;
1479
1480 VRegs.push_back(CSI[i]);
1481
1482 if (Reg < MinVR) {
1483 MinVR = Reg;
1484 }
1485 } else {
1486 llvm_unreachable("Unknown RegisterClass!");
1487 }
1488 }
1489
1490 PPCFunctionInfo *PFI = MF.getInfo<PPCFunctionInfo>();
Eric Christopher38522b82015-01-30 02:11:26 +00001491 const TargetRegisterInfo *TRI = Subtarget.getRegisterInfo();
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001492
1493 int64_t LowerBound = 0;
1494
1495 // Take into account stack space reserved for tail calls.
1496 int TCSPDelta = 0;
Nick Lewycky50f02cb2011-12-02 22:16:29 +00001497 if (MF.getTarget().Options.GuaranteedTailCallOpt &&
1498 (TCSPDelta = PFI->getTailCallSPDelta()) < 0) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001499 LowerBound = TCSPDelta;
1500 }
1501
1502 // The Floating-point register save area is right below the back chain word
1503 // of the previous stack frame.
1504 if (HasFPSaveArea) {
1505 for (unsigned i = 0, e = FPRegs.size(); i != e; ++i) {
1506 int FI = FPRegs[i].getFrameIdx();
1507
1508 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1509 }
1510
Hal Finkelfeea6532013-03-26 20:08:20 +00001511 LowerBound -= (31 - TRI->getEncodingValue(MinFPR) + 1) * 8;
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001512 }
1513
1514 // Check whether the frame pointer register is allocated. If so, make sure it
1515 // is spilled to the correct offset.
Anton Korobeynikov3eb4fed2010-12-18 19:53:14 +00001516 if (needsFP(MF)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001517 HasGPSaveArea = true;
1518
1519 int FI = PFI->getFramePointerSaveIndex();
1520 assert(FI && "No Frame Pointer Save Slot!");
1521
1522 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1523 }
1524
Justin Hibbits654346e2015-01-10 01:57:21 +00001525 if (PFI->usesPICBase()) {
1526 HasGPSaveArea = true;
1527
1528 int FI = PFI->getPICBasePointerSaveIndex();
1529 assert(FI && "No PIC Base Pointer Save Slot!");
1530
1531 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1532 }
1533
Eric Christopherfc6de422014-08-05 02:39:49 +00001534 const PPCRegisterInfo *RegInfo =
Eric Christopher38522b82015-01-30 02:11:26 +00001535 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
Hal Finkela7c54e82013-07-17 00:45:52 +00001536 if (RegInfo->hasBasePointer(MF)) {
1537 HasGPSaveArea = true;
1538
1539 int FI = PFI->getBasePointerSaveIndex();
1540 assert(FI && "No Base Pointer Save Slot!");
1541
1542 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1543 }
1544
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001545 // General register save area starts right below the Floating-point
1546 // register save area.
1547 if (HasGPSaveArea || HasG8SaveArea) {
1548 // Move general register save area spill slots down, taking into account
1549 // the size of the Floating-point register save area.
1550 for (unsigned i = 0, e = GPRegs.size(); i != e; ++i) {
1551 int FI = GPRegs[i].getFrameIdx();
1552
1553 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1554 }
1555
1556 // Move general register save area spill slots down, taking into account
1557 // the size of the Floating-point register save area.
1558 for (unsigned i = 0, e = G8Regs.size(); i != e; ++i) {
1559 int FI = G8Regs[i].getFrameIdx();
1560
1561 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1562 }
1563
1564 unsigned MinReg =
Hal Finkelfeea6532013-03-26 20:08:20 +00001565 std::min<unsigned>(TRI->getEncodingValue(MinGPR),
1566 TRI->getEncodingValue(MinG8R));
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001567
1568 if (Subtarget.isPPC64()) {
1569 LowerBound -= (31 - MinReg + 1) * 8;
1570 } else {
1571 LowerBound -= (31 - MinReg + 1) * 4;
1572 }
1573 }
1574
Roman Divackyc9e23d92012-09-12 14:47:47 +00001575 // For 32-bit only, the CR save area is below the general register
1576 // save area. For 64-bit SVR4, the CR save area is addressed relative
1577 // to the stack pointer and hence does not need an adjustment here.
1578 // Only CR2 (the first nonvolatile spilled) has an associated frame
1579 // index so that we have a single uniform save area.
1580 if (spillsCR(MF) && !(Subtarget.isPPC64() && Subtarget.isSVR4ABI())) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001581 // Adjust the frame index of the CR spill slot.
1582 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1583 unsigned Reg = CSI[i].getReg();
1584
Roman Divackyc9e23d92012-09-12 14:47:47 +00001585 if ((Subtarget.isSVR4ABI() && Reg == PPC::CR2)
Eric Christopherd1737492014-04-29 00:16:40 +00001586 // Leave Darwin logic as-is.
1587 || (!Subtarget.isSVR4ABI() &&
1588 (PPC::CRBITRCRegClass.contains(Reg) ||
1589 PPC::CRRCRegClass.contains(Reg)))) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001590 int FI = CSI[i].getFrameIdx();
1591
1592 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1593 }
1594 }
1595
1596 LowerBound -= 4; // The CR save area is always 4 bytes long.
1597 }
1598
1599 if (HasVRSAVESaveArea) {
1600 // FIXME SVR4: Is it actually possible to have multiple elements in CSI
1601 // which have the VRSAVE register class?
1602 // Adjust the frame index of the VRSAVE spill slot.
1603 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1604 unsigned Reg = CSI[i].getReg();
1605
Craig Topperabadc662012-04-20 06:31:50 +00001606 if (PPC::VRSAVERCRegClass.contains(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001607 int FI = CSI[i].getFrameIdx();
1608
1609 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1610 }
1611 }
1612
1613 LowerBound -= 4; // The VRSAVE save area is always 4 bytes long.
1614 }
1615
1616 if (HasVRSaveArea) {
1617 // Insert alignment padding, we need 16-byte alignment.
1618 LowerBound = (LowerBound - 15) & ~(15);
1619
1620 for (unsigned i = 0, e = VRegs.size(); i != e; ++i) {
1621 int FI = VRegs[i].getFrameIdx();
1622
1623 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1624 }
1625 }
Hal Finkelbb420f12013-03-15 05:06:04 +00001626
1627 addScavengingSpillSlot(MF, RS);
1628}
1629
1630void
1631PPCFrameLowering::addScavengingSpillSlot(MachineFunction &MF,
1632 RegScavenger *RS) const {
1633 // Reserve a slot closest to SP or frame pointer if we have a dynalloc or
1634 // a large stack, which will require scavenging a register to materialize a
1635 // large offset.
1636
1637 // We need to have a scavenger spill slot for spills if the frame size is
1638 // large. In case there is no free register for large-offset addressing,
1639 // this slot is used for the necessary emergency spill. Also, we need the
1640 // slot for dynamic stack allocations.
1641
1642 // The scavenger might be invoked if the frame offset does not fit into
1643 // the 16-bit immediate. We don't know the complete frame size here
1644 // because we've not yet computed callee-saved register spills or the
1645 // needed alignment padding.
1646 unsigned StackSize = determineFrameLayout(MF, false, true);
1647 MachineFrameInfo *MFI = MF.getFrameInfo();
Hal Finkelcc1eeda2013-03-23 22:06:03 +00001648 if (MFI->hasVarSizedObjects() || spillsCR(MF) || spillsVRSAVE(MF) ||
1649 hasNonRISpills(MF) || (hasSpills(MF) && !isInt<16>(StackSize))) {
Hal Finkelbb420f12013-03-15 05:06:04 +00001650 const TargetRegisterClass *GPRC = &PPC::GPRCRegClass;
1651 const TargetRegisterClass *G8RC = &PPC::G8RCRegClass;
1652 const TargetRegisterClass *RC = Subtarget.isPPC64() ? G8RC : GPRC;
Hal Finkel9e331c22013-03-22 23:32:27 +00001653 RS->addScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(),
Hal Finkelbb420f12013-03-15 05:06:04 +00001654 RC->getAlignment(),
1655 false));
Hal Finkel0dfbb052013-03-26 18:57:22 +00001656
Hal Finkel18607632013-07-18 04:28:21 +00001657 // Might we have over-aligned allocas?
1658 bool HasAlVars = MFI->hasVarSizedObjects() &&
1659 MFI->getMaxAlignment() > getStackAlignment();
1660
Hal Finkel0dfbb052013-03-26 18:57:22 +00001661 // These kinds of spills might need two registers.
Hal Finkel18607632013-07-18 04:28:21 +00001662 if (spillsCR(MF) || spillsVRSAVE(MF) || HasAlVars)
Hal Finkel0dfbb052013-03-26 18:57:22 +00001663 RS->addScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(),
1664 RC->getAlignment(),
1665 false));
1666
Hal Finkelbb420f12013-03-15 05:06:04 +00001667 }
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001668}
Roman Divackyc9e23d92012-09-12 14:47:47 +00001669
Eric Christopherd1737492014-04-29 00:16:40 +00001670bool
Roman Divackyc9e23d92012-09-12 14:47:47 +00001671PPCFrameLowering::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
Eric Christopherd1737492014-04-29 00:16:40 +00001672 MachineBasicBlock::iterator MI,
1673 const std::vector<CalleeSavedInfo> &CSI,
1674 const TargetRegisterInfo *TRI) const {
Roman Divackyc9e23d92012-09-12 14:47:47 +00001675
1676 // Currently, this function only handles SVR4 32- and 64-bit ABIs.
1677 // Return false otherwise to maintain pre-existing behavior.
1678 if (!Subtarget.isSVR4ABI())
1679 return false;
1680
1681 MachineFunction *MF = MBB.getParent();
1682 const PPCInstrInfo &TII =
Eric Christopher38522b82015-01-30 02:11:26 +00001683 *static_cast<const PPCInstrInfo *>(Subtarget.getInstrInfo());
Roman Divackyc9e23d92012-09-12 14:47:47 +00001684 DebugLoc DL;
1685 bool CRSpilled = false;
Hal Finkel2f293912013-04-13 23:06:15 +00001686 MachineInstrBuilder CRMIB;
Eric Christopherd1737492014-04-29 00:16:40 +00001687
Roman Divackyc9e23d92012-09-12 14:47:47 +00001688 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1689 unsigned Reg = CSI[i].getReg();
Hal Finkelac1a24b2013-06-28 22:29:56 +00001690 // Only Darwin actually uses the VRSAVE register, but it can still appear
1691 // here if, for example, @llvm.eh.unwind.init() is used. If we're not on
1692 // Darwin, ignore it.
1693 if (Reg == PPC::VRSAVE && !Subtarget.isDarwinABI())
1694 continue;
1695
Roman Divackyc9e23d92012-09-12 14:47:47 +00001696 // CR2 through CR4 are the nonvolatile CR fields.
1697 bool IsCRField = PPC::CR2 <= Reg && Reg <= PPC::CR4;
1698
Roman Divackyc9e23d92012-09-12 14:47:47 +00001699 // Add the callee-saved register as live-in; it's killed at the spill.
1700 MBB.addLiveIn(Reg);
1701
Hal Finkel2f293912013-04-13 23:06:15 +00001702 if (CRSpilled && IsCRField) {
1703 CRMIB.addReg(Reg, RegState::ImplicitKill);
1704 continue;
1705 }
1706
Roman Divackyc9e23d92012-09-12 14:47:47 +00001707 // Insert the spill to the stack frame.
1708 if (IsCRField) {
Hal Finkel67369882013-04-15 02:07:05 +00001709 PPCFunctionInfo *FuncInfo = MF->getInfo<PPCFunctionInfo>();
Roman Divackyc9e23d92012-09-12 14:47:47 +00001710 if (Subtarget.isPPC64()) {
Hal Finkel67369882013-04-15 02:07:05 +00001711 // The actual spill will happen at the start of the prologue.
1712 FuncInfo->addMustSaveCR(Reg);
Roman Divackyc9e23d92012-09-12 14:47:47 +00001713 } else {
Hal Finkel67369882013-04-15 02:07:05 +00001714 CRSpilled = true;
Bill Schmidtef3d1a22013-05-14 16:08:32 +00001715 FuncInfo->setSpillsCR();
Hal Finkel67369882013-04-15 02:07:05 +00001716
Eric Christopherd1737492014-04-29 00:16:40 +00001717 // 32-bit: FP-relative. Note that we made sure CR2-CR4 all have
1718 // the same frame index in PPCRegisterInfo::hasReservedSpillSlot.
1719 CRMIB = BuildMI(*MF, DL, TII.get(PPC::MFCR), PPC::R12)
Hal Finkel2f293912013-04-13 23:06:15 +00001720 .addReg(Reg, RegState::ImplicitKill);
1721
Eric Christopherd1737492014-04-29 00:16:40 +00001722 MBB.insert(MI, CRMIB);
1723 MBB.insert(MI, addFrameReference(BuildMI(*MF, DL, TII.get(PPC::STW))
1724 .addReg(PPC::R12,
1725 getKillRegState(true)),
1726 CSI[i].getFrameIdx()));
Roman Divackyc9e23d92012-09-12 14:47:47 +00001727 }
Roman Divackyc9e23d92012-09-12 14:47:47 +00001728 } else {
1729 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1730 TII.storeRegToStackSlot(MBB, MI, Reg, true,
Eric Christopherd1737492014-04-29 00:16:40 +00001731 CSI[i].getFrameIdx(), RC, TRI);
Roman Divackyc9e23d92012-09-12 14:47:47 +00001732 }
1733 }
1734 return true;
1735}
1736
1737static void
Hal Finkeld85a04b2013-04-13 08:09:20 +00001738restoreCRs(bool isPPC64, bool is31,
1739 bool CR2Spilled, bool CR3Spilled, bool CR4Spilled,
Eric Christopherd1737492014-04-29 00:16:40 +00001740 MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
1741 const std::vector<CalleeSavedInfo> &CSI, unsigned CSIIndex) {
Roman Divackyc9e23d92012-09-12 14:47:47 +00001742
1743 MachineFunction *MF = MBB.getParent();
Eric Christophercccae792015-01-30 22:02:31 +00001744 const PPCInstrInfo &TII = *MF->getSubtarget<PPCSubtarget>().getInstrInfo();
Roman Divackyc9e23d92012-09-12 14:47:47 +00001745 DebugLoc DL;
1746 unsigned RestoreOp, MoveReg;
1747
Hal Finkel67369882013-04-15 02:07:05 +00001748 if (isPPC64)
1749 // This is handled during epilogue generation.
1750 return;
1751 else {
Roman Divackyc9e23d92012-09-12 14:47:47 +00001752 // 32-bit: FP-relative
1753 MBB.insert(MI, addFrameReference(BuildMI(*MF, DL, TII.get(PPC::LWZ),
Eric Christopherd1737492014-04-29 00:16:40 +00001754 PPC::R12),
1755 CSI[CSIIndex].getFrameIdx()));
Ulrich Weigand49f487e2013-07-03 17:59:07 +00001756 RestoreOp = PPC::MTOCRF;
Roman Divackyc9e23d92012-09-12 14:47:47 +00001757 MoveReg = PPC::R12;
1758 }
Eric Christopherd1737492014-04-29 00:16:40 +00001759
Roman Divackyc9e23d92012-09-12 14:47:47 +00001760 if (CR2Spilled)
1761 MBB.insert(MI, BuildMI(*MF, DL, TII.get(RestoreOp), PPC::CR2)
Hal Finkel035b4822013-03-28 03:38:16 +00001762 .addReg(MoveReg, getKillRegState(!CR3Spilled && !CR4Spilled)));
Roman Divackyc9e23d92012-09-12 14:47:47 +00001763
1764 if (CR3Spilled)
1765 MBB.insert(MI, BuildMI(*MF, DL, TII.get(RestoreOp), PPC::CR3)
Hal Finkel035b4822013-03-28 03:38:16 +00001766 .addReg(MoveReg, getKillRegState(!CR4Spilled)));
Roman Divackyc9e23d92012-09-12 14:47:47 +00001767
1768 if (CR4Spilled)
1769 MBB.insert(MI, BuildMI(*MF, DL, TII.get(RestoreOp), PPC::CR4)
Hal Finkel035b4822013-03-28 03:38:16 +00001770 .addReg(MoveReg, getKillRegState(true)));
Roman Divackyc9e23d92012-09-12 14:47:47 +00001771}
1772
Eli Bendersky8da87162013-02-21 20:05:00 +00001773void PPCFrameLowering::
1774eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
1775 MachineBasicBlock::iterator I) const {
Eric Christopher38522b82015-01-30 02:11:26 +00001776 const TargetInstrInfo &TII = *Subtarget.getInstrInfo();
Eli Bendersky8da87162013-02-21 20:05:00 +00001777 if (MF.getTarget().Options.GuaranteedTailCallOpt &&
1778 I->getOpcode() == PPC::ADJCALLSTACKUP) {
1779 // Add (actually subtract) back the amount the callee popped on return.
1780 if (int CalleeAmt = I->getOperand(1).getImm()) {
1781 bool is64Bit = Subtarget.isPPC64();
1782 CalleeAmt *= -1;
1783 unsigned StackReg = is64Bit ? PPC::X1 : PPC::R1;
1784 unsigned TmpReg = is64Bit ? PPC::X0 : PPC::R0;
1785 unsigned ADDIInstr = is64Bit ? PPC::ADDI8 : PPC::ADDI;
1786 unsigned ADDInstr = is64Bit ? PPC::ADD8 : PPC::ADD4;
1787 unsigned LISInstr = is64Bit ? PPC::LIS8 : PPC::LIS;
1788 unsigned ORIInstr = is64Bit ? PPC::ORI8 : PPC::ORI;
1789 MachineInstr *MI = I;
1790 DebugLoc dl = MI->getDebugLoc();
1791
1792 if (isInt<16>(CalleeAmt)) {
1793 BuildMI(MBB, I, dl, TII.get(ADDIInstr), StackReg)
1794 .addReg(StackReg, RegState::Kill)
1795 .addImm(CalleeAmt);
1796 } else {
1797 MachineBasicBlock::iterator MBBI = I;
1798 BuildMI(MBB, MBBI, dl, TII.get(LISInstr), TmpReg)
1799 .addImm(CalleeAmt >> 16);
1800 BuildMI(MBB, MBBI, dl, TII.get(ORIInstr), TmpReg)
1801 .addReg(TmpReg, RegState::Kill)
1802 .addImm(CalleeAmt & 0xFFFF);
1803 BuildMI(MBB, MBBI, dl, TII.get(ADDInstr), StackReg)
1804 .addReg(StackReg, RegState::Kill)
1805 .addReg(TmpReg);
1806 }
1807 }
1808 }
1809 // Simply discard ADJCALLSTACKDOWN, ADJCALLSTACKUP instructions.
1810 MBB.erase(I);
1811}
1812
Eric Christopherd1737492014-04-29 00:16:40 +00001813bool
Roman Divackyc9e23d92012-09-12 14:47:47 +00001814PPCFrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
Eric Christopherd1737492014-04-29 00:16:40 +00001815 MachineBasicBlock::iterator MI,
1816 const std::vector<CalleeSavedInfo> &CSI,
1817 const TargetRegisterInfo *TRI) const {
Roman Divackyc9e23d92012-09-12 14:47:47 +00001818
1819 // Currently, this function only handles SVR4 32- and 64-bit ABIs.
1820 // Return false otherwise to maintain pre-existing behavior.
1821 if (!Subtarget.isSVR4ABI())
1822 return false;
1823
1824 MachineFunction *MF = MBB.getParent();
1825 const PPCInstrInfo &TII =
Eric Christopher38522b82015-01-30 02:11:26 +00001826 *static_cast<const PPCInstrInfo *>(Subtarget.getInstrInfo());
Roman Divackyc9e23d92012-09-12 14:47:47 +00001827 bool CR2Spilled = false;
1828 bool CR3Spilled = false;
1829 bool CR4Spilled = false;
1830 unsigned CSIIndex = 0;
1831
1832 // Initialize insertion-point logic; we will be restoring in reverse
1833 // order of spill.
1834 MachineBasicBlock::iterator I = MI, BeforeI = I;
1835 bool AtStart = I == MBB.begin();
1836
1837 if (!AtStart)
1838 --BeforeI;
1839
1840 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1841 unsigned Reg = CSI[i].getReg();
1842
Hal Finkelac1a24b2013-06-28 22:29:56 +00001843 // Only Darwin actually uses the VRSAVE register, but it can still appear
1844 // here if, for example, @llvm.eh.unwind.init() is used. If we're not on
1845 // Darwin, ignore it.
1846 if (Reg == PPC::VRSAVE && !Subtarget.isDarwinABI())
1847 continue;
1848
Roman Divackyc9e23d92012-09-12 14:47:47 +00001849 if (Reg == PPC::CR2) {
1850 CR2Spilled = true;
1851 // The spill slot is associated only with CR2, which is the
1852 // first nonvolatile spilled. Save it here.
1853 CSIIndex = i;
1854 continue;
1855 } else if (Reg == PPC::CR3) {
1856 CR3Spilled = true;
1857 continue;
1858 } else if (Reg == PPC::CR4) {
1859 CR4Spilled = true;
1860 continue;
1861 } else {
1862 // When we first encounter a non-CR register after seeing at
1863 // least one CR register, restore all spilled CRs together.
1864 if ((CR2Spilled || CR3Spilled || CR4Spilled)
Eric Christopherd1737492014-04-29 00:16:40 +00001865 && !(PPC::CR2 <= Reg && Reg <= PPC::CR4)) {
Hal Finkeld85a04b2013-04-13 08:09:20 +00001866 bool is31 = needsFP(*MF);
1867 restoreCRs(Subtarget.isPPC64(), is31,
1868 CR2Spilled, CR3Spilled, CR4Spilled,
Eric Christopherd1737492014-04-29 00:16:40 +00001869 MBB, I, CSI, CSIIndex);
1870 CR2Spilled = CR3Spilled = CR4Spilled = false;
Roman Divackyc9e23d92012-09-12 14:47:47 +00001871 }
1872
1873 // Default behavior for non-CR saves.
1874 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1875 TII.loadRegFromStackSlot(MBB, I, Reg, CSI[i].getFrameIdx(),
Eric Christopherd1737492014-04-29 00:16:40 +00001876 RC, TRI);
Roman Divackyc9e23d92012-09-12 14:47:47 +00001877 assert(I != MBB.begin() &&
Eric Christopherd1737492014-04-29 00:16:40 +00001878 "loadRegFromStackSlot didn't insert any code!");
Roman Divackyc9e23d92012-09-12 14:47:47 +00001879 }
1880
1881 // Insert in reverse order.
1882 if (AtStart)
1883 I = MBB.begin();
1884 else {
1885 I = BeforeI;
1886 ++I;
Eric Christopherd1737492014-04-29 00:16:40 +00001887 }
Roman Divackyc9e23d92012-09-12 14:47:47 +00001888 }
1889
1890 // If we haven't yet spilled the CRs, do so now.
Hal Finkeld85a04b2013-04-13 08:09:20 +00001891 if (CR2Spilled || CR3Spilled || CR4Spilled) {
Eric Christopherd1737492014-04-29 00:16:40 +00001892 bool is31 = needsFP(*MF);
Hal Finkeld85a04b2013-04-13 08:09:20 +00001893 restoreCRs(Subtarget.isPPC64(), is31, CR2Spilled, CR3Spilled, CR4Spilled,
Eric Christopherd1737492014-04-29 00:16:40 +00001894 MBB, I, CSI, CSIIndex);
Hal Finkeld85a04b2013-04-13 08:09:20 +00001895 }
Roman Divackyc9e23d92012-09-12 14:47:47 +00001896
1897 return true;
1898}
Kit Bartond3b904d2015-09-10 01:55:44 +00001899
1900bool PPCFrameLowering::enableShrinkWrapping(const MachineFunction &MF) const {
Kit Bartonf4ce2f32015-11-30 18:59:41 +00001901 return (MF.getSubtarget<PPCSubtarget>().isSVR4ABI() &&
1902 MF.getSubtarget<PPCSubtarget>().isPPC64());
Kit Bartond3b904d2015-09-10 01:55:44 +00001903}