blob: afd0249ac96c7564921dd889093aee22f121a2fa [file] [log] [blame]
Eugene Zelenkofa6434b2017-08-31 21:56:16 +00001//===- LoopUnswitch.cpp - Hoist loop-invariant conditionals in loop -------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Misha Brukmanb1c93172005-04-21 23:48:37 +00006//
Chris Lattnerf48f7772004-04-19 18:07:02 +00007//===----------------------------------------------------------------------===//
8//
9// This pass transforms loops that contain branches on loop-invariant conditions
Xin Tongb7b08122017-04-23 17:36:25 +000010// to multiple loops. For example, it turns the left into the right code:
Chris Lattnerf48f7772004-04-19 18:07:02 +000011//
12// for (...) if (lic)
13// A for (...)
14// if (lic) A; B; C
15// B else
16// C for (...)
17// A; C
18//
19// This can increase the size of the code exponentially (doubling it every time
20// a loop is unswitched) so we only unswitch if the resultant code will be
21// smaller than a threshold.
22//
23// This pass expects LICM to be run before it to hoist invariant conditions out
24// of the loop, to make the unswitching opportunity obvious.
25//
26//===----------------------------------------------------------------------===//
27
Eugene Zelenkofa6434b2017-08-31 21:56:16 +000028#include "llvm/ADT/DenseMap.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000029#include "llvm/ADT/SmallPtrSet.h"
Eugene Zelenkofa6434b2017-08-31 21:56:16 +000030#include "llvm/ADT/SmallVector.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/ADT/Statistic.h"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000032#include "llvm/Analysis/AssumptionCache.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000033#include "llvm/Analysis/CodeMetrics.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000034#include "llvm/Analysis/InstructionSimplify.h"
Alina Sbirleaa4961432018-09-11 19:19:21 +000035#include "llvm/Analysis/LegacyDivergenceAnalysis.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000036#include "llvm/Analysis/LoopInfo.h"
Alina Sbirleaa4961432018-09-11 19:19:21 +000037#include "llvm/Analysis/LoopIterator.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000038#include "llvm/Analysis/LoopPass.h"
Alina Sbirleaa4961432018-09-11 19:19:21 +000039#include "llvm/Analysis/MemorySSA.h"
40#include "llvm/Analysis/MemorySSAUpdater.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000041#include "llvm/Analysis/ScalarEvolution.h"
Chandler Carruthbb9caa92013-01-21 13:04:33 +000042#include "llvm/Analysis/TargetTransformInfo.h"
Eugene Zelenkofa6434b2017-08-31 21:56:16 +000043#include "llvm/IR/Attributes.h"
44#include "llvm/IR/BasicBlock.h"
45#include "llvm/IR/CallSite.h"
46#include "llvm/IR/Constant.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000047#include "llvm/IR/Constants.h"
48#include "llvm/IR/DerivedTypes.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000049#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000050#include "llvm/IR/Function.h"
Eugene Zelenkofa6434b2017-08-31 21:56:16 +000051#include "llvm/IR/IRBuilder.h"
Xin Tongec6f90b2017-02-23 23:42:19 +000052#include "llvm/IR/InstrTypes.h"
Eugene Zelenkofa6434b2017-08-31 21:56:16 +000053#include "llvm/IR/Instruction.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000054#include "llvm/IR/Instructions.h"
Eugene Zelenkofa6434b2017-08-31 21:56:16 +000055#include "llvm/IR/IntrinsicInst.h"
56#include "llvm/IR/Intrinsics.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000057#include "llvm/IR/Module.h"
Eugene Zelenkofa6434b2017-08-31 21:56:16 +000058#include "llvm/IR/Type.h"
59#include "llvm/IR/User.h"
60#include "llvm/IR/Value.h"
61#include "llvm/IR/ValueHandle.h"
62#include "llvm/Pass.h"
63#include "llvm/Support/Casting.h"
Chris Lattner89762192006-02-09 20:15:48 +000064#include "llvm/Support/CommandLine.h"
Reid Spencer557ab152007-02-05 23:32:05 +000065#include "llvm/Support/Debug.h"
Daniel Dunbar0dd5e1e2009-07-25 00:23:56 +000066#include "llvm/Support/raw_ostream.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000067#include "llvm/Transforms/Scalar.h"
Alina Sbirleaa4961432018-09-11 19:19:21 +000068#include "llvm/Transforms/Scalar/LoopPassManager.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000069#include "llvm/Transforms/Utils/BasicBlockUtils.h"
70#include "llvm/Transforms/Utils/Cloning.h"
Alina Sbirleaa4961432018-09-11 19:19:21 +000071#include "llvm/Transforms/Utils/Local.h"
Chandler Carruth31088a92016-02-19 10:45:18 +000072#include "llvm/Transforms/Utils/LoopUtils.h"
Eugene Zelenkofa6434b2017-08-31 21:56:16 +000073#include "llvm/Transforms/Utils/ValueMapper.h"
Alkis Evlogimenosa5c04ee2004-09-03 18:19:51 +000074#include <algorithm>
Eugene Zelenkofa6434b2017-08-31 21:56:16 +000075#include <cassert>
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +000076#include <map>
Chris Lattner2826e052006-02-09 19:14:52 +000077#include <set>
Eugene Zelenkofa6434b2017-08-31 21:56:16 +000078#include <tuple>
79#include <utility>
80#include <vector>
81
Chris Lattnerf48f7772004-04-19 18:07:02 +000082using namespace llvm;
83
Chandler Carruth964daaa2014-04-22 02:55:47 +000084#define DEBUG_TYPE "loop-unswitch"
85
Chris Lattner79a42ac2006-12-19 21:40:18 +000086STATISTIC(NumBranches, "Number of branches unswitched");
87STATISTIC(NumSwitches, "Number of switches unswitched");
Sanjoy Dasa37bb4a2016-06-26 05:10:45 +000088STATISTIC(NumGuards, "Number of guards unswitched");
Chris Lattner79a42ac2006-12-19 21:40:18 +000089STATISTIC(NumSelects , "Number of selects unswitched");
90STATISTIC(NumTrivial , "Number of unswitches that are trivial");
91STATISTIC(NumSimplify, "Number of simplifications of unswitched code");
Stepan Dyatkovskiy82165692012-01-11 08:40:51 +000092STATISTIC(TotalInsts, "Total number of instructions analyzed");
Chris Lattner79a42ac2006-12-19 21:40:18 +000093
Stepan Dyatkovskiy2931a592012-01-16 20:48:04 +000094// The specific value of 100 here was chosen based only on intuition and a
Dan Gohman71ca6522009-10-13 17:50:43 +000095// few specific examples.
Dan Gohmand78c4002008-05-13 00:00:25 +000096static cl::opt<unsigned>
97Threshold("loop-unswitch-threshold", cl::desc("Max loop size to unswitch"),
Stepan Dyatkovskiy82165692012-01-11 08:40:51 +000098 cl::init(100), cl::Hidden);
Andrew Trick4104ed92012-04-10 05:14:37 +000099
Dan Gohmand78c4002008-05-13 00:00:25 +0000100namespace {
Andrew Trick4104ed92012-04-10 05:14:37 +0000101
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000102 class LUAnalysisCache {
Eugene Zelenkofa6434b2017-08-31 21:56:16 +0000103 using UnswitchedValsMap =
104 DenseMap<const SwitchInst *, SmallPtrSet<const Value *, 8>>;
105 using UnswitchedValsIt = UnswitchedValsMap::iterator;
Andrew Trick4104ed92012-04-10 05:14:37 +0000106
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000107 struct LoopProperties {
108 unsigned CanBeUnswitchedCount;
Mark Heffernan9b536a62015-06-23 18:26:50 +0000109 unsigned WasUnswitchedCount;
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000110 unsigned SizeEstimation;
111 UnswitchedValsMap UnswitchedVals;
112 };
Andrew Trick4104ed92012-04-10 05:14:37 +0000113
114 // Here we use std::map instead of DenseMap, since we need to keep valid
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000115 // LoopProperties pointer for current loop for better performance.
Eugene Zelenkofa6434b2017-08-31 21:56:16 +0000116 using LoopPropsMap = std::map<const Loop *, LoopProperties>;
117 using LoopPropsMapIt = LoopPropsMap::iterator;
Andrew Trick4104ed92012-04-10 05:14:37 +0000118
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000119 LoopPropsMap LoopsProperties;
Eugene Zelenkofa6434b2017-08-31 21:56:16 +0000120 UnswitchedValsMap *CurLoopInstructions = nullptr;
121 LoopProperties *CurrentLoopProperties = nullptr;
Andrew Trick4104ed92012-04-10 05:14:37 +0000122
Mark Heffernan9b536a62015-06-23 18:26:50 +0000123 // A loop unswitching with an estimated cost above this threshold
124 // is not performed. MaxSize is turned into unswitching quota for
125 // the current loop, and reduced correspondingly, though note that
126 // the quota is returned by releaseMemory() when the loop has been
127 // processed, so that MaxSize will return to its previous
128 // value. So in most cases MaxSize will equal the Threshold flag
129 // when a new loop is processed. An exception to that is that
130 // MaxSize will have a smaller value while processing nested loops
131 // that were introduced due to loop unswitching of an outer loop.
132 //
133 // FIXME: The way that MaxSize works is subtle and depends on the
134 // pass manager processing loops and calling releaseMemory() in a
135 // specific order. It would be good to find a more straightforward
136 // way of doing what MaxSize does.
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000137 unsigned MaxSize;
Andrew Trick4104ed92012-04-10 05:14:37 +0000138
Mark Heffernan9b536a62015-06-23 18:26:50 +0000139 public:
Eugene Zelenkofa6434b2017-08-31 21:56:16 +0000140 LUAnalysisCache() : MaxSize(Threshold) {}
Andrew Trick4104ed92012-04-10 05:14:37 +0000141
Mark Heffernan9b536a62015-06-23 18:26:50 +0000142 // Analyze loop. Check its size, calculate is it possible to unswitch
143 // it. Returns true if we can unswitch this loop.
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000144 bool countLoop(const Loop *L, const TargetTransformInfo &TTI,
145 AssumptionCache *AC);
Andrew Trick4104ed92012-04-10 05:14:37 +0000146
Mark Heffernan9b536a62015-06-23 18:26:50 +0000147 // Clean all data related to given loop.
148 void forgetLoop(const Loop *L);
Andrew Trick4104ed92012-04-10 05:14:37 +0000149
Mark Heffernan9b536a62015-06-23 18:26:50 +0000150 // Mark case value as unswitched.
151 // Since SI instruction can be partly unswitched, in order to avoid
152 // extra unswitching in cloned loops keep track all unswitched values.
153 void setUnswitched(const SwitchInst *SI, const Value *V);
Andrew Trick4104ed92012-04-10 05:14:37 +0000154
Mark Heffernan9b536a62015-06-23 18:26:50 +0000155 // Check was this case value unswitched before or not.
156 bool isUnswitched(const SwitchInst *SI, const Value *V);
Andrew Trick4104ed92012-04-10 05:14:37 +0000157
Mark Heffernan9b536a62015-06-23 18:26:50 +0000158 // Returns true if another unswitching could be done within the cost
159 // threshold.
160 bool CostAllowsUnswitching();
Andrew Trick4104ed92012-04-10 05:14:37 +0000161
Mark Heffernan9b536a62015-06-23 18:26:50 +0000162 // Clone all loop-unswitch related loop properties.
163 // Redistribute unswitching quotas.
164 // Note, that new loop data is stored inside the VMap.
165 void cloneData(const Loop *NewLoop, const Loop *OldLoop,
166 const ValueToValueMapTy &VMap);
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000167 };
Andrew Trick4104ed92012-04-10 05:14:37 +0000168
Chris Lattner2dd09db2009-09-02 06:11:42 +0000169 class LoopUnswitch : public LoopPass {
Chris Lattnerf48f7772004-04-19 18:07:02 +0000170 LoopInfo *LI; // Loop information
Devang Patel901a27d2007-03-07 00:26:10 +0000171 LPPassManager *LPM;
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000172 AssumptionCache *AC;
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000173
Sanjay Patel956e29c2015-08-11 21:24:04 +0000174 // Used to check if second loop needs processing after
175 // RewriteLoopBodyWithConditionConstant rewrites first loop.
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000176 std::vector<Loop*> LoopProcessWorklist;
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000177
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000178 LUAnalysisCache BranchesInfo;
Andrew Trick4104ed92012-04-10 05:14:37 +0000179
Devang Patel506310d2007-06-06 00:21:03 +0000180 bool OptimizeForSize;
Eugene Zelenkofa6434b2017-08-31 21:56:16 +0000181 bool redoLoop = false;
Devang Patela69f9872007-10-05 22:29:34 +0000182
Eugene Zelenkofa6434b2017-08-31 21:56:16 +0000183 Loop *currentLoop = nullptr;
184 DominatorTree *DT = nullptr;
Alina Sbirleaa4961432018-09-11 19:19:21 +0000185 MemorySSA *MSSA = nullptr;
186 std::unique_ptr<MemorySSAUpdater> MSSAU;
Eugene Zelenkofa6434b2017-08-31 21:56:16 +0000187 BasicBlock *loopHeader = nullptr;
188 BasicBlock *loopPreheader = nullptr;
Andrew Trick4104ed92012-04-10 05:14:37 +0000189
Evgeniy Stepanoveaea2972016-06-10 20:03:20 +0000190 bool SanitizeMemory;
Max Kazantsev9c90ec22018-10-16 08:31:05 +0000191 SimpleLoopSafetyInfo SafetyInfo;
Evgeniy Stepanoveaea2972016-06-10 20:03:20 +0000192
Devang Pateled50fb52008-07-02 01:44:29 +0000193 // LoopBlocks contains all of the basic blocks of the loop, including the
Andrew Trick4104ed92012-04-10 05:14:37 +0000194 // preheader of the loop, the body of the loop, and the exit blocks of the
Devang Pateled50fb52008-07-02 01:44:29 +0000195 // loop, in that order.
196 std::vector<BasicBlock*> LoopBlocks;
197 // NewBlocks contained cloned copy of basic blocks from LoopBlocks.
198 std::vector<BasicBlock*> NewBlocks;
Devang Pateleb611dd2008-07-03 17:37:52 +0000199
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000200 bool hasBranchDivergence;
201
Chris Lattnerf48f7772004-04-19 18:07:02 +0000202 public:
Devang Patel8c78a0b2007-05-03 01:11:54 +0000203 static char ID; // Pass ID, replacement for typeid
Eugene Zelenkofa6434b2017-08-31 21:56:16 +0000204
205 explicit LoopUnswitch(bool Os = false, bool hasBranchDivergence = false)
206 : LoopPass(ID), OptimizeForSize(Os),
207 hasBranchDivergence(hasBranchDivergence) {
Owen Anderson6c18d1a2010-10-19 17:21:58 +0000208 initializeLoopUnswitchPass(*PassRegistry::getPassRegistry());
Eugene Zelenkofa6434b2017-08-31 21:56:16 +0000209 }
Devang Patel09f162c2007-05-01 21:15:47 +0000210
Craig Topper3e4c6972014-03-05 09:10:37 +0000211 bool runOnLoop(Loop *L, LPPassManager &LPM) override;
Devang Patele149d4e2008-07-02 01:18:13 +0000212 bool processCurrentLoop();
Abhilash Bhandari54e5a1a2016-11-25 14:07:44 +0000213 bool isUnreachableDueToPreviousUnswitching(BasicBlock *);
Eugene Zelenkofa6434b2017-08-31 21:56:16 +0000214
Chris Lattnerf48f7772004-04-19 18:07:02 +0000215 /// This transformation requires natural loop information & requires that
Chris Lattnerbc1a65a2010-08-29 17:23:19 +0000216 /// loop preheaders be inserted into the CFG.
Chris Lattnerf48f7772004-04-19 18:07:02 +0000217 ///
Craig Topper3e4c6972014-03-05 09:10:37 +0000218 void getAnalysisUsage(AnalysisUsage &AU) const override {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000219 AU.addRequired<AssumptionCacheTracker>();
Chandler Carruth705b1852015-01-31 03:43:40 +0000220 AU.addRequired<TargetTransformInfoWrapperPass>();
Alina Sbirleaa4961432018-09-11 19:19:21 +0000221 if (EnableMSSALoopDependency) {
222 AU.addRequired<MemorySSAWrapperPass>();
223 AU.addPreserved<MemorySSAWrapperPass>();
224 }
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000225 if (hasBranchDivergence)
Nicolai Haehnle35617ed2018-08-30 14:21:36 +0000226 AU.addRequired<LegacyDivergenceAnalysis>();
Chandler Carruth31088a92016-02-19 10:45:18 +0000227 getLoopAnalysisUsage(AU);
Chris Lattnerf48f7772004-04-19 18:07:02 +0000228 }
229
230 private:
Craig Topper3e4c6972014-03-05 09:10:37 +0000231 void releaseMemory() override {
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000232 BranchesInfo.forgetLoop(currentLoop);
Dan Gohman3ddbc242009-09-08 15:45:00 +0000233 }
234
Devang Patele149d4e2008-07-02 01:18:13 +0000235 void initLoopData() {
236 loopHeader = currentLoop->getHeader();
237 loopPreheader = currentLoop->getLoopPreheader();
238 }
Andrew Trick4104ed92012-04-10 05:14:37 +0000239
Chris Lattner559c8672008-04-21 00:25:49 +0000240 /// Split all of the edges from inside the loop to their exit blocks.
241 /// Update the appropriate Phi nodes as we do so.
Sanjay Patel41f3d952015-08-11 21:11:56 +0000242 void SplitExitEdges(Loop *L,
243 const SmallVectorImpl<BasicBlock *> &ExitBlocks);
Devang Patela69f9872007-10-05 22:29:34 +0000244
Chen Lic0f3a152015-07-22 05:26:29 +0000245 bool TryTrivialLoopUnswitch(bool &Changed);
246
Weiming Zhaof1abad52015-06-23 05:31:09 +0000247 bool UnswitchIfProfitable(Value *LoopCond, Constant *Val,
Chandler Carruthedb12a82018-10-15 10:04:59 +0000248 Instruction *TI = nullptr);
Chris Lattner29f771b2006-02-18 01:27:45 +0000249 void UnswitchTrivialCondition(Loop *L, Value *Cond, Constant *Val,
Chandler Carruthedb12a82018-10-15 10:04:59 +0000250 BasicBlock *ExitBlock, Instruction *TI);
Weiming Zhaof1abad52015-06-23 05:31:09 +0000251 void UnswitchNontrivialCondition(Value *LIC, Constant *OnVal, Loop *L,
Chandler Carruthedb12a82018-10-15 10:04:59 +0000252 Instruction *TI);
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000253
254 void RewriteLoopBodyWithConditionConstant(Loop *L, Value *LIC,
255 Constant *Val, bool isEqual);
Devang Patel3304e462007-06-28 00:49:00 +0000256
257 void EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val,
Andrew Trick4104ed92012-04-10 05:14:37 +0000258 BasicBlock *TrueDest,
Devang Patel3304e462007-06-28 00:49:00 +0000259 BasicBlock *FalseDest,
Chandler Carruthedb12a82018-10-15 10:04:59 +0000260 BranchInst *OldBranch, Instruction *TI);
Devang Patel3304e462007-06-28 00:49:00 +0000261
Devang Pateld4911982007-07-31 08:03:26 +0000262 void SimplifyCode(std::vector<Instruction*> &Worklist, Loop *L);
Xin Tongec6f90b2017-02-23 23:42:19 +0000263
264 /// Given that the Invariant is not equal to Val. Simplify instructions
265 /// in the loop.
266 Value *SimplifyInstructionWithNotEqual(Instruction *Inst, Value *Invariant,
267 Constant *Val);
Chris Lattnerf48f7772004-04-19 18:07:02 +0000268 };
Eugene Zelenkofa6434b2017-08-31 21:56:16 +0000269
270} // end anonymous namespace
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000271
272// Analyze loop. Check its size, calculate is it possible to unswitch
273// it. Returns true if we can unswitch this loop.
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000274bool LUAnalysisCache::countLoop(const Loop *L, const TargetTransformInfo &TTI,
275 AssumptionCache *AC) {
Jakub Staszak27da1232013-08-06 17:03:42 +0000276 LoopPropsMapIt PropsIt;
277 bool Inserted;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000278 std::tie(PropsIt, Inserted) =
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000279 LoopsProperties.insert(std::make_pair(L, LoopProperties()));
Andrew Trick4104ed92012-04-10 05:14:37 +0000280
Jakub Staszak27da1232013-08-06 17:03:42 +0000281 LoopProperties &Props = PropsIt->second;
Andrew Trick4104ed92012-04-10 05:14:37 +0000282
Jakub Staszak27da1232013-08-06 17:03:42 +0000283 if (Inserted) {
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000284 // New loop.
285
286 // Limit the number of instructions to avoid causing significant code
287 // expansion, and the number of basic blocks, to avoid loops with
288 // large numbers of branches which cause loop unswitching to go crazy.
289 // This is a very ad-hoc heuristic.
Andrew Trick4104ed92012-04-10 05:14:37 +0000290
Hal Finkel57f03dd2014-09-07 13:49:57 +0000291 SmallPtrSet<const Value *, 32> EphValues;
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000292 CodeMetrics::collectEphemeralValues(L, AC, EphValues);
Hal Finkel57f03dd2014-09-07 13:49:57 +0000293
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000294 // FIXME: This is overly conservative because it does not take into
295 // consideration code simplification opportunities and code that can
296 // be shared by the resultant unswitched loops.
297 CodeMetrics Metrics;
Mark Heffernan9b536a62015-06-23 18:26:50 +0000298 for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); I != E;
299 ++I)
Hal Finkel57f03dd2014-09-07 13:49:57 +0000300 Metrics.analyzeBasicBlock(*I, TTI, EphValues);
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000301
Mark Heffernan9b536a62015-06-23 18:26:50 +0000302 Props.SizeEstimation = Metrics.NumInsts;
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000303 Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation);
Mark Heffernan9b536a62015-06-23 18:26:50 +0000304 Props.WasUnswitchedCount = 0;
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000305 MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount;
James Molloy4f6fb952012-12-20 16:04:27 +0000306
307 if (Metrics.notDuplicatable) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000308 LLVM_DEBUG(dbgs() << "NOT unswitching loop %" << L->getHeader()->getName()
309 << ", contents cannot be "
310 << "duplicated!\n");
James Molloy4f6fb952012-12-20 16:04:27 +0000311 return false;
312 }
Andrew Trick4104ed92012-04-10 05:14:37 +0000313 }
314
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000315 // Be careful. This links are good only before new loop addition.
316 CurrentLoopProperties = &Props;
317 CurLoopInstructions = &Props.UnswitchedVals;
Andrew Trick4104ed92012-04-10 05:14:37 +0000318
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000319 return true;
320}
321
322// Clean all data related to given loop.
Jakub Staszak27da1232013-08-06 17:03:42 +0000323void LUAnalysisCache::forgetLoop(const Loop *L) {
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000324 LoopPropsMapIt LIt = LoopsProperties.find(L);
325
326 if (LIt != LoopsProperties.end()) {
Jakub Staszak27da1232013-08-06 17:03:42 +0000327 LoopProperties &Props = LIt->second;
Mark Heffernan9b536a62015-06-23 18:26:50 +0000328 MaxSize += (Props.CanBeUnswitchedCount + Props.WasUnswitchedCount) *
329 Props.SizeEstimation;
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000330 LoopsProperties.erase(LIt);
331 }
Andrew Trick4104ed92012-04-10 05:14:37 +0000332
Craig Topperf40110f2014-04-25 05:29:35 +0000333 CurrentLoopProperties = nullptr;
334 CurLoopInstructions = nullptr;
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000335}
336
337// Mark case value as unswitched.
338// Since SI instruction can be partly unswitched, in order to avoid
339// extra unswitching in cloned loops keep track all unswitched values.
Jakub Staszak27da1232013-08-06 17:03:42 +0000340void LUAnalysisCache::setUnswitched(const SwitchInst *SI, const Value *V) {
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000341 (*CurLoopInstructions)[SI].insert(V);
342}
343
344// Check was this case value unswitched before or not.
Jakub Staszak27da1232013-08-06 17:03:42 +0000345bool LUAnalysisCache::isUnswitched(const SwitchInst *SI, const Value *V) {
Andrew Trick4104ed92012-04-10 05:14:37 +0000346 return (*CurLoopInstructions)[SI].count(V);
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000347}
348
Mark Heffernan9b536a62015-06-23 18:26:50 +0000349bool LUAnalysisCache::CostAllowsUnswitching() {
350 return CurrentLoopProperties->CanBeUnswitchedCount > 0;
351}
352
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000353// Clone all loop-unswitch related loop properties.
354// Redistribute unswitching quotas.
355// Note, that new loop data is stored inside the VMap.
Jakub Staszak27da1232013-08-06 17:03:42 +0000356void LUAnalysisCache::cloneData(const Loop *NewLoop, const Loop *OldLoop,
357 const ValueToValueMapTy &VMap) {
Jakub Staszak27da1232013-08-06 17:03:42 +0000358 LoopProperties &NewLoopProps = LoopsProperties[NewLoop];
359 LoopProperties &OldLoopProps = *CurrentLoopProperties;
360 UnswitchedValsMap &Insts = OldLoopProps.UnswitchedVals;
Andrew Trick4104ed92012-04-10 05:14:37 +0000361
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000362 // Reallocate "can-be-unswitched quota"
363
364 --OldLoopProps.CanBeUnswitchedCount;
Mark Heffernan9b536a62015-06-23 18:26:50 +0000365 ++OldLoopProps.WasUnswitchedCount;
366 NewLoopProps.WasUnswitchedCount = 0;
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000367 unsigned Quota = OldLoopProps.CanBeUnswitchedCount;
368 NewLoopProps.CanBeUnswitchedCount = Quota / 2;
369 OldLoopProps.CanBeUnswitchedCount = Quota - Quota / 2;
Andrew Trick4104ed92012-04-10 05:14:37 +0000370
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000371 NewLoopProps.SizeEstimation = OldLoopProps.SizeEstimation;
Andrew Trick4104ed92012-04-10 05:14:37 +0000372
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000373 // Clone unswitched values info:
374 // for new loop switches we clone info about values that was
375 // already unswitched and has redundant successors.
376 for (UnswitchedValsIt I = Insts.begin(); I != Insts.end(); ++I) {
Jakub Staszak27da1232013-08-06 17:03:42 +0000377 const SwitchInst *OldInst = I->first;
378 Value *NewI = VMap.lookup(OldInst);
379 const SwitchInst *NewInst = cast_or_null<SwitchInst>(NewI);
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000380 assert(NewInst && "All instructions that are in SrcBB must be in VMap.");
Andrew Trick4104ed92012-04-10 05:14:37 +0000381
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +0000382 NewLoopProps.UnswitchedVals[NewInst] = OldLoopProps.UnswitchedVals[OldInst];
383 }
384}
385
Dan Gohmand78c4002008-05-13 00:00:25 +0000386char LoopUnswitch::ID = 0;
Eugene Zelenkofa6434b2017-08-31 21:56:16 +0000387
Owen Anderson8ac477f2010-10-12 19:48:12 +0000388INITIALIZE_PASS_BEGIN(LoopUnswitch, "loop-unswitch", "Unswitch loops",
389 false, false)
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000390INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth31088a92016-02-19 10:45:18 +0000391INITIALIZE_PASS_DEPENDENCY(LoopPass)
392INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Nicolai Haehnle35617ed2018-08-30 14:21:36 +0000393INITIALIZE_PASS_DEPENDENCY(LegacyDivergenceAnalysis)
Alina Sbirleaa4961432018-09-11 19:19:21 +0000394INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass)
Owen Anderson8ac477f2010-10-12 19:48:12 +0000395INITIALIZE_PASS_END(LoopUnswitch, "loop-unswitch", "Unswitch loops",
396 false, false)
Chris Lattnerf48f7772004-04-19 18:07:02 +0000397
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000398Pass *llvm::createLoopUnswitchPass(bool Os, bool hasBranchDivergence) {
399 return new LoopUnswitch(Os, hasBranchDivergence);
Devang Patel506310d2007-06-06 00:21:03 +0000400}
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000401
Xin Tong16b85a62017-02-27 18:00:13 +0000402/// Operator chain lattice.
403enum OperatorChain {
404 OC_OpChainNone, ///< There is no operator.
405 OC_OpChainOr, ///< There are only ORs.
406 OC_OpChainAnd, ///< There are only ANDs.
407 OC_OpChainMixed ///< There are ANDs and ORs.
408};
409
Sanjay Patel956e29c2015-08-11 21:24:04 +0000410/// Cond is a condition that occurs in L. If it is invariant in the loop, or has
411/// an invariant piece, return the invariant. Otherwise, return null.
Xin Tong16b85a62017-02-27 18:00:13 +0000412//
413/// NOTE: FindLIVLoopCondition will not return a partial LIV by walking up a
414/// mixed operator chain, as we can not reliably find a value which will simplify
415/// the operator chain. If the chain is AND-only or OR-only, we can use 0 or ~0
416/// to simplify the chain.
417///
418/// NOTE: In case a partial LIV and a mixed operator chain, we may be able to
419/// simplify the condition itself to a loop variant condition, but at the
420/// cost of creating an entirely new loop.
Sanjoy Dasd8500682016-06-25 01:14:19 +0000421static Value *FindLIVLoopCondition(Value *Cond, Loop *L, bool &Changed,
Xin Tong16b85a62017-02-27 18:00:13 +0000422 OperatorChain &ParentChain,
Alina Sbirlea69434722019-09-12 17:12:51 +0000423 DenseMap<Value *, Value *> &Cache,
424 MemorySSAUpdater *MSSAU) {
Sanjoy Dasd8500682016-06-25 01:14:19 +0000425 auto CacheIt = Cache.find(Cond);
426 if (CacheIt != Cache.end())
427 return CacheIt->second;
Andrew Trick4104ed92012-04-10 05:14:37 +0000428
Stepan Dyatkovskiy82165692012-01-11 08:40:51 +0000429 // We started analyze new instruction, increment scanned instructions counter.
430 ++TotalInsts;
Andrew Trick4104ed92012-04-10 05:14:37 +0000431
Chris Lattner302240d2010-02-02 02:26:54 +0000432 // We can never unswitch on vector conditions.
Duncan Sands19d0b472010-02-16 11:11:14 +0000433 if (Cond->getType()->isVectorTy())
Craig Topperf40110f2014-04-25 05:29:35 +0000434 return nullptr;
Chris Lattner302240d2010-02-02 02:26:54 +0000435
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000436 // Constants should be folded, not unswitched on!
Craig Topperf40110f2014-04-25 05:29:35 +0000437 if (isa<Constant>(Cond)) return nullptr;
Devang Patel3c723c82007-06-28 00:44:10 +0000438
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000439 // TODO: Handle: br (VARIANT|INVARIANT).
Devang Patelfe57d102008-11-03 19:38:07 +0000440
Dan Gohman4d6149f2009-07-14 01:37:59 +0000441 // Hoist simple values out.
Alina Sbirlea69434722019-09-12 17:12:51 +0000442 if (L->makeLoopInvariant(Cond, Changed, nullptr, MSSAU)) {
Sanjoy Dasd8500682016-06-25 01:14:19 +0000443 Cache[Cond] = Cond;
Dan Gohman4d6149f2009-07-14 01:37:59 +0000444 return Cond;
Sanjoy Dasd8500682016-06-25 01:14:19 +0000445 }
Dan Gohman4d6149f2009-07-14 01:37:59 +0000446
Xin Tong16b85a62017-02-27 18:00:13 +0000447 // Walk up the operator chain to find partial invariant conditions.
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000448 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Cond))
449 if (BO->getOpcode() == Instruction::And ||
450 BO->getOpcode() == Instruction::Or) {
Xin Tong16b85a62017-02-27 18:00:13 +0000451 // Given the previous operator, compute the current operator chain status.
452 OperatorChain NewChain;
453 switch (ParentChain) {
454 case OC_OpChainNone:
455 NewChain = BO->getOpcode() == Instruction::And ? OC_OpChainAnd :
456 OC_OpChainOr;
457 break;
458 case OC_OpChainOr:
459 NewChain = BO->getOpcode() == Instruction::Or ? OC_OpChainOr :
460 OC_OpChainMixed;
461 break;
462 case OC_OpChainAnd:
463 NewChain = BO->getOpcode() == Instruction::And ? OC_OpChainAnd :
464 OC_OpChainMixed;
465 break;
466 case OC_OpChainMixed:
467 NewChain = OC_OpChainMixed;
468 break;
Sanjoy Dasd8500682016-06-25 01:14:19 +0000469 }
Xin Tong16b85a62017-02-27 18:00:13 +0000470
471 // If we reach a Mixed state, we do not want to keep walking up as we can not
472 // reliably find a value that will simplify the chain. With this check, we
473 // will return null on the first sight of mixed chain and the caller will
474 // either backtrack to find partial LIV in other operand or return null.
475 if (NewChain != OC_OpChainMixed) {
476 // Update the current operator chain type before we search up the chain.
477 ParentChain = NewChain;
478 // If either the left or right side is invariant, we can unswitch on this,
479 // which will cause the branch to go away in one loop and the condition to
480 // simplify in the other one.
481 if (Value *LHS = FindLIVLoopCondition(BO->getOperand(0), L, Changed,
Alina Sbirlea69434722019-09-12 17:12:51 +0000482 ParentChain, Cache, MSSAU)) {
Xin Tong16b85a62017-02-27 18:00:13 +0000483 Cache[Cond] = LHS;
484 return LHS;
485 }
486 // We did not manage to find a partial LIV in operand(0). Backtrack and try
487 // operand(1).
488 ParentChain = NewChain;
489 if (Value *RHS = FindLIVLoopCondition(BO->getOperand(1), L, Changed,
Alina Sbirlea69434722019-09-12 17:12:51 +0000490 ParentChain, Cache, MSSAU)) {
Xin Tong16b85a62017-02-27 18:00:13 +0000491 Cache[Cond] = RHS;
492 return RHS;
493 }
Sanjoy Dasd8500682016-06-25 01:14:19 +0000494 }
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000495 }
Andrew Trick4104ed92012-04-10 05:14:37 +0000496
Sanjoy Dasd8500682016-06-25 01:14:19 +0000497 Cache[Cond] = nullptr;
Craig Topperf40110f2014-04-25 05:29:35 +0000498 return nullptr;
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000499}
500
Xin Tong16b85a62017-02-27 18:00:13 +0000501/// Cond is a condition that occurs in L. If it is invariant in the loop, or has
502/// an invariant piece, return the invariant along with the operator chain type.
503/// Otherwise, return null.
Alina Sbirlea69434722019-09-12 17:12:51 +0000504static std::pair<Value *, OperatorChain>
505FindLIVLoopCondition(Value *Cond, Loop *L, bool &Changed,
506 MemorySSAUpdater *MSSAU) {
Sanjoy Dasd8500682016-06-25 01:14:19 +0000507 DenseMap<Value *, Value *> Cache;
Xin Tong16b85a62017-02-27 18:00:13 +0000508 OperatorChain OpChain = OC_OpChainNone;
Alina Sbirlea69434722019-09-12 17:12:51 +0000509 Value *FCond = FindLIVLoopCondition(Cond, L, Changed, OpChain, Cache, MSSAU);
Xin Tong16b85a62017-02-27 18:00:13 +0000510
511 // In case we do find a LIV, it can not be obtained by walking up a mixed
512 // operator chain.
513 assert((!FCond || OpChain != OC_OpChainMixed) &&
514 "Do not expect a partial LIV with mixed operator chain");
515 return {FCond, OpChain};
Sanjoy Dasd8500682016-06-25 01:14:19 +0000516}
517
Devang Patel901a27d2007-03-07 00:26:10 +0000518bool LoopUnswitch::runOnLoop(Loop *L, LPPassManager &LPM_Ref) {
Andrew Kayloraa641a52016-04-22 22:06:11 +0000519 if (skipLoop(L))
Paul Robinsonaf4e64d2014-02-06 00:07:05 +0000520 return false;
521
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000522 AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(
523 *L->getHeader()->getParent());
Chandler Carruth4f8f3072015-01-17 14:16:18 +0000524 LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Devang Patel901a27d2007-03-07 00:26:10 +0000525 LPM = &LPM_Ref;
Michael Zolotukhin9f3aea62015-09-22 00:22:47 +0000526 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Alina Sbirleaa4961432018-09-11 19:19:21 +0000527 if (EnableMSSALoopDependency) {
528 MSSA = &getAnalysis<MemorySSAWrapperPass>().getMSSA();
Jonas Devlieghere0eaee542019-08-15 15:54:37 +0000529 MSSAU = std::make_unique<MemorySSAUpdater>(MSSA);
Alina Sbirleaa4961432018-09-11 19:19:21 +0000530 assert(DT && "Cannot update MemorySSA without a valid DomTree.");
531 }
Devang Patele149d4e2008-07-02 01:18:13 +0000532 currentLoop = L;
Devang Patel40519f02008-09-04 22:43:59 +0000533 Function *F = currentLoop->getHeader()->getParent();
Chen Li9f27fc02015-09-29 05:03:32 +0000534
Evgeniy Stepanoveaea2972016-06-10 20:03:20 +0000535 SanitizeMemory = F->hasFnAttribute(Attribute::SanitizeMemory);
536 if (SanitizeMemory)
Max Kazantsev530b8d12018-08-15 05:55:43 +0000537 SafetyInfo.computeLoopSafetyInfo(L);
Evgeniy Stepanoveaea2972016-06-10 20:03:20 +0000538
Alina Sbirleaa4961432018-09-11 19:19:21 +0000539 if (MSSA && VerifyMemorySSA)
540 MSSA->verifyMemorySSA();
541
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000542 bool Changed = false;
Devang Patel7d165e12007-07-30 23:07:10 +0000543 do {
Michael Zolotukhin9f3aea62015-09-22 00:22:47 +0000544 assert(currentLoop->isLCSSAForm(*DT));
Alina Sbirleaa4961432018-09-11 19:19:21 +0000545 if (MSSA && VerifyMemorySSA)
546 MSSA->verifyMemorySSA();
Devang Patel7d165e12007-07-30 23:07:10 +0000547 redoLoop = false;
Devang Patele149d4e2008-07-02 01:18:13 +0000548 Changed |= processCurrentLoop();
Devang Patel7d165e12007-07-30 23:07:10 +0000549 } while(redoLoop);
550
Alina Sbirleaa4961432018-09-11 19:19:21 +0000551 if (MSSA && VerifyMemorySSA)
552 MSSA->verifyMemorySSA();
553
Devang Patel7d165e12007-07-30 23:07:10 +0000554 return Changed;
555}
556
Abhilash Bhandari54e5a1a2016-11-25 14:07:44 +0000557// Return true if the BasicBlock BB is unreachable from the loop header.
558// Return false, otherwise.
559bool LoopUnswitch::isUnreachableDueToPreviousUnswitching(BasicBlock *BB) {
560 auto *Node = DT->getNode(BB)->getIDom();
561 BasicBlock *DomBB = Node->getBlock();
562 while (currentLoop->contains(DomBB)) {
563 BranchInst *BInst = dyn_cast<BranchInst>(DomBB->getTerminator());
564
565 Node = DT->getNode(DomBB)->getIDom();
566 DomBB = Node->getBlock();
567
568 if (!BInst || !BInst->isConditional())
569 continue;
570
571 Value *Cond = BInst->getCondition();
572 if (!isa<ConstantInt>(Cond))
573 continue;
574
575 BasicBlock *UnreachableSucc =
576 Cond == ConstantInt::getTrue(Cond->getContext())
577 ? BInst->getSuccessor(1)
578 : BInst->getSuccessor(0);
579
580 if (DT->dominates(UnreachableSucc, BB))
581 return true;
582 }
583 return false;
584}
585
Wei Mifc0e2452017-07-25 23:37:17 +0000586/// FIXME: Remove this workaround when freeze related patches are done.
587/// LoopUnswitch and Equality propagation in GVN have discrepancy about
588/// whether branch on undef/poison has undefine behavior. Here it is to
589/// rule out some common cases that we found such discrepancy already
590/// causing problems. Detail could be found in PR31652. Note if the
591/// func returns true, it is unsafe. But if it is false, it doesn't mean
592/// it is necessarily safe.
593static bool EqualityPropUnSafe(Value &LoopCond) {
594 ICmpInst *CI = dyn_cast<ICmpInst>(&LoopCond);
595 if (!CI || !CI->isEquality())
596 return false;
597
598 Value *LHS = CI->getOperand(0);
599 Value *RHS = CI->getOperand(1);
600 if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS))
601 return true;
602
603 auto hasUndefInPHI = [](PHINode &PN) {
604 for (Value *Opd : PN.incoming_values()) {
605 if (isa<UndefValue>(Opd))
606 return true;
607 }
608 return false;
609 };
610 PHINode *LPHI = dyn_cast<PHINode>(LHS);
611 PHINode *RPHI = dyn_cast<PHINode>(RHS);
612 if ((LPHI && hasUndefInPHI(*LPHI)) || (RPHI && hasUndefInPHI(*RPHI)))
613 return true;
614
615 auto hasUndefInSelect = [](SelectInst &SI) {
616 if (isa<UndefValue>(SI.getTrueValue()) ||
617 isa<UndefValue>(SI.getFalseValue()))
618 return true;
619 return false;
620 };
621 SelectInst *LSI = dyn_cast<SelectInst>(LHS);
622 SelectInst *RSI = dyn_cast<SelectInst>(RHS);
623 if ((LSI && hasUndefInSelect(*LSI)) || (RSI && hasUndefInSelect(*RSI)))
624 return true;
625 return false;
626}
627
Sanjay Patel956e29c2015-08-11 21:24:04 +0000628/// Do actual work and unswitch loop if possible and profitable.
Devang Patele149d4e2008-07-02 01:18:13 +0000629bool LoopUnswitch::processCurrentLoop() {
Devang Patel7d165e12007-07-30 23:07:10 +0000630 bool Changed = false;
Stepan Dyatkovskiy82165692012-01-11 08:40:51 +0000631
632 initLoopData();
Andrew Trick4104ed92012-04-10 05:14:37 +0000633
Stepan Dyatkovskiy82165692012-01-11 08:40:51 +0000634 // If LoopSimplify was unable to form a preheader, don't do any unswitching.
635 if (!loopPreheader)
636 return false;
Andrew Trick4104ed92012-04-10 05:14:37 +0000637
Andrew Trick4442bfe2012-04-10 05:14:42 +0000638 // Loops with indirectbr cannot be cloned.
639 if (!currentLoop->isSafeToClone())
640 return false;
641
642 // Without dedicated exits, splitting the exit edge may fail.
643 if (!currentLoop->hasDedicatedExits())
644 return false;
645
Stepan Dyatkovskiy82165692012-01-11 08:40:51 +0000646 LLVMContext &Context = loopHeader->getContext();
Andrew Trick4104ed92012-04-10 05:14:37 +0000647
Chen Li567aa7a2015-10-14 19:47:43 +0000648 // Analyze loop cost, and stop unswitching if loop content can not be duplicated.
Chandler Carruth705b1852015-01-31 03:43:40 +0000649 if (!BranchesInfo.countLoop(
Chandler Carruthfdb9c572015-02-01 12:01:35 +0000650 currentLoop, getAnalysis<TargetTransformInfoWrapperPass>().getTTI(
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000651 *currentLoop->getHeader()->getParent()),
652 AC))
Stepan Dyatkovskiy82165692012-01-11 08:40:51 +0000653 return false;
Devang Patel7d165e12007-07-30 23:07:10 +0000654
Chen Lic0f3a152015-07-22 05:26:29 +0000655 // Try trivial unswitch first before loop over other basic blocks in the loop.
656 if (TryTrivialLoopUnswitch(Changed)) {
657 return true;
658 }
659
Philip Reames5c14ed82018-03-29 20:32:15 +0000660 // Do not do non-trivial unswitch while optimizing for size.
Evandro Menezes85bd3972019-04-04 22:40:06 +0000661 // FIXME: Use Function::hasOptSize().
Philip Reames5c14ed82018-03-29 20:32:15 +0000662 if (OptimizeForSize ||
663 loopHeader->getParent()->hasFnAttribute(Attribute::OptimizeForSize))
664 return false;
665
Sanjoy Dasa37bb4a2016-06-26 05:10:45 +0000666 // Run through the instructions in the loop, keeping track of three things:
667 //
668 // - That we do not unswitch loops containing convergent operations, as we
669 // might be making them control dependent on the unswitch value when they
670 // were not before.
671 // FIXME: This could be refined to only bail if the convergent operation is
672 // not already control-dependent on the unswitch value.
673 //
674 // - That basic blocks in the loop contain invokes whose predecessor edges we
675 // cannot split.
676 //
677 // - The set of guard intrinsics encountered (these are non terminator
678 // instructions that are also profitable to be unswitched).
679
680 SmallVector<IntrinsicInst *, 4> Guards;
681
Owen Anderson2c9978b2015-10-09 18:40:20 +0000682 for (const auto BB : currentLoop->blocks()) {
Owen Anderson97ca0f32015-10-09 20:17:46 +0000683 for (auto &I : *BB) {
684 auto CS = CallSite(&I);
685 if (!CS) continue;
Matt Arsenault9b0b6262019-10-27 19:37:45 -0700686 if (CS.isConvergent())
Owen Anderson2c9978b2015-10-09 18:40:20 +0000687 return false;
David Majnemer3d90bb72016-05-03 03:57:40 +0000688 if (auto *II = dyn_cast<InvokeInst>(&I))
689 if (!II->getUnwindDest()->canSplitPredecessors())
690 return false;
Sanjoy Dasa37bb4a2016-06-26 05:10:45 +0000691 if (auto *II = dyn_cast<IntrinsicInst>(&I))
692 if (II->getIntrinsicID() == Intrinsic::experimental_guard)
693 Guards.push_back(II);
Owen Anderson2c9978b2015-10-09 18:40:20 +0000694 }
695 }
696
Sanjoy Dasa37bb4a2016-06-26 05:10:45 +0000697 for (IntrinsicInst *Guard : Guards) {
Alina Sbirlea69434722019-09-12 17:12:51 +0000698 Value *LoopCond = FindLIVLoopCondition(Guard->getOperand(0), currentLoop,
699 Changed, MSSAU.get())
700 .first;
Sanjoy Dasa37bb4a2016-06-26 05:10:45 +0000701 if (LoopCond &&
702 UnswitchIfProfitable(LoopCond, ConstantInt::getTrue(Context))) {
703 // NB! Unswitching (if successful) could have erased some of the
704 // instructions in Guards leaving dangling pointers there. This is fine
705 // because we're returning now, and won't look at Guards again.
706 ++NumGuards;
707 return true;
708 }
709 }
710
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000711 // Loop over all of the basic blocks in the loop. If we find an interior
712 // block that is branching on a loop-invariant condition, we can unswitch this
713 // loop.
Andrew Trick4104ed92012-04-10 05:14:37 +0000714 for (Loop::block_iterator I = currentLoop->block_begin(),
Chris Lattnerc832c1b2010-04-05 21:18:32 +0000715 E = currentLoop->block_end(); I != E; ++I) {
Chandler Carruthedb12a82018-10-15 10:04:59 +0000716 Instruction *TI = (*I)->getTerminator();
Evgeniy Stepanoveaea2972016-06-10 20:03:20 +0000717
718 // Unswitching on a potentially uninitialized predicate is not
719 // MSan-friendly. Limit this to the cases when the original predicate is
720 // guaranteed to execute, to avoid creating a use-of-uninitialized-value
721 // in the code that did not have one.
722 // This is a workaround for the discrepancy between LLVM IR and MSan
723 // semantics. See PR28054 for more details.
724 if (SanitizeMemory &&
Max Kazantsevc8466f92018-10-16 06:34:53 +0000725 !SafetyInfo.isGuaranteedToExecute(*TI, DT, currentLoop))
Evgeniy Stepanoveaea2972016-06-10 20:03:20 +0000726 continue;
727
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000728 if (BranchInst *BI = dyn_cast<BranchInst>(TI)) {
Abhilash Bhandari54e5a1a2016-11-25 14:07:44 +0000729 // Some branches may be rendered unreachable because of previous
730 // unswitching.
731 // Unswitch only those branches that are reachable.
732 if (isUnreachableDueToPreviousUnswitching(*I))
733 continue;
Fangrui Songf78650a2018-07-30 19:41:25 +0000734
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000735 // If this isn't branching on an invariant condition, we can't unswitch
736 // it.
737 if (BI->isConditional()) {
738 // See if this, or some part of it, is loop invariant. If so, we can
739 // unswitch on it if we desire.
Alina Sbirlea69434722019-09-12 17:12:51 +0000740 Value *LoopCond = FindLIVLoopCondition(BI->getCondition(), currentLoop,
741 Changed, MSSAU.get())
742 .first;
Wei Miebb93272017-08-29 21:45:11 +0000743 if (LoopCond && !EqualityPropUnSafe(*LoopCond) &&
744 UnswitchIfProfitable(LoopCond, ConstantInt::getTrue(Context), TI)) {
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000745 ++NumBranches;
746 return true;
747 }
Andrew Trick4104ed92012-04-10 05:14:37 +0000748 }
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000749 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) {
Xin Tong16b85a62017-02-27 18:00:13 +0000750 Value *SC = SI->getCondition();
751 Value *LoopCond;
752 OperatorChain OpChain;
753 std::tie(LoopCond, OpChain) =
Alina Sbirlea69434722019-09-12 17:12:51 +0000754 FindLIVLoopCondition(SC, currentLoop, Changed, MSSAU.get());
Xin Tong16b85a62017-02-27 18:00:13 +0000755
Andrew Trick4104ed92012-04-10 05:14:37 +0000756 unsigned NumCases = SI->getNumCases();
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +0000757 if (LoopCond && NumCases) {
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000758 // Find a value to unswitch on:
759 // FIXME: this should chose the most expensive case!
Nick Lewycky61158242011-06-03 06:27:15 +0000760 // FIXME: scan for a case with a non-critical edge?
Craig Topperf40110f2014-04-25 05:29:35 +0000761 Constant *UnswitchVal = nullptr;
Xin Tong16b85a62017-02-27 18:00:13 +0000762 // Find a case value such that at least one case value is unswitched
763 // out.
764 if (OpChain == OC_OpChainAnd) {
765 // If the chain only has ANDs and the switch has a case value of 0.
766 // Dropping in a 0 to the chain will unswitch out the 0-casevalue.
767 auto *AllZero = cast<ConstantInt>(Constant::getNullValue(SC->getType()));
768 if (BranchesInfo.isUnswitched(SI, AllZero))
769 continue;
770 // We are unswitching 0 out.
771 UnswitchVal = AllZero;
772 } else if (OpChain == OC_OpChainOr) {
773 // If the chain only has ORs and the switch has a case value of ~0.
774 // Dropping in a ~0 to the chain will unswitch out the ~0-casevalue.
775 auto *AllOne = cast<ConstantInt>(Constant::getAllOnesValue(SC->getType()));
776 if (BranchesInfo.isUnswitched(SI, AllOne))
777 continue;
778 // We are unswitching ~0 out.
779 UnswitchVal = AllOne;
780 } else {
Fangrui Songf78650a2018-07-30 19:41:25 +0000781 assert(OpChain == OC_OpChainNone &&
Xin Tong16b85a62017-02-27 18:00:13 +0000782 "Expect to unswitch on trivial chain");
783 // Do not process same value again and again.
784 // At this point we have some cases already unswitched and
785 // some not yet unswitched. Let's find the first not yet unswitched one.
Chandler Carruth927d8e62017-04-12 07:27:28 +0000786 for (auto Case : SI->cases()) {
787 Constant *UnswitchValCandidate = Case.getCaseValue();
Xin Tong16b85a62017-02-27 18:00:13 +0000788 if (!BranchesInfo.isUnswitched(SI, UnswitchValCandidate)) {
789 UnswitchVal = UnswitchValCandidate;
790 break;
791 }
Chad Rosier3ba90a12011-12-22 21:10:46 +0000792 }
793 }
Andrew Trick4104ed92012-04-10 05:14:37 +0000794
Chad Rosier3ba90a12011-12-22 21:10:46 +0000795 if (!UnswitchVal)
Devang Patel967b84c2007-02-26 19:31:58 +0000796 continue;
Devang Patel967b84c2007-02-26 19:31:58 +0000797
Devang Patele149d4e2008-07-02 01:18:13 +0000798 if (UnswitchIfProfitable(LoopCond, UnswitchVal)) {
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000799 ++NumSwitches;
Xin Tong16b85a62017-02-27 18:00:13 +0000800 // In case of a full LIV, UnswitchVal is the value we unswitched out.
801 // In case of a partial LIV, we only unswitch when its an AND-chain
802 // or OR-chain. In both cases switch input value simplifies to
803 // UnswitchVal.
804 BranchesInfo.setUnswitched(SI, UnswitchVal);
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000805 return true;
806 }
807 }
808 }
Andrew Trick4104ed92012-04-10 05:14:37 +0000809
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000810 // Scan the instructions to check for unswitchable values.
Andrew Trick4104ed92012-04-10 05:14:37 +0000811 for (BasicBlock::iterator BBI = (*I)->begin(), E = (*I)->end();
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000812 BBI != E; ++BBI)
813 if (SelectInst *SI = dyn_cast<SelectInst>(BBI)) {
Alina Sbirlea69434722019-09-12 17:12:51 +0000814 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(), currentLoop,
815 Changed, MSSAU.get())
816 .first;
Andrew Trick4104ed92012-04-10 05:14:37 +0000817 if (LoopCond && UnswitchIfProfitable(LoopCond,
Owen Anderson23a204d2009-07-31 17:39:07 +0000818 ConstantInt::getTrue(Context))) {
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +0000819 ++NumSelects;
820 return true;
821 }
822 }
823 }
Chris Lattnerf48f7772004-04-19 18:07:02 +0000824 return Changed;
825}
826
Sanjay Patel956e29c2015-08-11 21:24:04 +0000827/// Check to see if all paths from BB exit the loop with no side effects
828/// (including infinite loops).
Chris Lattnere5cb76d2006-02-15 22:03:36 +0000829///
Dan Gohman0ad7d9c2010-09-01 21:46:45 +0000830/// If true, we return true and set ExitBB to the block we
Chris Lattnere5cb76d2006-02-15 22:03:36 +0000831/// exit through.
832///
833static bool isTrivialLoopExitBlockHelper(Loop *L, BasicBlock *BB,
834 BasicBlock *&ExitBB,
835 std::set<BasicBlock*> &Visited) {
Chris Lattnerbaddba42006-02-17 06:39:56 +0000836 if (!Visited.insert(BB).second) {
Nick Lewyckyd9d1de42011-12-23 23:49:25 +0000837 // Already visited. Without more analysis, this could indicate an infinite
838 // loop.
Dan Gohman0ad7d9c2010-09-01 21:46:45 +0000839 return false;
Jakub Staszak27da1232013-08-06 17:03:42 +0000840 }
841 if (!L->contains(BB)) {
Chris Lattnerbaddba42006-02-17 06:39:56 +0000842 // Otherwise, this is a loop exit, this is fine so long as this is the
843 // first exit.
Craig Topperf40110f2014-04-25 05:29:35 +0000844 if (ExitBB) return false;
Chris Lattnerbaddba42006-02-17 06:39:56 +0000845 ExitBB = BB;
Edward O'Callaghan2b8fed12009-11-25 05:38:41 +0000846 return true;
Chris Lattnerbaddba42006-02-17 06:39:56 +0000847 }
Andrew Trick4104ed92012-04-10 05:14:37 +0000848
Chris Lattnerbaddba42006-02-17 06:39:56 +0000849 // Otherwise, this is an unvisited intra-loop node. Check all successors.
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000850 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI) {
Chris Lattnerbaddba42006-02-17 06:39:56 +0000851 // Check to see if the successor is a trivial loop exit.
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000852 if (!isTrivialLoopExitBlockHelper(L, *SI, ExitBB, Visited))
Chris Lattnerbaddba42006-02-17 06:39:56 +0000853 return false;
Chris Lattner6e263152006-02-10 02:30:37 +0000854 }
Chris Lattnere5cb76d2006-02-15 22:03:36 +0000855
856 // Okay, everything after this looks good, check to make sure that this block
857 // doesn't include any side effects.
Benjamin Kramer135f7352016-06-26 12:28:59 +0000858 for (Instruction &I : *BB)
859 if (I.mayHaveSideEffects())
Chris Lattnere5cb76d2006-02-15 22:03:36 +0000860 return false;
Andrew Trick4104ed92012-04-10 05:14:37 +0000861
Chris Lattnere5cb76d2006-02-15 22:03:36 +0000862 return true;
Chris Lattner6e263152006-02-10 02:30:37 +0000863}
864
Sanjay Patel956e29c2015-08-11 21:24:04 +0000865/// Return true if the specified block unconditionally leads to an exit from
866/// the specified loop, and has no side-effects in the process. If so, return
867/// the block that is exited to, otherwise return null.
Chris Lattnere5cb76d2006-02-15 22:03:36 +0000868static BasicBlock *isTrivialLoopExitBlock(Loop *L, BasicBlock *BB) {
869 std::set<BasicBlock*> Visited;
Dan Gohman0ad7d9c2010-09-01 21:46:45 +0000870 Visited.insert(L->getHeader()); // Branches to header make infinite loops.
Craig Topperf40110f2014-04-25 05:29:35 +0000871 BasicBlock *ExitBB = nullptr;
Chris Lattnere5cb76d2006-02-15 22:03:36 +0000872 if (isTrivialLoopExitBlockHelper(L, BB, ExitBB, Visited))
873 return ExitBB;
Craig Topperf40110f2014-04-25 05:29:35 +0000874 return nullptr;
Chris Lattnere5cb76d2006-02-15 22:03:36 +0000875}
Chris Lattner6e263152006-02-10 02:30:37 +0000876
Sanjay Patel956e29c2015-08-11 21:24:04 +0000877/// We have found that we can unswitch currentLoop when LoopCond == Val to
878/// simplify the loop. If we decide that this is profitable,
Chris Lattnerfbadd7e2006-02-11 00:43:37 +0000879/// unswitch the loop, reprocess the pieces, then return true.
Weiming Zhaof1abad52015-06-23 05:31:09 +0000880bool LoopUnswitch::UnswitchIfProfitable(Value *LoopCond, Constant *Val,
Chandler Carruthedb12a82018-10-15 10:04:59 +0000881 Instruction *TI) {
Evan Chenged66db32010-04-03 02:23:43 +0000882 // Check to see if it would be profitable to unswitch current loop.
Mark Heffernan9b536a62015-06-23 18:26:50 +0000883 if (!BranchesInfo.CostAllowsUnswitching()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000884 LLVM_DEBUG(dbgs() << "NOT unswitching loop %"
885 << currentLoop->getHeader()->getName()
886 << " at non-trivial condition '" << *Val
887 << "' == " << *LoopCond << "\n"
888 << ". Cost too high.\n");
Mark Heffernan9b536a62015-06-23 18:26:50 +0000889 return false;
890 }
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000891 if (hasBranchDivergence &&
Nicolai Haehnle35617ed2018-08-30 14:21:36 +0000892 getAnalysis<LegacyDivergenceAnalysis>().isDivergent(LoopCond)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000893 LLVM_DEBUG(dbgs() << "NOT unswitching loop %"
894 << currentLoop->getHeader()->getName()
895 << " at non-trivial condition '" << *Val
896 << "' == " << *LoopCond << "\n"
897 << ". Condition is divergent.\n");
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000898 return false;
899 }
Evan Chenged66db32010-04-03 02:23:43 +0000900
Weiming Zhaof1abad52015-06-23 05:31:09 +0000901 UnswitchNontrivialCondition(LoopCond, Val, currentLoop, TI);
Andrew Trick4442bfe2012-04-10 05:14:42 +0000902 return true;
Chris Lattnerfbadd7e2006-02-11 00:43:37 +0000903}
904
Sanjay Patel956e29c2015-08-11 21:24:04 +0000905/// Recursively clone the specified loop and all of its children,
Chris Lattnerf48f7772004-04-19 18:07:02 +0000906/// mapping the blocks with the specified map.
Rafael Espindola229e38f2010-10-13 01:36:30 +0000907static Loop *CloneLoop(Loop *L, Loop *PL, ValueToValueMapTy &VM,
Devang Patel901a27d2007-03-07 00:26:10 +0000908 LoopInfo *LI, LPPassManager *LPM) {
Sanjoy Dasdef17292017-09-28 02:45:42 +0000909 Loop &New = *LI->AllocateLoop();
Chandler Carruth29c22d22017-05-25 03:01:31 +0000910 if (PL)
911 PL->addChildLoop(&New);
912 else
913 LI->addTopLevelLoop(&New);
914 LPM->addLoop(New);
Chris Lattnerf48f7772004-04-19 18:07:02 +0000915
916 // Add all of the blocks in L to the new loop.
917 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
918 I != E; ++I)
919 if (LI->getLoopFor(*I) == L)
Justin Bogner35e46cd2015-10-22 21:21:32 +0000920 New.addBasicBlockToLoop(cast<BasicBlock>(VM[*I]), *LI);
Chris Lattnerf48f7772004-04-19 18:07:02 +0000921
922 // Add all of the subloops to the new loop.
Benjamin Kramer135f7352016-06-26 12:28:59 +0000923 for (Loop *I : *L)
924 CloneLoop(I, &New, VM, LI, LPM);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000925
Justin Bogner35e46cd2015-10-22 21:21:32 +0000926 return &New;
Chris Lattnerf48f7772004-04-19 18:07:02 +0000927}
928
Sanjay Patel956e29c2015-08-11 21:24:04 +0000929/// Emit a conditional branch on two values if LIC == Val, branch to TrueDst,
Jakub Kuderskie35a4492017-08-17 16:45:35 +0000930/// otherwise branch to FalseDest. Insert the code immediately before OldBranch
931/// and remove (but not erase!) it from the function.
Devang Patel3304e462007-06-28 00:49:00 +0000932void LoopUnswitch::EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val,
933 BasicBlock *TrueDest,
934 BasicBlock *FalseDest,
Jakub Kuderskie35a4492017-08-17 16:45:35 +0000935 BranchInst *OldBranch,
Chandler Carruthedb12a82018-10-15 10:04:59 +0000936 Instruction *TI) {
Jakub Kuderskie35a4492017-08-17 16:45:35 +0000937 assert(OldBranch->isUnconditional() && "Preheader is not split correctly");
Alina Sbirleabee50032018-06-22 17:14:35 +0000938 assert(TrueDest != FalseDest && "Branch targets should be different");
Chris Lattnerb0cbe712006-02-15 00:07:43 +0000939 // Insert a conditional branch on LIC to the two preheaders. The original
940 // code is the true version and the new code is the false version.
941 Value *BranchVal = LIC;
Weiming Zhaof1abad52015-06-23 05:31:09 +0000942 bool Swapped = false;
Owen Anderson55f1c092009-08-13 21:58:54 +0000943 if (!isa<ConstantInt>(Val) ||
944 Val->getType() != Type::getInt1Ty(LIC->getContext()))
Jakub Kuderskie35a4492017-08-17 16:45:35 +0000945 BranchVal = new ICmpInst(OldBranch, ICmpInst::ICMP_EQ, LIC, Val);
Weiming Zhaof1abad52015-06-23 05:31:09 +0000946 else if (Val != ConstantInt::getTrue(Val->getContext())) {
Chris Lattnerb0cbe712006-02-15 00:07:43 +0000947 // We want to enter the new loop when the condition is true.
948 std::swap(TrueDest, FalseDest);
Weiming Zhaof1abad52015-06-23 05:31:09 +0000949 Swapped = true;
950 }
Chris Lattnerb0cbe712006-02-15 00:07:43 +0000951
Jakub Kuderskie35a4492017-08-17 16:45:35 +0000952 // Old branch will be removed, so save its parent and successor to update the
953 // DomTree.
954 auto *OldBranchSucc = OldBranch->getSuccessor(0);
955 auto *OldBranchParent = OldBranch->getParent();
956
Chris Lattnerb0cbe712006-02-15 00:07:43 +0000957 // Insert the new branch.
Xinliang David Li7a28a7f2016-09-03 22:26:11 +0000958 BranchInst *BI =
Jakub Kuderskie35a4492017-08-17 16:45:35 +0000959 IRBuilder<>(OldBranch).CreateCondBr(BranchVal, TrueDest, FalseDest, TI);
Xinliang David Li7a28a7f2016-09-03 22:26:11 +0000960 if (Swapped)
961 BI->swapProfMetadata();
Dan Gohman3ddbc242009-09-08 15:45:00 +0000962
Jakub Kuderskie35a4492017-08-17 16:45:35 +0000963 // Remove the old branch so there is only one branch at the end. This is
964 // needed to perform DomTree's internal DFS walk on the function's CFG.
965 OldBranch->removeFromParent();
966
967 // Inform the DT about the new branch.
968 if (DT) {
969 // First, add both successors.
970 SmallVector<DominatorTree::UpdateType, 3> Updates;
Alina Sbirleabee50032018-06-22 17:14:35 +0000971 if (TrueDest != OldBranchSucc)
Jakub Kuderskie35a4492017-08-17 16:45:35 +0000972 Updates.push_back({DominatorTree::Insert, OldBranchParent, TrueDest});
Alina Sbirleabee50032018-06-22 17:14:35 +0000973 if (FalseDest != OldBranchSucc)
Jakub Kuderskie35a4492017-08-17 16:45:35 +0000974 Updates.push_back({DominatorTree::Insert, OldBranchParent, FalseDest});
975 // If both of the new successors are different from the old one, inform the
976 // DT that the edge was deleted.
977 if (OldBranchSucc != TrueDest && OldBranchSucc != FalseDest) {
978 Updates.push_back({DominatorTree::Delete, OldBranchParent, OldBranchSucc});
979 }
Jakub Kuderskie35a4492017-08-17 16:45:35 +0000980 DT->applyUpdates(Updates);
Alina Sbirleaa4961432018-09-11 19:19:21 +0000981
982 if (MSSAU)
983 MSSAU->applyUpdates(Updates, *DT);
Jakub Kuderskie35a4492017-08-17 16:45:35 +0000984 }
985
Dan Gohman3ddbc242009-09-08 15:45:00 +0000986 // If either edge is critical, split it. This helps preserve LoopSimplify
987 // form for enclosing loops.
Alina Sbirleaa4961432018-09-11 19:19:21 +0000988 auto Options =
989 CriticalEdgeSplittingOptions(DT, LI, MSSAU.get()).setPreserveLCSSA();
Chandler Carruth37df2cf2015-01-19 12:09:11 +0000990 SplitCriticalEdge(BI, 0, Options);
991 SplitCriticalEdge(BI, 1, Options);
Chris Lattnerb0cbe712006-02-15 00:07:43 +0000992}
993
Sanjay Patel956e29c2015-08-11 21:24:04 +0000994/// Given a loop that has a trivial unswitchable condition in it (a cond branch
995/// from its header block to its latch block, where the path through the loop
996/// that doesn't execute its body has no side-effects), unswitch it. This
997/// doesn't involve any code duplication, just moving the conditional branch
998/// outside of the loop and updating loop info.
Weiming Zhaof1abad52015-06-23 05:31:09 +0000999void LoopUnswitch::UnswitchTrivialCondition(Loop *L, Value *Cond, Constant *Val,
1000 BasicBlock *ExitBlock,
Chandler Carruthedb12a82018-10-15 10:04:59 +00001001 Instruction *TI) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001002 LLVM_DEBUG(dbgs() << "loop-unswitch: Trivial-Unswitch loop %"
1003 << loopHeader->getName() << " [" << L->getBlocks().size()
1004 << " blocks] in Function "
1005 << L->getHeader()->getParent()->getName()
1006 << " on cond: " << *Val << " == " << *Cond << "\n");
Max Kazantsevd99f3ba2018-05-23 10:09:53 +00001007 // We are going to make essential changes to CFG. This may invalidate cached
1008 // information for L or one of its parent loops in SCEV.
1009 if (auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>())
1010 SEWP->getSE().forgetTopmostLoop(L);
Andrew Trick4104ed92012-04-10 05:14:37 +00001011
Chris Lattnerfe4151e2006-02-10 23:16:39 +00001012 // First step, split the preheader, so that we know that there is a safe place
Devang Patele149d4e2008-07-02 01:18:13 +00001013 // to insert the conditional branch. We will change loopPreheader to have a
Chris Lattnered7a67b2006-02-10 01:24:09 +00001014 // conditional branch on Cond.
Alina Sbirleaa4961432018-09-11 19:19:21 +00001015 BasicBlock *NewPH = SplitEdge(loopPreheader, loopHeader, DT, LI, MSSAU.get());
Chris Lattnered7a67b2006-02-10 01:24:09 +00001016
1017 // Now that we have a place to insert the conditional branch, create a place
Chris Lattner49354172006-02-10 02:01:22 +00001018 // to branch to: this is the exit block out of the loop that we should
1019 // short-circuit to.
Andrew Trick4104ed92012-04-10 05:14:37 +00001020
Chris Lattnere5cb76d2006-02-15 22:03:36 +00001021 // Split this block now, so that the loop maintains its exit block, and so
1022 // that the jump from the preheader can execute the contents of the exit block
1023 // without actually branching to it (the exit block should be dominated by the
1024 // loop header, not the preheader).
Chris Lattner49354172006-02-10 02:01:22 +00001025 assert(!L->contains(ExitBlock) && "Exit block is in the loop?");
Alina Sbirleaa4961432018-09-11 19:19:21 +00001026 BasicBlock *NewExit =
1027 SplitBlock(ExitBlock, &ExitBlock->front(), DT, LI, MSSAU.get());
Andrew Trick4104ed92012-04-10 05:14:37 +00001028
1029 // Okay, now we have a position to branch from and a position to branch to,
Chris Lattnered7a67b2006-02-10 01:24:09 +00001030 // insert the new conditional branch.
Jakub Kuderskie35a4492017-08-17 16:45:35 +00001031 auto *OldBranch = dyn_cast<BranchInst>(loopPreheader->getTerminator());
1032 assert(OldBranch && "Failed to split the preheader");
1033 EmitPreheaderBranchOnCondition(Cond, Val, NewExit, NewPH, OldBranch, TI);
1034 LPM->deleteSimpleAnalysisValue(OldBranch, L);
1035
1036 // EmitPreheaderBranchOnCondition removed the OldBranch from the function.
1037 // Delete it, as it is no longer needed.
1038 delete OldBranch;
Chris Lattnered7a67b2006-02-10 01:24:09 +00001039
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +00001040 // We need to reprocess this loop, it could be unswitched again.
Devang Patel7d165e12007-07-30 23:07:10 +00001041 redoLoop = true;
Andrew Trick4104ed92012-04-10 05:14:37 +00001042
Chris Lattnered7a67b2006-02-10 01:24:09 +00001043 // Now that we know that the loop is never entered when this condition is a
1044 // particular value, rewrite the loop with this info. We know that this will
1045 // at least eliminate the old branch.
Chris Lattner8a5a3242006-02-22 06:37:14 +00001046 RewriteLoopBodyWithConditionConstant(L, Cond, Val, false);
Alina Sbirleaa4961432018-09-11 19:19:21 +00001047
Chris Lattner0b8ec1a2006-02-14 01:01:41 +00001048 ++NumTrivial;
Chris Lattnered7a67b2006-02-10 01:24:09 +00001049}
1050
Sanjay Patel41f3d952015-08-11 21:11:56 +00001051/// Check if the first non-constant condition starting from the loop header is
1052/// a trivial unswitch condition: that is, a condition controls whether or not
1053/// the loop does anything at all. If it is a trivial condition, unswitching
1054/// produces no code duplications (equivalently, it produces a simpler loop and
1055/// a new empty loop, which gets deleted). Therefore always unswitch trivial
1056/// condition.
Chen Lic0f3a152015-07-22 05:26:29 +00001057bool LoopUnswitch::TryTrivialLoopUnswitch(bool &Changed) {
Chen Li145c2f52015-07-25 03:21:06 +00001058 BasicBlock *CurrentBB = currentLoop->getHeader();
Chandler Carruthedb12a82018-10-15 10:04:59 +00001059 Instruction *CurrentTerm = CurrentBB->getTerminator();
Chen Li145c2f52015-07-25 03:21:06 +00001060 LLVMContext &Context = CurrentBB->getContext();
Chen Lic0f3a152015-07-22 05:26:29 +00001061
Chen Li145c2f52015-07-25 03:21:06 +00001062 // If loop header has only one reachable successor (currently via an
1063 // unconditional branch or constant foldable conditional branch, but
1064 // should also consider adding constant foldable switch instruction in
1065 // future), we should keep looking for trivial condition candidates in
1066 // the successor as well. An alternative is to constant fold conditions
1067 // and merge successors into loop header (then we only need to check header's
1068 // terminator). The reason for not doing this in LoopUnswitch pass is that
1069 // it could potentially break LoopPassManager's invariants. Folding dead
1070 // branches could either eliminate the current loop or make other loops
Sanjay Patel41f3d952015-08-11 21:11:56 +00001071 // unreachable. LCSSA form might also not be preserved after deleting
1072 // branches. The following code keeps traversing loop header's successors
1073 // until it finds the trivial condition candidate (condition that is not a
1074 // constant). Since unswitching generates branches with constant conditions,
1075 // this scenario could be very common in practice.
Florian Hahna1cc8482018-06-12 11:16:56 +00001076 SmallPtrSet<BasicBlock*, 8> Visited;
Chen Li145c2f52015-07-25 03:21:06 +00001077
1078 while (true) {
1079 // If we exit loop or reach a previous visited block, then
1080 // we can not reach any trivial condition candidates (unfoldable
1081 // branch instructions or switch instructions) and no unswitch
1082 // can happen. Exit and return false.
1083 if (!currentLoop->contains(CurrentBB) || !Visited.insert(CurrentBB).second)
Chen Lic0f3a152015-07-22 05:26:29 +00001084 return false;
1085
Chen Li145c2f52015-07-25 03:21:06 +00001086 // Check if this loop will execute any side-effecting instructions (e.g.
1087 // stores, calls, volatile loads) in the part of the loop that the code
1088 // *would* execute. Check the header first.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00001089 for (Instruction &I : *CurrentBB)
1090 if (I.mayHaveSideEffects())
Chen Li145c2f52015-07-25 03:21:06 +00001091 return false;
1092
Chen Li145c2f52015-07-25 03:21:06 +00001093 if (BranchInst *BI = dyn_cast<BranchInst>(CurrentTerm)) {
1094 if (BI->isUnconditional()) {
1095 CurrentBB = BI->getSuccessor(0);
1096 } else if (BI->getCondition() == ConstantInt::getTrue(Context)) {
1097 CurrentBB = BI->getSuccessor(0);
1098 } else if (BI->getCondition() == ConstantInt::getFalse(Context)) {
1099 CurrentBB = BI->getSuccessor(1);
1100 } else {
Sanjay Patel41f3d952015-08-11 21:11:56 +00001101 // Found a trivial condition candidate: non-foldable conditional branch.
Chen Li145c2f52015-07-25 03:21:06 +00001102 break;
1103 }
Xin Tonge5f8d642017-01-27 01:42:20 +00001104 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurrentTerm)) {
1105 // At this point, any constant-foldable instructions should have probably
1106 // been folded.
1107 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
1108 if (!Cond)
1109 break;
1110 // Find the target block we are definitely going to.
Chandler Carruth927d8e62017-04-12 07:27:28 +00001111 CurrentBB = SI->findCaseValue(Cond)->getCaseSuccessor();
Karl-Johan Karlsson38cbf582017-02-14 07:31:36 +00001112 } else {
Xin Tonge5f8d642017-01-27 01:42:20 +00001113 // We do not understand these terminator instructions.
Chen Li145c2f52015-07-25 03:21:06 +00001114 break;
1115 }
1116
1117 CurrentTerm = CurrentBB->getTerminator();
1118 }
1119
Chen Lic0f3a152015-07-22 05:26:29 +00001120 // CondVal is the condition that controls the trivial condition.
1121 // LoopExitBB is the BasicBlock that loop exits when meets trivial condition.
1122 Constant *CondVal = nullptr;
1123 BasicBlock *LoopExitBB = nullptr;
1124
Chen Li145c2f52015-07-25 03:21:06 +00001125 if (BranchInst *BI = dyn_cast<BranchInst>(CurrentTerm)) {
Chen Lic0f3a152015-07-22 05:26:29 +00001126 // If this isn't branching on an invariant condition, we can't unswitch it.
1127 if (!BI->isConditional())
1128 return false;
1129
Alina Sbirlea69434722019-09-12 17:12:51 +00001130 Value *LoopCond = FindLIVLoopCondition(BI->getCondition(), currentLoop,
1131 Changed, MSSAU.get())
1132 .first;
Chen Lic0f3a152015-07-22 05:26:29 +00001133
1134 // Unswitch only if the trivial condition itself is an LIV (not
1135 // partial LIV which could occur in and/or)
1136 if (!LoopCond || LoopCond != BI->getCondition())
1137 return false;
1138
1139 // Check to see if a successor of the branch is guaranteed to
1140 // exit through a unique exit block without having any
1141 // side-effects. If so, determine the value of Cond that causes
1142 // it to do this.
1143 if ((LoopExitBB = isTrivialLoopExitBlock(currentLoop,
1144 BI->getSuccessor(0)))) {
1145 CondVal = ConstantInt::getTrue(Context);
1146 } else if ((LoopExitBB = isTrivialLoopExitBlock(currentLoop,
1147 BI->getSuccessor(1)))) {
1148 CondVal = ConstantInt::getFalse(Context);
1149 }
1150
Sanjay Patel41f3d952015-08-11 21:11:56 +00001151 // If we didn't find a single unique LoopExit block, or if the loop exit
1152 // block contains phi nodes, this isn't trivial.
Chen Lic0f3a152015-07-22 05:26:29 +00001153 if (!LoopExitBB || isa<PHINode>(LoopExitBB->begin()))
1154 return false; // Can't handle this.
1155
Wei Mifc0e2452017-07-25 23:37:17 +00001156 if (EqualityPropUnSafe(*LoopCond))
1157 return false;
1158
Sanjay Patel41f3d952015-08-11 21:11:56 +00001159 UnswitchTrivialCondition(currentLoop, LoopCond, CondVal, LoopExitBB,
1160 CurrentTerm);
Chen Lic0f3a152015-07-22 05:26:29 +00001161 ++NumBranches;
1162 return true;
Chen Li145c2f52015-07-25 03:21:06 +00001163 } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurrentTerm)) {
Chen Lic0f3a152015-07-22 05:26:29 +00001164 // If this isn't switching on an invariant condition, we can't unswitch it.
Alina Sbirlea69434722019-09-12 17:12:51 +00001165 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(), currentLoop,
1166 Changed, MSSAU.get())
1167 .first;
Chen Lic0f3a152015-07-22 05:26:29 +00001168
1169 // Unswitch only if the trivial condition itself is an LIV (not
1170 // partial LIV which could occur in and/or)
1171 if (!LoopCond || LoopCond != SI->getCondition())
1172 return false;
1173
1174 // Check to see if a successor of the switch is guaranteed to go to the
1175 // latch block or exit through a one exit block without having any
1176 // side-effects. If so, determine the value of Cond that causes it to do
1177 // this.
1178 // Note that we can't trivially unswitch on the default case or
1179 // on already unswitched cases.
Chandler Carruth927d8e62017-04-12 07:27:28 +00001180 for (auto Case : SI->cases()) {
Chen Lic0f3a152015-07-22 05:26:29 +00001181 BasicBlock *LoopExitCandidate;
Chandler Carruth927d8e62017-04-12 07:27:28 +00001182 if ((LoopExitCandidate =
1183 isTrivialLoopExitBlock(currentLoop, Case.getCaseSuccessor()))) {
Chen Lic0f3a152015-07-22 05:26:29 +00001184 // Okay, we found a trivial case, remember the value that is trivial.
Chandler Carruth927d8e62017-04-12 07:27:28 +00001185 ConstantInt *CaseVal = Case.getCaseValue();
Chen Lic0f3a152015-07-22 05:26:29 +00001186
1187 // Check that it was not unswitched before, since already unswitched
1188 // trivial vals are looks trivial too.
1189 if (BranchesInfo.isUnswitched(SI, CaseVal))
1190 continue;
1191 LoopExitBB = LoopExitCandidate;
1192 CondVal = CaseVal;
1193 break;
1194 }
1195 }
1196
Sanjay Patel41f3d952015-08-11 21:11:56 +00001197 // If we didn't find a single unique LoopExit block, or if the loop exit
1198 // block contains phi nodes, this isn't trivial.
Chen Lic0f3a152015-07-22 05:26:29 +00001199 if (!LoopExitBB || isa<PHINode>(LoopExitBB->begin()))
1200 return false; // Can't handle this.
1201
Sanjay Patel41f3d952015-08-11 21:11:56 +00001202 UnswitchTrivialCondition(currentLoop, LoopCond, CondVal, LoopExitBB,
1203 nullptr);
Xin Tong16b85a62017-02-27 18:00:13 +00001204
1205 // We are only unswitching full LIV.
1206 BranchesInfo.setUnswitched(SI, CondVal);
Chen Lic0f3a152015-07-22 05:26:29 +00001207 ++NumSwitches;
1208 return true;
1209 }
1210 return false;
1211}
1212
Sanjay Patel956e29c2015-08-11 21:24:04 +00001213/// Split all of the edges from inside the loop to their exit blocks.
1214/// Update the appropriate Phi nodes as we do so.
Andrew Trick4104ed92012-04-10 05:14:37 +00001215void LoopUnswitch::SplitExitEdges(Loop *L,
Craig Topperb94011f2013-07-14 04:42:23 +00001216 const SmallVectorImpl<BasicBlock *> &ExitBlocks){
Devang Patela69f9872007-10-05 22:29:34 +00001217
Chris Lattnered7a67b2006-02-10 01:24:09 +00001218 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
Chris Lattnerfe4151e2006-02-10 23:16:39 +00001219 BasicBlock *ExitBlock = ExitBlocks[i];
Dan Gohman3ddbc242009-09-08 15:45:00 +00001220 SmallVector<BasicBlock *, 4> Preds(pred_begin(ExitBlock),
1221 pred_end(ExitBlock));
Bill Wendling90f90da2011-09-27 00:59:31 +00001222
Nick Lewycky61158242011-06-03 06:27:15 +00001223 // Although SplitBlockPredecessors doesn't preserve loop-simplify in
1224 // general, if we call it on all predecessors of all exits then it does.
Alina Sbirleaa4961432018-09-11 19:19:21 +00001225 SplitBlockPredecessors(ExitBlock, Preds, ".us-lcssa", DT, LI, MSSAU.get(),
Philip Reames9198b332015-01-28 23:06:47 +00001226 /*PreserveLCSSA*/ true);
Chris Lattnered7a67b2006-02-10 01:24:09 +00001227 }
Devang Patele192e3252007-10-03 21:16:08 +00001228}
1229
Sanjay Patel956e29c2015-08-11 21:24:04 +00001230/// We determined that the loop is profitable to unswitch when LIC equal Val.
1231/// Split it into loop versions and test the condition outside of either loop.
1232/// Return the loops created as Out1/Out2.
Andrew Trick4442bfe2012-04-10 05:14:42 +00001233void LoopUnswitch::UnswitchNontrivialCondition(Value *LIC, Constant *Val,
Chandler Carruthedb12a82018-10-15 10:04:59 +00001234 Loop *L, Instruction *TI) {
Devang Patele149d4e2008-07-02 01:18:13 +00001235 Function *F = loopHeader->getParent();
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001236 LLVM_DEBUG(dbgs() << "loop-unswitch: Unswitching loop %"
1237 << loopHeader->getName() << " [" << L->getBlocks().size()
1238 << " blocks] in Function " << F->getName() << " when '"
1239 << *Val << "' == " << *LIC << "\n");
Devang Patele192e3252007-10-03 21:16:08 +00001240
Max Kazantsevd99f3ba2018-05-23 10:09:53 +00001241 // We are going to make essential changes to CFG. This may invalidate cached
1242 // information for L or one of its parent loops in SCEV.
Chandler Carruth2f1fd162015-08-17 02:08:17 +00001243 if (auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>())
Max Kazantsevd99f3ba2018-05-23 10:09:53 +00001244 SEWP->getSE().forgetTopmostLoop(L);
Cameron Zwarich99de19b2011-02-11 06:08:28 +00001245
Devang Pateled50fb52008-07-02 01:44:29 +00001246 LoopBlocks.clear();
1247 NewBlocks.clear();
Devang Patele192e3252007-10-03 21:16:08 +00001248
Alina Sbirlea69434722019-09-12 17:12:51 +00001249 if (MSSAU && VerifyMemorySSA)
1250 MSSA->verifyMemorySSA();
1251
Devang Patele192e3252007-10-03 21:16:08 +00001252 // First step, split the preheader and exit blocks, and add these blocks to
1253 // the LoopBlocks list.
Alina Sbirleaa4961432018-09-11 19:19:21 +00001254 BasicBlock *NewPreheader =
1255 SplitEdge(loopPreheader, loopHeader, DT, LI, MSSAU.get());
Devang Patele192e3252007-10-03 21:16:08 +00001256 LoopBlocks.push_back(NewPreheader);
1257
1258 // We want the loop to come after the preheader, but before the exit blocks.
1259 LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end());
1260
1261 SmallVector<BasicBlock*, 8> ExitBlocks;
1262 L->getUniqueExitBlocks(ExitBlocks);
1263
1264 // Split all of the edges from inside the loop to their exit blocks. Update
1265 // the appropriate Phi nodes as we do so.
Devang Pateleb611dd2008-07-03 17:37:52 +00001266 SplitExitEdges(L, ExitBlocks);
Devang Patele192e3252007-10-03 21:16:08 +00001267
Chris Lattnerfe4151e2006-02-10 23:16:39 +00001268 // The exit blocks may have been changed due to edge splitting, recompute.
1269 ExitBlocks.clear();
Devang Patelf489d0f2006-08-29 22:29:16 +00001270 L->getUniqueExitBlocks(ExitBlocks);
1271
Chris Lattnerfe4151e2006-02-10 23:16:39 +00001272 // Add exit blocks to the loop blocks.
1273 LoopBlocks.insert(LoopBlocks.end(), ExitBlocks.begin(), ExitBlocks.end());
Chris Lattnerf48f7772004-04-19 18:07:02 +00001274
1275 // Next step, clone all of the basic blocks that make up the loop (including
1276 // the loop preheader and exit blocks), keeping track of the mapping between
1277 // the instructions and blocks.
Chris Lattnerf48f7772004-04-19 18:07:02 +00001278 NewBlocks.reserve(LoopBlocks.size());
Rafael Espindola229e38f2010-10-13 01:36:30 +00001279 ValueToValueMapTy VMap;
Chris Lattnerf48f7772004-04-19 18:07:02 +00001280 for (unsigned i = 0, e = LoopBlocks.size(); i != e; ++i) {
Devang Patel0dc3c2d2010-06-24 00:33:28 +00001281 BasicBlock *NewBB = CloneBasicBlock(LoopBlocks[i], VMap, ".us", F);
Andrew Trick4104ed92012-04-10 05:14:37 +00001282
Evan Chengba930442010-04-05 21:16:25 +00001283 NewBlocks.push_back(NewBB);
Devang Patel0dc3c2d2010-06-24 00:33:28 +00001284 VMap[LoopBlocks[i]] = NewBB; // Keep the BB mapping.
Evan Chengba930442010-04-05 21:16:25 +00001285 LPM->cloneBasicBlockSimpleAnalysis(LoopBlocks[i], NewBB, L);
Chris Lattnerf48f7772004-04-19 18:07:02 +00001286 }
1287
1288 // Splice the newly inserted blocks into the function right before the
1289 // original preheader.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00001290 F->getBasicBlockList().splice(NewPreheader->getIterator(),
1291 F->getBasicBlockList(),
1292 NewBlocks[0]->getIterator(), F->end());
Chris Lattnerf48f7772004-04-19 18:07:02 +00001293
1294 // Now we create the new Loop object for the versioned loop.
Devang Patel0dc3c2d2010-06-24 00:33:28 +00001295 Loop *NewLoop = CloneLoop(L, L->getParentLoop(), VMap, LI, LPM);
Stepan Dyatkovskiycb2adbac2012-01-15 09:44:07 +00001296
1297 // Recalculate unswitching quota, inherit simplified switches info for NewBB,
1298 // Probably clone more loop-unswitch related loop properties.
1299 BranchesInfo.cloneData(NewLoop, L, VMap);
1300
Chris Lattnerf1b15162006-02-10 23:26:14 +00001301 Loop *ParentLoop = L->getParentLoop();
1302 if (ParentLoop) {
Chris Lattnerf48f7772004-04-19 18:07:02 +00001303 // Make sure to add the cloned preheader and exit blocks to the parent loop
1304 // as well.
Chandler Carruth691addc2015-01-18 01:25:51 +00001305 ParentLoop->addBasicBlockToLoop(NewBlocks[0], *LI);
Chris Lattnerf1b15162006-02-10 23:26:14 +00001306 }
Bill Wendling90f90da2011-09-27 00:59:31 +00001307
Chris Lattnerf1b15162006-02-10 23:26:14 +00001308 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) {
Devang Patel0dc3c2d2010-06-24 00:33:28 +00001309 BasicBlock *NewExit = cast<BasicBlock>(VMap[ExitBlocks[i]]);
Chris Lattner8e44ff52006-02-18 00:55:32 +00001310 // The new exit block should be in the same loop as the old one.
1311 if (Loop *ExitBBLoop = LI->getLoopFor(ExitBlocks[i]))
Chandler Carruth691addc2015-01-18 01:25:51 +00001312 ExitBBLoop->addBasicBlockToLoop(NewExit, *LI);
Andrew Trick4104ed92012-04-10 05:14:37 +00001313
Chris Lattnerf1b15162006-02-10 23:26:14 +00001314 assert(NewExit->getTerminator()->getNumSuccessors() == 1 &&
1315 "Exit block should have been split to have one successor!");
1316 BasicBlock *ExitSucc = NewExit->getTerminator()->getSuccessor(0);
Devang Pateleb611dd2008-07-03 17:37:52 +00001317
Chris Lattnerf1b15162006-02-10 23:26:14 +00001318 // If the successor of the exit block had PHI nodes, add an entry for
1319 // NewExit.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00001320 for (PHINode &PN : ExitSucc->phis()) {
1321 Value *V = PN.getIncomingValueForBlock(ExitBlocks[i]);
Rafael Espindola229e38f2010-10-13 01:36:30 +00001322 ValueToValueMapTy::iterator It = VMap.find(V);
Devang Patel0dc3c2d2010-06-24 00:33:28 +00001323 if (It != VMap.end()) V = It->second;
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00001324 PN.addIncoming(V, NewExit);
Chris Lattnerf1b15162006-02-10 23:26:14 +00001325 }
Bill Wendling90f90da2011-09-27 00:59:31 +00001326
1327 if (LandingPadInst *LPad = NewExit->getLandingPadInst()) {
Jakub Staszak27da1232013-08-06 17:03:42 +00001328 PHINode *PN = PHINode::Create(LPad->getType(), 0, "",
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00001329 &*ExitSucc->getFirstInsertionPt());
Bill Wendling90f90da2011-09-27 00:59:31 +00001330
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +00001331 for (pred_iterator I = pred_begin(ExitSucc), E = pred_end(ExitSucc);
1332 I != E; ++I) {
1333 BasicBlock *BB = *I;
Bill Wendling90f90da2011-09-27 00:59:31 +00001334 LandingPadInst *LPI = BB->getLandingPadInst();
1335 LPI->replaceAllUsesWith(PN);
1336 PN->addIncoming(LPI, BB);
1337 }
1338 }
Chris Lattnerf48f7772004-04-19 18:07:02 +00001339 }
1340
1341 // Rewrite the code to refer to itself.
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001342 for (unsigned i = 0, e = NewBlocks.size(); i != e; ++i) {
1343 for (Instruction &I : *NewBlocks[i]) {
Benjamin Kramer135f7352016-06-26 12:28:59 +00001344 RemapInstruction(&I, VMap,
Duncan P. N. Exon Smithda68cbc2016-04-07 00:26:43 +00001345 RF_NoModuleLevelChanges | RF_IgnoreMissingLocals);
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001346 if (auto *II = dyn_cast<IntrinsicInst>(&I))
1347 if (II->getIntrinsicID() == Intrinsic::assume)
1348 AC->registerAssumption(II);
1349 }
1350 }
Andrew Trick4104ed92012-04-10 05:14:37 +00001351
Chris Lattnerf48f7772004-04-19 18:07:02 +00001352 // Rewrite the original preheader to select between versions of the loop.
Devang Patele149d4e2008-07-02 01:18:13 +00001353 BranchInst *OldBR = cast<BranchInst>(loopPreheader->getTerminator());
Chris Lattnerb0cbe712006-02-15 00:07:43 +00001354 assert(OldBR->isUnconditional() && OldBR->getSuccessor(0) == LoopBlocks[0] &&
Chris Lattnerf48f7772004-04-19 18:07:02 +00001355 "Preheader splitting did not work correctly!");
Chris Lattnerf48f7772004-04-19 18:07:02 +00001356
Alina Sbirleaa4961432018-09-11 19:19:21 +00001357 if (MSSAU) {
1358 // Update MemorySSA after cloning, and before splitting to unreachables,
1359 // since that invalidates the 1:1 mapping of clones in VMap.
1360 LoopBlocksRPO LBRPO(L);
1361 LBRPO.perform(LI);
1362 MSSAU->updateForClonedLoop(LBRPO, ExitBlocks, VMap);
1363 }
1364
Chris Lattnerb0cbe712006-02-15 00:07:43 +00001365 // Emit the new branch that selects between the two versions of this loop.
Weiming Zhaof1abad52015-06-23 05:31:09 +00001366 EmitPreheaderBranchOnCondition(LIC, Val, NewBlocks[0], LoopBlocks[0], OldBR,
1367 TI);
Devang Pateld4911982007-07-31 08:03:26 +00001368 LPM->deleteSimpleAnalysisValue(OldBR, L);
Alina Sbirleaa4961432018-09-11 19:19:21 +00001369 if (MSSAU) {
1370 // Update MemoryPhis in Exit blocks.
1371 MSSAU->updateExitBlocksForClonedLoop(ExitBlocks, VMap, *DT);
1372 if (VerifyMemorySSA)
1373 MSSA->verifyMemorySSA();
1374 }
Jakub Kuderskie35a4492017-08-17 16:45:35 +00001375
1376 // The OldBr was replaced by a new one and removed (but not erased) by
1377 // EmitPreheaderBranchOnCondition. It is no longer needed, so delete it.
1378 delete OldBR;
Devang Patela8823282007-08-02 15:25:57 +00001379
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +00001380 LoopProcessWorklist.push_back(NewLoop);
Devang Patel7d165e12007-07-30 23:07:10 +00001381 redoLoop = true;
Chris Lattnerf48f7772004-04-19 18:07:02 +00001382
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00001383 // Keep a WeakTrackingVH holding onto LIC. If the first call to
1384 // RewriteLoopBody
Sanjoy Das2cbeb002017-04-26 16:37:05 +00001385 // deletes the instruction (for example by simplifying a PHI that feeds into
1386 // the condition that we're unswitching on), we don't rewrite the second
1387 // iteration.
Sanjoy Dase6bca0e2017-05-01 17:07:49 +00001388 WeakTrackingVH LICHandle(LIC);
Andrew Trick4104ed92012-04-10 05:14:37 +00001389
Chris Lattnerf48f7772004-04-19 18:07:02 +00001390 // Now we rewrite the original code to know that the condition is true and the
1391 // new code to know that the condition is false.
Evan Chengba930442010-04-05 21:16:25 +00001392 RewriteLoopBodyWithConditionConstant(L, LIC, Val, false);
Devang Pateleb611dd2008-07-03 17:37:52 +00001393
Chris Lattner5814d9d92010-04-20 05:09:16 +00001394 // It's possible that simplifying one loop could cause the other to be
1395 // changed to another value or a constant. If its a constant, don't simplify
1396 // it.
1397 if (!LoopProcessWorklist.empty() && LoopProcessWorklist.back() == NewLoop &&
1398 LICHandle && !isa<Constant>(LICHandle))
1399 RewriteLoopBodyWithConditionConstant(NewLoop, LICHandle, Val, true);
Alina Sbirleaa4961432018-09-11 19:19:21 +00001400
1401 if (MSSA && VerifyMemorySSA)
1402 MSSA->verifyMemorySSA();
Chris Lattnerf48f7772004-04-19 18:07:02 +00001403}
1404
Sanjay Patel956e29c2015-08-11 21:24:04 +00001405/// Remove all instances of I from the worklist vector specified.
Andrew Trick4104ed92012-04-10 05:14:37 +00001406static void RemoveFromWorklist(Instruction *I,
Chris Lattner6fd13622006-02-17 00:31:07 +00001407 std::vector<Instruction*> &Worklist) {
Jakub Staszak8f46e912012-10-16 19:52:32 +00001408
1409 Worklist.erase(std::remove(Worklist.begin(), Worklist.end(), I),
1410 Worklist.end());
Chris Lattner6fd13622006-02-17 00:31:07 +00001411}
1412
Sanjay Patel956e29c2015-08-11 21:24:04 +00001413/// When we find that I really equals V, remove I from the
Chris Lattner6fd13622006-02-17 00:31:07 +00001414/// program, replacing all uses with V and update the worklist.
Andrew Trick4104ed92012-04-10 05:14:37 +00001415static void ReplaceUsesOfWith(Instruction *I, Value *V,
Alina Sbirlea90264042019-02-26 19:44:52 +00001416 std::vector<Instruction *> &Worklist, Loop *L,
1417 LPPassManager *LPM, MemorySSAUpdater *MSSAU) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001418 LLVM_DEBUG(dbgs() << "Replace with '" << *V << "': " << *I << "\n");
Chris Lattner6fd13622006-02-17 00:31:07 +00001419
1420 // Add uses to the worklist, which may be dead now.
1421 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1422 if (Instruction *Use = dyn_cast<Instruction>(I->getOperand(i)))
1423 Worklist.push_back(Use);
1424
1425 // Add users to the worklist which may be simplified now.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001426 for (User *U : I->users())
1427 Worklist.push_back(cast<Instruction>(U));
Devang Pateld4911982007-07-31 08:03:26 +00001428 LPM->deleteSimpleAnalysisValue(I, L);
Chris Lattner6fd13622006-02-17 00:31:07 +00001429 RemoveFromWorklist(I, Worklist);
Devang Patel83cc3f82007-09-20 23:45:50 +00001430 I->replaceAllUsesWith(V);
Alina Sbirlea90264042019-02-26 19:44:52 +00001431 if (!I->mayHaveSideEffects()) {
1432 if (MSSAU)
1433 MSSAU->removeMemoryAccess(I);
Davide Italiano534e3142017-04-29 00:12:18 +00001434 I->eraseFromParent();
Alina Sbirlea90264042019-02-26 19:44:52 +00001435 }
Chris Lattner6fd13622006-02-17 00:31:07 +00001436 ++NumSimplify;
1437}
1438
Sanjay Patel956e29c2015-08-11 21:24:04 +00001439/// We know either that the value LIC has the value specified by Val in the
1440/// specified loop, or we know it does NOT have that value.
1441/// Rewrite any uses of LIC or of properties correlated to it.
Chris Lattnerf48f7772004-04-19 18:07:02 +00001442void LoopUnswitch::RewriteLoopBodyWithConditionConstant(Loop *L, Value *LIC,
Chris Lattnerfbadd7e2006-02-11 00:43:37 +00001443 Constant *Val,
1444 bool IsEqual) {
Chris Lattnered7a67b2006-02-10 01:24:09 +00001445 assert(!isa<Constant>(LIC) && "Why are we unswitching on a constant?");
Andrew Trick4104ed92012-04-10 05:14:37 +00001446
Chris Lattnerf48f7772004-04-19 18:07:02 +00001447 // FIXME: Support correlated properties, like:
1448 // for (...)
1449 // if (li1 < li2)
1450 // ...
1451 // if (li1 > li2)
1452 // ...
Andrew Trick4104ed92012-04-10 05:14:37 +00001453
Chris Lattner6e263152006-02-10 02:30:37 +00001454 // FOLD boolean conditions (X|LIC), (X&LIC). Fold conditional branches,
1455 // selects, switches.
Chris Lattner6fd13622006-02-17 00:31:07 +00001456 std::vector<Instruction*> Worklist;
Owen Anderson47db9412009-07-22 00:24:57 +00001457 LLVMContext &Context = Val->getContext();
1458
Chris Lattner6fd13622006-02-17 00:31:07 +00001459 // If we know that LIC == Val, or that LIC == NotVal, just replace uses of LIC
1460 // in the loop with the appropriate one directly.
Owen Anderson55f1c092009-08-13 21:58:54 +00001461 if (IsEqual || (isa<ConstantInt>(Val) &&
Duncan Sands9dff9be2010-02-15 16:12:20 +00001462 Val->getType()->isIntegerTy(1))) {
Chris Lattner8a5a3242006-02-22 06:37:14 +00001463 Value *Replacement;
1464 if (IsEqual)
1465 Replacement = Val;
1466 else
Andrew Trick4104ed92012-04-10 05:14:37 +00001467 Replacement = ConstantInt::get(Type::getInt1Ty(Val->getContext()),
Reid Spencercddc9df2007-01-12 04:24:46 +00001468 !cast<ConstantInt>(Val)->getZExtValue());
Andrew Trick4104ed92012-04-10 05:14:37 +00001469
Chandler Carruthcdf47882014-03-09 03:16:01 +00001470 for (User *U : LIC->users()) {
1471 Instruction *UI = dyn_cast<Instruction>(U);
1472 if (!UI || !L->contains(UI))
Evan Cheng1b55f562011-05-24 23:12:57 +00001473 continue;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001474 Worklist.push_back(UI);
Evan Cheng1b55f562011-05-24 23:12:57 +00001475 }
Andrew Trick4104ed92012-04-10 05:14:37 +00001476
Benjamin Kramer135f7352016-06-26 12:28:59 +00001477 for (Instruction *UI : Worklist)
1478 UI->replaceUsesOfWith(LIC, Replacement);
Andrew Trick4104ed92012-04-10 05:14:37 +00001479
Chris Lattnerc832c1b2010-04-05 21:18:32 +00001480 SimplifyCode(Worklist, L);
1481 return;
1482 }
Andrew Trick4104ed92012-04-10 05:14:37 +00001483
Chris Lattnerc832c1b2010-04-05 21:18:32 +00001484 // Otherwise, we don't know the precise value of LIC, but we do know that it
1485 // is certainly NOT "Val". As such, simplify any uses in the loop that we
1486 // can. This case occurs when we unswitch switch statements.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001487 for (User *U : LIC->users()) {
1488 Instruction *UI = dyn_cast<Instruction>(U);
1489 if (!UI || !L->contains(UI))
Chris Lattnerc832c1b2010-04-05 21:18:32 +00001490 continue;
Chris Lattner6fd13622006-02-17 00:31:07 +00001491
Xin Tongec6f90b2017-02-23 23:42:19 +00001492 // At this point, we know LIC is definitely not Val. Try to use some simple
1493 // logic to simplify the user w.r.t. to the context.
1494 if (Value *Replacement = SimplifyInstructionWithNotEqual(UI, LIC, Val)) {
1495 if (LI->replacementPreservesLCSSAForm(UI, Replacement)) {
1496 // This in-loop instruction has been simplified w.r.t. its context,
1497 // i.e. LIC != Val, make sure we propagate its replacement value to
1498 // all its users.
Fangrui Songf78650a2018-07-30 19:41:25 +00001499 //
Xin Tongf51d8042017-02-24 01:43:36 +00001500 // We can not yet delete UI, the LIC user, yet, because that would invalidate
1501 // the LIC->users() iterator !. However, we can make this instruction
1502 // dead by replacing all its users and push it onto the worklist so that
Fangrui Songf78650a2018-07-30 19:41:25 +00001503 // it can be properly deleted and its operands simplified.
Xin Tongf51d8042017-02-24 01:43:36 +00001504 UI->replaceAllUsesWith(Replacement);
Xin Tongec6f90b2017-02-23 23:42:19 +00001505 }
1506 }
Chris Lattner6fd13622006-02-17 00:31:07 +00001507
Xin Tong01feb292017-02-28 03:32:41 +00001508 // This is a LIC user, push it into the worklist so that SimplifyCode can
1509 // attempt to simplify it.
Xin Tongec6f90b2017-02-23 23:42:19 +00001510 Worklist.push_back(UI);
Chris Lattnerc832c1b2010-04-05 21:18:32 +00001511
1512 // If we know that LIC is not Val, use this info to simplify code.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001513 SwitchInst *SI = dyn_cast<SwitchInst>(UI);
Craig Topperf40110f2014-04-25 05:29:35 +00001514 if (!SI || !isa<ConstantInt>(Val)) continue;
Andrew Trick4104ed92012-04-10 05:14:37 +00001515
Xin Tong16b85a62017-02-27 18:00:13 +00001516 // NOTE: if a case value for the switch is unswitched out, we record it
1517 // after the unswitch finishes. We can not record it here as the switch
1518 // is not a direct user of the partial LIV.
Chandler Carruth927d8e62017-04-12 07:27:28 +00001519 SwitchInst::CaseHandle DeadCase =
1520 *SI->findCaseValue(cast<ConstantInt>(Val));
Stepan Dyatkovskiy513aaa52012-02-01 07:49:51 +00001521 // Default case is live for multiple values.
Chandler Carruth927d8e62017-04-12 07:27:28 +00001522 if (DeadCase == *SI->case_default())
1523 continue;
Andrew Trick4104ed92012-04-10 05:14:37 +00001524
1525 // Found a dead case value. Don't remove PHI nodes in the
Chris Lattnerc832c1b2010-04-05 21:18:32 +00001526 // successor if they become single-entry, those PHI nodes may
1527 // be in the Users list.
Nick Lewycky61158242011-06-03 06:27:15 +00001528
Evan Cheng1b55f562011-05-24 23:12:57 +00001529 BasicBlock *Switch = SI->getParent();
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00001530 BasicBlock *SISucc = DeadCase.getCaseSuccessor();
Evan Cheng1b55f562011-05-24 23:12:57 +00001531 BasicBlock *Latch = L->getLoopLatch();
Andrew Trick4104ed92012-04-10 05:14:37 +00001532
Nick Lewycky61158242011-06-03 06:27:15 +00001533 if (!SI->findCaseDest(SISucc)) continue; // Edge is critical.
Evan Cheng9605a692011-05-25 18:17:13 +00001534 // If the DeadCase successor dominates the loop latch, then the
1535 // transformation isn't safe since it will delete the sole predecessor edge
1536 // to the latch.
1537 if (Latch && DT->dominates(SISucc, Latch))
1538 continue;
Evan Cheng1b55f562011-05-24 23:12:57 +00001539
Chris Lattnerc832c1b2010-04-05 21:18:32 +00001540 // FIXME: This is a hack. We need to keep the successor around
1541 // and hooked up so as to preserve the loop structure, because
1542 // trying to update it is complicated. So instead we preserve the
1543 // loop structure and put the block on a dead code path.
Alina Sbirleaa4961432018-09-11 19:19:21 +00001544 SplitEdge(Switch, SISucc, DT, LI, MSSAU.get());
Chris Lattnerc832c1b2010-04-05 21:18:32 +00001545 // Compute the successors instead of relying on the return value
1546 // of SplitEdge, since it may have split the switch successor
1547 // after PHI nodes.
Stepan Dyatkovskiy5b648af2012-03-08 07:06:20 +00001548 BasicBlock *NewSISucc = DeadCase.getCaseSuccessor();
Chris Lattnerc832c1b2010-04-05 21:18:32 +00001549 BasicBlock *OldSISucc = *succ_begin(NewSISucc);
1550 // Create an "unreachable" destination.
1551 BasicBlock *Abort = BasicBlock::Create(Context, "us-unreachable",
1552 Switch->getParent(),
1553 OldSISucc);
1554 new UnreachableInst(Context, Abort);
1555 // Force the new case destination to branch to the "unreachable"
1556 // block while maintaining a (dead) CFG edge to the old block.
1557 NewSISucc->getTerminator()->eraseFromParent();
1558 BranchInst::Create(Abort, OldSISucc,
1559 ConstantInt::getTrue(Context), NewSISucc);
1560 // Release the PHI operands for this edge.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +00001561 for (PHINode &PN : NewSISucc->phis())
Whitney Tsang15b7f5b2019-06-17 14:38:56 +00001562 PN.setIncomingValueForBlock(Switch, UndefValue::get(PN.getType()));
Chris Lattnerc832c1b2010-04-05 21:18:32 +00001563 // Tell the domtree about the new block. We don't fully update the
1564 // domtree here -- instead we force it to do a full recomputation
1565 // after the pass is complete -- but we do need to inform it of
1566 // new blocks.
Michael Zolotukhin9f3aea62015-09-22 00:22:47 +00001567 DT->addNewBlock(Abort, NewSISucc);
Chris Lattner6fd13622006-02-17 00:31:07 +00001568 }
Andrew Trick4104ed92012-04-10 05:14:37 +00001569
Devang Pateld4911982007-07-31 08:03:26 +00001570 SimplifyCode(Worklist, L);
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +00001571}
1572
Sanjay Patel956e29c2015-08-11 21:24:04 +00001573/// Now that we have simplified some instructions in the loop, walk over it and
1574/// constant prop, dce, and fold control flow where possible. Note that this is
1575/// effectively a very simple loop-structure-aware optimizer. During processing
1576/// of this loop, L could very well be deleted, so it must not be used.
Chris Lattnerc2e3a7a2006-02-18 07:57:38 +00001577///
1578/// FIXME: When the loop optimizer is more mature, separate this out to a new
1579/// pass.
1580///
Devang Pateld4911982007-07-31 08:03:26 +00001581void LoopUnswitch::SimplifyCode(std::vector<Instruction*> &Worklist, Loop *L) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001582 const DataLayout &DL = L->getHeader()->getModule()->getDataLayout();
Chris Lattner6fd13622006-02-17 00:31:07 +00001583 while (!Worklist.empty()) {
1584 Instruction *I = Worklist.back();
1585 Worklist.pop_back();
Duncan Sandsbb2cd022010-11-23 20:24:21 +00001586
Chris Lattner6fd13622006-02-17 00:31:07 +00001587 // Simple DCE.
1588 if (isInstructionTriviallyDead(I)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001589 LLVM_DEBUG(dbgs() << "Remove dead instruction '" << *I << "\n");
Andrew Trick4104ed92012-04-10 05:14:37 +00001590
Chris Lattner6fd13622006-02-17 00:31:07 +00001591 // Add uses to the worklist, which may be dead now.
1592 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i)
1593 if (Instruction *Use = dyn_cast<Instruction>(I->getOperand(i)))
1594 Worklist.push_back(Use);
Devang Pateld4911982007-07-31 08:03:26 +00001595 LPM->deleteSimpleAnalysisValue(I, L);
Chris Lattner6fd13622006-02-17 00:31:07 +00001596 RemoveFromWorklist(I, Worklist);
Alina Sbirleaa4961432018-09-11 19:19:21 +00001597 if (MSSAU)
1598 MSSAU->removeMemoryAccess(I);
Devang Patel83cc3f82007-09-20 23:45:50 +00001599 I->eraseFromParent();
Chris Lattner6fd13622006-02-17 00:31:07 +00001600 ++NumSimplify;
1601 continue;
1602 }
Duncan Sandsaef146b2010-11-18 19:59:41 +00001603
Chris Lattner66e809a2010-04-20 05:33:18 +00001604 // See if instruction simplification can hack this up. This is common for
1605 // things like "select false, X, Y" after unswitching made the condition be
Peter Collingbourne9a03c732012-05-20 01:32:09 +00001606 // 'false'. TODO: update the domtree properly so we can pass it here.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001607 if (Value *V = SimplifyInstruction(I, DL))
Duncan Sandsaef146b2010-11-18 19:59:41 +00001608 if (LI->replacementPreservesLCSSAForm(I, V)) {
Alina Sbirlea90264042019-02-26 19:44:52 +00001609 ReplaceUsesOfWith(I, V, Worklist, L, LPM, MSSAU.get());
Duncan Sandsaef146b2010-11-18 19:59:41 +00001610 continue;
1611 }
1612
Chris Lattner6fd13622006-02-17 00:31:07 +00001613 // Special case hacks that appear commonly in unswitched code.
Chris Lattner66e809a2010-04-20 05:33:18 +00001614 if (BranchInst *BI = dyn_cast<BranchInst>(I)) {
Chris Lattner6fd13622006-02-17 00:31:07 +00001615 if (BI->isUnconditional()) {
1616 // If BI's parent is the only pred of the successor, fold the two blocks
1617 // together.
1618 BasicBlock *Pred = BI->getParent();
Jordan Rupprechta44bc402019-10-16 23:09:56 +00001619 (void)Pred;
Chris Lattner6fd13622006-02-17 00:31:07 +00001620 BasicBlock *Succ = BI->getSuccessor(0);
1621 BasicBlock *SinglePred = Succ->getSinglePredecessor();
1622 if (!SinglePred) continue; // Nothing to do.
1623 assert(SinglePred == Pred && "CFG broken");
1624
Alina Sbirlea4eb1a572019-10-16 22:23:20 +00001625 // Make the LPM and Worklist updates specific to LoopUnswitch.
Devang Pateld4911982007-07-31 08:03:26 +00001626 LPM->deleteSimpleAnalysisValue(BI, L);
Chris Lattner6fd13622006-02-17 00:31:07 +00001627 RemoveFromWorklist(BI, Worklist);
Devang Pateld4911982007-07-31 08:03:26 +00001628 LPM->deleteSimpleAnalysisValue(Succ, L);
Alina Sbirlea4eb1a572019-10-16 22:23:20 +00001629 auto SuccIt = Succ->begin();
1630 while (PHINode *PN = dyn_cast<PHINode>(SuccIt++)) {
1631 for (unsigned It = 0, E = PN->getNumOperands(); It != E; ++It)
1632 if (Instruction *Use = dyn_cast<Instruction>(PN->getOperand(It)))
1633 Worklist.push_back(Use);
1634 for (User *U : PN->users())
1635 Worklist.push_back(cast<Instruction>(U));
1636 LPM->deleteSimpleAnalysisValue(PN, L);
1637 RemoveFromWorklist(PN, Worklist);
1638 ++NumSimplify;
1639 }
1640 // Merge the block and make the remaining analyses updates.
1641 DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Eager);
1642 MergeBlockIntoPredecessor(Succ, &DTU, LI, MSSAU.get());
Chris Lattner29f771b2006-02-18 01:27:45 +00001643 ++NumSimplify;
Chris Lattner66e809a2010-04-20 05:33:18 +00001644 continue;
Chris Lattnerc832c1b2010-04-05 21:18:32 +00001645 }
Andrew Trick4104ed92012-04-10 05:14:37 +00001646
Chris Lattner66e809a2010-04-20 05:33:18 +00001647 continue;
Chris Lattner6fd13622006-02-17 00:31:07 +00001648 }
1649 }
Chris Lattnerf48f7772004-04-19 18:07:02 +00001650}
Xin Tongec6f90b2017-02-23 23:42:19 +00001651
1652/// Simple simplifications we can do given the information that Cond is
1653/// definitely not equal to Val.
1654Value *LoopUnswitch::SimplifyInstructionWithNotEqual(Instruction *Inst,
1655 Value *Invariant,
1656 Constant *Val) {
1657 // icmp eq cond, val -> false
1658 ICmpInst *CI = dyn_cast<ICmpInst>(Inst);
1659 if (CI && CI->isEquality()) {
1660 Value *Op0 = CI->getOperand(0);
1661 Value *Op1 = CI->getOperand(1);
1662 if ((Op0 == Invariant && Op1 == Val) || (Op0 == Val && Op1 == Invariant)) {
1663 LLVMContext &Ctx = Inst->getContext();
1664 if (CI->getPredicate() == CmpInst::ICMP_EQ)
1665 return ConstantInt::getFalse(Ctx);
Fangrui Songf78650a2018-07-30 19:41:25 +00001666 else
Xin Tongec6f90b2017-02-23 23:42:19 +00001667 return ConstantInt::getTrue(Ctx);
1668 }
1669 }
1670
1671 // FIXME: there may be other opportunities, e.g. comparison with floating
1672 // point, or Invariant - Val != 0, etc.
1673 return nullptr;
1674}