Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 1 | //===-- LICM.cpp - Loop Invariant Code Motion Pass ------------------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +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 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | c051768 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 10 | // This pass performs loop invariant code motion, attempting to remove as much |
| 11 | // code from the body of a loop as possible. It does this by either hoisting |
| 12 | // code into the preheader block, or by sinking code to the exit blocks if it is |
| 13 | // safe. This pass also promotes must-aliased memory locations in the loop to |
Chris Lattner | 547192d6 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 14 | // live in registers, thus hoisting and sinking "invariant" loads and stores. |
Chris Lattner | c051768 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 15 | // |
| 16 | // This pass uses alias analysis for two purposes: |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 17 | // |
Chris Lattner | 289ba2a | 2004-05-23 21:20:19 +0000 | [diff] [blame] | 18 | // 1. Moving loop invariant loads and calls out of loops. If we can determine |
| 19 | // that a load or call inside of a loop never aliases anything stored to, |
| 20 | // we can hoist it or sink it like any other instruction. |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 21 | // 2. Scalar Promotion of Memory - If there is a store instruction inside of |
| 22 | // the loop, we try to move the store to happen AFTER the loop instead of |
| 23 | // inside of the loop. This can only happen if a few conditions are true: |
| 24 | // A. The pointer stored through is loop invariant |
| 25 | // B. There are no stores or loads in the loop which _may_ alias the |
| 26 | // pointer. There are no calls in the loop which mod/ref the pointer. |
| 27 | // If these conditions are true, we can promote the loads and stores in the |
| 28 | // loop of the pointer to use a temporary alloca'd variable. We then use |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 29 | // the SSAUpdater to construct the appropriate SSA form for the value. |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 30 | // |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 31 | //===----------------------------------------------------------------------===// |
| 32 | |
| 33 | #include "llvm/Transforms/Scalar.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 34 | #include "llvm/ADT/Statistic.h" |
Chris Lattner | a51fa88 | 2002-08-22 21:39:55 +0000 | [diff] [blame] | 35 | #include "llvm/Analysis/AliasAnalysis.h" |
Chris Lattner | 0592bb7 | 2003-03-03 23:32:45 +0000 | [diff] [blame] | 36 | #include "llvm/Analysis/AliasSetTracker.h" |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 37 | #include "llvm/Analysis/BasicAliasAnalysis.h" |
Chris Lattner | 030f020 | 2010-08-31 23:00:16 +0000 | [diff] [blame] | 38 | #include "llvm/Analysis/ConstantFolding.h" |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 39 | #include "llvm/Analysis/GlobalsModRef.h" |
Chris Lattner | 030f020 | 2010-08-31 23:00:16 +0000 | [diff] [blame] | 40 | #include "llvm/Analysis/LoopInfo.h" |
| 41 | #include "llvm/Analysis/LoopPass.h" |
Chandler Carruth | abfa3e5 | 2014-01-24 01:59:49 +0000 | [diff] [blame] | 42 | #include "llvm/Analysis/ScalarEvolution.h" |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 43 | #include "llvm/Analysis/ScalarEvolutionAliasAnalysis.h" |
Benjamin Kramer | 799003b | 2015-03-23 19:32:43 +0000 | [diff] [blame] | 44 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Dan Gohman | 75d7d5e | 2011-12-14 23:49:11 +0000 | [diff] [blame] | 45 | #include "llvm/Analysis/ValueTracking.h" |
Chandler Carruth | 1305dc3 | 2014-03-04 11:45:46 +0000 | [diff] [blame] | 46 | #include "llvm/IR/CFG.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 47 | #include "llvm/IR/Constants.h" |
| 48 | #include "llvm/IR/DataLayout.h" |
| 49 | #include "llvm/IR/DerivedTypes.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 50 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 51 | #include "llvm/IR/Instructions.h" |
| 52 | #include "llvm/IR/IntrinsicInst.h" |
| 53 | #include "llvm/IR/LLVMContext.h" |
Chris Lattner | 473988c | 2013-01-05 16:44:07 +0000 | [diff] [blame] | 54 | #include "llvm/IR/Metadata.h" |
Chandler Carruth | aa0ab63 | 2014-03-04 12:09:19 +0000 | [diff] [blame] | 55 | #include "llvm/IR/PredIteratorCache.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 56 | #include "llvm/Support/CommandLine.h" |
| 57 | #include "llvm/Support/Debug.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 58 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 59 | #include "llvm/Transforms/Utils/Local.h" |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 60 | #include "llvm/Transforms/Utils/LoopUtils.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 61 | #include "llvm/Transforms/Utils/SSAUpdater.h" |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 62 | #include <algorithm> |
Chris Lattner | c051768 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 63 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 64 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 65 | #define DEBUG_TYPE "licm" |
| 66 | |
Chris Lattner | 79a42ac | 2006-12-19 21:40:18 +0000 | [diff] [blame] | 67 | STATISTIC(NumSunk , "Number of instructions sunk out of loop"); |
| 68 | STATISTIC(NumHoisted , "Number of instructions hoisted out of loop"); |
| 69 | STATISTIC(NumMovedLoads, "Number of load insts hoisted or sunk"); |
| 70 | STATISTIC(NumMovedCalls, "Number of call insts hoisted or sunk"); |
| 71 | STATISTIC(NumPromoted , "Number of memory locations promoted to registers"); |
| 72 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 73 | static cl::opt<bool> |
| 74 | DisablePromotion("disable-licm-promotion", cl::Hidden, |
| 75 | cl::desc("Disable memory promotion in LICM pass")); |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 76 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 77 | static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI); |
David Majnemer | 42a0730 | 2016-01-04 03:37:39 +0000 | [diff] [blame] | 78 | static bool isNotUsedInLoop(const Instruction &I, const Loop *CurLoop, |
| 79 | const LICMSafetyInfo *SafetyInfo); |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 80 | static bool hoist(Instruction &I, BasicBlock *Preheader); |
Pete Cooper | 0cabcf2 | 2015-05-13 01:12:18 +0000 | [diff] [blame] | 81 | static bool sink(Instruction &I, const LoopInfo *LI, const DominatorTree *DT, |
David Majnemer | 42a0730 | 2016-01-04 03:37:39 +0000 | [diff] [blame] | 82 | const Loop *CurLoop, AliasSetTracker *CurAST, |
| 83 | const LICMSafetyInfo *SafetyInfo); |
Pete Cooper | 0cabcf2 | 2015-05-13 01:12:18 +0000 | [diff] [blame] | 84 | static bool isGuaranteedToExecute(const Instruction &Inst, |
| 85 | const DominatorTree *DT, |
| 86 | const Loop *CurLoop, |
| 87 | const LICMSafetyInfo *SafetyInfo); |
| 88 | static bool isSafeToExecuteUnconditionally(const Instruction &Inst, |
| 89 | const DominatorTree *DT, |
Sanjoy Das | f8a0db5 | 2015-05-18 18:07:00 +0000 | [diff] [blame] | 90 | const TargetLibraryInfo *TLI, |
Pete Cooper | 0cabcf2 | 2015-05-13 01:12:18 +0000 | [diff] [blame] | 91 | const Loop *CurLoop, |
Philip Reames | b47b9c2 | 2015-05-22 02:14:05 +0000 | [diff] [blame] | 92 | const LICMSafetyInfo *SafetyInfo, |
| 93 | const Instruction *CtxI = nullptr); |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 94 | static bool pointerInvalidatedByLoop(Value *V, uint64_t Size, |
| 95 | const AAMDNodes &AAInfo, |
| 96 | AliasSetTracker *CurAST); |
David Majnemer | 42a0730 | 2016-01-04 03:37:39 +0000 | [diff] [blame] | 97 | static Instruction * |
| 98 | CloneInstructionInExitBlock(Instruction &I, BasicBlock &ExitBlock, PHINode &PN, |
| 99 | const LoopInfo *LI, |
| 100 | const LICMSafetyInfo *SafetyInfo); |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 101 | static bool canSinkOrHoistInst(Instruction &I, AliasAnalysis *AA, |
Sanjoy Das | f8a0db5 | 2015-05-18 18:07:00 +0000 | [diff] [blame] | 102 | DominatorTree *DT, TargetLibraryInfo *TLI, |
| 103 | Loop *CurLoop, AliasSetTracker *CurAST, |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 104 | LICMSafetyInfo *SafetyInfo); |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 105 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 106 | namespace { |
Chris Lattner | 2dd09db | 2009-09-02 06:11:42 +0000 | [diff] [blame] | 107 | struct LICM : public LoopPass { |
Nick Lewycky | e7da2d6 | 2007-05-06 13:37:16 +0000 | [diff] [blame] | 108 | static char ID; // Pass identification, replacement for typeid |
Owen Anderson | 6c18d1a | 2010-10-19 17:21:58 +0000 | [diff] [blame] | 109 | LICM() : LoopPass(ID) { |
| 110 | initializeLICMPass(*PassRegistry::getPassRegistry()); |
| 111 | } |
Devang Patel | 09f162c | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 112 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 113 | bool runOnLoop(Loop *L, LPPassManager &LPM) override; |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 114 | |
Chris Lattner | f64f2d3 | 2002-09-26 16:52:07 +0000 | [diff] [blame] | 115 | /// This transformation requires natural loop information & requires that |
| 116 | /// loop preheaders be inserted into the CFG... |
| 117 | /// |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 118 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
Chris Lattner | 820d971 | 2002-10-21 20:00:28 +0000 | [diff] [blame] | 119 | AU.setPreservesCFG(); |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 120 | AU.addRequired<DominatorTreeWrapperPass>(); |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 121 | AU.addRequired<LoopInfoWrapperPass>(); |
Dan Gohman | efd7f9c | 2010-07-16 17:58:45 +0000 | [diff] [blame] | 122 | AU.addRequiredID(LoopSimplifyID); |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 123 | AU.addPreservedID(LoopSimplifyID); |
| 124 | AU.addRequiredID(LCSSAID); |
| 125 | AU.addPreservedID(LCSSAID); |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 126 | AU.addRequired<AAResultsWrapperPass>(); |
| 127 | AU.addPreserved<AAResultsWrapperPass>(); |
| 128 | AU.addPreserved<BasicAAWrapperPass>(); |
| 129 | AU.addPreserved<GlobalsAAWrapperPass>(); |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 130 | AU.addPreserved<ScalarEvolutionWrapperPass>(); |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 131 | AU.addPreserved<SCEVAAWrapperPass>(); |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 132 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 133 | } |
| 134 | |
Matt Beaumont-Gay | abfc446 | 2012-12-04 05:41:27 +0000 | [diff] [blame] | 135 | using llvm::Pass::doFinalization; |
| 136 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 137 | bool doFinalization() override { |
Chris Lattner | cc9cbc6 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 138 | assert(LoopToAliasSetMap.empty() && "Didn't free loop alias sets"); |
Devang Patel | 69730c9 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 139 | return false; |
| 140 | } |
| 141 | |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 142 | private: |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 143 | AliasAnalysis *AA; // Current AliasAnalysis information |
Chris Lattner | c051768 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 144 | LoopInfo *LI; // Current LoopInfo |
Chris Lattner | abe61ef | 2010-08-29 06:49:44 +0000 | [diff] [blame] | 145 | DominatorTree *DT; // Dominator Tree for the current Loop. |
Chris Lattner | c051768 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 146 | |
Chad Rosier | 43a3306 | 2011-12-02 01:26:24 +0000 | [diff] [blame] | 147 | TargetLibraryInfo *TLI; // TargetLibraryInfo for constant folding. |
| 148 | |
Chris Lattner | cc9cbc6 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 149 | // State that is updated as we process loops. |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 150 | bool Changed; // Set to true when we change anything. |
| 151 | BasicBlock *Preheader; // The preheader block of the current loop... |
| 152 | Loop *CurLoop; // The current loop we are working on... |
Chris Lattner | 0592bb7 | 2003-03-03 23:32:45 +0000 | [diff] [blame] | 153 | AliasSetTracker *CurAST; // AliasSet information for the current loop... |
Chris Lattner | cc9cbc6 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 154 | DenseMap<Loop*, AliasSetTracker*> LoopToAliasSetMap; |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 155 | |
Devang Patel | b98a097 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 156 | /// cloneBasicBlockAnalysis - Simple Analysis hook. Clone alias set info. |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 157 | void cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, |
| 158 | Loop *L) override; |
Devang Patel | b98a097 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 159 | |
| 160 | /// deleteAnalysisValue - Simple Analysis hook. Delete value V from alias |
| 161 | /// set. |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 162 | void deleteAnalysisValue(Value *V, Loop *L) override; |
Devang Patel | b98a097 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 163 | |
David Peixotto | 0d4d5e6 | 2014-09-24 16:48:31 +0000 | [diff] [blame] | 164 | /// Simple Analysis hook. Delete loop L from alias set map. |
| 165 | void deleteAnalysisLoop(Loop *L) override; |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 166 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 167 | } |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 168 | |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 169 | char LICM::ID = 0; |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 170 | INITIALIZE_PASS_BEGIN(LICM, "licm", "Loop Invariant Code Motion", false, false) |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 171 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 172 | INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 173 | INITIALIZE_PASS_DEPENDENCY(LoopSimplify) |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 174 | INITIALIZE_PASS_DEPENDENCY(LCSSA) |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 175 | INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass) |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 176 | INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 177 | INITIALIZE_PASS_DEPENDENCY(BasicAAWrapperPass) |
| 178 | INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass) |
| 179 | INITIALIZE_PASS_DEPENDENCY(GlobalsAAWrapperPass) |
| 180 | INITIALIZE_PASS_DEPENDENCY(SCEVAAWrapperPass) |
Owen Anderson | 8ac477f | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 181 | INITIALIZE_PASS_END(LICM, "licm", "Loop Invariant Code Motion", false, false) |
Dan Gohman | d78c400 | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 182 | |
Daniel Dunbar | 7f39e2d | 2008-10-22 23:32:42 +0000 | [diff] [blame] | 183 | Pass *llvm::createLICMPass() { return new LICM(); } |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 184 | |
Devang Patel | d8b1ceb | 2007-07-31 16:52:25 +0000 | [diff] [blame] | 185 | /// Hoist expressions out of the specified loop. Note, alias info for inner |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 186 | /// loop is not preserved so it is not a good idea to run LICM multiple |
Devang Patel | d8b1ceb | 2007-07-31 16:52:25 +0000 | [diff] [blame] | 187 | /// times on one loop. |
Chris Lattner | f64f2d3 | 2002-09-26 16:52:07 +0000 | [diff] [blame] | 188 | /// |
Devang Patel | 69730c9 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 189 | bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) { |
Paul Robinson | af4e64d | 2014-02-06 00:07:05 +0000 | [diff] [blame] | 190 | if (skipOptnoneFunction(L)) |
| 191 | return false; |
| 192 | |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 193 | Changed = false; |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 194 | |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 195 | // Get our Loop and Alias Analysis information... |
Chandler Carruth | 4f8f307 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 196 | LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 197 | AA = &getAnalysis<AAResultsWrapperPass>().getAAResults(); |
Chandler Carruth | 7352302 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 198 | DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
Chris Lattner | a51fa88 | 2002-08-22 21:39:55 +0000 | [diff] [blame] | 199 | |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 200 | TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); |
Chad Rosier | 43a3306 | 2011-12-02 01:26:24 +0000 | [diff] [blame] | 201 | |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 202 | assert(L->isLCSSAForm(*DT) && "Loop is not in LCSSA form."); |
| 203 | |
Devang Patel | 69730c9 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 204 | CurAST = new AliasSetTracker(*AA); |
Chris Lattner | cc9cbc6 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 205 | // Collect Alias info from subloops. |
Sanjay Patel | 9f088ab | 2016-01-08 22:59:42 +0000 | [diff] [blame] | 206 | for (Loop *InnerL : L->getSubLoops()) { |
Chris Lattner | cc9cbc6 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 207 | AliasSetTracker *InnerAST = LoopToAliasSetMap[InnerL]; |
| 208 | assert(InnerAST && "Where is my AST?"); |
Devang Patel | 69730c9 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 209 | |
| 210 | // What if InnerLoop was modified by other passes ? |
| 211 | CurAST->add(*InnerAST); |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 212 | |
Chris Lattner | cc9cbc6 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 213 | // Once we've incorporated the inner loop's AST into ours, we don't need the |
| 214 | // subloop's anymore. |
| 215 | delete InnerAST; |
| 216 | LoopToAliasSetMap.erase(InnerL); |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 217 | } |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 218 | |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 219 | CurLoop = L; |
| 220 | |
Chris Lattner | d57f3f5 | 2002-09-26 19:40:25 +0000 | [diff] [blame] | 221 | // Get the preheader block to move instructions into... |
| 222 | Preheader = L->getLoopPreheader(); |
Chris Lattner | d57f3f5 | 2002-09-26 19:40:25 +0000 | [diff] [blame] | 223 | |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 224 | // Loop over the body of this loop, looking for calls, invokes, and stores. |
Chris Lattner | 0592bb7 | 2003-03-03 23:32:45 +0000 | [diff] [blame] | 225 | // Because subloops have already been incorporated into AST, we skip blocks in |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 226 | // subloops. |
| 227 | // |
Sanjay Patel | 9f088ab | 2016-01-08 22:59:42 +0000 | [diff] [blame] | 228 | for (BasicBlock *BB : L->blocks()) { |
Chris Lattner | cc9cbc6 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 229 | if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops. |
Dan Gohman | 9007107 | 2008-06-22 20:18:58 +0000 | [diff] [blame] | 230 | CurAST->add(*BB); // Incorporate the specified basic block |
| 231 | } |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 232 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 233 | // Compute loop safety information. |
| 234 | LICMSafetyInfo SafetyInfo; |
| 235 | computeLICMSafetyInfo(&SafetyInfo, CurLoop); |
Nadav Rotem | 03dcd85 | 2012-09-04 10:25:04 +0000 | [diff] [blame] | 236 | |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 237 | // We want to visit all of the instructions in this loop... that are not parts |
| 238 | // of our subloops (they have already had their invariants hoisted out of |
| 239 | // their loop, into this loop, so there is no need to process the BODIES of |
| 240 | // the subloops). |
| 241 | // |
Chris Lattner | 6443769 | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 242 | // Traverse the body of the loop in depth first order on the dominator tree so |
| 243 | // that we are guaranteed to see definitions before we see uses. This allows |
Nick Lewycky | a0d49da | 2007-08-18 15:08:56 +0000 | [diff] [blame] | 244 | // us to sink instructions in one pass, without iteration. After sinking |
Chris Lattner | 547192d6 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 245 | // instructions, we perform another pass to hoist them out of the loop. |
Chris Lattner | 6443769 | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 246 | // |
Dan Gohman | a83ac2d | 2009-11-05 21:11:53 +0000 | [diff] [blame] | 247 | if (L->hasDedicatedExits()) |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 248 | Changed |= sinkRegion(DT->getNode(L->getHeader()), AA, LI, DT, TLI, CurLoop, |
| 249 | CurAST, &SafetyInfo); |
Dan Gohman | a83ac2d | 2009-11-05 21:11:53 +0000 | [diff] [blame] | 250 | if (Preheader) |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 251 | Changed |= hoistRegion(DT->getNode(L->getHeader()), AA, LI, DT, TLI, |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 252 | CurLoop, CurAST, &SafetyInfo); |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 253 | |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 254 | // Now that all loop invariants have been removed from the loop, promote any |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 255 | // memory references to scalars that we can. |
Chandler Carruth | cc497b6 | 2014-01-24 02:24:47 +0000 | [diff] [blame] | 256 | if (!DisablePromotion && (Preheader || L->hasDedicatedExits())) { |
Dan Gohman | b948736 | 2012-08-08 00:00:26 +0000 | [diff] [blame] | 257 | SmallVector<BasicBlock *, 8> ExitBlocks; |
| 258 | SmallVector<Instruction *, 8> InsertPts; |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 259 | PredIteratorCache PIC; |
Dan Gohman | b948736 | 2012-08-08 00:00:26 +0000 | [diff] [blame] | 260 | |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 261 | // Loop over all of the alias sets in the tracker object. |
Sanjay Patel | 9f088ab | 2016-01-08 22:59:42 +0000 | [diff] [blame] | 262 | for (AliasSet &AS : *CurAST) |
| 263 | Changed |= promoteLoopAccessesToScalars(AS, ExitBlocks, InsertPts, |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 264 | PIC, LI, DT, CurLoop, |
| 265 | CurAST, &SafetyInfo); |
Chandler Carruth | 1665152 | 2014-02-01 13:35:14 +0000 | [diff] [blame] | 266 | |
| 267 | // Once we have promoted values across the loop body we have to recursively |
| 268 | // reform LCSSA as any nested loop may now have values defined within the |
| 269 | // loop used in the outer loop. |
| 270 | // FIXME: This is really heavy handed. It would be a bit better to use an |
| 271 | // SSAUpdater strategy during promotion that was LCSSA aware and reformed |
| 272 | // it as it went. |
Chandler Carruth | 2f1fd16 | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 273 | if (Changed) { |
| 274 | auto *SEWP = getAnalysisIfAvailable<ScalarEvolutionWrapperPass>(); |
| 275 | formLCSSARecursively(*L, *DT, LI, SEWP ? &SEWP->getSE() : nullptr); |
| 276 | } |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 277 | } |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 278 | |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 279 | // Check that neither this loop nor its parent have had LCSSA broken. LICM is |
| 280 | // specifically moving instructions across the loop boundary and so it is |
| 281 | // especially in need of sanity checking here. |
| 282 | assert(L->isLCSSAForm(*DT) && "Loop not left in LCSSA form after LICM!"); |
| 283 | assert((!L->getParentLoop() || L->getParentLoop()->isLCSSAForm(*DT)) && |
| 284 | "Parent loop not left in LCSSA form after LICM!"); |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 285 | |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 286 | // Clear out loops state information for the next iteration |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 287 | CurLoop = nullptr; |
| 288 | Preheader = nullptr; |
Devang Patel | 69730c9 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 289 | |
Chris Lattner | cc9cbc6 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 290 | // If this loop is nested inside of another one, save the alias information |
| 291 | // for when we process the outer loop. |
| 292 | if (L->getParentLoop()) |
| 293 | LoopToAliasSetMap[L] = CurAST; |
| 294 | else |
| 295 | delete CurAST; |
Devang Patel | 69730c9 | 2007-03-07 04:41:30 +0000 | [diff] [blame] | 296 | return Changed; |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 297 | } |
| 298 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 299 | /// Walk the specified region of the CFG (defined by all blocks dominated by |
| 300 | /// the specified block, and that are in the current loop) in reverse depth |
| 301 | /// first order w.r.t the DominatorTree. This allows us to visit uses before |
| 302 | /// definitions, allowing us to sink a loop body in one pass without iteration. |
Chris Lattner | 547192d6 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 303 | /// |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 304 | bool llvm::sinkRegion(DomTreeNode *N, AliasAnalysis *AA, LoopInfo *LI, |
| 305 | DominatorTree *DT, TargetLibraryInfo *TLI, Loop *CurLoop, |
| 306 | AliasSetTracker *CurAST, LICMSafetyInfo *SafetyInfo) { |
Chris Lattner | 547192d6 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 307 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 308 | // Verify inputs. |
| 309 | assert(N != nullptr && AA != nullptr && LI != nullptr && |
| 310 | DT != nullptr && CurLoop != nullptr && CurAST != nullptr && |
| 311 | SafetyInfo != nullptr && "Unexpected input to sinkRegion"); |
| 312 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 313 | BasicBlock *BB = N->getBlock(); |
Chris Lattner | 547192d6 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 314 | // If this subregion is not in the top level loop at all, exit. |
Sanjay Patel | 9913322 | 2016-01-13 23:01:57 +0000 | [diff] [blame^] | 315 | if (!CurLoop->contains(BB)) return false; |
Chris Lattner | 547192d6 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 316 | |
Chris Lattner | 263f804 | 2010-08-29 18:22:25 +0000 | [diff] [blame] | 317 | // We are processing blocks in reverse dfo, so process children first. |
Sanjay Patel | 9913322 | 2016-01-13 23:01:57 +0000 | [diff] [blame^] | 318 | bool Changed = false; |
Devang Patel | bdd1aae | 2007-06-04 00:32:22 +0000 | [diff] [blame] | 319 | const std::vector<DomTreeNode*> &Children = N->getChildren(); |
Sanjay Patel | 9f088ab | 2016-01-08 22:59:42 +0000 | [diff] [blame] | 320 | for (DomTreeNode *Child : Children) |
| 321 | Changed |= sinkRegion(Child, AA, LI, DT, TLI, CurLoop, CurAST, SafetyInfo); |
| 322 | |
Chris Lattner | 547192d6 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 323 | // Only need to process the contents of this block if it is not part of a |
| 324 | // subloop (which would already have been processed). |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 325 | if (inSubLoop(BB,CurLoop,LI)) return Changed; |
Chris Lattner | 547192d6 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 326 | |
Chris Lattner | 9184601 | 2003-12-19 08:18:16 +0000 | [diff] [blame] | 327 | for (BasicBlock::iterator II = BB->end(); II != BB->begin(); ) { |
| 328 | Instruction &I = *--II; |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 329 | |
Chris Lattner | 263f804 | 2010-08-29 18:22:25 +0000 | [diff] [blame] | 330 | // If the instruction is dead, we would try to sink it because it isn't used |
| 331 | // in the loop, instead, just delete it. |
Benjamin Kramer | 8bcc971 | 2012-08-29 15:32:21 +0000 | [diff] [blame] | 332 | if (isInstructionTriviallyDead(&I, TLI)) { |
Chris Lattner | f58382e | 2010-08-29 18:42:23 +0000 | [diff] [blame] | 333 | DEBUG(dbgs() << "LICM deleting dead inst: " << I << '\n'); |
Chris Lattner | 263f804 | 2010-08-29 18:22:25 +0000 | [diff] [blame] | 334 | ++II; |
| 335 | CurAST->deleteValue(&I); |
| 336 | I.eraseFromParent(); |
| 337 | Changed = true; |
| 338 | continue; |
| 339 | } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 340 | |
Chris Lattner | 547192d6 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 341 | // Check to see if we can sink this instruction to the exit blocks |
| 342 | // of the loop. We can do this if the all users of the instruction are |
| 343 | // outside of the loop. In this case, it doesn't even matter if the |
| 344 | // operands of the instruction are loop invariant. |
| 345 | // |
David Majnemer | 42a0730 | 2016-01-04 03:37:39 +0000 | [diff] [blame] | 346 | if (isNotUsedInLoop(I, CurLoop, SafetyInfo) && |
Sanjoy Das | f8a0db5 | 2015-05-18 18:07:00 +0000 | [diff] [blame] | 347 | canSinkOrHoistInst(I, AA, DT, TLI, CurLoop, CurAST, SafetyInfo)) { |
Chris Lattner | 9184601 | 2003-12-19 08:18:16 +0000 | [diff] [blame] | 348 | ++II; |
David Majnemer | 42a0730 | 2016-01-04 03:37:39 +0000 | [diff] [blame] | 349 | Changed |= sink(I, LI, DT, CurLoop, CurAST, SafetyInfo); |
Chris Lattner | 9184601 | 2003-12-19 08:18:16 +0000 | [diff] [blame] | 350 | } |
Chris Lattner | 547192d6 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 351 | } |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 352 | return Changed; |
Chris Lattner | 547192d6 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 353 | } |
| 354 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 355 | /// Walk the specified region of the CFG (defined by all blocks dominated by |
| 356 | /// the specified block, and that are in the current loop) in depth first |
| 357 | /// order w.r.t the DominatorTree. This allows us to visit definitions before |
| 358 | /// uses, allowing us to hoist a loop body in one pass without iteration. |
Chris Lattner | 6443769 | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 359 | /// |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 360 | bool llvm::hoistRegion(DomTreeNode *N, AliasAnalysis *AA, LoopInfo *LI, |
| 361 | DominatorTree *DT, TargetLibraryInfo *TLI, Loop *CurLoop, |
| 362 | AliasSetTracker *CurAST, LICMSafetyInfo *SafetyInfo) { |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 363 | // Verify inputs. |
| 364 | assert(N != nullptr && AA != nullptr && LI != nullptr && |
| 365 | DT != nullptr && CurLoop != nullptr && CurAST != nullptr && |
| 366 | SafetyInfo != nullptr && "Unexpected input to hoistRegion"); |
Sanjay Patel | 9913322 | 2016-01-13 23:01:57 +0000 | [diff] [blame^] | 367 | |
Owen Anderson | c24701e | 2007-04-24 06:40:39 +0000 | [diff] [blame] | 368 | BasicBlock *BB = N->getBlock(); |
Sanjay Patel | 9913322 | 2016-01-13 23:01:57 +0000 | [diff] [blame^] | 369 | |
Chris Lattner | 05e8630 | 2002-09-29 22:26:07 +0000 | [diff] [blame] | 370 | // If this subregion is not in the top level loop at all, exit. |
Sanjay Patel | 9913322 | 2016-01-13 23:01:57 +0000 | [diff] [blame^] | 371 | if (!CurLoop->contains(BB)) return false; |
| 372 | |
Chris Lattner | aaaea51 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 373 | // Only need to process the contents of this block if it is not part of a |
| 374 | // subloop (which would already have been processed). |
Sanjay Patel | 9913322 | 2016-01-13 23:01:57 +0000 | [diff] [blame^] | 375 | bool Changed = false; |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 376 | if (!inSubLoop(BB, CurLoop, LI)) |
Chris Lattner | aaaea51 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 377 | for (BasicBlock::iterator II = BB->begin(), E = BB->end(); II != E; ) { |
| 378 | Instruction &I = *II++; |
Chris Lattner | 030f020 | 2010-08-31 23:00:16 +0000 | [diff] [blame] | 379 | // Try constant folding this instruction. If all the operands are |
| 380 | // constants, it is technically hoistable, but it would be better to just |
| 381 | // fold it. |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 382 | if (Constant *C = ConstantFoldInstruction( |
| 383 | &I, I.getModule()->getDataLayout(), TLI)) { |
Chris Lattner | 030f020 | 2010-08-31 23:00:16 +0000 | [diff] [blame] | 384 | DEBUG(dbgs() << "LICM folding inst: " << I << " --> " << *C << '\n'); |
| 385 | CurAST->copyValue(&I, C); |
| 386 | CurAST->deleteValue(&I); |
| 387 | I.replaceAllUsesWith(C); |
| 388 | I.eraseFromParent(); |
| 389 | continue; |
| 390 | } |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 391 | |
Chris Lattner | 547192d6 | 2003-12-19 07:22:45 +0000 | [diff] [blame] | 392 | // Try hoisting the instruction out to the preheader. We can only do this |
| 393 | // if all of the operands of the instruction are loop invariant and if it |
| 394 | // is safe to hoist the instruction. |
| 395 | // |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 396 | if (CurLoop->hasLoopInvariantOperands(&I) && |
Sanjoy Das | f8a0db5 | 2015-05-18 18:07:00 +0000 | [diff] [blame] | 397 | canSinkOrHoistInst(I, AA, DT, TLI, CurLoop, CurAST, SafetyInfo) && |
Philip Reames | b47b9c2 | 2015-05-22 02:14:05 +0000 | [diff] [blame] | 398 | isSafeToExecuteUnconditionally(I, DT, TLI, CurLoop, SafetyInfo, |
| 399 | CurLoop->getLoopPreheader()->getTerminator())) |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 400 | Changed |= hoist(I, CurLoop->getLoopPreheader()); |
Chris Lattner | 030f020 | 2010-08-31 23:00:16 +0000 | [diff] [blame] | 401 | } |
Chris Lattner | 6443769 | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 402 | |
Devang Patel | bdd1aae | 2007-06-04 00:32:22 +0000 | [diff] [blame] | 403 | const std::vector<DomTreeNode*> &Children = N->getChildren(); |
Sanjay Patel | 9f088ab | 2016-01-08 22:59:42 +0000 | [diff] [blame] | 404 | for (DomTreeNode *Child : Children) |
| 405 | Changed |= hoistRegion(Child, AA, LI, DT, TLI, CurLoop, CurAST, SafetyInfo); |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 406 | return Changed; |
| 407 | } |
| 408 | |
| 409 | /// Computes loop safety information, checks loop body & header |
Benjamin Kramer | df005cb | 2015-08-08 18:27:36 +0000 | [diff] [blame] | 410 | /// for the possibility of may throw exception. |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 411 | /// |
| 412 | void llvm::computeLICMSafetyInfo(LICMSafetyInfo * SafetyInfo, Loop * CurLoop) { |
| 413 | assert(CurLoop != nullptr && "CurLoop cant be null"); |
| 414 | BasicBlock *Header = CurLoop->getHeader(); |
| 415 | // Setting default safety values. |
| 416 | SafetyInfo->MayThrow = false; |
| 417 | SafetyInfo->HeaderMayThrow = false; |
Benjamin Kramer | df005cb | 2015-08-08 18:27:36 +0000 | [diff] [blame] | 418 | // Iterate over header and compute safety info. |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 419 | for (BasicBlock::iterator I = Header->begin(), E = Header->end(); |
| 420 | (I != E) && !SafetyInfo->HeaderMayThrow; ++I) |
| 421 | SafetyInfo->HeaderMayThrow |= I->mayThrow(); |
| 422 | |
| 423 | SafetyInfo->MayThrow = SafetyInfo->HeaderMayThrow; |
| 424 | // Iterate over loop instructions and compute safety info. |
| 425 | for (Loop::block_iterator BB = CurLoop->block_begin(), |
| 426 | BBE = CurLoop->block_end(); (BB != BBE) && !SafetyInfo->MayThrow ; ++BB) |
| 427 | for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); |
| 428 | (I != E) && !SafetyInfo->MayThrow; ++I) |
| 429 | SafetyInfo->MayThrow |= I->mayThrow(); |
David Majnemer | 42a0730 | 2016-01-04 03:37:39 +0000 | [diff] [blame] | 430 | |
| 431 | // Compute funclet colors if we might sink/hoist in a function with a funclet |
| 432 | // personality routine. |
| 433 | Function *Fn = CurLoop->getHeader()->getParent(); |
| 434 | if (Fn->hasPersonalityFn()) |
| 435 | if (Constant *PersonalityFn = Fn->getPersonalityFn()) |
| 436 | if (isFuncletEHPersonality(classifyEHPersonality(PersonalityFn))) |
| 437 | SafetyInfo->BlockColors = colorEHFunclets(*Fn); |
Chris Lattner | 6443769 | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 438 | } |
| 439 | |
Chris Lattner | aaaea51 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 440 | /// canSinkOrHoistInst - Return true if the hoister and sinker can handle this |
| 441 | /// instruction. |
| 442 | /// |
Mehdi Amini | a28d91d | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 443 | bool canSinkOrHoistInst(Instruction &I, AliasAnalysis *AA, DominatorTree *DT, |
Sanjoy Das | f8a0db5 | 2015-05-18 18:07:00 +0000 | [diff] [blame] | 444 | TargetLibraryInfo *TLI, Loop *CurLoop, |
| 445 | AliasSetTracker *CurAST, LICMSafetyInfo *SafetyInfo) { |
Chris Lattner | 65c1193 | 2003-12-09 19:32:44 +0000 | [diff] [blame] | 446 | // Loads have extra constraints we have to verify before we can hoist them. |
| 447 | if (LoadInst *LI = dyn_cast<LoadInst>(&I)) { |
Eli Friedman | 91386c7 | 2011-08-15 20:52:09 +0000 | [diff] [blame] | 448 | if (!LI->isUnordered()) |
| 449 | return false; // Don't hoist volatile/atomic loads! |
Chris Lattner | 65c1193 | 2003-12-09 19:32:44 +0000 | [diff] [blame] | 450 | |
Chris Lattner | 8a8fb90 | 2008-07-23 05:06:28 +0000 | [diff] [blame] | 451 | // Loads from constant memory are always safe to move, even if they end up |
| 452 | // in the same alias set as something that ends up being modified. |
Dan Gohman | cbc6ebb | 2009-11-19 19:00:10 +0000 | [diff] [blame] | 453 | if (AA->pointsToConstantMemory(LI->getOperand(0))) |
Chris Lattner | 8a8fb90 | 2008-07-23 05:06:28 +0000 | [diff] [blame] | 454 | return true; |
Philip Reames | 5a3f5f7 | 2014-10-21 00:13:20 +0000 | [diff] [blame] | 455 | if (LI->getMetadata(LLVMContext::MD_invariant_load)) |
Pete Cooper | 9ee2209 | 2011-11-08 19:30:00 +0000 | [diff] [blame] | 456 | return true; |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 457 | |
Chris Lattner | 65c1193 | 2003-12-09 19:32:44 +0000 | [diff] [blame] | 458 | // Don't hoist loads which have may-aliased stores in loop. |
Dan Gohman | f372cf8 | 2010-10-19 22:54:46 +0000 | [diff] [blame] | 459 | uint64_t Size = 0; |
Chris Lattner | b137409 | 2004-11-26 21:20:09 +0000 | [diff] [blame] | 460 | if (LI->getType()->isSized()) |
Chandler Carruth | 50fee93 | 2015-08-06 02:05:46 +0000 | [diff] [blame] | 461 | Size = I.getModule()->getDataLayout().getTypeStoreSize(LI->getType()); |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 462 | |
| 463 | AAMDNodes AAInfo; |
| 464 | LI->getAAMetadata(AAInfo); |
| 465 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 466 | return !pointerInvalidatedByLoop(LI->getOperand(0), Size, AAInfo, CurAST); |
Chris Lattner | 20cda26 | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 467 | } else if (CallInst *CI = dyn_cast<CallInst>(&I)) { |
Eli Friedman | 942e1c1 | 2011-05-27 18:37:52 +0000 | [diff] [blame] | 468 | // Don't sink or hoist dbg info; it's legal, but not useful. |
| 469 | if (isa<DbgInfoIntrinsic>(I)) |
| 470 | return false; |
| 471 | |
David Majnemer | 42a0730 | 2016-01-04 03:37:39 +0000 | [diff] [blame] | 472 | // Don't sink calls which can throw. |
| 473 | if (CI->mayThrow()) |
| 474 | return false; |
| 475 | |
Eli Friedman | 942e1c1 | 2011-05-27 18:37:52 +0000 | [diff] [blame] | 476 | // Handle simple cases by querying alias analysis. |
Chandler Carruth | 194f59c | 2015-07-22 23:15:57 +0000 | [diff] [blame] | 477 | FunctionModRefBehavior Behavior = AA->getModRefBehavior(CI); |
| 478 | if (Behavior == FMRB_DoesNotAccessMemory) |
Duncan Sands | 68b6f50 | 2007-12-01 07:51:45 +0000 | [diff] [blame] | 479 | return true; |
Dan Gohman | 0f17507 | 2010-11-09 19:58:21 +0000 | [diff] [blame] | 480 | if (AliasAnalysis::onlyReadsMemory(Behavior)) { |
Philip Reames | 5f99423 | 2015-09-21 22:27:59 +0000 | [diff] [blame] | 481 | // A readonly argmemonly function only reads from memory pointed to by |
| 482 | // it's arguments with arbitrary offsets. If we can prove there are no |
| 483 | // writes to this memory in the loop, we can hoist or sink. |
| 484 | if (AliasAnalysis::onlyAccessesArgPointees(Behavior)) { |
| 485 | for (Value *Op : CI->arg_operands()) |
| 486 | if (Op->getType()->isPointerTy() && |
| 487 | pointerInvalidatedByLoop(Op, MemoryLocation::UnknownSize, |
| 488 | AAMDNodes(), CurAST)) |
| 489 | return false; |
| 490 | return true; |
| 491 | } |
Duncan Sands | 68b6f50 | 2007-12-01 07:51:45 +0000 | [diff] [blame] | 492 | // If this call only reads from memory and there are no writes to memory |
| 493 | // in the loop, we can hoist or sink the call as appropriate. |
| 494 | bool FoundMod = false; |
Sanjay Patel | 9f088ab | 2016-01-08 22:59:42 +0000 | [diff] [blame] | 495 | for (AliasSet &AS : *CurAST) { |
Duncan Sands | 68b6f50 | 2007-12-01 07:51:45 +0000 | [diff] [blame] | 496 | if (!AS.isForwardingAliasSet() && AS.isMod()) { |
| 497 | FoundMod = true; |
| 498 | break; |
Chris Lattner | 20cda26 | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 499 | } |
Chris Lattner | 20cda26 | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 500 | } |
Duncan Sands | 68b6f50 | 2007-12-01 07:51:45 +0000 | [diff] [blame] | 501 | if (!FoundMod) return true; |
Chris Lattner | 20cda26 | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 502 | } |
| 503 | |
Nadav Rotem | 03dcd85 | 2012-09-04 10:25:04 +0000 | [diff] [blame] | 504 | // FIXME: This should use mod/ref information to see if we can hoist or |
| 505 | // sink the call. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 506 | |
Chris Lattner | 20cda26 | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 507 | return false; |
Chris Lattner | 65c1193 | 2003-12-09 19:32:44 +0000 | [diff] [blame] | 508 | } |
| 509 | |
Nadav Rotem | 03dcd85 | 2012-09-04 10:25:04 +0000 | [diff] [blame] | 510 | // Only these instructions are hoistable/sinkable. |
Benjamin Kramer | 130fcde | 2013-01-09 18:12:03 +0000 | [diff] [blame] | 511 | if (!isa<BinaryOperator>(I) && !isa<CastInst>(I) && !isa<SelectInst>(I) && |
| 512 | !isa<GetElementPtrInst>(I) && !isa<CmpInst>(I) && |
| 513 | !isa<InsertElementInst>(I) && !isa<ExtractElementInst>(I) && |
| 514 | !isa<ShuffleVectorInst>(I) && !isa<ExtractValueInst>(I) && |
| 515 | !isa<InsertValueInst>(I)) |
| 516 | return false; |
Nadav Rotem | 03dcd85 | 2012-09-04 10:25:04 +0000 | [diff] [blame] | 517 | |
Philip Reames | b47b9c2 | 2015-05-22 02:14:05 +0000 | [diff] [blame] | 518 | // TODO: Plumb the context instruction through to make hoisting and sinking |
| 519 | // more powerful. Hoisting of loads already works due to the special casing |
| 520 | // above. |
| 521 | return isSafeToExecuteUnconditionally(I, DT, TLI, CurLoop, SafetyInfo, |
| 522 | nullptr); |
Chris Lattner | aaaea51 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 523 | } |
| 524 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 525 | /// Returns true if a PHINode is a trivially replaceable with an |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 526 | /// Instruction. |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 527 | /// This is true when all incoming values are that instruction. |
| 528 | /// This pattern occurs most often with LCSSA PHI nodes. |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 529 | /// |
Pete Cooper | 47e80cd | 2015-05-12 20:05:20 +0000 | [diff] [blame] | 530 | static bool isTriviallyReplacablePHI(const PHINode &PN, const Instruction &I) { |
Pete Cooper | 833f34d | 2015-05-12 20:05:31 +0000 | [diff] [blame] | 531 | for (const Value *IncValue : PN.incoming_values()) |
| 532 | if (IncValue != &I) |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 533 | return false; |
| 534 | |
| 535 | return true; |
| 536 | } |
| 537 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 538 | /// Return true if the only users of this instruction are outside of |
| 539 | /// the loop. If this is true, we can sink the instruction to the exit |
| 540 | /// blocks of the loop. |
Chris Lattner | aaaea51 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 541 | /// |
David Majnemer | 42a0730 | 2016-01-04 03:37:39 +0000 | [diff] [blame] | 542 | static bool isNotUsedInLoop(const Instruction &I, const Loop *CurLoop, |
| 543 | const LICMSafetyInfo *SafetyInfo) { |
| 544 | const auto &BlockColors = SafetyInfo->BlockColors; |
Pete Cooper | 0cabcf2 | 2015-05-13 01:12:18 +0000 | [diff] [blame] | 545 | for (const User *U : I.users()) { |
| 546 | const Instruction *UI = cast<Instruction>(U); |
| 547 | if (const PHINode *PN = dyn_cast<PHINode>(UI)) { |
David Majnemer | 42a0730 | 2016-01-04 03:37:39 +0000 | [diff] [blame] | 548 | const BasicBlock *BB = PN->getParent(); |
| 549 | // We cannot sink uses in catchswitches. |
| 550 | if (isa<CatchSwitchInst>(BB->getTerminator())) |
| 551 | return false; |
| 552 | |
| 553 | // We need to sink a callsite to a unique funclet. Avoid sinking if the |
| 554 | // phi use is too muddled. |
| 555 | if (isa<CallInst>(I)) |
| 556 | if (!BlockColors.empty() && |
| 557 | BlockColors.find(const_cast<BasicBlock *>(BB))->second.size() != 1) |
| 558 | return false; |
| 559 | |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 560 | // A PHI node where all of the incoming values are this instruction are |
| 561 | // special -- they can just be RAUW'ed with the instruction and thus |
| 562 | // don't require a use in the predecessor. This is a particular important |
| 563 | // special case because it is the pattern found in LCSSA form. |
| 564 | if (isTriviallyReplacablePHI(*PN, I)) { |
| 565 | if (CurLoop->contains(PN)) |
| 566 | return false; |
| 567 | else |
| 568 | continue; |
| 569 | } |
| 570 | |
| 571 | // Otherwise, PHI node uses occur in predecessor blocks if the incoming |
| 572 | // values. Check for such a use being inside the loop. |
Chris Lattner | 34399dd | 2003-12-11 22:23:32 +0000 | [diff] [blame] | 573 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 574 | if (PN->getIncomingValue(i) == &I) |
| 575 | if (CurLoop->contains(PN->getIncomingBlock(i))) |
| 576 | return false; |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 577 | |
| 578 | continue; |
Chris Lattner | 34399dd | 2003-12-11 22:23:32 +0000 | [diff] [blame] | 579 | } |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 580 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 581 | if (CurLoop->contains(UI)) |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 582 | return false; |
Chris Lattner | 34399dd | 2003-12-11 22:23:32 +0000 | [diff] [blame] | 583 | } |
Chris Lattner | aaaea51 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 584 | return true; |
| 585 | } |
| 586 | |
David Majnemer | 42a0730 | 2016-01-04 03:37:39 +0000 | [diff] [blame] | 587 | static Instruction * |
| 588 | CloneInstructionInExitBlock(Instruction &I, BasicBlock &ExitBlock, PHINode &PN, |
| 589 | const LoopInfo *LI, |
| 590 | const LICMSafetyInfo *SafetyInfo) { |
| 591 | Instruction *New; |
| 592 | if (auto *CI = dyn_cast<CallInst>(&I)) { |
| 593 | const auto &BlockColors = SafetyInfo->BlockColors; |
| 594 | |
| 595 | // Sinking call-sites need to be handled differently from other |
| 596 | // instructions. The cloned call-site needs a funclet bundle operand |
| 597 | // appropriate for it's location in the CFG. |
| 598 | SmallVector<OperandBundleDef, 1> OpBundles; |
| 599 | for (unsigned BundleIdx = 0, BundleEnd = CI->getNumOperandBundles(); |
| 600 | BundleIdx != BundleEnd; ++BundleIdx) { |
| 601 | OperandBundleUse Bundle = CI->getOperandBundleAt(BundleIdx); |
| 602 | if (Bundle.getTagID() == LLVMContext::OB_funclet) |
| 603 | continue; |
| 604 | |
| 605 | OpBundles.emplace_back(Bundle); |
| 606 | } |
| 607 | |
| 608 | if (!BlockColors.empty()) { |
| 609 | const ColorVector &CV = BlockColors.find(&ExitBlock)->second; |
| 610 | assert(CV.size() == 1 && "non-unique color for exit block!"); |
| 611 | BasicBlock *BBColor = CV.front(); |
| 612 | Instruction *EHPad = BBColor->getFirstNonPHI(); |
| 613 | if (EHPad->isEHPad()) |
| 614 | OpBundles.emplace_back("funclet", EHPad); |
| 615 | } |
| 616 | |
| 617 | New = CallInst::Create(CI, OpBundles); |
| 618 | } else { |
| 619 | New = I.clone(); |
| 620 | } |
| 621 | |
Evgeniy Stepanov | d99cca2 | 2014-06-25 09:17:21 +0000 | [diff] [blame] | 622 | ExitBlock.getInstList().insert(ExitBlock.getFirstInsertionPt(), New); |
| 623 | if (!I.getName().empty()) New->setName(I.getName() + ".le"); |
| 624 | |
| 625 | // Build LCSSA PHI nodes for any in-loop operands. Note that this is |
| 626 | // particularly cheap because we can rip off the PHI node that we're |
| 627 | // replacing for the number and blocks of the predecessors. |
| 628 | // OPT: If this shows up in a profile, we can instead finish sinking all |
| 629 | // invariant instructions, and then walk their operands to re-establish |
| 630 | // LCSSA. That will eliminate creating PHI nodes just to nuke them when |
| 631 | // sinking bottom-up. |
| 632 | for (User::op_iterator OI = New->op_begin(), OE = New->op_end(); OI != OE; |
| 633 | ++OI) |
| 634 | if (Instruction *OInst = dyn_cast<Instruction>(*OI)) |
| 635 | if (Loop *OLoop = LI->getLoopFor(OInst->getParent())) |
| 636 | if (!OLoop->contains(&PN)) { |
| 637 | PHINode *OpPN = |
| 638 | PHINode::Create(OInst->getType(), PN.getNumIncomingValues(), |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 639 | OInst->getName() + ".lcssa", &ExitBlock.front()); |
Evgeniy Stepanov | d99cca2 | 2014-06-25 09:17:21 +0000 | [diff] [blame] | 640 | for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) |
| 641 | OpPN->addIncoming(OInst, PN.getIncomingBlock(i)); |
| 642 | *OI = OpPN; |
| 643 | } |
| 644 | return New; |
| 645 | } |
| 646 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 647 | /// When an instruction is found to only be used outside of the loop, this |
| 648 | /// function moves it to the exit blocks and patches up SSA form as needed. |
Chris Lattner | 9184601 | 2003-12-19 08:18:16 +0000 | [diff] [blame] | 649 | /// This method is guaranteed to remove the original instruction from its |
| 650 | /// position, and may either delete it or move it to outside of the loop. |
Chris Lattner | aaaea51 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 651 | /// |
Pete Cooper | 0cabcf2 | 2015-05-13 01:12:18 +0000 | [diff] [blame] | 652 | static bool sink(Instruction &I, const LoopInfo *LI, const DominatorTree *DT, |
David Majnemer | 42a0730 | 2016-01-04 03:37:39 +0000 | [diff] [blame] | 653 | const Loop *CurLoop, AliasSetTracker *CurAST, |
| 654 | const LICMSafetyInfo *SafetyInfo) { |
Nick Lewycky | 299c6df | 2010-07-30 20:27:01 +0000 | [diff] [blame] | 655 | DEBUG(dbgs() << "LICM sinking instruction: " << I << "\n"); |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 656 | bool Changed = false; |
Chris Lattner | 55c2113 | 2003-12-10 20:43:29 +0000 | [diff] [blame] | 657 | if (isa<LoadInst>(I)) ++NumMovedLoads; |
Chris Lattner | 20cda26 | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 658 | else if (isa<CallInst>(I)) ++NumMovedCalls; |
Chris Lattner | 55c2113 | 2003-12-10 20:43:29 +0000 | [diff] [blame] | 659 | ++NumSunk; |
| 660 | Changed = true; |
| 661 | |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 662 | #ifndef NDEBUG |
| 663 | SmallVector<BasicBlock *, 32> ExitBlocks; |
| 664 | CurLoop->getUniqueExitBlocks(ExitBlocks); |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 665 | SmallPtrSet<BasicBlock *, 32> ExitBlockSet(ExitBlocks.begin(), |
| 666 | ExitBlocks.end()); |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 667 | #endif |
Chandler Carruth | 8765cf7 | 2014-01-25 04:07:24 +0000 | [diff] [blame] | 668 | |
Evgeniy Stepanov | 10280da | 2014-06-25 07:54:58 +0000 | [diff] [blame] | 669 | // Clones of this instruction. Don't create more than one per exit block! |
| 670 | SmallDenseMap<BasicBlock *, Instruction *, 32> SunkCopies; |
| 671 | |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 672 | // If this instruction is only used outside of the loop, then all users are |
| 673 | // PHI nodes in exit blocks due to LCSSA form. Just RAUW them with clones of |
| 674 | // the instruction. |
| 675 | while (!I.use_empty()) { |
David Majnemer | 6bc83e0 | 2015-07-12 03:53:05 +0000 | [diff] [blame] | 676 | Value::user_iterator UI = I.user_begin(); |
| 677 | auto *User = cast<Instruction>(*UI); |
David Majnemer | 4942810 | 2014-09-02 16:22:00 +0000 | [diff] [blame] | 678 | if (!DT->isReachableFromEntry(User->getParent())) { |
| 679 | User->replaceUsesOfWith(&I, UndefValue::get(I.getType())); |
| 680 | continue; |
| 681 | } |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 682 | // The user must be a PHI node. |
David Majnemer | 4942810 | 2014-09-02 16:22:00 +0000 | [diff] [blame] | 683 | PHINode *PN = cast<PHINode>(User); |
Chris Lattner | cc9cbc6 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 684 | |
David Majnemer | 6bc83e0 | 2015-07-12 03:53:05 +0000 | [diff] [blame] | 685 | // Surprisingly, instructions can be used outside of loops without any |
| 686 | // exits. This can only happen in PHI nodes if the incoming block is |
| 687 | // unreachable. |
| 688 | Use &U = UI.getUse(); |
| 689 | BasicBlock *BB = PN->getIncomingBlock(U); |
| 690 | if (!DT->isReachableFromEntry(BB)) { |
| 691 | U = UndefValue::get(I.getType()); |
| 692 | continue; |
| 693 | } |
| 694 | |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 695 | BasicBlock *ExitBlock = PN->getParent(); |
| 696 | assert(ExitBlockSet.count(ExitBlock) && |
| 697 | "The LCSSA PHI is not in an exit block!"); |
| 698 | |
Evgeniy Stepanov | 10280da | 2014-06-25 07:54:58 +0000 | [diff] [blame] | 699 | Instruction *New; |
| 700 | auto It = SunkCopies.find(ExitBlock); |
Evgeniy Stepanov | d99cca2 | 2014-06-25 09:17:21 +0000 | [diff] [blame] | 701 | if (It != SunkCopies.end()) |
Evgeniy Stepanov | 10280da | 2014-06-25 07:54:58 +0000 | [diff] [blame] | 702 | New = It->second; |
Evgeniy Stepanov | d99cca2 | 2014-06-25 09:17:21 +0000 | [diff] [blame] | 703 | else |
| 704 | New = SunkCopies[ExitBlock] = |
David Majnemer | 42a0730 | 2016-01-04 03:37:39 +0000 | [diff] [blame] | 705 | CloneInstructionInExitBlock(I, *ExitBlock, *PN, LI, SafetyInfo); |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 706 | |
| 707 | PN->replaceAllUsesWith(New); |
| 708 | PN->eraseFromParent(); |
Chris Lattner | cd96b4d | 2010-08-29 04:28:20 +0000 | [diff] [blame] | 709 | } |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 710 | |
Chris Lattner | 1a1ed69 | 2010-08-29 18:00:00 +0000 | [diff] [blame] | 711 | CurAST->deleteValue(&I); |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 712 | I.eraseFromParent(); |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 713 | return Changed; |
Chris Lattner | aaaea51 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 714 | } |
Chris Lattner | 6443769 | 2002-09-29 21:46:09 +0000 | [diff] [blame] | 715 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 716 | /// When an instruction is found to only use loop invariant operands that |
| 717 | /// is safe to hoist, this instruction is called to do the dirty work. |
Chris Lattner | f64f2d3 | 2002-09-26 16:52:07 +0000 | [diff] [blame] | 718 | /// |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 719 | static bool hoist(Instruction &I, BasicBlock *Preheader) { |
David Greene | 0fd8622 | 2010-01-05 01:27:30 +0000 | [diff] [blame] | 720 | DEBUG(dbgs() << "LICM hoisting to " << Preheader->getName() << ": " |
Evan Cheng | f815861 | 2009-10-12 22:25:23 +0000 | [diff] [blame] | 721 | << I << "\n"); |
Chris Lattner | 6ac0659 | 2010-08-29 18:18:40 +0000 | [diff] [blame] | 722 | // Move the new node to the Preheader, before its terminator. |
| 723 | I.moveBefore(Preheader->getTerminator()); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 724 | |
Igor Laevsky | 7310c68 | 2015-11-18 14:50:18 +0000 | [diff] [blame] | 725 | // Metadata can be dependent on the condition we are hoisting above. |
| 726 | // Conservatively strip all metadata on the instruction. |
| 727 | I.dropUnknownNonDebugMetadata(); |
| 728 | |
Chris Lattner | aaaea51 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 729 | if (isa<LoadInst>(I)) ++NumMovedLoads; |
Chris Lattner | 20cda26 | 2004-03-15 04:11:30 +0000 | [diff] [blame] | 730 | else if (isa<CallInst>(I)) ++NumMovedCalls; |
Chris Lattner | 718b221 | 2002-09-26 16:38:03 +0000 | [diff] [blame] | 731 | ++NumHoisted; |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 732 | return true; |
Chris Lattner | 6ec05f5 | 2002-05-10 22:44:58 +0000 | [diff] [blame] | 733 | } |
| 734 | |
Sanjoy Das | f8a0db5 | 2015-05-18 18:07:00 +0000 | [diff] [blame] | 735 | /// Only sink or hoist an instruction if it is not a trapping instruction, |
| 736 | /// or if the instruction is known not to trap when moved to the preheader. |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 737 | /// or if it is a trapping instruction and is guaranteed to execute. |
Sanjoy Das | f8a0db5 | 2015-05-18 18:07:00 +0000 | [diff] [blame] | 738 | static bool isSafeToExecuteUnconditionally(const Instruction &Inst, |
Pete Cooper | 0cabcf2 | 2015-05-13 01:12:18 +0000 | [diff] [blame] | 739 | const DominatorTree *DT, |
Sanjoy Das | f8a0db5 | 2015-05-18 18:07:00 +0000 | [diff] [blame] | 740 | const TargetLibraryInfo *TLI, |
Pete Cooper | 0cabcf2 | 2015-05-13 01:12:18 +0000 | [diff] [blame] | 741 | const Loop *CurLoop, |
Philip Reames | b47b9c2 | 2015-05-22 02:14:05 +0000 | [diff] [blame] | 742 | const LICMSafetyInfo *SafetyInfo, |
| 743 | const Instruction *CtxI) { |
Sanjoy Das | f8a0db5 | 2015-05-18 18:07:00 +0000 | [diff] [blame] | 744 | if (isSafeToSpeculativelyExecute(&Inst, CtxI, DT, TLI)) |
Eli Friedman | b8f6a4f | 2009-07-17 04:28:42 +0000 | [diff] [blame] | 745 | return true; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 746 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 747 | return isGuaranteedToExecute(Inst, DT, CurLoop, SafetyInfo); |
Eli Friedman | 0cdc148 | 2011-07-20 21:37:47 +0000 | [diff] [blame] | 748 | } |
| 749 | |
Pete Cooper | 0cabcf2 | 2015-05-13 01:12:18 +0000 | [diff] [blame] | 750 | static bool isGuaranteedToExecute(const Instruction &Inst, |
| 751 | const DominatorTree *DT, |
| 752 | const Loop *CurLoop, |
| 753 | const LICMSafetyInfo * SafetyInfo) { |
Nadav Rotem | 03dcd85 | 2012-09-04 10:25:04 +0000 | [diff] [blame] | 754 | |
Philip Reames | b35f46c | 2014-12-29 23:00:57 +0000 | [diff] [blame] | 755 | // We have to check to make sure that the instruction dominates all |
Chris Lattner | c051768 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 756 | // of the exit blocks. If it doesn't, then there is a path out of the loop |
| 757 | // which does not execute this instruction, so we can't hoist it. |
Tanya Lattner | 57c03df | 2003-08-05 18:45:46 +0000 | [diff] [blame] | 758 | |
Chris Lattner | c051768 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 759 | // If the instruction is in the header block for the loop (which is very |
| 760 | // common), it is always guaranteed to dominate the exit blocks. Since this |
| 761 | // is a common case, and can save some work, check it now. |
Chris Lattner | aaaea51 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 762 | if (Inst.getParent() == CurLoop->getHeader()) |
Philip Reames | b35f46c | 2014-12-29 23:00:57 +0000 | [diff] [blame] | 763 | // If there's a throw in the header block, we can't guarantee we'll reach |
| 764 | // Inst. |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 765 | return !SafetyInfo->HeaderMayThrow; |
Philip Reames | b35f46c | 2014-12-29 23:00:57 +0000 | [diff] [blame] | 766 | |
| 767 | // Somewhere in this loop there is an instruction which may throw and make us |
| 768 | // exit the loop. |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 769 | if (SafetyInfo->MayThrow) |
Philip Reames | b35f46c | 2014-12-29 23:00:57 +0000 | [diff] [blame] | 770 | return false; |
Tanya Lattner | 57c03df | 2003-08-05 18:45:46 +0000 | [diff] [blame] | 771 | |
Chris Lattner | c051768 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 772 | // Get the exit blocks for the current loop. |
Devang Patel | b5933bb | 2007-08-21 00:31:24 +0000 | [diff] [blame] | 773 | SmallVector<BasicBlock*, 8> ExitBlocks; |
Chris Lattner | 35eaa55 | 2004-04-18 22:15:13 +0000 | [diff] [blame] | 774 | CurLoop->getExitBlocks(ExitBlocks); |
Chris Lattner | c051768 | 2003-12-09 17:18:00 +0000 | [diff] [blame] | 775 | |
Chris Lattner | 27497ec | 2011-01-02 18:45:39 +0000 | [diff] [blame] | 776 | // Verify that the block dominates each of the exit blocks of the loop. |
Sanjay Patel | 9f088ab | 2016-01-08 22:59:42 +0000 | [diff] [blame] | 777 | for (BasicBlock *ExitBlock : ExitBlocks) |
| 778 | if (!DT->dominates(Inst.getParent(), ExitBlock)) |
Chris Lattner | aaaea51 | 2003-12-10 06:41:05 +0000 | [diff] [blame] | 779 | return false; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 780 | |
Nick Lewycky | 78ee67e | 2012-05-01 04:03:01 +0000 | [diff] [blame] | 781 | // As a degenerate case, if the loop is statically infinite then we haven't |
| 782 | // proven anything since there are no exit blocks. |
| 783 | if (ExitBlocks.empty()) |
| 784 | return false; |
| 785 | |
Tanya Lattner | 57c03df | 2003-08-05 18:45:46 +0000 | [diff] [blame] | 786 | return true; |
| 787 | } |
| 788 | |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 789 | namespace { |
| 790 | class LoopPromoter : public LoadAndStorePromoter { |
| 791 | Value *SomePtr; // Designated pointer to store to. |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 792 | SmallPtrSetImpl<Value*> &PointerMustAliases; |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 793 | SmallVectorImpl<BasicBlock*> &LoopExitBlocks; |
Dan Gohman | b948736 | 2012-08-08 00:00:26 +0000 | [diff] [blame] | 794 | SmallVectorImpl<Instruction*> &LoopInsertPts; |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 795 | PredIteratorCache &PredCache; |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 796 | AliasSetTracker &AST; |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 797 | LoopInfo &LI; |
Eli Friedman | ddf7f55 | 2011-05-27 20:31:51 +0000 | [diff] [blame] | 798 | DebugLoc DL; |
Tobias Grosser | 4a5d9a9 | 2011-07-06 19:19:55 +0000 | [diff] [blame] | 799 | int Alignment; |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 800 | AAMDNodes AATags; |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 801 | |
| 802 | Value *maybeInsertLCSSAPHI(Value *V, BasicBlock *BB) const { |
| 803 | if (Instruction *I = dyn_cast<Instruction>(V)) |
| 804 | if (Loop *L = LI.getLoopFor(I->getParent())) |
| 805 | if (!L->contains(BB)) { |
| 806 | // We need to create an LCSSA PHI node for the incoming value and |
| 807 | // store that. |
Duncan P. N. Exon Smith | be4d8cb | 2015-10-13 19:26:58 +0000 | [diff] [blame] | 808 | PHINode *PN = |
| 809 | PHINode::Create(I->getType(), PredCache.size(BB), |
| 810 | I->getName() + ".lcssa", &BB->front()); |
Daniel Berlin | b4e7a4a | 2015-04-21 21:11:50 +0000 | [diff] [blame] | 811 | for (BasicBlock *Pred : PredCache.get(BB)) |
| 812 | PN->addIncoming(I, Pred); |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 813 | return PN; |
| 814 | } |
| 815 | return V; |
| 816 | } |
| 817 | |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 818 | public: |
Pete Cooper | 41e0ee3 | 2015-05-13 01:12:16 +0000 | [diff] [blame] | 819 | LoopPromoter(Value *SP, |
| 820 | ArrayRef<const Instruction *> Insts, |
Craig Topper | 71b7b68 | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 821 | SSAUpdater &S, SmallPtrSetImpl<Value *> &PMA, |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 822 | SmallVectorImpl<BasicBlock *> &LEB, |
| 823 | SmallVectorImpl<Instruction *> &LIP, PredIteratorCache &PIC, |
| 824 | AliasSetTracker &ast, LoopInfo &li, DebugLoc dl, int alignment, |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 825 | const AAMDNodes &AATags) |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 826 | : LoadAndStorePromoter(Insts, S), SomePtr(SP), PointerMustAliases(PMA), |
| 827 | LoopExitBlocks(LEB), LoopInsertPts(LIP), PredCache(PIC), AST(ast), |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 828 | LI(li), DL(dl), Alignment(alignment), AATags(AATags) {} |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 829 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 830 | bool isInstInList(Instruction *I, |
| 831 | const SmallVectorImpl<Instruction*> &) const override { |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 832 | Value *Ptr; |
| 833 | if (LoadInst *LI = dyn_cast<LoadInst>(I)) |
| 834 | Ptr = LI->getOperand(0); |
| 835 | else |
| 836 | Ptr = cast<StoreInst>(I)->getPointerOperand(); |
| 837 | return PointerMustAliases.count(Ptr); |
| 838 | } |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 839 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 840 | void doExtraRewritesBeforeFinalDeletion() const override { |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 841 | // Insert stores after in the loop exit blocks. Each exit block gets a |
| 842 | // store of the live-out values that feed them. Since we've already told |
| 843 | // the SSA updater about the defs in the loop and the preheader |
| 844 | // definition, it is all set and we can start using it. |
| 845 | for (unsigned i = 0, e = LoopExitBlocks.size(); i != e; ++i) { |
| 846 | BasicBlock *ExitBlock = LoopExitBlocks[i]; |
| 847 | Value *LiveInValue = SSA.GetValueInMiddleOfBlock(ExitBlock); |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 848 | LiveInValue = maybeInsertLCSSAPHI(LiveInValue, ExitBlock); |
| 849 | Value *Ptr = maybeInsertLCSSAPHI(SomePtr, ExitBlock); |
Dan Gohman | b948736 | 2012-08-08 00:00:26 +0000 | [diff] [blame] | 850 | Instruction *InsertPos = LoopInsertPts[i]; |
Chandler Carruth | fc25854 | 2014-02-11 12:52:27 +0000 | [diff] [blame] | 851 | StoreInst *NewSI = new StoreInst(LiveInValue, Ptr, InsertPos); |
Tobias Grosser | 4a5d9a9 | 2011-07-06 19:19:55 +0000 | [diff] [blame] | 852 | NewSI->setAlignment(Alignment); |
Eli Friedman | ddf7f55 | 2011-05-27 20:31:51 +0000 | [diff] [blame] | 853 | NewSI->setDebugLoc(DL); |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 854 | if (AATags) NewSI->setAAMetadata(AATags); |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 855 | } |
| 856 | } |
| 857 | |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 858 | void replaceLoadWithValue(LoadInst *LI, Value *V) const override { |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 859 | // Update alias analysis. |
| 860 | AST.copyValue(LI, V); |
| 861 | } |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 862 | void instructionDeleted(Instruction *I) const override { |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 863 | AST.deleteValue(I); |
| 864 | } |
| 865 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 866 | } // end anon namespace |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 867 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 868 | /// Try to promote memory values to scalars by sinking stores out of the |
| 869 | /// loop and moving loads to before the loop. We do this by looping over |
| 870 | /// the stores in the loop, looking for stores to Must pointers which are |
| 871 | /// loop invariant. |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 872 | /// |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 873 | bool llvm::promoteLoopAccessesToScalars(AliasSet &AS, |
| 874 | SmallVectorImpl<BasicBlock*>&ExitBlocks, |
| 875 | SmallVectorImpl<Instruction*>&InsertPts, |
| 876 | PredIteratorCache &PIC, LoopInfo *LI, |
| 877 | DominatorTree *DT, Loop *CurLoop, |
| 878 | AliasSetTracker *CurAST, |
| 879 | LICMSafetyInfo * SafetyInfo) { |
| 880 | // Verify inputs. |
| 881 | assert(LI != nullptr && DT != nullptr && |
| 882 | CurLoop != nullptr && CurAST != nullptr && |
| 883 | SafetyInfo != nullptr && |
| 884 | "Unexpected Input to promoteLoopAccessesToScalars"); |
Sanjay Patel | 9913322 | 2016-01-13 23:01:57 +0000 | [diff] [blame^] | 885 | |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 886 | // We can promote this alias set if it has a store, if it is a "Must" alias |
| 887 | // set, if the pointer is loop invariant, and if we are not eliminating any |
| 888 | // volatile loads or stores. |
| 889 | if (AS.isForwardingAliasSet() || !AS.isMod() || !AS.isMustAlias() || |
| 890 | AS.isVolatile() || !CurLoop->isLoopInvariant(AS.begin()->getValue())) |
Sanjay Patel | 9913322 | 2016-01-13 23:01:57 +0000 | [diff] [blame^] | 891 | return false; |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 892 | |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 893 | assert(!AS.empty() && |
| 894 | "Must alias set should have at least one pointer element in it!"); |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 895 | |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 896 | Value *SomePtr = AS.begin()->getValue(); |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 897 | BasicBlock * Preheader = CurLoop->getLoopPreheader(); |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 898 | |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 899 | // It isn't safe to promote a load/store from the loop if the load/store is |
| 900 | // conditional. For example, turning: |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 901 | // |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 902 | // for () { if (c) *P += 1; } |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 903 | // |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 904 | // into: |
| 905 | // |
| 906 | // tmp = *P; for () { if (c) tmp +=1; } *P = tmp; |
| 907 | // |
| 908 | // is not safe, because *P may only be valid to access if 'c' is true. |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 909 | // |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 910 | // It is safe to promote P if all uses are direct load/stores and if at |
| 911 | // least one is guaranteed to be executed. |
| 912 | bool GuaranteedToExecute = false; |
Tobias Grosser | 4a5d9a9 | 2011-07-06 19:19:55 +0000 | [diff] [blame] | 913 | |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 914 | SmallVector<Instruction*, 64> LoopUses; |
| 915 | SmallPtrSet<Value*, 4> PointerMustAliases; |
Chris Lattner | 45d67d6 | 2003-02-24 03:52:32 +0000 | [diff] [blame] | 916 | |
Tobias Grosser | 4a5d9a9 | 2011-07-06 19:19:55 +0000 | [diff] [blame] | 917 | // We start with an alignment of one and try to find instructions that allow |
| 918 | // us to prove better alignment. |
| 919 | unsigned Alignment = 1; |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 920 | AAMDNodes AATags; |
Bruno Cardoso Lopes | 46d5bf2 | 2014-11-28 19:47:46 +0000 | [diff] [blame] | 921 | bool HasDedicatedExits = CurLoop->hasDedicatedExits(); |
Tobias Grosser | 4a5d9a9 | 2011-07-06 19:19:55 +0000 | [diff] [blame] | 922 | |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 923 | // Check that all of the pointers in the alias set have the same type. We |
| 924 | // cannot (yet) promote a memory location that is loaded and stored in |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 925 | // different sizes. While we are at it, collect alignment and AA info. |
Sanjay Patel | 9913322 | 2016-01-13 23:01:57 +0000 | [diff] [blame^] | 926 | bool Changed = false; |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 927 | for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI) { |
| 928 | Value *ASIV = ASI->getValue(); |
| 929 | PointerMustAliases.insert(ASIV); |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 930 | |
Chris Lattner | f12c08d | 2008-05-22 00:53:38 +0000 | [diff] [blame] | 931 | // Check that all of the pointers in the alias set have the same type. We |
| 932 | // cannot (yet) promote a memory location that is loaded and stored in |
| 933 | // different sizes. |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 934 | if (SomePtr->getType() != ASIV->getType()) |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 935 | return Changed; |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 936 | |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 937 | for (User *U : ASIV->users()) { |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 938 | // Ignore instructions that are outside the loop. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 939 | Instruction *UI = dyn_cast<Instruction>(U); |
| 940 | if (!UI || !CurLoop->contains(UI)) |
Chris Lattner | f12c08d | 2008-05-22 00:53:38 +0000 | [diff] [blame] | 941 | continue; |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 942 | |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 943 | // If there is an non-load/store instruction in the loop, we can't promote |
| 944 | // it. |
Sanjay Patel | 9f49b68 | 2016-01-08 22:05:03 +0000 | [diff] [blame] | 945 | if (const LoadInst *Load = dyn_cast<LoadInst>(UI)) { |
| 946 | assert(!Load->isVolatile() && "AST broken"); |
| 947 | if (!Load->isSimple()) |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 948 | return Changed; |
Sanjay Patel | 9f49b68 | 2016-01-08 22:05:03 +0000 | [diff] [blame] | 949 | } else if (const StoreInst *Store = dyn_cast<StoreInst>(UI)) { |
Chris Lattner | 408a684 | 2010-12-19 05:57:25 +0000 | [diff] [blame] | 950 | // Stores *of* the pointer are not interesting, only stores *to* the |
| 951 | // pointer. |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 952 | if (UI->getOperand(1) != ASIV) |
Chris Lattner | 408a684 | 2010-12-19 05:57:25 +0000 | [diff] [blame] | 953 | continue; |
Sanjay Patel | 9f49b68 | 2016-01-08 22:05:03 +0000 | [diff] [blame] | 954 | assert(!Store->isVolatile() && "AST broken"); |
| 955 | if (!Store->isSimple()) |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 956 | return Changed; |
Bruno Cardoso Lopes | 46d5bf2 | 2014-11-28 19:47:46 +0000 | [diff] [blame] | 957 | // Don't sink stores from loops without dedicated block exits. Exits |
| 958 | // containing indirect branches are not transformed by loop simplify, |
Bruno Cardoso Lopes | d035fbb | 2014-12-02 14:22:34 +0000 | [diff] [blame] | 959 | // make sure we catch that. An additional load may be generated in the |
| 960 | // preheader for SSA updater, so also avoid sinking when no preheader |
| 961 | // is available. |
| 962 | if (!HasDedicatedExits || !Preheader) |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 963 | return Changed; |
Eli Friedman | 0cdc148 | 2011-07-20 21:37:47 +0000 | [diff] [blame] | 964 | |
| 965 | // Note that we only check GuaranteedToExecute inside the store case |
| 966 | // so that we do not introduce stores where they did not exist before |
| 967 | // (which would break the LLVM concurrency model). |
| 968 | |
| 969 | // If the alignment of this instruction allows us to specify a more |
| 970 | // restrictive (and performant) alignment and if we are sure this |
| 971 | // instruction will be executed, update the alignment. |
| 972 | // Larger is better, with the exception of 0 being the best alignment. |
Sanjay Patel | 9f49b68 | 2016-01-08 22:05:03 +0000 | [diff] [blame] | 973 | unsigned InstAlignment = Store->getAlignment(); |
Chris Lattner | f5cca68 | 2012-12-31 08:37:17 +0000 | [diff] [blame] | 974 | if ((InstAlignment > Alignment || InstAlignment == 0) && Alignment != 0) |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 975 | if (isGuaranteedToExecute(*UI, DT, CurLoop, SafetyInfo)) { |
Eli Friedman | 0cdc148 | 2011-07-20 21:37:47 +0000 | [diff] [blame] | 976 | GuaranteedToExecute = true; |
| 977 | Alignment = InstAlignment; |
| 978 | } |
| 979 | |
| 980 | if (!GuaranteedToExecute) |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 981 | GuaranteedToExecute = isGuaranteedToExecute(*UI, DT, |
| 982 | CurLoop, SafetyInfo); |
Eli Friedman | 0cdc148 | 2011-07-20 21:37:47 +0000 | [diff] [blame] | 983 | |
Chris Lattner | be90190 | 2010-09-06 05:11:24 +0000 | [diff] [blame] | 984 | } else |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 985 | return Changed; // Not a load or store. |
Tobias Grosser | 4a5d9a9 | 2011-07-06 19:19:55 +0000 | [diff] [blame] | 986 | |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 987 | // Merge the AA tags. |
Chris Lattner | f5cca68 | 2012-12-31 08:37:17 +0000 | [diff] [blame] | 988 | if (LoopUses.empty()) { |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 989 | // On the first load/store, just take its AA tags. |
| 990 | UI->getAAMetadata(AATags); |
| 991 | } else if (AATags) { |
| 992 | UI->getAAMetadata(AATags, /* Merge = */ true); |
Chris Lattner | f5cca68 | 2012-12-31 08:37:17 +0000 | [diff] [blame] | 993 | } |
Chandler Carruth | cdf4788 | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 994 | |
| 995 | LoopUses.push_back(UI); |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 996 | } |
| 997 | } |
Tobias Grosser | 4a5d9a9 | 2011-07-06 19:19:55 +0000 | [diff] [blame] | 998 | |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 999 | // If there isn't a guaranteed-to-execute instruction, we can't promote. |
| 1000 | if (!GuaranteedToExecute) |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 1001 | return Changed; |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 1002 | |
David Majnemer | 219055f | 2016-01-04 17:42:19 +0000 | [diff] [blame] | 1003 | // Figure out the loop exits and their insertion points, if this is the |
| 1004 | // first promotion. |
| 1005 | if (ExitBlocks.empty()) { |
| 1006 | CurLoop->getUniqueExitBlocks(ExitBlocks); |
| 1007 | InsertPts.clear(); |
| 1008 | InsertPts.reserve(ExitBlocks.size()); |
David Majnemer | b33f3a2 | 2016-01-04 23:16:22 +0000 | [diff] [blame] | 1009 | for (BasicBlock *ExitBlock : ExitBlocks) |
David Majnemer | 219055f | 2016-01-04 17:42:19 +0000 | [diff] [blame] | 1010 | InsertPts.push_back(&*ExitBlock->getFirstInsertionPt()); |
David Majnemer | 219055f | 2016-01-04 17:42:19 +0000 | [diff] [blame] | 1011 | } |
| 1012 | |
David Majnemer | b33f3a2 | 2016-01-04 23:16:22 +0000 | [diff] [blame] | 1013 | // Can't insert into a catchswitch. |
| 1014 | for (BasicBlock *ExitBlock : ExitBlocks) |
| 1015 | if (isa<CatchSwitchInst>(ExitBlock->getTerminator())) |
| 1016 | return Changed; |
| 1017 | |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 1018 | // Otherwise, this is safe to promote, lets do it! |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 1019 | DEBUG(dbgs() << "LICM: Promoting value stored to in loop: " <<*SomePtr<<'\n'); |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 1020 | Changed = true; |
| 1021 | ++NumPromoted; |
| 1022 | |
Eli Friedman | ddf7f55 | 2011-05-27 20:31:51 +0000 | [diff] [blame] | 1023 | // Grab a debug location for the inserted loads/stores; given that the |
| 1024 | // inserted loads/stores have little relation to the original loads/stores, |
| 1025 | // this code just arbitrarily picks a location from one, since any debug |
| 1026 | // location is better than none. |
| 1027 | DebugLoc DL = LoopUses[0]->getDebugLoc(); |
| 1028 | |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 1029 | // We use the SSAUpdater interface to insert phi nodes as required. |
| 1030 | SmallVector<PHINode*, 16> NewPHIs; |
| 1031 | SSAUpdater SSA(&NewPHIs); |
Pete Cooper | 7c4d7b8 | 2015-05-13 22:43:09 +0000 | [diff] [blame] | 1032 | LoopPromoter Promoter(SomePtr, LoopUses, SSA, |
Pete Cooper | 41e0ee3 | 2015-05-13 01:12:16 +0000 | [diff] [blame] | 1033 | PointerMustAliases, ExitBlocks, |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 1034 | InsertPts, PIC, *CurAST, *LI, DL, Alignment, AATags); |
Tobias Grosser | a3928f5 | 2011-07-06 19:20:02 +0000 | [diff] [blame] | 1035 | |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 1036 | // Set up the preheader to have a definition of the value. It is the live-out |
| 1037 | // value from the preheader that uses in the loop will use. |
| 1038 | LoadInst *PreheaderLoad = |
| 1039 | new LoadInst(SomePtr, SomePtr->getName()+".promoted", |
| 1040 | Preheader->getTerminator()); |
Tobias Grosser | 4a5d9a9 | 2011-07-06 19:19:55 +0000 | [diff] [blame] | 1041 | PreheaderLoad->setAlignment(Alignment); |
Eli Friedman | ddf7f55 | 2011-05-27 20:31:51 +0000 | [diff] [blame] | 1042 | PreheaderLoad->setDebugLoc(DL); |
Hal Finkel | cc39b67 | 2014-07-24 12:16:19 +0000 | [diff] [blame] | 1043 | if (AATags) PreheaderLoad->setAAMetadata(AATags); |
Chris Lattner | 1dc98b4 | 2010-08-29 06:43:52 +0000 | [diff] [blame] | 1044 | SSA.AddAvailableValue(Preheader, PreheaderLoad); |
| 1045 | |
Chris Lattner | b68ec5c | 2011-01-15 00:12:35 +0000 | [diff] [blame] | 1046 | // Rewrite all the loads in the loop and remember all the definitions from |
| 1047 | // stores in the loop. |
| 1048 | Promoter.run(LoopUses); |
Eli Friedman | c5f22a7 | 2011-04-07 01:35:06 +0000 | [diff] [blame] | 1049 | |
| 1050 | // If the SSAUpdater didn't use the load in the preheader, just zap it now. |
| 1051 | if (PreheaderLoad->use_empty()) |
| 1052 | PreheaderLoad->eraseFromParent(); |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 1053 | |
| 1054 | return Changed; |
Chris Lattner | a51fa88 | 2002-08-22 21:39:55 +0000 | [diff] [blame] | 1055 | } |
Devang Patel | b98a097 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 1056 | |
Ashutosh Nema | 4780262 | 2015-08-13 11:18:35 +0000 | [diff] [blame] | 1057 | /// Simple analysis hook. Clone alias set info. |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 1058 | /// |
Devang Patel | b98a097 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 1059 | void LICM::cloneBasicBlockAnalysis(BasicBlock *From, BasicBlock *To, Loop *L) { |
Chris Lattner | cc9cbc6 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 1060 | AliasSetTracker *AST = LoopToAliasSetMap.lookup(L); |
Devang Patel | b98a097 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 1061 | if (!AST) |
| 1062 | return; |
| 1063 | |
| 1064 | AST->copyValue(From, To); |
| 1065 | } |
| 1066 | |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 1067 | /// Simple Analysis hook. Delete value V from alias set |
| 1068 | /// |
Devang Patel | b98a097 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 1069 | void LICM::deleteAnalysisValue(Value *V, Loop *L) { |
Chris Lattner | cc9cbc6 | 2010-08-29 17:46:00 +0000 | [diff] [blame] | 1070 | AliasSetTracker *AST = LoopToAliasSetMap.lookup(L); |
Devang Patel | b98a097 | 2007-07-31 08:01:41 +0000 | [diff] [blame] | 1071 | if (!AST) |
| 1072 | return; |
| 1073 | |
| 1074 | AST->deleteValue(V); |
| 1075 | } |
David Peixotto | 0d4d5e6 | 2014-09-24 16:48:31 +0000 | [diff] [blame] | 1076 | |
| 1077 | /// Simple Analysis hook. Delete value L from alias set map. |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 1078 | /// |
David Peixotto | 0d4d5e6 | 2014-09-24 16:48:31 +0000 | [diff] [blame] | 1079 | void LICM::deleteAnalysisLoop(Loop *L) { |
| 1080 | AliasSetTracker *AST = LoopToAliasSetMap.lookup(L); |
| 1081 | if (!AST) |
| 1082 | return; |
| 1083 | |
| 1084 | delete AST; |
| 1085 | LoopToAliasSetMap.erase(L); |
| 1086 | } |
Hal Finkel | 3d4269a | 2015-02-22 18:35:32 +0000 | [diff] [blame] | 1087 | |
| 1088 | |
| 1089 | /// Return true if the body of this loop may store into the memory |
| 1090 | /// location pointed to by V. |
| 1091 | /// |
| 1092 | static bool pointerInvalidatedByLoop(Value *V, uint64_t Size, |
| 1093 | const AAMDNodes &AAInfo, |
| 1094 | AliasSetTracker *CurAST) { |
| 1095 | // Check to see if any of the basic blocks in CurLoop invalidate *V. |
| 1096 | return CurAST->getAliasSetForPointer(V, Size, AAInfo).isMod(); |
| 1097 | } |
| 1098 | |
| 1099 | /// Little predicate that returns true if the specified basic block is in |
| 1100 | /// a subloop of the current one, not the current one itself. |
| 1101 | /// |
| 1102 | static bool inSubLoop(BasicBlock *BB, Loop *CurLoop, LoopInfo *LI) { |
| 1103 | assert(CurLoop->contains(BB) && "Only valid if BB is IN the loop"); |
| 1104 | return LI->getLoopFor(BB) != CurLoop; |
| 1105 | } |
| 1106 | |