Skip to content

Commit b0c0d34

Browse files
committed
Fix details in local live range splitting with regmasks.
Perform all comparisons at instruction granularity, and make sure register masks on uses count in both gaps. llvm-svn: 150530
1 parent e7d3f44 commit b0c0d34

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

llvm/lib/CodeGen/RegAllocGreedy.cpp

+16-6
Original file line numberDiff line numberDiff line change
@@ -1358,18 +1358,28 @@ unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order,
13581358
if (!UsableRegs.empty()) {
13591359
// Get regmask slots for the whole block.
13601360
ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock(BI.MBB->getNumber());
1361+
DEBUG(dbgs() << RMS.size() << " regmasks in block:");
13611362
// Constrain to VirtReg's live range.
1362-
unsigned ri = std::lower_bound(RMS.begin(), RMS.end(), Uses.front())
1363-
- RMS.begin();
1363+
unsigned ri = std::lower_bound(RMS.begin(), RMS.end(),
1364+
Uses.front().getRegSlot()) - RMS.begin();
13641365
unsigned re = RMS.size();
13651366
for (unsigned i = 0; i != NumGaps && ri != re; ++i) {
1366-
assert(Uses[i] <= RMS[ri]);
1367-
if (Uses[i+1] <= RMS[ri])
1367+
// Look for Uses[i] <= RMS <= Uses[i+1].
1368+
assert(!SlotIndex::isEarlierInstr(RMS[ri], Uses[i]));
1369+
if (SlotIndex::isEarlierInstr(Uses[i+1], RMS[ri]))
13681370
continue;
1371+
// Skip a regmask on the same instruction as the last use. It doesn't
1372+
// overlap the live range.
1373+
if (SlotIndex::isSameInstr(Uses[i+1], RMS[ri]) && i+1 == NumGaps)
1374+
break;
1375+
DEBUG(dbgs() << ' ' << RMS[ri] << ':' << Uses[i] << '-' << Uses[i+1]);
13691376
RegMaskGaps.push_back(i);
1370-
do ++ri;
1371-
while (ri != re && RMS[ri] < Uses[i+1]);
1377+
// Advance ri to the next gap. A regmask on one of the uses counts in
1378+
// both gaps.
1379+
while (ri != re && SlotIndex::isEarlierInstr(RMS[ri], Uses[i+1]))
1380+
++ri;
13721381
}
1382+
DEBUG(dbgs() << '\n');
13731383
}
13741384

13751385
// Since we allow local split results to be split again, there is a risk of

0 commit comments

Comments
 (0)