blob: 9191f7f8d2d020d5dce9fbfa4e4d1b4bc4a186e8 [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 Topperca658c22012-03-11 07:16:55 +000033static const uint16_t 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,
86 (STI.hasQPX() || STI.isBGQ()) ? 32 : 16, 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
Evan Cheng7f8e5632011-12-07 07:15:52 +0000273 if (!I->empty() && I->back().isReturn()) {
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
309 unsigned UsedRegMask = 0;
310 for (unsigned i = 0; i != 32; ++i)
311 if (MF->getRegInfo().isPhysRegUsed(VRRegNo[i]))
312 UsedRegMask |= 1 << (31-i);
313
314 // Live in and live out values already must be in the mask, so don't bother
315 // marking them.
316 for (MachineRegisterInfo::livein_iterator
317 I = MF->getRegInfo().livein_begin(),
318 E = MF->getRegInfo().livein_end(); I != E; ++I) {
Hal Finkelfeea6532013-03-26 20:08:20 +0000319 unsigned RegNo = TRI->getEncodingValue(I->first);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000320 if (VRRegNo[RegNo] == I->first) // If this really is a vector reg.
321 UsedRegMask &= ~(1 << (31-RegNo)); // Doesn't need to be marked.
322 }
Jakob Stoklund Olesenbf034db2013-02-05 17:40:36 +0000323
324 // Live out registers appear as use operands on return instructions.
325 for (MachineFunction::const_iterator BI = MF->begin(), BE = MF->end();
326 UsedRegMask != 0 && BI != BE; ++BI) {
327 const MachineBasicBlock &MBB = *BI;
328 if (MBB.empty() || !MBB.back().isReturn())
329 continue;
330 const MachineInstr &Ret = MBB.back();
331 for (unsigned I = 0, E = Ret.getNumOperands(); I != E; ++I) {
332 const MachineOperand &MO = Ret.getOperand(I);
333 if (!MO.isReg() || !PPC::VRRCRegClass.contains(MO.getReg()))
334 continue;
Hal Finkelfeea6532013-03-26 20:08:20 +0000335 unsigned RegNo = TRI->getEncodingValue(MO.getReg());
Jakob Stoklund Olesenbf034db2013-02-05 17:40:36 +0000336 UsedRegMask &= ~(1 << (31-RegNo));
337 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000338 }
339
340 // If no registers are used, turn this into a copy.
341 if (UsedRegMask == 0) {
342 // Remove all VRSAVE code.
343 RemoveVRSaveCode(MI);
344 return;
345 }
346
347 unsigned SrcReg = MI->getOperand(1).getReg();
348 unsigned DstReg = MI->getOperand(0).getReg();
349
350 if ((UsedRegMask & 0xFFFF) == UsedRegMask) {
351 if (DstReg != SrcReg)
352 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORI), DstReg)
353 .addReg(SrcReg)
354 .addImm(UsedRegMask);
355 else
356 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORI), DstReg)
357 .addReg(SrcReg, RegState::Kill)
358 .addImm(UsedRegMask);
359 } else if ((UsedRegMask & 0xFFFF0000) == UsedRegMask) {
360 if (DstReg != SrcReg)
361 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORIS), DstReg)
362 .addReg(SrcReg)
363 .addImm(UsedRegMask >> 16);
364 else
365 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORIS), DstReg)
366 .addReg(SrcReg, RegState::Kill)
367 .addImm(UsedRegMask >> 16);
368 } else {
369 if (DstReg != SrcReg)
370 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORIS), DstReg)
371 .addReg(SrcReg)
372 .addImm(UsedRegMask >> 16);
373 else
374 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORIS), DstReg)
375 .addReg(SrcReg, RegState::Kill)
376 .addImm(UsedRegMask >> 16);
377
378 BuildMI(*MI->getParent(), MI, dl, TII.get(PPC::ORI), DstReg)
379 .addReg(DstReg, RegState::Kill)
380 .addImm(UsedRegMask & 0xFFFF);
381 }
382
383 // Remove the old UPDATE_VRSAVE instruction.
384 MI->eraseFromParent();
385}
386
Roman Divackyc9e23d92012-09-12 14:47:47 +0000387static bool spillsCR(const MachineFunction &MF) {
388 const PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
389 return FuncInfo->isCRSpilled();
390}
391
Hal Finkelcc1eeda2013-03-23 22:06:03 +0000392static bool spillsVRSAVE(const MachineFunction &MF) {
393 const PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
394 return FuncInfo->isVRSAVESpilled();
395}
396
Hal Finkelbb420f12013-03-15 05:06:04 +0000397static bool hasSpills(const MachineFunction &MF) {
398 const PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
399 return FuncInfo->hasSpills();
400}
401
Hal Finkelfcc51d42013-03-17 04:43:44 +0000402static bool hasNonRISpills(const MachineFunction &MF) {
403 const PPCFunctionInfo *FuncInfo = MF.getInfo<PPCFunctionInfo>();
404 return FuncInfo->hasNonRISpills();
405}
406
Bill Schmidt82f1c772015-02-10 19:09:05 +0000407/// MustSaveLR - Return true if this function requires that we save the LR
408/// register onto the stack in the prolog and restore it in the epilog of the
409/// function.
410static bool MustSaveLR(const MachineFunction &MF, unsigned LR) {
411 const PPCFunctionInfo *MFI = MF.getInfo<PPCFunctionInfo>();
412
413 // We need a save/restore of LR if there is any def of LR (which is
414 // defined by calls, including the PIC setup sequence), or if there is
415 // some use of the LR stack slot (e.g. for builtin_return_address).
416 // (LR comes in 32 and 64 bit versions.)
417 MachineRegisterInfo::def_iterator RI = MF.getRegInfo().def_begin(LR);
418 return RI !=MF.getRegInfo().def_end() || MFI->isLRStoreRequired();
419}
420
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000421/// determineFrameLayout - Determine the size of the frame and maximum call
422/// frame size.
Hal Finkelbb420f12013-03-15 05:06:04 +0000423unsigned PPCFrameLowering::determineFrameLayout(MachineFunction &MF,
424 bool UpdateMF,
425 bool UseEstimate) const {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000426 MachineFrameInfo *MFI = MF.getFrameInfo();
427
428 // Get the number of bytes to allocate from the FrameInfo
Hal Finkelbb420f12013-03-15 05:06:04 +0000429 unsigned FrameSize =
430 UseEstimate ? MFI->estimateStackSize(MF) : MFI->getStackSize();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000431
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000432 // Get stack alignments. The frame must be aligned to the greatest of these:
433 unsigned TargetAlign = getStackAlignment(); // alignment required per the ABI
434 unsigned MaxAlign = MFI->getMaxAlignment(); // algmt required by data in frame
Hal Finkela7c54e82013-07-17 00:45:52 +0000435 unsigned AlignMask = std::max(MaxAlign, TargetAlign) - 1;
436
Eric Christopherfc6de422014-08-05 02:39:49 +0000437 const PPCRegisterInfo *RegInfo =
Eric Christopher38522b82015-01-30 02:11:26 +0000438 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000439
440 // If we are a leaf function, and use up to 224 bytes of stack space,
441 // don't have a frame pointer, calls, or dynamic alloca then we do not need
Hal Finkel67369882013-04-15 02:07:05 +0000442 // to adjust the stack pointer (we fit in the Red Zone).
Bill Schmidt8ea7af82013-02-26 21:28:57 +0000443 // The 32-bit SVR4 ABI has no Red Zone. However, it can still generate
444 // stackless code if all local vars are reg-allocated.
Bill Wendling698e84f2012-12-30 10:32:01 +0000445 bool DisableRedZone = MF.getFunction()->getAttributes().
446 hasAttribute(AttributeSet::FunctionIndex, 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.
Eric Christopherd1737492014-04-29 00:16:40 +0000510 if (MF.getFunction()->getAttributes().hasAttribute(
511 AttributeSet::FunctionIndex, Attribute::Naked))
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000512 return false;
513
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000514 return MF.getTarget().Options.DisableFramePointerElim(MF) ||
515 MFI->hasVarSizedObjects() ||
Hal Finkel934361a2015-01-14 01:07:51 +0000516 MFI->hasStackMap() || MFI->hasPatchPoint() ||
Nick Lewycky50f02cb2011-12-02 22:16:29 +0000517 (MF.getTarget().Options.GuaranteedTailCallOpt &&
518 MF.getInfo<PPCFunctionInfo>()->hasFastCall());
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000519}
520
Hal Finkelaa03c032013-03-21 19:03:19 +0000521void PPCFrameLowering::replaceFPWithRealFP(MachineFunction &MF) const {
522 bool is31 = needsFP(MF);
523 unsigned FPReg = is31 ? PPC::R31 : PPC::R1;
524 unsigned FP8Reg = is31 ? PPC::X31 : PPC::X1;
525
Eric Christopherfc6de422014-08-05 02:39:49 +0000526 const PPCRegisterInfo *RegInfo =
Eric Christopher38522b82015-01-30 02:11:26 +0000527 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
Hal Finkelf05d6c72013-07-17 23:50:51 +0000528 bool HasBP = RegInfo->hasBasePointer(MF);
Hal Finkel3ee2af72014-07-18 23:29:49 +0000529 unsigned BPReg = HasBP ? (unsigned) RegInfo->getBaseRegister(MF) : FPReg;
Hal Finkelf05d6c72013-07-17 23:50:51 +0000530 unsigned BP8Reg = HasBP ? (unsigned) PPC::X30 : FPReg;
531
Hal Finkelaa03c032013-03-21 19:03:19 +0000532 for (MachineFunction::iterator BI = MF.begin(), BE = MF.end();
533 BI != BE; ++BI)
534 for (MachineBasicBlock::iterator MBBI = BI->end(); MBBI != BI->begin(); ) {
535 --MBBI;
536 for (unsigned I = 0, E = MBBI->getNumOperands(); I != E; ++I) {
537 MachineOperand &MO = MBBI->getOperand(I);
538 if (!MO.isReg())
539 continue;
540
541 switch (MO.getReg()) {
542 case PPC::FP:
543 MO.setReg(FPReg);
544 break;
545 case PPC::FP8:
546 MO.setReg(FP8Reg);
547 break;
Hal Finkelf05d6c72013-07-17 23:50:51 +0000548 case PPC::BP:
549 MO.setReg(BPReg);
550 break;
551 case PPC::BP8:
552 MO.setReg(BP8Reg);
553 break;
554
Hal Finkelaa03c032013-03-21 19:03:19 +0000555 }
556 }
557 }
558}
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000559
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000560void PPCFrameLowering::emitPrologue(MachineFunction &MF) const {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000561 MachineBasicBlock &MBB = MF.front(); // Prolog goes in entry BB
562 MachineBasicBlock::iterator MBBI = MBB.begin();
563 MachineFrameInfo *MFI = MF.getFrameInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000564 const PPCInstrInfo &TII =
Eric Christopher38522b82015-01-30 02:11:26 +0000565 *static_cast<const PPCInstrInfo *>(Subtarget.getInstrInfo());
Eric Christopherfc6de422014-08-05 02:39:49 +0000566 const PPCRegisterInfo *RegInfo =
Eric Christopher38522b82015-01-30 02:11:26 +0000567 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000568
569 MachineModuleInfo &MMI = MF.getMMI();
Bill Wendlingbc07a892013-06-18 07:20:20 +0000570 const MCRegisterInfo *MRI = MMI.getContext().getRegisterInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000571 DebugLoc dl;
Jay Foad1f0a44e2014-12-01 09:42:32 +0000572 bool needsCFI = MMI.hasDebugInfo() ||
Rafael Espindolafc9bae62011-05-25 03:44:17 +0000573 MF.getFunction()->needsUnwindTableEntry();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000574
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000575 // Get processor type.
576 bool isPPC64 = Subtarget.isPPC64();
577 // Get the ABI.
578 bool isDarwinABI = Subtarget.isDarwinABI();
579 bool isSVR4ABI = Subtarget.isSVR4ABI();
Ulrich Weigandbe928cc2014-07-21 00:03:18 +0000580 bool isELFv2ABI = Subtarget.isELFv2ABI();
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000581 assert((isDarwinABI || isSVR4ABI) &&
582 "Currently only Darwin and SVR4 ABIs are supported for PowerPC.");
583
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000584 // Scan the prolog, looking for an UPDATE_VRSAVE instruction. If we find it,
585 // process it.
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000586 if (!isSVR4ABI)
Bill Schmidt38d94582012-10-10 20:54:15 +0000587 for (unsigned i = 0; MBBI != MBB.end(); ++i, ++MBBI) {
588 if (MBBI->getOpcode() == PPC::UPDATE_VRSAVE) {
589 HandleVRSaveUpdate(MBBI, TII);
590 break;
591 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000592 }
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000593
594 // Move MBBI back to the beginning of the function.
595 MBBI = MBB.begin();
596
597 // Work out frame sizes.
Hal Finkelbb420f12013-03-15 05:06:04 +0000598 unsigned FrameSize = determineFrameLayout(MF);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000599 int NegFrameSize = -FrameSize;
Hal Finkela7c54e82013-07-17 00:45:52 +0000600 if (!isInt<32>(NegFrameSize))
601 llvm_unreachable("Unhandled stack size!");
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000602
Hal Finkelaa03c032013-03-21 19:03:19 +0000603 if (MFI->isFrameAddressTaken())
604 replaceFPWithRealFP(MF);
605
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000606 // Check if the link register (LR) must be saved.
607 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
608 bool MustSaveLR = FI->mustSaveLR();
Craig Topperb94011f2013-07-14 04:42:23 +0000609 const SmallVectorImpl<unsigned> &MustSaveCRs = FI->getMustSaveCRs();
Bill Schmidtf381afc2013-08-20 03:12:23 +0000610 // Do we have a frame pointer and/or base pointer for this function?
Anton Korobeynikov3eb4fed2010-12-18 19:53:14 +0000611 bool HasFP = hasFP(MF);
Hal Finkela7c54e82013-07-17 00:45:52 +0000612 bool HasBP = RegInfo->hasBasePointer(MF);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000613
Bill Schmidtf381afc2013-08-20 03:12:23 +0000614 unsigned SPReg = isPPC64 ? PPC::X1 : PPC::R1;
Hal Finkel3ee2af72014-07-18 23:29:49 +0000615 unsigned BPReg = RegInfo->getBaseRegister(MF);
Bill Schmidtf381afc2013-08-20 03:12:23 +0000616 unsigned FPReg = isPPC64 ? PPC::X31 : PPC::R31;
617 unsigned LRReg = isPPC64 ? PPC::LR8 : PPC::LR;
618 unsigned ScratchReg = isPPC64 ? PPC::X0 : PPC::R0;
619 unsigned TempReg = isPPC64 ? PPC::X12 : PPC::R12; // another scratch reg
620 // ...(R12/X12 is volatile in both Darwin & SVR4, & can't be a function arg.)
621 const MCInstrDesc& MFLRInst = TII.get(isPPC64 ? PPC::MFLR8
622 : PPC::MFLR );
623 const MCInstrDesc& StoreInst = TII.get(isPPC64 ? PPC::STD
624 : PPC::STW );
625 const MCInstrDesc& StoreUpdtInst = TII.get(isPPC64 ? PPC::STDU
626 : PPC::STWU );
627 const MCInstrDesc& StoreUpdtIdxInst = TII.get(isPPC64 ? PPC::STDUX
628 : PPC::STWUX);
629 const MCInstrDesc& LoadImmShiftedInst = TII.get(isPPC64 ? PPC::LIS8
630 : PPC::LIS );
631 const MCInstrDesc& OrImmInst = TII.get(isPPC64 ? PPC::ORI8
632 : PPC::ORI );
633 const MCInstrDesc& OrInst = TII.get(isPPC64 ? PPC::OR8
634 : PPC::OR );
635 const MCInstrDesc& SubtractCarryingInst = TII.get(isPPC64 ? PPC::SUBFC8
636 : PPC::SUBFC);
637 const MCInstrDesc& SubtractImmCarryingInst = TII.get(isPPC64 ? PPC::SUBFIC8
638 : PPC::SUBFIC);
639
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000640 // Regarding this assert: Even though LR is saved in the caller's frame (i.e.,
641 // LROffset is positive), that slot is callee-owned. Because PPC32 SVR4 has no
642 // Red Zone, an asynchronous event (a form of "callee") could claim a frame &
643 // overwrite it, so PPC32 SVR4 must claim at least a minimal frame to save LR.
644 assert((isPPC64 || !isSVR4ABI || !(!FrameSize && (MustSaveLR || HasFP))) &&
645 "FrameSize must be >0 to save/restore the FP or LR for 32-bit SVR4.");
646
Eric Christopherf71609b2015-02-13 00:39:27 +0000647 int LROffset = getReturnSaveOffset();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000648
649 int FPOffset = 0;
650 if (HasFP) {
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000651 if (isSVR4ABI) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000652 MachineFrameInfo *FFI = MF.getFrameInfo();
653 int FPIndex = FI->getFramePointerSaveIndex();
654 assert(FPIndex && "No Frame Pointer Save Slot!");
655 FPOffset = FFI->getObjectOffset(FPIndex);
656 } else {
Eric Christopherdc3a8a42015-02-13 00:39:38 +0000657 FPOffset = getFramePointerSaveOffset();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000658 }
659 }
660
Hal Finkela7c54e82013-07-17 00:45:52 +0000661 int BPOffset = 0;
662 if (HasBP) {
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000663 if (isSVR4ABI) {
Hal Finkela7c54e82013-07-17 00:45:52 +0000664 MachineFrameInfo *FFI = MF.getFrameInfo();
665 int BPIndex = FI->getBasePointerSaveIndex();
666 assert(BPIndex && "No Base Pointer Save Slot!");
667 BPOffset = FFI->getObjectOffset(BPIndex);
668 } else {
Eric Christopherfcd3d872015-02-13 22:48:53 +0000669 BPOffset = getBasePointerSaveOffset();
Hal Finkela7c54e82013-07-17 00:45:52 +0000670 }
671 }
672
Justin Hibbits654346e2015-01-10 01:57:21 +0000673 int PBPOffset = 0;
674 if (FI->usesPICBase()) {
675 MachineFrameInfo *FFI = MF.getFrameInfo();
676 int PBPIndex = FI->getPICBasePointerSaveIndex();
677 assert(PBPIndex && "No PIC Base Pointer Save Slot!");
678 PBPOffset = FFI->getObjectOffset(PBPIndex);
679 }
680
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000681 // Get stack alignments.
682 unsigned MaxAlign = MFI->getMaxAlignment();
683 if (HasBP && MaxAlign > 1)
684 assert(isPowerOf2_32(MaxAlign) && isInt<16>(MaxAlign) &&
685 "Invalid alignment!");
686
687 // Frames of 32KB & larger require special handling because they cannot be
688 // indexed into with a simple STDU/STWU/STD/STW immediate offset operand.
689 bool isLargeFrame = !isInt<16>(NegFrameSize);
690
Bill Schmidtf381afc2013-08-20 03:12:23 +0000691 if (MustSaveLR)
692 BuildMI(MBB, MBBI, dl, MFLRInst, ScratchReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000693
Bill Schmidtf381afc2013-08-20 03:12:23 +0000694 assert((isPPC64 || MustSaveCRs.empty()) &&
695 "Prologue CR saving supported only in 64-bit mode");
Hal Finkel67369882013-04-15 02:07:05 +0000696
Bill Schmidtf381afc2013-08-20 03:12:23 +0000697 if (!MustSaveCRs.empty()) { // will only occur for PPC64
Ulrich Weigandbe928cc2014-07-21 00:03:18 +0000698 // FIXME: In the ELFv2 ABI, we are not required to save all CR fields.
699 // If only one or two CR fields are clobbered, it could be more
700 // efficient to use mfocrf to selectively save just those fields.
Bill Schmidtf381afc2013-08-20 03:12:23 +0000701 MachineInstrBuilder MIB =
702 BuildMI(MBB, MBBI, dl, TII.get(PPC::MFCR8), TempReg);
703 for (unsigned i = 0, e = MustSaveCRs.size(); i != e; ++i)
704 MIB.addReg(MustSaveCRs[i], RegState::ImplicitKill);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000705 }
706
Bill Schmidtf381afc2013-08-20 03:12:23 +0000707 if (HasFP)
708 // FIXME: On PPC32 SVR4, we must not spill before claiming the stackframe.
709 BuildMI(MBB, MBBI, dl, StoreInst)
710 .addReg(FPReg)
711 .addImm(FPOffset)
712 .addReg(SPReg);
713
Justin Hibbits654346e2015-01-10 01:57:21 +0000714 if (FI->usesPICBase())
Justin Hibbits98a532d2015-01-08 15:47:19 +0000715 // FIXME: On PPC32 SVR4, we must not spill before claiming the stackframe.
716 BuildMI(MBB, MBBI, dl, StoreInst)
717 .addReg(PPC::R30)
Justin Hibbits654346e2015-01-10 01:57:21 +0000718 .addImm(PBPOffset)
Justin Hibbits98a532d2015-01-08 15:47:19 +0000719 .addReg(SPReg);
720
Bill Schmidtf381afc2013-08-20 03:12:23 +0000721 if (HasBP)
722 // FIXME: On PPC32 SVR4, we must not spill before claiming the stackframe.
723 BuildMI(MBB, MBBI, dl, StoreInst)
724 .addReg(BPReg)
725 .addImm(BPOffset)
726 .addReg(SPReg);
727
728 if (MustSaveLR)
729 // FIXME: On PPC32 SVR4, we must not spill before claiming the stackframe.
730 BuildMI(MBB, MBBI, dl, StoreInst)
731 .addReg(ScratchReg)
732 .addImm(LROffset)
733 .addReg(SPReg);
734
735 if (!MustSaveCRs.empty()) // will only occur for PPC64
736 BuildMI(MBB, MBBI, dl, TII.get(PPC::STW8))
737 .addReg(TempReg, getKillRegState(true))
738 .addImm(8)
739 .addReg(SPReg);
740
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000741 // Skip the rest if this is a leaf function & all spills fit in the Red Zone.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000742 if (!FrameSize) return;
743
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000744 // Adjust stack pointer: r1 += NegFrameSize.
745 // If there is a preferred stack alignment, align R1 now
Hal Finkela7c54e82013-07-17 00:45:52 +0000746
Bill Schmidtf381afc2013-08-20 03:12:23 +0000747 if (HasBP) {
748 // Save a copy of r1 as the base pointer.
749 BuildMI(MBB, MBBI, dl, OrInst, BPReg)
750 .addReg(SPReg)
751 .addReg(SPReg);
752 }
753
754 if (HasBP && MaxAlign > 1) {
755 if (isPPC64)
756 BuildMI(MBB, MBBI, dl, TII.get(PPC::RLDICL), ScratchReg)
757 .addReg(SPReg)
758 .addImm(0)
759 .addImm(64 - Log2_32(MaxAlign));
760 else // PPC32...
761 BuildMI(MBB, MBBI, dl, TII.get(PPC::RLWINM), ScratchReg)
762 .addReg(SPReg)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000763 .addImm(0)
764 .addImm(32 - Log2_32(MaxAlign))
765 .addImm(31);
Bill Schmidtf381afc2013-08-20 03:12:23 +0000766 if (!isLargeFrame) {
767 BuildMI(MBB, MBBI, dl, SubtractImmCarryingInst, ScratchReg)
768 .addReg(ScratchReg, RegState::Kill)
769 .addImm(NegFrameSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000770 } else {
Bill Schmidtf381afc2013-08-20 03:12:23 +0000771 BuildMI(MBB, MBBI, dl, LoadImmShiftedInst, TempReg)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000772 .addImm(NegFrameSize >> 16);
Bill Schmidtf381afc2013-08-20 03:12:23 +0000773 BuildMI(MBB, MBBI, dl, OrImmInst, TempReg)
774 .addReg(TempReg, RegState::Kill)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000775 .addImm(NegFrameSize & 0xFFFF);
Bill Schmidtf381afc2013-08-20 03:12:23 +0000776 BuildMI(MBB, MBBI, dl, SubtractCarryingInst, ScratchReg)
777 .addReg(ScratchReg, RegState::Kill)
778 .addReg(TempReg, RegState::Kill);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000779 }
Bill Schmidtf381afc2013-08-20 03:12:23 +0000780 BuildMI(MBB, MBBI, dl, StoreUpdtIdxInst, SPReg)
781 .addReg(SPReg, RegState::Kill)
782 .addReg(SPReg)
783 .addReg(ScratchReg);
Hal Finkela7c54e82013-07-17 00:45:52 +0000784
Bill Schmidtf381afc2013-08-20 03:12:23 +0000785 } else if (!isLargeFrame) {
786 BuildMI(MBB, MBBI, dl, StoreUpdtInst, SPReg)
787 .addReg(SPReg)
788 .addImm(NegFrameSize)
789 .addReg(SPReg);
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000790
Bill Schmidtf381afc2013-08-20 03:12:23 +0000791 } else {
792 BuildMI(MBB, MBBI, dl, LoadImmShiftedInst, ScratchReg)
793 .addImm(NegFrameSize >> 16);
794 BuildMI(MBB, MBBI, dl, OrImmInst, ScratchReg)
795 .addReg(ScratchReg, RegState::Kill)
796 .addImm(NegFrameSize & 0xFFFF);
797 BuildMI(MBB, MBBI, dl, StoreUpdtIdxInst, SPReg)
798 .addReg(SPReg, RegState::Kill)
799 .addReg(SPReg)
800 .addReg(ScratchReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000801 }
802
Jay Foad1f0a44e2014-12-01 09:42:32 +0000803 // Add Call Frame Information for the instructions we generated above.
804 if (needsCFI) {
805 unsigned CFIIndex;
806
807 if (HasBP) {
808 // Define CFA in terms of BP. Do this in preference to using FP/SP,
809 // because if the stack needed aligning then CFA won't be at a fixed
810 // offset from FP/SP.
811 unsigned Reg = MRI->getDwarfRegNum(BPReg, true);
812 CFIIndex = MMI.addFrameInst(
813 MCCFIInstruction::createDefCfaRegister(nullptr, Reg));
814 } else {
815 // Adjust the definition of CFA to account for the change in SP.
816 assert(NegFrameSize);
817 CFIIndex = MMI.addFrameInst(
818 MCCFIInstruction::createDefCfaOffset(nullptr, NegFrameSize));
819 }
Eric Christopher612bb692014-04-29 00:16:46 +0000820 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
821 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000822
823 if (HasFP) {
Jay Foad1f0a44e2014-12-01 09:42:32 +0000824 // Describe where FP was saved, at a fixed offset from CFA.
Bill Schmidtf381afc2013-08-20 03:12:23 +0000825 unsigned Reg = MRI->getDwarfRegNum(FPReg, true);
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000826 CFIIndex = MMI.addFrameInst(
827 MCCFIInstruction::createOffset(nullptr, Reg, FPOffset));
Eric Christopher612bb692014-04-29 00:16:46 +0000828 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000829 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000830 }
831
Justin Hibbits654346e2015-01-10 01:57:21 +0000832 if (FI->usesPICBase()) {
833 // Describe where FP was saved, at a fixed offset from CFA.
834 unsigned Reg = MRI->getDwarfRegNum(PPC::R30, true);
835 CFIIndex = MMI.addFrameInst(
836 MCCFIInstruction::createOffset(nullptr, Reg, PBPOffset));
837 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
838 .addCFIIndex(CFIIndex);
839 }
840
Hal Finkela7c54e82013-07-17 00:45:52 +0000841 if (HasBP) {
Jay Foad1f0a44e2014-12-01 09:42:32 +0000842 // Describe where BP was saved, at a fixed offset from CFA.
Bill Schmidtf381afc2013-08-20 03:12:23 +0000843 unsigned Reg = MRI->getDwarfRegNum(BPReg, true);
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000844 CFIIndex = MMI.addFrameInst(
845 MCCFIInstruction::createOffset(nullptr, Reg, BPOffset));
Eric Christopher612bb692014-04-29 00:16:46 +0000846 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000847 .addCFIIndex(CFIIndex);
Hal Finkela7c54e82013-07-17 00:45:52 +0000848 }
849
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000850 if (MustSaveLR) {
Jay Foad1f0a44e2014-12-01 09:42:32 +0000851 // Describe where LR was saved, at a fixed offset from CFA.
Bill Schmidtf381afc2013-08-20 03:12:23 +0000852 unsigned Reg = MRI->getDwarfRegNum(LRReg, true);
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000853 CFIIndex = MMI.addFrameInst(
854 MCCFIInstruction::createOffset(nullptr, Reg, LROffset));
Eric Christopher612bb692014-04-29 00:16:46 +0000855 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000856 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000857 }
858 }
859
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000860 // If there is a frame pointer, copy R1 into R31
861 if (HasFP) {
Bill Schmidtf381afc2013-08-20 03:12:23 +0000862 BuildMI(MBB, MBBI, dl, OrInst, FPReg)
863 .addReg(SPReg)
864 .addReg(SPReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000865
Jay Foad1f0a44e2014-12-01 09:42:32 +0000866 if (!HasBP && needsCFI) {
867 // Change the definition of CFA from SP+offset to FP+offset, because SP
868 // will change at every alloca.
Bill Schmidtf381afc2013-08-20 03:12:23 +0000869 unsigned Reg = MRI->getDwarfRegNum(FPReg, true);
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000870 unsigned CFIIndex = MMI.addFrameInst(
871 MCCFIInstruction::createDefCfaRegister(nullptr, Reg));
872
Eric Christopher612bb692014-04-29 00:16:46 +0000873 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000874 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000875 }
876 }
877
Jay Foad1f0a44e2014-12-01 09:42:32 +0000878 if (needsCFI) {
879 // Describe where callee saved registers were saved, at fixed offsets from
880 // CFA.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000881 const std::vector<CalleeSavedInfo> &CSI = MFI->getCalleeSavedInfo();
882 for (unsigned I = 0, E = CSI.size(); I != E; ++I) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000883 unsigned Reg = CSI[I].getReg();
884 if (Reg == PPC::LR || Reg == PPC::LR8 || Reg == PPC::RM) continue;
Rafael Espindola08600bc2011-05-30 20:20:15 +0000885
886 // This is a bit of a hack: CR2LT, CR2GT, CR2EQ and CR2UN are just
887 // subregisters of CR2. We just need to emit a move of CR2.
Craig Topperabadc662012-04-20 06:31:50 +0000888 if (PPC::CRBITRCRegClass.contains(Reg))
Rafael Espindola08600bc2011-05-30 20:20:15 +0000889 continue;
Rafael Espindola08600bc2011-05-30 20:20:15 +0000890
Roman Divackyc9e23d92012-09-12 14:47:47 +0000891 // For SVR4, don't emit a move for the CR spill slot if we haven't
892 // spilled CRs.
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000893 if (isSVR4ABI && (PPC::CR2 <= Reg && Reg <= PPC::CR4)
894 && MustSaveCRs.empty())
895 continue;
Roman Divackyc9e23d92012-09-12 14:47:47 +0000896
897 // For 64-bit SVR4 when we have spilled CRs, the spill location
898 // is SP+8, not a frame-relative slot.
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000899 if (isSVR4ABI && isPPC64 && (PPC::CR2 <= Reg && Reg <= PPC::CR4)) {
Ulrich Weigandbe928cc2014-07-21 00:03:18 +0000900 // In the ELFv1 ABI, only CR2 is noted in CFI and stands in for
901 // the whole CR word. In the ELFv2 ABI, every CR that was
902 // actually saved gets its own CFI record.
903 unsigned CRReg = isELFv2ABI? Reg : (unsigned) PPC::CR2;
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000904 unsigned CFIIndex = MMI.addFrameInst(MCCFIInstruction::createOffset(
Ulrich Weigandbe928cc2014-07-21 00:03:18 +0000905 nullptr, MRI->getDwarfRegNum(CRReg, true), 8));
Eric Christopher612bb692014-04-29 00:16:46 +0000906 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000907 .addCFIIndex(CFIIndex);
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000908 continue;
Roman Divackyc9e23d92012-09-12 14:47:47 +0000909 }
910
911 int Offset = MFI->getObjectOffset(CSI[I].getFrameIdx());
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000912 unsigned CFIIndex = MMI.addFrameInst(MCCFIInstruction::createOffset(
913 nullptr, MRI->getDwarfRegNum(Reg, true), Offset));
Eric Christopher612bb692014-04-29 00:16:46 +0000914 BuildMI(MBB, MBBI, dl, TII.get(TargetOpcode::CFI_INSTRUCTION))
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000915 .addCFIIndex(CFIIndex);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000916 }
917 }
918}
919
Anton Korobeynikov2f931282011-01-10 12:39:04 +0000920void PPCFrameLowering::emitEpilogue(MachineFunction &MF,
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000921 MachineBasicBlock &MBB) const {
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +0000922 MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
923 assert(MBBI != MBB.end() && "Returning block has no terminator");
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000924 const PPCInstrInfo &TII =
Eric Christopher38522b82015-01-30 02:11:26 +0000925 *static_cast<const PPCInstrInfo *>(Subtarget.getInstrInfo());
Eric Christopherfc6de422014-08-05 02:39:49 +0000926 const PPCRegisterInfo *RegInfo =
Eric Christopher38522b82015-01-30 02:11:26 +0000927 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000928
929 unsigned RetOpcode = MBBI->getOpcode();
930 DebugLoc dl;
931
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000932 assert((RetOpcode == PPC::BLR ||
Hal Finkelf4a22c02015-01-13 17:47:54 +0000933 RetOpcode == PPC::BLR8 ||
Anton Korobeynikov0eecf5d2010-11-18 21:19:35 +0000934 RetOpcode == PPC::TCRETURNri ||
935 RetOpcode == PPC::TCRETURNdi ||
936 RetOpcode == PPC::TCRETURNai ||
937 RetOpcode == PPC::TCRETURNri8 ||
938 RetOpcode == PPC::TCRETURNdi8 ||
939 RetOpcode == PPC::TCRETURNai8) &&
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000940 "Can only insert epilog into returning blocks");
941
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000942 // Get alignment info so we know how to restore the SP.
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000943 const MachineFrameInfo *MFI = MF.getFrameInfo();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000944
945 // Get the number of bytes allocated from the FrameInfo.
946 int FrameSize = MFI->getStackSize();
947
948 // Get processor type.
949 bool isPPC64 = Subtarget.isPPC64();
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000950 // Get the ABI.
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000951 bool isSVR4ABI = Subtarget.isSVR4ABI();
952
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000953 // Check if the link register (LR) has been saved.
954 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
955 bool MustSaveLR = FI->mustSaveLR();
Craig Topperb94011f2013-07-14 04:42:23 +0000956 const SmallVectorImpl<unsigned> &MustSaveCRs = FI->getMustSaveCRs();
Bill Schmidtf381afc2013-08-20 03:12:23 +0000957 // Do we have a frame pointer and/or base pointer for this function?
Anton Korobeynikov3eb4fed2010-12-18 19:53:14 +0000958 bool HasFP = hasFP(MF);
Hal Finkela7c54e82013-07-17 00:45:52 +0000959 bool HasBP = RegInfo->hasBasePointer(MF);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000960
Bill Schmidtf381afc2013-08-20 03:12:23 +0000961 unsigned SPReg = isPPC64 ? PPC::X1 : PPC::R1;
Hal Finkel3ee2af72014-07-18 23:29:49 +0000962 unsigned BPReg = RegInfo->getBaseRegister(MF);
Bill Schmidtf381afc2013-08-20 03:12:23 +0000963 unsigned FPReg = isPPC64 ? PPC::X31 : PPC::R31;
964 unsigned ScratchReg = isPPC64 ? PPC::X0 : PPC::R0;
965 unsigned TempReg = isPPC64 ? PPC::X12 : PPC::R12; // another scratch reg
966 const MCInstrDesc& MTLRInst = TII.get( isPPC64 ? PPC::MTLR8
967 : PPC::MTLR );
968 const MCInstrDesc& LoadInst = TII.get( isPPC64 ? PPC::LD
969 : PPC::LWZ );
970 const MCInstrDesc& LoadImmShiftedInst = TII.get( isPPC64 ? PPC::LIS8
971 : PPC::LIS );
972 const MCInstrDesc& OrImmInst = TII.get( isPPC64 ? PPC::ORI8
973 : PPC::ORI );
974 const MCInstrDesc& AddImmInst = TII.get( isPPC64 ? PPC::ADDI8
975 : PPC::ADDI );
976 const MCInstrDesc& AddInst = TII.get( isPPC64 ? PPC::ADD8
977 : PPC::ADD4 );
978
Eric Christopherf71609b2015-02-13 00:39:27 +0000979 int LROffset = getReturnSaveOffset();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000980
981 int FPOffset = 0;
982 if (HasFP) {
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000983 if (isSVR4ABI) {
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000984 MachineFrameInfo *FFI = MF.getFrameInfo();
985 int FPIndex = FI->getFramePointerSaveIndex();
986 assert(FPIndex && "No Frame Pointer Save Slot!");
987 FPOffset = FFI->getObjectOffset(FPIndex);
988 } else {
Eric Christopherdc3a8a42015-02-13 00:39:38 +0000989 FPOffset = getFramePointerSaveOffset();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +0000990 }
991 }
992
Hal Finkela7c54e82013-07-17 00:45:52 +0000993 int BPOffset = 0;
994 if (HasBP) {
Bill Schmidt8893a3d2013-08-16 20:05:04 +0000995 if (isSVR4ABI) {
Hal Finkela7c54e82013-07-17 00:45:52 +0000996 MachineFrameInfo *FFI = MF.getFrameInfo();
997 int BPIndex = FI->getBasePointerSaveIndex();
998 assert(BPIndex && "No Base Pointer Save Slot!");
999 BPOffset = FFI->getObjectOffset(BPIndex);
1000 } else {
Eric Christopherfcd3d872015-02-13 22:48:53 +00001001 BPOffset = getBasePointerSaveOffset();
Hal Finkela7c54e82013-07-17 00:45:52 +00001002 }
1003 }
1004
Justin Hibbits654346e2015-01-10 01:57:21 +00001005 int PBPOffset = 0;
1006 if (FI->usesPICBase()) {
1007 MachineFrameInfo *FFI = MF.getFrameInfo();
1008 int PBPIndex = FI->getPICBasePointerSaveIndex();
1009 assert(PBPIndex && "No PIC Base Pointer Save Slot!");
1010 PBPOffset = FFI->getObjectOffset(PBPIndex);
1011 }
1012
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001013 bool UsesTCRet = RetOpcode == PPC::TCRETURNri ||
1014 RetOpcode == PPC::TCRETURNdi ||
1015 RetOpcode == PPC::TCRETURNai ||
1016 RetOpcode == PPC::TCRETURNri8 ||
1017 RetOpcode == PPC::TCRETURNdi8 ||
1018 RetOpcode == PPC::TCRETURNai8;
1019
1020 if (UsesTCRet) {
1021 int MaxTCRetDelta = FI->getTailCallSPDelta();
1022 MachineOperand &StackAdjust = MBBI->getOperand(1);
1023 assert(StackAdjust.isImm() && "Expecting immediate value.");
1024 // Adjust stack pointer.
1025 int StackAdj = StackAdjust.getImm();
1026 int Delta = StackAdj - MaxTCRetDelta;
1027 assert((Delta >= 0) && "Delta must be positive");
1028 if (MaxTCRetDelta>0)
1029 FrameSize += (StackAdj +Delta);
1030 else
1031 FrameSize += StackAdj;
1032 }
1033
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001034 // Frames of 32KB & larger require special handling because they cannot be
1035 // indexed into with a simple LD/LWZ immediate offset operand.
1036 bool isLargeFrame = !isInt<16>(FrameSize);
1037
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001038 if (FrameSize) {
Bill Schmidt8893a3d2013-08-16 20:05:04 +00001039 // In the prologue, the loaded (or persistent) stack pointer value is offset
1040 // by the STDU/STDUX/STWU/STWUX instruction. Add this offset back now.
Bill Schmidtf381afc2013-08-20 03:12:23 +00001041
1042 // If this function contained a fastcc call and GuaranteedTailCallOpt is
1043 // enabled (=> hasFastCall()==true) the fastcc call might contain a tail
1044 // call which invalidates the stack pointer value in SP(0). So we use the
1045 // value of R31 in this case.
1046 if (FI->hasFastCall()) {
1047 assert(HasFP && "Expecting a valid frame pointer.");
1048 if (!isLargeFrame) {
1049 BuildMI(MBB, MBBI, dl, AddImmInst, SPReg)
1050 .addReg(FPReg).addImm(FrameSize);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001051 } else {
Bill Schmidtf381afc2013-08-20 03:12:23 +00001052 BuildMI(MBB, MBBI, dl, LoadImmShiftedInst, ScratchReg)
1053 .addImm(FrameSize >> 16);
1054 BuildMI(MBB, MBBI, dl, OrImmInst, ScratchReg)
1055 .addReg(ScratchReg, RegState::Kill)
1056 .addImm(FrameSize & 0xFFFF);
1057 BuildMI(MBB, MBBI, dl, AddInst)
1058 .addReg(SPReg)
1059 .addReg(FPReg)
1060 .addReg(ScratchReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001061 }
Bill Schmidtf381afc2013-08-20 03:12:23 +00001062 } else if (!isLargeFrame && !HasBP && !MFI->hasVarSizedObjects()) {
1063 BuildMI(MBB, MBBI, dl, AddImmInst, SPReg)
1064 .addReg(SPReg)
1065 .addImm(FrameSize);
1066 } else {
1067 BuildMI(MBB, MBBI, dl, LoadInst, SPReg)
1068 .addImm(0)
1069 .addReg(SPReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001070 }
Bill Schmidtf381afc2013-08-20 03:12:23 +00001071
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001072 }
1073
Bill Schmidtf381afc2013-08-20 03:12:23 +00001074 if (MustSaveLR)
1075 BuildMI(MBB, MBBI, dl, LoadInst, ScratchReg)
1076 .addImm(LROffset)
1077 .addReg(SPReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001078
Bill Schmidtf381afc2013-08-20 03:12:23 +00001079 assert((isPPC64 || MustSaveCRs.empty()) &&
1080 "Epilogue CR restoring supported only in 64-bit mode");
Hal Finkel67369882013-04-15 02:07:05 +00001081
Bill Schmidtf381afc2013-08-20 03:12:23 +00001082 if (!MustSaveCRs.empty()) // will only occur for PPC64
1083 BuildMI(MBB, MBBI, dl, TII.get(PPC::LWZ8), TempReg)
1084 .addImm(8)
1085 .addReg(SPReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001086
Bill Schmidtf381afc2013-08-20 03:12:23 +00001087 if (HasFP)
1088 BuildMI(MBB, MBBI, dl, LoadInst, FPReg)
1089 .addImm(FPOffset)
1090 .addReg(SPReg);
Hal Finkela7c54e82013-07-17 00:45:52 +00001091
Justin Hibbits654346e2015-01-10 01:57:21 +00001092 if (FI->usesPICBase())
Justin Hibbits98a532d2015-01-08 15:47:19 +00001093 // FIXME: On PPC32 SVR4, we must not spill before claiming the stackframe.
1094 BuildMI(MBB, MBBI, dl, LoadInst)
1095 .addReg(PPC::R30)
Justin Hibbits654346e2015-01-10 01:57:21 +00001096 .addImm(PBPOffset)
Justin Hibbits98a532d2015-01-08 15:47:19 +00001097 .addReg(SPReg);
1098
Bill Schmidtf381afc2013-08-20 03:12:23 +00001099 if (HasBP)
1100 BuildMI(MBB, MBBI, dl, LoadInst, BPReg)
1101 .addImm(BPOffset)
1102 .addReg(SPReg);
Hal Finkel67369882013-04-15 02:07:05 +00001103
Bill Schmidtf381afc2013-08-20 03:12:23 +00001104 if (!MustSaveCRs.empty()) // will only occur for PPC64
1105 for (unsigned i = 0, e = MustSaveCRs.size(); i != e; ++i)
1106 BuildMI(MBB, MBBI, dl, TII.get(PPC::MTOCRF8), MustSaveCRs[i])
1107 .addReg(TempReg, getKillRegState(i == e-1));
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001108
Bill Schmidtf381afc2013-08-20 03:12:23 +00001109 if (MustSaveLR)
1110 BuildMI(MBB, MBBI, dl, MTLRInst).addReg(ScratchReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001111
1112 // Callee pop calling convention. Pop parameter/linkage area. Used for tail
1113 // call optimization
Hal Finkelf4a22c02015-01-13 17:47:54 +00001114 if (MF.getTarget().Options.GuaranteedTailCallOpt &&
1115 (RetOpcode == PPC::BLR || RetOpcode == PPC::BLR8) &&
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001116 MF.getFunction()->getCallingConv() == CallingConv::Fast) {
1117 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
1118 unsigned CallerAllocatedAmt = FI->getMinReservedArea();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001119
1120 if (CallerAllocatedAmt && isInt<16>(CallerAllocatedAmt)) {
Bill Schmidtf381afc2013-08-20 03:12:23 +00001121 BuildMI(MBB, MBBI, dl, AddImmInst, SPReg)
1122 .addReg(SPReg).addImm(CallerAllocatedAmt);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001123 } else {
Bill Schmidtf381afc2013-08-20 03:12:23 +00001124 BuildMI(MBB, MBBI, dl, LoadImmShiftedInst, ScratchReg)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001125 .addImm(CallerAllocatedAmt >> 16);
Bill Schmidtf381afc2013-08-20 03:12:23 +00001126 BuildMI(MBB, MBBI, dl, OrImmInst, ScratchReg)
1127 .addReg(ScratchReg, RegState::Kill)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001128 .addImm(CallerAllocatedAmt & 0xFFFF);
Bill Schmidtf381afc2013-08-20 03:12:23 +00001129 BuildMI(MBB, MBBI, dl, AddInst)
1130 .addReg(SPReg)
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001131 .addReg(FPReg)
Bill Schmidtf381afc2013-08-20 03:12:23 +00001132 .addReg(ScratchReg);
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001133 }
1134 } else if (RetOpcode == PPC::TCRETURNdi) {
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +00001135 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001136 MachineOperand &JumpTarget = MBBI->getOperand(0);
1137 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILB)).
1138 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset());
1139 } else if (RetOpcode == PPC::TCRETURNri) {
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +00001140 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001141 assert(MBBI->getOperand(0).isReg() && "Expecting register operand.");
1142 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBCTR));
1143 } else if (RetOpcode == PPC::TCRETURNai) {
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +00001144 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001145 MachineOperand &JumpTarget = MBBI->getOperand(0);
1146 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBA)).addImm(JumpTarget.getImm());
1147 } else if (RetOpcode == PPC::TCRETURNdi8) {
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +00001148 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001149 MachineOperand &JumpTarget = MBBI->getOperand(0);
1150 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILB8)).
1151 addGlobalAddress(JumpTarget.getGlobal(), JumpTarget.getOffset());
1152 } else if (RetOpcode == PPC::TCRETURNri8) {
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +00001153 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001154 assert(MBBI->getOperand(0).isReg() && "Expecting register operand.");
1155 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBCTR8));
1156 } else if (RetOpcode == PPC::TCRETURNai8) {
Jakob Stoklund Olesen4bc5e382011-01-13 21:28:52 +00001157 MBBI = MBB.getLastNonDebugInstr();
Anton Korobeynikovf7183ed2010-11-15 00:06:54 +00001158 MachineOperand &JumpTarget = MBBI->getOperand(0);
1159 BuildMI(MBB, MBBI, dl, TII.get(PPC::TAILBA8)).addImm(JumpTarget.getImm());
1160 }
1161}
Anton Korobeynikov14ee3442010-11-18 23:25:52 +00001162
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001163void
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001164PPCFrameLowering::processFunctionBeforeCalleeSavedScan(MachineFunction &MF,
Hal Finkelbb420f12013-03-15 05:06:04 +00001165 RegScavenger *) const {
Eric Christopherfc6de422014-08-05 02:39:49 +00001166 const PPCRegisterInfo *RegInfo =
Eric Christopher38522b82015-01-30 02:11:26 +00001167 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001168
1169 // Save and clear the LR state.
1170 PPCFunctionInfo *FI = MF.getInfo<PPCFunctionInfo>();
1171 unsigned LR = RegInfo->getRARegister();
1172 FI->setMustSaveLR(MustSaveLR(MF, LR));
Bill Schmidtc68c6df2013-02-24 17:34:50 +00001173 MachineRegisterInfo &MRI = MF.getRegInfo();
1174 MRI.setPhysRegUnused(LR);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001175
1176 // Save R31 if necessary
1177 int FPSI = FI->getFramePointerSaveIndex();
1178 bool isPPC64 = Subtarget.isPPC64();
1179 bool isDarwinABI = Subtarget.isDarwinABI();
1180 MachineFrameInfo *MFI = MF.getFrameInfo();
1181
1182 // If the frame pointer save index hasn't been defined yet.
Anton Korobeynikov3eb4fed2010-12-18 19:53:14 +00001183 if (!FPSI && needsFP(MF)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001184 // Find out what the fix offset of the frame pointer save area.
Eric Christopherdc3a8a42015-02-13 00:39:38 +00001185 int FPOffset = getFramePointerSaveOffset();
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001186 // Allocate the frame index for frame pointer save area.
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001187 FPSI = MFI->CreateFixedObject(isPPC64? 8 : 4, FPOffset, true);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001188 // Save the result.
1189 FI->setFramePointerSaveIndex(FPSI);
1190 }
1191
Hal Finkela7c54e82013-07-17 00:45:52 +00001192 int BPSI = FI->getBasePointerSaveIndex();
1193 if (!BPSI && RegInfo->hasBasePointer(MF)) {
Eric Christopherfcd3d872015-02-13 22:48:53 +00001194 int BPOffset = getBasePointerSaveOffset();
Hal Finkela7c54e82013-07-17 00:45:52 +00001195 // Allocate the frame index for the base pointer save area.
1196 BPSI = MFI->CreateFixedObject(isPPC64? 8 : 4, BPOffset, true);
1197 // Save the result.
1198 FI->setBasePointerSaveIndex(BPSI);
1199 }
1200
Justin Hibbits654346e2015-01-10 01:57:21 +00001201 // Reserve stack space for the PIC Base register (R30).
1202 // Only used in SVR4 32-bit.
1203 if (FI->usesPICBase()) {
1204 int PBPSI = FI->getPICBasePointerSaveIndex();
1205 PBPSI = MFI->CreateFixedObject(4, -8, true);
1206 FI->setPICBasePointerSaveIndex(PBPSI);
1207 }
1208
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001209 // Reserve stack space to move the linkage area to in case of a tail call.
1210 int TCSPDelta = 0;
Nick Lewycky50f02cb2011-12-02 22:16:29 +00001211 if (MF.getTarget().Options.GuaranteedTailCallOpt &&
1212 (TCSPDelta = FI->getTailCallSPDelta()) < 0) {
Anton Korobeynikov2f931282011-01-10 12:39:04 +00001213 MFI->CreateFixedObject(-1 * TCSPDelta, TCSPDelta, true);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001214 }
1215
Eric Christopherd1737492014-04-29 00:16:40 +00001216 // For 32-bit SVR4, allocate the nonvolatile CR spill slot iff the
Bill Schmidtc68c6df2013-02-24 17:34:50 +00001217 // function uses CR 2, 3, or 4.
Eric Christopherd1737492014-04-29 00:16:40 +00001218 if (!isPPC64 && !isDarwinABI &&
Bill Schmidtc68c6df2013-02-24 17:34:50 +00001219 (MRI.isPhysRegUsed(PPC::CR2) ||
1220 MRI.isPhysRegUsed(PPC::CR3) ||
1221 MRI.isPhysRegUsed(PPC::CR4))) {
1222 int FrameIdx = MFI->CreateFixedObject((uint64_t)4, (int64_t)-4, true);
1223 FI->setCRSpillFrameIndex(FrameIdx);
1224 }
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001225}
1226
Hal Finkel5a765fd2013-03-14 20:33:40 +00001227void PPCFrameLowering::processFunctionBeforeFrameFinalized(MachineFunction &MF,
Hal Finkelbb420f12013-03-15 05:06:04 +00001228 RegScavenger *RS) const {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001229 // Early exit if not using the SVR4 ABI.
Hal Finkelbb420f12013-03-15 05:06:04 +00001230 if (!Subtarget.isSVR4ABI()) {
1231 addScavengingSpillSlot(MF, RS);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001232 return;
Hal Finkelbb420f12013-03-15 05:06:04 +00001233 }
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001234
1235 // Get callee saved register information.
1236 MachineFrameInfo *FFI = MF.getFrameInfo();
1237 const std::vector<CalleeSavedInfo> &CSI = FFI->getCalleeSavedInfo();
1238
1239 // Early exit if no callee saved registers are modified!
Anton Korobeynikov3eb4fed2010-12-18 19:53:14 +00001240 if (CSI.empty() && !needsFP(MF)) {
Hal Finkelbb420f12013-03-15 05:06:04 +00001241 addScavengingSpillSlot(MF, RS);
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001242 return;
1243 }
1244
1245 unsigned MinGPR = PPC::R31;
1246 unsigned MinG8R = PPC::X31;
1247 unsigned MinFPR = PPC::F31;
1248 unsigned MinVR = PPC::V31;
1249
1250 bool HasGPSaveArea = false;
1251 bool HasG8SaveArea = false;
1252 bool HasFPSaveArea = false;
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001253 bool HasVRSAVESaveArea = false;
1254 bool HasVRSaveArea = false;
1255
1256 SmallVector<CalleeSavedInfo, 18> GPRegs;
1257 SmallVector<CalleeSavedInfo, 18> G8Regs;
1258 SmallVector<CalleeSavedInfo, 18> FPRegs;
1259 SmallVector<CalleeSavedInfo, 18> VRegs;
1260
1261 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1262 unsigned Reg = CSI[i].getReg();
Craig Topperabadc662012-04-20 06:31:50 +00001263 if (PPC::GPRCRegClass.contains(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001264 HasGPSaveArea = true;
1265
1266 GPRegs.push_back(CSI[i]);
1267
1268 if (Reg < MinGPR) {
1269 MinGPR = Reg;
1270 }
Craig Topperabadc662012-04-20 06:31:50 +00001271 } else if (PPC::G8RCRegClass.contains(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001272 HasG8SaveArea = true;
1273
1274 G8Regs.push_back(CSI[i]);
1275
1276 if (Reg < MinG8R) {
1277 MinG8R = Reg;
1278 }
Craig Topperabadc662012-04-20 06:31:50 +00001279 } else if (PPC::F8RCRegClass.contains(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001280 HasFPSaveArea = true;
1281
1282 FPRegs.push_back(CSI[i]);
1283
1284 if (Reg < MinFPR) {
1285 MinFPR = Reg;
1286 }
Craig Topperabadc662012-04-20 06:31:50 +00001287 } else if (PPC::CRBITRCRegClass.contains(Reg) ||
1288 PPC::CRRCRegClass.contains(Reg)) {
Roman Divackyc9e23d92012-09-12 14:47:47 +00001289 ; // do nothing, as we already know whether CRs are spilled
Craig Topperabadc662012-04-20 06:31:50 +00001290 } else if (PPC::VRSAVERCRegClass.contains(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001291 HasVRSAVESaveArea = true;
Craig Topperabadc662012-04-20 06:31:50 +00001292 } else if (PPC::VRRCRegClass.contains(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001293 HasVRSaveArea = true;
1294
1295 VRegs.push_back(CSI[i]);
1296
1297 if (Reg < MinVR) {
1298 MinVR = Reg;
1299 }
1300 } else {
1301 llvm_unreachable("Unknown RegisterClass!");
1302 }
1303 }
1304
1305 PPCFunctionInfo *PFI = MF.getInfo<PPCFunctionInfo>();
Eric Christopher38522b82015-01-30 02:11:26 +00001306 const TargetRegisterInfo *TRI = Subtarget.getRegisterInfo();
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001307
1308 int64_t LowerBound = 0;
1309
1310 // Take into account stack space reserved for tail calls.
1311 int TCSPDelta = 0;
Nick Lewycky50f02cb2011-12-02 22:16:29 +00001312 if (MF.getTarget().Options.GuaranteedTailCallOpt &&
1313 (TCSPDelta = PFI->getTailCallSPDelta()) < 0) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001314 LowerBound = TCSPDelta;
1315 }
1316
1317 // The Floating-point register save area is right below the back chain word
1318 // of the previous stack frame.
1319 if (HasFPSaveArea) {
1320 for (unsigned i = 0, e = FPRegs.size(); i != e; ++i) {
1321 int FI = FPRegs[i].getFrameIdx();
1322
1323 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1324 }
1325
Hal Finkelfeea6532013-03-26 20:08:20 +00001326 LowerBound -= (31 - TRI->getEncodingValue(MinFPR) + 1) * 8;
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001327 }
1328
1329 // Check whether the frame pointer register is allocated. If so, make sure it
1330 // is spilled to the correct offset.
Anton Korobeynikov3eb4fed2010-12-18 19:53:14 +00001331 if (needsFP(MF)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001332 HasGPSaveArea = true;
1333
1334 int FI = PFI->getFramePointerSaveIndex();
1335 assert(FI && "No Frame Pointer Save Slot!");
1336
1337 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1338 }
1339
Justin Hibbits654346e2015-01-10 01:57:21 +00001340 if (PFI->usesPICBase()) {
1341 HasGPSaveArea = true;
1342
1343 int FI = PFI->getPICBasePointerSaveIndex();
1344 assert(FI && "No PIC Base Pointer Save Slot!");
1345
1346 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1347 }
1348
Eric Christopherfc6de422014-08-05 02:39:49 +00001349 const PPCRegisterInfo *RegInfo =
Eric Christopher38522b82015-01-30 02:11:26 +00001350 static_cast<const PPCRegisterInfo *>(Subtarget.getRegisterInfo());
Hal Finkela7c54e82013-07-17 00:45:52 +00001351 if (RegInfo->hasBasePointer(MF)) {
1352 HasGPSaveArea = true;
1353
1354 int FI = PFI->getBasePointerSaveIndex();
1355 assert(FI && "No Base Pointer Save Slot!");
1356
1357 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1358 }
1359
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001360 // General register save area starts right below the Floating-point
1361 // register save area.
1362 if (HasGPSaveArea || HasG8SaveArea) {
1363 // Move general register save area spill slots down, taking into account
1364 // the size of the Floating-point register save area.
1365 for (unsigned i = 0, e = GPRegs.size(); i != e; ++i) {
1366 int FI = GPRegs[i].getFrameIdx();
1367
1368 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1369 }
1370
1371 // Move general register save area spill slots down, taking into account
1372 // the size of the Floating-point register save area.
1373 for (unsigned i = 0, e = G8Regs.size(); i != e; ++i) {
1374 int FI = G8Regs[i].getFrameIdx();
1375
1376 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1377 }
1378
1379 unsigned MinReg =
Hal Finkelfeea6532013-03-26 20:08:20 +00001380 std::min<unsigned>(TRI->getEncodingValue(MinGPR),
1381 TRI->getEncodingValue(MinG8R));
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001382
1383 if (Subtarget.isPPC64()) {
1384 LowerBound -= (31 - MinReg + 1) * 8;
1385 } else {
1386 LowerBound -= (31 - MinReg + 1) * 4;
1387 }
1388 }
1389
Roman Divackyc9e23d92012-09-12 14:47:47 +00001390 // For 32-bit only, the CR save area is below the general register
1391 // save area. For 64-bit SVR4, the CR save area is addressed relative
1392 // to the stack pointer and hence does not need an adjustment here.
1393 // Only CR2 (the first nonvolatile spilled) has an associated frame
1394 // index so that we have a single uniform save area.
1395 if (spillsCR(MF) && !(Subtarget.isPPC64() && Subtarget.isSVR4ABI())) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001396 // Adjust the frame index of the CR spill slot.
1397 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1398 unsigned Reg = CSI[i].getReg();
1399
Roman Divackyc9e23d92012-09-12 14:47:47 +00001400 if ((Subtarget.isSVR4ABI() && Reg == PPC::CR2)
Eric Christopherd1737492014-04-29 00:16:40 +00001401 // Leave Darwin logic as-is.
1402 || (!Subtarget.isSVR4ABI() &&
1403 (PPC::CRBITRCRegClass.contains(Reg) ||
1404 PPC::CRRCRegClass.contains(Reg)))) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001405 int FI = CSI[i].getFrameIdx();
1406
1407 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1408 }
1409 }
1410
1411 LowerBound -= 4; // The CR save area is always 4 bytes long.
1412 }
1413
1414 if (HasVRSAVESaveArea) {
1415 // FIXME SVR4: Is it actually possible to have multiple elements in CSI
1416 // which have the VRSAVE register class?
1417 // Adjust the frame index of the VRSAVE spill slot.
1418 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1419 unsigned Reg = CSI[i].getReg();
1420
Craig Topperabadc662012-04-20 06:31:50 +00001421 if (PPC::VRSAVERCRegClass.contains(Reg)) {
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001422 int FI = CSI[i].getFrameIdx();
1423
1424 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1425 }
1426 }
1427
1428 LowerBound -= 4; // The VRSAVE save area is always 4 bytes long.
1429 }
1430
1431 if (HasVRSaveArea) {
1432 // Insert alignment padding, we need 16-byte alignment.
1433 LowerBound = (LowerBound - 15) & ~(15);
1434
1435 for (unsigned i = 0, e = VRegs.size(); i != e; ++i) {
1436 int FI = VRegs[i].getFrameIdx();
1437
1438 FFI->setObjectOffset(FI, LowerBound + FFI->getObjectOffset(FI));
1439 }
1440 }
Hal Finkelbb420f12013-03-15 05:06:04 +00001441
1442 addScavengingSpillSlot(MF, RS);
1443}
1444
1445void
1446PPCFrameLowering::addScavengingSpillSlot(MachineFunction &MF,
1447 RegScavenger *RS) const {
1448 // Reserve a slot closest to SP or frame pointer if we have a dynalloc or
1449 // a large stack, which will require scavenging a register to materialize a
1450 // large offset.
1451
1452 // We need to have a scavenger spill slot for spills if the frame size is
1453 // large. In case there is no free register for large-offset addressing,
1454 // this slot is used for the necessary emergency spill. Also, we need the
1455 // slot for dynamic stack allocations.
1456
1457 // The scavenger might be invoked if the frame offset does not fit into
1458 // the 16-bit immediate. We don't know the complete frame size here
1459 // because we've not yet computed callee-saved register spills or the
1460 // needed alignment padding.
1461 unsigned StackSize = determineFrameLayout(MF, false, true);
1462 MachineFrameInfo *MFI = MF.getFrameInfo();
Hal Finkelcc1eeda2013-03-23 22:06:03 +00001463 if (MFI->hasVarSizedObjects() || spillsCR(MF) || spillsVRSAVE(MF) ||
1464 hasNonRISpills(MF) || (hasSpills(MF) && !isInt<16>(StackSize))) {
Hal Finkelbb420f12013-03-15 05:06:04 +00001465 const TargetRegisterClass *GPRC = &PPC::GPRCRegClass;
1466 const TargetRegisterClass *G8RC = &PPC::G8RCRegClass;
1467 const TargetRegisterClass *RC = Subtarget.isPPC64() ? G8RC : GPRC;
Hal Finkel9e331c22013-03-22 23:32:27 +00001468 RS->addScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(),
Hal Finkelbb420f12013-03-15 05:06:04 +00001469 RC->getAlignment(),
1470 false));
Hal Finkel0dfbb052013-03-26 18:57:22 +00001471
Hal Finkel18607632013-07-18 04:28:21 +00001472 // Might we have over-aligned allocas?
1473 bool HasAlVars = MFI->hasVarSizedObjects() &&
1474 MFI->getMaxAlignment() > getStackAlignment();
1475
Hal Finkel0dfbb052013-03-26 18:57:22 +00001476 // These kinds of spills might need two registers.
Hal Finkel18607632013-07-18 04:28:21 +00001477 if (spillsCR(MF) || spillsVRSAVE(MF) || HasAlVars)
Hal Finkel0dfbb052013-03-26 18:57:22 +00001478 RS->addScavengingFrameIndex(MFI->CreateStackObject(RC->getSize(),
1479 RC->getAlignment(),
1480 false));
1481
Hal Finkelbb420f12013-03-15 05:06:04 +00001482 }
Anton Korobeynikov7283b8d2010-11-27 23:05:25 +00001483}
Roman Divackyc9e23d92012-09-12 14:47:47 +00001484
Eric Christopherd1737492014-04-29 00:16:40 +00001485bool
Roman Divackyc9e23d92012-09-12 14:47:47 +00001486PPCFrameLowering::spillCalleeSavedRegisters(MachineBasicBlock &MBB,
Eric Christopherd1737492014-04-29 00:16:40 +00001487 MachineBasicBlock::iterator MI,
1488 const std::vector<CalleeSavedInfo> &CSI,
1489 const TargetRegisterInfo *TRI) const {
Roman Divackyc9e23d92012-09-12 14:47:47 +00001490
1491 // Currently, this function only handles SVR4 32- and 64-bit ABIs.
1492 // Return false otherwise to maintain pre-existing behavior.
1493 if (!Subtarget.isSVR4ABI())
1494 return false;
1495
1496 MachineFunction *MF = MBB.getParent();
1497 const PPCInstrInfo &TII =
Eric Christopher38522b82015-01-30 02:11:26 +00001498 *static_cast<const PPCInstrInfo *>(Subtarget.getInstrInfo());
Roman Divackyc9e23d92012-09-12 14:47:47 +00001499 DebugLoc DL;
1500 bool CRSpilled = false;
Hal Finkel2f293912013-04-13 23:06:15 +00001501 MachineInstrBuilder CRMIB;
Eric Christopherd1737492014-04-29 00:16:40 +00001502
Roman Divackyc9e23d92012-09-12 14:47:47 +00001503 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1504 unsigned Reg = CSI[i].getReg();
Hal Finkelac1a24b2013-06-28 22:29:56 +00001505 // Only Darwin actually uses the VRSAVE register, but it can still appear
1506 // here if, for example, @llvm.eh.unwind.init() is used. If we're not on
1507 // Darwin, ignore it.
1508 if (Reg == PPC::VRSAVE && !Subtarget.isDarwinABI())
1509 continue;
1510
Roman Divackyc9e23d92012-09-12 14:47:47 +00001511 // CR2 through CR4 are the nonvolatile CR fields.
1512 bool IsCRField = PPC::CR2 <= Reg && Reg <= PPC::CR4;
1513
Roman Divackyc9e23d92012-09-12 14:47:47 +00001514 // Add the callee-saved register as live-in; it's killed at the spill.
1515 MBB.addLiveIn(Reg);
1516
Hal Finkel2f293912013-04-13 23:06:15 +00001517 if (CRSpilled && IsCRField) {
1518 CRMIB.addReg(Reg, RegState::ImplicitKill);
1519 continue;
1520 }
1521
Roman Divackyc9e23d92012-09-12 14:47:47 +00001522 // Insert the spill to the stack frame.
1523 if (IsCRField) {
Hal Finkel67369882013-04-15 02:07:05 +00001524 PPCFunctionInfo *FuncInfo = MF->getInfo<PPCFunctionInfo>();
Roman Divackyc9e23d92012-09-12 14:47:47 +00001525 if (Subtarget.isPPC64()) {
Hal Finkel67369882013-04-15 02:07:05 +00001526 // The actual spill will happen at the start of the prologue.
1527 FuncInfo->addMustSaveCR(Reg);
Roman Divackyc9e23d92012-09-12 14:47:47 +00001528 } else {
Hal Finkel67369882013-04-15 02:07:05 +00001529 CRSpilled = true;
Bill Schmidtef3d1a22013-05-14 16:08:32 +00001530 FuncInfo->setSpillsCR();
Hal Finkel67369882013-04-15 02:07:05 +00001531
Eric Christopherd1737492014-04-29 00:16:40 +00001532 // 32-bit: FP-relative. Note that we made sure CR2-CR4 all have
1533 // the same frame index in PPCRegisterInfo::hasReservedSpillSlot.
1534 CRMIB = BuildMI(*MF, DL, TII.get(PPC::MFCR), PPC::R12)
Hal Finkel2f293912013-04-13 23:06:15 +00001535 .addReg(Reg, RegState::ImplicitKill);
1536
Eric Christopherd1737492014-04-29 00:16:40 +00001537 MBB.insert(MI, CRMIB);
1538 MBB.insert(MI, addFrameReference(BuildMI(*MF, DL, TII.get(PPC::STW))
1539 .addReg(PPC::R12,
1540 getKillRegState(true)),
1541 CSI[i].getFrameIdx()));
Roman Divackyc9e23d92012-09-12 14:47:47 +00001542 }
Roman Divackyc9e23d92012-09-12 14:47:47 +00001543 } else {
1544 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1545 TII.storeRegToStackSlot(MBB, MI, Reg, true,
Eric Christopherd1737492014-04-29 00:16:40 +00001546 CSI[i].getFrameIdx(), RC, TRI);
Roman Divackyc9e23d92012-09-12 14:47:47 +00001547 }
1548 }
1549 return true;
1550}
1551
1552static void
Hal Finkeld85a04b2013-04-13 08:09:20 +00001553restoreCRs(bool isPPC64, bool is31,
1554 bool CR2Spilled, bool CR3Spilled, bool CR4Spilled,
Eric Christopherd1737492014-04-29 00:16:40 +00001555 MachineBasicBlock &MBB, MachineBasicBlock::iterator MI,
1556 const std::vector<CalleeSavedInfo> &CSI, unsigned CSIIndex) {
Roman Divackyc9e23d92012-09-12 14:47:47 +00001557
1558 MachineFunction *MF = MBB.getParent();
Eric Christophercccae792015-01-30 22:02:31 +00001559 const PPCInstrInfo &TII = *MF->getSubtarget<PPCSubtarget>().getInstrInfo();
Roman Divackyc9e23d92012-09-12 14:47:47 +00001560 DebugLoc DL;
1561 unsigned RestoreOp, MoveReg;
1562
Hal Finkel67369882013-04-15 02:07:05 +00001563 if (isPPC64)
1564 // This is handled during epilogue generation.
1565 return;
1566 else {
Roman Divackyc9e23d92012-09-12 14:47:47 +00001567 // 32-bit: FP-relative
1568 MBB.insert(MI, addFrameReference(BuildMI(*MF, DL, TII.get(PPC::LWZ),
Eric Christopherd1737492014-04-29 00:16:40 +00001569 PPC::R12),
1570 CSI[CSIIndex].getFrameIdx()));
Ulrich Weigand49f487e2013-07-03 17:59:07 +00001571 RestoreOp = PPC::MTOCRF;
Roman Divackyc9e23d92012-09-12 14:47:47 +00001572 MoveReg = PPC::R12;
1573 }
Eric Christopherd1737492014-04-29 00:16:40 +00001574
Roman Divackyc9e23d92012-09-12 14:47:47 +00001575 if (CR2Spilled)
1576 MBB.insert(MI, BuildMI(*MF, DL, TII.get(RestoreOp), PPC::CR2)
Hal Finkel035b4822013-03-28 03:38:16 +00001577 .addReg(MoveReg, getKillRegState(!CR3Spilled && !CR4Spilled)));
Roman Divackyc9e23d92012-09-12 14:47:47 +00001578
1579 if (CR3Spilled)
1580 MBB.insert(MI, BuildMI(*MF, DL, TII.get(RestoreOp), PPC::CR3)
Hal Finkel035b4822013-03-28 03:38:16 +00001581 .addReg(MoveReg, getKillRegState(!CR4Spilled)));
Roman Divackyc9e23d92012-09-12 14:47:47 +00001582
1583 if (CR4Spilled)
1584 MBB.insert(MI, BuildMI(*MF, DL, TII.get(RestoreOp), PPC::CR4)
Hal Finkel035b4822013-03-28 03:38:16 +00001585 .addReg(MoveReg, getKillRegState(true)));
Roman Divackyc9e23d92012-09-12 14:47:47 +00001586}
1587
Eli Bendersky8da87162013-02-21 20:05:00 +00001588void PPCFrameLowering::
1589eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
1590 MachineBasicBlock::iterator I) const {
Eric Christopher38522b82015-01-30 02:11:26 +00001591 const TargetInstrInfo &TII = *Subtarget.getInstrInfo();
Eli Bendersky8da87162013-02-21 20:05:00 +00001592 if (MF.getTarget().Options.GuaranteedTailCallOpt &&
1593 I->getOpcode() == PPC::ADJCALLSTACKUP) {
1594 // Add (actually subtract) back the amount the callee popped on return.
1595 if (int CalleeAmt = I->getOperand(1).getImm()) {
1596 bool is64Bit = Subtarget.isPPC64();
1597 CalleeAmt *= -1;
1598 unsigned StackReg = is64Bit ? PPC::X1 : PPC::R1;
1599 unsigned TmpReg = is64Bit ? PPC::X0 : PPC::R0;
1600 unsigned ADDIInstr = is64Bit ? PPC::ADDI8 : PPC::ADDI;
1601 unsigned ADDInstr = is64Bit ? PPC::ADD8 : PPC::ADD4;
1602 unsigned LISInstr = is64Bit ? PPC::LIS8 : PPC::LIS;
1603 unsigned ORIInstr = is64Bit ? PPC::ORI8 : PPC::ORI;
1604 MachineInstr *MI = I;
1605 DebugLoc dl = MI->getDebugLoc();
1606
1607 if (isInt<16>(CalleeAmt)) {
1608 BuildMI(MBB, I, dl, TII.get(ADDIInstr), StackReg)
1609 .addReg(StackReg, RegState::Kill)
1610 .addImm(CalleeAmt);
1611 } else {
1612 MachineBasicBlock::iterator MBBI = I;
1613 BuildMI(MBB, MBBI, dl, TII.get(LISInstr), TmpReg)
1614 .addImm(CalleeAmt >> 16);
1615 BuildMI(MBB, MBBI, dl, TII.get(ORIInstr), TmpReg)
1616 .addReg(TmpReg, RegState::Kill)
1617 .addImm(CalleeAmt & 0xFFFF);
1618 BuildMI(MBB, MBBI, dl, TII.get(ADDInstr), StackReg)
1619 .addReg(StackReg, RegState::Kill)
1620 .addReg(TmpReg);
1621 }
1622 }
1623 }
1624 // Simply discard ADJCALLSTACKDOWN, ADJCALLSTACKUP instructions.
1625 MBB.erase(I);
1626}
1627
Eric Christopherd1737492014-04-29 00:16:40 +00001628bool
Roman Divackyc9e23d92012-09-12 14:47:47 +00001629PPCFrameLowering::restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
Eric Christopherd1737492014-04-29 00:16:40 +00001630 MachineBasicBlock::iterator MI,
1631 const std::vector<CalleeSavedInfo> &CSI,
1632 const TargetRegisterInfo *TRI) const {
Roman Divackyc9e23d92012-09-12 14:47:47 +00001633
1634 // Currently, this function only handles SVR4 32- and 64-bit ABIs.
1635 // Return false otherwise to maintain pre-existing behavior.
1636 if (!Subtarget.isSVR4ABI())
1637 return false;
1638
1639 MachineFunction *MF = MBB.getParent();
1640 const PPCInstrInfo &TII =
Eric Christopher38522b82015-01-30 02:11:26 +00001641 *static_cast<const PPCInstrInfo *>(Subtarget.getInstrInfo());
Roman Divackyc9e23d92012-09-12 14:47:47 +00001642 bool CR2Spilled = false;
1643 bool CR3Spilled = false;
1644 bool CR4Spilled = false;
1645 unsigned CSIIndex = 0;
1646
1647 // Initialize insertion-point logic; we will be restoring in reverse
1648 // order of spill.
1649 MachineBasicBlock::iterator I = MI, BeforeI = I;
1650 bool AtStart = I == MBB.begin();
1651
1652 if (!AtStart)
1653 --BeforeI;
1654
1655 for (unsigned i = 0, e = CSI.size(); i != e; ++i) {
1656 unsigned Reg = CSI[i].getReg();
1657
Hal Finkelac1a24b2013-06-28 22:29:56 +00001658 // Only Darwin actually uses the VRSAVE register, but it can still appear
1659 // here if, for example, @llvm.eh.unwind.init() is used. If we're not on
1660 // Darwin, ignore it.
1661 if (Reg == PPC::VRSAVE && !Subtarget.isDarwinABI())
1662 continue;
1663
Roman Divackyc9e23d92012-09-12 14:47:47 +00001664 if (Reg == PPC::CR2) {
1665 CR2Spilled = true;
1666 // The spill slot is associated only with CR2, which is the
1667 // first nonvolatile spilled. Save it here.
1668 CSIIndex = i;
1669 continue;
1670 } else if (Reg == PPC::CR3) {
1671 CR3Spilled = true;
1672 continue;
1673 } else if (Reg == PPC::CR4) {
1674 CR4Spilled = true;
1675 continue;
1676 } else {
1677 // When we first encounter a non-CR register after seeing at
1678 // least one CR register, restore all spilled CRs together.
1679 if ((CR2Spilled || CR3Spilled || CR4Spilled)
Eric Christopherd1737492014-04-29 00:16:40 +00001680 && !(PPC::CR2 <= Reg && Reg <= PPC::CR4)) {
Hal Finkeld85a04b2013-04-13 08:09:20 +00001681 bool is31 = needsFP(*MF);
1682 restoreCRs(Subtarget.isPPC64(), is31,
1683 CR2Spilled, CR3Spilled, CR4Spilled,
Eric Christopherd1737492014-04-29 00:16:40 +00001684 MBB, I, CSI, CSIIndex);
1685 CR2Spilled = CR3Spilled = CR4Spilled = false;
Roman Divackyc9e23d92012-09-12 14:47:47 +00001686 }
1687
1688 // Default behavior for non-CR saves.
1689 const TargetRegisterClass *RC = TRI->getMinimalPhysRegClass(Reg);
1690 TII.loadRegFromStackSlot(MBB, I, Reg, CSI[i].getFrameIdx(),
Eric Christopherd1737492014-04-29 00:16:40 +00001691 RC, TRI);
Roman Divackyc9e23d92012-09-12 14:47:47 +00001692 assert(I != MBB.begin() &&
Eric Christopherd1737492014-04-29 00:16:40 +00001693 "loadRegFromStackSlot didn't insert any code!");
Roman Divackyc9e23d92012-09-12 14:47:47 +00001694 }
1695
1696 // Insert in reverse order.
1697 if (AtStart)
1698 I = MBB.begin();
1699 else {
1700 I = BeforeI;
1701 ++I;
Eric Christopherd1737492014-04-29 00:16:40 +00001702 }
Roman Divackyc9e23d92012-09-12 14:47:47 +00001703 }
1704
1705 // If we haven't yet spilled the CRs, do so now.
Hal Finkeld85a04b2013-04-13 08:09:20 +00001706 if (CR2Spilled || CR3Spilled || CR4Spilled) {
Eric Christopherd1737492014-04-29 00:16:40 +00001707 bool is31 = needsFP(*MF);
Hal Finkeld85a04b2013-04-13 08:09:20 +00001708 restoreCRs(Subtarget.isPPC64(), is31, CR2Spilled, CR3Spilled, CR4Spilled,
Eric Christopherd1737492014-04-29 00:16:40 +00001709 MBB, I, CSI, CSIIndex);
Hal Finkeld85a04b2013-04-13 08:09:20 +00001710 }
Roman Divackyc9e23d92012-09-12 14:47:47 +00001711
1712 return true;
1713}