aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-30 21:21:04 +0000
committerChris Lattner <sabre@nondot.org>2006-05-30 21:21:04 +0000
commit7b053509063f21aa0bf6ffc82b274e8cf6b0e182 (patch)
treea53c0f0ec3f52bc7aa9e8c775709c3eba0f1be32
parentac28588def0093238a28c52952c37919190873f5 (diff)
Always reserve space for 8 spilled GPRs. GCC apparently assumes that this
space will be available, even if the callee isn't varargs. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28571 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/PowerPC/PPCISelLowering.cpp19
1 files changed, 7 insertions, 12 deletions
diff --git a/lib/Target/PowerPC/PPCISelLowering.cpp b/lib/Target/PowerPC/PPCISelLowering.cpp
index 18e1cbacb4..a021c0e2d7 100644
--- a/lib/Target/PowerPC/PPCISelLowering.cpp
+++ b/lib/Target/PowerPC/PPCISelLowering.cpp
@@ -916,18 +916,13 @@ static SDOperand LowerCALL(SDOperand Op, SelectionDAG &DAG) {
for (unsigned i = 0; i != NumOps; ++i)
NumBytes += MVT::getSizeInBits(Op.getOperand(5+2*i).getValueType())/8;
- // If we are calling what looks like a varargs function on the caller side,
- // there are two cases:
- // 1) The callee uses va_start.
- // 2) The callee doesn't use va_start.
- //
- // In the case of #1, the prolog code will store up to 8 GPR argument
- // registers to the stack, allowing va_start to index over them in memory.
- // Because we cannot tell the difference (on the caller side) between #1/#2,
- // we have to conservatively assume we have #1. As such, make sure we have
- // at least enough stack space for the caller to store the 8 GPRs.
- if (isVarArg && Op.getNumOperands() > 5 && NumBytes < 56)
- NumBytes = 56;
+ // The prolog code of the callee may store up to 8 GPR argument registers to
+ // the stack, allowing va_start to index over them in memory if its varargs.
+ // Because we cannot tell if this is needed on the caller side, we have to
+ // conservatively assume that it is needed. As such, make sure we have at
+ // least enough stack space for the caller to store the 8 GPRs.
+ if (NumBytes < 24+8*4)
+ NumBytes = 24+8*4;
// Adjust the stack pointer for the new arguments...
// These operations are automatically eliminated by the prolog/epilog pass