Last check-in was bogus. There is no need to align the stack if the function is a...
authorEvan Cheng <evan.cheng@apple.com>
Sat, 20 Jan 2007 10:11:56 +0000 (10:11 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Sat, 20 Jan 2007 10:11:56 +0000 (10:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33399 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86RegisterInfo.cpp

index ac1b4ef0b38b7e7001ac39657bd8c340ceff27a5..477267ad56ac0f2b9fff97a8304c9c04153e1b34 100644 (file)
@@ -991,6 +991,7 @@ void X86RegisterInfo::emitPrologue(MachineFunction &MF) const {
   MachineBasicBlock::iterator MBBI = MBB.begin();
   MachineFrameInfo *MFI = MF.getFrameInfo();
   unsigned Align = MF.getTarget().getFrameInfo()->getStackAlignment();
+  unsigned AlignMask = Align - 1;
   const Function* Fn = MF.getFunction();
   const X86Subtarget* Subtarget = &MF.getTarget().getSubtarget<X86Subtarget>();
   MachineInstr *MI;
@@ -1004,9 +1005,11 @@ void X86RegisterInfo::emitPrologue(MachineFunction &MF) const {
     //
     NumBytes += MFI->getMaxCallFrameSize();
 
-  // Round the size to a multiple of the alignment (don't forget the 4/8 byte
-  // offset though).
-  NumBytes = ((NumBytes+SlotSize)+Align-1)/Align*Align - SlotSize;
+    // Round the size to a multiple of the alignment (don't forget the 4/8 byte
+    // offset pushed by the caller though). No need to align the stack if this
+    // is a leaf function.
+    NumBytes = (((NumBytes+SlotSize) + AlignMask) & ~AlignMask) - SlotSize;
+  }
 
   // Update frame info to pretend that this is part of the stack...
   MFI->setStackSize(NumBytes);