Skip to content

Commit 234e5a8

Browse files
author
Marcin Koscielnicki
committedJun 28, 2016
[SystemZ] Save/restore r6 and r7 if function contains landing pad.
This fixes PR27102. Differential Revision: http://reviews.llvm.org/D18541 llvm-svn: 274017
1 parent baf27df commit 234e5a8

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed
 

‎llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,12 @@ void SystemZFrameLowering::determineCalleeSaves(MachineFunction &MF,
8181
for (unsigned I = MFI->getVarArgsFirstGPR(); I < SystemZ::NumArgGPRs; ++I)
8282
SavedRegs.set(SystemZ::ArgGPRs[I]);
8383

84+
// If there are any landing pads, entering them will modify r6/r7.
85+
if (!MF.getMMI().getLandingPads().empty()) {
86+
SavedRegs.set(SystemZ::R6D);
87+
SavedRegs.set(SystemZ::R7D);
88+
}
89+
8490
// If the function requires a frame pointer, record that the hard
8591
// frame pointer will be clobbered.
8692
if (HasFP)

‎llvm/test/DebugInfo/SystemZ/eh_frame_personality.ll

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ clean:
2020
; CHECK-FUNC: .cfi_startproc
2121
; CHECK-FUNC: .cfi_personality 0, __gxx_personality_v0
2222
; CHECK-FUNC: .cfi_lsda 0, .Lexception0
23-
; CHECK-FUNC: stmg %r14, %r15, 112(%r15)
23+
; CHECK-FUNC: stmg %r6, %r15, 48(%r15)
24+
; CHECK-FUNC: .cfi_offset %r6, -112
25+
; CHECK-FUNC: .cfi_offset %r7, -104
2426
; CHECK-FUNC: .cfi_offset %r14, -48
2527
; CHECK-FUNC: .cfi_offset %r15, -40
2628
; CHECK-FUNC: aghi %r15, -160

0 commit comments

Comments
 (0)
Please sign in to comment.