mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 08:41:49 +00:00
Deal with a few remaining spots that assume physical registers have live intervals.
This fixes PR7601. llvm-svn: 107955
This commit is contained in:
parent
144923dccf
commit
2be8142157
@ -482,6 +482,8 @@ bool SimpleRegisterCoalescing::RemoveCopyByCommutingDef(const CoalescerPair &CP,
|
|||||||
// extended to the end of the existing live range defined by the copy.
|
// extended to the end of the existing live range defined by the copy.
|
||||||
SlotIndex DefIdx = UseIdx.getDefIndex();
|
SlotIndex DefIdx = UseIdx.getDefIndex();
|
||||||
const LiveRange *DLR = IntB.getLiveRangeContaining(DefIdx);
|
const LiveRange *DLR = IntB.getLiveRangeContaining(DefIdx);
|
||||||
|
if (!DLR)
|
||||||
|
continue;
|
||||||
BHasPHIKill |= DLR->valno->hasPHIKill();
|
BHasPHIKill |= DLR->valno->hasPHIKill();
|
||||||
assert(DLR->valno->def == DefIdx);
|
assert(DLR->valno->def == DefIdx);
|
||||||
BDeadValNos.push_back(DLR->valno);
|
BDeadValNos.push_back(DLR->valno);
|
||||||
@ -949,8 +951,8 @@ SimpleRegisterCoalescing::ShortenDeadCopySrcLiveRange(LiveInterval &li,
|
|||||||
// Live-in to the function but dead. Remove it from entry live-in set.
|
// Live-in to the function but dead. Remove it from entry live-in set.
|
||||||
if (mf_->begin()->isLiveIn(li.reg))
|
if (mf_->begin()->isLiveIn(li.reg))
|
||||||
mf_->begin()->removeLiveIn(li.reg);
|
mf_->begin()->removeLiveIn(li.reg);
|
||||||
const LiveRange *LR = li.getLiveRangeContaining(CopyIdx);
|
if (const LiveRange *LR = li.getLiveRangeContaining(CopyIdx))
|
||||||
removeRange(li, LR->start, LR->end, li_, tri_);
|
removeRange(li, LR->start, LR->end, li_, tri_);
|
||||||
return removeIntervalIfEmpty(li, li_, tri_);
|
return removeIntervalIfEmpty(li, li_, tri_);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user