Skip to content

Add support in SILLoop::canDuplicate for PartialApplyInst. #28261

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
Nov 14, 2019
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
17 changes: 10 additions & 7 deletions lib/SIL/LoopInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,16 @@ bool SILLoop::canDuplicate(SILInstruction *I) const {
return true;
}
if (I->isDeallocatingStack()) {
SILInstruction *Alloc = nullptr;
if (auto *Dealloc = dyn_cast<DeallocStackInst>(I))
Alloc = dyn_cast<AllocStackInst>(Dealloc->getOperand());
if (auto *Dealloc = dyn_cast<DeallocRefInst>(I))
Alloc = dyn_cast<AllocRefInst>(Dealloc->getOperand());
// The matching alloc_stack must be in the loop.
return Alloc && contains(Alloc);
SILInstruction *alloc = nullptr;
if (auto *dealloc = dyn_cast<DeallocStackInst>(I)) {
SILValue address = dealloc->getOperand();
if (isa<AllocStackInst>(address) || isa<PartialApplyInst>(address))
alloc = cast<SingleValueInstruction>(address);
}
if (auto *dealloc = dyn_cast<DeallocRefInst>(I))
alloc = dyn_cast<AllocRefInst>(dealloc->getOperand());

return alloc && contains(alloc);
}

// CodeGen can't build ssa for objc methods.
Expand Down