@@ -1358,18 +1358,28 @@ unsigned RAGreedy::tryLocalSplit(LiveInterval &VirtReg, AllocationOrder &Order,
1358
1358
if (!UsableRegs.empty ()) {
1359
1359
// Get regmask slots for the whole block.
1360
1360
ArrayRef<SlotIndex> RMS = LIS->getRegMaskSlotsInBlock (BI.MBB ->getNumber ());
1361
+ DEBUG (dbgs () << RMS.size () << " regmasks in block:" );
1361
1362
// 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 ();
1364
1365
unsigned re = RMS.size ();
1365
1366
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]))
1368
1370
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 ]);
1369
1376
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;
1372
1381
}
1382
+ DEBUG (dbgs () << ' \n ' );
1373
1383
}
1374
1384
1375
1385
// Since we allow local split results to be split again, there is a risk of
0 commit comments