blob: 04347b8d813a5d9e345d04211799364f0cbea481 [file] [log] [blame]
Devang Patelf42389f2007-04-07 01:25:15 +00001//===- LoopRotation.cpp - Loop Rotation Pass ------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Devang Patel and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements Loop Rotation Pass.
11//
12//===----------------------------------------------------------------------===//
13
Devang Patel88bc2c62007-04-09 16:11:48 +000014#define DEBUG_TYPE "loop-rotate"
Devang Patelf42389f2007-04-07 01:25:15 +000015
16#include "llvm/Transforms/Scalar.h"
17#include "llvm/Function.h"
18#include "llvm/Instructions.h"
19#include "llvm/Analysis/LoopInfo.h"
20#include "llvm/Analysis/LoopPass.h"
21#include "llvm/Transforms/Utils/Local.h"
22#include "llvm/Support/CommandLine.h"
23#include "llvm/Support/Debug.h"
24#include "llvm/ADT/Statistic.h"
25#include "llvm/ADT/SmallVector.h"
Devang Patelf42389f2007-04-07 01:25:15 +000026
27using namespace llvm;
28
29#define MAX_HEADER_SIZE 16
30
31STATISTIC(NumRotated, "Number of loops rotated");
32namespace {
33
Devang Patel88bc2c62007-04-09 16:11:48 +000034 class VISIBILITY_HIDDEN RenameData {
Devang Patelf42389f2007-04-07 01:25:15 +000035 public:
Devang Patel88bc2c62007-04-09 16:11:48 +000036 RenameData(Instruction *O, Instruction *P, Instruction *H)
37 : Original(O), PreHeader(P), Header(H) { }
Devang Patelf42389f2007-04-07 01:25:15 +000038 public:
39 Instruction *Original; // Original instruction
40 Instruction *PreHeader; // New pre-header replacement
41 Instruction *Header; // New header replacement
42 };
Devang Patel88bc2c62007-04-09 16:11:48 +000043
Devang Patelf42389f2007-04-07 01:25:15 +000044 class VISIBILITY_HIDDEN LoopRotate : public LoopPass {
45
46 public:
Devang Patel88bc2c62007-04-09 16:11:48 +000047
48 // Rotate Loop L as many times as possible. Return true if
49 // loop is rotated at least once.
Devang Patelf42389f2007-04-07 01:25:15 +000050 bool runOnLoop(Loop *L, LPPassManager &LPM);
Devang Patel88bc2c62007-04-09 16:11:48 +000051
52 // LCSSA form makes instruction renaming easier.
Devang Patelf42389f2007-04-07 01:25:15 +000053 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
54 AU.addRequiredID(LCSSAID);
55 AU.addPreservedID(LCSSAID);
Devang Patelf42389f2007-04-07 01:25:15 +000056 }
57
58 // Helper functions
59
60 /// Do actual work
61 bool rotateLoop(Loop *L, LPPassManager &LPM);
62
63 /// Initialize local data
64 void initialize();
65
66 /// Make sure all Exit block PHINodes have required incoming values.
67 /// If incoming value is constant or defined outside the loop then
68 /// PHINode may not have an entry for new pre-header.
69 void updateExitBlock();
70
71 /// Return true if this instruction is used outside original header.
72 bool usedOutsideOriginalHeader(Instruction *In);
73
74 /// Find Replacement information for instruction. Return NULL if it is
75 /// not available.
Devang Patel88bc2c62007-04-09 16:11:48 +000076 RenameData *findReplacementData(Instruction *I);
Devang Patelf42389f2007-04-07 01:25:15 +000077
78 private:
79
80 Loop *L;
81 BasicBlock *OrigHeader;
82 BasicBlock *OrigPreHeader;
83 BasicBlock *OrigLatch;
84 BasicBlock *NewHeader;
85 BasicBlock *NewPreHeader;
86 BasicBlock *Exit;
87
Devang Patel88bc2c62007-04-09 16:11:48 +000088 SmallVector<RenameData, MAX_HEADER_SIZE> LoopHeaderInfo;
Devang Patelf42389f2007-04-07 01:25:15 +000089 };
90
91 RegisterPass<LoopRotate> X ("loop-rotate", "Rotate Loops");
92}
93
94LoopPass *llvm::createLoopRotatePass() { return new LoopRotate(); }
95
Devang Patel88bc2c62007-04-09 16:11:48 +000096/// Rotate Loop L as many times as possible. Return true if
97/// loop is rotated at least once.
Devang Patelf42389f2007-04-07 01:25:15 +000098bool LoopRotate::runOnLoop(Loop *Lp, LPPassManager &LPM) {
99
100 bool RotatedOneLoop = false;
101 initialize();
102
103 // One loop can be rotated multiple times.
104 while (rotateLoop(Lp,LPM)) {
105 RotatedOneLoop = true;
106 initialize();
107 }
108
109 return RotatedOneLoop;
110}
111
Devang Patel88bc2c62007-04-09 16:11:48 +0000112/// Rotate loop LP. Return true if it loop is rotated.
Devang Patelf42389f2007-04-07 01:25:15 +0000113bool LoopRotate::rotateLoop(Loop *Lp, LPPassManager &LPM) {
114
115 L = Lp;
Devang Patelf42389f2007-04-07 01:25:15 +0000116
117 OrigHeader = L->getHeader();
118 OrigPreHeader = L->getLoopPreheader();
119 OrigLatch = L->getLoopLatch();
120
121 // If loop has only one block then there is not much to rotate.
Devang Patel88bc2c62007-04-09 16:11:48 +0000122 if (L->getBlocks().size() == 1)
Devang Patelf42389f2007-04-07 01:25:15 +0000123 return false;
124
125 if (!OrigHeader || !OrigLatch || !OrigPreHeader)
126 return false;
127
128 // If loop header is not one of the loop exit block then
129 // either this loop is already rotated or it is not
130 // suitable for loop rotation transformations.
131 if (!L->isLoopExit(OrigHeader))
132 return false;
133
134 BranchInst *BI = dyn_cast<BranchInst>(OrigHeader->getTerminator());
135 if (!BI)
136 return false;
Devang Patel88bc2c62007-04-09 16:11:48 +0000137 assert (BI->isConditional() && "Branch Instruction is not condiitional");
Devang Patelf42389f2007-04-07 01:25:15 +0000138
Devang Patel88bc2c62007-04-09 16:11:48 +0000139 // Updating PHInodes in loops with multiple exits adds complexity.
140 // Keep it simple, and restrict loop rotation to loops with one exit only.
141 // In future, lift this restriction and support for multiple exits if
142 // required.
Devang Patelf42389f2007-04-07 01:25:15 +0000143 std::vector<BasicBlock *> ExitBlocks;
144 L->getExitBlocks(ExitBlocks);
145 if (ExitBlocks.size() > 1)
146 return false;
147
148 // Find new Loop header. NewHeader is a Header's one and only successor
Devang Patel88bc2c62007-04-09 16:11:48 +0000149 // that is inside loop. Header's other successor is out side the
Devang Patelf42389f2007-04-07 01:25:15 +0000150 // loop. Otherwise loop is not suitable for rotation.
Devang Patel88bc2c62007-04-09 16:11:48 +0000151 Exit = BI->getSuccessor(0);
152 NewHeader = BI->getSuccessor(1);
153 if (L->contains(Exit))
154 std::swap(Exit, NewHeader);
Devang Patelf42389f2007-04-07 01:25:15 +0000155 assert (NewHeader && "Unable to determine new loop header");
Devang Patel88bc2c62007-04-09 16:11:48 +0000156 assert(L->contains(NewHeader) && !L->contains(Exit) &&
157 "Unable to determine loop header and exit blocks");
Devang Patelf42389f2007-04-07 01:25:15 +0000158
159 // Check size of original header and reject
160 // loop if it is very big.
161 if (OrigHeader->getInstList().size() > MAX_HEADER_SIZE)
162 return false;
163
164 // Now, this loop is suitable for rotation.
165
Devang Patel88bc2c62007-04-09 16:11:48 +0000166 // Copy PHI nodes and other instructions from original header
Devang Patelf42389f2007-04-07 01:25:15 +0000167 // into new pre-header. Unlike original header, new pre-header is
168 // not a member of loop. New pre-header has only one predecessor,
169 // that is original loop pre-header.
170 //
171 // New loop header is one and only successor of original header that
172 // is inside the loop. All other original header successors are outside
173 // the loop. Copy PHI Nodes from original header into new loop header.
174 // Add second incoming value, from new loop pre-header into these phi
175 // nodes. If a value defined in original header is used outside original
176 // header then new loop header will need new phi nodes with two incoming
177 // values, one definition from original header and second definition is
178 // from new loop pre-header (which is a clone of original header definition).
179
180 NewPreHeader = new BasicBlock("bb.nph", OrigHeader->getParent(), OrigHeader);
Devang Patel88bc2c62007-04-09 16:11:48 +0000181 BasicBlock::iterator I = OrigHeader->begin(), E = OrigHeader->end();
182 for (; I != E; ++I) {
Devang Patelf42389f2007-04-07 01:25:15 +0000183 Instruction *In = I;
184
Devang Patel88bc2c62007-04-09 16:11:48 +0000185 PHINode *PN = dyn_cast<PHINode>(I);
186 if (!PN)
187 break;
Devang Patelf42389f2007-04-07 01:25:15 +0000188
Devang Patel88bc2c62007-04-09 16:11:48 +0000189 // Create new PHI node with one value incoming from OrigPreHeader.
190 // NewPreHeader has only one predecessor, OrigPreHeader.
191 PHINode *NPH = new PHINode(In->getType(), In->getName());
192 NPH->addIncoming(PN->getIncomingValueForBlock(OrigPreHeader),
193 OrigPreHeader);
194 NewPreHeader->getInstList().push_back(NPH);
195
196 // Create new PHI node with two incoming values for NewHeader.
197 // One incoming value is from OrigLatch (through OrigHeader) and
198 // second incoming value is from NewPreHeader.
199 PHINode *NH = new PHINode(In->getType(), In->getName());
200 NH->addIncoming(PN->getIncomingValueForBlock(OrigLatch), OrigHeader);
201 NH->addIncoming(NPH, NewPreHeader);
202 NewHeader->getInstList().push_front(NH);
203
204 // "In" can be replaced by NPH or NH at various places.
205 LoopHeaderInfo.push_back(RenameData(In, NPH, NH));
206 }
Devang Patelf42389f2007-04-07 01:25:15 +0000207
Devang Patel88bc2c62007-04-09 16:11:48 +0000208 // Now, handle non-phi instructions.
209 for (; I != E; ++I) {
210 Instruction *In = I;
Devang Patelf42389f2007-04-07 01:25:15 +0000211
Devang Patel88bc2c62007-04-09 16:11:48 +0000212 assert (!isa<PHINode>(In) && "PHINode is not expected here");
213 // This is not a PHI instruction. Insert its clone into NewPreHeader.
214 // If this instruction is using a value from same basic block then
215 // update it to use value from cloned instruction.
216 Instruction *C = In->clone();
217 C->setName(In->getName());
218 NewPreHeader->getInstList().push_back(C);
219
220 // If this instruction is used outside this basic block then
221 // create new PHINode for this instruction.
222 Instruction *NewHeaderReplacement = NULL;
223 if (usedOutsideOriginalHeader(In)) {
224 PHINode *PN = new PHINode(In->getType(), In->getName());
225 PN->addIncoming(In, OrigHeader);
226 PN->addIncoming(C, NewPreHeader);
227 NewHeader->getInstList().push_front(PN);
228 NewHeaderReplacement = PN;
229 }
230
231 // "In" can be replaced by NPH or NH at various places.
232 LoopHeaderInfo.push_back(RenameData(In, C, NewHeaderReplacement));
Devang Patelf42389f2007-04-07 01:25:15 +0000233 }
234
235 // Update new pre-header.
236 // Rename values that are defined in original header to reflects values
237 // defined in new pre-header.
Devang Patel88bc2c62007-04-09 16:11:48 +0000238 for (SmallVector<RenameData, MAX_HEADER_SIZE>::iterator
239 I = LoopHeaderInfo.begin(), E = LoopHeaderInfo.end(); I != E; ++I) {
Devang Patelf42389f2007-04-07 01:25:15 +0000240
Devang Patel88bc2c62007-04-09 16:11:48 +0000241 RenameData ILoopHeaderInfo = (*I);
242 Instruction *In = ILoopHeaderInfo.Original;
243 Instruction *C = ILoopHeaderInfo.PreHeader;
Devang Patelf42389f2007-04-07 01:25:15 +0000244
245 if (C->getParent() != NewPreHeader)
246 continue;
247
248 // PHINodes uses value from pre-header predecessors.
249 if (isa<PHINode>(In))
250 continue;
251
252 for (unsigned opi = 0; opi < In->getNumOperands(); ++opi) {
253 if (Instruction *OpPhi = dyn_cast<PHINode>(In->getOperand(opi))) {
Devang Patel88bc2c62007-04-09 16:11:48 +0000254 if (RenameData *D = findReplacementData(OpPhi))
Devang Patelf42389f2007-04-07 01:25:15 +0000255 C->setOperand(opi, D->PreHeader);
256 }
257 else if (Instruction *OpInsn =
258 dyn_cast<Instruction>(In->getOperand(opi))) {
Devang Patel88bc2c62007-04-09 16:11:48 +0000259 if (RenameData *D = findReplacementData(OpInsn))
Devang Patelf42389f2007-04-07 01:25:15 +0000260 C->setOperand(opi, D->PreHeader);
261 }
262 }
263 }
264
265 // Rename uses of original header instructions to reflect their new
266 // definitions (either from new pre-header node or from newly created
267 // new header PHINodes.
268 //
269 // Original header instructions are used in
270 // 1) Original header:
271 //
272 // If instruction is used in non-phi instructions then it is using
273 // defintion from original heder iteself. Do not replace this use
274 // with definition from new header or new pre-header.
275 //
276 // If instruction is used in phi node then it is an incoming
277 // value. Rename its use to reflect new definition from new-preheader
278 // or new header.
279 //
280 // 2) Inside loop but not in original header
281 //
282 // Replace this use to reflect definition from new header.
Devang Patel88bc2c62007-04-09 16:11:48 +0000283 for (SmallVector<RenameData, MAX_HEADER_SIZE>::iterator
284 I = LoopHeaderInfo.begin(), E = LoopHeaderInfo.end(); I != E; ++I) {
Devang Patelf42389f2007-04-07 01:25:15 +0000285
Devang Patel88bc2c62007-04-09 16:11:48 +0000286 RenameData ILoopHeaderInfo = (*I);
287 if (!ILoopHeaderInfo.Header)
Devang Patelf42389f2007-04-07 01:25:15 +0000288 continue;
289
Devang Patel88bc2c62007-04-09 16:11:48 +0000290 Instruction *OldPhi = ILoopHeaderInfo.Original;
291 Instruction *NewPhi = ILoopHeaderInfo.Header;
Devang Patelf42389f2007-04-07 01:25:15 +0000292
293 // Before replacing uses, collect them first, so that iterator is
294 // not invalidated.
295 SmallVector<Instruction *, 16> AllUses;
296 for (Value::use_iterator UI = OldPhi->use_begin(), UE = OldPhi->use_end();
297 UI != UE; ++UI ) {
298 Instruction *U = cast<Instruction>(UI);
299 AllUses.push_back(U);
300 }
301
302 for (SmallVector<Instruction *, 16>::iterator UI = AllUses.begin(),
303 UE = AllUses.end(); UI != UE; ++UI) {
304 Instruction *U = *UI;
305 BasicBlock *Parent = U->getParent();
306
307 // Used inside original header
308 if (Parent == OrigHeader) {
309 // Do not rename uses inside original header non-phi instructions.
310 if (!isa<PHINode>(U))
311 continue;
312 PHINode *PU = dyn_cast<PHINode>(U);
313 // Do not rename uses inside original header phi nodes, if the
314 // incoming value is for new header.
315 if (PU->getBasicBlockIndex(NewHeader) != -1
316 && PU->getIncomingValueForBlock(NewHeader) == U)
317 continue;
318
319 U->replaceUsesOfWith(OldPhi, NewPhi);
320 continue;
321 }
322
323 // Used inside loop, but not in original header.
324 if (L->contains(U->getParent())) {
325 if (U != NewPhi )
326 U->replaceUsesOfWith(OldPhi, NewPhi);
327 continue;
328 }
329
330 // Used inside Exit Block. Since we are in LCSSA form, U must be PHINode.
331 assert ( U->getParent() == Exit && "Need to propagate new PHI into Exit blocks");
332 assert (isa<PHINode>(U) && "Use in Exit Block that is not PHINode");
333
334 PHINode *UPhi = cast<PHINode>(U);
335
336 // UPhi already has one incoming argument from original header.
337 // Add second incoming argument from new Pre header.
338
Devang Patel88bc2c62007-04-09 16:11:48 +0000339 UPhi->addIncoming(ILoopHeaderInfo.PreHeader, NewPreHeader);
Devang Patelf42389f2007-04-07 01:25:15 +0000340 }
341 }
342
343 /// Make sure all Exit block PHINodes have required incoming values.
344 updateExitBlock();
345
346 // Update CFG
347
348 // Removing incoming branch from loop preheader to original header.
349 // Now original header is inside the loop.
350 OrigHeader->removePredecessor(OrigPreHeader);
351
352 // Establish NewPreHeader as loop preheader. Add unconditional branch
353 // from original loop pre-header to new loop pre-header. Add NewPreHEader
354 // in loop nest.
355 BranchInst *PH_BI = cast<BranchInst>(OrigPreHeader->getTerminator());
356 PH_BI->setSuccessor(0, NewPreHeader);
357 LoopInfo &LI = LPM.getAnalysis<LoopInfo>();
358 if (Loop *PL = LI.getLoopFor(OrigPreHeader))
359 PL->addBasicBlockToLoop(NewPreHeader, LI);
360
361 // Make NewHeader as the new header for the loop.
362 L->moveToHeader(NewHeader);
363
364 NumRotated++;
365 return true;
366}
367
368
369/// Make sure all Exit block PHINodes have required incoming values.
370/// If incoming value is constant or defined outside the loop then
371/// PHINode may not have an entry for new pre-header.
372void LoopRotate::updateExitBlock() {
373
374 for (BasicBlock::iterator I = Exit->begin(), E = Exit->end();
375 I != E; ++I) {
376
377 if (!isa<PHINode>(I))
378 break;
379
380 PHINode *PN = dyn_cast<PHINode>(I);
381
382 if (PN->getBasicBlockIndex(NewPreHeader) == -1) {
383 Value *V = PN->getIncomingValueForBlock(OrigHeader);
384 if (isa<Constant>(V))
385 PN->addIncoming(V, NewPreHeader);
386 else {
Devang Patel88bc2c62007-04-09 16:11:48 +0000387 RenameData *ILoopHeaderInfo = findReplacementData(cast<Instruction>(V));
388 assert (ILoopHeaderInfo && ILoopHeaderInfo->PreHeader && "Missing New Preheader Instruction");
389 PN->addIncoming(ILoopHeaderInfo->PreHeader, NewPreHeader);
Devang Patelf42389f2007-04-07 01:25:15 +0000390 }
391 }
392 }
393}
394
395
396/// Initialize local data
397void LoopRotate::initialize() {
398 L = NULL;
399 OrigHeader = NULL;
400 OrigPreHeader = NULL;
401 NewHeader = NULL;
402 NewPreHeader = NULL;
403 Exit = NULL;
404
Devang Patel88bc2c62007-04-09 16:11:48 +0000405 LoopHeaderInfo.clear();
Devang Patelf42389f2007-04-07 01:25:15 +0000406}
407
408/// Return true if this instruction is used outside original header.
409bool LoopRotate::usedOutsideOriginalHeader(Instruction *In) {
410
411 for (Value::use_iterator UI = In->use_begin(), UE = In->use_end();
412 UI != UE; ++UI) {
413 Instruction *U = cast<Instruction>(UI);
414 if (U->getParent() != OrigHeader) {
415 if (L->contains(U->getParent()))
416 return true;
417 }
418 }
419
420 return false;
421}
422
423/// Find Replacement information for instruction. Return NULL if it is
424/// not available.
Devang Patel88bc2c62007-04-09 16:11:48 +0000425RenameData *LoopRotate::findReplacementData(Instruction *In) {
Devang Patelf42389f2007-04-07 01:25:15 +0000426
Devang Patel88bc2c62007-04-09 16:11:48 +0000427 // Since LoopHeaderInfo is small, linear walk is OK.
428 for (SmallVector<RenameData, MAX_HEADER_SIZE>::iterator
429 I = LoopHeaderInfo.begin(), E = LoopHeaderInfo.end(); I != E; ++I)
Devang Patelf42389f2007-04-07 01:25:15 +0000430 if ((*I).Original == In)
431 return &(*I);
432
433 return NULL;
434}