Andreas Bolka | cb21010 | 2009-06-24 21:29:13 +0000 | [diff] [blame] | 1 | //===- LoopDependenceAnalysis.cpp - LDA Implementation ----------*- 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 is the (beginning) of an implementation of a loop dependence analysis |
| 11 | // framework, which is used to detect dependences in memory accesses in loops. |
| 12 | // |
| 13 | // Please note that this is work in progress and the interface is subject to |
| 14 | // change. |
| 15 | // |
| 16 | // TODO: adapt as implementation progresses. |
| 17 | // |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 18 | // TODO: document lingo (pair, subscript, index) |
| 19 | // |
Andreas Bolka | cb21010 | 2009-06-24 21:29:13 +0000 | [diff] [blame] | 20 | //===----------------------------------------------------------------------===// |
| 21 | |
| 22 | #define DEBUG_TYPE "lda" |
Andreas Bolka | 699db99 | 2009-08-07 18:23:41 +0000 | [diff] [blame] | 23 | #include "llvm/ADT/DenseSet.h" |
Andreas Bolka | 328fb3d | 2009-07-28 19:49:49 +0000 | [diff] [blame] | 24 | #include "llvm/ADT/Statistic.h" |
Andreas Bolka | fecbc59 | 2009-07-01 21:45:23 +0000 | [diff] [blame] | 25 | #include "llvm/Analysis/AliasAnalysis.h" |
Andreas Bolka | cb21010 | 2009-06-24 21:29:13 +0000 | [diff] [blame] | 26 | #include "llvm/Analysis/LoopDependenceAnalysis.h" |
| 27 | #include "llvm/Analysis/LoopPass.h" |
| 28 | #include "llvm/Analysis/ScalarEvolution.h" |
Andreas Bolka | 5eca452 | 2009-08-03 01:03:48 +0000 | [diff] [blame] | 29 | #include "llvm/Analysis/ScalarEvolutionExpressions.h" |
Dan Gohman | 5034dd3 | 2010-12-15 20:02:24 +0000 | [diff] [blame] | 30 | #include "llvm/Analysis/ValueTracking.h" |
Chris Lattner | 9fc5cdf | 2011-01-02 22:09:33 +0000 | [diff] [blame] | 31 | #include "llvm/Assembly/Writer.h" |
Andreas Bolka | f35626d | 2009-06-28 00:21:21 +0000 | [diff] [blame] | 32 | #include "llvm/Instructions.h" |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 33 | #include "llvm/Operator.h" |
Andreas Bolka | 0baa25d | 2009-07-24 23:19:28 +0000 | [diff] [blame] | 34 | #include "llvm/Support/Allocator.h" |
Andreas Bolka | e9722fc | 2009-06-30 02:12:10 +0000 | [diff] [blame] | 35 | #include "llvm/Support/Debug.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 36 | #include "llvm/Support/ErrorHandling.h" |
Andreas Bolka | 0baa25d | 2009-07-24 23:19:28 +0000 | [diff] [blame] | 37 | #include "llvm/Support/raw_ostream.h" |
Andreas Bolka | fecbc59 | 2009-07-01 21:45:23 +0000 | [diff] [blame] | 38 | #include "llvm/Target/TargetData.h" |
Andreas Bolka | cb21010 | 2009-06-24 21:29:13 +0000 | [diff] [blame] | 39 | using namespace llvm; |
| 40 | |
Andreas Bolka | 328fb3d | 2009-07-28 19:49:49 +0000 | [diff] [blame] | 41 | STATISTIC(NumAnswered, "Number of dependence queries answered"); |
| 42 | STATISTIC(NumAnalysed, "Number of distinct dependence pairs analysed"); |
| 43 | STATISTIC(NumDependent, "Number of pairs with dependent accesses"); |
| 44 | STATISTIC(NumIndependent, "Number of pairs with independent accesses"); |
| 45 | STATISTIC(NumUnknown, "Number of pairs with unknown accesses"); |
| 46 | |
Andreas Bolka | cb21010 | 2009-06-24 21:29:13 +0000 | [diff] [blame] | 47 | LoopPass *llvm::createLoopDependenceAnalysisPass() { |
| 48 | return new LoopDependenceAnalysis(); |
| 49 | } |
| 50 | |
Owen Anderson | 2ab36d3 | 2010-10-12 19:48:12 +0000 | [diff] [blame] | 51 | INITIALIZE_PASS_BEGIN(LoopDependenceAnalysis, "lda", |
| 52 | "Loop Dependence Analysis", false, true) |
| 53 | INITIALIZE_PASS_DEPENDENCY(ScalarEvolution) |
| 54 | INITIALIZE_AG_DEPENDENCY(AliasAnalysis) |
| 55 | INITIALIZE_PASS_END(LoopDependenceAnalysis, "lda", |
Owen Anderson | ce665bd | 2010-10-07 22:25:06 +0000 | [diff] [blame] | 56 | "Loop Dependence Analysis", false, true) |
Andreas Bolka | cb21010 | 2009-06-24 21:29:13 +0000 | [diff] [blame] | 57 | char LoopDependenceAnalysis::ID = 0; |
| 58 | |
| 59 | //===----------------------------------------------------------------------===// |
Andreas Bolka | f35626d | 2009-06-28 00:21:21 +0000 | [diff] [blame] | 60 | // Utility Functions |
| 61 | //===----------------------------------------------------------------------===// |
| 62 | |
Andreas Bolka | 2fbb770 | 2009-06-29 18:51:11 +0000 | [diff] [blame] | 63 | static inline bool IsMemRefInstr(const Value *V) { |
| 64 | const Instruction *I = dyn_cast<const Instruction>(V); |
| 65 | return I && (I->mayReadFromMemory() || I->mayWriteToMemory()); |
Andreas Bolka | f35626d | 2009-06-28 00:21:21 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Andreas Bolka | 3b59dd8 | 2009-07-23 01:57:06 +0000 | [diff] [blame] | 68 | static void GetMemRefInstrs(const Loop *L, |
| 69 | SmallVectorImpl<Instruction*> &Memrefs) { |
Andreas Bolka | c6a3030 | 2009-06-28 00:35:22 +0000 | [diff] [blame] | 70 | for (Loop::block_iterator b = L->block_begin(), be = L->block_end(); |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 71 | b != be; ++b) |
Andreas Bolka | c6a3030 | 2009-06-28 00:35:22 +0000 | [diff] [blame] | 72 | for (BasicBlock::iterator i = (*b)->begin(), ie = (*b)->end(); |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 73 | i != ie; ++i) |
Andreas Bolka | acd6f8d | 2009-06-29 00:50:26 +0000 | [diff] [blame] | 74 | if (IsMemRefInstr(i)) |
Andreas Bolka | 3b59dd8 | 2009-07-23 01:57:06 +0000 | [diff] [blame] | 75 | Memrefs.push_back(i); |
Andreas Bolka | c6a3030 | 2009-06-28 00:35:22 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Andreas Bolka | e9722fc | 2009-06-30 02:12:10 +0000 | [diff] [blame] | 78 | static bool IsLoadOrStoreInst(Value *I) { |
Eli Friedman | 667ccf2 | 2011-08-15 20:54:19 +0000 | [diff] [blame] | 79 | // Returns true if the load or store can be analyzed. Atomic and volatile |
| 80 | // operations have properties which this analysis does not understand. |
| 81 | if (LoadInst *LI = dyn_cast<LoadInst>(I)) |
| 82 | return LI->isUnordered(); |
| 83 | else if (StoreInst *SI = dyn_cast<StoreInst>(I)) |
| 84 | return SI->isUnordered(); |
| 85 | return false; |
Andreas Bolka | e9722fc | 2009-06-30 02:12:10 +0000 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | static Value *GetPointerOperand(Value *I) { |
| 89 | if (LoadInst *i = dyn_cast<LoadInst>(I)) |
| 90 | return i->getPointerOperand(); |
| 91 | if (StoreInst *i = dyn_cast<StoreInst>(I)) |
| 92 | return i->getPointerOperand(); |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 93 | llvm_unreachable("Value is no load or store instruction!"); |
Andreas Bolka | e9722fc | 2009-06-30 02:12:10 +0000 | [diff] [blame] | 94 | } |
| 95 | |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 96 | static AliasAnalysis::AliasResult UnderlyingObjectsAlias(AliasAnalysis *AA, |
| 97 | const Value *A, |
| 98 | const Value *B) { |
Dan Gohman | 5034dd3 | 2010-12-15 20:02:24 +0000 | [diff] [blame] | 99 | const Value *aObj = GetUnderlyingObject(A); |
| 100 | const Value *bObj = GetUnderlyingObject(B); |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 101 | return AA->alias(aObj, AA->getTypeStoreSize(aObj->getType()), |
| 102 | bObj, AA->getTypeStoreSize(bObj->getType())); |
| 103 | } |
| 104 | |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 105 | static inline const SCEV *GetZeroSCEV(ScalarEvolution *SE) { |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 106 | return SE->getConstant(Type::getInt32Ty(SE->getContext()), 0L); |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Andreas Bolka | f35626d | 2009-06-28 00:21:21 +0000 | [diff] [blame] | 109 | //===----------------------------------------------------------------------===// |
| 110 | // Dependence Testing |
| 111 | //===----------------------------------------------------------------------===// |
| 112 | |
Andreas Bolka | 3b59dd8 | 2009-07-23 01:57:06 +0000 | [diff] [blame] | 113 | bool LoopDependenceAnalysis::isDependencePair(const Value *A, |
| 114 | const Value *B) const { |
| 115 | return IsMemRefInstr(A) && |
| 116 | IsMemRefInstr(B) && |
| 117 | (cast<const Instruction>(A)->mayWriteToMemory() || |
| 118 | cast<const Instruction>(B)->mayWriteToMemory()); |
Andreas Bolka | f35626d | 2009-06-28 00:21:21 +0000 | [diff] [blame] | 119 | } |
| 120 | |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 121 | bool LoopDependenceAnalysis::findOrInsertDependencePair(Value *A, |
| 122 | Value *B, |
Andreas Bolka | b4c28e9 | 2009-07-23 14:32:46 +0000 | [diff] [blame] | 123 | DependencePair *&P) { |
| 124 | void *insertPos = 0; |
| 125 | FoldingSetNodeID id; |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 126 | id.AddPointer(A); |
| 127 | id.AddPointer(B); |
Andreas Bolka | e9722fc | 2009-06-30 02:12:10 +0000 | [diff] [blame] | 128 | |
Andreas Bolka | b4c28e9 | 2009-07-23 14:32:46 +0000 | [diff] [blame] | 129 | P = Pairs.FindNodeOrInsertPos(id, insertPos); |
| 130 | if (P) return true; |
Andreas Bolka | e9722fc | 2009-06-30 02:12:10 +0000 | [diff] [blame] | 131 | |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 132 | P = new (PairAllocator) DependencePair(id, A, B); |
Andreas Bolka | b4c28e9 | 2009-07-23 14:32:46 +0000 | [diff] [blame] | 133 | Pairs.InsertNode(P, insertPos); |
| 134 | return false; |
| 135 | } |
| 136 | |
Andreas Bolka | 699db99 | 2009-08-07 18:23:41 +0000 | [diff] [blame] | 137 | void LoopDependenceAnalysis::getLoops(const SCEV *S, |
| 138 | DenseSet<const Loop*>* Loops) const { |
| 139 | // Refactor this into an SCEVVisitor, if efficiency becomes a concern. |
Andreas Bolka | 5eca452 | 2009-08-03 01:03:48 +0000 | [diff] [blame] | 140 | for (const Loop *L = this->L; L != 0; L = L->getParentLoop()) |
Dan Gohman | 17ead4f | 2010-11-17 21:23:15 +0000 | [diff] [blame] | 141 | if (!SE->isLoopInvariant(S, L)) |
Andreas Bolka | 699db99 | 2009-08-07 18:23:41 +0000 | [diff] [blame] | 142 | Loops->insert(L); |
| 143 | } |
| 144 | |
| 145 | bool LoopDependenceAnalysis::isLoopInvariant(const SCEV *S) const { |
| 146 | DenseSet<const Loop*> loops; |
| 147 | getLoops(S, &loops); |
| 148 | return loops.empty(); |
Andreas Bolka | 5eca452 | 2009-08-03 01:03:48 +0000 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | bool LoopDependenceAnalysis::isAffine(const SCEV *S) const { |
| 152 | const SCEVAddRecExpr *rec = dyn_cast<SCEVAddRecExpr>(S); |
| 153 | return isLoopInvariant(S) || (rec && rec->isAffine()); |
| 154 | } |
| 155 | |
Andreas Bolka | 831f6f6 | 2009-08-05 04:26:05 +0000 | [diff] [blame] | 156 | bool LoopDependenceAnalysis::isZIVPair(const SCEV *A, const SCEV *B) const { |
| 157 | return isLoopInvariant(A) && isLoopInvariant(B); |
| 158 | } |
| 159 | |
Andreas Bolka | 699db99 | 2009-08-07 18:23:41 +0000 | [diff] [blame] | 160 | bool LoopDependenceAnalysis::isSIVPair(const SCEV *A, const SCEV *B) const { |
| 161 | DenseSet<const Loop*> loops; |
| 162 | getLoops(A, &loops); |
| 163 | getLoops(B, &loops); |
| 164 | return loops.size() == 1; |
| 165 | } |
| 166 | |
Andreas Bolka | 831f6f6 | 2009-08-05 04:26:05 +0000 | [diff] [blame] | 167 | LoopDependenceAnalysis::DependenceResult |
| 168 | LoopDependenceAnalysis::analyseZIV(const SCEV *A, |
| 169 | const SCEV *B, |
| 170 | Subscript *S) const { |
Andreas Bolka | 6151f67 | 2009-08-06 03:10:33 +0000 | [diff] [blame] | 171 | assert(isZIVPair(A, B) && "Attempted to ZIV-test non-ZIV SCEVs!"); |
| 172 | return A == B ? Dependent : Independent; |
Andreas Bolka | 831f6f6 | 2009-08-05 04:26:05 +0000 | [diff] [blame] | 173 | } |
| 174 | |
Andreas Bolka | c3cc45a | 2009-07-28 19:50:13 +0000 | [diff] [blame] | 175 | LoopDependenceAnalysis::DependenceResult |
Andreas Bolka | 699db99 | 2009-08-07 18:23:41 +0000 | [diff] [blame] | 176 | LoopDependenceAnalysis::analyseSIV(const SCEV *A, |
| 177 | const SCEV *B, |
| 178 | Subscript *S) const { |
| 179 | return Unknown; // TODO: Implement. |
| 180 | } |
| 181 | |
| 182 | LoopDependenceAnalysis::DependenceResult |
| 183 | LoopDependenceAnalysis::analyseMIV(const SCEV *A, |
| 184 | const SCEV *B, |
| 185 | Subscript *S) const { |
| 186 | return Unknown; // TODO: Implement. |
| 187 | } |
| 188 | |
| 189 | LoopDependenceAnalysis::DependenceResult |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 190 | LoopDependenceAnalysis::analyseSubscript(const SCEV *A, |
| 191 | const SCEV *B, |
| 192 | Subscript *S) const { |
David Greene | d387b2b | 2009-12-23 20:52:41 +0000 | [diff] [blame] | 193 | DEBUG(dbgs() << " Testing subscript: " << *A << ", " << *B << "\n"); |
Andreas Bolka | 7133959 | 2009-07-30 02:26:01 +0000 | [diff] [blame] | 194 | |
| 195 | if (A == B) { |
David Greene | d387b2b | 2009-12-23 20:52:41 +0000 | [diff] [blame] | 196 | DEBUG(dbgs() << " -> [D] same SCEV\n"); |
Andreas Bolka | 7133959 | 2009-07-30 02:26:01 +0000 | [diff] [blame] | 197 | return Dependent; |
| 198 | } |
| 199 | |
Andreas Bolka | 5eca452 | 2009-08-03 01:03:48 +0000 | [diff] [blame] | 200 | if (!isAffine(A) || !isAffine(B)) { |
David Greene | d387b2b | 2009-12-23 20:52:41 +0000 | [diff] [blame] | 201 | DEBUG(dbgs() << " -> [?] not affine\n"); |
Andreas Bolka | 5eca452 | 2009-08-03 01:03:48 +0000 | [diff] [blame] | 202 | return Unknown; |
| 203 | } |
| 204 | |
Andreas Bolka | 831f6f6 | 2009-08-05 04:26:05 +0000 | [diff] [blame] | 205 | if (isZIVPair(A, B)) |
| 206 | return analyseZIV(A, B, S); |
| 207 | |
Andreas Bolka | 699db99 | 2009-08-07 18:23:41 +0000 | [diff] [blame] | 208 | if (isSIVPair(A, B)) |
| 209 | return analyseSIV(A, B, S); |
Andreas Bolka | 7133959 | 2009-07-30 02:26:01 +0000 | [diff] [blame] | 210 | |
Andreas Bolka | 699db99 | 2009-08-07 18:23:41 +0000 | [diff] [blame] | 211 | return analyseMIV(A, B, S); |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | LoopDependenceAnalysis::DependenceResult |
Andreas Bolka | c3cc45a | 2009-07-28 19:50:13 +0000 | [diff] [blame] | 215 | LoopDependenceAnalysis::analysePair(DependencePair *P) const { |
David Greene | d387b2b | 2009-12-23 20:52:41 +0000 | [diff] [blame] | 216 | DEBUG(dbgs() << "Analysing:\n" << *P->A << "\n" << *P->B << "\n"); |
Andreas Bolka | b4c28e9 | 2009-07-23 14:32:46 +0000 | [diff] [blame] | 217 | |
Andreas Bolka | b4c28e9 | 2009-07-23 14:32:46 +0000 | [diff] [blame] | 218 | // We only analyse loads and stores but no possible memory accesses by e.g. |
| 219 | // free, call, or invoke instructions. |
| 220 | if (!IsLoadOrStoreInst(P->A) || !IsLoadOrStoreInst(P->B)) { |
David Greene | d387b2b | 2009-12-23 20:52:41 +0000 | [diff] [blame] | 221 | DEBUG(dbgs() << "--> [?] no load/store\n"); |
Andreas Bolka | c3cc45a | 2009-07-28 19:50:13 +0000 | [diff] [blame] | 222 | return Unknown; |
Andreas Bolka | b4c28e9 | 2009-07-23 14:32:46 +0000 | [diff] [blame] | 223 | } |
| 224 | |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 225 | Value *aPtr = GetPointerOperand(P->A); |
| 226 | Value *bPtr = GetPointerOperand(P->B); |
Andreas Bolka | e9722fc | 2009-06-30 02:12:10 +0000 | [diff] [blame] | 227 | |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 228 | switch (UnderlyingObjectsAlias(AA, aPtr, bPtr)) { |
| 229 | case AliasAnalysis::MayAlias: |
Dan Gohman | d891acd | 2010-12-10 20:14:49 +0000 | [diff] [blame] | 230 | case AliasAnalysis::PartialAlias: |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 231 | // We can not analyse objects if we do not know about their aliasing. |
David Greene | d387b2b | 2009-12-23 20:52:41 +0000 | [diff] [blame] | 232 | DEBUG(dbgs() << "---> [?] may alias\n"); |
Andreas Bolka | c3cc45a | 2009-07-28 19:50:13 +0000 | [diff] [blame] | 233 | return Unknown; |
Andreas Bolka | e9722fc | 2009-06-30 02:12:10 +0000 | [diff] [blame] | 234 | |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 235 | case AliasAnalysis::NoAlias: |
| 236 | // If the objects noalias, they are distinct, accesses are independent. |
David Greene | d387b2b | 2009-12-23 20:52:41 +0000 | [diff] [blame] | 237 | DEBUG(dbgs() << "---> [I] no alias\n"); |
Andreas Bolka | c3cc45a | 2009-07-28 19:50:13 +0000 | [diff] [blame] | 238 | return Independent; |
Andreas Bolka | e9722fc | 2009-06-30 02:12:10 +0000 | [diff] [blame] | 239 | |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 240 | case AliasAnalysis::MustAlias: |
| 241 | break; // The underlying objects alias, test accesses for dependence. |
| 242 | } |
Andreas Bolka | fecbc59 | 2009-07-01 21:45:23 +0000 | [diff] [blame] | 243 | |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 244 | const GEPOperator *aGEP = dyn_cast<GEPOperator>(aPtr); |
| 245 | const GEPOperator *bGEP = dyn_cast<GEPOperator>(bPtr); |
| 246 | |
| 247 | if (!aGEP || !bGEP) |
| 248 | return Unknown; |
| 249 | |
| 250 | // FIXME: Is filtering coupled subscripts necessary? |
| 251 | |
Andreas Bolka | a1b78d1 | 2009-08-05 04:13:41 +0000 | [diff] [blame] | 252 | // Collect GEP operand pairs (FIXME: use GetGEPOperands from BasicAA), adding |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 253 | // trailing zeroes to the smaller GEP, if needed. |
Andreas Bolka | a1b78d1 | 2009-08-05 04:13:41 +0000 | [diff] [blame] | 254 | typedef SmallVector<std::pair<const SCEV*, const SCEV*>, 4> GEPOpdPairsTy; |
| 255 | GEPOpdPairsTy opds; |
| 256 | for(GEPOperator::const_op_iterator aIdx = aGEP->idx_begin(), |
| 257 | aEnd = aGEP->idx_end(), |
| 258 | bIdx = bGEP->idx_begin(), |
| 259 | bEnd = bGEP->idx_end(); |
| 260 | aIdx != aEnd && bIdx != bEnd; |
| 261 | aIdx += (aIdx != aEnd), bIdx += (bIdx != bEnd)) { |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 262 | const SCEV* aSCEV = (aIdx != aEnd) ? SE->getSCEV(*aIdx) : GetZeroSCEV(SE); |
| 263 | const SCEV* bSCEV = (bIdx != bEnd) ? SE->getSCEV(*bIdx) : GetZeroSCEV(SE); |
Andreas Bolka | a1b78d1 | 2009-08-05 04:13:41 +0000 | [diff] [blame] | 264 | opds.push_back(std::make_pair(aSCEV, bSCEV)); |
| 265 | } |
| 266 | |
| 267 | if (!opds.empty() && opds[0].first != opds[0].second) { |
| 268 | // We cannot (yet) handle arbitrary GEP pointer offsets. By limiting |
| 269 | // |
| 270 | // TODO: this could be relaxed by adding the size of the underlying object |
| 271 | // to the first subscript. If we have e.g. (GEP x,0,i; GEP x,2,-i) and we |
| 272 | // know that x is a [100 x i8]*, we could modify the first subscript to be |
| 273 | // (i, 200-i) instead of (i, -i). |
| 274 | return Unknown; |
| 275 | } |
| 276 | |
| 277 | // Now analyse the collected operand pairs (skipping the GEP ptr offsets). |
| 278 | for (GEPOpdPairsTy::const_iterator i = opds.begin() + 1, end = opds.end(); |
| 279 | i != end; ++i) { |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 280 | Subscript subscript; |
Andreas Bolka | a1b78d1 | 2009-08-05 04:13:41 +0000 | [diff] [blame] | 281 | DependenceResult result = analyseSubscript(i->first, i->second, &subscript); |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 282 | if (result != Dependent) { |
| 283 | // We either proved independence or failed to analyse this subscript. |
| 284 | // Further subscripts will not improve the situation, so abort early. |
| 285 | return result; |
| 286 | } |
| 287 | P->Subscripts.push_back(subscript); |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 288 | } |
Andreas Bolka | a1b78d1 | 2009-08-05 04:13:41 +0000 | [diff] [blame] | 289 | // We successfully analysed all subscripts but failed to prove independence. |
Andreas Bolka | 15f72db | 2009-07-29 05:35:53 +0000 | [diff] [blame] | 290 | return Dependent; |
Andreas Bolka | b4c28e9 | 2009-07-23 14:32:46 +0000 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | bool LoopDependenceAnalysis::depends(Value *A, Value *B) { |
| 294 | assert(isDependencePair(A, B) && "Values form no dependence pair!"); |
Andreas Bolka | 328fb3d | 2009-07-28 19:49:49 +0000 | [diff] [blame] | 295 | ++NumAnswered; |
Andreas Bolka | b4c28e9 | 2009-07-23 14:32:46 +0000 | [diff] [blame] | 296 | |
| 297 | DependencePair *p; |
| 298 | if (!findOrInsertDependencePair(A, B, p)) { |
| 299 | // The pair is not cached, so analyse it. |
Andreas Bolka | 328fb3d | 2009-07-28 19:49:49 +0000 | [diff] [blame] | 300 | ++NumAnalysed; |
Andreas Bolka | c3cc45a | 2009-07-28 19:50:13 +0000 | [diff] [blame] | 301 | switch (p->Result = analysePair(p)) { |
Andreas Bolka | 328fb3d | 2009-07-28 19:49:49 +0000 | [diff] [blame] | 302 | case Dependent: ++NumDependent; break; |
| 303 | case Independent: ++NumIndependent; break; |
| 304 | case Unknown: ++NumUnknown; break; |
| 305 | } |
Andreas Bolka | b4c28e9 | 2009-07-23 14:32:46 +0000 | [diff] [blame] | 306 | } |
| 307 | return p->Result != Independent; |
Andreas Bolka | f35626d | 2009-06-28 00:21:21 +0000 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | //===----------------------------------------------------------------------===// |
Andreas Bolka | cb21010 | 2009-06-24 21:29:13 +0000 | [diff] [blame] | 311 | // LoopDependenceAnalysis Implementation |
| 312 | //===----------------------------------------------------------------------===// |
| 313 | |
| 314 | bool LoopDependenceAnalysis::runOnLoop(Loop *L, LPPassManager &) { |
| 315 | this->L = L; |
Andreas Bolka | fecbc59 | 2009-07-01 21:45:23 +0000 | [diff] [blame] | 316 | AA = &getAnalysis<AliasAnalysis>(); |
Andreas Bolka | cb21010 | 2009-06-24 21:29:13 +0000 | [diff] [blame] | 317 | SE = &getAnalysis<ScalarEvolution>(); |
| 318 | return false; |
| 319 | } |
| 320 | |
Andreas Bolka | b4c28e9 | 2009-07-23 14:32:46 +0000 | [diff] [blame] | 321 | void LoopDependenceAnalysis::releaseMemory() { |
| 322 | Pairs.clear(); |
| 323 | PairAllocator.Reset(); |
| 324 | } |
| 325 | |
Andreas Bolka | cb21010 | 2009-06-24 21:29:13 +0000 | [diff] [blame] | 326 | void LoopDependenceAnalysis::getAnalysisUsage(AnalysisUsage &AU) const { |
| 327 | AU.setPreservesAll(); |
Andreas Bolka | fecbc59 | 2009-07-01 21:45:23 +0000 | [diff] [blame] | 328 | AU.addRequiredTransitive<AliasAnalysis>(); |
Andreas Bolka | 707207a | 2009-06-28 00:16:08 +0000 | [diff] [blame] | 329 | AU.addRequiredTransitive<ScalarEvolution>(); |
| 330 | } |
| 331 | |
Andreas Bolka | 3b59dd8 | 2009-07-23 01:57:06 +0000 | [diff] [blame] | 332 | static void PrintLoopInfo(raw_ostream &OS, |
| 333 | LoopDependenceAnalysis *LDA, const Loop *L) { |
Andreas Bolka | 707207a | 2009-06-28 00:16:08 +0000 | [diff] [blame] | 334 | if (!L->empty()) return; // ignore non-innermost loops |
| 335 | |
Andreas Bolka | 292aef3 | 2009-07-03 01:42:52 +0000 | [diff] [blame] | 336 | SmallVector<Instruction*, 8> memrefs; |
| 337 | GetMemRefInstrs(L, memrefs); |
| 338 | |
Andreas Bolka | 707207a | 2009-06-28 00:16:08 +0000 | [diff] [blame] | 339 | OS << "Loop at depth " << L->getLoopDepth() << ", header block: "; |
| 340 | WriteAsOperand(OS, L->getHeader(), false); |
| 341 | OS << "\n"; |
Andreas Bolka | c6a3030 | 2009-06-28 00:35:22 +0000 | [diff] [blame] | 342 | |
Andreas Bolka | c6a3030 | 2009-06-28 00:35:22 +0000 | [diff] [blame] | 343 | OS << " Load/store instructions: " << memrefs.size() << "\n"; |
Andreas Bolka | 292aef3 | 2009-07-03 01:42:52 +0000 | [diff] [blame] | 344 | for (SmallVector<Instruction*, 8>::const_iterator x = memrefs.begin(), |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 345 | end = memrefs.end(); x != end; ++x) |
Andreas Bolka | 3b59dd8 | 2009-07-23 01:57:06 +0000 | [diff] [blame] | 346 | OS << "\t" << (x - memrefs.begin()) << ": " << **x << "\n"; |
Andreas Bolka | 292aef3 | 2009-07-03 01:42:52 +0000 | [diff] [blame] | 347 | |
Andreas Bolka | c6a3030 | 2009-06-28 00:35:22 +0000 | [diff] [blame] | 348 | OS << " Pairwise dependence results:\n"; |
| 349 | for (SmallVector<Instruction*, 8>::const_iterator x = memrefs.begin(), |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 350 | end = memrefs.end(); x != end; ++x) |
Andreas Bolka | c6a3030 | 2009-06-28 00:35:22 +0000 | [diff] [blame] | 351 | for (SmallVector<Instruction*, 8>::const_iterator y = x + 1; |
Andreas Bolka | 34ce687 | 2009-07-28 19:49:25 +0000 | [diff] [blame] | 352 | y != end; ++y) |
Andreas Bolka | c6a3030 | 2009-06-28 00:35:22 +0000 | [diff] [blame] | 353 | if (LDA->isDependencePair(*x, *y)) |
| 354 | OS << "\t" << (x - memrefs.begin()) << "," << (y - memrefs.begin()) |
| 355 | << ": " << (LDA->depends(*x, *y) ? "dependent" : "independent") |
| 356 | << "\n"; |
Andreas Bolka | 707207a | 2009-06-28 00:16:08 +0000 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | void LoopDependenceAnalysis::print(raw_ostream &OS, const Module*) const { |
Andreas Bolka | c6a3030 | 2009-06-28 00:35:22 +0000 | [diff] [blame] | 360 | // TODO: doc why const_cast is safe |
| 361 | PrintLoopInfo(OS, const_cast<LoopDependenceAnalysis*>(this), this->L); |
Andreas Bolka | 707207a | 2009-06-28 00:16:08 +0000 | [diff] [blame] | 362 | } |