blob: 3997ac478b52cca1c0f60fbe0fd37b56d1056397 [file] [log] [blame]
Andreas Bolkacb210102009-06-24 21:29:13 +00001//===- 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 Bolka15f72db2009-07-29 05:35:53 +000018// TODO: document lingo (pair, subscript, index)
19//
Andreas Bolkacb210102009-06-24 21:29:13 +000020//===----------------------------------------------------------------------===//
21
22#define DEBUG_TYPE "lda"
Andreas Bolka699db992009-08-07 18:23:41 +000023#include "llvm/ADT/DenseSet.h"
Andreas Bolka328fb3d2009-07-28 19:49:49 +000024#include "llvm/ADT/Statistic.h"
Andreas Bolkafecbc592009-07-01 21:45:23 +000025#include "llvm/Analysis/AliasAnalysis.h"
Andreas Bolkacb210102009-06-24 21:29:13 +000026#include "llvm/Analysis/LoopDependenceAnalysis.h"
27#include "llvm/Analysis/LoopPass.h"
28#include "llvm/Analysis/ScalarEvolution.h"
Andreas Bolka5eca4522009-08-03 01:03:48 +000029#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Dan Gohman5034dd32010-12-15 20:02:24 +000030#include "llvm/Analysis/ValueTracking.h"
Chris Lattner9fc5cdf2011-01-02 22:09:33 +000031#include "llvm/Assembly/Writer.h"
Andreas Bolkaf35626d2009-06-28 00:21:21 +000032#include "llvm/Instructions.h"
Andreas Bolka15f72db2009-07-29 05:35:53 +000033#include "llvm/Operator.h"
Andreas Bolka0baa25d2009-07-24 23:19:28 +000034#include "llvm/Support/Allocator.h"
Andreas Bolkae9722fc2009-06-30 02:12:10 +000035#include "llvm/Support/Debug.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000036#include "llvm/Support/ErrorHandling.h"
Andreas Bolka0baa25d2009-07-24 23:19:28 +000037#include "llvm/Support/raw_ostream.h"
Andreas Bolkafecbc592009-07-01 21:45:23 +000038#include "llvm/Target/TargetData.h"
Andreas Bolkacb210102009-06-24 21:29:13 +000039using namespace llvm;
40
Andreas Bolka328fb3d2009-07-28 19:49:49 +000041STATISTIC(NumAnswered, "Number of dependence queries answered");
42STATISTIC(NumAnalysed, "Number of distinct dependence pairs analysed");
43STATISTIC(NumDependent, "Number of pairs with dependent accesses");
44STATISTIC(NumIndependent, "Number of pairs with independent accesses");
45STATISTIC(NumUnknown, "Number of pairs with unknown accesses");
46
Andreas Bolkacb210102009-06-24 21:29:13 +000047LoopPass *llvm::createLoopDependenceAnalysisPass() {
48 return new LoopDependenceAnalysis();
49}
50
Owen Anderson2ab36d32010-10-12 19:48:12 +000051INITIALIZE_PASS_BEGIN(LoopDependenceAnalysis, "lda",
52 "Loop Dependence Analysis", false, true)
53INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
54INITIALIZE_AG_DEPENDENCY(AliasAnalysis)
55INITIALIZE_PASS_END(LoopDependenceAnalysis, "lda",
Owen Andersonce665bd2010-10-07 22:25:06 +000056 "Loop Dependence Analysis", false, true)
Andreas Bolkacb210102009-06-24 21:29:13 +000057char LoopDependenceAnalysis::ID = 0;
58
59//===----------------------------------------------------------------------===//
Andreas Bolkaf35626d2009-06-28 00:21:21 +000060// Utility Functions
61//===----------------------------------------------------------------------===//
62
Andreas Bolka2fbb7702009-06-29 18:51:11 +000063static inline bool IsMemRefInstr(const Value *V) {
64 const Instruction *I = dyn_cast<const Instruction>(V);
65 return I && (I->mayReadFromMemory() || I->mayWriteToMemory());
Andreas Bolkaf35626d2009-06-28 00:21:21 +000066}
67
Andreas Bolka3b59dd82009-07-23 01:57:06 +000068static void GetMemRefInstrs(const Loop *L,
69 SmallVectorImpl<Instruction*> &Memrefs) {
Andreas Bolkac6a30302009-06-28 00:35:22 +000070 for (Loop::block_iterator b = L->block_begin(), be = L->block_end();
Andreas Bolka34ce6872009-07-28 19:49:25 +000071 b != be; ++b)
Andreas Bolkac6a30302009-06-28 00:35:22 +000072 for (BasicBlock::iterator i = (*b)->begin(), ie = (*b)->end();
Andreas Bolka34ce6872009-07-28 19:49:25 +000073 i != ie; ++i)
Andreas Bolkaacd6f8d2009-06-29 00:50:26 +000074 if (IsMemRefInstr(i))
Andreas Bolka3b59dd82009-07-23 01:57:06 +000075 Memrefs.push_back(i);
Andreas Bolkac6a30302009-06-28 00:35:22 +000076}
77
Andreas Bolkae9722fc2009-06-30 02:12:10 +000078static bool IsLoadOrStoreInst(Value *I) {
Eli Friedman667ccf22011-08-15 20:54:19 +000079 // 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 Bolkae9722fc2009-06-30 02:12:10 +000086}
87
88static 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 Edwinc23197a2009-07-14 16:55:14 +000093 llvm_unreachable("Value is no load or store instruction!");
Andreas Bolkae9722fc2009-06-30 02:12:10 +000094 // Never reached.
95 return 0;
96}
97
Andreas Bolka34ce6872009-07-28 19:49:25 +000098static AliasAnalysis::AliasResult UnderlyingObjectsAlias(AliasAnalysis *AA,
99 const Value *A,
100 const Value *B) {
Dan Gohman5034dd32010-12-15 20:02:24 +0000101 const Value *aObj = GetUnderlyingObject(A);
102 const Value *bObj = GetUnderlyingObject(B);
Andreas Bolka34ce6872009-07-28 19:49:25 +0000103 return AA->alias(aObj, AA->getTypeStoreSize(aObj->getType()),
104 bObj, AA->getTypeStoreSize(bObj->getType()));
105}
106
Andreas Bolka15f72db2009-07-29 05:35:53 +0000107static inline const SCEV *GetZeroSCEV(ScalarEvolution *SE) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000108 return SE->getConstant(Type::getInt32Ty(SE->getContext()), 0L);
Andreas Bolka15f72db2009-07-29 05:35:53 +0000109}
110
Andreas Bolkaf35626d2009-06-28 00:21:21 +0000111//===----------------------------------------------------------------------===//
112// Dependence Testing
113//===----------------------------------------------------------------------===//
114
Andreas Bolka3b59dd82009-07-23 01:57:06 +0000115bool LoopDependenceAnalysis::isDependencePair(const Value *A,
116 const Value *B) const {
117 return IsMemRefInstr(A) &&
118 IsMemRefInstr(B) &&
119 (cast<const Instruction>(A)->mayWriteToMemory() ||
120 cast<const Instruction>(B)->mayWriteToMemory());
Andreas Bolkaf35626d2009-06-28 00:21:21 +0000121}
122
Andreas Bolka34ce6872009-07-28 19:49:25 +0000123bool LoopDependenceAnalysis::findOrInsertDependencePair(Value *A,
124 Value *B,
Andreas Bolkab4c28e92009-07-23 14:32:46 +0000125 DependencePair *&P) {
126 void *insertPos = 0;
127 FoldingSetNodeID id;
Andreas Bolka34ce6872009-07-28 19:49:25 +0000128 id.AddPointer(A);
129 id.AddPointer(B);
Andreas Bolkae9722fc2009-06-30 02:12:10 +0000130
Andreas Bolkab4c28e92009-07-23 14:32:46 +0000131 P = Pairs.FindNodeOrInsertPos(id, insertPos);
132 if (P) return true;
Andreas Bolkae9722fc2009-06-30 02:12:10 +0000133
Dan Gohman95531882010-03-18 18:49:47 +0000134 P = new (PairAllocator) DependencePair(id, A, B);
Andreas Bolkab4c28e92009-07-23 14:32:46 +0000135 Pairs.InsertNode(P, insertPos);
136 return false;
137}
138
Andreas Bolka699db992009-08-07 18:23:41 +0000139void LoopDependenceAnalysis::getLoops(const SCEV *S,
140 DenseSet<const Loop*>* Loops) const {
141 // Refactor this into an SCEVVisitor, if efficiency becomes a concern.
Andreas Bolka5eca4522009-08-03 01:03:48 +0000142 for (const Loop *L = this->L; L != 0; L = L->getParentLoop())
Dan Gohman17ead4f2010-11-17 21:23:15 +0000143 if (!SE->isLoopInvariant(S, L))
Andreas Bolka699db992009-08-07 18:23:41 +0000144 Loops->insert(L);
145}
146
147bool LoopDependenceAnalysis::isLoopInvariant(const SCEV *S) const {
148 DenseSet<const Loop*> loops;
149 getLoops(S, &loops);
150 return loops.empty();
Andreas Bolka5eca4522009-08-03 01:03:48 +0000151}
152
153bool LoopDependenceAnalysis::isAffine(const SCEV *S) const {
154 const SCEVAddRecExpr *rec = dyn_cast<SCEVAddRecExpr>(S);
155 return isLoopInvariant(S) || (rec && rec->isAffine());
156}
157
Andreas Bolka831f6f62009-08-05 04:26:05 +0000158bool LoopDependenceAnalysis::isZIVPair(const SCEV *A, const SCEV *B) const {
159 return isLoopInvariant(A) && isLoopInvariant(B);
160}
161
Andreas Bolka699db992009-08-07 18:23:41 +0000162bool LoopDependenceAnalysis::isSIVPair(const SCEV *A, const SCEV *B) const {
163 DenseSet<const Loop*> loops;
164 getLoops(A, &loops);
165 getLoops(B, &loops);
166 return loops.size() == 1;
167}
168
Andreas Bolka831f6f62009-08-05 04:26:05 +0000169LoopDependenceAnalysis::DependenceResult
170LoopDependenceAnalysis::analyseZIV(const SCEV *A,
171 const SCEV *B,
172 Subscript *S) const {
Andreas Bolka6151f672009-08-06 03:10:33 +0000173 assert(isZIVPair(A, B) && "Attempted to ZIV-test non-ZIV SCEVs!");
174 return A == B ? Dependent : Independent;
Andreas Bolka831f6f62009-08-05 04:26:05 +0000175}
176
Andreas Bolkac3cc45a2009-07-28 19:50:13 +0000177LoopDependenceAnalysis::DependenceResult
Andreas Bolka699db992009-08-07 18:23:41 +0000178LoopDependenceAnalysis::analyseSIV(const SCEV *A,
179 const SCEV *B,
180 Subscript *S) const {
181 return Unknown; // TODO: Implement.
182}
183
184LoopDependenceAnalysis::DependenceResult
185LoopDependenceAnalysis::analyseMIV(const SCEV *A,
186 const SCEV *B,
187 Subscript *S) const {
188 return Unknown; // TODO: Implement.
189}
190
191LoopDependenceAnalysis::DependenceResult
Andreas Bolka15f72db2009-07-29 05:35:53 +0000192LoopDependenceAnalysis::analyseSubscript(const SCEV *A,
193 const SCEV *B,
194 Subscript *S) const {
David Greened387b2b2009-12-23 20:52:41 +0000195 DEBUG(dbgs() << " Testing subscript: " << *A << ", " << *B << "\n");
Andreas Bolka71339592009-07-30 02:26:01 +0000196
197 if (A == B) {
David Greened387b2b2009-12-23 20:52:41 +0000198 DEBUG(dbgs() << " -> [D] same SCEV\n");
Andreas Bolka71339592009-07-30 02:26:01 +0000199 return Dependent;
200 }
201
Andreas Bolka5eca4522009-08-03 01:03:48 +0000202 if (!isAffine(A) || !isAffine(B)) {
David Greened387b2b2009-12-23 20:52:41 +0000203 DEBUG(dbgs() << " -> [?] not affine\n");
Andreas Bolka5eca4522009-08-03 01:03:48 +0000204 return Unknown;
205 }
206
Andreas Bolka831f6f62009-08-05 04:26:05 +0000207 if (isZIVPair(A, B))
208 return analyseZIV(A, B, S);
209
Andreas Bolka699db992009-08-07 18:23:41 +0000210 if (isSIVPair(A, B))
211 return analyseSIV(A, B, S);
Andreas Bolka71339592009-07-30 02:26:01 +0000212
Andreas Bolka699db992009-08-07 18:23:41 +0000213 return analyseMIV(A, B, S);
Andreas Bolka15f72db2009-07-29 05:35:53 +0000214}
215
216LoopDependenceAnalysis::DependenceResult
Andreas Bolkac3cc45a2009-07-28 19:50:13 +0000217LoopDependenceAnalysis::analysePair(DependencePair *P) const {
David Greened387b2b2009-12-23 20:52:41 +0000218 DEBUG(dbgs() << "Analysing:\n" << *P->A << "\n" << *P->B << "\n");
Andreas Bolkab4c28e92009-07-23 14:32:46 +0000219
Andreas Bolkab4c28e92009-07-23 14:32:46 +0000220 // We only analyse loads and stores but no possible memory accesses by e.g.
221 // free, call, or invoke instructions.
222 if (!IsLoadOrStoreInst(P->A) || !IsLoadOrStoreInst(P->B)) {
David Greened387b2b2009-12-23 20:52:41 +0000223 DEBUG(dbgs() << "--> [?] no load/store\n");
Andreas Bolkac3cc45a2009-07-28 19:50:13 +0000224 return Unknown;
Andreas Bolkab4c28e92009-07-23 14:32:46 +0000225 }
226
Andreas Bolka34ce6872009-07-28 19:49:25 +0000227 Value *aPtr = GetPointerOperand(P->A);
228 Value *bPtr = GetPointerOperand(P->B);
Andreas Bolkae9722fc2009-06-30 02:12:10 +0000229
Andreas Bolka34ce6872009-07-28 19:49:25 +0000230 switch (UnderlyingObjectsAlias(AA, aPtr, bPtr)) {
231 case AliasAnalysis::MayAlias:
Dan Gohmand891acd2010-12-10 20:14:49 +0000232 case AliasAnalysis::PartialAlias:
Andreas Bolka34ce6872009-07-28 19:49:25 +0000233 // We can not analyse objects if we do not know about their aliasing.
David Greened387b2b2009-12-23 20:52:41 +0000234 DEBUG(dbgs() << "---> [?] may alias\n");
Andreas Bolkac3cc45a2009-07-28 19:50:13 +0000235 return Unknown;
Andreas Bolkae9722fc2009-06-30 02:12:10 +0000236
Andreas Bolka34ce6872009-07-28 19:49:25 +0000237 case AliasAnalysis::NoAlias:
238 // If the objects noalias, they are distinct, accesses are independent.
David Greened387b2b2009-12-23 20:52:41 +0000239 DEBUG(dbgs() << "---> [I] no alias\n");
Andreas Bolkac3cc45a2009-07-28 19:50:13 +0000240 return Independent;
Andreas Bolkae9722fc2009-06-30 02:12:10 +0000241
Andreas Bolka34ce6872009-07-28 19:49:25 +0000242 case AliasAnalysis::MustAlias:
243 break; // The underlying objects alias, test accesses for dependence.
244 }
Andreas Bolkafecbc592009-07-01 21:45:23 +0000245
Andreas Bolka15f72db2009-07-29 05:35:53 +0000246 const GEPOperator *aGEP = dyn_cast<GEPOperator>(aPtr);
247 const GEPOperator *bGEP = dyn_cast<GEPOperator>(bPtr);
248
249 if (!aGEP || !bGEP)
250 return Unknown;
251
252 // FIXME: Is filtering coupled subscripts necessary?
253
Andreas Bolkaa1b78d12009-08-05 04:13:41 +0000254 // Collect GEP operand pairs (FIXME: use GetGEPOperands from BasicAA), adding
Andreas Bolka15f72db2009-07-29 05:35:53 +0000255 // trailing zeroes to the smaller GEP, if needed.
Andreas Bolkaa1b78d12009-08-05 04:13:41 +0000256 typedef SmallVector<std::pair<const SCEV*, const SCEV*>, 4> GEPOpdPairsTy;
257 GEPOpdPairsTy opds;
258 for(GEPOperator::const_op_iterator aIdx = aGEP->idx_begin(),
259 aEnd = aGEP->idx_end(),
260 bIdx = bGEP->idx_begin(),
261 bEnd = bGEP->idx_end();
262 aIdx != aEnd && bIdx != bEnd;
263 aIdx += (aIdx != aEnd), bIdx += (bIdx != bEnd)) {
Andreas Bolka15f72db2009-07-29 05:35:53 +0000264 const SCEV* aSCEV = (aIdx != aEnd) ? SE->getSCEV(*aIdx) : GetZeroSCEV(SE);
265 const SCEV* bSCEV = (bIdx != bEnd) ? SE->getSCEV(*bIdx) : GetZeroSCEV(SE);
Andreas Bolkaa1b78d12009-08-05 04:13:41 +0000266 opds.push_back(std::make_pair(aSCEV, bSCEV));
267 }
268
269 if (!opds.empty() && opds[0].first != opds[0].second) {
270 // We cannot (yet) handle arbitrary GEP pointer offsets. By limiting
271 //
272 // TODO: this could be relaxed by adding the size of the underlying object
273 // to the first subscript. If we have e.g. (GEP x,0,i; GEP x,2,-i) and we
274 // know that x is a [100 x i8]*, we could modify the first subscript to be
275 // (i, 200-i) instead of (i, -i).
276 return Unknown;
277 }
278
279 // Now analyse the collected operand pairs (skipping the GEP ptr offsets).
280 for (GEPOpdPairsTy::const_iterator i = opds.begin() + 1, end = opds.end();
281 i != end; ++i) {
Andreas Bolka15f72db2009-07-29 05:35:53 +0000282 Subscript subscript;
Andreas Bolkaa1b78d12009-08-05 04:13:41 +0000283 DependenceResult result = analyseSubscript(i->first, i->second, &subscript);
Andreas Bolka15f72db2009-07-29 05:35:53 +0000284 if (result != Dependent) {
285 // We either proved independence or failed to analyse this subscript.
286 // Further subscripts will not improve the situation, so abort early.
287 return result;
288 }
289 P->Subscripts.push_back(subscript);
Andreas Bolka15f72db2009-07-29 05:35:53 +0000290 }
Andreas Bolkaa1b78d12009-08-05 04:13:41 +0000291 // We successfully analysed all subscripts but failed to prove independence.
Andreas Bolka15f72db2009-07-29 05:35:53 +0000292 return Dependent;
Andreas Bolkab4c28e92009-07-23 14:32:46 +0000293}
294
295bool LoopDependenceAnalysis::depends(Value *A, Value *B) {
296 assert(isDependencePair(A, B) && "Values form no dependence pair!");
Andreas Bolka328fb3d2009-07-28 19:49:49 +0000297 ++NumAnswered;
Andreas Bolkab4c28e92009-07-23 14:32:46 +0000298
299 DependencePair *p;
300 if (!findOrInsertDependencePair(A, B, p)) {
301 // The pair is not cached, so analyse it.
Andreas Bolka328fb3d2009-07-28 19:49:49 +0000302 ++NumAnalysed;
Andreas Bolkac3cc45a2009-07-28 19:50:13 +0000303 switch (p->Result = analysePair(p)) {
Andreas Bolka328fb3d2009-07-28 19:49:49 +0000304 case Dependent: ++NumDependent; break;
305 case Independent: ++NumIndependent; break;
306 case Unknown: ++NumUnknown; break;
307 }
Andreas Bolkab4c28e92009-07-23 14:32:46 +0000308 }
309 return p->Result != Independent;
Andreas Bolkaf35626d2009-06-28 00:21:21 +0000310}
311
312//===----------------------------------------------------------------------===//
Andreas Bolkacb210102009-06-24 21:29:13 +0000313// LoopDependenceAnalysis Implementation
314//===----------------------------------------------------------------------===//
315
316bool LoopDependenceAnalysis::runOnLoop(Loop *L, LPPassManager &) {
317 this->L = L;
Andreas Bolkafecbc592009-07-01 21:45:23 +0000318 AA = &getAnalysis<AliasAnalysis>();
Andreas Bolkacb210102009-06-24 21:29:13 +0000319 SE = &getAnalysis<ScalarEvolution>();
320 return false;
321}
322
Andreas Bolkab4c28e92009-07-23 14:32:46 +0000323void LoopDependenceAnalysis::releaseMemory() {
324 Pairs.clear();
325 PairAllocator.Reset();
326}
327
Andreas Bolkacb210102009-06-24 21:29:13 +0000328void LoopDependenceAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
329 AU.setPreservesAll();
Andreas Bolkafecbc592009-07-01 21:45:23 +0000330 AU.addRequiredTransitive<AliasAnalysis>();
Andreas Bolka707207a2009-06-28 00:16:08 +0000331 AU.addRequiredTransitive<ScalarEvolution>();
332}
333
Andreas Bolka3b59dd82009-07-23 01:57:06 +0000334static void PrintLoopInfo(raw_ostream &OS,
335 LoopDependenceAnalysis *LDA, const Loop *L) {
Andreas Bolka707207a2009-06-28 00:16:08 +0000336 if (!L->empty()) return; // ignore non-innermost loops
337
Andreas Bolka292aef32009-07-03 01:42:52 +0000338 SmallVector<Instruction*, 8> memrefs;
339 GetMemRefInstrs(L, memrefs);
340
Andreas Bolka707207a2009-06-28 00:16:08 +0000341 OS << "Loop at depth " << L->getLoopDepth() << ", header block: ";
342 WriteAsOperand(OS, L->getHeader(), false);
343 OS << "\n";
Andreas Bolkac6a30302009-06-28 00:35:22 +0000344
Andreas Bolkac6a30302009-06-28 00:35:22 +0000345 OS << " Load/store instructions: " << memrefs.size() << "\n";
Andreas Bolka292aef32009-07-03 01:42:52 +0000346 for (SmallVector<Instruction*, 8>::const_iterator x = memrefs.begin(),
Andreas Bolka34ce6872009-07-28 19:49:25 +0000347 end = memrefs.end(); x != end; ++x)
Andreas Bolka3b59dd82009-07-23 01:57:06 +0000348 OS << "\t" << (x - memrefs.begin()) << ": " << **x << "\n";
Andreas Bolka292aef32009-07-03 01:42:52 +0000349
Andreas Bolkac6a30302009-06-28 00:35:22 +0000350 OS << " Pairwise dependence results:\n";
351 for (SmallVector<Instruction*, 8>::const_iterator x = memrefs.begin(),
Andreas Bolka34ce6872009-07-28 19:49:25 +0000352 end = memrefs.end(); x != end; ++x)
Andreas Bolkac6a30302009-06-28 00:35:22 +0000353 for (SmallVector<Instruction*, 8>::const_iterator y = x + 1;
Andreas Bolka34ce6872009-07-28 19:49:25 +0000354 y != end; ++y)
Andreas Bolkac6a30302009-06-28 00:35:22 +0000355 if (LDA->isDependencePair(*x, *y))
356 OS << "\t" << (x - memrefs.begin()) << "," << (y - memrefs.begin())
357 << ": " << (LDA->depends(*x, *y) ? "dependent" : "independent")
358 << "\n";
Andreas Bolka707207a2009-06-28 00:16:08 +0000359}
360
361void LoopDependenceAnalysis::print(raw_ostream &OS, const Module*) const {
Andreas Bolkac6a30302009-06-28 00:35:22 +0000362 // TODO: doc why const_cast is safe
363 PrintLoopInfo(OS, const_cast<LoopDependenceAnalysis*>(this), this->L);
Andreas Bolka707207a2009-06-28 00:16:08 +0000364}