[PATCH] D82110: [LiveIntervals] Fix early-clobber handling in handleMoveUp
Jay Foad via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 19 02:39:52 PDT 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7cdf4326a8f2: [LiveIntervals] Fix early-clobber handling in handleMoveUp (authored by foad).
Changed prior to commit:
https://reviews.llvm.org/D82110?vs=271769&id=271972#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82110/new/
https://reviews.llvm.org/D82110
Files:
llvm/lib/CodeGen/LiveIntervals.cpp
llvm/unittests/MI/LiveIntervalTest.cpp
Index: llvm/unittests/MI/LiveIntervalTest.cpp
===================================================================
--- llvm/unittests/MI/LiveIntervalTest.cpp
+++ llvm/unittests/MI/LiveIntervalTest.cpp
@@ -443,6 +443,21 @@
});
}
+TEST(LiveIntervalTest, EarlyClobberSubRegMoveUp) {
+ // handleMoveUp had a bug where moving an early-clobber subreg def into the
+ // middle of an earlier segment resulted in an invalid live range.
+ liveIntervalTest(R"MIR(
+ %4:sreg_32 = IMPLICIT_DEF
+ %6:sreg_32 = IMPLICIT_DEF
+ undef early-clobber %9.sub0:sreg_64 = WWM %4:sreg_32, implicit $exec
+ %5:sreg_32 = S_FLBIT_I32_B32 %9.sub0:sreg_64
+ early-clobber %9.sub1:sreg_64 = WWM %6:sreg_32, implicit $exec
+ %7:sreg_32 = S_FLBIT_I32_B32 %9.sub1:sreg_64
+)MIR", [](MachineFunction &MF, LiveIntervals &LIS) {
+ testHandleMove(MF, LIS, 4, 3);
+ });
+}
+
TEST(LiveIntervalTest, TestMoveSubRegDefAcrossUseDef) {
liveIntervalTest(R"MIR(
%1:vreg_64 = IMPLICIT_DEF
Index: llvm/lib/CodeGen/LiveIntervals.cpp
===================================================================
--- llvm/lib/CodeGen/LiveIntervals.cpp
+++ llvm/lib/CodeGen/LiveIntervals.cpp
@@ -1342,7 +1342,7 @@
OldIdxOut->start = NewIdxDef;
OldIdxVNI->def = NewIdxDef;
if (OldIdxIn != E && SlotIndex::isEarlierInstr(NewIdx, OldIdxIn->end))
- OldIdxIn->end = NewIdx.getRegSlot();
+ OldIdxIn->end = NewIdxDef;
}
} else if (OldIdxIn != E
&& SlotIndex::isEarlierInstr(NewIdxOut->start, NewIdx)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D82110.271972.patch
Type: text/x-patch
Size: 1553 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200619/be7c56e1/attachment.bin>
More information about the llvm-commits
mailing list