diff options
author | Tim Northover <tnorthover@apple.com> | 2014-05-22 13:03:43 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2014-05-22 13:03:43 +0000 |
commit | f9e798ba6a8b0907c58ef3e6733cac4026baaebc (patch) | |
tree | 409722d8641b0dca9e1a450522e1949a6ed834ab /llvm/lib/Target/ARM/ARMFrameLowering.cpp | |
parent | cc346a92e30b3e0207a98bba471ef5161260249f (diff) | |
download | bcm5719-llvm-f9e798ba6a8b0907c58ef3e6733cac4026baaebc.tar.gz bcm5719-llvm-f9e798ba6a8b0907c58ef3e6733cac4026baaebc.zip |
Segmented stacks: omit __morestack call when there's no frame.
Patch by Florian Zeitz
llvm-svn: 209436
Diffstat (limited to 'llvm/lib/Target/ARM/ARMFrameLowering.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMFrameLowering.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMFrameLowering.cpp b/llvm/lib/Target/ARM/ARMFrameLowering.cpp index c0f8a8d9025..0caf4bfd77a 100644 --- a/llvm/lib/Target/ARM/ARMFrameLowering.cpp +++ b/llvm/lib/Target/ARM/ARMFrameLowering.cpp @@ -1746,6 +1746,12 @@ void ARMFrameLowering::adjustForSegmentedStacks(MachineFunction &MF) const { ARMFunctionInfo *ARMFI = MF.getInfo<ARMFunctionInfo>(); DebugLoc DL; + uint64_t StackSize = MFI->getStackSize(); + + // Do not generate a prologue for functions with a stack of size zero + if (StackSize == 0) + return; + // Use R4 and R5 as scratch registers. // We save R4 and R5 before use and restore them before leaving the function. unsigned ScratchReg0 = ARM::R4; @@ -1775,8 +1781,6 @@ void ARMFrameLowering::adjustForSegmentedStacks(MachineFunction &MF) const { MF.push_front(PrevStackMBB); // The required stack size that is aligned to ARM constant criterion. - uint64_t StackSize = MFI->getStackSize(); - AlignedStackSize = alignToARMConstant(StackSize); // When the frame size is less than 256 we just compare the stack |