Skip to content

Commit c4cf13f

Browse files
committed
Fix global live range splitting regmask accuracy.
Pretend that regmask interference ends at the 'dead' slot, even when there is other interference ending at the 'reg' slot of the same instruction. llvm-svn: 150531
1 parent b0c0d34 commit c4cf13f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/CodeGen/InterferenceCache.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,8 @@ void InterferenceCache::Entry::update(unsigned MBBNum) {
185185

186186
// Also check for register mask interference.
187187
SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start;
188-
for (unsigned i = RegMaskSlots.size(); i && RegMaskSlots[i-1] > Limit; --i)
188+
for (unsigned i = RegMaskSlots.size();
189+
i && RegMaskSlots[i-1].getDeadSlot() > Limit; --i)
189190
if (MachineOperand::clobbersPhysReg(RegMaskBits[i-1], PhysReg)) {
190191
// Register mask i-1 clobbers PhysReg after the LIU interference.
191192
// Model the regmask clobber as a dead def.

0 commit comments

Comments
 (0)