OSDN Git Service

Generate a compact unwind encoding in the face of a stack alignment push.
authorBill Wendling <isanbard@gmail.com>
Thu, 9 May 2013 20:10:38 +0000 (20:10 +0000)
committerBill Wendling <isanbard@gmail.com>
Thu, 9 May 2013 20:10:38 +0000 (20:10 +0000)
commitedfef3bd27d6269d473fbc570e8c2be02b4070df
tree0b90fc0efb67675975c7790b55e4278c290f2ddd
parent80d81aa8ba923c9f9a953410677ac53c4c2b8318
Generate a compact unwind encoding in the face of a stack alignment push.

We generate a `push' of a random register (%rax) if the stack needs to be
aligned by the size of that register. However, this could mess up compact unwind
generation. In particular, we want to still generate compact unwind in the
presence of this monstrosity.

Check if the push of of the %rax/%eax register. If it is and it's marked with
the `FrameSetup' flag, then we can generate a compact unwind encoding for the
function only if the push is the last FrameSetup instruction.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181540 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/X86/X86FrameLowering.cpp
test/CodeGen/X86/compact-unwind.ll [new file with mode: 0644]