forked from OSchip/llvm-project
LiveIntervalAnalysis: Fix handleMove() extending liverange for undef inputs
Fix handleMove() incorrectly extending liveranges when an undef input of a vreg was moved past the (current) end of the liverange. llvm-svn: 268805
This commit is contained in:
parent
4a3c3b66d7
commit
71474e8d22
|
@ -939,10 +939,13 @@ public:
|
|||
hasRegMask = true;
|
||||
if (!MO.isReg())
|
||||
continue;
|
||||
// Aggressively clear all kill flags.
|
||||
// They are reinserted by VirtRegRewriter.
|
||||
if (MO.isUse())
|
||||
if (MO.isUse()) {
|
||||
if (!MO.readsReg())
|
||||
continue;
|
||||
// Aggressively clear all kill flags.
|
||||
// They are reinserted by VirtRegRewriter.
|
||||
MO.setIsKill(false);
|
||||
}
|
||||
|
||||
unsigned Reg = MO.getReg();
|
||||
if (!Reg)
|
||||
|
|
|
@ -300,6 +300,17 @@ TEST(LiveIntervalTest, MoveDownKillFollowing) {
|
|||
});
|
||||
}
|
||||
|
||||
TEST(LiveIntervalTest, MoveUndefUse) {
|
||||
liveIntervalTest(
|
||||
" %0 = IMPLICIT_DEF\n"
|
||||
" NOOP implicit undef %0\n"
|
||||
" NOOP implicit %0\n"
|
||||
" NOOP\n",
|
||||
[](MachineFunction &MF, LiveIntervals &LIS) {
|
||||
testHandleMove(MF, LIS, 1, 3);
|
||||
});
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
::testing::InitGoogleTest(&argc, argv);
|
||||
initLLVM();
|
||||
|
|
Loading…
Reference in New Issue