mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
* access * accessed * accesses * accessor * acquiring * across * activated * additive * address * addresses' * aggregated * analysis * and * appropriately * archetype * argument * associated * availability * barriers * because * been * beginning * belongs * beneficial * blocks * borrow * builtin * cannot * canonical * canonicalize * clazz * cleanup * coalesceable * coalesced * comparisons * completely * component * computed * concrete * conjunction * conservatively * constituent * construct * consuming * containing * covered * creates * critical * dataflow * declaration * defined * defining * definition * deinitialization * deliberately * dependencies * dependent * deserialized * destroy * deterministic * deterministically * devirtualizes * diagnostic * diagnostics * differentiation * disable * discipline * dominate * dominates * don't * element * eliminate * eliminating * elimination * embedded * encounter * epilogue * epsilon * escape * escaping * essential * evaluating * evaluation * evaluator * executing * existential * existentials * explicit * expression * extended * extension * extract * for * from * function * generic * guarantee * guaranteed * happened * heuristic * however * identifiable * immediately * implementation * improper * include * infinite * initialize * initialized * initializer * inside * instruction * interference * interferes * interleaved * internal * intersection * intractable * intrinsic * invalidates * irreducible * irrelevant * language * lifetime * literal * looks * materialize * meaning * mergeable * might * mimics * modification * modifies * multiple * mutating * necessarily * necessary * needsmultiplecopies * nonetheless * nothing * occurred * occurs * optimization * optimizing * original * outside * overflow * overlapping * overridden * owned * ownership * parallel * parameter * paths * patterns * pipeline * plottable * possible * potentially * practically * preamble * precede * preceding * predecessor * preferable * preparation * probably * projection * properties * property * protocol * reabstraction * reachable * recognized * recursive * recursively * redundant * reentrancy * referenced * registry * reinitialization * reload * represent * requires * response * responsible * retrieving * returned * returning * returns * rewriting * rewritten * sample * scenarios * scope * should * sideeffects * similar * simplify * simplifycfg * somewhat * spaghetti * specialization * specializations * specialized * specially * statistically * substitute * substitution * succeeds * successful * successfully * successor * superfluous * surprisingly * suspension * swift * targeted * that * that our * the * therefore * this * those * threshold * through * transform * transformation * truncated * ultimate * unchecked * uninitialized * unlikely * unmanaged * unoptimized key * updataflow * usefulness * utilities * villain * whenever * writes Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
129 lines
5.3 KiB
C++
129 lines
5.3 KiB
C++
//===--- Devirtualize.h - Helper for devirtualizing apply -------*- C++ -*-===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This contains helper functions that perform the work of devirtualizing a
|
|
// given apply when possible.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_SIL_DEVIRTUALIZE_H
|
|
#define SWIFT_SIL_DEVIRTUALIZE_H
|
|
|
|
#include "swift/AST/Decl.h"
|
|
#include "swift/AST/Types.h"
|
|
#include "swift/SIL/SILDeclRef.h"
|
|
#include "swift/SIL/SILFunction.h"
|
|
#include "swift/SIL/SILInstruction.h"
|
|
#include "swift/SIL/SILModule.h"
|
|
#include "swift/SIL/SILType.h"
|
|
#include "swift/SIL/SILValue.h"
|
|
#include "swift/SILOptimizer/Analysis/ClassHierarchyAnalysis.h"
|
|
#include "swift/SILOptimizer/Utils/InstOptUtils.h"
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
|
|
namespace swift {
|
|
namespace OptRemark {
|
|
class Emitter;
|
|
}
|
|
|
|
/// Compute all subclasses of a given class.
|
|
///
|
|
/// \p CHA class hierarchy analysis
|
|
/// \p CD class declaration
|
|
/// \p ClassType type of the instance
|
|
/// \p M SILModule
|
|
/// \p Subs a container to be used for storing the set of subclasses
|
|
void getAllSubclasses(ClassHierarchyAnalysis *CHA,
|
|
ClassDecl *CD,
|
|
CanType ClassType,
|
|
SILModule &M,
|
|
ClassHierarchyAnalysis::ClassList &Subs);
|
|
|
|
/// Given an apply instruction of a protocol requirement and a witness method
|
|
/// for the requirement, compute a substitution suitable for a direct call
|
|
/// to the witness method.
|
|
///
|
|
/// \p Module SILModule
|
|
/// \p AI ApplySite that applies a protocol method
|
|
/// \p F SILFunction with convention @convention(witness_method)
|
|
/// \p CRef a concrete ProtocolConformanceRef
|
|
SubstitutionMap getWitnessMethodSubstitutions(SILModule &Module, ApplySite AI,
|
|
SILFunction *F,
|
|
ProtocolConformanceRef CRef);
|
|
|
|
/// Attempt to devirtualize the given apply site. If this fails,
|
|
/// the returned ApplySite will be null.
|
|
///
|
|
/// If this succeeds, the caller must call deleteDevirtualizedApply on
|
|
/// the original apply site.
|
|
///
|
|
/// Return the new apply and true if the CFG was also modified.
|
|
std::pair<ApplySite, bool>
|
|
tryDevirtualizeApply(ApplySite AI, ClassHierarchyAnalysis *CHA,
|
|
OptRemark::Emitter *ORE = nullptr);
|
|
bool canDevirtualizeApply(FullApplySite AI, ClassHierarchyAnalysis *CHA);
|
|
bool canDevirtualizeClassMethod(FullApplySite AI, ClassDecl *CD,
|
|
OptRemark::Emitter *ORE = nullptr,
|
|
bool isEffectivelyFinalMethod = false);
|
|
SILFunction *getTargetClassMethod(SILModule &M, ClassDecl *CD,
|
|
MethodInst *MI);
|
|
CanType getSelfInstanceType(CanType ClassOrMetatypeType);
|
|
|
|
/// Devirtualize the given apply site, which is known to be devirtualizable.
|
|
///
|
|
/// The caller must call deleteDevirtualizedApply on the original apply site.
|
|
///
|
|
/// Return the new apply and true if the CFG was also modified.
|
|
std::pair<FullApplySite, bool> devirtualizeClassMethod(FullApplySite AI,
|
|
SILValue ClassInstance,
|
|
ClassDecl *CD,
|
|
OptRemark::Emitter *ORE);
|
|
|
|
/// Attempt to devirtualize the given apply site, which is known to be
|
|
/// of a class method. If this fails, the returned FullApplySite will be null.
|
|
///
|
|
/// If this succeeds, the caller must call deleteDevirtualizedApply on
|
|
/// the original apply site.
|
|
///
|
|
/// Return the new apply and true if the CFG was also modified.
|
|
std::pair<FullApplySite, bool>
|
|
tryDevirtualizeClassMethod(FullApplySite AI, SILValue ClassInstance,
|
|
ClassDecl *CD, OptRemark::Emitter *ORE,
|
|
bool isEffectivelyFinalMethod = false);
|
|
|
|
/// Attempt to devirtualize the given apply site, which is known to be
|
|
/// of a witness method. If this fails, the returned FullApplySite
|
|
/// will be null.
|
|
///
|
|
/// If this succeeds, the caller must call deleteDevirtualizedApply on
|
|
/// the original apply site.
|
|
///
|
|
/// Return the new apply and true if the CFG was also modified.
|
|
std::pair<ApplySite, bool> tryDevirtualizeWitnessMethod(ApplySite AI, OptRemark::Emitter *ORE);
|
|
|
|
/// Delete a successfully-devirtualized apply site. This must always be
|
|
/// called after devirtualizing an apply; not only is it not semantically
|
|
/// equivalent to leave the old apply in-place, but the SIL isn't necessary
|
|
/// well-formed.
|
|
///
|
|
/// Devirtualization is responsible for replacing uses of the original
|
|
/// apply site with uses of the new one. The only thing this does is delete
|
|
/// the instruction and any now-trivially-dead operands; it is separated
|
|
/// from the actual devirtualization step only to apply the caller to log
|
|
/// information about the original apply site. This is probably not a
|
|
/// good enough reason to complicate the API.
|
|
void deleteDevirtualizedApply(ApplySite AI);
|
|
|
|
} // end namespace swift
|
|
|
|
#endif
|