-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[PHIElimination] Handle subranges in LiveInterval updates #69429
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c3f698e
[PHIElimination] Handle subranges in LiveInterval updates
perlfu 4f26b46
Address reviewer feedback:
perlfu e2ff448
Address reviewer feedback:
perlfu 6c822ea
Add doxygen comment for getOrCreateEmptyInterval.
perlfu a4933c7
Simplify initialisation of ToUpdate vector.
perlfu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -389,7 +389,7 @@ void PHIElimination::LowerPHINode(MachineBasicBlock &MBB, | |
if (IncomingReg) { | ||
// Add the region from the beginning of MBB to the copy instruction to | ||
// IncomingReg's live interval. | ||
LiveInterval &IncomingLI = LIS->createEmptyInterval(IncomingReg); | ||
LiveInterval &IncomingLI = LIS->getOrCreateEmptyInterval(IncomingReg); | ||
VNInfo *IncomingVNI = IncomingLI.getVNInfoAt(MBBStartIndex); | ||
if (!IncomingVNI) | ||
IncomingVNI = IncomingLI.getNextValue(MBBStartIndex, | ||
|
@@ -400,24 +400,47 @@ void PHIElimination::LowerPHINode(MachineBasicBlock &MBB, | |
} | ||
|
||
LiveInterval &DestLI = LIS->getInterval(DestReg); | ||
assert(!DestLI.empty() && "PHIs should have nonempty LiveIntervals."); | ||
if (DestLI.endIndex().isDead()) { | ||
// A dead PHI's live range begins and ends at the start of the MBB, but | ||
// the lowered copy, which will still be dead, needs to begin and end at | ||
// the copy instruction. | ||
VNInfo *OrigDestVNI = DestLI.getVNInfoAt(MBBStartIndex); | ||
assert(OrigDestVNI && "PHI destination should be live at block entry."); | ||
DestLI.removeSegment(MBBStartIndex, MBBStartIndex.getDeadSlot()); | ||
DestLI.createDeadDef(DestCopyIndex.getRegSlot(), | ||
LIS->getVNInfoAllocator()); | ||
DestLI.removeValNo(OrigDestVNI); | ||
} else { | ||
// Otherwise, remove the region from the beginning of MBB to the copy | ||
// instruction from DestReg's live interval. | ||
DestLI.removeSegment(MBBStartIndex, DestCopyIndex.getRegSlot()); | ||
VNInfo *DestVNI = DestLI.getVNInfoAt(DestCopyIndex.getRegSlot()); | ||
assert(!DestLI.empty() && "PHIs should have non-empty LiveIntervals."); | ||
|
||
SlotIndex NewStart = DestCopyIndex.getRegSlot(); | ||
|
||
SmallVector<LiveRange *> ToUpdate({&DestLI}); | ||
for (auto &SR : DestLI.subranges()) | ||
ToUpdate.push_back(&SR); | ||
|
||
for (auto LR : ToUpdate) { | ||
auto DestSegment = LR->find(MBBStartIndex); | ||
assert(DestSegment != LR->end() && | ||
"PHI destination must be live in block"); | ||
|
||
if (LR->endIndex().isDead()) { | ||
// A dead PHI's live range begins and ends at the start of the MBB, but | ||
// the lowered copy, which will still be dead, needs to begin and end at | ||
// the copy instruction. | ||
VNInfo *OrigDestVNI = LR->getVNInfoAt(DestSegment->start); | ||
assert(OrigDestVNI && "PHI destination should be live at block entry."); | ||
LR->removeSegment(DestSegment->start, DestSegment->start.getDeadSlot()); | ||
LR->createDeadDef(NewStart, LIS->getVNInfoAllocator()); | ||
LR->removeValNo(OrigDestVNI); | ||
continue; | ||
} | ||
|
||
// Destination copies are not inserted in the same order as the PHI nodes | ||
// they replace. Hence the start of the live range may need to be adjusted | ||
// to match the actual slot index of the copy. | ||
if (DestSegment->start > NewStart) { | ||
VNInfo *VNI = LR->getVNInfoAt(DestSegment->start); | ||
assert(VNI && "value should be defined for known segment"); | ||
LR->addSegment( | ||
LiveInterval::Segment(NewStart, DestSegment->start, VNI)); | ||
} else if (DestSegment->start < NewStart) { | ||
assert(DestSegment->start >= MBBStartIndex); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. as above this should be |
||
assert(DestSegment->end >= DestCopyIndex.getRegSlot()); | ||
LR->removeSegment(DestSegment->start, NewStart); | ||
} | ||
VNInfo *DestVNI = LR->getVNInfoAt(NewStart); | ||
assert(DestVNI && "PHI destination should be live at its definition."); | ||
DestVNI->def = DestCopyIndex.getRegSlot(); | ||
DestVNI->def = NewStart; | ||
} | ||
} | ||
|
||
|
@@ -612,6 +635,10 @@ void PHIElimination::LowerPHINode(MachineBasicBlock &MBB, | |
SlotIndex LastUseIndex = LIS->getInstructionIndex(*KillInst); | ||
SrcLI.removeSegment(LastUseIndex.getRegSlot(), | ||
LIS->getMBBEndIdx(&opBlock)); | ||
for (auto &SR : SrcLI.subranges()) { | ||
SR.removeSegment(LastUseIndex.getRegSlot(), | ||
LIS->getMBBEndIdx(&opBlock)); | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.