1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

* Follow the PowerPC convention of leaving 24 bytes for linking on the stack.

* Also leave space for spilling integer registers (this should be calculated)

llvm-svn: 14554
This commit is contained in:
Misha Brukman 2004-07-01 21:35:00 +00:00
parent f5deab6100
commit c9ecaeb69d

View File

@ -195,7 +195,10 @@ void PowerPCRegisterInfo::emitPrologue(MachineFunction &MF) const {
// in the function immediately on entry to the current function. This
// eliminates the need for add/sub brackets around call sites.
//
NumBytes += MFI->getMaxCallFrameSize();
NumBytes += MFI->getMaxCallFrameSize() +
24 /* Predefined PowerPC link area */ +
12*4 /* Spilled int regs */ +
0*8 /* Spilled fp regs */;
// Round the size to a multiple of the alignment (don't forget the 4 byte
// offset though).
@ -217,7 +220,7 @@ void PowerPCRegisterInfo::emitPrologue(MachineFunction &MF) const {
// adjust stack pointer: r1 -= numbytes
if (NumBytes) {
MI = BuildMI(PPC32::STWU, 2, PPC32::R1).addImm(-80).addReg(PPC32::R1);
MI = BuildMI(PPC32::STWU, 2, PPC32::R1).addImm(-NumBytes).addReg(PPC32::R1);
MBB.insert(MBBI, MI);
}
}