49#define DEBUG_TYPE "simplifycfg"
53 cl::desc(
"Control the number of bonus instructions (default = 1)"));
57 cl::desc(
"Preserve canonical loop structure (default = true)"));
62 "Convert switches into an integer range comparison (default = false)"));
66 cl::desc(
"Convert switches to lookup tables (default = false)"));
70 cl::desc(
"Forward switch condition to phi ops (default = false)"));
74 cl::desc(
"hoist common instructions (default = false)"));
78 cl::desc(
"Sink common instructions (default = false)"));
82 cl::desc(
"Speculate unpredictable branches (default = false)"));
88 std::vector<DominatorTree::UpdateType> *Updates) {
102 auto *Term = BBs[0]->getTerminator();
107 F.getContext(),
Twine(
"common.") + Term->getOpcodeName(), &
F, BBs[0]);
109 NewOps.
resize(Term->getNumOperands());
110 for (
auto I :
zip(Term->operands(), NewOps)) {
113 CanonicalBB->
getName() +
".op");
114 std::get<1>(
I)->insertInto(CanonicalBB, CanonicalBB->
end());
118 CanonicalTerm = Term->clone();
122 std::get<1>(
I) = std::get<0>(
I);
129 auto *Term = BB->getTerminator();
131 "All blocks to be tail-merged must be the same "
132 "(function-terminating) terminator type.");
136 for (
auto I :
zip(Term->operands(), NewOps))
137 std::get<1>(
I)->addIncoming(std::get<0>(
I), BB);
141 CommonDebugLoc = Term->getDebugLoc();
150 Term->eraseFromParent();
153 Updates->push_back({DominatorTree::Insert, BB, CanonicalBB});
175 auto *Term = BB.getTerminator();
179 switch (Term->getOpcode()) {
180 case Instruction::Ret:
181 case Instruction::Resume:
188 if (BB.getTerminatingMustTailCall())
195 dyn_cast_or_null<CallInst>(Term->getPrevNonDebugInstruction())) {
196 if (
Function *
F = CI->getCalledFunction())
198 if (
ID == Intrinsic::experimental_deoptimize)
204 if (
any_of(Term->operands(),
205 [](
Value *
Op) { return Op->getType()->isTokenTy(); }))
209 Structure[Term->getOpcode()].emplace_back(&BB);
212 bool Changed =
false;
214 std::vector<DominatorTree::UpdateType> Updates;
230 bool Changed =
false;
231 bool LocalChange =
true;
236 for (
const auto &Edge : Edges)
240 UniqueLoopHeaders.
end());
242 unsigned IterCnt = 0;
244 while (LocalChange) {
245 assert(IterCnt++ < 1000 &&
"Iterative simplification didn't converge!");
254 "Should not end up trying to simplify blocks marked for removal.");
265 Changed |= LocalChange;
281 if (!EverChanged)
return false;
294 }
while (EverChanged);
303 (DT && DT->
verify(DominatorTree::VerificationLevel::Full))) &&
304 "Original domtree is invalid?");
309 (DT && DT->
verify(DominatorTree::VerificationLevel::Full))) &&
310 "Failed to maintain validity of domtree!");
347 OS, MapClassName2PassName);
352 <<
"switch-range-to-icmp;";
354 <<
"switch-to-lookup;";
361 <<
"speculate-unpredictables";
387 std::function<
bool(
const Function &)> Ftor =
nullptr)
397 if (skipFunction(
F) || (PredicateFtor && !PredicateFtor(
F)))
400 Options.AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(
F);
403 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
405 auto &
TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
F);
420char CFGSimplifyPass::ID = 0;
433 return new CFGSimplifyPass(
Options, std::move(Ftor));
This file contains the simple types necessary to represent the attributes associated with functions a...
Performs the initial survey of the specified function
static bool runOnFunction(Function &F, bool PostInlining)
This is the interface for a simple mod/ref and alias analysis over globals.
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
This file implements a map that provides insertion order iteration.
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static cl::opt< bool > UserSwitchRangeToICmp("switch-range-to-icmp", cl::Hidden, cl::init(false), cl::desc("Convert switches into an integer range comparison (default = false)"))
static cl::opt< bool > UserSinkCommonInsts("sink-common-insts", cl::Hidden, cl::init(false), cl::desc("Sink common instructions (default = false)"))
static bool iterativelySimplifyCFG(Function &F, const TargetTransformInfo &TTI, DomTreeUpdater *DTU, const SimplifyCFGOptions &Options)
Call SimplifyCFG on all the blocks in the function, iterating until no more changes are made.
static cl::opt< unsigned > UserBonusInstThreshold("bonus-inst-threshold", cl::Hidden, cl::init(1), cl::desc("Control the number of bonus instructions (default = 1)"))
static bool simplifyFunctionCFGImpl(Function &F, const TargetTransformInfo &TTI, DominatorTree *DT, const SimplifyCFGOptions &Options)
static bool simplifyFunctionCFG(Function &F, const TargetTransformInfo &TTI, DominatorTree *DT, const SimplifyCFGOptions &Options)
static cl::opt< bool > UserSwitchToLookup("switch-to-lookup", cl::Hidden, cl::init(false), cl::desc("Convert switches to lookup tables (default = false)"))
static cl::opt< bool > UserKeepLoops("keep-loops", cl::Hidden, cl::init(true), cl::desc("Preserve canonical loop structure (default = true)"))
static cl::opt< bool > UserHoistCommonInsts("hoist-common-insts", cl::Hidden, cl::init(false), cl::desc("hoist common instructions (default = false)"))
static cl::opt< bool > UserSpeculateUnpredictables("speculate-unpredictables", cl::Hidden, cl::init(false), cl::desc("Speculate unpredictable branches (default = false)"))
static void applyCommandLineOverridesToOptions(SimplifyCFGOptions &Options)
static bool tailMergeBlocksWithSimilarFunctionTerminators(Function &F, DomTreeUpdater *DTU)
static cl::opt< bool > UserForwardSwitchCond("forward-switch-cond", cl::Hidden, cl::init(false), cl::desc("Forward switch condition to phi ops (default = false)"))
static bool performBlockTailMerging(Function &F, ArrayRef< BasicBlock * > BBs, std::vector< DominatorTree::UpdateType > *Updates)
This file provides the interface for the pass responsible for both simplifying and canonicalizing the...
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
static SymbolRef::Type getType(const Symbol *Sym)
A container for analyses that lazily runs them and caches their results.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
A function analysis which provides an AssumptionCache.
An immutable pass that tracks lazily created AssumptionCache objects.
LLVM Basic Block Representation.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
static BranchInst * Create(BasicBlock *IfTrue, InsertPosition InsertBefore=nullptr)
static DILocation * getMergedLocation(DILocation *LocA, DILocation *LocB)
When two instructions are combined into a single instruction we also need to combine the original loc...
This class represents an Operation in the Expression.
Analysis pass which computes a DominatorTree.
bool verify(VerificationLevel VL=VerificationLevel::Full) const
verify - checks if the tree is correct.
Legacy analysis pass which computes a DominatorTree.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
FunctionPass class - This class is used to implement most global optimizations.
BasicBlockListType::iterator iterator
void applyUpdates(ArrayRef< typename DomTreeT::UpdateType > Updates)
Submit updates to all available trees.
bool isBBPendingDeletion(BasicBlockT *DelBB) const
Returns true if DelBB is awaiting deletion.
Legacy wrapper pass to provide the GlobalsAAResult object.
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
void setDebugLoc(DebugLoc Loc)
Set the debug location information for this instruction.
InstListType::iterator insertInto(BasicBlock *ParentBB, InstListType::iterator It)
Inserts an unlinked instruction into ParentBB at position It and returns the iterator of the inserted...
static PHINode * Create(Type *Ty, unsigned NumReservedValues, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructors - NumReservedValues is a hint for the number of incoming edges that this phi node will h...
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
void preserve()
Mark an analysis as preserved.
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
Run the pass over the function.
SimplifyCFGPass()
The default constructor sets the pass options to create canonical IR, rather than optimal IR.
void printPipeline(raw_ostream &OS, function_ref< StringRef(StringRef)> MapClassName2PassName)
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
void reserve(size_type N)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
Analysis pass providing the TargetTransformInfo.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
LLVM Value Representation.
StringRef getName() const
Return a constant reference to the value's name.
An efficient, type-erasing, non-owning reference to a callable.
This class implements an extremely fast bulk output stream that can only output to a stream.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
detail::zippy< detail::zip_shortest, T, U, Args... > zip(T &&t, U &&u, Args &&...args)
zip iterator for two or more iteratable types.
FunctionPass * createCFGSimplificationPass(SimplifyCFGOptions Options=SimplifyCFGOptions(), std::function< bool(const Function &)> Ftor=nullptr)
bool succ_empty(const Instruction *I)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
void initializeCFGSimplifyPassPass(PassRegistry &)
cl::opt< bool > RequireAndPreserveDomTree
This function is used to do simplification of a CFG.
auto make_second_range(ContainerTy &&c)
Given a container of pairs, return a range over the second elements.
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
bool simplifyCFG(BasicBlock *BB, const TargetTransformInfo &TTI, DomTreeUpdater *DTU=nullptr, const SimplifyCFGOptions &Options={}, ArrayRef< WeakVH > LoopHeaders={})
void FindFunctionBackedges(const Function &F, SmallVectorImpl< std::pair< const BasicBlock *, const BasicBlock * > > &Result)
Analyze the specified function to find all of the loop backedges in the function and return them.
bool removeUnreachableBlocks(Function &F, DomTreeUpdater *DTU=nullptr, MemorySSAUpdater *MSSAU=nullptr)
Remove all blocks that can not be reached from the function's entry.
Implement std::hash so that hash_code can be used in STL containers.
A CRTP mix-in to automatically provide informational APIs needed for passes.
bool ForwardSwitchCondToPhi
bool ConvertSwitchRangeToICmp
bool ConvertSwitchToLookupTable
bool SpeculateUnpredictables
A MapVector that performs no allocations if smaller than a certain size.