1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
//===--- SemanticARCOpts.cpp ----------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#define DEBUG_TYPE "sil-semantic-arc-opts"
#include "SemanticARCOpts.h"
#include "SemanticARCOptVisitor.h"
#include "Transforms.h"
#include "swift/Basic/Defer.h"
#include "swift/SILOptimizer/Analysis/Analysis.h"
#include "swift/SILOptimizer/Analysis/DeadEndBlocksAnalysis.h"
#include "swift/SILOptimizer/PassManager/Transforms.h"
#include "llvm/Support/CommandLine.h"
using namespace swift;
using namespace swift::semanticarc;
static llvm::cl::list<ARCTransformKind> TransformsToPerform(
llvm::cl::values(
clEnumValN(ARCTransformKind::AllPeepholes,
"sil-semantic-arc-peepholes-all",
"Perform All ARC canonicalizations and peepholes"),
clEnumValN(ARCTransformKind::LoadCopyToLoadBorrowPeephole,
"sil-semantic-arc-peepholes-loadcopy-to-loadborrow",
"Perform the load [copy] to load_borrow peephole"),
clEnumValN(ARCTransformKind::RedundantBorrowScopeElimPeephole,
"sil-semantic-arc-peepholes-redundant-borrowscope-elim",
"Perform the redundant borrow scope elimination peephole"),
clEnumValN(ARCTransformKind::RedundantCopyValueElimPeephole,
"sil-semantic-arc-peepholes-redundant-copyvalue-elim",
"Perform the redundant copy_value peephole"),
clEnumValN(ARCTransformKind::LifetimeJoiningPeephole,
"sil-semantic-arc-peepholes-lifetime-joining",
"Perform the join lifetimes peephole"),
clEnumValN(ARCTransformKind::OwnershipConversionElimPeephole,
"sil-semantic-arc-peepholes-ownership-conversion-elim",
"Eliminate unchecked_ownership_conversion insts that are "
"not needed"),
clEnumValN(ARCTransformKind::OwnedToGuaranteedPhi,
"sil-semantic-arc-owned-to-guaranteed-phi",
"Perform Owned To Guaranteed Phi. NOTE: Seeded by peephole "
"optimizer for compile time saving purposes, so run this "
"after running peepholes)"),
clEnumValN(ARCTransformKind::RedundantMoveValueElim,
"sil-semantic-arc-redundant-move-value-elim",
"Eliminate move_value which don't change owned lifetime "
"characteristics. (Escaping, Lexical).")),
llvm::cl::desc(
"For testing purposes only run the specified list of semantic arc "
"optimization. If the list is empty, we run all transforms"));
//===----------------------------------------------------------------------===//
// Top Level Entrypoint
//===----------------------------------------------------------------------===//
namespace {
// Even though this is a mandatory pass, it is rerun after deserialization in
// case DiagnosticConstantPropagation exposed anything new in this assert
// configuration.
struct SemanticARCOpts : SILFunctionTransform {
bool mandatoryOptsOnly;
SemanticARCOpts(bool mandatoryOptsOnly)
: mandatoryOptsOnly(mandatoryOptsOnly) {}
#ifndef NDEBUG
void performCommandlineSpecifiedTransforms(SemanticARCOptVisitor &visitor) {
for (auto transform : TransformsToPerform) {
visitor.ctx.transformKind = transform;
SWIFT_DEFER {
visitor.ctx.transformKind = ARCTransformKind::Invalid;
visitor.reset();
};
switch (transform) {
case ARCTransformKind::LifetimeJoiningPeephole:
case ARCTransformKind::RedundantCopyValueElimPeephole:
case ARCTransformKind::RedundantBorrowScopeElimPeephole:
case ARCTransformKind::LoadCopyToLoadBorrowPeephole:
case ARCTransformKind::AllPeepholes:
case ARCTransformKind::OwnershipConversionElimPeephole:
case ARCTransformKind::RedundantMoveValueElim:
// We never assume we are at fixed point when running these transforms.
if (performPeepholesWithoutFixedPoint(visitor)) {
invalidateAnalysis(SILAnalysis::InvalidationKind::Instructions);
}
continue;
case ARCTransformKind::OwnedToGuaranteedPhi:
if (tryConvertOwnedPhisToGuaranteedPhis(visitor.ctx)) {
invalidateAnalysis(
SILAnalysis::InvalidationKind::BranchesAndInstructions);
}
continue;
case ARCTransformKind::All:
case ARCTransformKind::Invalid:
llvm_unreachable("unsupported option");
}
}
}
#endif
bool performPeepholesWithoutFixedPoint(SemanticARCOptVisitor &visitor) {
// Add all the results of all instructions that we want to visit to the
// worklist.
for (auto &block : *getFunction()) {
for (auto &inst : block) {
if (SemanticARCOptVisitor::shouldVisitInst(&inst)) {
for (SILValue v : inst.getResults()) {
visitor.worklist.insert(v);
}
}
}
}
// Then process the worklist, performing peepholes.
return visitor.optimizeWithoutFixedPoint();
}
bool performPeepholes(SemanticARCOptVisitor &visitor) {
// Add all the results of all instructions that we want to visit to the
// worklist.
for (auto &block : *getFunction()) {
for (auto &inst : block) {
if (SemanticARCOptVisitor::shouldVisitInst(&inst)) {
for (SILValue v : inst.getResults()) {
visitor.worklist.insert(v);
}
}
}
}
// Then process the worklist, performing peepholes.
return visitor.optimize();
}
void run() override {
SILFunction &f = *getFunction();
// Return early if we are not performing OSSA optimizations or we are not in
// ownership.
if (!f.getModule().getOptions().EnableOSSAOptimizations ||
!f.hasOwnership())
return;
// Make sure we are running with ownership verification enabled.
assert(f.getModule().getOptions().VerifySILOwnership &&
"Can not perform semantic arc optimization unless ownership "
"verification is enabled");
auto *deBlocksAnalysis = getAnalysis<DeadEndBlocksAnalysis>();
SemanticARCOptVisitor visitor(f, *deBlocksAnalysis->get(&f),
mandatoryOptsOnly);
#ifndef NDEBUG
// If we are being asked for testing purposes to run a series of transforms
// expressed on the command line, run that and return.
if (!TransformsToPerform.empty()) {
return performCommandlineSpecifiedTransforms(visitor);
}
#endif
// Otherwise, perform our standard optimizations.
bool didEliminateARCInsts = performPeepholes(visitor);
// Now that we have seeded the map of phis to incoming values that could be
// converted to guaranteed, ignoring the phi, try convert those phis to be
// guaranteed.
if (tryConvertOwnedPhisToGuaranteedPhis(visitor.ctx)) {
// We return here early to save a little compile time so we do not
// invalidate analyses redundantly.
return invalidateAnalysis(
SILAnalysis::InvalidationKind::BranchesAndInstructions);
}
// Otherwise, we only deleted instructions and did not touch phis.
if (didEliminateARCInsts)
invalidateAnalysis(SILAnalysis::InvalidationKind::Instructions);
}
};
} // end anonymous namespace
SILTransform *swift::createSemanticARCOpts() {
return new SemanticARCOpts(false /*mandatory*/);
}
SILTransform *swift::createMandatoryARCOpts() {
return new SemanticARCOpts(true /*mandatory*/);
}
|