blob: e73b85d9e98526baceccd30ab7639861bcc1fb1a [file] [log] [blame]
Devang Patelc4625da2007-04-07 01:25:15 +00001//===- LoopRotation.cpp - Loop Rotation Pass ------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Devang Patelc4625da2007-04-07 01:25:15 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements Loop Rotation Pass.
11//
12//===----------------------------------------------------------------------===//
13
Devang Patel32231332007-04-09 16:11:48 +000014#define DEBUG_TYPE "loop-rotate"
Devang Patelc4625da2007-04-07 01:25:15 +000015#include "llvm/Transforms/Scalar.h"
16#include "llvm/Function.h"
Devang Patel3f43a702009-03-06 03:51:30 +000017#include "llvm/IntrinsicInst.h"
Devang Patelc4625da2007-04-07 01:25:15 +000018#include "llvm/Analysis/LoopPass.h"
Devang Patel990e8662007-07-11 23:47:28 +000019#include "llvm/Analysis/Dominators.h"
20#include "llvm/Analysis/ScalarEvolution.h"
Devang Patelc4625da2007-04-07 01:25:15 +000021#include "llvm/Transforms/Utils/Local.h"
Devang Patel990e8662007-07-11 23:47:28 +000022#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Dan Gohmane6e37b92009-10-24 23:19:52 +000023#include "llvm/Transforms/Utils/SSAUpdater.h"
Devang Patelc4625da2007-04-07 01:25:15 +000024#include "llvm/Support/CommandLine.h"
25#include "llvm/Support/Debug.h"
26#include "llvm/ADT/Statistic.h"
27#include "llvm/ADT/SmallVector.h"
Devang Patelc4625da2007-04-07 01:25:15 +000028using namespace llvm;
29
30#define MAX_HEADER_SIZE 16
31
32STATISTIC(NumRotated, "Number of loops rotated");
33namespace {
34
Chris Lattner3e8b6632009-09-02 06:11:42 +000035 class LoopRotate : public LoopPass {
Devang Patelc4625da2007-04-07 01:25:15 +000036 public:
Devang Patel19974732007-05-03 01:11:54 +000037 static char ID; // Pass ID, replacement for typeid
Owen Anderson90c579d2010-08-06 18:33:48 +000038 LoopRotate() : LoopPass(ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000039
Devang Patel32231332007-04-09 16:11:48 +000040 // Rotate Loop L as many times as possible. Return true if
41 // loop is rotated at least once.
Devang Patelc4625da2007-04-07 01:25:15 +000042 bool runOnLoop(Loop *L, LPPassManager &LPM);
Devang Patel32231332007-04-09 16:11:48 +000043
44 // LCSSA form makes instruction renaming easier.
Devang Patelc4625da2007-04-07 01:25:15 +000045 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Dan Gohman1e381fc2010-07-16 17:58:45 +000046 AU.addPreserved<DominatorTree>();
47 AU.addPreserved<DominanceFrontier>();
48 AU.addRequired<LoopInfo>();
49 AU.addPreserved<LoopInfo>();
Devang Patel9d9b2042008-02-15 01:24:49 +000050 AU.addRequiredID(LoopSimplifyID);
51 AU.addPreservedID(LoopSimplifyID);
Devang Patelc4625da2007-04-07 01:25:15 +000052 AU.addRequiredID(LCSSAID);
53 AU.addPreservedID(LCSSAID);
Devang Patel990e8662007-07-11 23:47:28 +000054 AU.addPreserved<ScalarEvolution>();
Devang Patelc4625da2007-04-07 01:25:15 +000055 }
56
57 // Helper functions
58
59 /// Do actual work
60 bool rotateLoop(Loop *L, LPPassManager &LPM);
61
62 /// Initialize local data
63 void initialize();
64
Devang Patel5464b962007-04-09 20:19:46 +000065 /// After loop rotation, loop pre-header has multiple sucessors.
66 /// Insert one forwarding basic block to ensure that loop pre-header
67 /// has only one successor.
68 void preserveCanonicalLoopForm(LPPassManager &LPM);
69
Devang Patelc4625da2007-04-07 01:25:15 +000070 private:
Devang Patelc4625da2007-04-07 01:25:15 +000071 Loop *L;
72 BasicBlock *OrigHeader;
73 BasicBlock *OrigPreHeader;
74 BasicBlock *OrigLatch;
75 BasicBlock *NewHeader;
Devang Patelc4625da2007-04-07 01:25:15 +000076 BasicBlock *Exit;
Devang Patel990e8662007-07-11 23:47:28 +000077 LPPassManager *LPM_Ptr;
Devang Patelc4625da2007-04-07 01:25:15 +000078 };
Devang Patelc4625da2007-04-07 01:25:15 +000079}
Dan Gohman844731a2008-05-13 00:00:25 +000080
81char LoopRotate::ID = 0;
Owen Anderson2ab36d32010-10-12 19:48:12 +000082INITIALIZE_PASS_BEGIN(LoopRotate, "loop-rotate", "Rotate Loops", false, false)
83INITIALIZE_PASS_DEPENDENCY(DominatorTree)
84INITIALIZE_PASS_DEPENDENCY(DominanceFrontier)
85INITIALIZE_PASS_DEPENDENCY(LoopInfo)
86INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
87INITIALIZE_PASS_DEPENDENCY(LCSSA)
88INITIALIZE_PASS_DEPENDENCY(ScalarEvolution)
89INITIALIZE_PASS_END(LoopRotate, "loop-rotate", "Rotate Loops", false, false)
Devang Patelc4625da2007-04-07 01:25:15 +000090
Daniel Dunbar394f0442008-10-22 23:32:42 +000091Pass *llvm::createLoopRotatePass() { return new LoopRotate(); }
Devang Patelc4625da2007-04-07 01:25:15 +000092
Devang Patel32231332007-04-09 16:11:48 +000093/// Rotate Loop L as many times as possible. Return true if
Dan Gohmancc4e6052009-06-25 00:22:44 +000094/// the loop is rotated at least once.
Devang Patelc4625da2007-04-07 01:25:15 +000095bool LoopRotate::runOnLoop(Loop *Lp, LPPassManager &LPM) {
Devang Patel990e8662007-07-11 23:47:28 +000096
Devang Patelc4625da2007-04-07 01:25:15 +000097 bool RotatedOneLoop = false;
98 initialize();
Devang Patel990e8662007-07-11 23:47:28 +000099 LPM_Ptr = &LPM;
Devang Patelc4625da2007-04-07 01:25:15 +0000100
101 // One loop can be rotated multiple times.
102 while (rotateLoop(Lp,LPM)) {
103 RotatedOneLoop = true;
104 initialize();
105 }
106
107 return RotatedOneLoop;
108}
109
Dan Gohman23d9d272007-05-11 21:10:54 +0000110/// Rotate loop LP. Return true if the loop is rotated.
Devang Patelc4625da2007-04-07 01:25:15 +0000111bool LoopRotate::rotateLoop(Loop *Lp, LPPassManager &LPM) {
Devang Patelc4625da2007-04-07 01:25:15 +0000112 L = Lp;
Devang Patelc4625da2007-04-07 01:25:15 +0000113
Devang Patelc4625da2007-04-07 01:25:15 +0000114 OrigPreHeader = L->getLoopPreheader();
Dan Gohman03e896b2009-11-05 21:11:53 +0000115 if (!OrigPreHeader) return false;
116
Devang Patelc4625da2007-04-07 01:25:15 +0000117 OrigLatch = L->getLoopLatch();
Dan Gohman03e896b2009-11-05 21:11:53 +0000118 if (!OrigLatch) return false;
119
120 OrigHeader = L->getHeader();
Devang Patelc4625da2007-04-07 01:25:15 +0000121
Dan Gohmancc4e6052009-06-25 00:22:44 +0000122 // If the loop has only one block then there is not much to rotate.
Devang Patel32231332007-04-09 16:11:48 +0000123 if (L->getBlocks().size() == 1)
Devang Patelc4625da2007-04-07 01:25:15 +0000124 return false;
125
Dan Gohmancc4e6052009-06-25 00:22:44 +0000126 // If the loop header is not one of the loop exiting blocks then
127 // either this loop is already rotated or it is not
Devang Patelc4625da2007-04-07 01:25:15 +0000128 // suitable for loop rotation transformations.
Dan Gohman32663b72009-10-24 23:34:26 +0000129 if (!L->isLoopExiting(OrigHeader))
Devang Patelc4625da2007-04-07 01:25:15 +0000130 return false;
131
132 BranchInst *BI = dyn_cast<BranchInst>(OrigHeader->getTerminator());
133 if (!BI)
134 return false;
Chris Lattner2ba25432009-01-26 01:38:24 +0000135 assert(BI->isConditional() && "Branch Instruction is not conditional");
Devang Patelc4625da2007-04-07 01:25:15 +0000136
Devang Patel32231332007-04-09 16:11:48 +0000137 // Updating PHInodes in loops with multiple exits adds complexity.
138 // Keep it simple, and restrict loop rotation to loops with one exit only.
139 // In future, lift this restriction and support for multiple exits if
140 // required.
Devang Patelb7211a22007-08-21 00:31:24 +0000141 SmallVector<BasicBlock*, 8> ExitBlocks;
Devang Patelc4625da2007-04-07 01:25:15 +0000142 L->getExitBlocks(ExitBlocks);
143 if (ExitBlocks.size() > 1)
144 return false;
145
Devang Patel990e8662007-07-11 23:47:28 +0000146 // Check size of original header and reject
147 // loop if it is very big.
Devang Patel3f43a702009-03-06 03:51:30 +0000148 unsigned Size = 0;
149
150 // FIXME: Use common api to estimate size.
151 for (BasicBlock::const_iterator OI = OrigHeader->begin(),
152 OE = OrigHeader->end(); OI != OE; ++OI) {
Chris Lattner50fb4692010-09-06 01:10:22 +0000153 if (isa<PHINode>(OI))
154 continue; // PHI nodes don't count.
155 if (isa<DbgInfoIntrinsic>(OI))
156 continue; // Debug intrinsics don't count as size.
157 ++Size;
Devang Patel3f43a702009-03-06 03:51:30 +0000158 }
159
160 if (Size > MAX_HEADER_SIZE)
Devang Patel990e8662007-07-11 23:47:28 +0000161 return false;
162
163 // Now, this loop is suitable for rotation.
164
Dan Gohmane6fe67b2009-09-27 15:37:03 +0000165 // Anything ScalarEvolution may know about this loop or the PHI nodes
166 // in its header will soon be invalidated.
167 if (ScalarEvolution *SE = getAnalysisIfAvailable<ScalarEvolution>())
Dan Gohman4c7279a2009-10-31 15:04:55 +0000168 SE->forgetLoop(L);
Dan Gohmane6fe67b2009-09-27 15:37:03 +0000169
Devang Patelc4625da2007-04-07 01:25:15 +0000170 // Find new Loop header. NewHeader is a Header's one and only successor
Chris Lattnerf6784a32009-01-26 01:57:01 +0000171 // that is inside loop. Header's other successor is outside the
172 // loop. Otherwise loop is not suitable for rotation.
Devang Patel32231332007-04-09 16:11:48 +0000173 Exit = BI->getSuccessor(0);
174 NewHeader = BI->getSuccessor(1);
175 if (L->contains(Exit))
176 std::swap(Exit, NewHeader);
Chris Lattner2ba25432009-01-26 01:38:24 +0000177 assert(NewHeader && "Unable to determine new loop header");
Devang Patel32231332007-04-09 16:11:48 +0000178 assert(L->contains(NewHeader) && !L->contains(Exit) &&
179 "Unable to determine loop header and exit blocks");
Chris Lattner3796a262009-01-26 02:11:30 +0000180
Dan Gohmancc4e6052009-06-25 00:22:44 +0000181 // This code assumes that the new header has exactly one predecessor.
182 // Remove any single-entry PHI nodes in it.
Chris Lattner3796a262009-01-26 02:11:30 +0000183 assert(NewHeader->getSinglePredecessor() &&
184 "New header doesn't have one pred!");
185 FoldSingleEntryPHINodes(NewHeader);
Devang Patelc4625da2007-04-07 01:25:15 +0000186
Dan Gohmane6e37b92009-10-24 23:19:52 +0000187 // Begin by walking OrigHeader and populating ValueMap with an entry for
188 // each Instruction.
Devang Patel32231332007-04-09 16:11:48 +0000189 BasicBlock::iterator I = OrigHeader->begin(), E = OrigHeader->end();
Dan Gohmane6e37b92009-10-24 23:19:52 +0000190 DenseMap<const Value *, Value *> ValueMap;
Devang Patele9881542007-04-09 19:04:21 +0000191
Dan Gohmane6e37b92009-10-24 23:19:52 +0000192 // For PHI nodes, the value available in OldPreHeader is just the
193 // incoming value from OldPreHeader.
194 for (; PHINode *PN = dyn_cast<PHINode>(I); ++I)
195 ValueMap[PN] = PN->getIncomingValue(PN->getBasicBlockIndex(OrigPreHeader));
Devang Patelc4625da2007-04-07 01:25:15 +0000196
Chris Lattner50fb4692010-09-06 01:10:22 +0000197 // For the rest of the instructions, either hoist to the OrigPreheader if
198 // possible or create a clone in the OldPreHeader if not.
Dan Gohmane6e37b92009-10-24 23:19:52 +0000199 TerminatorInst *LoopEntryBranch = OrigPreHeader->getTerminator();
Chris Lattner50fb4692010-09-06 01:10:22 +0000200 while (I != E) {
201 Instruction *Inst = I++;
202
203 // If the instruction's operands are invariant and it doesn't read or write
204 // memory, then it is safe to hoist. Doing this doesn't change the order of
205 // execution in the preheader, but does prevent the instruction from
206 // executing in each iteration of the loop. This means it is safe to hoist
207 // something that might trap, but isn't safe to hoist something that reads
208 // memory (without proving that the loop doesn't write).
209 if (L->hasLoopInvariantOperands(Inst) &&
210 !Inst->mayReadFromMemory() && !Inst->mayWriteToMemory() &&
211 !isa<TerminatorInst>(Inst)) {
212 Inst->moveBefore(LoopEntryBranch);
213 continue;
214 }
215
216 // Otherwise, create a duplicate of the instruction.
217 Instruction *C = Inst->clone();
218 C->setName(Inst->getName());
Dan Gohmane6e37b92009-10-24 23:19:52 +0000219 C->insertBefore(LoopEntryBranch);
Chris Lattner50fb4692010-09-06 01:10:22 +0000220 ValueMap[Inst] = C;
Devang Patelc4625da2007-04-07 01:25:15 +0000221 }
222
Dan Gohmane6e37b92009-10-24 23:19:52 +0000223 // Along with all the other instructions, we just cloned OrigHeader's
224 // terminator into OrigPreHeader. Fix up the PHI nodes in each of OrigHeader's
225 // successors by duplicating their incoming values for OrigHeader.
226 TerminatorInst *TI = OrigHeader->getTerminator();
227 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
228 for (BasicBlock::iterator BI = TI->getSuccessor(i)->begin();
229 PHINode *PN = dyn_cast<PHINode>(BI); ++BI)
230 PN->addIncoming(PN->getIncomingValueForBlock(OrigHeader), OrigPreHeader);
Devang Patelc4625da2007-04-07 01:25:15 +0000231
Dan Gohmane6e37b92009-10-24 23:19:52 +0000232 // Now that OrigPreHeader has a clone of OrigHeader's terminator, remove
233 // OrigPreHeader's old terminator (the original branch into the loop), and
234 // remove the corresponding incoming values from the PHI nodes in OrigHeader.
235 LoopEntryBranch->eraseFromParent();
236 for (I = OrigHeader->begin(); PHINode *PN = dyn_cast<PHINode>(I); ++I)
237 PN->removeIncomingValue(PN->getBasicBlockIndex(OrigPreHeader));
Devang Patelc4625da2007-04-07 01:25:15 +0000238
Dan Gohman440e2512009-10-26 15:55:24 +0000239 // Now fix up users of the instructions in OrigHeader, inserting PHI nodes
Dan Gohmane6e37b92009-10-24 23:19:52 +0000240 // as necessary.
241 SSAUpdater SSA;
242 for (I = OrigHeader->begin(); I != E; ++I) {
243 Value *OrigHeaderVal = I;
244 Value *OrigPreHeaderVal = ValueMap[OrigHeaderVal];
Devang Patelc4625da2007-04-07 01:25:15 +0000245
Dan Gohmane6e37b92009-10-24 23:19:52 +0000246 // The value now exits in two versions: the initial value in the preheader
247 // and the loop "next" value in the original header.
Duncan Sandsfc6e29d2010-09-02 08:14:03 +0000248 SSA.Initialize(OrigHeaderVal->getType(), OrigHeaderVal->getName());
Dan Gohmane6e37b92009-10-24 23:19:52 +0000249 SSA.AddAvailableValue(OrigHeader, OrigHeaderVal);
250 SSA.AddAvailableValue(OrigPreHeader, OrigPreHeaderVal);
Devang Patelc4625da2007-04-07 01:25:15 +0000251
Dan Gohmane6e37b92009-10-24 23:19:52 +0000252 // Visit each use of the OrigHeader instruction.
253 for (Value::use_iterator UI = OrigHeaderVal->use_begin(),
254 UE = OrigHeaderVal->use_end(); UI != UE; ) {
255 // Grab the use before incrementing the iterator.
256 Use &U = UI.getUse();
Devang Patelc4625da2007-04-07 01:25:15 +0000257
Dan Gohmane6e37b92009-10-24 23:19:52 +0000258 // Increment the iterator before removing the use from the list.
259 ++UI;
260
261 // SSAUpdater can't handle a non-PHI use in the same block as an
262 // earlier def. We can easily handle those cases manually.
263 Instruction *UserInst = cast<Instruction>(U.getUser());
264 if (!isa<PHINode>(UserInst)) {
265 BasicBlock *UserBB = UserInst->getParent();
266
267 // The original users in the OrigHeader are already using the
268 // original definitions.
269 if (UserBB == OrigHeader)
Devang Patel24a1c492007-04-09 16:21:29 +0000270 continue;
271
Dan Gohmane6e37b92009-10-24 23:19:52 +0000272 // Users in the OrigPreHeader need to use the value to which the
273 // original definitions are mapped.
274 if (UserBB == OrigPreHeader) {
275 U = OrigPreHeaderVal;
Devang Patelc4625da2007-04-07 01:25:15 +0000276 continue;
Dan Gohmane6e37b92009-10-24 23:19:52 +0000277 }
Devang Patelc4625da2007-04-07 01:25:15 +0000278 }
279
Dan Gohmane6e37b92009-10-24 23:19:52 +0000280 // Anything else can be handled by SSAUpdater.
281 SSA.RewriteUse(U);
Devang Patelc4625da2007-04-07 01:25:15 +0000282 }
283 }
Devang Patelc4625da2007-04-07 01:25:15 +0000284
Dan Gohmane6e37b92009-10-24 23:19:52 +0000285 // NewHeader is now the header of the loop.
Devang Patelc4625da2007-04-07 01:25:15 +0000286 L->moveToHeader(NewHeader);
287
Dan Gohmanfc8042a2010-08-17 17:39:21 +0000288 // Move the original header to the bottom of the loop, where it now more
289 // naturally belongs. This isn't necessary for correctness, and CodeGen can
290 // usually reorder blocks on its own to fix things like this up, but it's
291 // still nice to keep the IR readable.
292 //
293 // The original header should have only one predecessor at this point, since
294 // we checked that the loop had a proper preheader and unique backedge before
295 // we started.
296 assert(OrigHeader->getSinglePredecessor() &&
297 "Original loop header has too many predecessors after loop rotation!");
298 OrigHeader->moveAfter(OrigHeader->getSinglePredecessor());
299
300 // Also, since this original header only has one predecessor, zap its
301 // PHI nodes, which are now trivial.
302 FoldSingleEntryPHINodes(OrigHeader);
303
304 // TODO: We could just go ahead and merge OrigHeader into its predecessor
305 // at this point, if we don't mind updating dominator info.
306
307 // Establish a new preheader, update dominators, etc.
Devang Patel5464b962007-04-09 20:19:46 +0000308 preserveCanonicalLoopForm(LPM);
309
Dan Gohmanfe601042010-06-22 15:08:57 +0000310 ++NumRotated;
Devang Patelc4625da2007-04-07 01:25:15 +0000311 return true;
312}
313
Devang Patelc4625da2007-04-07 01:25:15 +0000314/// Initialize local data
315void LoopRotate::initialize() {
316 L = NULL;
317 OrigHeader = NULL;
318 OrigPreHeader = NULL;
319 NewHeader = NULL;
Devang Patelc4625da2007-04-07 01:25:15 +0000320 Exit = NULL;
Devang Patelc4625da2007-04-07 01:25:15 +0000321}
Devang Patel5464b962007-04-09 20:19:46 +0000322
323/// After loop rotation, loop pre-header has multiple sucessors.
324/// Insert one forwarding basic block to ensure that loop pre-header
325/// has only one successor.
326void LoopRotate::preserveCanonicalLoopForm(LPPassManager &LPM) {
327
328 // Right now original pre-header has two successors, new header and
329 // exit block. Insert new block between original pre-header and
330 // new header such that loop's new pre-header has only one successor.
Owen Anderson1d0be152009-08-13 21:58:54 +0000331 BasicBlock *NewPreHeader = BasicBlock::Create(OrigHeader->getContext(),
332 "bb.nph",
Gabor Greifb1dbcd82008-05-15 10:04:30 +0000333 OrigHeader->getParent(),
Gabor Greif051a9502008-04-06 20:25:17 +0000334 NewHeader);
Dan Gohman6a02fc32009-11-05 19:43:25 +0000335 LoopInfo &LI = getAnalysis<LoopInfo>();
Devang Patel5464b962007-04-09 20:19:46 +0000336 if (Loop *PL = LI.getLoopFor(OrigPreHeader))
Owen Andersond735ee82007-11-27 03:43:35 +0000337 PL->addBasicBlockToLoop(NewPreHeader, LI.getBase());
Gabor Greif051a9502008-04-06 20:25:17 +0000338 BranchInst::Create(NewHeader, NewPreHeader);
Devang Patel5464b962007-04-09 20:19:46 +0000339
340 BranchInst *OrigPH_BI = cast<BranchInst>(OrigPreHeader->getTerminator());
341 if (OrigPH_BI->getSuccessor(0) == NewHeader)
342 OrigPH_BI->setSuccessor(0, NewPreHeader);
343 else {
Chris Lattner2ba25432009-01-26 01:38:24 +0000344 assert(OrigPH_BI->getSuccessor(1) == NewHeader &&
345 "Unexpected original pre-header terminator");
Devang Patel5464b962007-04-09 20:19:46 +0000346 OrigPH_BI->setSuccessor(1, NewPreHeader);
347 }
Devang Patel5464b962007-04-09 20:19:46 +0000348
Dan Gohmancfb32202009-06-27 21:23:40 +0000349 PHINode *PN;
350 for (BasicBlock::iterator I = NewHeader->begin();
351 (PN = dyn_cast<PHINode>(I)); ++I) {
Devang Patel5464b962007-04-09 20:19:46 +0000352 int index = PN->getBasicBlockIndex(OrigPreHeader);
Chris Lattner2ba25432009-01-26 01:38:24 +0000353 assert(index != -1 && "Expected incoming value from Original PreHeader");
Devang Patel5464b962007-04-09 20:19:46 +0000354 PN->setIncomingBlock(index, NewPreHeader);
Chris Lattner2ba25432009-01-26 01:38:24 +0000355 assert(PN->getBasicBlockIndex(OrigPreHeader) == -1 &&
356 "Expected only one incoming value from Original PreHeader");
Devang Patel5464b962007-04-09 20:19:46 +0000357 }
358
Duncan Sands1465d612009-01-28 13:14:17 +0000359 if (DominatorTree *DT = getAnalysisIfAvailable<DominatorTree>()) {
Devang Patel990e8662007-07-11 23:47:28 +0000360 DT->addNewBlock(NewPreHeader, OrigPreHeader);
361 DT->changeImmediateDominator(L->getHeader(), NewPreHeader);
362 DT->changeImmediateDominator(Exit, OrigPreHeader);
363 for (Loop::block_iterator BI = L->block_begin(), BE = L->block_end();
364 BI != BE; ++BI) {
365 BasicBlock *B = *BI;
366 if (L->getHeader() != B) {
367 DomTreeNode *Node = DT->getNode(B);
368 if (Node && Node->getBlock() == OrigHeader)
369 DT->changeImmediateDominator(*BI, L->getHeader());
370 }
371 }
372 DT->changeImmediateDominator(OrigHeader, OrigLatch);
373 }
374
Duncan Sands1465d612009-01-28 13:14:17 +0000375 if (DominanceFrontier *DF = getAnalysisIfAvailable<DominanceFrontier>()) {
Devang Patel990e8662007-07-11 23:47:28 +0000376 // New Preheader's dominance frontier is Exit block.
377 DominanceFrontier::DomSetType NewPHSet;
378 NewPHSet.insert(Exit);
379 DF->addBasicBlock(NewPreHeader, NewPHSet);
380
381 // New Header's dominance frontier now includes itself and Exit block
382 DominanceFrontier::iterator HeadI = DF->find(L->getHeader());
383 if (HeadI != DF->end()) {
384 DominanceFrontier::DomSetType & HeaderSet = HeadI->second;
385 HeaderSet.clear();
386 HeaderSet.insert(L->getHeader());
387 HeaderSet.insert(Exit);
388 } else {
389 DominanceFrontier::DomSetType HeaderSet;
390 HeaderSet.insert(L->getHeader());
391 HeaderSet.insert(Exit);
392 DF->addBasicBlock(L->getHeader(), HeaderSet);
393 }
394
395 // Original header (new Loop Latch)'s dominance frontier is Exit.
396 DominanceFrontier::iterator LatchI = DF->find(L->getLoopLatch());
397 if (LatchI != DF->end()) {
398 DominanceFrontier::DomSetType &LatchSet = LatchI->second;
399 LatchSet = LatchI->second;
400 LatchSet.clear();
401 LatchSet.insert(Exit);
402 } else {
403 DominanceFrontier::DomSetType LatchSet;
404 LatchSet.insert(Exit);
405 DF->addBasicBlock(L->getHeader(), LatchSet);
406 }
407
Devang Patelb7f40c12009-08-07 17:16:44 +0000408 // If a loop block dominates new loop latch then add to its frontiers
409 // new header and Exit and remove new latch (which is equal to original
410 // header).
Devang Patel990e8662007-07-11 23:47:28 +0000411 BasicBlock *NewLatch = L->getLoopLatch();
Devang Patelb7f40c12009-08-07 17:16:44 +0000412
413 assert(NewLatch == OrigHeader && "NewLatch is inequal to OrigHeader");
414
415 if (DominatorTree *DT = getAnalysisIfAvailable<DominatorTree>()) {
416 for (Loop::block_iterator BI = L->block_begin(), BE = L->block_end();
417 BI != BE; ++BI) {
418 BasicBlock *B = *BI;
419 if (DT->dominates(B, NewLatch)) {
420 DominanceFrontier::iterator BDFI = DF->find(B);
421 if (BDFI != DF->end()) {
422 DominanceFrontier::DomSetType &BSet = BDFI->second;
423 BSet.erase(NewLatch);
424 BSet.insert(L->getHeader());
425 BSet.insert(Exit);
426 } else {
427 DominanceFrontier::DomSetType BSet;
428 BSet.insert(L->getHeader());
429 BSet.insert(Exit);
430 DF->addBasicBlock(B, BSet);
431 }
Devang Patel990e8662007-07-11 23:47:28 +0000432 }
433 }
434 }
435 }
436
437 // Preserve canonical loop form, which means Exit block should
438 // have only one predecessor.
Dan Gohmanc292caf2009-09-09 18:18:18 +0000439 SplitEdge(L->getLoopLatch(), Exit, this);
Devang Patel990e8662007-07-11 23:47:28 +0000440
Chris Lattner2ba25432009-01-26 01:38:24 +0000441 assert(NewHeader && L->getHeader() == NewHeader &&
442 "Invalid loop header after loop rotation");
443 assert(NewPreHeader && L->getLoopPreheader() == NewPreHeader &&
444 "Invalid loop preheader after loop rotation");
445 assert(L->getLoopLatch() &&
446 "Invalid loop latch after loop rotation");
Devang Patel5464b962007-04-09 20:19:46 +0000447}