Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 1 | //===- IVUsers.cpp - Induction Variable Users -------------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements bookkeeping for "interesting" users of expressions |
| 11 | // computed from induction variables. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Dehao Chen | 78ee4b6 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 15 | #include "llvm/Analysis/IVUsers.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/STLExtras.h" |
Daniel Jasper | 8de3a54 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 17 | #include "llvm/Analysis/AssumptionCache.h" |
Jingyue Wu | 8e7e365 | 2015-07-13 03:28:53 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/CodeMetrics.h" |
Chandler Carruth | c68d25f | 2017-01-11 09:43:56 +0000 | [diff] [blame] | 19 | #include "llvm/Analysis/LoopAnalysisManager.h" |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/LoopPass.h" |
| 21 | #include "llvm/Analysis/ScalarEvolutionExpressions.h" |
Andrew Trick | 31f61e8 | 2012-07-13 23:33:05 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/ValueTracking.h" |
Nico Weber | 0f38c60 | 2018-04-30 14:59:11 +0000 | [diff] [blame] | 23 | #include "llvm/Config/llvm-config.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 24 | #include "llvm/IR/Constants.h" |
| 25 | #include "llvm/IR/DataLayout.h" |
| 26 | #include "llvm/IR/DerivedTypes.h" |
Chandler Carruth | 56e1394 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 27 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 28 | #include "llvm/IR/Instructions.h" |
Mehdi Amini | c94da20 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 29 | #include "llvm/IR/Module.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 30 | #include "llvm/IR/Type.h" |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 31 | #include "llvm/Support/Debug.h" |
| 32 | #include "llvm/Support/raw_ostream.h" |
| 33 | #include <algorithm> |
| 34 | using namespace llvm; |
| 35 | |
Chandler Carruth | 4da2537 | 2014-04-22 02:48:03 +0000 | [diff] [blame] | 36 | #define DEBUG_TYPE "iv-users" |
| 37 | |
Chandler Carruth | 33d5681 | 2016-11-23 17:53:26 +0000 | [diff] [blame] | 38 | AnalysisKey IVUsersAnalysis::Key; |
Dehao Chen | 78ee4b6 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 39 | |
Chandler Carruth | d27a39a | 2017-01-11 06:23:21 +0000 | [diff] [blame] | 40 | IVUsers IVUsersAnalysis::run(Loop &L, LoopAnalysisManager &AM, |
| 41 | LoopStandardAnalysisResults &AR) { |
| 42 | return IVUsers(&L, &AR.AC, &AR.LI, &AR.DT, &AR.SE); |
Dehao Chen | 78ee4b6 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 43 | } |
| 44 | |
Dehao Chen | 78ee4b6 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 45 | char IVUsersWrapperPass::ID = 0; |
| 46 | INITIALIZE_PASS_BEGIN(IVUsersWrapperPass, "iv-users", |
Owen Anderson | 2ab36d3 | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 47 | "Induction Variable Users", false, true) |
Daniel Jasper | 8de3a54 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 48 | INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) |
Chandler Carruth | de5df29 | 2015-01-17 14:16:18 +0000 | [diff] [blame] | 49 | INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) |
Chandler Carruth | 7f2eff7 | 2014-01-13 13:07:17 +0000 | [diff] [blame] | 50 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
Chandler Carruth | bfe1f1c | 2015-08-17 02:08:17 +0000 | [diff] [blame] | 51 | INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass) |
Dehao Chen | 78ee4b6 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 52 | INITIALIZE_PASS_END(IVUsersWrapperPass, "iv-users", "Induction Variable Users", |
| 53 | false, true) |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 54 | |
Dehao Chen | 78ee4b6 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 55 | Pass *llvm::createIVUsersPass() { return new IVUsersWrapperPass(); } |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 56 | |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 57 | /// isInteresting - Test whether the given expression is "interesting" when |
| 58 | /// used by the given expression, within the context of analyzing the |
| 59 | /// given loop. |
| 60 | static bool isInteresting(const SCEV *S, const Instruction *I, const Loop *L, |
Dan Gohman | 71997f3 | 2011-07-01 22:05:19 +0000 | [diff] [blame] | 61 | ScalarEvolution *SE, LoopInfo *LI) { |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 62 | // An addrec is interesting if it's affine or if it has an interesting start. |
| 63 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
Dan Gohman | 71997f3 | 2011-07-01 22:05:19 +0000 | [diff] [blame] | 64 | // Keep things simple. Don't touch loop-variant strides unless they're |
| 65 | // only used outside the loop and we can simplify them. |
Dan Gohman | b3cdb0e | 2010-04-09 01:22:56 +0000 | [diff] [blame] | 66 | if (AR->getLoop() == L) |
Dan Gohman | 71997f3 | 2011-07-01 22:05:19 +0000 | [diff] [blame] | 67 | return AR->isAffine() || |
| 68 | (!L->contains(I) && |
| 69 | SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR); |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 70 | // Otherwise recurse to see if the start value is interesting, and that |
| 71 | // the step value is not interesting, since we don't yet know how to |
| 72 | // do effective SCEV expansions for addrecs with interesting steps. |
Dan Gohman | 71997f3 | 2011-07-01 22:05:19 +0000 | [diff] [blame] | 73 | return isInteresting(AR->getStart(), I, L, SE, LI) && |
| 74 | !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI); |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 75 | } |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 76 | |
Dan Gohman | bbc1da8 | 2010-08-17 22:50:37 +0000 | [diff] [blame] | 77 | // An add is interesting if exactly one of its operands is interesting. |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 78 | if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 79 | bool AnyInterestingYet = false; |
Sanjoy Das | 96ed206 | 2017-04-14 01:33:15 +0000 | [diff] [blame] | 80 | for (const auto *Op : Add->operands()) |
| 81 | if (isInteresting(Op, I, L, SE, LI)) { |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 82 | if (AnyInterestingYet) |
| 83 | return false; |
| 84 | AnyInterestingYet = true; |
| 85 | } |
| 86 | return AnyInterestingYet; |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 87 | } |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 88 | |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 89 | // Nothing else is interesting here. |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 90 | return false; |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 91 | } |
| 92 | |
Andrew Trick | f949228 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 93 | /// Return true if all loop headers that dominate this block are in simplified |
| 94 | /// form. |
| 95 | static bool isSimplifiedLoopNest(BasicBlock *BB, const DominatorTree *DT, |
| 96 | const LoopInfo *LI, |
Craig Topper | 431bdfc | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 97 | SmallPtrSetImpl<Loop*> &SimpleLoopNests) { |
Craig Topper | 570e52c | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 98 | Loop *NearestLoop = nullptr; |
Andrew Trick | f949228 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 99 | for (DomTreeNode *Rung = DT->getNode(BB); |
Andrew Trick | 75ae203 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 100 | Rung; Rung = Rung->getIDom()) { |
Andrew Trick | f949228 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 101 | BasicBlock *DomBB = Rung->getBlock(); |
| 102 | Loop *DomLoop = LI->getLoopFor(DomBB); |
| 103 | if (DomLoop && DomLoop->getHeader() == DomBB) { |
| 104 | // If the domtree walk reaches a loop with no preheader, return false. |
Andrew Trick | 75ae203 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 105 | if (!DomLoop->isLoopSimplifyForm()) |
| 106 | return false; |
Andrew Trick | f949228 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 107 | // If we have already checked this loop nest, stop checking. |
| 108 | if (SimpleLoopNests.count(DomLoop)) |
| 109 | break; |
| 110 | // If we have not already checked this loop nest, remember the loop |
| 111 | // header nearest to BB. The nearest loop may not contain BB. |
| 112 | if (!NearestLoop) |
| 113 | NearestLoop = DomLoop; |
Andrew Trick | 75ae203 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 114 | } |
| 115 | } |
Andrew Trick | f949228 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 116 | if (NearestLoop) |
| 117 | SimpleLoopNests.insert(NearestLoop); |
Andrew Trick | 75ae203 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 118 | return true; |
| 119 | } |
| 120 | |
Sanjoy Das | cfd7f99 | 2017-04-14 15:49:53 +0000 | [diff] [blame] | 121 | /// IVUseShouldUsePostIncValue - We have discovered a "User" of an IV expression |
| 122 | /// and now we need to decide whether the user should use the preinc or post-inc |
| 123 | /// value. If this user should use the post-inc version of the IV, return true. |
| 124 | /// |
| 125 | /// Choosing wrong here can break dominance properties (if we choose to use the |
| 126 | /// post-inc value when we cannot) or it can end up adding extra live-ranges to |
| 127 | /// the loop, resulting in reg-reg copies (if we use the pre-inc value when we |
| 128 | /// should use the post-inc value). |
| 129 | static bool IVUseShouldUsePostIncValue(Instruction *User, Value *Operand, |
| 130 | const Loop *L, DominatorTree *DT) { |
| 131 | // If the user is in the loop, use the preinc value. |
| 132 | if (L->contains(User)) |
| 133 | return false; |
| 134 | |
| 135 | BasicBlock *LatchBlock = L->getLoopLatch(); |
| 136 | if (!LatchBlock) |
| 137 | return false; |
| 138 | |
| 139 | // Ok, the user is outside of the loop. If it is dominated by the latch |
| 140 | // block, use the post-inc value. |
| 141 | if (DT->dominates(LatchBlock, User->getParent())) |
| 142 | return true; |
| 143 | |
| 144 | // There is one case we have to be careful of: PHI nodes. These little guys |
| 145 | // can live in blocks that are not dominated by the latch block, but (since |
| 146 | // their uses occur in the predecessor block, not the block the PHI lives in) |
| 147 | // should still use the post-inc value. Check for this case now. |
| 148 | PHINode *PN = dyn_cast<PHINode>(User); |
| 149 | if (!PN || !Operand) |
| 150 | return false; // not a phi, not dominated by latch block. |
| 151 | |
| 152 | // Look at all of the uses of Operand by the PHI node. If any use corresponds |
| 153 | // to a block that is not dominated by the latch block, give up and use the |
| 154 | // preincremented value. |
| 155 | for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) |
| 156 | if (PN->getIncomingValue(i) == Operand && |
| 157 | !DT->dominates(LatchBlock, PN->getIncomingBlock(i))) |
| 158 | return false; |
| 159 | |
| 160 | // Okay, all uses of Operand by PN are in predecessor blocks that really are |
| 161 | // dominated by the latch block. Use the post-incremented value. |
| 162 | return true; |
| 163 | } |
| 164 | |
Andrew Trick | 1508e5e | 2012-03-22 17:47:33 +0000 | [diff] [blame] | 165 | /// AddUsersImpl - Inspect the specified instruction. If it is a |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 166 | /// reducible SCEV, recursively add its users to the IVUsesByStride set and |
| 167 | /// return true. Otherwise, return false. |
Andrew Trick | 1508e5e | 2012-03-22 17:47:33 +0000 | [diff] [blame] | 168 | bool IVUsers::AddUsersImpl(Instruction *I, |
Craig Topper | 431bdfc | 2014-08-21 05:55:13 +0000 | [diff] [blame] | 169 | SmallPtrSetImpl<Loop*> &SimpleLoopNests) { |
Mehdi Amini | 529919f | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 170 | const DataLayout &DL = I->getModule()->getDataLayout(); |
| 171 | |
Andrew Trick | 260bf53 | 2012-01-06 21:41:55 +0000 | [diff] [blame] | 172 | // Add this IV user to the Processed set before returning false to ensure that |
| 173 | // all IV users are members of the set. See IVUsers::isIVUserOrOperand. |
David Blaikie | 5401ba7 | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 174 | if (!Processed.insert(I).second) |
Andrew Trick | 260bf53 | 2012-01-06 21:41:55 +0000 | [diff] [blame] | 175 | return true; // Instruction already handled. |
| 176 | |
Dan Gohman | eaa40ff | 2010-08-29 16:40:03 +0000 | [diff] [blame] | 177 | if (!SE->isSCEVable(I->getType())) |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 178 | return false; // Void and FP expressions cannot be reduced. |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 179 | |
Andrew Trick | 31f61e8 | 2012-07-13 23:33:05 +0000 | [diff] [blame] | 180 | // IVUsers is used by LSR which assumes that all SCEV expressions are safe to |
| 181 | // pass to SCEVExpander. Expressions are not safe to expand if they represent |
| 182 | // operations that are not safe to speculate, namely integer division. |
Mehdi Amini | 529919f | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 183 | if (!isa<PHINode>(I) && !isSafeToSpeculativelyExecute(I)) |
Andrew Trick | 31f61e8 | 2012-07-13 23:33:05 +0000 | [diff] [blame] | 184 | return false; |
| 185 | |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 186 | // LSR is not APInt clean, do not touch integers bigger than 64-bits. |
Andrew Trick | 5fd5b12 | 2011-03-18 16:50:32 +0000 | [diff] [blame] | 187 | // Also avoid creating IVs of non-native types. For example, we don't want a |
| 188 | // 64-bit IV in 32-bit code just because the loop has one 64-bit cast. |
| 189 | uint64_t Width = SE->getTypeSizeInBits(I->getType()); |
Mehdi Amini | 529919f | 2015-03-10 02:37:25 +0000 | [diff] [blame] | 190 | if (Width > 64 || !DL.isLegalInteger(Width)) |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 191 | return false; |
Jim Grosbach | 97200e4 | 2009-11-19 02:05:44 +0000 | [diff] [blame] | 192 | |
Jingyue Wu | 8e7e365 | 2015-07-13 03:28:53 +0000 | [diff] [blame] | 193 | // Don't attempt to promote ephemeral values to indvars. They will be removed |
| 194 | // later anyway. |
| 195 | if (EphValues.count(I)) |
| 196 | return false; |
| 197 | |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 198 | // Get the symbolic expression for this instruction. |
| 199 | const SCEV *ISE = SE->getSCEV(I); |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 200 | |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 201 | // If we've come to an uninteresting expression, stop the traversal and |
| 202 | // call this a user. |
Dan Gohman | 71997f3 | 2011-07-01 22:05:19 +0000 | [diff] [blame] | 203 | if (!isInteresting(ISE, I, L, SE, LI)) |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 204 | return false; |
Dan Gohman | eaa40ff | 2010-08-29 16:40:03 +0000 | [diff] [blame] | 205 | |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 206 | SmallPtrSet<Instruction *, 4> UniqueUsers; |
Chandler Carruth | 36b699f | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 207 | for (Use &U : I->uses()) { |
| 208 | Instruction *User = cast<Instruction>(U.getUser()); |
David Blaikie | 5401ba7 | 2014-11-19 07:49:26 +0000 | [diff] [blame] | 209 | if (!UniqueUsers.insert(User).second) |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 210 | continue; |
| 211 | |
| 212 | // Do not infinitely recurse on PHI nodes. |
| 213 | if (isa<PHINode>(User) && Processed.count(User)) |
| 214 | continue; |
| 215 | |
Andrew Trick | 75ae203 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 216 | // Only consider IVUsers that are dominated by simplified loop |
| 217 | // headers. Otherwise, SCEVExpander will crash. |
Andrew Trick | a3b10b8 | 2012-03-20 21:24:44 +0000 | [diff] [blame] | 218 | BasicBlock *UseBB = User->getParent(); |
| 219 | // A phi's use is live out of its predecessor block. |
| 220 | if (PHINode *PHI = dyn_cast<PHINode>(User)) { |
Chandler Carruth | 36b699f | 2014-03-09 03:16:01 +0000 | [diff] [blame] | 221 | unsigned OperandNo = U.getOperandNo(); |
Andrew Trick | a3b10b8 | 2012-03-20 21:24:44 +0000 | [diff] [blame] | 222 | unsigned ValNo = PHINode::getIncomingValueNumForOperand(OperandNo); |
| 223 | UseBB = PHI->getIncomingBlock(ValNo); |
| 224 | } |
| 225 | if (!isSimplifiedLoopNest(UseBB, DT, LI, SimpleLoopNests)) |
Andrew Trick | f949228 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 226 | return false; |
Andrew Trick | 75ae203 | 2012-03-16 03:16:56 +0000 | [diff] [blame] | 227 | |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 228 | // Descend recursively, but not into PHI nodes outside the current loop. |
| 229 | // It's important to see the entire expression outside the loop to get |
| 230 | // choices that depend on addressing mode use right, although we won't |
| 231 | // consider references outside the loop in all cases. |
| 232 | // If User is already in Processed, we don't want to recurse into it again, |
| 233 | // but do want to record a second reference in the same instruction. |
| 234 | bool AddUserToIVUsers = false; |
Andrew Trick | f949228 | 2012-03-20 21:24:40 +0000 | [diff] [blame] | 235 | if (LI->getLoopFor(User->getParent()) != L) { |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 236 | if (isa<PHINode>(User) || Processed.count(User) || |
Andrew Trick | 1508e5e | 2012-03-22 17:47:33 +0000 | [diff] [blame] | 237 | !AddUsersImpl(User, SimpleLoopNests)) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 238 | LLVM_DEBUG(dbgs() << "FOUND USER in other loop: " << *User << '\n' |
| 239 | << " OF SCEV: " << *ISE << '\n'); |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 240 | AddUserToIVUsers = true; |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 241 | } |
Andrew Trick | 1508e5e | 2012-03-22 17:47:33 +0000 | [diff] [blame] | 242 | } else if (Processed.count(User) || !AddUsersImpl(User, SimpleLoopNests)) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 243 | LLVM_DEBUG(dbgs() << "FOUND USER: " << *User << '\n' |
| 244 | << " OF SCEV: " << *ISE << '\n'); |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 245 | AddUserToIVUsers = true; |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 246 | } |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 247 | |
| 248 | if (AddUserToIVUsers) { |
| 249 | // Okay, we found a user that we cannot reduce. |
Michael Zolotukhin | 4a0593c | 2014-03-12 21:31:05 +0000 | [diff] [blame] | 250 | IVStrideUse &NewUse = AddUser(User, I); |
Dan Gohman | cc1ffc6 | 2011-05-27 18:42:33 +0000 | [diff] [blame] | 251 | // Autodetect the post-inc loop set, populating NewUse.PostIncLoops. |
| 252 | // The regular return value here is discarded; instead of recording |
| 253 | // it, we just recompute it when we need it. |
Michael Zolotukhin | 4a0593c | 2014-03-12 21:31:05 +0000 | [diff] [blame] | 254 | const SCEV *OriginalISE = ISE; |
Sanjoy Das | cfd7f99 | 2017-04-14 15:49:53 +0000 | [diff] [blame] | 255 | |
| 256 | auto NormalizePred = [&](const SCEVAddRecExpr *AR) { |
Sanjoy Das | cfd7f99 | 2017-04-14 15:49:53 +0000 | [diff] [blame] | 257 | auto *L = AR->getLoop(); |
Sanjoy Das | 3900334 | 2017-04-25 06:53:25 +0000 | [diff] [blame] | 258 | bool Result = IVUseShouldUsePostIncValue(User, I, L, DT); |
Sanjoy Das | cfd7f99 | 2017-04-14 15:49:53 +0000 | [diff] [blame] | 259 | if (Result) |
| 260 | NewUse.PostIncLoops.insert(L); |
| 261 | return Result; |
| 262 | }; |
| 263 | |
Sanjoy Das | fe33eb8 | 2017-04-14 15:49:59 +0000 | [diff] [blame] | 264 | ISE = normalizeForPostIncUseIf(ISE, NormalizePred, *SE); |
Michael Zolotukhin | 4a0593c | 2014-03-12 21:31:05 +0000 | [diff] [blame] | 265 | |
| 266 | // PostIncNormalization effectively simplifies the expression under |
| 267 | // pre-increment assumptions. Those assumptions (no wrapping) might not |
| 268 | // hold for the post-inc value. Catch such cases by making sure the |
| 269 | // transformation is invertible. |
| 270 | if (OriginalISE != ISE) { |
Sanjoy Das | fe33eb8 | 2017-04-14 15:49:59 +0000 | [diff] [blame] | 271 | const SCEV *DenormalizedISE = |
| 272 | denormalizeForPostIncUse(ISE, NewUse.PostIncLoops, *SE); |
Michael Zolotukhin | 4a0593c | 2014-03-12 21:31:05 +0000 | [diff] [blame] | 273 | |
| 274 | // If we normalized the expression, but denormalization doesn't give the |
| 275 | // original one, discard this user. |
| 276 | if (OriginalISE != DenormalizedISE) { |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 277 | LLVM_DEBUG(dbgs() |
| 278 | << " DISCARDING (NORMALIZATION ISN'T INVERTIBLE): " |
| 279 | << *ISE << '\n'); |
Michael Zolotukhin | 4a0593c | 2014-03-12 21:31:05 +0000 | [diff] [blame] | 280 | IVUses.pop_back(); |
| 281 | return false; |
| 282 | } |
| 283 | } |
Nicola Zaghen | 0818e78 | 2018-05-14 12:53:11 +0000 | [diff] [blame] | 284 | LLVM_DEBUG(if (SE->getSCEV(I) != ISE) dbgs() |
| 285 | << " NORMALIZED TO: " << *ISE << '\n'); |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 286 | } |
| 287 | } |
| 288 | return true; |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 289 | } |
| 290 | |
Andrew Trick | 1508e5e | 2012-03-22 17:47:33 +0000 | [diff] [blame] | 291 | bool IVUsers::AddUsersIfInteresting(Instruction *I) { |
| 292 | // SCEVExpander can only handle users that are dominated by simplified loop |
| 293 | // entries. Keep track of all loops that are only dominated by other simple |
| 294 | // loops so we don't traverse the domtree for each user. |
| 295 | SmallPtrSet<Loop*,16> SimpleLoopNests; |
| 296 | |
| 297 | return AddUsersImpl(I, SimpleLoopNests); |
| 298 | } |
| 299 | |
Andrew Trick | 4417e53 | 2011-06-21 15:43:52 +0000 | [diff] [blame] | 300 | IVStrideUse &IVUsers::AddUser(Instruction *User, Value *Operand) { |
| 301 | IVUses.push_back(new IVStrideUse(this, User, Operand)); |
Dan Gohman | 191bd64 | 2010-09-01 01:45:53 +0000 | [diff] [blame] | 302 | return IVUses.back(); |
Evan Cheng | 586f69a | 2009-11-12 07:35:05 +0000 | [diff] [blame] | 303 | } |
| 304 | |
Daniel Jasper | 8de3a54 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 305 | IVUsers::IVUsers(Loop *L, AssumptionCache *AC, LoopInfo *LI, DominatorTree *DT, |
| 306 | ScalarEvolution *SE) |
| 307 | : L(L), AC(AC), LI(LI), DT(DT), SE(SE), IVUses() { |
Jingyue Wu | 8e7e365 | 2015-07-13 03:28:53 +0000 | [diff] [blame] | 308 | // Collect ephemeral values so that AddUsersIfInteresting skips them. |
| 309 | EphValues.clear(); |
Daniel Jasper | 8de3a54 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 310 | CodeMetrics::collectEphemeralValues(L, AC, EphValues); |
Jingyue Wu | 8e7e365 | 2015-07-13 03:28:53 +0000 | [diff] [blame] | 311 | |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 312 | // Find all uses of induction variables in this loop, and categorize |
| 313 | // them by stride. Start by finding all of the PHI nodes in the header for |
| 314 | // this loop. If they are induction variables, inspect their uses. |
| 315 | for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ++I) |
Duncan P. N. Exon Smith | d3a5adc | 2015-10-10 00:53:03 +0000 | [diff] [blame] | 316 | (void)AddUsersIfInteresting(&*I); |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 317 | } |
| 318 | |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 319 | void IVUsers::print(raw_ostream &OS, const Module *M) const { |
| 320 | OS << "IV Users for loop "; |
Chandler Carruth | 560e395 | 2014-01-09 02:29:41 +0000 | [diff] [blame] | 321 | L->getHeader()->printAsOperand(OS, false); |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 322 | if (SE->hasLoopInvariantBackedgeTakenCount(L)) { |
Dehao Chen | 78ee4b6 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 323 | OS << " with backedge-taken count " << *SE->getBackedgeTakenCount(L); |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 324 | } |
| 325 | OS << ":\n"; |
| 326 | |
Benjamin Kramer | 8d0d2b6 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 327 | for (const IVStrideUse &IVUse : IVUses) { |
Dan Gohman | 572645c | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 328 | OS << " "; |
Benjamin Kramer | 8d0d2b6 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 329 | IVUse.getOperandValToReplace()->printAsOperand(OS, false); |
| 330 | OS << " = " << *getReplacementExpr(IVUse); |
| 331 | for (auto PostIncLoop : IVUse.PostIncLoops) { |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 332 | OS << " (post-inc with loop "; |
Benjamin Kramer | 8d0d2b6 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 333 | PostIncLoop->getHeader()->printAsOperand(OS, false); |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 334 | OS << ")"; |
| 335 | } |
Dan Gohman | 572645c | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 336 | OS << " in "; |
Benjamin Kramer | 8d0d2b6 | 2016-06-26 17:27:42 +0000 | [diff] [blame] | 337 | if (IVUse.getUser()) |
| 338 | IVUse.getUser()->print(OS); |
Richard Trieu | 7921239 | 2014-06-21 02:43:02 +0000 | [diff] [blame] | 339 | else |
| 340 | OS << "Printing <null> User"; |
Dan Gohman | 572645c | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 341 | OS << '\n'; |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 342 | } |
| 343 | } |
| 344 | |
Aaron Ballman | 1d03d38 | 2017-10-15 14:32:27 +0000 | [diff] [blame] | 345 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Dehao Chen | 78ee4b6 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 346 | LLVM_DUMP_METHOD void IVUsers::dump() const { print(dbgs()); } |
Manman Ren | cc77eec | 2012-09-06 19:55:56 +0000 | [diff] [blame] | 347 | #endif |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 348 | |
| 349 | void IVUsers::releaseMemory() { |
Evan Cheng | 04149f7 | 2009-12-17 09:39:49 +0000 | [diff] [blame] | 350 | Processed.clear(); |
Dan Gohman | 6bec5bb | 2009-12-18 00:06:20 +0000 | [diff] [blame] | 351 | IVUses.clear(); |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 352 | } |
| 353 | |
Dehao Chen | 78ee4b6 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 354 | IVUsersWrapperPass::IVUsersWrapperPass() : LoopPass(ID) { |
| 355 | initializeIVUsersWrapperPassPass(*PassRegistry::getPassRegistry()); |
| 356 | } |
| 357 | |
| 358 | void IVUsersWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const { |
Daniel Jasper | 8de3a54 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 359 | AU.addRequired<AssumptionCacheTracker>(); |
Dehao Chen | 78ee4b6 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 360 | AU.addRequired<LoopInfoWrapperPass>(); |
| 361 | AU.addRequired<DominatorTreeWrapperPass>(); |
| 362 | AU.addRequired<ScalarEvolutionWrapperPass>(); |
| 363 | AU.setPreservesAll(); |
| 364 | } |
| 365 | |
| 366 | bool IVUsersWrapperPass::runOnLoop(Loop *L, LPPassManager &LPM) { |
Daniel Jasper | 8de3a54 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 367 | auto *AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache( |
| 368 | *L->getHeader()->getParent()); |
Dehao Chen | 78ee4b6 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 369 | auto *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); |
| 370 | auto *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
| 371 | auto *SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE(); |
| 372 | |
Daniel Jasper | 8de3a54 | 2016-12-19 08:22:17 +0000 | [diff] [blame] | 373 | IU.reset(new IVUsers(L, AC, LI, DT, SE)); |
Dehao Chen | 78ee4b6 | 2016-07-16 22:51:33 +0000 | [diff] [blame] | 374 | return false; |
| 375 | } |
| 376 | |
| 377 | void IVUsersWrapperPass::print(raw_ostream &OS, const Module *M) const { |
| 378 | IU->print(OS, M); |
| 379 | } |
| 380 | |
| 381 | void IVUsersWrapperPass::releaseMemory() { IU->releaseMemory(); } |
| 382 | |
Dan Gohman | c056454 | 2010-04-19 21:48:58 +0000 | [diff] [blame] | 383 | /// getReplacementExpr - Return a SCEV expression which computes the |
| 384 | /// value of the OperandValToReplace. |
| 385 | const SCEV *IVUsers::getReplacementExpr(const IVStrideUse &IU) const { |
| 386 | return SE->getSCEV(IU.getOperandValToReplace()); |
| 387 | } |
| 388 | |
| 389 | /// getExpr - Return the expression for the use. |
| 390 | const SCEV *IVUsers::getExpr(const IVStrideUse &IU) const { |
Sanjoy Das | fe33eb8 | 2017-04-14 15:49:59 +0000 | [diff] [blame] | 391 | return normalizeForPostIncUse(getReplacementExpr(IU), IU.getPostIncLoops(), |
| 392 | *SE); |
Dan Gohman | c056454 | 2010-04-19 21:48:58 +0000 | [diff] [blame] | 393 | } |
| 394 | |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 395 | static const SCEVAddRecExpr *findAddRecForLoop(const SCEV *S, const Loop *L) { |
| 396 | if (const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(S)) { |
| 397 | if (AR->getLoop() == L) |
| 398 | return AR; |
| 399 | return findAddRecForLoop(AR->getStart(), L); |
| 400 | } |
| 401 | |
| 402 | if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) { |
Sanjoy Das | 96ed206 | 2017-04-14 01:33:15 +0000 | [diff] [blame] | 403 | for (const auto *Op : Add->operands()) |
| 404 | if (const SCEVAddRecExpr *AR = findAddRecForLoop(Op, L)) |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 405 | return AR; |
Craig Topper | 570e52c | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 406 | return nullptr; |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 407 | } |
| 408 | |
Craig Topper | 570e52c | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 409 | return nullptr; |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 410 | } |
| 411 | |
Dan Gohman | c056454 | 2010-04-19 21:48:58 +0000 | [diff] [blame] | 412 | const SCEV *IVUsers::getStride(const IVStrideUse &IU, const Loop *L) const { |
| 413 | if (const SCEVAddRecExpr *AR = findAddRecForLoop(getExpr(IU), L)) |
| 414 | return AR->getStepRecurrence(*SE); |
Craig Topper | 570e52c | 2014-04-15 04:59:12 +0000 | [diff] [blame] | 415 | return nullptr; |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 416 | } |
| 417 | |
| 418 | void IVStrideUse::transformToPostInc(const Loop *L) { |
Dan Gohman | 448db1c | 2010-04-07 22:27:08 +0000 | [diff] [blame] | 419 | PostIncLoops.insert(L); |
| 420 | } |
| 421 | |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 422 | void IVStrideUse::deleted() { |
| 423 | // Remove this user from the list. |
Andrew Trick | 260bf53 | 2012-01-06 21:41:55 +0000 | [diff] [blame] | 424 | Parent->Processed.erase(this->getUser()); |
Dan Gohman | 572645c | 2010-02-12 10:34:29 +0000 | [diff] [blame] | 425 | Parent->IVUses.erase(this); |
Dan Gohman | 81db61a | 2009-05-12 02:17:14 +0000 | [diff] [blame] | 426 | // this now dangles! |
| 427 | } |