PPC32: Fix stack collision between FP and CR save areas.
authorBill Schmidt <wschmidt@linux.vnet.ibm.com>
Tue, 14 May 2013 16:08:32 +0000 (16:08 +0000)
committerBill Schmidt <wschmidt@linux.vnet.ibm.com>
Tue, 14 May 2013 16:08:32 +0000 (16:08 +0000)
commitef3d1a24ed4c05d5968182a0a26b3b244a166a4e
tree4db0ff4e75bc17ab79a864ad7145ae3e0a30bf25
parent7dcbb96e26528167cc49afa9edebc0e2775ce017
PPC32: Fix stack collision between FP and CR save areas.

The changes to CR spill handling missed a case for 32-bit PowerPC.
The code in PPCFrameLowering::processFunctionBeforeFrameFinalized()
checks whether CR spill has occurred using a flag in the function
info.  This flag is only set by storeRegToStackSlot and
loadRegFromStackSlot.  spillCalleeSavedRegisters does not call
storeRegToStackSlot, but instead produces MI directly.  Thus we don't
see the CR is spilled when assigning frame offsets, and the CR spill
ends up colliding with some other location (generally the FP slot).

This patch sets the flag in spillCalleeSavedRegisters for PPC32 so
that the CR spill is properly detected and gets its own slot in the
stack frame.

llvm-svn: 181800
llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
llvm/test/CodeGen/PowerPC/crsave.ll