Skip to content

Commit c79bc59

Browse files
[PowerPC][Bug] Fix Bug in Stack Frame Update Code
The stack frame update code does not take into consideration spilling to registers for callee saved registers. The option -ppc-enable-pe-vector-spills turns on spilling to registers for callee saved registers and may expose a bug in the code that moves a stack frame pointer update instruction. Reviewed By: nemanjai, #powerpc Differential Revision: https://reviews.llvm.org/D101366
1 parent df47368 commit c79bc59

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed

llvm/lib/Target/PowerPC/PPCFrameLowering.cpp

+22
Original file line numberDiff line numberDiff line change
@@ -733,6 +733,22 @@ void PPCFrameLowering::emitPrologue(MachineFunction &MF,
733733
if (stackUpdateCanBeMoved(MF)) {
734734
const std::vector<CalleeSavedInfo> &Info = MFI.getCalleeSavedInfo();
735735
for (CalleeSavedInfo CSI : Info) {
736+
// If the callee saved register is spilled to a register instead of the
737+
// stack then the spill no longer uses the stack pointer.
738+
// This can lead to two consequences:
739+
// 1) We no longer need to update the stack because the function does not
740+
// spill any callee saved registers to stack.
741+
// 2) We have a situation where we still have to update the stack pointer
742+
// even though some registers are spilled to other registers. In
743+
// this case the current code moves the stack update to an incorrect
744+
// position.
745+
// In either case we should abort moving the stack update operation.
746+
if (CSI.isSpilledToReg()) {
747+
StackUpdateLoc = MBBI;
748+
MovingStackUpdateDown = false;
749+
break;
750+
}
751+
736752
int FrIdx = CSI.getFrameIdx();
737753
// If the frame index is not negative the callee saved info belongs to a
738754
// stack object that is not a fixed stack object. We ignore non-fixed
@@ -1621,6 +1637,12 @@ void PPCFrameLowering::emitEpilogue(MachineFunction &MF,
16211637
if (stackUpdateCanBeMoved(MF)) {
16221638
const std::vector<CalleeSavedInfo> & Info = MFI.getCalleeSavedInfo();
16231639
for (CalleeSavedInfo CSI : Info) {
1640+
// If the callee saved register is spilled to another register abort the
1641+
// stack update movement.
1642+
if (CSI.isSpilledToReg()) {
1643+
StackUpdateLoc = MBBI;
1644+
break;
1645+
}
16241646
int FrIdx = CSI.getFrameIdx();
16251647
// If the frame index is not negative the callee saved info belongs to a
16261648
// stack object that is not a fixed stack object. We ignore non-fixed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# RUN: llc -mtriple=powerpc64le-unknown-linux-gnu -mcpu=pwr9 \
2+
# RUN: -start-before=prologepilog -ppc-enable-pe-vector-spills \
3+
# RUN: -ppc-asm-full-reg-names -verify-machineinstrs %s -o - | FileCheck %s
4+
5+
---
6+
name: MixedSpill
7+
alignment: 16
8+
tracksRegLiveness: true
9+
liveins:
10+
body: |
11+
bb.0.entry:
12+
$r14 = IMPLICIT_DEF
13+
$f14 = IMPLICIT_DEF
14+
$lr8 = IMPLICIT_DEF
15+
BLR8 implicit undef $lr8, implicit undef $rm
16+
17+
# CHECK-LABEL: MixedSpill
18+
# CHECK: stdu r1, -176(r1)
19+
# CHECK: stfd f14, 32(r1)
20+
# CHECK: mtvsrd vs32, r14
21+
# CHECK: lfd f14, 32(r1)
22+
# CHECK: addi r1, r1, 176
23+
# CHECK: blr
24+
...
25+
---
26+
name: NoStackUpdate
27+
alignment: 16
28+
tracksRegLiveness: true
29+
liveins:
30+
body: |
31+
bb.0.entry:
32+
$r14 = IMPLICIT_DEF
33+
$f14 = IMPLICIT_DEF
34+
BLR8 implicit undef $lr8, implicit undef $rm
35+
36+
# CHECK-LABEL: NoStackUpdate
37+
# CHECK-NOT: stdu
38+
# CHECK: mtvsrd vs32, r14
39+
# CHECK: mfvsrd r14, vs32
40+
# CHECK: blr
41+
...

0 commit comments

Comments
 (0)