Files
swift-mirror/include/swift/SILOptimizer/Analysis/ARCAnalysis.h

316 lines
12 KiB
C++

//===--- ARCAnalysis.h - SIL ARC Analysis -----------------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2016 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
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_SILOPTIMIZER_ANALYSIS_ARCANALYSIS_H
#define SWIFT_SILOPTIMIZER_ANALYSIS_ARCANALYSIS_H
#include "swift/SIL/SILArgument.h"
#include "swift/SIL/SILValue.h"
#include "swift/SIL/SILBasicBlock.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/MapVector.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/ADT/TinyPtrVector.h"
namespace swift {
class SILInstruction;
class AliasAnalysis;
class PostOrderAnalysis;
class RCIdentityAnalysis;
class RCIdentityFunctionInfo;
class LoopRegionFunctionInfo;
class SILLoopInfo;
class SILFunction;
} // end namespace swift
namespace swift {
using RetainList = llvm::SmallVector<SILInstruction *, 1>;
using ReleaseList = llvm::SmallVector<SILInstruction *, 1>;
/// \returns True if the user \p User decrements the ref count of \p Ptr.
bool mayDecrementRefCount(SILInstruction *User, SILValue Ptr,
AliasAnalysis *AA);
/// \returns True if the user \p User checks the ref count of a pointer.
bool mayCheckRefCount(SILInstruction *User);
/// \returns True if the \p User might use the pointer \p Ptr in a manner that
/// requires \p Ptr to be alive before Inst.
bool mayUseValue(SILInstruction *User, SILValue Ptr, AliasAnalysis *AA);
/// \returns True if the \p User must use the pointer \p Ptr in a manner that
/// requires \p Ptr to be alive before Inst.
bool mustUseValue(SILInstruction *User, SILValue Ptr, AliasAnalysis *AA);
/// Returns true if User must use Ptr in a guaranteed way.
///
/// This means that assuming that everything is conservative, we can ignore the
/// ref count effects of User on Ptr since we will only remove things over
/// guaranteed parameters if we are known safe in both directions.
bool mustGuaranteedUseValue(SILInstruction *User, SILValue Ptr,
AliasAnalysis *AA);
/// Returns true if \p Inst can never conservatively decrement reference counts.
bool canNeverDecrementRefCounts(SILInstruction *Inst);
/// \returns True if \p User can never use a value in a way that requires the
/// value to be alive.
///
/// This is purposefully a negative query to contrast with canUseValue which is
/// about a specific value while this is about general values.
bool canNeverUseValues(SILInstruction *User);
/// \returns true if the user \p User may use \p Ptr in a manner that requires
/// Ptr's life to be guaranteed to exist at this point.
///
/// TODO: Better name.
bool mayGuaranteedUseValue(SILInstruction *User, SILValue Ptr,
AliasAnalysis *AA);
/// If \p Op has arc uses in the instruction range [Start, End), return the
/// first such instruction. Otherwise return None. We assume that
/// Start and End are both in the same basic block.
Optional<SILBasicBlock::iterator>
valueHasARCUsesInInstructionRange(SILValue Op,
SILBasicBlock::iterator Start,
SILBasicBlock::iterator End,
AliasAnalysis *AA);
/// If \p Op has arc uses in the instruction range [Start, End), return the last
/// use of such instruction. Otherwise return None. We assume that Start and End
/// are both in the same basic block.
Optional<SILBasicBlock::iterator> valueHasARCUsesInReverseInstructionRange(
SILValue Op, SILBasicBlock::iterator Start, SILBasicBlock::iterator End,
AliasAnalysis *AA);
/// If \p Op has instructions in the instruction range (Start, End] which may
/// decrement it, return the first such instruction. Returns None
/// if no such instruction exists. We assume that Start and End are both in the
/// same basic block.
Optional<SILBasicBlock::iterator>
valueHasARCDecrementOrCheckInInstructionRange(SILValue Op,
SILBasicBlock::iterator Start,
SILBasicBlock::iterator End,
AliasAnalysis *AA);
/// A class that attempts to match owned return value and corresponding
/// epilogue retains for a specific function.
///
/// If we can not find the retain in the return block, we will try to find
/// in the predecessors.
///
/// The search stop when we encounter an instruction that may decrement
/// the return'ed value, as we do not want to create a lifetime gap once the
/// retain is moved.
class ConsumedResultToEpilogueRetainMatcher {
public:
/// The state on how retains are found in a basic block.
enum class FindRetainKind {
None, ///< Did not find a retain.
Found, ///< Found a retain.
Recursion, ///< Found a retain and its due to self-recursion.
Blocked ///< Found a blocking instructions, i.e. MayDecrement.
};
using RetainKindValue = std::pair<FindRetainKind, SILInstruction *>;
private:
SILFunction *F;
RCIdentityFunctionInfo *RCFI;
AliasAnalysis *AA;
// We use a list of instructions for now so that we can keep the same interface
// and handle exploded retain_value later.
RetainList EpilogueRetainInsts;
public:
/// Finds matching releases in the return block of the function \p F.
ConsumedResultToEpilogueRetainMatcher(RCIdentityFunctionInfo *RCFI,
AliasAnalysis *AA,
SILFunction *F);
/// Finds matching releases in the provided block \p BB.
void findMatchingRetains(SILBasicBlock *BB);
RetainList getEpilogueRetains() { return EpilogueRetainInsts; }
/// Recompute the mapping from argument to consumed arg.
void recompute();
using iterator = decltype(EpilogueRetainInsts)::iterator;
using const_iterator = decltype(EpilogueRetainInsts)::const_iterator;
iterator begin() { return EpilogueRetainInsts.begin(); }
iterator end() { return EpilogueRetainInsts.end(); }
const_iterator begin() const { return EpilogueRetainInsts.begin(); }
const_iterator end() const { return EpilogueRetainInsts.end(); }
using reverse_iterator = decltype(EpilogueRetainInsts)::reverse_iterator;
using const_reverse_iterator = decltype(EpilogueRetainInsts)::const_reverse_iterator;
reverse_iterator rbegin() { return EpilogueRetainInsts.rbegin(); }
reverse_iterator rend() { return EpilogueRetainInsts.rend(); }
const_reverse_iterator rbegin() const { return EpilogueRetainInsts.rbegin(); }
const_reverse_iterator rend() const { return EpilogueRetainInsts.rend(); }
unsigned size() const { return EpilogueRetainInsts.size(); }
iterator_range<iterator> getRange() { return swift::make_range(begin(), end()); }
private:
/// Finds matching releases in the provided block \p BB.
RetainKindValue findMatchingRetainsInner(SILBasicBlock *BB, SILValue V);
};
/// A class that attempts to match owned arguments and corresponding epilogue
/// releases for a specific function.
///
/// Only try to find the epilogue release in the return block.
class ConsumedArgToEpilogueReleaseMatcher {
public:
enum class ExitKind { Return, Throw };
private:
SILFunction *F;
RCIdentityFunctionInfo *RCFI;
ExitKind Kind;
llvm::SmallMapVector<SILArgument *, ReleaseList, 8> ArgInstMap;
bool HasBlock = false;
/// Return true if we have seen releases to part or all of \p Derived in
/// \p Insts.
///
/// NOTE: This function relies on projections to analyze the relation
/// between the releases values in \p Insts and \p Derived, it also bails
/// out and return true if projection path can not be formed between Base
/// and any one the released values.
bool isRedundantRelease(ReleaseList Insts, SILValue Base, SILValue Derived);
/// Return true if we have a release instruction for all the reference
/// semantics part of \p Base.
bool releaseAllNonTrivials(ReleaseList Insts, SILValue Base);
public:
/// Finds matching releases in the return block of the function \p F.
ConsumedArgToEpilogueReleaseMatcher(RCIdentityFunctionInfo *RCFI,
SILFunction *F,
ExitKind Kind = ExitKind::Return);
/// Finds matching releases in the provided block \p BB.
void findMatchingReleases(SILBasicBlock *BB);
bool hasBlock() const { return HasBlock; }
SILInstruction *getSingleReleaseForArgument(SILArgument *Arg) {
auto I = ArgInstMap.find(Arg);
if (I == ArgInstMap.end())
return nullptr;
if (I->second.size() > 1)
return nullptr;
return *I->second.begin();
}
SILInstruction *getSingleReleaseForArgument(SILValue V) {
auto *Arg = dyn_cast<SILArgument>(V);
if (!Arg)
return nullptr;
return getSingleReleaseForArgument(Arg);
}
ReleaseList getReleasesForArgument(SILArgument *Arg) {
ReleaseList Releases;
auto I = ArgInstMap.find(Arg);
if (I == ArgInstMap.end())
return Releases;
return I->second;
}
ReleaseList getReleasesForArgument(SILValue V) {
ReleaseList Releases;
auto *Arg = dyn_cast<SILArgument>(V);
if (!Arg)
return Releases;
return getReleasesForArgument(Arg);
}
/// Recompute the mapping from argument to consumed arg.
void recompute();
bool isSingleReleaseMatchedToArgument(SILInstruction *Inst) {
auto Pred = [&Inst](const std::pair<SILArgument *,
ReleaseList> &P) -> bool {
if (P.second.size() > 1)
return false;
return *P.second.begin() == Inst;
};
return count_if(ArgInstMap, Pred);
}
using iterator = decltype(ArgInstMap)::iterator;
using const_iterator = decltype(ArgInstMap)::const_iterator;
iterator begin() { return ArgInstMap.begin(); }
iterator end() { return ArgInstMap.end(); }
const_iterator begin() const { return ArgInstMap.begin(); }
const_iterator end() const { return ArgInstMap.end(); }
using reverse_iterator = decltype(ArgInstMap)::reverse_iterator;
using const_reverse_iterator = decltype(ArgInstMap)::const_reverse_iterator;
reverse_iterator rbegin() { return ArgInstMap.rbegin(); }
reverse_iterator rend() { return ArgInstMap.rend(); }
const_reverse_iterator rbegin() const { return ArgInstMap.rbegin(); }
const_reverse_iterator rend() const { return ArgInstMap.rend(); }
unsigned size() const { return ArgInstMap.size(); }
iterator_range<iterator> getRange() { return swift::make_range(begin(), end()); }
};
class ReleaseTracker {
llvm::SmallSetVector<SILInstruction *, 4> TrackedUsers;
llvm::SmallSetVector<SILInstruction *, 4> FinalReleases;
std::function<bool(SILInstruction *)> AcceptableUserQuery;
public:
ReleaseTracker(std::function<bool(SILInstruction *)> AcceptableUserQuery)
: TrackedUsers(), FinalReleases(),
AcceptableUserQuery(AcceptableUserQuery) {}
void trackLastRelease(SILInstruction *Inst) { FinalReleases.insert(Inst); }
bool isUserAcceptable(SILInstruction *User) const {
return AcceptableUserQuery(User);
}
void trackUser(SILInstruction *User) { TrackedUsers.insert(User); }
using range = iterator_range<llvm::SmallSetVector<SILInstruction *, 4>::iterator>;
range getTrackedUsers() { return {TrackedUsers.begin(), TrackedUsers.end()}; }
range getFinalReleases() {
return {FinalReleases.begin(), FinalReleases.end()};
}
};
/// Return true if we can find a set of post-dominating final releases. Returns
/// false otherwise. The FinalRelease set is placed in the out parameter
/// FinalRelease.
bool getFinalReleasesForValue(SILValue Value, ReleaseTracker &Tracker);
/// Match a call to a trap BB with no ARC relevant side effects.
bool isARCInertTrapBB(const SILBasicBlock *BB);
} // end namespace swift
#endif