xref: /llvm-project/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp (revision b04917315716baeefddf56ebba200a9dd7cc236c)
1 //===- SimplifyCFGPass.cpp - CFG Simplification Pass ----------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements dead code elimination and basic block merging, along
11 // with a collection of other peephole control flow optimizations.  For example:
12 //
13 //   * Removes basic blocks with no predecessors.
14 //   * Merges a basic block into its predecessor if there is only one and the
15 //     predecessor only has one successor.
16 //   * Eliminates PHI nodes for basic blocks with a single predecessor.
17 //   * Eliminates a basic block that only contains an unconditional branch.
18 //   * Changes invoke instructions to nounwind functions to be calls.
19 //   * Change things like "if (x) if (y)" into "if (x&y)".
20 //   * etc..
21 //
22 //===----------------------------------------------------------------------===//
23 
24 #include "llvm/ADT/SmallPtrSet.h"
25 #include "llvm/ADT/SmallVector.h"
26 #include "llvm/ADT/Statistic.h"
27 #include "llvm/Analysis/AssumptionCache.h"
28 #include "llvm/Analysis/CFG.h"
29 #include "llvm/Analysis/GlobalsModRef.h"
30 #include "llvm/Analysis/TargetTransformInfo.h"
31 #include "llvm/IR/Attributes.h"
32 #include "llvm/IR/CFG.h"
33 #include "llvm/IR/Constants.h"
34 #include "llvm/IR/DataLayout.h"
35 #include "llvm/IR/Instructions.h"
36 #include "llvm/IR/IntrinsicInst.h"
37 #include "llvm/IR/Module.h"
38 #include "llvm/Pass.h"
39 #include "llvm/Support/CommandLine.h"
40 #include "llvm/Transforms/Scalar.h"
41 #include "llvm/Transforms/Scalar/SimplifyCFG.h"
42 #include "llvm/Transforms/Utils/Local.h"
43 #include <utility>
44 using namespace llvm;
45 
46 #define DEBUG_TYPE "simplifycfg"
47 
48 static cl::opt<unsigned> UserBonusInstThreshold(
49     "bonus-inst-threshold", cl::Hidden, cl::init(1),
50     cl::desc("Control the number of bonus instructions (default = 1)"));
51 
52 static cl::opt<bool> UserKeepLoops(
53     "keep-loops", cl::Hidden, cl::init(true),
54     cl::desc("Preserve canonical loop structure (default = true)"));
55 
56 static cl::opt<bool> UserSwitchToLookup(
57     "switch-to-lookup", cl::Hidden, cl::init(false),
58     cl::desc("Convert switches to lookup tables (default = false)"));
59 
60 static cl::opt<bool> UserForwardSwitchCond(
61     "forward-switch-cond", cl::Hidden, cl::init(false),
62     cl::desc("Forward switch condition to phi ops (default = false)"));
63 
64 STATISTIC(NumSimpl, "Number of blocks simplified");
65 
66 /// If we have more than one empty (other than phi node) return blocks,
67 /// merge them together to promote recursive block merging.
68 static bool mergeEmptyReturnBlocks(Function &F) {
69   bool Changed = false;
70 
71   BasicBlock *RetBlock = nullptr;
72 
73   // Scan all the blocks in the function, looking for empty return blocks.
74   for (Function::iterator BBI = F.begin(), E = F.end(); BBI != E; ) {
75     BasicBlock &BB = *BBI++;
76 
77     // Only look at return blocks.
78     ReturnInst *Ret = dyn_cast<ReturnInst>(BB.getTerminator());
79     if (!Ret) continue;
80 
81     // Only look at the block if it is empty or the only other thing in it is a
82     // single PHI node that is the operand to the return.
83     if (Ret != &BB.front()) {
84       // Check for something else in the block.
85       BasicBlock::iterator I(Ret);
86       --I;
87       // Skip over debug info.
88       while (isa<DbgInfoIntrinsic>(I) && I != BB.begin())
89         --I;
90       if (!isa<DbgInfoIntrinsic>(I) &&
91           (!isa<PHINode>(I) || I != BB.begin() || Ret->getNumOperands() == 0 ||
92            Ret->getOperand(0) != &*I))
93         continue;
94     }
95 
96     // If this is the first returning block, remember it and keep going.
97     if (!RetBlock) {
98       RetBlock = &BB;
99       continue;
100     }
101 
102     // Otherwise, we found a duplicate return block.  Merge the two.
103     Changed = true;
104 
105     // Case when there is no input to the return or when the returned values
106     // agree is trivial.  Note that they can't agree if there are phis in the
107     // blocks.
108     if (Ret->getNumOperands() == 0 ||
109         Ret->getOperand(0) ==
110           cast<ReturnInst>(RetBlock->getTerminator())->getOperand(0)) {
111       BB.replaceAllUsesWith(RetBlock);
112       BB.eraseFromParent();
113       continue;
114     }
115 
116     // If the canonical return block has no PHI node, create one now.
117     PHINode *RetBlockPHI = dyn_cast<PHINode>(RetBlock->begin());
118     if (!RetBlockPHI) {
119       Value *InVal = cast<ReturnInst>(RetBlock->getTerminator())->getOperand(0);
120       pred_iterator PB = pred_begin(RetBlock), PE = pred_end(RetBlock);
121       RetBlockPHI = PHINode::Create(Ret->getOperand(0)->getType(),
122                                     std::distance(PB, PE), "merge",
123                                     &RetBlock->front());
124 
125       for (pred_iterator PI = PB; PI != PE; ++PI)
126         RetBlockPHI->addIncoming(InVal, *PI);
127       RetBlock->getTerminator()->setOperand(0, RetBlockPHI);
128     }
129 
130     // Turn BB into a block that just unconditionally branches to the return
131     // block.  This handles the case when the two return blocks have a common
132     // predecessor but that return different things.
133     RetBlockPHI->addIncoming(Ret->getOperand(0), &BB);
134     BB.getTerminator()->eraseFromParent();
135     BranchInst::Create(RetBlock, &BB);
136   }
137 
138   return Changed;
139 }
140 
141 /// Call SimplifyCFG on all the blocks in the function,
142 /// iterating until no more changes are made.
143 static bool iterativelySimplifyCFG(Function &F, const TargetTransformInfo &TTI,
144                                    const SimplifyCFGOptions &Options) {
145   bool Changed = false;
146   bool LocalChange = true;
147 
148   SmallVector<std::pair<const BasicBlock *, const BasicBlock *>, 32> Edges;
149   FindFunctionBackedges(F, Edges);
150   SmallPtrSet<BasicBlock *, 16> LoopHeaders;
151   for (unsigned i = 0, e = Edges.size(); i != e; ++i)
152     LoopHeaders.insert(const_cast<BasicBlock *>(Edges[i].second));
153 
154   while (LocalChange) {
155     LocalChange = false;
156 
157     // Loop over all of the basic blocks and remove them if they are unneeded.
158     for (Function::iterator BBIt = F.begin(); BBIt != F.end(); ) {
159       if (simplifyCFG(&*BBIt++, TTI, Options, &LoopHeaders)) {
160         LocalChange = true;
161         ++NumSimpl;
162       }
163     }
164     Changed |= LocalChange;
165   }
166   return Changed;
167 }
168 
169 static bool simplifyFunctionCFG(Function &F, const TargetTransformInfo &TTI,
170                                 const SimplifyCFGOptions &Options) {
171   bool EverChanged = removeUnreachableBlocks(F);
172   EverChanged |= mergeEmptyReturnBlocks(F);
173   EverChanged |= iterativelySimplifyCFG(F, TTI, Options);
174 
175   // If neither pass changed anything, we're done.
176   if (!EverChanged) return false;
177 
178   // iterativelySimplifyCFG can (rarely) make some loops dead.  If this happens,
179   // removeUnreachableBlocks is needed to nuke them, which means we should
180   // iterate between the two optimizations.  We structure the code like this to
181   // avoid rerunning iterativelySimplifyCFG if the second pass of
182   // removeUnreachableBlocks doesn't do anything.
183   if (!removeUnreachableBlocks(F))
184     return true;
185 
186   do {
187     EverChanged = iterativelySimplifyCFG(F, TTI, Options);
188     EverChanged |= removeUnreachableBlocks(F);
189   } while (EverChanged);
190 
191   return true;
192 }
193 
194 // Command-line settings override compile-time settings.
195 SimplifyCFGPass::SimplifyCFGPass(const SimplifyCFGOptions &Opts) {
196   Options.BonusInstThreshold = UserBonusInstThreshold.getNumOccurrences()
197                                    ? UserBonusInstThreshold
198                                    : Opts.BonusInstThreshold;
199   Options.ForwardSwitchCondToPhi = UserForwardSwitchCond.getNumOccurrences()
200                                        ? UserForwardSwitchCond
201                                        : Opts.ForwardSwitchCondToPhi;
202   Options.ConvertSwitchToLookupTable = UserSwitchToLookup.getNumOccurrences()
203                                            ? UserSwitchToLookup
204                                            : Opts.ConvertSwitchToLookupTable;
205   Options.NeedCanonicalLoop = UserKeepLoops.getNumOccurrences()
206                                   ? UserKeepLoops
207                                   : Opts.NeedCanonicalLoop;
208 }
209 
210 PreservedAnalyses SimplifyCFGPass::run(Function &F,
211                                        FunctionAnalysisManager &AM) {
212   auto &TTI = AM.getResult<TargetIRAnalysis>(F);
213   Options.AC = &AM.getResult<AssumptionAnalysis>(F);
214   if (!simplifyFunctionCFG(F, TTI, Options))
215     return PreservedAnalyses::all();
216   PreservedAnalyses PA;
217   PA.preserve<GlobalsAA>();
218   return PA;
219 }
220 
221 namespace {
222 struct CFGSimplifyPass : public FunctionPass {
223   static char ID;
224   SimplifyCFGOptions Options;
225   std::function<bool(const Function &)> PredicateFtor;
226 
227   CFGSimplifyPass(unsigned Threshold = 1, bool ForwardSwitchCond = false,
228                   bool ConvertSwitch = false, bool KeepLoops = true,
229                   std::function<bool(const Function &)> Ftor = nullptr)
230       : FunctionPass(ID), PredicateFtor(std::move(Ftor)) {
231 
232     initializeCFGSimplifyPassPass(*PassRegistry::getPassRegistry());
233 
234     // Check for command-line overrides of options for debug/customization.
235     Options.BonusInstThreshold = UserBonusInstThreshold.getNumOccurrences()
236                                     ? UserBonusInstThreshold
237                                     : Threshold;
238 
239     Options.ForwardSwitchCondToPhi = UserForwardSwitchCond.getNumOccurrences()
240                                          ? UserForwardSwitchCond
241                                          : ForwardSwitchCond;
242 
243     Options.ConvertSwitchToLookupTable = UserSwitchToLookup.getNumOccurrences()
244                                              ? UserSwitchToLookup
245                                              : ConvertSwitch;
246 
247     Options.NeedCanonicalLoop =
248         UserKeepLoops.getNumOccurrences() ? UserKeepLoops : KeepLoops;
249   }
250 
251   bool runOnFunction(Function &F) override {
252     if (skipFunction(F) || (PredicateFtor && !PredicateFtor(F)))
253       return false;
254 
255     Options.AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
256     auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
257     return simplifyFunctionCFG(F, TTI, Options);
258   }
259   void getAnalysisUsage(AnalysisUsage &AU) const override {
260     AU.addRequired<AssumptionCacheTracker>();
261     AU.addRequired<TargetTransformInfoWrapperPass>();
262     AU.addPreserved<GlobalsAAWrapperPass>();
263   }
264 };
265 }
266 
267 char CFGSimplifyPass::ID = 0;
268 INITIALIZE_PASS_BEGIN(CFGSimplifyPass, "simplifycfg", "Simplify the CFG", false,
269                       false)
270 INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
271 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
272 INITIALIZE_PASS_END(CFGSimplifyPass, "simplifycfg", "Simplify the CFG", false,
273                     false)
274 
275 // Public interface to the CFGSimplification pass
276 FunctionPass *
277 llvm::createCFGSimplificationPass(unsigned Threshold, bool ForwardSwitchCond,
278                                   bool ConvertSwitch, bool KeepLoops,
279                                   std::function<bool(const Function &)> Ftor) {
280   return new CFGSimplifyPass(Threshold, ForwardSwitchCond, ConvertSwitch,
281                              KeepLoops, std::move(Ftor));
282 }
283