forked from OSchip/llvm-project
RA: Replace asserts related to empty live intervals
These don't exactly assert the same thing anymore, and allow empty live intervals with non-empty uses. Removed in r308808 and r308813. llvm-svn: 308906
This commit is contained in:
parent
8bbb130793
commit
5fbc87021e
|
@ -644,7 +644,10 @@ void InlineSpiller::reMaterializeAll() {
|
|||
continue;
|
||||
}
|
||||
|
||||
assert(LIS.hasInterval(Reg) && "Reg with no interval");
|
||||
assert(LIS.hasInterval(Reg) &&
|
||||
(!LIS.getInterval(Reg).empty() || !MRI.reg_nodbg_empty(Reg)) &&
|
||||
"Empty and not used live-range?!");
|
||||
|
||||
RegsToSpill[ResultPos++] = Reg;
|
||||
}
|
||||
RegsToSpill.erase(RegsToSpill.begin() + ResultPos, RegsToSpill.end());
|
||||
|
|
|
@ -133,11 +133,13 @@ void RegAllocBase::allocatePhysRegs() {
|
|||
if (AvailablePhysReg)
|
||||
Matrix->assign(*VirtReg, AvailablePhysReg);
|
||||
|
||||
for (VirtRegVec::iterator I = SplitVRegs.begin(), E = SplitVRegs.end();
|
||||
I != E; ++I) {
|
||||
LiveInterval *SplitVirtReg = &LIS->getInterval(*I);
|
||||
for (unsigned Reg : SplitVRegs) {
|
||||
assert(LIS->hasInterval(Reg));
|
||||
|
||||
LiveInterval *SplitVirtReg = &LIS->getInterval(Reg);
|
||||
assert(!VRM->hasPhys(SplitVirtReg->reg) && "Register already assigned");
|
||||
if (MRI->reg_nodbg_empty(SplitVirtReg->reg)) {
|
||||
assert(SplitVirtReg->empty() && "Non-empty but used interval");
|
||||
DEBUG(dbgs() << "not queueing unused " << *SplitVirtReg << '\n');
|
||||
aboutToRemoveInterval(*SplitVirtReg);
|
||||
LIS->removeInterval(SplitVirtReg->reg);
|
||||
|
|
Loading…
Reference in New Issue