mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 13:51:39 +00:00
Do not store the stack pointer if the stack size is 0.
Also, convert C-style comments to C++ and make sure code wraps at 80 cols. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15245 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3ada3e3f82
commit
ab640a5728
@ -166,7 +166,7 @@ PowerPCRegisterInfo::eliminateFrameIndex(MachineFunction &MF,
|
|||||||
if (!hasFP(MF))
|
if (!hasFP(MF))
|
||||||
Offset += MF.getFrameInfo()->getStackSize();
|
Offset += MF.getFrameInfo()->getStackSize();
|
||||||
|
|
||||||
MI.SetMachineOperandConst(OffIdx, MachineOperand::MO_SignExtendedImmed, Offset);
|
MI.SetMachineOperandConst(OffIdx,MachineOperand::MO_SignExtendedImmed,Offset);
|
||||||
DEBUG(std::cerr << "offset = " << Offset << std::endl);
|
DEBUG(std::cerr << "offset = " << Offset << std::endl);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -195,13 +195,12 @@ void PowerPCRegisterInfo::emitPrologue(MachineFunction &MF) const {
|
|||||||
// eliminates the need for add/sub brackets around call sites.
|
// eliminates the need for add/sub brackets around call sites.
|
||||||
//
|
//
|
||||||
NumBytes += MFI->getMaxCallFrameSize() +
|
NumBytes += MFI->getMaxCallFrameSize() +
|
||||||
24 /* Predefined PowerPC link area */ +
|
24 + // Predefined PowerPC link area
|
||||||
32 /* Predefined PowerPC params area */ +
|
32 + // Predefined PowerPC params area
|
||||||
0 /* local variables - managed by llvm*/ +
|
0 + // local variables - managed by LLVM
|
||||||
0 * 4 /* volatile GPRs used - managed by llvm */ +
|
0 * 4 + // volatile GPRs used - managed by LLVM
|
||||||
0 * 8 /* volatile FPRs used - managed by llvm */;
|
0 * 8; // volatile FPRs used - managed by LLVM
|
||||||
|
|
||||||
|
|
||||||
// Round the size to a multiple of the alignment (don't forget the 4 byte
|
// Round the size to a multiple of the alignment (don't forget the 4 byte
|
||||||
// offset though).
|
// offset though).
|
||||||
unsigned Align = MF.getTarget().getFrameInfo()->getStackAlignment();
|
unsigned Align = MF.getTarget().getFrameInfo()->getStackAlignment();
|
||||||
@ -217,6 +216,9 @@ void PowerPCRegisterInfo::emitPrologue(MachineFunction &MF) const {
|
|||||||
// Update frame info to pretend that this is part of the stack...
|
// Update frame info to pretend that this is part of the stack...
|
||||||
MFI->setStackSize(NumBytes);
|
MFI->setStackSize(NumBytes);
|
||||||
|
|
||||||
|
// Do we need to allocate space on the stack?
|
||||||
|
if (NumBytes == 0) return;
|
||||||
|
|
||||||
// adjust stack pointer: r1 -= numbytes
|
// adjust stack pointer: r1 -= numbytes
|
||||||
if (NumBytes <= 32768) {
|
if (NumBytes <= 32768) {
|
||||||
MI = BuildMI(PPC32::STWU, 3).addReg(PPC32::R1).addSImm(-NumBytes)
|
MI = BuildMI(PPC32::STWU, 3).addReg(PPC32::R1).addSImm(-NumBytes)
|
||||||
@ -252,11 +254,15 @@ void PowerPCRegisterInfo::emitEpilogue(MachineFunction &MF,
|
|||||||
// conservative.
|
// conservative.
|
||||||
if (MFI->hasCalls() || true) {
|
if (MFI->hasCalls() || true) {
|
||||||
// Restore LR
|
// Restore LR
|
||||||
MI = BuildMI(PPC32::LWZ, 2, PPC32::R0).addSImm(NumBytes+8).addReg(PPC32::R1);
|
MI = BuildMI(PPC32::LWZ, 2,PPC32::R0).addSImm(NumBytes+8).addReg(PPC32::R1);
|
||||||
MBB.insert(MBBI, MI);
|
MBB.insert(MBBI, MI);
|
||||||
MI = BuildMI(PPC32::MTLR, 1).addReg(PPC32::R0);
|
MI = BuildMI(PPC32::MTLR, 1).addReg(PPC32::R0);
|
||||||
MBB.insert(MBBI, MI);
|
MBB.insert(MBBI, MI);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Do we need to adjust the stack pointer back?
|
||||||
|
if (NumBytes == 0) return;
|
||||||
|
|
||||||
// Adjust stack pointer back
|
// Adjust stack pointer back
|
||||||
if (NumBytes <= 32767) {
|
if (NumBytes <= 32767) {
|
||||||
MI = BuildMI(PPC32::ADDI, 2, PPC32::R1).addReg(PPC32::R1).addSImm(NumBytes);
|
MI = BuildMI(PPC32::ADDI, 2, PPC32::R1).addReg(PPC32::R1).addSImm(NumBytes);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user