If -fomit-frame-pointer is used, we still need to record when the %esp register
authorBill Wendling <isanbard@gmail.com>
Thu, 9 Jul 2009 22:30:02 +0000 (22:30 +0000)
committerBill Wendling <isanbard@gmail.com>
Thu, 9 Jul 2009 22:30:02 +0000 (22:30 +0000)
is modified. Otherwise, the unwinder will get confused. The old code (before I
started my hacking) did this. It dropped on the floor, because I wasn't aware of
this requirement.

On the plus side, if we use "alloca" in a function, we create frame pointers
even with -fomit-frame-pointer is enabled!

This is a Good Thing(tm)!!!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75183 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86RegisterInfo.cpp

index be4764e276828d27731c9d1dc14f8095381ed80b..c9d3950217bd506565eca8bd0c638bb23a631159 100644 (file)
@@ -873,7 +873,7 @@ void X86RegisterInfo::emitPrologue(MachineFunction &MF) const {
     BuildMI(MBB, MBBI, DL, TII.get(X86::DBG_LABEL)).addImm(LabelId);
 
     // Emit DWARF info specifying the offsets of the callee-saved registers.
-    emitCalleeSavedFrameMoves(MF, LabelId, FramePtr);
+    emitCalleeSavedFrameMoves(MF, LabelId, HasFP ? FramePtr : StackPtr);
   }
 
   if (MBBI != MBB.end())
@@ -931,6 +931,25 @@ void X86RegisterInfo::emitPrologue(MachineFunction &MF) const {
     if (NumBytes)
       emitSPUpdate(MBB, MBBI, StackPtr, -(int64_t)NumBytes, Is64Bit, TII);
   }
+
+  if (!HasFP && needsFrameMoves && NumBytes) {
+    // Mark end of stack pointer adjustment.
+    unsigned LabelId = MMI->NextLabelID();
+    BuildMI(MBB, MBBI, DL, TII.get(X86::DBG_LABEL)).addImm(LabelId);
+
+    // Define the current CFA rule to use the provided offset.
+    if (StackSize) {
+      MachineLocation SPDst(MachineLocation::VirtualFP);
+      MachineLocation SPSrc(MachineLocation::VirtualFP,
+                            -StackSize + stackGrowth);
+      Moves.push_back(MachineMove(LabelId, SPDst, SPSrc));
+    } else {
+      // FIXME: Verify & implement for FP
+      MachineLocation SPDst(StackPtr);
+      MachineLocation SPSrc(StackPtr, stackGrowth);
+      Moves.push_back(MachineMove(LabelId, SPDst, SPSrc));
+    }
+  }
 }
 
 void X86RegisterInfo::emitEpilogue(MachineFunction &MF,