Files
swift-mirror/lib/SILPasses/AllocBoxToStack.cpp
Chris Lattner 91c7cea310 Remove the SILModule& argument from a few methods in SILInstruction.h.
Instructions know which module they came from, so there is no need to
pass it in.



Swift SVN r9584
2013-10-22 11:06:50 +00:00

410 lines
15 KiB
C++

//===--- AllocBoxToStack.cpp - Promote alloc_box to alloc_stack -----------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2015 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "allocbox-to-stack"
#include "swift/Subsystems.h"
#include "swift/SIL/SILBuilder.h"
#include "swift/SIL/Dominance.h"
#include "swift/SILPasses/Utils/Local.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Support/Debug.h"
using namespace swift;
STATISTIC(NumStackPromoted, "Number of alloc_box's promoted to the stack");
STATISTIC(NumStackRemoved, "Number of variables removed completely");
//===----------------------------------------------------------------------===//
// alloc_box Promotion
//===----------------------------------------------------------------------===//
/// getLastRelease - Determine if there is a single ReleaseInst or
/// DeallocBoxInst that post-dominates all of the uses of the specified
/// AllocBox. If so, return it. If not, return null.
static SILInstruction *getLastRelease(AllocBoxInst *ABI,
SmallVectorImpl<SILInstruction*> &Users,
SmallVectorImpl<SILInstruction*> &Releases,
llvm::OwningPtr<PostDominanceInfo> &PDI) {
// If there are no releases, then the box is leaked. Don't transform it. This
// can only happen in hand-written SIL code, not compiler generated code.
if (Releases.empty())
return nullptr;
// If there is a single release, it must be the last release. The calling
// conventions used in SIL (at least in the case where the ABI doesn't escape)
// are such that the value is live until it is explicitly released: there are
// no calls in this case that pass ownership and release for us.
if (Releases.size() == 1)
return Releases.back();
// If there are multiple releases of the value, we only support the case where
// there is a single ultimate release that post-dominates all of the rest of
// them.
// Determine the most-post-dominating release by doing a linear scan over all
// of the releases to find one that post-dominates them all. Because we don't
// want to do multiple scans of the block (which could be large) just keep
// track of whether there are multiple releases in the ultimate block we find.
bool MultipleReleasesInBlock = false;
SILInstruction *LastRelease = Releases[0];
for (unsigned i = 1, e = Releases.size(); i != e; ++i) {
SILInstruction *RI = Releases[i];
// If this release is in the same block as our candidate, keep track of the
// multiple release nature of that block, but don't try to determine an
// ordering between them yet.
if (RI->getParent() == LastRelease->getParent()) {
MultipleReleasesInBlock = true;
continue;
}
// Otherwise, we need to order them. Make sure we've computed PDI.
if (!PDI.isValid())
PDI.reset(new PostDominanceInfo(ABI->getParent()->getParent()));
if (PDI->properlyDominates(RI->getParent(), LastRelease->getParent())) {
// RI post-dom's LastRelease, so it is our new LastRelease.
LastRelease = RI;
MultipleReleasesInBlock = false;
}
}
// Okay, we found the most-post-dominating release. If it doesn't postdom
// all of our uses, it would be unsafe to use it though, so check this.
for (auto *User : Users) {
if (User->getParent() == LastRelease->getParent())
continue;
// Make sure we've computed PDI.
if (!PDI.isValid())
PDI.reset(new PostDominanceInfo(ABI->getParent()->getParent()));
if (!PDI->properlyDominates(LastRelease->getParent(), User->getParent()))
return nullptr;
}
// Okay, the LastRelease block postdoms all users. If there are multiple
// releases in the block, make sure we're looking at the last one.
if (MultipleReleasesInBlock) {
for (auto MBBI = --LastRelease->getParent()->end(); ; --MBBI) {
auto *RI = dyn_cast<StrongReleaseInst>(MBBI);
if (RI == nullptr ||
RI->getOperand() != SILValue(ABI, 0)) {
assert(MBBI != LastRelease->getParent()->begin() &&
"Didn't find any release in this block?");
continue;
}
LastRelease = RI;
break;
}
}
return LastRelease;
}
/// checkAllocBoxUses - Scan all of the uses (recursively) of the specified
/// alloc_box, validating that they don't allow the ABI to escape.
static bool checkAllocBoxUses(AllocBoxInst *ABI, ValueBase *V,
SmallVectorImpl<SILInstruction*> &Users,
SmallVectorImpl<SILInstruction*> &Releases) {
for (auto UI : V->getUses()) {
auto *User = cast<SILInstruction>(UI->getUser());
// These instructions do not cause the box's address to escape.
if (isa<StrongRetainInst>(User) ||
isa<CopyAddrInst>(User) ||
isa<LoadInst>(User) ||
isa<InitializeVarInst>(User) ||
isa<ProtocolMethodInst>(User) ||
(isa<StoreInst>(User) && UI->getOperandNumber() == 1)) {
Users.push_back(User);
continue;
}
// Release doesn't either, but we want to keep track of where this value
// gets released.
if (isa<StrongReleaseInst>(User) || isa<DeallocBoxInst>(User)) {
Releases.push_back(User);
Users.push_back(User);
continue;
}
// These instructions only cause the alloc_box to escape if they are used in
// a way that escapes. Recursively check that the uses of the instruction
// don't escape and collect all of the uses of the value.
if (isa<StructElementAddrInst>(User) || isa<TupleElementAddrInst>(User) ||
isa<ProjectExistentialInst>(User)) {
Users.push_back(User);
if (checkAllocBoxUses(ABI, User, Users, Releases))
return true;
continue;
}
// apply and partial_apply instructions do not capture the pointer when
// it is passed through [inout] arguments or for indirect returns.
if (auto apply = dyn_cast<ApplyInst>(User)) {
if (apply->getFunctionTypeInfo()
->getParameters()[UI->getOperandNumber()-1].isIndirect())
continue;
}
if (auto partialApply = dyn_cast<PartialApplyInst>(User)) {
if (partialApply->getFunctionTypeInfo()
->getParameters()[UI->getOperandNumber()-1].isIndirect())
continue;
}
// Otherwise, this looks like it escapes.
DEBUG(llvm::errs() << "*** Failed to promote alloc_box: " << *ABI
<< " Due to user: " << *User << "\n");
return true;
}
return false;
}
/// optimizeAllocBox - Try to promote an alloc_box instruction to an
/// alloc_stack. On success, this updates the IR and returns true, but does not
/// remove the alloc_box itself.
static bool optimizeAllocBox(AllocBoxInst *ABI,
llvm::OwningPtr<PostDominanceInfo> &PDI) {
SmallVector<SILInstruction*, 32> Users;
SmallVector<SILInstruction*, 4> Releases;
// Scan all of the uses of the alloc_box to see if any of them cause the
// allocated memory to escape. If so, we can't promote it to the stack. If
// not, we can turn it into an alloc_stack.
if (checkAllocBoxUses(ABI, ABI, Users, Releases))
return false;
// Okay, the value doesn't escape. Determine where the last release is. This
// code only handles the case where there is a single "last release". This
// should work for us, because we don't expect code duplication that can
// introduce different releases for different codepaths. If this ends up
// mattering in the future, this can be generalized.
SILInstruction *LastRelease = getLastRelease(ABI, Users, Releases, PDI);
// FIXME: If there's no last release, we can't balance the alloc_stack.
if (!LastRelease)
return false;
auto &lowering =
ABI->getModule().Types.getTypeLowering(ABI->getElementType());
if (LastRelease == nullptr && !lowering.isTrivial()) {
// If we can't tell where the last release is, we don't know where to insert
// the destroy_addr for this box.
DEBUG(llvm::errs() << "*** Failed to promote alloc_box: " << *ABI
<< " Cannot determine location of the last release!\n"
<< *ABI->getParent()->getParent() << "\n");
return false;
}
DEBUG({
llvm::errs() << "*** Promoting alloc_box to stack: " << *ABI;
for (auto UI : ABI->getUses())
llvm::errs() << " User: " << *UI->getUser();
});
// Okay, it looks like this value doesn't escape. Promote it to an
// alloc_stack. Start by inserting the alloc stack after the alloc_box.
SILBuilder B1(ABI->getParent(), ++SILBasicBlock::iterator(ABI));
auto *ASI = B1.createAllocStack(ABI->getLoc(), ABI->getElementType());
ASI->setDebugScope(ABI->getDebugScope());
// Replace all uses of the pointer operand with the spiffy new AllocStack.
SILValue(ABI, 1).replaceAllUsesWith(ASI->getAddressResult());
// If we found a 'last release', insert a dealloc_stack instruction and a
// destroy_addr if its type is non-trivial.
if (LastRelease) {
SILBuilder B2(LastRelease);
if (!lowering.isTrivial() && !isa<DeallocBoxInst>(LastRelease))
B2.emitDestroyAddr(ABI->getLoc(), ASI->getAddressResult());
// Reset the insertion point in case the destroy address expanded to
// multiple blocks.
B2.setInsertionPoint(LastRelease);
B2.createDeallocStack(LastRelease->getLoc(), ASI->getContainerResult());
}
// Remove any retain and release instructions. Since all uses of result #1
// are gone, this only walks through uses of result #0 (the retain count
// pointer).
while (!ABI->use_empty()) {
auto *User = cast<SILInstruction>((*ABI->use_begin())->getUser());
assert(isa<StrongReleaseInst>(User) || isa<StrongRetainInst>(User) ||
isa<DeallocBoxInst>(User));
User->eraseFromParent();
}
return true;
}
//===----------------------------------------------------------------------===//
// AllocStack Removal
//===----------------------------------------------------------------------===//
/// areAllocStackUsesSafeToRemove - Return true if there are no uses of the
/// specified address (or any pointers derived from it) that prevent us from
/// removing the allocation. For example, stores to the value can just be
/// discarded, but loads from the value require the memory to exist.
static bool areAllocStackUsesSafeToRemove(SILValue V) {
for (auto UI : V.getUses()) {
auto *User = cast<SILInstruction>(UI->getUser());
// Stores to the pointer (either in store or copy_addr form) can be
// discarded.
if ((isa<CopyAddrInst>(User) || isa<StoreInst>(User)) &&
UI->getOperandNumber() == 1)
continue;
// Zero initializations can be dropped.
if (isa<InitializeVarInst>(User) ||
// destroy_addrs can be dropped as well, the initialization is being
// removed so this effectively eliminates the copy entirely.
isa<DestroyAddrInst>(User) ||
isa<InitExistentialInst>(User))
continue;
// Recursively check uses of instructions that derive a pointer from the
// original pointer.
if (isa<StructElementAddrInst>(User) || isa<TupleElementAddrInst>(User) ||
isa<ProjectExistentialInst>(User)) {
if (!areAllocStackUsesSafeToRemove(SILValue(User, 0)))
return false;
continue;
}
// Otherwise, this is something we don't know about, conservatively keep the
// instruction
DEBUG(llvm::errs() << "*** Failed to remove autogenerated alloc_stack: "
"kept alive by: " << *User);
return false;
}
return true;
}
static void eraseUsesOfInstruction(SILInstruction *Inst) {
for (auto UI : Inst->getUses()) {
auto *User = cast<SILInstruction>(UI->getUser());
// If the instruction itself has any uses, recursively zap them so that
// nothing uses this instruction.
eraseUsesOfInstruction(User);
// Walk through the operand list and delete any random instructions that
// will become trivially dead when this instruction is removed.
for (auto &Op : User->getAllOperands()) {
if (auto *OpI = dyn_cast<SILInstruction>(Op.get().getDef())) {
// Don't recursively delete the pointer we're getting in.
if (OpI != Inst) {
Op.drop();
recursivelyDeleteTriviallyDeadInstructions(OpI);
}
}
}
User->eraseFromParent();
}
}
/// optimizeAllocStack - Remove alloc_stack's the are only stored to, if they
/// are artificial allocations. We keep around normal allocations for debug
/// info generation to use.
static bool optimizeAllocStack(AllocStackInst *ASI) {
// We only look at and try to remove allocations that don't correspond to
// var decls (or locations from the SIL parser, so we can test this), unless
// the var decl was auto-generated.
if ((ASI->getLoc().getAsASTNode<VarDecl>()
|| ASI->getLoc().is<SILFileLocation>())
&& !ASI->getLoc().isAutoGenerated()
&& !ASI->getLoc().is<MandatoryInlinedLocation>())
return false;
// Walk the use list to see if we have only safe-to-remove uses hanging off
// of the allocation. Check the local_storage piece first.
for (auto UI : SILValue(ASI, 0).getUses()) {
auto *User = cast<SILInstruction>(UI->getUser());
if (isa<DeallocStackInst>(User))
continue;
// Otherwise, it was an instruction we can't handle.
DEBUG(llvm::errs() << "*** Failed to remove autogenerated alloc_stack: "
"kept alive by: " << *User);
return false;
}
// Next, check uses of the address.
if (!areAllocStackUsesSafeToRemove(SILValue(ASI, 1)))
return false;
DEBUG(llvm::errs() << "*** Removing autogenerated alloc_stack: " << *ASI);
// If it is safe to remove, do it. Recursively remove all instructions
// hanging off the alloc_stack, then return success.
eraseUsesOfInstruction(ASI);
return true;
}
//===----------------------------------------------------------------------===//
// Top Level Driver
//===----------------------------------------------------------------------===//
void swift::performSILAllocBoxToStackPromotion(SILModule *M) {
for (auto &Fn : *M) {
// PostDomInfo - This is the post dominance information for the specified
// function. It is lazily generated only if needed.
llvm::OwningPtr<PostDominanceInfo> PostDomInfo;
for (auto &BB : Fn) {
auto I = BB.begin(), E = BB.end();
while (I != E) {
if (auto *ABI = dyn_cast<AllocBoxInst>(I))
if (optimizeAllocBox(ABI, PostDomInfo)) {
++NumStackPromoted;
// Carefully move iterator to avoid invalidation problems.
++I;
ABI->eraseFromParent();
continue;
}
if (auto *ASI = dyn_cast<AllocStackInst>(I))
if (optimizeAllocStack(ASI)) {
++NumStackRemoved;
// Carefully move iterator to avoid invalidation problems.
++I;
ASI->eraseFromParent();
continue;
}
++I;
}
}
}
}