Skip to content

PrunedLiveness fix discoveredBlocks to be unique. #59983

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 1 commit into from
Jul 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions include/swift/SIL/PrunedLiveness.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,9 +180,16 @@ class PrunedLiveBlocks {
protected:
void markBlockLive(SILBasicBlock *bb, IsLive isLive) {
assert(isLive != Dead && "erasing live blocks isn't implemented.");
liveBlocks[bb] = (isLive == LiveOut);
if (discoveredBlocks)
discoveredBlocks->push_back(bb);
bool isLiveOut = (isLive == LiveOut);
auto iterAndInserted =
liveBlocks.insert(std::make_pair(bb, isLiveOut));
if (iterAndInserted.second) {
if (discoveredBlocks)
discoveredBlocks->push_back(bb);
} else if (isLiveOut) {
// Update the existing entry to be live-out.
iterAndInserted.first->getSecond() = true;
}
}

void computeUseBlockLiveness(SILBasicBlock *userBB);
Expand Down