Skip to content

Commit e5bf503

Browse files
committed
[CodeGen] Fix sinking local values in lpads with phis
There was already a test case for landingpads to handle this case, but I had forgotten to consider PHI instructions preceding the EH_LABEL in the landingpad. PR45261
1 parent 30d7121 commit e5bf503

File tree

2 files changed

+52
-1
lines changed

2 files changed

+52
-1
lines changed

llvm/lib/CodeGen/SelectionDAG/FastISel.cpp

+16-1
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,21 @@ static bool isRegUsedByPhiNodes(unsigned DefReg,
225225
return false;
226226
}
227227

228+
static bool isTerminatingEHLabel(MachineBasicBlock *MBB, MachineInstr &MI) {
229+
// Ignore non-EH labels.
230+
if (!MI.isEHLabel())
231+
return false;
232+
233+
// Any EH label outside a landing pad must be for an invoke. Consider it a
234+
// terminator.
235+
if (!MBB->isEHPad())
236+
return true;
237+
238+
// If this is a landingpad, the first non-phi instruction will be an EH_LABEL.
239+
// Don't consider that label to be a terminator.
240+
return MI.getIterator() != MBB->getFirstNonPHI();
241+
}
242+
228243
/// Build a map of instruction orders. Return the first terminator and its
229244
/// order. Consider EH_LABEL instructions to be terminators as well, since local
230245
/// values for phis after invokes must be materialized before the call.
@@ -233,7 +248,7 @@ void FastISel::InstOrderMap::initialize(
233248
unsigned Order = 0;
234249
for (MachineInstr &I : *MBB) {
235250
if (!FirstTerminator &&
236-
(I.isTerminator() || (I.isEHLabel() && &I != &MBB->front()))) {
251+
(I.isTerminator() || isTerminatingEHLabel(MBB, I))) {
237252
FirstTerminator = &I;
238253
FirstTerminatorOrder = Order;
239254
}

llvm/test/CodeGen/X86/sink-local-value.ll

+36
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,42 @@ try.cont: ; preds = %entry, %lpad
145145
; CHECK: retl
146146

147147

148+
define i32 @lpad_phi() personality i32 (...)* @__gxx_personality_v0 {
149+
entry:
150+
store i32 42, i32* @sink_across
151+
invoke void @may_throw()
152+
to label %try.cont unwind label %lpad
153+
154+
lpad: ; preds = %entry
155+
%p = phi i32 [ 11, %entry ] ; Trivial, but -O0 keeps it
156+
%0 = landingpad { i8*, i32 }
157+
catch i8* null
158+
store i32 %p, i32* @sink_across
159+
br label %try.cont
160+
161+
try.cont: ; preds = %entry, %lpad
162+
%r.0 = phi i32 [ 13, %entry ], [ 55, %lpad ]
163+
ret i32 %r.0
164+
}
165+
166+
; The constant materialization should be *after* the stores to sink_across, but
167+
; before any EH_LABEL.
168+
169+
; CHECK-LABEL: lpad_phi:
170+
; CHECK: movl $42, sink_across
171+
; CHECK: movl $13, %{{[a-z]*}}
172+
; CHECK: .Ltmp{{.*}}:
173+
; CHECK: calll may_throw
174+
; CHECK: .Ltmp{{.*}}:
175+
; CHECK: jmp .LBB{{.*}}
176+
; CHECK: .LBB{{.*}}: # %lpad
177+
; CHECK-NEXT: .Ltmp{{.*}}:
178+
; CHECK: movl {{.*}}, sink_across
179+
; CHECK: movl $55, %{{[a-z]*}}
180+
; CHECK: .LBB{{.*}}: # %try.cont
181+
; CHECK: retl
182+
183+
148184
; Function Attrs: nounwind readnone speculatable
149185
declare void @llvm.dbg.value(metadata, metadata, metadata) #0
150186

0 commit comments

Comments
 (0)