Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 1 | //===- LoopUnswitch.cpp - Hoist loop-invariant conditionals in loop -------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass transforms loops that contain branches on loop-invariant conditions |
Xin Tong | b7b0812 | 2017-04-23 17:36:25 +0000 | [diff] [blame] | 11 | // to multiple loops. For example, it turns the left into the right code: |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 12 | // |
| 13 | // for (...) if (lic) |
| 14 | // A for (...) |
| 15 | // if (lic) A; B; C |
| 16 | // B else |
| 17 | // C for (...) |
| 18 | // A; C |
| 19 | // |
| 20 | // This can increase the size of the code exponentially (doubling it every time |
| 21 | // a loop is unswitched) so we only unswitch if the resultant code will be |
| 22 | // smaller than a threshold. |
| 23 | // |
| 24 | // This pass expects LICM to be run before it to hoist invariant conditions out |
| 25 | // of the loop, to make the unswitching opportunity obvious. |
| 26 | // |
| 27 | //===----------------------------------------------------------------------===// |
| 28 | |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/DenseMap.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/SmallPtrSet.h" |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/SmallSet.h" |
| 32 | #include "llvm/ADT/SmallVector.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/Statistic.h" |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 34 | #include "llvm/Analysis/AssumptionCache.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 35 | #include "llvm/Analysis/CodeMetrics.h" |
Stanislav Mekhanoshin | ee2dd78 | 2017-03-17 17:13:41 +0000 | [diff] [blame] | 36 | #include "llvm/Analysis/DivergenceAnalysis.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 37 | #include "llvm/Analysis/InstructionSimplify.h" |
| 38 | #include "llvm/Analysis/LoopInfo.h" |
| 39 | #include "llvm/Analysis/LoopPass.h" |
| 40 | #include "llvm/Analysis/ScalarEvolution.h" |
Chandler Carruth | bb9caa9 | 2013-01-21 13:04:33 +0000 | [diff] [blame] | 41 | #include "llvm/Analysis/TargetTransformInfo.h" |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 42 | #include "llvm/IR/Attributes.h" |
| 43 | #include "llvm/IR/BasicBlock.h" |
| 44 | #include "llvm/IR/CallSite.h" |
| 45 | #include "llvm/IR/Constant.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 46 | #include "llvm/IR/Constants.h" |
| 47 | #include "llvm/IR/DerivedTypes.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 48 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 49 | #include "llvm/IR/Function.h" |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 50 | #include "llvm/IR/IRBuilder.h" |
Xin Tong | ec6f90b | 2017-02-23 23:42:19 +0000 | [diff] [blame] | 51 | #include "llvm/IR/InstrTypes.h" |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 52 | #include "llvm/IR/Instruction.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 53 | #include "llvm/IR/Instructions.h" |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 54 | #include "llvm/IR/IntrinsicInst.h" |
| 55 | #include "llvm/IR/Intrinsics.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 56 | #include "llvm/IR/Module.h" |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 57 | #include "llvm/IR/Type.h" |
| 58 | #include "llvm/IR/User.h" |
| 59 | #include "llvm/IR/Value.h" |
| 60 | #include "llvm/IR/ValueHandle.h" |
| 61 | #include "llvm/Pass.h" |
| 62 | #include "llvm/Support/Casting.h" |
Chris Lattner | 8976219 | 2006-02-09 20:15:48 +0000 | [diff] [blame] | 63 | #include "llvm/Support/CommandLine.h" |
Reid Spencer | 557ab15 | 2007-02-05 23:32:05 +0000 | [diff] [blame] | 64 | #include "llvm/Support/Debug.h" |
Daniel Dunbar | 0dd5e1e | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 65 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 66 | #include "llvm/Transforms/Scalar.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 67 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
| 68 | #include "llvm/Transforms/Utils/Cloning.h" |
| 69 | #include "llvm/Transforms/Utils/Local.h" |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 70 | #include "llvm/Transforms/Utils/LoopUtils.h" |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 71 | #include "llvm/Transforms/Utils/ValueMapper.h" |
Alkis Evlogimenos | a5c04ee | 2004-09-03 18:19:51 +0000 | [diff] [blame] | 72 | #include <algorithm> |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 73 | #include <cassert> |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 74 | #include <map> |
Chris Lattner | 2826e05 | 2006-02-09 19:14:52 +0000 | [diff] [blame] | 75 | #include <set> |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 76 | #include <tuple> |
| 77 | #include <utility> |
| 78 | #include <vector> |
| 79 | |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 80 | using namespace llvm; |
| 81 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 82 | #define DEBUG_TYPE "loop-unswitch" |
| 83 | |
Chris Lattner | 79a42ac | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 84 | STATISTIC(NumBranches, "Number of branches unswitched"); |
| 85 | STATISTIC(NumSwitches, "Number of switches unswitched"); |
Sanjoy Das | a37bb4a | 2016-06-26 05:10:45 +0000 | [diff] [blame] | 86 | STATISTIC(NumGuards, "Number of guards unswitched"); |
Chris Lattner | 79a42ac | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 87 | STATISTIC(NumSelects , "Number of selects unswitched"); |
| 88 | STATISTIC(NumTrivial , "Number of unswitches that are trivial"); |
| 89 | STATISTIC(NumSimplify, "Number of simplifications of unswitched code"); |
Stepan Dyatkovskiy | 8216569 | 2012-01-11 08:40:51 +0000 | [diff] [blame] | 90 | STATISTIC(TotalInsts, "Total number of instructions analyzed"); |
Chris Lattner | 79a42ac | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 91 | |
Stepan Dyatkovskiy | 2931a59 | 2012-01-16 20:48:04 +0000 | [diff] [blame] | 92 | // The specific value of 100 here was chosen based only on intuition and a |
Dan Gohman | 71ca652 | 2009-10-13 17:50:43 +0000 | [diff] [blame] | 93 | // few specific examples. |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 94 | static cl::opt<unsigned> |
| 95 | Threshold("loop-unswitch-threshold", cl::desc("Max loop size to unswitch"), |
Stepan Dyatkovskiy | 8216569 | 2012-01-11 08:40:51 +0000 | [diff] [blame] | 96 | cl::init(100), cl::Hidden); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 97 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 98 | namespace { |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 99 | |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 100 | class LUAnalysisCache { |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 101 | using UnswitchedValsMap = |
| 102 | DenseMap<const SwitchInst *, SmallPtrSet<const Value *, 8>>; |
| 103 | using UnswitchedValsIt = UnswitchedValsMap::iterator; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 104 | |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 105 | struct LoopProperties { |
| 106 | unsigned CanBeUnswitchedCount; |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 107 | unsigned WasUnswitchedCount; |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 108 | unsigned SizeEstimation; |
| 109 | UnswitchedValsMap UnswitchedVals; |
| 110 | }; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 111 | |
| 112 | // Here we use std::map instead of DenseMap, since we need to keep valid |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 113 | // LoopProperties pointer for current loop for better performance. |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 114 | using LoopPropsMap = std::map<const Loop *, LoopProperties>; |
| 115 | using LoopPropsMapIt = LoopPropsMap::iterator; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 116 | |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 117 | LoopPropsMap LoopsProperties; |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 118 | UnswitchedValsMap *CurLoopInstructions = nullptr; |
| 119 | LoopProperties *CurrentLoopProperties = nullptr; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 120 | |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 121 | // A loop unswitching with an estimated cost above this threshold |
| 122 | // is not performed. MaxSize is turned into unswitching quota for |
| 123 | // the current loop, and reduced correspondingly, though note that |
| 124 | // the quota is returned by releaseMemory() when the loop has been |
| 125 | // processed, so that MaxSize will return to its previous |
| 126 | // value. So in most cases MaxSize will equal the Threshold flag |
| 127 | // when a new loop is processed. An exception to that is that |
| 128 | // MaxSize will have a smaller value while processing nested loops |
| 129 | // that were introduced due to loop unswitching of an outer loop. |
| 130 | // |
| 131 | // FIXME: The way that MaxSize works is subtle and depends on the |
| 132 | // pass manager processing loops and calling releaseMemory() in a |
| 133 | // specific order. It would be good to find a more straightforward |
| 134 | // way of doing what MaxSize does. |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 135 | unsigned MaxSize; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 136 | |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 137 | public: |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 138 | LUAnalysisCache() : MaxSize(Threshold) {} |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 139 | |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 140 | // Analyze loop. Check its size, calculate is it possible to unswitch |
| 141 | // it. Returns true if we can unswitch this loop. |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 142 | bool countLoop(const Loop *L, const TargetTransformInfo &TTI, |
| 143 | AssumptionCache *AC); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 144 | |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 145 | // Clean all data related to given loop. |
| 146 | void forgetLoop(const Loop *L); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 147 | |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 148 | // Mark case value as unswitched. |
| 149 | // Since SI instruction can be partly unswitched, in order to avoid |
| 150 | // extra unswitching in cloned loops keep track all unswitched values. |
| 151 | void setUnswitched(const SwitchInst *SI, const Value *V); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 152 | |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 153 | // Check was this case value unswitched before or not. |
| 154 | bool isUnswitched(const SwitchInst *SI, const Value *V); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 155 | |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 156 | // Returns true if another unswitching could be done within the cost |
| 157 | // threshold. |
| 158 | bool CostAllowsUnswitching(); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 159 | |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 160 | // Clone all loop-unswitch related loop properties. |
| 161 | // Redistribute unswitching quotas. |
| 162 | // Note, that new loop data is stored inside the VMap. |
| 163 | void cloneData(const Loop *NewLoop, const Loop *OldLoop, |
| 164 | const ValueToValueMapTy &VMap); |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 165 | }; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 166 | |
Chris Lattner | 2dd09db | 2009-09-02 06:11:42 +0000 | [diff] [blame] | 167 | class LoopUnswitch : public LoopPass { |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 168 | LoopInfo *LI; // Loop information |
Devang Patel | 901a27d | 2007-03-07 00:26:10 +0000 | [diff] [blame] | 169 | LPPassManager *LPM; |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 170 | AssumptionCache *AC; |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 171 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 172 | // Used to check if second loop needs processing after |
| 173 | // RewriteLoopBodyWithConditionConstant rewrites first loop. |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 174 | std::vector<Loop*> LoopProcessWorklist; |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 175 | |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 176 | LUAnalysisCache BranchesInfo; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 177 | |
Devang Patel | 506310d | 2007-06-06 00:21:03 +0000 | [diff] [blame] | 178 | bool OptimizeForSize; |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 179 | bool redoLoop = false; |
Devang Patel | a69f987 | 2007-10-05 22:29:34 +0000 | [diff] [blame] | 180 | |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 181 | Loop *currentLoop = nullptr; |
| 182 | DominatorTree *DT = nullptr; |
| 183 | BasicBlock *loopHeader = nullptr; |
| 184 | BasicBlock *loopPreheader = nullptr; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 185 | |
Evgeniy Stepanov | eaea297 | 2016-06-10 20:03:20 +0000 | [diff] [blame] | 186 | bool SanitizeMemory; |
| 187 | LoopSafetyInfo SafetyInfo; |
| 188 | |
Devang Patel | ed50fb5 | 2008-07-02 01:44:29 +0000 | [diff] [blame] | 189 | // LoopBlocks contains all of the basic blocks of the loop, including the |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 190 | // preheader of the loop, the body of the loop, and the exit blocks of the |
Devang Patel | ed50fb5 | 2008-07-02 01:44:29 +0000 | [diff] [blame] | 191 | // loop, in that order. |
| 192 | std::vector<BasicBlock*> LoopBlocks; |
| 193 | // NewBlocks contained cloned copy of basic blocks from LoopBlocks. |
| 194 | std::vector<BasicBlock*> NewBlocks; |
Devang Patel | eb611dd | 2008-07-03 17:37:52 +0000 | [diff] [blame] | 195 | |
Stanislav Mekhanoshin | ee2dd78 | 2017-03-17 17:13:41 +0000 | [diff] [blame] | 196 | bool hasBranchDivergence; |
| 197 | |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 198 | public: |
Devang Patel | 8c78a0b | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 199 | static char ID; // Pass ID, replacement for typeid |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 200 | |
| 201 | explicit LoopUnswitch(bool Os = false, bool hasBranchDivergence = false) |
| 202 | : LoopPass(ID), OptimizeForSize(Os), |
| 203 | hasBranchDivergence(hasBranchDivergence) { |
Owen Anderson | 6c18d1a | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 204 | initializeLoopUnswitchPass(*PassRegistry::getPassRegistry()); |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 205 | } |
Devang Patel | 09f162c | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 206 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 207 | bool runOnLoop(Loop *L, LPPassManager &LPM) override; |
Devang Patel | e149d4e | 2008-07-02 01:18:13 +0000 | [diff] [blame] | 208 | bool processCurrentLoop(); |
Abhilash Bhandari | 54e5a1a | 2016-11-25 14:07:44 +0000 | [diff] [blame] | 209 | bool isUnreachableDueToPreviousUnswitching(BasicBlock *); |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 210 | |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 211 | /// This transformation requires natural loop information & requires that |
Chris Lattner | bc1a65a | 2010-08-29 17:23:19 +0000 | [diff] [blame] | 212 | /// loop preheaders be inserted into the CFG. |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 213 | /// |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 214 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 215 | AU.addRequired<AssumptionCacheTracker>(); |
Chandler Carruth | 705b185 | 2015-01-31 03:43:40 +0000 | [diff] [blame] | 216 | AU.addRequired<TargetTransformInfoWrapperPass>(); |
Stanislav Mekhanoshin | ee2dd78 | 2017-03-17 17:13:41 +0000 | [diff] [blame] | 217 | if (hasBranchDivergence) |
| 218 | AU.addRequired<DivergenceAnalysis>(); |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 219 | getLoopAnalysisUsage(AU); |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | private: |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 223 | void releaseMemory() override { |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 224 | BranchesInfo.forgetLoop(currentLoop); |
Dan Gohman | 3ddbc24 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 225 | } |
| 226 | |
Devang Patel | e149d4e | 2008-07-02 01:18:13 +0000 | [diff] [blame] | 227 | void initLoopData() { |
| 228 | loopHeader = currentLoop->getHeader(); |
| 229 | loopPreheader = currentLoop->getLoopPreheader(); |
| 230 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 231 | |
Chris Lattner | 559c867 | 2008-04-21 00:25:49 +0000 | [diff] [blame] | 232 | /// Split all of the edges from inside the loop to their exit blocks. |
| 233 | /// Update the appropriate Phi nodes as we do so. |
Sanjay Patel | 41f3d95 | 2015-08-11 21:11:56 +0000 | [diff] [blame] | 234 | void SplitExitEdges(Loop *L, |
| 235 | const SmallVectorImpl<BasicBlock *> &ExitBlocks); |
Devang Patel | a69f987 | 2007-10-05 22:29:34 +0000 | [diff] [blame] | 236 | |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 237 | bool TryTrivialLoopUnswitch(bool &Changed); |
| 238 | |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 239 | bool UnswitchIfProfitable(Value *LoopCond, Constant *Val, |
| 240 | TerminatorInst *TI = nullptr); |
Chris Lattner | 29f771b | 2006-02-18 01:27:45 +0000 | [diff] [blame] | 241 | void UnswitchTrivialCondition(Loop *L, Value *Cond, Constant *Val, |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 242 | BasicBlock *ExitBlock, TerminatorInst *TI); |
| 243 | void UnswitchNontrivialCondition(Value *LIC, Constant *OnVal, Loop *L, |
| 244 | TerminatorInst *TI); |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 245 | |
| 246 | void RewriteLoopBodyWithConditionConstant(Loop *L, Value *LIC, |
| 247 | Constant *Val, bool isEqual); |
Devang Patel | 3304e46 | 2007-06-28 00:49:00 +0000 | [diff] [blame] | 248 | |
| 249 | void EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val, |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 250 | BasicBlock *TrueDest, |
Devang Patel | 3304e46 | 2007-06-28 00:49:00 +0000 | [diff] [blame] | 251 | BasicBlock *FalseDest, |
Jakub Kuderski | e35a449 | 2017-08-17 16:45:35 +0000 | [diff] [blame] | 252 | BranchInst *OldBranch, |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 253 | TerminatorInst *TI); |
Devang Patel | 3304e46 | 2007-06-28 00:49:00 +0000 | [diff] [blame] | 254 | |
Devang Patel | d491198 | 2007-07-31 08:03:26 +0000 | [diff] [blame] | 255 | void SimplifyCode(std::vector<Instruction*> &Worklist, Loop *L); |
Xin Tong | ec6f90b | 2017-02-23 23:42:19 +0000 | [diff] [blame] | 256 | |
| 257 | /// Given that the Invariant is not equal to Val. Simplify instructions |
| 258 | /// in the loop. |
| 259 | Value *SimplifyInstructionWithNotEqual(Instruction *Inst, Value *Invariant, |
| 260 | Constant *Val); |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 261 | }; |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 262 | |
| 263 | } // end anonymous namespace |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 264 | |
| 265 | // Analyze loop. Check its size, calculate is it possible to unswitch |
| 266 | // it. Returns true if we can unswitch this loop. |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 267 | bool LUAnalysisCache::countLoop(const Loop *L, const TargetTransformInfo &TTI, |
| 268 | AssumptionCache *AC) { |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 269 | LoopPropsMapIt PropsIt; |
| 270 | bool Inserted; |
Benjamin Kramer | d6f1f84 | 2014-03-02 13:30:33 +0000 | [diff] [blame] | 271 | std::tie(PropsIt, Inserted) = |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 272 | LoopsProperties.insert(std::make_pair(L, LoopProperties())); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 273 | |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 274 | LoopProperties &Props = PropsIt->second; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 275 | |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 276 | if (Inserted) { |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 277 | // New loop. |
| 278 | |
| 279 | // Limit the number of instructions to avoid causing significant code |
| 280 | // expansion, and the number of basic blocks, to avoid loops with |
| 281 | // large numbers of branches which cause loop unswitching to go crazy. |
| 282 | // This is a very ad-hoc heuristic. |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 283 | |
Hal Finkel | 57f03dd | 2014-09-07 13:49:57 +0000 | [diff] [blame] | 284 | SmallPtrSet<const Value *, 32> EphValues; |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 285 | CodeMetrics::collectEphemeralValues(L, AC, EphValues); |
Hal Finkel | 57f03dd | 2014-09-07 13:49:57 +0000 | [diff] [blame] | 286 | |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 287 | // FIXME: This is overly conservative because it does not take into |
| 288 | // consideration code simplification opportunities and code that can |
| 289 | // be shared by the resultant unswitched loops. |
| 290 | CodeMetrics Metrics; |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 291 | for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); I != E; |
| 292 | ++I) |
Hal Finkel | 57f03dd | 2014-09-07 13:49:57 +0000 | [diff] [blame] | 293 | Metrics.analyzeBasicBlock(*I, TTI, EphValues); |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 294 | |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 295 | Props.SizeEstimation = Metrics.NumInsts; |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 296 | Props.CanBeUnswitchedCount = MaxSize / (Props.SizeEstimation); |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 297 | Props.WasUnswitchedCount = 0; |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 298 | MaxSize -= Props.SizeEstimation * Props.CanBeUnswitchedCount; |
James Molloy | 4f6fb95 | 2012-12-20 16:04:27 +0000 | [diff] [blame] | 299 | |
| 300 | if (Metrics.notDuplicatable) { |
| 301 | DEBUG(dbgs() << "NOT unswitching loop %" |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 302 | << L->getHeader()->getName() << ", contents cannot be " |
| 303 | << "duplicated!\n"); |
James Molloy | 4f6fb95 | 2012-12-20 16:04:27 +0000 | [diff] [blame] | 304 | return false; |
| 305 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 306 | } |
| 307 | |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 308 | // Be careful. This links are good only before new loop addition. |
| 309 | CurrentLoopProperties = &Props; |
| 310 | CurLoopInstructions = &Props.UnswitchedVals; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 311 | |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 312 | return true; |
| 313 | } |
| 314 | |
| 315 | // Clean all data related to given loop. |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 316 | void LUAnalysisCache::forgetLoop(const Loop *L) { |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 317 | LoopPropsMapIt LIt = LoopsProperties.find(L); |
| 318 | |
| 319 | if (LIt != LoopsProperties.end()) { |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 320 | LoopProperties &Props = LIt->second; |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 321 | MaxSize += (Props.CanBeUnswitchedCount + Props.WasUnswitchedCount) * |
| 322 | Props.SizeEstimation; |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 323 | LoopsProperties.erase(LIt); |
| 324 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 325 | |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 326 | CurrentLoopProperties = nullptr; |
| 327 | CurLoopInstructions = nullptr; |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 328 | } |
| 329 | |
| 330 | // Mark case value as unswitched. |
| 331 | // Since SI instruction can be partly unswitched, in order to avoid |
| 332 | // extra unswitching in cloned loops keep track all unswitched values. |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 333 | void LUAnalysisCache::setUnswitched(const SwitchInst *SI, const Value *V) { |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 334 | (*CurLoopInstructions)[SI].insert(V); |
| 335 | } |
| 336 | |
| 337 | // Check was this case value unswitched before or not. |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 338 | bool LUAnalysisCache::isUnswitched(const SwitchInst *SI, const Value *V) { |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 339 | return (*CurLoopInstructions)[SI].count(V); |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 340 | } |
| 341 | |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 342 | bool LUAnalysisCache::CostAllowsUnswitching() { |
| 343 | return CurrentLoopProperties->CanBeUnswitchedCount > 0; |
| 344 | } |
| 345 | |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 346 | // Clone all loop-unswitch related loop properties. |
| 347 | // Redistribute unswitching quotas. |
| 348 | // Note, that new loop data is stored inside the VMap. |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 349 | void LUAnalysisCache::cloneData(const Loop *NewLoop, const Loop *OldLoop, |
| 350 | const ValueToValueMapTy &VMap) { |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 351 | LoopProperties &NewLoopProps = LoopsProperties[NewLoop]; |
| 352 | LoopProperties &OldLoopProps = *CurrentLoopProperties; |
| 353 | UnswitchedValsMap &Insts = OldLoopProps.UnswitchedVals; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 354 | |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 355 | // Reallocate "can-be-unswitched quota" |
| 356 | |
| 357 | --OldLoopProps.CanBeUnswitchedCount; |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 358 | ++OldLoopProps.WasUnswitchedCount; |
| 359 | NewLoopProps.WasUnswitchedCount = 0; |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 360 | unsigned Quota = OldLoopProps.CanBeUnswitchedCount; |
| 361 | NewLoopProps.CanBeUnswitchedCount = Quota / 2; |
| 362 | OldLoopProps.CanBeUnswitchedCount = Quota - Quota / 2; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 363 | |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 364 | NewLoopProps.SizeEstimation = OldLoopProps.SizeEstimation; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 365 | |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 366 | // Clone unswitched values info: |
| 367 | // for new loop switches we clone info about values that was |
| 368 | // already unswitched and has redundant successors. |
| 369 | for (UnswitchedValsIt I = Insts.begin(); I != Insts.end(); ++I) { |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 370 | const SwitchInst *OldInst = I->first; |
| 371 | Value *NewI = VMap.lookup(OldInst); |
| 372 | const SwitchInst *NewInst = cast_or_null<SwitchInst>(NewI); |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 373 | assert(NewInst && "All instructions that are in SrcBB must be in VMap."); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 374 | |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 375 | NewLoopProps.UnswitchedVals[NewInst] = OldLoopProps.UnswitchedVals[OldInst]; |
| 376 | } |
| 377 | } |
| 378 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 379 | char LoopUnswitch::ID = 0; |
Eugene Zelenko | fa6434b | 2017-08-31 21:56:16 +0000 | [diff] [blame] | 380 | |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 381 | INITIALIZE_PASS_BEGIN(LoopUnswitch, "loop-unswitch", "Unswitch loops", |
| 382 | false, false) |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 383 | INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) |
Chandler Carruth | 31088a9 | 2016-02-19 10:45:18 +0000 | [diff] [blame] | 384 | INITIALIZE_PASS_DEPENDENCY(LoopPass) |
| 385 | INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass) |
Stanislav Mekhanoshin | ee2dd78 | 2017-03-17 17:13:41 +0000 | [diff] [blame] | 386 | INITIALIZE_PASS_DEPENDENCY(DivergenceAnalysis) |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 387 | INITIALIZE_PASS_END(LoopUnswitch, "loop-unswitch", "Unswitch loops", |
| 388 | false, false) |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 389 | |
Stanislav Mekhanoshin | ee2dd78 | 2017-03-17 17:13:41 +0000 | [diff] [blame] | 390 | Pass *llvm::createLoopUnswitchPass(bool Os, bool hasBranchDivergence) { |
| 391 | return new LoopUnswitch(Os, hasBranchDivergence); |
Devang Patel | 506310d | 2007-06-06 00:21:03 +0000 | [diff] [blame] | 392 | } |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 393 | |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 394 | /// Operator chain lattice. |
| 395 | enum OperatorChain { |
| 396 | OC_OpChainNone, ///< There is no operator. |
| 397 | OC_OpChainOr, ///< There are only ORs. |
| 398 | OC_OpChainAnd, ///< There are only ANDs. |
| 399 | OC_OpChainMixed ///< There are ANDs and ORs. |
| 400 | }; |
| 401 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 402 | /// Cond is a condition that occurs in L. If it is invariant in the loop, or has |
| 403 | /// an invariant piece, return the invariant. Otherwise, return null. |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 404 | // |
| 405 | /// NOTE: FindLIVLoopCondition will not return a partial LIV by walking up a |
| 406 | /// mixed operator chain, as we can not reliably find a value which will simplify |
| 407 | /// the operator chain. If the chain is AND-only or OR-only, we can use 0 or ~0 |
| 408 | /// to simplify the chain. |
| 409 | /// |
| 410 | /// NOTE: In case a partial LIV and a mixed operator chain, we may be able to |
| 411 | /// simplify the condition itself to a loop variant condition, but at the |
| 412 | /// cost of creating an entirely new loop. |
Sanjoy Das | d850068 | 2016-06-25 01:14:19 +0000 | [diff] [blame] | 413 | static Value *FindLIVLoopCondition(Value *Cond, Loop *L, bool &Changed, |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 414 | OperatorChain &ParentChain, |
Sanjoy Das | d850068 | 2016-06-25 01:14:19 +0000 | [diff] [blame] | 415 | DenseMap<Value *, Value *> &Cache) { |
| 416 | auto CacheIt = Cache.find(Cond); |
| 417 | if (CacheIt != Cache.end()) |
| 418 | return CacheIt->second; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 419 | |
Stepan Dyatkovskiy | 8216569 | 2012-01-11 08:40:51 +0000 | [diff] [blame] | 420 | // We started analyze new instruction, increment scanned instructions counter. |
| 421 | ++TotalInsts; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 422 | |
Chris Lattner | 302240d | 2010-02-02 02:26:54 +0000 | [diff] [blame] | 423 | // We can never unswitch on vector conditions. |
Duncan Sands | 19d0b47 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 424 | if (Cond->getType()->isVectorTy()) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 425 | return nullptr; |
Chris Lattner | 302240d | 2010-02-02 02:26:54 +0000 | [diff] [blame] | 426 | |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 427 | // Constants should be folded, not unswitched on! |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 428 | if (isa<Constant>(Cond)) return nullptr; |
Devang Patel | 3c723c8 | 2007-06-28 00:44:10 +0000 | [diff] [blame] | 429 | |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 430 | // TODO: Handle: br (VARIANT|INVARIANT). |
Devang Patel | fe57d10 | 2008-11-03 19:38:07 +0000 | [diff] [blame] | 431 | |
Dan Gohman | 4d6149f | 2009-07-14 01:37:59 +0000 | [diff] [blame] | 432 | // Hoist simple values out. |
Sanjoy Das | d850068 | 2016-06-25 01:14:19 +0000 | [diff] [blame] | 433 | if (L->makeLoopInvariant(Cond, Changed)) { |
| 434 | Cache[Cond] = Cond; |
Dan Gohman | 4d6149f | 2009-07-14 01:37:59 +0000 | [diff] [blame] | 435 | return Cond; |
Sanjoy Das | d850068 | 2016-06-25 01:14:19 +0000 | [diff] [blame] | 436 | } |
Dan Gohman | 4d6149f | 2009-07-14 01:37:59 +0000 | [diff] [blame] | 437 | |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 438 | // Walk up the operator chain to find partial invariant conditions. |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 439 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Cond)) |
| 440 | if (BO->getOpcode() == Instruction::And || |
| 441 | BO->getOpcode() == Instruction::Or) { |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 442 | // Given the previous operator, compute the current operator chain status. |
| 443 | OperatorChain NewChain; |
| 444 | switch (ParentChain) { |
| 445 | case OC_OpChainNone: |
| 446 | NewChain = BO->getOpcode() == Instruction::And ? OC_OpChainAnd : |
| 447 | OC_OpChainOr; |
| 448 | break; |
| 449 | case OC_OpChainOr: |
| 450 | NewChain = BO->getOpcode() == Instruction::Or ? OC_OpChainOr : |
| 451 | OC_OpChainMixed; |
| 452 | break; |
| 453 | case OC_OpChainAnd: |
| 454 | NewChain = BO->getOpcode() == Instruction::And ? OC_OpChainAnd : |
| 455 | OC_OpChainMixed; |
| 456 | break; |
| 457 | case OC_OpChainMixed: |
| 458 | NewChain = OC_OpChainMixed; |
| 459 | break; |
Sanjoy Das | d850068 | 2016-06-25 01:14:19 +0000 | [diff] [blame] | 460 | } |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 461 | |
| 462 | // If we reach a Mixed state, we do not want to keep walking up as we can not |
| 463 | // reliably find a value that will simplify the chain. With this check, we |
| 464 | // will return null on the first sight of mixed chain and the caller will |
| 465 | // either backtrack to find partial LIV in other operand or return null. |
| 466 | if (NewChain != OC_OpChainMixed) { |
| 467 | // Update the current operator chain type before we search up the chain. |
| 468 | ParentChain = NewChain; |
| 469 | // If either the left or right side is invariant, we can unswitch on this, |
| 470 | // which will cause the branch to go away in one loop and the condition to |
| 471 | // simplify in the other one. |
| 472 | if (Value *LHS = FindLIVLoopCondition(BO->getOperand(0), L, Changed, |
| 473 | ParentChain, Cache)) { |
| 474 | Cache[Cond] = LHS; |
| 475 | return LHS; |
| 476 | } |
| 477 | // We did not manage to find a partial LIV in operand(0). Backtrack and try |
| 478 | // operand(1). |
| 479 | ParentChain = NewChain; |
| 480 | if (Value *RHS = FindLIVLoopCondition(BO->getOperand(1), L, Changed, |
| 481 | ParentChain, Cache)) { |
| 482 | Cache[Cond] = RHS; |
| 483 | return RHS; |
| 484 | } |
Sanjoy Das | d850068 | 2016-06-25 01:14:19 +0000 | [diff] [blame] | 485 | } |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 486 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 487 | |
Sanjoy Das | d850068 | 2016-06-25 01:14:19 +0000 | [diff] [blame] | 488 | Cache[Cond] = nullptr; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 489 | return nullptr; |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 490 | } |
| 491 | |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 492 | /// Cond is a condition that occurs in L. If it is invariant in the loop, or has |
| 493 | /// an invariant piece, return the invariant along with the operator chain type. |
| 494 | /// Otherwise, return null. |
| 495 | static std::pair<Value *, OperatorChain> FindLIVLoopCondition(Value *Cond, |
| 496 | Loop *L, |
| 497 | bool &Changed) { |
Sanjoy Das | d850068 | 2016-06-25 01:14:19 +0000 | [diff] [blame] | 498 | DenseMap<Value *, Value *> Cache; |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 499 | OperatorChain OpChain = OC_OpChainNone; |
| 500 | Value *FCond = FindLIVLoopCondition(Cond, L, Changed, OpChain, Cache); |
| 501 | |
| 502 | // In case we do find a LIV, it can not be obtained by walking up a mixed |
| 503 | // operator chain. |
| 504 | assert((!FCond || OpChain != OC_OpChainMixed) && |
| 505 | "Do not expect a partial LIV with mixed operator chain"); |
| 506 | return {FCond, OpChain}; |
Sanjoy Das | d850068 | 2016-06-25 01:14:19 +0000 | [diff] [blame] | 507 | } |
| 508 | |
Devang Patel | 901a27d | 2007-03-07 00:26:10 +0000 | [diff] [blame] | 509 | bool LoopUnswitch::runOnLoop(Loop *L, LPPassManager &LPM_Ref) { |
Andrew Kaylor | aa641a5 | 2016-04-22 22:06:11 +0000 | [diff] [blame] | 510 | if (skipLoop(L)) |
Paul Robinson | af4e64d | 2014-02-06 00:07:05 +0000 | [diff] [blame] | 511 | return false; |
| 512 | |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 513 | AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache( |
| 514 | *L->getHeader()->getParent()); |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 515 | LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); |
Devang Patel | 901a27d | 2007-03-07 00:26:10 +0000 | [diff] [blame] | 516 | LPM = &LPM_Ref; |
Michael Zolotukhin | 9f3aea6 | 2015-09-22 00:22:47 +0000 | [diff] [blame] | 517 | DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
Devang Patel | e149d4e | 2008-07-02 01:18:13 +0000 | [diff] [blame] | 518 | currentLoop = L; |
Devang Patel | 40519f0 | 2008-09-04 22:43:59 +0000 | [diff] [blame] | 519 | Function *F = currentLoop->getHeader()->getParent(); |
Chen Li | 9f27fc0 | 2015-09-29 05:03:32 +0000 | [diff] [blame] | 520 | |
Evgeniy Stepanov | eaea297 | 2016-06-10 20:03:20 +0000 | [diff] [blame] | 521 | SanitizeMemory = F->hasFnAttribute(Attribute::SanitizeMemory); |
| 522 | if (SanitizeMemory) |
| 523 | computeLoopSafetyInfo(&SafetyInfo, L); |
| 524 | |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 525 | bool Changed = false; |
Devang Patel | 7d165e1 | 2007-07-30 23:07:10 +0000 | [diff] [blame] | 526 | do { |
Michael Zolotukhin | 9f3aea6 | 2015-09-22 00:22:47 +0000 | [diff] [blame] | 527 | assert(currentLoop->isLCSSAForm(*DT)); |
Devang Patel | 7d165e1 | 2007-07-30 23:07:10 +0000 | [diff] [blame] | 528 | redoLoop = false; |
Devang Patel | e149d4e | 2008-07-02 01:18:13 +0000 | [diff] [blame] | 529 | Changed |= processCurrentLoop(); |
Devang Patel | 7d165e1 | 2007-07-30 23:07:10 +0000 | [diff] [blame] | 530 | } while(redoLoop); |
| 531 | |
| 532 | return Changed; |
| 533 | } |
| 534 | |
Abhilash Bhandari | 54e5a1a | 2016-11-25 14:07:44 +0000 | [diff] [blame] | 535 | // Return true if the BasicBlock BB is unreachable from the loop header. |
| 536 | // Return false, otherwise. |
| 537 | bool LoopUnswitch::isUnreachableDueToPreviousUnswitching(BasicBlock *BB) { |
| 538 | auto *Node = DT->getNode(BB)->getIDom(); |
| 539 | BasicBlock *DomBB = Node->getBlock(); |
| 540 | while (currentLoop->contains(DomBB)) { |
| 541 | BranchInst *BInst = dyn_cast<BranchInst>(DomBB->getTerminator()); |
| 542 | |
| 543 | Node = DT->getNode(DomBB)->getIDom(); |
| 544 | DomBB = Node->getBlock(); |
| 545 | |
| 546 | if (!BInst || !BInst->isConditional()) |
| 547 | continue; |
| 548 | |
| 549 | Value *Cond = BInst->getCondition(); |
| 550 | if (!isa<ConstantInt>(Cond)) |
| 551 | continue; |
| 552 | |
| 553 | BasicBlock *UnreachableSucc = |
| 554 | Cond == ConstantInt::getTrue(Cond->getContext()) |
| 555 | ? BInst->getSuccessor(1) |
| 556 | : BInst->getSuccessor(0); |
| 557 | |
| 558 | if (DT->dominates(UnreachableSucc, BB)) |
| 559 | return true; |
| 560 | } |
| 561 | return false; |
| 562 | } |
| 563 | |
Wei Mi | fc0e245 | 2017-07-25 23:37:17 +0000 | [diff] [blame] | 564 | /// FIXME: Remove this workaround when freeze related patches are done. |
| 565 | /// LoopUnswitch and Equality propagation in GVN have discrepancy about |
| 566 | /// whether branch on undef/poison has undefine behavior. Here it is to |
| 567 | /// rule out some common cases that we found such discrepancy already |
| 568 | /// causing problems. Detail could be found in PR31652. Note if the |
| 569 | /// func returns true, it is unsafe. But if it is false, it doesn't mean |
| 570 | /// it is necessarily safe. |
| 571 | static bool EqualityPropUnSafe(Value &LoopCond) { |
| 572 | ICmpInst *CI = dyn_cast<ICmpInst>(&LoopCond); |
| 573 | if (!CI || !CI->isEquality()) |
| 574 | return false; |
| 575 | |
| 576 | Value *LHS = CI->getOperand(0); |
| 577 | Value *RHS = CI->getOperand(1); |
| 578 | if (isa<UndefValue>(LHS) || isa<UndefValue>(RHS)) |
| 579 | return true; |
| 580 | |
| 581 | auto hasUndefInPHI = [](PHINode &PN) { |
| 582 | for (Value *Opd : PN.incoming_values()) { |
| 583 | if (isa<UndefValue>(Opd)) |
| 584 | return true; |
| 585 | } |
| 586 | return false; |
| 587 | }; |
| 588 | PHINode *LPHI = dyn_cast<PHINode>(LHS); |
| 589 | PHINode *RPHI = dyn_cast<PHINode>(RHS); |
| 590 | if ((LPHI && hasUndefInPHI(*LPHI)) || (RPHI && hasUndefInPHI(*RPHI))) |
| 591 | return true; |
| 592 | |
| 593 | auto hasUndefInSelect = [](SelectInst &SI) { |
| 594 | if (isa<UndefValue>(SI.getTrueValue()) || |
| 595 | isa<UndefValue>(SI.getFalseValue())) |
| 596 | return true; |
| 597 | return false; |
| 598 | }; |
| 599 | SelectInst *LSI = dyn_cast<SelectInst>(LHS); |
| 600 | SelectInst *RSI = dyn_cast<SelectInst>(RHS); |
| 601 | if ((LSI && hasUndefInSelect(*LSI)) || (RSI && hasUndefInSelect(*RSI))) |
| 602 | return true; |
| 603 | return false; |
| 604 | } |
| 605 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 606 | /// Do actual work and unswitch loop if possible and profitable. |
Devang Patel | e149d4e | 2008-07-02 01:18:13 +0000 | [diff] [blame] | 607 | bool LoopUnswitch::processCurrentLoop() { |
Devang Patel | 7d165e1 | 2007-07-30 23:07:10 +0000 | [diff] [blame] | 608 | bool Changed = false; |
Stepan Dyatkovskiy | 8216569 | 2012-01-11 08:40:51 +0000 | [diff] [blame] | 609 | |
| 610 | initLoopData(); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 611 | |
Stepan Dyatkovskiy | 8216569 | 2012-01-11 08:40:51 +0000 | [diff] [blame] | 612 | // If LoopSimplify was unable to form a preheader, don't do any unswitching. |
| 613 | if (!loopPreheader) |
| 614 | return false; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 615 | |
Andrew Trick | 4442bfe | 2012-04-10 05:14:42 +0000 | [diff] [blame] | 616 | // Loops with indirectbr cannot be cloned. |
| 617 | if (!currentLoop->isSafeToClone()) |
| 618 | return false; |
| 619 | |
| 620 | // Without dedicated exits, splitting the exit edge may fail. |
| 621 | if (!currentLoop->hasDedicatedExits()) |
| 622 | return false; |
| 623 | |
Stepan Dyatkovskiy | 8216569 | 2012-01-11 08:40:51 +0000 | [diff] [blame] | 624 | LLVMContext &Context = loopHeader->getContext(); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 625 | |
Chen Li | 567aa7a | 2015-10-14 19:47:43 +0000 | [diff] [blame] | 626 | // Analyze loop cost, and stop unswitching if loop content can not be duplicated. |
Chandler Carruth | 705b185 | 2015-01-31 03:43:40 +0000 | [diff] [blame] | 627 | if (!BranchesInfo.countLoop( |
Chandler Carruth | fdb9c57 | 2015-02-01 12:01:35 +0000 | [diff] [blame] | 628 | currentLoop, getAnalysis<TargetTransformInfoWrapperPass>().getTTI( |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 629 | *currentLoop->getHeader()->getParent()), |
| 630 | AC)) |
Stepan Dyatkovskiy | 8216569 | 2012-01-11 08:40:51 +0000 | [diff] [blame] | 631 | return false; |
Devang Patel | 7d165e1 | 2007-07-30 23:07:10 +0000 | [diff] [blame] | 632 | |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 633 | // Try trivial unswitch first before loop over other basic blocks in the loop. |
| 634 | if (TryTrivialLoopUnswitch(Changed)) { |
| 635 | return true; |
| 636 | } |
| 637 | |
Sanjoy Das | a37bb4a | 2016-06-26 05:10:45 +0000 | [diff] [blame] | 638 | // Run through the instructions in the loop, keeping track of three things: |
| 639 | // |
| 640 | // - That we do not unswitch loops containing convergent operations, as we |
| 641 | // might be making them control dependent on the unswitch value when they |
| 642 | // were not before. |
| 643 | // FIXME: This could be refined to only bail if the convergent operation is |
| 644 | // not already control-dependent on the unswitch value. |
| 645 | // |
| 646 | // - That basic blocks in the loop contain invokes whose predecessor edges we |
| 647 | // cannot split. |
| 648 | // |
| 649 | // - The set of guard intrinsics encountered (these are non terminator |
| 650 | // instructions that are also profitable to be unswitched). |
| 651 | |
| 652 | SmallVector<IntrinsicInst *, 4> Guards; |
| 653 | |
Owen Anderson | 2c9978b | 2015-10-09 18:40:20 +0000 | [diff] [blame] | 654 | for (const auto BB : currentLoop->blocks()) { |
Owen Anderson | 97ca0f3 | 2015-10-09 20:17:46 +0000 | [diff] [blame] | 655 | for (auto &I : *BB) { |
| 656 | auto CS = CallSite(&I); |
| 657 | if (!CS) continue; |
| 658 | if (CS.hasFnAttr(Attribute::Convergent)) |
Owen Anderson | 2c9978b | 2015-10-09 18:40:20 +0000 | [diff] [blame] | 659 | return false; |
David Majnemer | 3d90bb7 | 2016-05-03 03:57:40 +0000 | [diff] [blame] | 660 | if (auto *II = dyn_cast<InvokeInst>(&I)) |
| 661 | if (!II->getUnwindDest()->canSplitPredecessors()) |
| 662 | return false; |
Sanjoy Das | a37bb4a | 2016-06-26 05:10:45 +0000 | [diff] [blame] | 663 | if (auto *II = dyn_cast<IntrinsicInst>(&I)) |
| 664 | if (II->getIntrinsicID() == Intrinsic::experimental_guard) |
| 665 | Guards.push_back(II); |
Owen Anderson | 2c9978b | 2015-10-09 18:40:20 +0000 | [diff] [blame] | 666 | } |
| 667 | } |
| 668 | |
Chen Li | f458c6f | 2015-08-13 05:24:29 +0000 | [diff] [blame] | 669 | // Do not do non-trivial unswitch while optimizing for size. |
| 670 | // FIXME: Use Function::optForSize(). |
| 671 | if (OptimizeForSize || |
| 672 | loopHeader->getParent()->hasFnAttribute(Attribute::OptimizeForSize)) |
| 673 | return false; |
| 674 | |
Sanjoy Das | a37bb4a | 2016-06-26 05:10:45 +0000 | [diff] [blame] | 675 | for (IntrinsicInst *Guard : Guards) { |
| 676 | Value *LoopCond = |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 677 | FindLIVLoopCondition(Guard->getOperand(0), currentLoop, Changed).first; |
Sanjoy Das | a37bb4a | 2016-06-26 05:10:45 +0000 | [diff] [blame] | 678 | if (LoopCond && |
| 679 | UnswitchIfProfitable(LoopCond, ConstantInt::getTrue(Context))) { |
| 680 | // NB! Unswitching (if successful) could have erased some of the |
| 681 | // instructions in Guards leaving dangling pointers there. This is fine |
| 682 | // because we're returning now, and won't look at Guards again. |
| 683 | ++NumGuards; |
| 684 | return true; |
| 685 | } |
| 686 | } |
| 687 | |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 688 | // Loop over all of the basic blocks in the loop. If we find an interior |
| 689 | // block that is branching on a loop-invariant condition, we can unswitch this |
| 690 | // loop. |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 691 | for (Loop::block_iterator I = currentLoop->block_begin(), |
Chris Lattner | c832c1b | 2010-04-05 21:18:32 +0000 | [diff] [blame] | 692 | E = currentLoop->block_end(); I != E; ++I) { |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 693 | TerminatorInst *TI = (*I)->getTerminator(); |
Evgeniy Stepanov | eaea297 | 2016-06-10 20:03:20 +0000 | [diff] [blame] | 694 | |
| 695 | // Unswitching on a potentially uninitialized predicate is not |
| 696 | // MSan-friendly. Limit this to the cases when the original predicate is |
| 697 | // guaranteed to execute, to avoid creating a use-of-uninitialized-value |
| 698 | // in the code that did not have one. |
| 699 | // This is a workaround for the discrepancy between LLVM IR and MSan |
| 700 | // semantics. See PR28054 for more details. |
| 701 | if (SanitizeMemory && |
| 702 | !isGuaranteedToExecute(*TI, DT, currentLoop, &SafetyInfo)) |
| 703 | continue; |
| 704 | |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 705 | if (BranchInst *BI = dyn_cast<BranchInst>(TI)) { |
Abhilash Bhandari | 54e5a1a | 2016-11-25 14:07:44 +0000 | [diff] [blame] | 706 | // Some branches may be rendered unreachable because of previous |
| 707 | // unswitching. |
| 708 | // Unswitch only those branches that are reachable. |
| 709 | if (isUnreachableDueToPreviousUnswitching(*I)) |
| 710 | continue; |
| 711 | |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 712 | // If this isn't branching on an invariant condition, we can't unswitch |
| 713 | // it. |
| 714 | if (BI->isConditional()) { |
| 715 | // See if this, or some part of it, is loop invariant. If so, we can |
| 716 | // unswitch on it if we desire. |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 717 | Value *LoopCond = FindLIVLoopCondition(BI->getCondition(), |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 718 | currentLoop, Changed).first; |
Wei Mi | ebb9327 | 2017-08-29 21:45:11 +0000 | [diff] [blame] | 719 | if (LoopCond && !EqualityPropUnSafe(*LoopCond) && |
| 720 | UnswitchIfProfitable(LoopCond, ConstantInt::getTrue(Context), TI)) { |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 721 | ++NumBranches; |
| 722 | return true; |
| 723 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 724 | } |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 725 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(TI)) { |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 726 | Value *SC = SI->getCondition(); |
| 727 | Value *LoopCond; |
| 728 | OperatorChain OpChain; |
| 729 | std::tie(LoopCond, OpChain) = |
| 730 | FindLIVLoopCondition(SC, currentLoop, Changed); |
| 731 | |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 732 | unsigned NumCases = SI->getNumCases(); |
Stepan Dyatkovskiy | 513aaa5 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 733 | if (LoopCond && NumCases) { |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 734 | // Find a value to unswitch on: |
| 735 | // FIXME: this should chose the most expensive case! |
Nick Lewycky | 6115824 | 2011-06-03 06:27:15 +0000 | [diff] [blame] | 736 | // FIXME: scan for a case with a non-critical edge? |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 737 | Constant *UnswitchVal = nullptr; |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 738 | // Find a case value such that at least one case value is unswitched |
| 739 | // out. |
| 740 | if (OpChain == OC_OpChainAnd) { |
| 741 | // If the chain only has ANDs and the switch has a case value of 0. |
| 742 | // Dropping in a 0 to the chain will unswitch out the 0-casevalue. |
| 743 | auto *AllZero = cast<ConstantInt>(Constant::getNullValue(SC->getType())); |
| 744 | if (BranchesInfo.isUnswitched(SI, AllZero)) |
| 745 | continue; |
| 746 | // We are unswitching 0 out. |
| 747 | UnswitchVal = AllZero; |
| 748 | } else if (OpChain == OC_OpChainOr) { |
| 749 | // If the chain only has ORs and the switch has a case value of ~0. |
| 750 | // Dropping in a ~0 to the chain will unswitch out the ~0-casevalue. |
| 751 | auto *AllOne = cast<ConstantInt>(Constant::getAllOnesValue(SC->getType())); |
| 752 | if (BranchesInfo.isUnswitched(SI, AllOne)) |
| 753 | continue; |
| 754 | // We are unswitching ~0 out. |
| 755 | UnswitchVal = AllOne; |
| 756 | } else { |
| 757 | assert(OpChain == OC_OpChainNone && |
| 758 | "Expect to unswitch on trivial chain"); |
| 759 | // Do not process same value again and again. |
| 760 | // At this point we have some cases already unswitched and |
| 761 | // some not yet unswitched. Let's find the first not yet unswitched one. |
Chandler Carruth | 927d8e6 | 2017-04-12 07:27:28 +0000 | [diff] [blame] | 762 | for (auto Case : SI->cases()) { |
| 763 | Constant *UnswitchValCandidate = Case.getCaseValue(); |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 764 | if (!BranchesInfo.isUnswitched(SI, UnswitchValCandidate)) { |
| 765 | UnswitchVal = UnswitchValCandidate; |
| 766 | break; |
| 767 | } |
Chad Rosier | 3ba90a1 | 2011-12-22 21:10:46 +0000 | [diff] [blame] | 768 | } |
| 769 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 770 | |
Chad Rosier | 3ba90a1 | 2011-12-22 21:10:46 +0000 | [diff] [blame] | 771 | if (!UnswitchVal) |
Devang Patel | 967b84c | 2007-02-26 19:31:58 +0000 | [diff] [blame] | 772 | continue; |
Devang Patel | 967b84c | 2007-02-26 19:31:58 +0000 | [diff] [blame] | 773 | |
Devang Patel | e149d4e | 2008-07-02 01:18:13 +0000 | [diff] [blame] | 774 | if (UnswitchIfProfitable(LoopCond, UnswitchVal)) { |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 775 | ++NumSwitches; |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 776 | // In case of a full LIV, UnswitchVal is the value we unswitched out. |
| 777 | // In case of a partial LIV, we only unswitch when its an AND-chain |
| 778 | // or OR-chain. In both cases switch input value simplifies to |
| 779 | // UnswitchVal. |
| 780 | BranchesInfo.setUnswitched(SI, UnswitchVal); |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 781 | return true; |
| 782 | } |
| 783 | } |
| 784 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 785 | |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 786 | // Scan the instructions to check for unswitchable values. |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 787 | for (BasicBlock::iterator BBI = (*I)->begin(), E = (*I)->end(); |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 788 | BBI != E; ++BBI) |
| 789 | if (SelectInst *SI = dyn_cast<SelectInst>(BBI)) { |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 790 | Value *LoopCond = FindLIVLoopCondition(SI->getCondition(), |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 791 | currentLoop, Changed).first; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 792 | if (LoopCond && UnswitchIfProfitable(LoopCond, |
Owen Anderson | 23a204d | 2009-07-31 17:39:07 +0000 | [diff] [blame] | 793 | ConstantInt::getTrue(Context))) { |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 794 | ++NumSelects; |
| 795 | return true; |
| 796 | } |
| 797 | } |
| 798 | } |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 799 | return Changed; |
| 800 | } |
| 801 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 802 | /// Check to see if all paths from BB exit the loop with no side effects |
| 803 | /// (including infinite loops). |
Chris Lattner | e5cb76d | 2006-02-15 22:03:36 +0000 | [diff] [blame] | 804 | /// |
Dan Gohman | 0ad7d9c | 2010-09-01 21:46:45 +0000 | [diff] [blame] | 805 | /// If true, we return true and set ExitBB to the block we |
Chris Lattner | e5cb76d | 2006-02-15 22:03:36 +0000 | [diff] [blame] | 806 | /// exit through. |
| 807 | /// |
| 808 | static bool isTrivialLoopExitBlockHelper(Loop *L, BasicBlock *BB, |
| 809 | BasicBlock *&ExitBB, |
| 810 | std::set<BasicBlock*> &Visited) { |
Chris Lattner | baddba4 | 2006-02-17 06:39:56 +0000 | [diff] [blame] | 811 | if (!Visited.insert(BB).second) { |
Nick Lewycky | d9d1de4 | 2011-12-23 23:49:25 +0000 | [diff] [blame] | 812 | // Already visited. Without more analysis, this could indicate an infinite |
| 813 | // loop. |
Dan Gohman | 0ad7d9c | 2010-09-01 21:46:45 +0000 | [diff] [blame] | 814 | return false; |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 815 | } |
| 816 | if (!L->contains(BB)) { |
Chris Lattner | baddba4 | 2006-02-17 06:39:56 +0000 | [diff] [blame] | 817 | // Otherwise, this is a loop exit, this is fine so long as this is the |
| 818 | // first exit. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 819 | if (ExitBB) return false; |
Chris Lattner | baddba4 | 2006-02-17 06:39:56 +0000 | [diff] [blame] | 820 | ExitBB = BB; |
Edward O'Callaghan | 2b8fed1 | 2009-11-25 05:38:41 +0000 | [diff] [blame] | 821 | return true; |
Chris Lattner | baddba4 | 2006-02-17 06:39:56 +0000 | [diff] [blame] | 822 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 823 | |
Chris Lattner | baddba4 | 2006-02-17 06:39:56 +0000 | [diff] [blame] | 824 | // Otherwise, this is an unvisited intra-loop node. Check all successors. |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 825 | for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI) { |
Chris Lattner | baddba4 | 2006-02-17 06:39:56 +0000 | [diff] [blame] | 826 | // Check to see if the successor is a trivial loop exit. |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 827 | if (!isTrivialLoopExitBlockHelper(L, *SI, ExitBB, Visited)) |
Chris Lattner | baddba4 | 2006-02-17 06:39:56 +0000 | [diff] [blame] | 828 | return false; |
Chris Lattner | 6e26315 | 2006-02-10 02:30:37 +0000 | [diff] [blame] | 829 | } |
Chris Lattner | e5cb76d | 2006-02-15 22:03:36 +0000 | [diff] [blame] | 830 | |
| 831 | // Okay, everything after this looks good, check to make sure that this block |
| 832 | // doesn't include any side effects. |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 833 | for (Instruction &I : *BB) |
| 834 | if (I.mayHaveSideEffects()) |
Chris Lattner | e5cb76d | 2006-02-15 22:03:36 +0000 | [diff] [blame] | 835 | return false; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 836 | |
Chris Lattner | e5cb76d | 2006-02-15 22:03:36 +0000 | [diff] [blame] | 837 | return true; |
Chris Lattner | 6e26315 | 2006-02-10 02:30:37 +0000 | [diff] [blame] | 838 | } |
| 839 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 840 | /// Return true if the specified block unconditionally leads to an exit from |
| 841 | /// the specified loop, and has no side-effects in the process. If so, return |
| 842 | /// the block that is exited to, otherwise return null. |
Chris Lattner | e5cb76d | 2006-02-15 22:03:36 +0000 | [diff] [blame] | 843 | static BasicBlock *isTrivialLoopExitBlock(Loop *L, BasicBlock *BB) { |
| 844 | std::set<BasicBlock*> Visited; |
Dan Gohman | 0ad7d9c | 2010-09-01 21:46:45 +0000 | [diff] [blame] | 845 | Visited.insert(L->getHeader()); // Branches to header make infinite loops. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 846 | BasicBlock *ExitBB = nullptr; |
Chris Lattner | e5cb76d | 2006-02-15 22:03:36 +0000 | [diff] [blame] | 847 | if (isTrivialLoopExitBlockHelper(L, BB, ExitBB, Visited)) |
| 848 | return ExitBB; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 849 | return nullptr; |
Chris Lattner | e5cb76d | 2006-02-15 22:03:36 +0000 | [diff] [blame] | 850 | } |
Chris Lattner | 6e26315 | 2006-02-10 02:30:37 +0000 | [diff] [blame] | 851 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 852 | /// We have found that we can unswitch currentLoop when LoopCond == Val to |
| 853 | /// simplify the loop. If we decide that this is profitable, |
Chris Lattner | fbadd7e | 2006-02-11 00:43:37 +0000 | [diff] [blame] | 854 | /// unswitch the loop, reprocess the pieces, then return true. |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 855 | bool LoopUnswitch::UnswitchIfProfitable(Value *LoopCond, Constant *Val, |
| 856 | TerminatorInst *TI) { |
Evan Cheng | ed66db3 | 2010-04-03 02:23:43 +0000 | [diff] [blame] | 857 | // Check to see if it would be profitable to unswitch current loop. |
Mark Heffernan | 9b536a6 | 2015-06-23 18:26:50 +0000 | [diff] [blame] | 858 | if (!BranchesInfo.CostAllowsUnswitching()) { |
| 859 | DEBUG(dbgs() << "NOT unswitching loop %" |
| 860 | << currentLoop->getHeader()->getName() |
| 861 | << " at non-trivial condition '" << *Val |
| 862 | << "' == " << *LoopCond << "\n" |
| 863 | << ". Cost too high.\n"); |
| 864 | return false; |
| 865 | } |
Stanislav Mekhanoshin | ee2dd78 | 2017-03-17 17:13:41 +0000 | [diff] [blame] | 866 | if (hasBranchDivergence && |
| 867 | getAnalysis<DivergenceAnalysis>().isDivergent(LoopCond)) { |
| 868 | DEBUG(dbgs() << "NOT unswitching loop %" |
| 869 | << currentLoop->getHeader()->getName() |
| 870 | << " at non-trivial condition '" << *Val |
| 871 | << "' == " << *LoopCond << "\n" |
| 872 | << ". Condition is divergent.\n"); |
| 873 | return false; |
| 874 | } |
Evan Cheng | ed66db3 | 2010-04-03 02:23:43 +0000 | [diff] [blame] | 875 | |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 876 | UnswitchNontrivialCondition(LoopCond, Val, currentLoop, TI); |
Andrew Trick | 4442bfe | 2012-04-10 05:14:42 +0000 | [diff] [blame] | 877 | return true; |
Chris Lattner | fbadd7e | 2006-02-11 00:43:37 +0000 | [diff] [blame] | 878 | } |
| 879 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 880 | /// Recursively clone the specified loop and all of its children, |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 881 | /// mapping the blocks with the specified map. |
Rafael Espindola | 229e38f | 2010-10-13 01:36:30 +0000 | [diff] [blame] | 882 | static Loop *CloneLoop(Loop *L, Loop *PL, ValueToValueMapTy &VM, |
Devang Patel | 901a27d | 2007-03-07 00:26:10 +0000 | [diff] [blame] | 883 | LoopInfo *LI, LPPassManager *LPM) { |
Sanjoy Das | def1729 | 2017-09-28 02:45:42 +0000 | [diff] [blame^] | 884 | Loop &New = *LI->AllocateLoop(); |
Chandler Carruth | 29c22d2 | 2017-05-25 03:01:31 +0000 | [diff] [blame] | 885 | if (PL) |
| 886 | PL->addChildLoop(&New); |
| 887 | else |
| 888 | LI->addTopLevelLoop(&New); |
| 889 | LPM->addLoop(New); |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 890 | |
| 891 | // Add all of the blocks in L to the new loop. |
| 892 | for (Loop::block_iterator I = L->block_begin(), E = L->block_end(); |
| 893 | I != E; ++I) |
| 894 | if (LI->getLoopFor(*I) == L) |
Justin Bogner | 35e46cd | 2015-10-22 21:21:32 +0000 | [diff] [blame] | 895 | New.addBasicBlockToLoop(cast<BasicBlock>(VM[*I]), *LI); |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 896 | |
| 897 | // Add all of the subloops to the new loop. |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 898 | for (Loop *I : *L) |
| 899 | CloneLoop(I, &New, VM, LI, LPM); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 900 | |
Justin Bogner | 35e46cd | 2015-10-22 21:21:32 +0000 | [diff] [blame] | 901 | return &New; |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 902 | } |
| 903 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 904 | /// Emit a conditional branch on two values if LIC == Val, branch to TrueDst, |
Jakub Kuderski | e35a449 | 2017-08-17 16:45:35 +0000 | [diff] [blame] | 905 | /// otherwise branch to FalseDest. Insert the code immediately before OldBranch |
| 906 | /// and remove (but not erase!) it from the function. |
Devang Patel | 3304e46 | 2007-06-28 00:49:00 +0000 | [diff] [blame] | 907 | void LoopUnswitch::EmitPreheaderBranchOnCondition(Value *LIC, Constant *Val, |
| 908 | BasicBlock *TrueDest, |
| 909 | BasicBlock *FalseDest, |
Jakub Kuderski | e35a449 | 2017-08-17 16:45:35 +0000 | [diff] [blame] | 910 | BranchInst *OldBranch, |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 911 | TerminatorInst *TI) { |
Jakub Kuderski | e35a449 | 2017-08-17 16:45:35 +0000 | [diff] [blame] | 912 | assert(OldBranch->isUnconditional() && "Preheader is not split correctly"); |
Chris Lattner | b0cbe71 | 2006-02-15 00:07:43 +0000 | [diff] [blame] | 913 | // Insert a conditional branch on LIC to the two preheaders. The original |
| 914 | // code is the true version and the new code is the false version. |
| 915 | Value *BranchVal = LIC; |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 916 | bool Swapped = false; |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 917 | if (!isa<ConstantInt>(Val) || |
| 918 | Val->getType() != Type::getInt1Ty(LIC->getContext())) |
Jakub Kuderski | e35a449 | 2017-08-17 16:45:35 +0000 | [diff] [blame] | 919 | BranchVal = new ICmpInst(OldBranch, ICmpInst::ICMP_EQ, LIC, Val); |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 920 | else if (Val != ConstantInt::getTrue(Val->getContext())) { |
Chris Lattner | b0cbe71 | 2006-02-15 00:07:43 +0000 | [diff] [blame] | 921 | // We want to enter the new loop when the condition is true. |
| 922 | std::swap(TrueDest, FalseDest); |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 923 | Swapped = true; |
| 924 | } |
Chris Lattner | b0cbe71 | 2006-02-15 00:07:43 +0000 | [diff] [blame] | 925 | |
Jakub Kuderski | e35a449 | 2017-08-17 16:45:35 +0000 | [diff] [blame] | 926 | // Old branch will be removed, so save its parent and successor to update the |
| 927 | // DomTree. |
| 928 | auto *OldBranchSucc = OldBranch->getSuccessor(0); |
| 929 | auto *OldBranchParent = OldBranch->getParent(); |
| 930 | |
Chris Lattner | b0cbe71 | 2006-02-15 00:07:43 +0000 | [diff] [blame] | 931 | // Insert the new branch. |
Xinliang David Li | 7a28a7f | 2016-09-03 22:26:11 +0000 | [diff] [blame] | 932 | BranchInst *BI = |
Jakub Kuderski | e35a449 | 2017-08-17 16:45:35 +0000 | [diff] [blame] | 933 | IRBuilder<>(OldBranch).CreateCondBr(BranchVal, TrueDest, FalseDest, TI); |
Xinliang David Li | 7a28a7f | 2016-09-03 22:26:11 +0000 | [diff] [blame] | 934 | if (Swapped) |
| 935 | BI->swapProfMetadata(); |
Dan Gohman | 3ddbc24 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 936 | |
Jakub Kuderski | e35a449 | 2017-08-17 16:45:35 +0000 | [diff] [blame] | 937 | // Remove the old branch so there is only one branch at the end. This is |
| 938 | // needed to perform DomTree's internal DFS walk on the function's CFG. |
| 939 | OldBranch->removeFromParent(); |
| 940 | |
| 941 | // Inform the DT about the new branch. |
| 942 | if (DT) { |
| 943 | // First, add both successors. |
| 944 | SmallVector<DominatorTree::UpdateType, 3> Updates; |
| 945 | if (TrueDest != OldBranchParent) |
| 946 | Updates.push_back({DominatorTree::Insert, OldBranchParent, TrueDest}); |
| 947 | if (FalseDest != OldBranchParent) |
| 948 | Updates.push_back({DominatorTree::Insert, OldBranchParent, FalseDest}); |
| 949 | // If both of the new successors are different from the old one, inform the |
| 950 | // DT that the edge was deleted. |
| 951 | if (OldBranchSucc != TrueDest && OldBranchSucc != FalseDest) { |
| 952 | Updates.push_back({DominatorTree::Delete, OldBranchParent, OldBranchSucc}); |
| 953 | } |
| 954 | |
| 955 | DT->applyUpdates(Updates); |
| 956 | } |
| 957 | |
Dan Gohman | 3ddbc24 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 958 | // If either edge is critical, split it. This helps preserve LoopSimplify |
| 959 | // form for enclosing loops. |
Chandler Carruth | f8753fc | 2015-01-19 12:12:00 +0000 | [diff] [blame] | 960 | auto Options = CriticalEdgeSplittingOptions(DT, LI).setPreserveLCSSA(); |
Chandler Carruth | 37df2cf | 2015-01-19 12:09:11 +0000 | [diff] [blame] | 961 | SplitCriticalEdge(BI, 0, Options); |
| 962 | SplitCriticalEdge(BI, 1, Options); |
Chris Lattner | b0cbe71 | 2006-02-15 00:07:43 +0000 | [diff] [blame] | 963 | } |
| 964 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 965 | /// Given a loop that has a trivial unswitchable condition in it (a cond branch |
| 966 | /// from its header block to its latch block, where the path through the loop |
| 967 | /// that doesn't execute its body has no side-effects), unswitch it. This |
| 968 | /// doesn't involve any code duplication, just moving the conditional branch |
| 969 | /// outside of the loop and updating loop info. |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 970 | void LoopUnswitch::UnswitchTrivialCondition(Loop *L, Value *Cond, Constant *Val, |
| 971 | BasicBlock *ExitBlock, |
| 972 | TerminatorInst *TI) { |
David Greene | d9c355d | 2010-01-05 01:27:04 +0000 | [diff] [blame] | 973 | DEBUG(dbgs() << "loop-unswitch: Trivial-Unswitch loop %" |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 974 | << loopHeader->getName() << " [" << L->getBlocks().size() |
| 975 | << " blocks] in Function " |
| 976 | << L->getHeader()->getParent()->getName() << " on cond: " << *Val |
| 977 | << " == " << *Cond << "\n"); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 978 | |
Chris Lattner | fe4151e | 2006-02-10 23:16:39 +0000 | [diff] [blame] | 979 | // First step, split the preheader, so that we know that there is a safe place |
Devang Patel | e149d4e | 2008-07-02 01:18:13 +0000 | [diff] [blame] | 980 | // to insert the conditional branch. We will change loopPreheader to have a |
Chris Lattner | ed7a67b | 2006-02-10 01:24:09 +0000 | [diff] [blame] | 981 | // conditional branch on Cond. |
Chandler Carruth | d450056 | 2015-01-19 12:36:53 +0000 | [diff] [blame] | 982 | BasicBlock *NewPH = SplitEdge(loopPreheader, loopHeader, DT, LI); |
Chris Lattner | ed7a67b | 2006-02-10 01:24:09 +0000 | [diff] [blame] | 983 | |
| 984 | // Now that we have a place to insert the conditional branch, create a place |
Chris Lattner | 4935417 | 2006-02-10 02:01:22 +0000 | [diff] [blame] | 985 | // to branch to: this is the exit block out of the loop that we should |
| 986 | // short-circuit to. |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 987 | |
Chris Lattner | e5cb76d | 2006-02-15 22:03:36 +0000 | [diff] [blame] | 988 | // Split this block now, so that the loop maintains its exit block, and so |
| 989 | // that the jump from the preheader can execute the contents of the exit block |
| 990 | // without actually branching to it (the exit block should be dominated by the |
| 991 | // loop header, not the preheader). |
Chris Lattner | 4935417 | 2006-02-10 02:01:22 +0000 | [diff] [blame] | 992 | assert(!L->contains(ExitBlock) && "Exit block is in the loop?"); |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 993 | BasicBlock *NewExit = SplitBlock(ExitBlock, &ExitBlock->front(), DT, LI); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 994 | |
| 995 | // Okay, now we have a position to branch from and a position to branch to, |
Chris Lattner | ed7a67b | 2006-02-10 01:24:09 +0000 | [diff] [blame] | 996 | // insert the new conditional branch. |
Jakub Kuderski | e35a449 | 2017-08-17 16:45:35 +0000 | [diff] [blame] | 997 | auto *OldBranch = dyn_cast<BranchInst>(loopPreheader->getTerminator()); |
| 998 | assert(OldBranch && "Failed to split the preheader"); |
| 999 | EmitPreheaderBranchOnCondition(Cond, Val, NewExit, NewPH, OldBranch, TI); |
| 1000 | LPM->deleteSimpleAnalysisValue(OldBranch, L); |
| 1001 | |
| 1002 | // EmitPreheaderBranchOnCondition removed the OldBranch from the function. |
| 1003 | // Delete it, as it is no longer needed. |
| 1004 | delete OldBranch; |
Chris Lattner | ed7a67b | 2006-02-10 01:24:09 +0000 | [diff] [blame] | 1005 | |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 1006 | // We need to reprocess this loop, it could be unswitched again. |
Devang Patel | 7d165e1 | 2007-07-30 23:07:10 +0000 | [diff] [blame] | 1007 | redoLoop = true; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1008 | |
Chris Lattner | ed7a67b | 2006-02-10 01:24:09 +0000 | [diff] [blame] | 1009 | // Now that we know that the loop is never entered when this condition is a |
| 1010 | // particular value, rewrite the loop with this info. We know that this will |
| 1011 | // at least eliminate the old branch. |
Chris Lattner | 8a5a324 | 2006-02-22 06:37:14 +0000 | [diff] [blame] | 1012 | RewriteLoopBodyWithConditionConstant(L, Cond, Val, false); |
Chris Lattner | 0b8ec1a | 2006-02-14 01:01:41 +0000 | [diff] [blame] | 1013 | ++NumTrivial; |
Chris Lattner | ed7a67b | 2006-02-10 01:24:09 +0000 | [diff] [blame] | 1014 | } |
| 1015 | |
Sanjay Patel | 41f3d95 | 2015-08-11 21:11:56 +0000 | [diff] [blame] | 1016 | /// Check if the first non-constant condition starting from the loop header is |
| 1017 | /// a trivial unswitch condition: that is, a condition controls whether or not |
| 1018 | /// the loop does anything at all. If it is a trivial condition, unswitching |
| 1019 | /// produces no code duplications (equivalently, it produces a simpler loop and |
| 1020 | /// a new empty loop, which gets deleted). Therefore always unswitch trivial |
| 1021 | /// condition. |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1022 | bool LoopUnswitch::TryTrivialLoopUnswitch(bool &Changed) { |
Chen Li | 145c2f5 | 2015-07-25 03:21:06 +0000 | [diff] [blame] | 1023 | BasicBlock *CurrentBB = currentLoop->getHeader(); |
| 1024 | TerminatorInst *CurrentTerm = CurrentBB->getTerminator(); |
| 1025 | LLVMContext &Context = CurrentBB->getContext(); |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1026 | |
Chen Li | 145c2f5 | 2015-07-25 03:21:06 +0000 | [diff] [blame] | 1027 | // If loop header has only one reachable successor (currently via an |
| 1028 | // unconditional branch or constant foldable conditional branch, but |
| 1029 | // should also consider adding constant foldable switch instruction in |
| 1030 | // future), we should keep looking for trivial condition candidates in |
| 1031 | // the successor as well. An alternative is to constant fold conditions |
| 1032 | // and merge successors into loop header (then we only need to check header's |
| 1033 | // terminator). The reason for not doing this in LoopUnswitch pass is that |
| 1034 | // it could potentially break LoopPassManager's invariants. Folding dead |
| 1035 | // branches could either eliminate the current loop or make other loops |
Sanjay Patel | 41f3d95 | 2015-08-11 21:11:56 +0000 | [diff] [blame] | 1036 | // unreachable. LCSSA form might also not be preserved after deleting |
| 1037 | // branches. The following code keeps traversing loop header's successors |
| 1038 | // until it finds the trivial condition candidate (condition that is not a |
| 1039 | // constant). Since unswitching generates branches with constant conditions, |
| 1040 | // this scenario could be very common in practice. |
Chen Li | 145c2f5 | 2015-07-25 03:21:06 +0000 | [diff] [blame] | 1041 | SmallSet<BasicBlock*, 8> Visited; |
| 1042 | |
| 1043 | while (true) { |
| 1044 | // If we exit loop or reach a previous visited block, then |
| 1045 | // we can not reach any trivial condition candidates (unfoldable |
| 1046 | // branch instructions or switch instructions) and no unswitch |
| 1047 | // can happen. Exit and return false. |
| 1048 | if (!currentLoop->contains(CurrentBB) || !Visited.insert(CurrentBB).second) |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1049 | return false; |
| 1050 | |
Chen Li | 145c2f5 | 2015-07-25 03:21:06 +0000 | [diff] [blame] | 1051 | // Check if this loop will execute any side-effecting instructions (e.g. |
| 1052 | // stores, calls, volatile loads) in the part of the loop that the code |
| 1053 | // *would* execute. Check the header first. |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 1054 | for (Instruction &I : *CurrentBB) |
| 1055 | if (I.mayHaveSideEffects()) |
Chen Li | 145c2f5 | 2015-07-25 03:21:06 +0000 | [diff] [blame] | 1056 | return false; |
| 1057 | |
Chen Li | 145c2f5 | 2015-07-25 03:21:06 +0000 | [diff] [blame] | 1058 | if (BranchInst *BI = dyn_cast<BranchInst>(CurrentTerm)) { |
| 1059 | if (BI->isUnconditional()) { |
| 1060 | CurrentBB = BI->getSuccessor(0); |
| 1061 | } else if (BI->getCondition() == ConstantInt::getTrue(Context)) { |
| 1062 | CurrentBB = BI->getSuccessor(0); |
| 1063 | } else if (BI->getCondition() == ConstantInt::getFalse(Context)) { |
| 1064 | CurrentBB = BI->getSuccessor(1); |
| 1065 | } else { |
Sanjay Patel | 41f3d95 | 2015-08-11 21:11:56 +0000 | [diff] [blame] | 1066 | // Found a trivial condition candidate: non-foldable conditional branch. |
Chen Li | 145c2f5 | 2015-07-25 03:21:06 +0000 | [diff] [blame] | 1067 | break; |
| 1068 | } |
Xin Tong | e5f8d64 | 2017-01-27 01:42:20 +0000 | [diff] [blame] | 1069 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurrentTerm)) { |
| 1070 | // At this point, any constant-foldable instructions should have probably |
| 1071 | // been folded. |
| 1072 | ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition()); |
| 1073 | if (!Cond) |
| 1074 | break; |
| 1075 | // Find the target block we are definitely going to. |
Chandler Carruth | 927d8e6 | 2017-04-12 07:27:28 +0000 | [diff] [blame] | 1076 | CurrentBB = SI->findCaseValue(Cond)->getCaseSuccessor(); |
Karl-Johan Karlsson | 38cbf58 | 2017-02-14 07:31:36 +0000 | [diff] [blame] | 1077 | } else { |
Xin Tong | e5f8d64 | 2017-01-27 01:42:20 +0000 | [diff] [blame] | 1078 | // We do not understand these terminator instructions. |
Chen Li | 145c2f5 | 2015-07-25 03:21:06 +0000 | [diff] [blame] | 1079 | break; |
| 1080 | } |
| 1081 | |
| 1082 | CurrentTerm = CurrentBB->getTerminator(); |
| 1083 | } |
| 1084 | |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1085 | // CondVal is the condition that controls the trivial condition. |
| 1086 | // LoopExitBB is the BasicBlock that loop exits when meets trivial condition. |
| 1087 | Constant *CondVal = nullptr; |
| 1088 | BasicBlock *LoopExitBB = nullptr; |
| 1089 | |
Chen Li | 145c2f5 | 2015-07-25 03:21:06 +0000 | [diff] [blame] | 1090 | if (BranchInst *BI = dyn_cast<BranchInst>(CurrentTerm)) { |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1091 | // If this isn't branching on an invariant condition, we can't unswitch it. |
| 1092 | if (!BI->isConditional()) |
| 1093 | return false; |
| 1094 | |
| 1095 | Value *LoopCond = FindLIVLoopCondition(BI->getCondition(), |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 1096 | currentLoop, Changed).first; |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1097 | |
| 1098 | // Unswitch only if the trivial condition itself is an LIV (not |
| 1099 | // partial LIV which could occur in and/or) |
| 1100 | if (!LoopCond || LoopCond != BI->getCondition()) |
| 1101 | return false; |
| 1102 | |
| 1103 | // Check to see if a successor of the branch is guaranteed to |
| 1104 | // exit through a unique exit block without having any |
| 1105 | // side-effects. If so, determine the value of Cond that causes |
| 1106 | // it to do this. |
| 1107 | if ((LoopExitBB = isTrivialLoopExitBlock(currentLoop, |
| 1108 | BI->getSuccessor(0)))) { |
| 1109 | CondVal = ConstantInt::getTrue(Context); |
| 1110 | } else if ((LoopExitBB = isTrivialLoopExitBlock(currentLoop, |
| 1111 | BI->getSuccessor(1)))) { |
| 1112 | CondVal = ConstantInt::getFalse(Context); |
| 1113 | } |
| 1114 | |
Sanjay Patel | 41f3d95 | 2015-08-11 21:11:56 +0000 | [diff] [blame] | 1115 | // If we didn't find a single unique LoopExit block, or if the loop exit |
| 1116 | // block contains phi nodes, this isn't trivial. |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1117 | if (!LoopExitBB || isa<PHINode>(LoopExitBB->begin())) |
| 1118 | return false; // Can't handle this. |
| 1119 | |
Wei Mi | fc0e245 | 2017-07-25 23:37:17 +0000 | [diff] [blame] | 1120 | if (EqualityPropUnSafe(*LoopCond)) |
| 1121 | return false; |
| 1122 | |
Sanjay Patel | 41f3d95 | 2015-08-11 21:11:56 +0000 | [diff] [blame] | 1123 | UnswitchTrivialCondition(currentLoop, LoopCond, CondVal, LoopExitBB, |
| 1124 | CurrentTerm); |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1125 | ++NumBranches; |
| 1126 | return true; |
Chen Li | 145c2f5 | 2015-07-25 03:21:06 +0000 | [diff] [blame] | 1127 | } else if (SwitchInst *SI = dyn_cast<SwitchInst>(CurrentTerm)) { |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1128 | // If this isn't switching on an invariant condition, we can't unswitch it. |
| 1129 | Value *LoopCond = FindLIVLoopCondition(SI->getCondition(), |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 1130 | currentLoop, Changed).first; |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1131 | |
| 1132 | // Unswitch only if the trivial condition itself is an LIV (not |
| 1133 | // partial LIV which could occur in and/or) |
| 1134 | if (!LoopCond || LoopCond != SI->getCondition()) |
| 1135 | return false; |
| 1136 | |
| 1137 | // Check to see if a successor of the switch is guaranteed to go to the |
| 1138 | // latch block or exit through a one exit block without having any |
| 1139 | // side-effects. If so, determine the value of Cond that causes it to do |
| 1140 | // this. |
| 1141 | // Note that we can't trivially unswitch on the default case or |
| 1142 | // on already unswitched cases. |
Chandler Carruth | 927d8e6 | 2017-04-12 07:27:28 +0000 | [diff] [blame] | 1143 | for (auto Case : SI->cases()) { |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1144 | BasicBlock *LoopExitCandidate; |
Chandler Carruth | 927d8e6 | 2017-04-12 07:27:28 +0000 | [diff] [blame] | 1145 | if ((LoopExitCandidate = |
| 1146 | isTrivialLoopExitBlock(currentLoop, Case.getCaseSuccessor()))) { |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1147 | // Okay, we found a trivial case, remember the value that is trivial. |
Chandler Carruth | 927d8e6 | 2017-04-12 07:27:28 +0000 | [diff] [blame] | 1148 | ConstantInt *CaseVal = Case.getCaseValue(); |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1149 | |
| 1150 | // Check that it was not unswitched before, since already unswitched |
| 1151 | // trivial vals are looks trivial too. |
| 1152 | if (BranchesInfo.isUnswitched(SI, CaseVal)) |
| 1153 | continue; |
| 1154 | LoopExitBB = LoopExitCandidate; |
| 1155 | CondVal = CaseVal; |
| 1156 | break; |
| 1157 | } |
| 1158 | } |
| 1159 | |
Sanjay Patel | 41f3d95 | 2015-08-11 21:11:56 +0000 | [diff] [blame] | 1160 | // If we didn't find a single unique LoopExit block, or if the loop exit |
| 1161 | // block contains phi nodes, this isn't trivial. |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1162 | if (!LoopExitBB || isa<PHINode>(LoopExitBB->begin())) |
| 1163 | return false; // Can't handle this. |
| 1164 | |
Sanjay Patel | 41f3d95 | 2015-08-11 21:11:56 +0000 | [diff] [blame] | 1165 | UnswitchTrivialCondition(currentLoop, LoopCond, CondVal, LoopExitBB, |
| 1166 | nullptr); |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 1167 | |
| 1168 | // We are only unswitching full LIV. |
| 1169 | BranchesInfo.setUnswitched(SI, CondVal); |
Chen Li | c0f3a15 | 2015-07-22 05:26:29 +0000 | [diff] [blame] | 1170 | ++NumSwitches; |
| 1171 | return true; |
| 1172 | } |
| 1173 | return false; |
| 1174 | } |
| 1175 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 1176 | /// Split all of the edges from inside the loop to their exit blocks. |
| 1177 | /// Update the appropriate Phi nodes as we do so. |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1178 | void LoopUnswitch::SplitExitEdges(Loop *L, |
Craig Topper | b94011f | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 1179 | const SmallVectorImpl<BasicBlock *> &ExitBlocks){ |
Devang Patel | a69f987 | 2007-10-05 22:29:34 +0000 | [diff] [blame] | 1180 | |
Chris Lattner | ed7a67b | 2006-02-10 01:24:09 +0000 | [diff] [blame] | 1181 | for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) { |
Chris Lattner | fe4151e | 2006-02-10 23:16:39 +0000 | [diff] [blame] | 1182 | BasicBlock *ExitBlock = ExitBlocks[i]; |
Dan Gohman | 3ddbc24 | 2009-09-08 15:45:00 +0000 | [diff] [blame] | 1183 | SmallVector<BasicBlock *, 4> Preds(pred_begin(ExitBlock), |
| 1184 | pred_end(ExitBlock)); |
Bill Wendling | 90f90da | 2011-09-27 00:59:31 +0000 | [diff] [blame] | 1185 | |
Nick Lewycky | 6115824 | 2011-06-03 06:27:15 +0000 | [diff] [blame] | 1186 | // Although SplitBlockPredecessors doesn't preserve loop-simplify in |
| 1187 | // general, if we call it on all predecessors of all exits then it does. |
Chandler Carruth | 96ada25 | 2015-07-22 09:52:54 +0000 | [diff] [blame] | 1188 | SplitBlockPredecessors(ExitBlock, Preds, ".us-lcssa", DT, LI, |
Philip Reames | 9198b33 | 2015-01-28 23:06:47 +0000 | [diff] [blame] | 1189 | /*PreserveLCSSA*/ true); |
Chris Lattner | ed7a67b | 2006-02-10 01:24:09 +0000 | [diff] [blame] | 1190 | } |
Devang Patel | e192e325 | 2007-10-03 21:16:08 +0000 | [diff] [blame] | 1191 | } |
| 1192 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 1193 | /// We determined that the loop is profitable to unswitch when LIC equal Val. |
| 1194 | /// Split it into loop versions and test the condition outside of either loop. |
| 1195 | /// Return the loops created as Out1/Out2. |
Andrew Trick | 4442bfe | 2012-04-10 05:14:42 +0000 | [diff] [blame] | 1196 | void LoopUnswitch::UnswitchNontrivialCondition(Value *LIC, Constant *Val, |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 1197 | Loop *L, TerminatorInst *TI) { |
Devang Patel | e149d4e | 2008-07-02 01:18:13 +0000 | [diff] [blame] | 1198 | Function *F = loopHeader->getParent(); |
David Greene | d9c355d | 2010-01-05 01:27:04 +0000 | [diff] [blame] | 1199 | DEBUG(dbgs() << "loop-unswitch: Unswitching loop %" |
Daniel Dunbar | 0dd5e1e | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 1200 | << loopHeader->getName() << " [" << L->getBlocks().size() |
| 1201 | << " blocks] in Function " << F->getName() |
| 1202 | << " when '" << *Val << "' == " << *LIC << "\n"); |
Devang Patel | e192e325 | 2007-10-03 21:16:08 +0000 | [diff] [blame] | 1203 | |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 1204 | if (auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>()) |
| 1205 | SEWP->getSE().forgetLoop(L); |
Cameron Zwarich | 99de19b | 2011-02-11 06:08:28 +0000 | [diff] [blame] | 1206 | |
Devang Patel | ed50fb5 | 2008-07-02 01:44:29 +0000 | [diff] [blame] | 1207 | LoopBlocks.clear(); |
| 1208 | NewBlocks.clear(); |
Devang Patel | e192e325 | 2007-10-03 21:16:08 +0000 | [diff] [blame] | 1209 | |
| 1210 | // First step, split the preheader and exit blocks, and add these blocks to |
| 1211 | // the LoopBlocks list. |
Chandler Carruth | d450056 | 2015-01-19 12:36:53 +0000 | [diff] [blame] | 1212 | BasicBlock *NewPreheader = SplitEdge(loopPreheader, loopHeader, DT, LI); |
Devang Patel | e192e325 | 2007-10-03 21:16:08 +0000 | [diff] [blame] | 1213 | LoopBlocks.push_back(NewPreheader); |
| 1214 | |
| 1215 | // We want the loop to come after the preheader, but before the exit blocks. |
| 1216 | LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end()); |
| 1217 | |
| 1218 | SmallVector<BasicBlock*, 8> ExitBlocks; |
| 1219 | L->getUniqueExitBlocks(ExitBlocks); |
| 1220 | |
| 1221 | // Split all of the edges from inside the loop to their exit blocks. Update |
| 1222 | // the appropriate Phi nodes as we do so. |
Devang Patel | eb611dd | 2008-07-03 17:37:52 +0000 | [diff] [blame] | 1223 | SplitExitEdges(L, ExitBlocks); |
Devang Patel | e192e325 | 2007-10-03 21:16:08 +0000 | [diff] [blame] | 1224 | |
Chris Lattner | fe4151e | 2006-02-10 23:16:39 +0000 | [diff] [blame] | 1225 | // The exit blocks may have been changed due to edge splitting, recompute. |
| 1226 | ExitBlocks.clear(); |
Devang Patel | f489d0f | 2006-08-29 22:29:16 +0000 | [diff] [blame] | 1227 | L->getUniqueExitBlocks(ExitBlocks); |
| 1228 | |
Chris Lattner | fe4151e | 2006-02-10 23:16:39 +0000 | [diff] [blame] | 1229 | // Add exit blocks to the loop blocks. |
| 1230 | LoopBlocks.insert(LoopBlocks.end(), ExitBlocks.begin(), ExitBlocks.end()); |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1231 | |
| 1232 | // Next step, clone all of the basic blocks that make up the loop (including |
| 1233 | // the loop preheader and exit blocks), keeping track of the mapping between |
| 1234 | // the instructions and blocks. |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1235 | NewBlocks.reserve(LoopBlocks.size()); |
Rafael Espindola | 229e38f | 2010-10-13 01:36:30 +0000 | [diff] [blame] | 1236 | ValueToValueMapTy VMap; |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1237 | for (unsigned i = 0, e = LoopBlocks.size(); i != e; ++i) { |
Devang Patel | 0dc3c2d | 2010-06-24 00:33:28 +0000 | [diff] [blame] | 1238 | BasicBlock *NewBB = CloneBasicBlock(LoopBlocks[i], VMap, ".us", F); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1239 | |
Evan Cheng | ba93044 | 2010-04-05 21:16:25 +0000 | [diff] [blame] | 1240 | NewBlocks.push_back(NewBB); |
Devang Patel | 0dc3c2d | 2010-06-24 00:33:28 +0000 | [diff] [blame] | 1241 | VMap[LoopBlocks[i]] = NewBB; // Keep the BB mapping. |
Evan Cheng | ba93044 | 2010-04-05 21:16:25 +0000 | [diff] [blame] | 1242 | LPM->cloneBasicBlockSimpleAnalysis(LoopBlocks[i], NewBB, L); |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1243 | } |
| 1244 | |
| 1245 | // Splice the newly inserted blocks into the function right before the |
| 1246 | // original preheader. |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 1247 | F->getBasicBlockList().splice(NewPreheader->getIterator(), |
| 1248 | F->getBasicBlockList(), |
| 1249 | NewBlocks[0]->getIterator(), F->end()); |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1250 | |
| 1251 | // Now we create the new Loop object for the versioned loop. |
Devang Patel | 0dc3c2d | 2010-06-24 00:33:28 +0000 | [diff] [blame] | 1252 | Loop *NewLoop = CloneLoop(L, L->getParentLoop(), VMap, LI, LPM); |
Stepan Dyatkovskiy | cb2adbac | 2012-01-15 09:44:07 +0000 | [diff] [blame] | 1253 | |
| 1254 | // Recalculate unswitching quota, inherit simplified switches info for NewBB, |
| 1255 | // Probably clone more loop-unswitch related loop properties. |
| 1256 | BranchesInfo.cloneData(NewLoop, L, VMap); |
| 1257 | |
Chris Lattner | f1b1516 | 2006-02-10 23:26:14 +0000 | [diff] [blame] | 1258 | Loop *ParentLoop = L->getParentLoop(); |
| 1259 | if (ParentLoop) { |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1260 | // Make sure to add the cloned preheader and exit blocks to the parent loop |
| 1261 | // as well. |
Chandler Carruth | 691addc | 2015-01-18 01:25:51 +0000 | [diff] [blame] | 1262 | ParentLoop->addBasicBlockToLoop(NewBlocks[0], *LI); |
Chris Lattner | f1b1516 | 2006-02-10 23:26:14 +0000 | [diff] [blame] | 1263 | } |
Bill Wendling | 90f90da | 2011-09-27 00:59:31 +0000 | [diff] [blame] | 1264 | |
Chris Lattner | f1b1516 | 2006-02-10 23:26:14 +0000 | [diff] [blame] | 1265 | for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i) { |
Devang Patel | 0dc3c2d | 2010-06-24 00:33:28 +0000 | [diff] [blame] | 1266 | BasicBlock *NewExit = cast<BasicBlock>(VMap[ExitBlocks[i]]); |
Chris Lattner | 8e44ff5 | 2006-02-18 00:55:32 +0000 | [diff] [blame] | 1267 | // The new exit block should be in the same loop as the old one. |
| 1268 | if (Loop *ExitBBLoop = LI->getLoopFor(ExitBlocks[i])) |
Chandler Carruth | 691addc | 2015-01-18 01:25:51 +0000 | [diff] [blame] | 1269 | ExitBBLoop->addBasicBlockToLoop(NewExit, *LI); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1270 | |
Chris Lattner | f1b1516 | 2006-02-10 23:26:14 +0000 | [diff] [blame] | 1271 | assert(NewExit->getTerminator()->getNumSuccessors() == 1 && |
| 1272 | "Exit block should have been split to have one successor!"); |
| 1273 | BasicBlock *ExitSucc = NewExit->getTerminator()->getSuccessor(0); |
Devang Patel | eb611dd | 2008-07-03 17:37:52 +0000 | [diff] [blame] | 1274 | |
Chris Lattner | f1b1516 | 2006-02-10 23:26:14 +0000 | [diff] [blame] | 1275 | // If the successor of the exit block had PHI nodes, add an entry for |
| 1276 | // NewExit. |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 1277 | for (BasicBlock::iterator I = ExitSucc->begin(); |
| 1278 | PHINode *PN = dyn_cast<PHINode>(I); ++I) { |
Chris Lattner | f1b1516 | 2006-02-10 23:26:14 +0000 | [diff] [blame] | 1279 | Value *V = PN->getIncomingValueForBlock(ExitBlocks[i]); |
Rafael Espindola | 229e38f | 2010-10-13 01:36:30 +0000 | [diff] [blame] | 1280 | ValueToValueMapTy::iterator It = VMap.find(V); |
Devang Patel | 0dc3c2d | 2010-06-24 00:33:28 +0000 | [diff] [blame] | 1281 | if (It != VMap.end()) V = It->second; |
Chris Lattner | f1b1516 | 2006-02-10 23:26:14 +0000 | [diff] [blame] | 1282 | PN->addIncoming(V, NewExit); |
| 1283 | } |
Bill Wendling | 90f90da | 2011-09-27 00:59:31 +0000 | [diff] [blame] | 1284 | |
| 1285 | if (LandingPadInst *LPad = NewExit->getLandingPadInst()) { |
Jakub Staszak | 27da123 | 2013-08-06 17:03:42 +0000 | [diff] [blame] | 1286 | PHINode *PN = PHINode::Create(LPad->getType(), 0, "", |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 1287 | &*ExitSucc->getFirstInsertionPt()); |
Bill Wendling | 90f90da | 2011-09-27 00:59:31 +0000 | [diff] [blame] | 1288 | |
Duncan P. N. Exon Smith | 6c99015 | 2014-07-21 17:06:51 +0000 | [diff] [blame] | 1289 | for (pred_iterator I = pred_begin(ExitSucc), E = pred_end(ExitSucc); |
| 1290 | I != E; ++I) { |
| 1291 | BasicBlock *BB = *I; |
Bill Wendling | 90f90da | 2011-09-27 00:59:31 +0000 | [diff] [blame] | 1292 | LandingPadInst *LPI = BB->getLandingPadInst(); |
| 1293 | LPI->replaceAllUsesWith(PN); |
| 1294 | PN->addIncoming(LPI, BB); |
| 1295 | } |
| 1296 | } |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1297 | } |
| 1298 | |
| 1299 | // Rewrite the code to refer to itself. |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 1300 | for (unsigned i = 0, e = NewBlocks.size(); i != e; ++i) { |
| 1301 | for (Instruction &I : *NewBlocks[i]) { |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 1302 | RemapInstruction(&I, VMap, |
Duncan P. N. Exon Smith | da68cbc | 2016-04-07 00:26:43 +0000 | [diff] [blame] | 1303 | RF_NoModuleLevelChanges | RF_IgnoreMissingLocals); |
Daniel Jasper | aec2fa3 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 1304 | if (auto *II = dyn_cast<IntrinsicInst>(&I)) |
| 1305 | if (II->getIntrinsicID() == Intrinsic::assume) |
| 1306 | AC->registerAssumption(II); |
| 1307 | } |
| 1308 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1309 | |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1310 | // Rewrite the original preheader to select between versions of the loop. |
Devang Patel | e149d4e | 2008-07-02 01:18:13 +0000 | [diff] [blame] | 1311 | BranchInst *OldBR = cast<BranchInst>(loopPreheader->getTerminator()); |
Chris Lattner | b0cbe71 | 2006-02-15 00:07:43 +0000 | [diff] [blame] | 1312 | assert(OldBR->isUnconditional() && OldBR->getSuccessor(0) == LoopBlocks[0] && |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1313 | "Preheader splitting did not work correctly!"); |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1314 | |
Chris Lattner | b0cbe71 | 2006-02-15 00:07:43 +0000 | [diff] [blame] | 1315 | // Emit the new branch that selects between the two versions of this loop. |
Weiming Zhao | f1abad5 | 2015-06-23 05:31:09 +0000 | [diff] [blame] | 1316 | EmitPreheaderBranchOnCondition(LIC, Val, NewBlocks[0], LoopBlocks[0], OldBR, |
| 1317 | TI); |
Devang Patel | d491198 | 2007-07-31 08:03:26 +0000 | [diff] [blame] | 1318 | LPM->deleteSimpleAnalysisValue(OldBR, L); |
Jakub Kuderski | e35a449 | 2017-08-17 16:45:35 +0000 | [diff] [blame] | 1319 | |
| 1320 | // The OldBr was replaced by a new one and removed (but not erased) by |
| 1321 | // EmitPreheaderBranchOnCondition. It is no longer needed, so delete it. |
| 1322 | delete OldBR; |
Devang Patel | a882328 | 2007-08-02 15:25:57 +0000 | [diff] [blame] | 1323 | |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 1324 | LoopProcessWorklist.push_back(NewLoop); |
Devang Patel | 7d165e1 | 2007-07-30 23:07:10 +0000 | [diff] [blame] | 1325 | redoLoop = true; |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1326 | |
Sanjoy Das | e6bca0e | 2017-05-01 17:07:49 +0000 | [diff] [blame] | 1327 | // Keep a WeakTrackingVH holding onto LIC. If the first call to |
| 1328 | // RewriteLoopBody |
Sanjoy Das | 2cbeb00 | 2017-04-26 16:37:05 +0000 | [diff] [blame] | 1329 | // deletes the instruction (for example by simplifying a PHI that feeds into |
| 1330 | // the condition that we're unswitching on), we don't rewrite the second |
| 1331 | // iteration. |
Sanjoy Das | e6bca0e | 2017-05-01 17:07:49 +0000 | [diff] [blame] | 1332 | WeakTrackingVH LICHandle(LIC); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1333 | |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1334 | // Now we rewrite the original code to know that the condition is true and the |
| 1335 | // new code to know that the condition is false. |
Evan Cheng | ba93044 | 2010-04-05 21:16:25 +0000 | [diff] [blame] | 1336 | RewriteLoopBodyWithConditionConstant(L, LIC, Val, false); |
Devang Patel | eb611dd | 2008-07-03 17:37:52 +0000 | [diff] [blame] | 1337 | |
Chris Lattner | 5814d9d9 | 2010-04-20 05:09:16 +0000 | [diff] [blame] | 1338 | // It's possible that simplifying one loop could cause the other to be |
| 1339 | // changed to another value or a constant. If its a constant, don't simplify |
| 1340 | // it. |
| 1341 | if (!LoopProcessWorklist.empty() && LoopProcessWorklist.back() == NewLoop && |
| 1342 | LICHandle && !isa<Constant>(LICHandle)) |
| 1343 | RewriteLoopBodyWithConditionConstant(NewLoop, LICHandle, Val, true); |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1344 | } |
| 1345 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 1346 | /// Remove all instances of I from the worklist vector specified. |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1347 | static void RemoveFromWorklist(Instruction *I, |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1348 | std::vector<Instruction*> &Worklist) { |
Jakub Staszak | 8f46e91 | 2012-10-16 19:52:32 +0000 | [diff] [blame] | 1349 | |
| 1350 | Worklist.erase(std::remove(Worklist.begin(), Worklist.end(), I), |
| 1351 | Worklist.end()); |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1352 | } |
| 1353 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 1354 | /// When we find that I really equals V, remove I from the |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1355 | /// program, replacing all uses with V and update the worklist. |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1356 | static void ReplaceUsesOfWith(Instruction *I, Value *V, |
Devang Patel | d491198 | 2007-07-31 08:03:26 +0000 | [diff] [blame] | 1357 | std::vector<Instruction*> &Worklist, |
| 1358 | Loop *L, LPPassManager *LPM) { |
Davide Italiano | e27cb87 | 2017-04-28 21:30:50 +0000 | [diff] [blame] | 1359 | DEBUG(dbgs() << "Replace with '" << *V << "': " << *I << "\n"); |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1360 | |
| 1361 | // Add uses to the worklist, which may be dead now. |
| 1362 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
| 1363 | if (Instruction *Use = dyn_cast<Instruction>(I->getOperand(i))) |
| 1364 | Worklist.push_back(Use); |
| 1365 | |
| 1366 | // Add users to the worklist which may be simplified now. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1367 | for (User *U : I->users()) |
| 1368 | Worklist.push_back(cast<Instruction>(U)); |
Devang Patel | d491198 | 2007-07-31 08:03:26 +0000 | [diff] [blame] | 1369 | LPM->deleteSimpleAnalysisValue(I, L); |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1370 | RemoveFromWorklist(I, Worklist); |
Devang Patel | 83cc3f8 | 2007-09-20 23:45:50 +0000 | [diff] [blame] | 1371 | I->replaceAllUsesWith(V); |
Davide Italiano | 534e314 | 2017-04-29 00:12:18 +0000 | [diff] [blame] | 1372 | if (!I->mayHaveSideEffects()) |
| 1373 | I->eraseFromParent(); |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1374 | ++NumSimplify; |
| 1375 | } |
| 1376 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 1377 | /// We know either that the value LIC has the value specified by Val in the |
| 1378 | /// specified loop, or we know it does NOT have that value. |
| 1379 | /// Rewrite any uses of LIC or of properties correlated to it. |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1380 | void LoopUnswitch::RewriteLoopBodyWithConditionConstant(Loop *L, Value *LIC, |
Chris Lattner | fbadd7e | 2006-02-11 00:43:37 +0000 | [diff] [blame] | 1381 | Constant *Val, |
| 1382 | bool IsEqual) { |
Chris Lattner | ed7a67b | 2006-02-10 01:24:09 +0000 | [diff] [blame] | 1383 | assert(!isa<Constant>(LIC) && "Why are we unswitching on a constant?"); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1384 | |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1385 | // FIXME: Support correlated properties, like: |
| 1386 | // for (...) |
| 1387 | // if (li1 < li2) |
| 1388 | // ... |
| 1389 | // if (li1 > li2) |
| 1390 | // ... |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1391 | |
Chris Lattner | 6e26315 | 2006-02-10 02:30:37 +0000 | [diff] [blame] | 1392 | // FOLD boolean conditions (X|LIC), (X&LIC). Fold conditional branches, |
| 1393 | // selects, switches. |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1394 | std::vector<Instruction*> Worklist; |
Owen Anderson | 47db941 | 2009-07-22 00:24:57 +0000 | [diff] [blame] | 1395 | LLVMContext &Context = Val->getContext(); |
| 1396 | |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1397 | // If we know that LIC == Val, or that LIC == NotVal, just replace uses of LIC |
| 1398 | // in the loop with the appropriate one directly. |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1399 | if (IsEqual || (isa<ConstantInt>(Val) && |
Duncan Sands | 9dff9be | 2010-02-15 16:12:20 +0000 | [diff] [blame] | 1400 | Val->getType()->isIntegerTy(1))) { |
Chris Lattner | 8a5a324 | 2006-02-22 06:37:14 +0000 | [diff] [blame] | 1401 | Value *Replacement; |
| 1402 | if (IsEqual) |
| 1403 | Replacement = Val; |
| 1404 | else |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1405 | Replacement = ConstantInt::get(Type::getInt1Ty(Val->getContext()), |
Reid Spencer | cddc9df | 2007-01-12 04:24:46 +0000 | [diff] [blame] | 1406 | !cast<ConstantInt>(Val)->getZExtValue()); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1407 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1408 | for (User *U : LIC->users()) { |
| 1409 | Instruction *UI = dyn_cast<Instruction>(U); |
| 1410 | if (!UI || !L->contains(UI)) |
Evan Cheng | 1b55f56 | 2011-05-24 23:12:57 +0000 | [diff] [blame] | 1411 | continue; |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1412 | Worklist.push_back(UI); |
Evan Cheng | 1b55f56 | 2011-05-24 23:12:57 +0000 | [diff] [blame] | 1413 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1414 | |
Benjamin Kramer | 135f735 | 2016-06-26 12:28:59 +0000 | [diff] [blame] | 1415 | for (Instruction *UI : Worklist) |
| 1416 | UI->replaceUsesOfWith(LIC, Replacement); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1417 | |
Chris Lattner | c832c1b | 2010-04-05 21:18:32 +0000 | [diff] [blame] | 1418 | SimplifyCode(Worklist, L); |
| 1419 | return; |
| 1420 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1421 | |
Chris Lattner | c832c1b | 2010-04-05 21:18:32 +0000 | [diff] [blame] | 1422 | // Otherwise, we don't know the precise value of LIC, but we do know that it |
| 1423 | // is certainly NOT "Val". As such, simplify any uses in the loop that we |
| 1424 | // can. This case occurs when we unswitch switch statements. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1425 | for (User *U : LIC->users()) { |
| 1426 | Instruction *UI = dyn_cast<Instruction>(U); |
| 1427 | if (!UI || !L->contains(UI)) |
Chris Lattner | c832c1b | 2010-04-05 21:18:32 +0000 | [diff] [blame] | 1428 | continue; |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1429 | |
Xin Tong | ec6f90b | 2017-02-23 23:42:19 +0000 | [diff] [blame] | 1430 | // At this point, we know LIC is definitely not Val. Try to use some simple |
| 1431 | // logic to simplify the user w.r.t. to the context. |
| 1432 | if (Value *Replacement = SimplifyInstructionWithNotEqual(UI, LIC, Val)) { |
| 1433 | if (LI->replacementPreservesLCSSAForm(UI, Replacement)) { |
| 1434 | // This in-loop instruction has been simplified w.r.t. its context, |
| 1435 | // i.e. LIC != Val, make sure we propagate its replacement value to |
| 1436 | // all its users. |
Xin Tong | f51d804 | 2017-02-24 01:43:36 +0000 | [diff] [blame] | 1437 | // |
| 1438 | // We can not yet delete UI, the LIC user, yet, because that would invalidate |
| 1439 | // the LIC->users() iterator !. However, we can make this instruction |
| 1440 | // dead by replacing all its users and push it onto the worklist so that |
| 1441 | // it can be properly deleted and its operands simplified. |
| 1442 | UI->replaceAllUsesWith(Replacement); |
Xin Tong | ec6f90b | 2017-02-23 23:42:19 +0000 | [diff] [blame] | 1443 | } |
| 1444 | } |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1445 | |
Xin Tong | 01feb29 | 2017-02-28 03:32:41 +0000 | [diff] [blame] | 1446 | // This is a LIC user, push it into the worklist so that SimplifyCode can |
| 1447 | // attempt to simplify it. |
Xin Tong | ec6f90b | 2017-02-23 23:42:19 +0000 | [diff] [blame] | 1448 | Worklist.push_back(UI); |
Chris Lattner | c832c1b | 2010-04-05 21:18:32 +0000 | [diff] [blame] | 1449 | |
| 1450 | // If we know that LIC is not Val, use this info to simplify code. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 1451 | SwitchInst *SI = dyn_cast<SwitchInst>(UI); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 1452 | if (!SI || !isa<ConstantInt>(Val)) continue; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1453 | |
Xin Tong | 16b85a6 | 2017-02-27 18:00:13 +0000 | [diff] [blame] | 1454 | // NOTE: if a case value for the switch is unswitched out, we record it |
| 1455 | // after the unswitch finishes. We can not record it here as the switch |
| 1456 | // is not a direct user of the partial LIV. |
Chandler Carruth | 927d8e6 | 2017-04-12 07:27:28 +0000 | [diff] [blame] | 1457 | SwitchInst::CaseHandle DeadCase = |
| 1458 | *SI->findCaseValue(cast<ConstantInt>(Val)); |
Stepan Dyatkovskiy | 513aaa5 | 2012-02-01 07:49:51 +0000 | [diff] [blame] | 1459 | // Default case is live for multiple values. |
Chandler Carruth | 927d8e6 | 2017-04-12 07:27:28 +0000 | [diff] [blame] | 1460 | if (DeadCase == *SI->case_default()) |
| 1461 | continue; |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1462 | |
| 1463 | // Found a dead case value. Don't remove PHI nodes in the |
Chris Lattner | c832c1b | 2010-04-05 21:18:32 +0000 | [diff] [blame] | 1464 | // successor if they become single-entry, those PHI nodes may |
| 1465 | // be in the Users list. |
Nick Lewycky | 6115824 | 2011-06-03 06:27:15 +0000 | [diff] [blame] | 1466 | |
Evan Cheng | 1b55f56 | 2011-05-24 23:12:57 +0000 | [diff] [blame] | 1467 | BasicBlock *Switch = SI->getParent(); |
Stepan Dyatkovskiy | 5b648af | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 1468 | BasicBlock *SISucc = DeadCase.getCaseSuccessor(); |
Evan Cheng | 1b55f56 | 2011-05-24 23:12:57 +0000 | [diff] [blame] | 1469 | BasicBlock *Latch = L->getLoopLatch(); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1470 | |
Nick Lewycky | 6115824 | 2011-06-03 06:27:15 +0000 | [diff] [blame] | 1471 | if (!SI->findCaseDest(SISucc)) continue; // Edge is critical. |
Evan Cheng | 9605a69 | 2011-05-25 18:17:13 +0000 | [diff] [blame] | 1472 | // If the DeadCase successor dominates the loop latch, then the |
| 1473 | // transformation isn't safe since it will delete the sole predecessor edge |
| 1474 | // to the latch. |
| 1475 | if (Latch && DT->dominates(SISucc, Latch)) |
| 1476 | continue; |
Evan Cheng | 1b55f56 | 2011-05-24 23:12:57 +0000 | [diff] [blame] | 1477 | |
Chris Lattner | c832c1b | 2010-04-05 21:18:32 +0000 | [diff] [blame] | 1478 | // FIXME: This is a hack. We need to keep the successor around |
| 1479 | // and hooked up so as to preserve the loop structure, because |
| 1480 | // trying to update it is complicated. So instead we preserve the |
| 1481 | // loop structure and put the block on a dead code path. |
Chandler Carruth | d450056 | 2015-01-19 12:36:53 +0000 | [diff] [blame] | 1482 | SplitEdge(Switch, SISucc, DT, LI); |
Chris Lattner | c832c1b | 2010-04-05 21:18:32 +0000 | [diff] [blame] | 1483 | // Compute the successors instead of relying on the return value |
| 1484 | // of SplitEdge, since it may have split the switch successor |
| 1485 | // after PHI nodes. |
Stepan Dyatkovskiy | 5b648af | 2012-03-08 07:06:20 +0000 | [diff] [blame] | 1486 | BasicBlock *NewSISucc = DeadCase.getCaseSuccessor(); |
Chris Lattner | c832c1b | 2010-04-05 21:18:32 +0000 | [diff] [blame] | 1487 | BasicBlock *OldSISucc = *succ_begin(NewSISucc); |
| 1488 | // Create an "unreachable" destination. |
| 1489 | BasicBlock *Abort = BasicBlock::Create(Context, "us-unreachable", |
| 1490 | Switch->getParent(), |
| 1491 | OldSISucc); |
| 1492 | new UnreachableInst(Context, Abort); |
| 1493 | // Force the new case destination to branch to the "unreachable" |
| 1494 | // block while maintaining a (dead) CFG edge to the old block. |
| 1495 | NewSISucc->getTerminator()->eraseFromParent(); |
| 1496 | BranchInst::Create(Abort, OldSISucc, |
| 1497 | ConstantInt::getTrue(Context), NewSISucc); |
| 1498 | // Release the PHI operands for this edge. |
| 1499 | for (BasicBlock::iterator II = NewSISucc->begin(); |
| 1500 | PHINode *PN = dyn_cast<PHINode>(II); ++II) |
| 1501 | PN->setIncomingValue(PN->getBasicBlockIndex(Switch), |
| 1502 | UndefValue::get(PN->getType())); |
| 1503 | // Tell the domtree about the new block. We don't fully update the |
| 1504 | // domtree here -- instead we force it to do a full recomputation |
| 1505 | // after the pass is complete -- but we do need to inform it of |
| 1506 | // new blocks. |
Michael Zolotukhin | 9f3aea6 | 2015-09-22 00:22:47 +0000 | [diff] [blame] | 1507 | DT->addNewBlock(Abort, NewSISucc); |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1508 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1509 | |
Devang Patel | d491198 | 2007-07-31 08:03:26 +0000 | [diff] [blame] | 1510 | SimplifyCode(Worklist, L); |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 1511 | } |
| 1512 | |
Sanjay Patel | 956e29c | 2015-08-11 21:24:04 +0000 | [diff] [blame] | 1513 | /// Now that we have simplified some instructions in the loop, walk over it and |
| 1514 | /// constant prop, dce, and fold control flow where possible. Note that this is |
| 1515 | /// effectively a very simple loop-structure-aware optimizer. During processing |
| 1516 | /// of this loop, L could very well be deleted, so it must not be used. |
Chris Lattner | c2e3a7a | 2006-02-18 07:57:38 +0000 | [diff] [blame] | 1517 | /// |
| 1518 | /// FIXME: When the loop optimizer is more mature, separate this out to a new |
| 1519 | /// pass. |
| 1520 | /// |
Devang Patel | d491198 | 2007-07-31 08:03:26 +0000 | [diff] [blame] | 1521 | void LoopUnswitch::SimplifyCode(std::vector<Instruction*> &Worklist, Loop *L) { |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1522 | const DataLayout &DL = L->getHeader()->getModule()->getDataLayout(); |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1523 | while (!Worklist.empty()) { |
| 1524 | Instruction *I = Worklist.back(); |
| 1525 | Worklist.pop_back(); |
Duncan Sands | bb2cd02 | 2010-11-23 20:24:21 +0000 | [diff] [blame] | 1526 | |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1527 | // Simple DCE. |
| 1528 | if (isInstructionTriviallyDead(I)) { |
Davide Italiano | 0aaa96a | 2017-04-29 00:18:26 +0000 | [diff] [blame] | 1529 | DEBUG(dbgs() << "Remove dead instruction '" << *I << "\n"); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1530 | |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1531 | // Add uses to the worklist, which may be dead now. |
| 1532 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) |
| 1533 | if (Instruction *Use = dyn_cast<Instruction>(I->getOperand(i))) |
| 1534 | Worklist.push_back(Use); |
Devang Patel | d491198 | 2007-07-31 08:03:26 +0000 | [diff] [blame] | 1535 | LPM->deleteSimpleAnalysisValue(I, L); |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1536 | RemoveFromWorklist(I, Worklist); |
Devang Patel | 83cc3f8 | 2007-09-20 23:45:50 +0000 | [diff] [blame] | 1537 | I->eraseFromParent(); |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1538 | ++NumSimplify; |
| 1539 | continue; |
| 1540 | } |
Duncan Sands | aef146b | 2010-11-18 19:59:41 +0000 | [diff] [blame] | 1541 | |
Chris Lattner | 66e809a | 2010-04-20 05:33:18 +0000 | [diff] [blame] | 1542 | // See if instruction simplification can hack this up. This is common for |
| 1543 | // things like "select false, X, Y" after unswitching made the condition be |
Peter Collingbourne | 9a03c73 | 2012-05-20 01:32:09 +0000 | [diff] [blame] | 1544 | // 'false'. TODO: update the domtree properly so we can pass it here. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 1545 | if (Value *V = SimplifyInstruction(I, DL)) |
Duncan Sands | aef146b | 2010-11-18 19:59:41 +0000 | [diff] [blame] | 1546 | if (LI->replacementPreservesLCSSAForm(I, V)) { |
| 1547 | ReplaceUsesOfWith(I, V, Worklist, L, LPM); |
| 1548 | continue; |
| 1549 | } |
| 1550 | |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1551 | // Special case hacks that appear commonly in unswitched code. |
Chris Lattner | 66e809a | 2010-04-20 05:33:18 +0000 | [diff] [blame] | 1552 | if (BranchInst *BI = dyn_cast<BranchInst>(I)) { |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1553 | if (BI->isUnconditional()) { |
| 1554 | // If BI's parent is the only pred of the successor, fold the two blocks |
| 1555 | // together. |
| 1556 | BasicBlock *Pred = BI->getParent(); |
| 1557 | BasicBlock *Succ = BI->getSuccessor(0); |
| 1558 | BasicBlock *SinglePred = Succ->getSinglePredecessor(); |
| 1559 | if (!SinglePred) continue; // Nothing to do. |
| 1560 | assert(SinglePred == Pred && "CFG broken"); |
| 1561 | |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1562 | DEBUG(dbgs() << "Merging blocks: " << Pred->getName() << " <- " |
Daniel Dunbar | 0dd5e1e | 2009-07-25 00:23:56 +0000 | [diff] [blame] | 1563 | << Succ->getName() << "\n"); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1564 | |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1565 | // Resolve any single entry PHI nodes in Succ. |
| 1566 | while (PHINode *PN = dyn_cast<PHINode>(Succ->begin())) |
Devang Patel | d491198 | 2007-07-31 08:03:26 +0000 | [diff] [blame] | 1567 | ReplaceUsesOfWith(PN, PN->getIncomingValue(0), Worklist, L, LPM); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1568 | |
Jay Foad | 61ea0e4 | 2011-06-23 09:09:15 +0000 | [diff] [blame] | 1569 | // If Succ has any successors with PHI nodes, update them to have |
| 1570 | // entries coming from Pred instead of Succ. |
| 1571 | Succ->replaceAllUsesWith(Pred); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1572 | |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1573 | // Move all of the successor contents from Succ to Pred. |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 1574 | Pred->getInstList().splice(BI->getIterator(), Succ->getInstList(), |
| 1575 | Succ->begin(), Succ->end()); |
Devang Patel | d491198 | 2007-07-31 08:03:26 +0000 | [diff] [blame] | 1576 | LPM->deleteSimpleAnalysisValue(BI, L); |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1577 | RemoveFromWorklist(BI, Worklist); |
Xin Tong | 3caaa36 | 2017-01-06 21:49:08 +0000 | [diff] [blame] | 1578 | BI->eraseFromParent(); |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1579 | |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1580 | // Remove Succ from the loop tree. |
| 1581 | LI->removeBlock(Succ); |
Devang Patel | d491198 | 2007-07-31 08:03:26 +0000 | [diff] [blame] | 1582 | LPM->deleteSimpleAnalysisValue(Succ, L); |
Devang Patel | 83cc3f8 | 2007-09-20 23:45:50 +0000 | [diff] [blame] | 1583 | Succ->eraseFromParent(); |
Chris Lattner | 29f771b | 2006-02-18 01:27:45 +0000 | [diff] [blame] | 1584 | ++NumSimplify; |
Chris Lattner | 66e809a | 2010-04-20 05:33:18 +0000 | [diff] [blame] | 1585 | continue; |
Chris Lattner | c832c1b | 2010-04-05 21:18:32 +0000 | [diff] [blame] | 1586 | } |
Andrew Trick | 4104ed9 | 2012-04-10 05:14:37 +0000 | [diff] [blame] | 1587 | |
Chris Lattner | 66e809a | 2010-04-20 05:33:18 +0000 | [diff] [blame] | 1588 | continue; |
Chris Lattner | 6fd1362 | 2006-02-17 00:31:07 +0000 | [diff] [blame] | 1589 | } |
| 1590 | } |
Chris Lattner | f48f777 | 2004-04-19 18:07:02 +0000 | [diff] [blame] | 1591 | } |
Xin Tong | ec6f90b | 2017-02-23 23:42:19 +0000 | [diff] [blame] | 1592 | |
| 1593 | /// Simple simplifications we can do given the information that Cond is |
| 1594 | /// definitely not equal to Val. |
| 1595 | Value *LoopUnswitch::SimplifyInstructionWithNotEqual(Instruction *Inst, |
| 1596 | Value *Invariant, |
| 1597 | Constant *Val) { |
| 1598 | // icmp eq cond, val -> false |
| 1599 | ICmpInst *CI = dyn_cast<ICmpInst>(Inst); |
| 1600 | if (CI && CI->isEquality()) { |
| 1601 | Value *Op0 = CI->getOperand(0); |
| 1602 | Value *Op1 = CI->getOperand(1); |
| 1603 | if ((Op0 == Invariant && Op1 == Val) || (Op0 == Val && Op1 == Invariant)) { |
| 1604 | LLVMContext &Ctx = Inst->getContext(); |
| 1605 | if (CI->getPredicate() == CmpInst::ICMP_EQ) |
| 1606 | return ConstantInt::getFalse(Ctx); |
| 1607 | else |
| 1608 | return ConstantInt::getTrue(Ctx); |
| 1609 | } |
| 1610 | } |
| 1611 | |
| 1612 | // FIXME: there may be other opportunities, e.g. comparison with floating |
| 1613 | // point, or Invariant - Val != 0, etc. |
| 1614 | return nullptr; |
| 1615 | } |