blob: acd092f7588ab5953a35c1a44ff5cc930521c131 [file] [log] [blame]
Owen Anderson24807372006-05-26 21:11:53 +00001//===-- LCSSA.cpp - Convert loops into loop-closed SSA form ---------------===//
Owen Anderson11f510b2006-05-26 13:58:26 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Owen Anderson and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass transforms loops by placing phi nodes at the end of the loops for
11// all values that are live across the loop boundary. For example, it turns
12// the left into the right code:
13//
14// for (...) for (...)
15// if (c) if(c)
16// X1 = ... X1 = ...
17// else else
18// X2 = ... X2 = ...
19// X3 = phi(X1, X2) X3 = phi(X1, X2)
20// ... = X3 + 4 X4 = phi(X3)
21// ... = X4 + 4
22//
23// This is still valid LLVM; the extra phi nodes are purely redundant, and will
24// be trivially eliminated by InstCombine. The major benefit of this
25// transformation is that it makes many other loop optimizations, such as
26// LoopUnswitching, simpler.
27//
28//===----------------------------------------------------------------------===//
29
Chris Lattnerd216e8b2006-12-19 22:17:40 +000030#define DEBUG_TYPE "lcssa"
Owen Anderson24807372006-05-26 21:11:53 +000031#include "llvm/Transforms/Scalar.h"
Owen Andersone4e1ecd2006-07-09 08:14:06 +000032#include "llvm/Constants.h"
Owen Anderson11f510b2006-05-26 13:58:26 +000033#include "llvm/Pass.h"
34#include "llvm/Function.h"
35#include "llvm/Instructions.h"
Owen Anderson9e1c1dd2006-06-04 00:02:23 +000036#include "llvm/ADT/SetVector.h"
Owen Andersona90b2c72006-05-27 00:31:37 +000037#include "llvm/ADT/Statistic.h"
Owen Anderson24807372006-05-26 21:11:53 +000038#include "llvm/Analysis/Dominators.h"
Owen Anderson11f510b2006-05-26 13:58:26 +000039#include "llvm/Analysis/LoopInfo.h"
40#include "llvm/Support/CFG.h"
Reid Spencer9133fe22007-02-05 23:32:05 +000041#include "llvm/Support/Compiler.h"
Owen Anderson24807372006-05-26 21:11:53 +000042#include <algorithm>
Reid Spencer0974ea02007-02-05 05:23:32 +000043#include <map>
Owen Anderson11f510b2006-05-26 13:58:26 +000044using namespace llvm;
45
Chris Lattnerd216e8b2006-12-19 22:17:40 +000046STATISTIC(NumLCSSA, "Number of live out of a loop variables");
47
Owen Anderson11f510b2006-05-26 13:58:26 +000048namespace {
Reid Spencer9133fe22007-02-05 23:32:05 +000049 struct VISIBILITY_HIDDEN LCSSA : public FunctionPass {
Devang Patel19974732007-05-03 01:11:54 +000050 static char ID; // Pass identifcation, replacement for typeid
Devang Patel794fd752007-05-01 21:15:47 +000051 LCSSA() : FunctionPass((intptr_t)&ID) {}
52
Chris Lattnerd41ae8b2006-08-02 00:06:09 +000053 // Cached analysis information for the current function.
54 LoopInfo *LI;
Evan Chengcc045d52007-04-18 22:39:00 +000055 DominatorTree *DT;
Owen Anderson92deacf2006-06-06 04:28:30 +000056 std::vector<BasicBlock*> LoopBlocks;
Owen Anderson11f510b2006-05-26 13:58:26 +000057
58 virtual bool runOnFunction(Function &F);
Owen Andersonfc3a3bc2006-05-26 21:19:17 +000059 bool visitSubloop(Loop* L);
Chris Lattnerd41ae8b2006-08-02 00:06:09 +000060 void ProcessInstruction(Instruction* Instr,
Owen Anderson408a4062006-05-31 20:55:06 +000061 const std::vector<BasicBlock*>& exitBlocks);
Owen Anderson11f510b2006-05-26 13:58:26 +000062
63 /// This transformation requires natural loop information & requires that
Owen Andersona90b2c72006-05-27 00:31:37 +000064 /// loop preheaders be inserted into the CFG. It maintains both of these,
65 /// as well as the CFG. It also requires dominator information.
Owen Anderson11f510b2006-05-26 13:58:26 +000066 ///
67 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Owen Anderson24807372006-05-26 21:11:53 +000068 AU.setPreservesCFG();
Owen Anderson11f510b2006-05-26 13:58:26 +000069 AU.addRequiredID(LoopSimplifyID);
70 AU.addPreservedID(LoopSimplifyID);
71 AU.addRequired<LoopInfo>();
Evan Chengcc045d52007-04-18 22:39:00 +000072 AU.addRequired<DominatorTree>();
Owen Anderson11f510b2006-05-26 13:58:26 +000073 }
74 private:
Chris Lattnerd6b7a162007-04-14 22:10:17 +000075 void getLoopValuesUsedOutsideLoop(Loop *L,
76 SetVector<Instruction*> &AffectedValues);
Chris Lattnerd41ae8b2006-08-02 00:06:09 +000077
Evan Chengcc045d52007-04-18 22:39:00 +000078 Value *GetValueForBlock(DominatorTree::Node *BB, Instruction *OrigInst,
79 std::map<DominatorTree::Node*, Value*> &Phis);
Chris Lattnerd41ae8b2006-08-02 00:06:09 +000080
Owen Anderson92deacf2006-06-06 04:28:30 +000081 /// inLoop - returns true if the given block is within the current loop
82 const bool inLoop(BasicBlock* B) {
Owen Andersone9d93d52006-06-06 04:36:36 +000083 return std::binary_search(LoopBlocks.begin(), LoopBlocks.end(), B);
84 }
Owen Anderson11f510b2006-05-26 13:58:26 +000085 };
86
Devang Patel19974732007-05-03 01:11:54 +000087 char LCSSA::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +000088 RegisterPass<LCSSA> X("lcssa", "Loop-Closed SSA Form Pass");
Owen Anderson11f510b2006-05-26 13:58:26 +000089}
90
91FunctionPass *llvm::createLCSSAPass() { return new LCSSA(); }
Owen Andersona4529322006-06-08 20:02:53 +000092const PassInfo *llvm::LCSSAID = X.getPassInfo();
Owen Anderson11f510b2006-05-26 13:58:26 +000093
Owen Andersona4529322006-06-08 20:02:53 +000094/// runOnFunction - Process all loops in the function, inner-most out.
Owen Anderson11f510b2006-05-26 13:58:26 +000095bool LCSSA::runOnFunction(Function &F) {
96 bool changed = false;
Owen Anderson7be3f1e2006-06-13 19:37:18 +000097
Owen Anderson11f510b2006-05-26 13:58:26 +000098 LI = &getAnalysis<LoopInfo>();
Evan Chengcc045d52007-04-18 22:39:00 +000099 DT = &getAnalysis<DominatorTree>();
Owen Anderson11f510b2006-05-26 13:58:26 +0000100
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000101 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
Owen Anderson24807372006-05-26 21:11:53 +0000102 changed |= visitSubloop(*I);
Evan Chengb9b2b302006-06-11 09:32:57 +0000103
Owen Anderson11f510b2006-05-26 13:58:26 +0000104 return changed;
105}
106
Owen Andersona4529322006-06-08 20:02:53 +0000107/// visitSubloop - Recursively process all subloops, and then process the given
108/// loop if it has live-out values.
Owen Anderson24807372006-05-26 21:11:53 +0000109bool LCSSA::visitSubloop(Loop* L) {
110 for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I)
111 visitSubloop(*I);
Owen Anderson7be3f1e2006-06-13 19:37:18 +0000112
Owen Anderson24807372006-05-26 21:11:53 +0000113 // Speed up queries by creating a sorted list of blocks
Owen Anderson92deacf2006-06-06 04:28:30 +0000114 LoopBlocks.clear();
115 LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end());
116 std::sort(LoopBlocks.begin(), LoopBlocks.end());
Owen Anderson24807372006-05-26 21:11:53 +0000117
Chris Lattnerd6b7a162007-04-14 22:10:17 +0000118 SetVector<Instruction*> AffectedValues;
119 getLoopValuesUsedOutsideLoop(L, AffectedValues);
Owen Anderson11f510b2006-05-26 13:58:26 +0000120
Owen Anderson408a4062006-05-31 20:55:06 +0000121 // If no values are affected, we can save a lot of work, since we know that
122 // nothing will be changed.
123 if (AffectedValues.empty())
124 return false;
125
Owen Anderson11f510b2006-05-26 13:58:26 +0000126 std::vector<BasicBlock*> exitBlocks;
127 L->getExitBlocks(exitBlocks);
128
Owen Anderson2f21e072006-05-27 18:47:11 +0000129
130 // Iterate over all affected values for this loop and insert Phi nodes
131 // for them in the appropriate exit blocks
Owen Anderson408a4062006-05-31 20:55:06 +0000132
Owen Anderson9e1c1dd2006-06-04 00:02:23 +0000133 for (SetVector<Instruction*>::iterator I = AffectedValues.begin(),
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000134 E = AffectedValues.end(); I != E; ++I)
135 ProcessInstruction(*I, exitBlocks);
Owen Anderson00ea74c2006-05-29 01:00:00 +0000136
Owen Andersonc2cc15c2006-06-11 19:22:28 +0000137 assert(L->isLCSSAForm());
138
Owen Anderson92deacf2006-06-06 04:28:30 +0000139 return true;
Owen Anderson11f510b2006-05-26 13:58:26 +0000140}
141
Owen Andersona4529322006-06-08 20:02:53 +0000142/// processInstruction - Given a live-out instruction, insert LCSSA Phi nodes,
143/// eliminate all out-of-loop uses.
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000144void LCSSA::ProcessInstruction(Instruction *Instr,
145 const std::vector<BasicBlock*>& exitBlocks) {
Owen Anderson408a4062006-05-31 20:55:06 +0000146 ++NumLCSSA; // We are applying the transformation
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000147
148 // Keep track of the blocks that have the value available already.
Evan Chengcc045d52007-04-18 22:39:00 +0000149 std::map<DominatorTree::Node*, Value*> Phis;
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000150
Evan Chengcc045d52007-04-18 22:39:00 +0000151 DominatorTree::Node *InstrNode = DT->getNode(Instr->getParent());
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000152
153 // Insert the LCSSA phi's into the exit blocks (dominated by the value), and
154 // add them to the Phi's map.
Owen Anderson408a4062006-05-31 20:55:06 +0000155 for (std::vector<BasicBlock*>::const_iterator BBI = exitBlocks.begin(),
Owen Anderson3d2aa472006-06-12 07:10:16 +0000156 BBE = exitBlocks.end(); BBI != BBE; ++BBI) {
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000157 BasicBlock *BB = *BBI;
Evan Chengcc045d52007-04-18 22:39:00 +0000158 DominatorTree::Node *ExitBBNode = DT->getNode(BB);
159 Value *&Phi = Phis[ExitBBNode];
160 if (!Phi && InstrNode->dominates(ExitBBNode)) {
Chris Lattnercbea67f2006-10-31 18:56:48 +0000161 PHINode *PN = new PHINode(Instr->getType(), Instr->getName()+".lcssa",
162 BB->begin());
163 PN->reserveOperandSpace(std::distance(pred_begin(BB), pred_end(BB)));
164
165 // Remember that this phi makes the value alive in this block.
166 Phi = PN;
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000167
168 // Add inputs from inside the loop for this PHI.
169 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
Chris Lattnercbea67f2006-10-31 18:56:48 +0000170 PN->addIncoming(Instr, *PI);
Owen Anderson2824da42006-06-01 06:05:47 +0000171 }
Owen Anderson3d2aa472006-06-12 07:10:16 +0000172 }
Owen Anderson408a4062006-05-31 20:55:06 +0000173
Owen Anderson30019c82006-06-03 23:22:50 +0000174
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000175 // Record all uses of Instr outside the loop. We need to rewrite these. The
176 // LCSSA phis won't be included because they use the value in the loop.
177 for (Value::use_iterator UI = Instr->use_begin(), E = Instr->use_end();
178 UI != E;) {
179 BasicBlock *UserBB = cast<Instruction>(*UI)->getParent();
180 if (PHINode *P = dyn_cast<PHINode>(*UI)) {
Owen Anderson8b92d0c2006-06-13 20:50:09 +0000181 unsigned OperandNo = UI.getOperandNo();
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000182 UserBB = P->getIncomingBlock(OperandNo/2);
Owen Anderson8b92d0c2006-06-13 20:50:09 +0000183 }
184
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000185 // If the user is in the loop, don't rewrite it!
Chris Lattnerf9ba4012006-08-02 00:16:47 +0000186 if (UserBB == Instr->getParent() || inLoop(UserBB)) {
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000187 ++UI;
188 continue;
Owen Anderson2824da42006-06-01 06:05:47 +0000189 }
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000190
191 // Otherwise, patch up uses of the value with the appropriate LCSSA Phi,
192 // inserting PHI nodes into join points where needed.
Evan Chengcc045d52007-04-18 22:39:00 +0000193 Value *Val = GetValueForBlock(DT->getNode(UserBB), Instr, Phis);
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000194
195 // Preincrement the iterator to avoid invalidating it when we change the
196 // value.
197 Use &U = UI.getUse();
198 ++UI;
199 U.set(Val);
Owen Anderson408a4062006-05-31 20:55:06 +0000200 }
201}
202
Owen Anderson24807372006-05-26 21:11:53 +0000203/// getLoopValuesUsedOutsideLoop - Return any values defined in the loop that
204/// are used by instructions outside of it.
Chris Lattnerd6b7a162007-04-14 22:10:17 +0000205void LCSSA::getLoopValuesUsedOutsideLoop(Loop *L,
206 SetVector<Instruction*> &AffectedValues) {
Owen Anderson408a4062006-05-31 20:55:06 +0000207 // FIXME: For large loops, we may be able to avoid a lot of use-scanning
208 // by using dominance information. In particular, if a block does not
209 // dominate any of the loop exits, then none of the values defined in the
210 // block could be used outside the loop.
Owen Anderson11f510b2006-05-26 13:58:26 +0000211 for (Loop::block_iterator BB = L->block_begin(), E = L->block_end();
212 BB != E; ++BB) {
213 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); I != E; ++I)
214 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E;
215 ++UI) {
216 BasicBlock *UserBB = cast<Instruction>(*UI)->getParent();
Owen Anderson7be3f1e2006-06-13 19:37:18 +0000217 if (PHINode* p = dyn_cast<PHINode>(*UI)) {
218 unsigned OperandNo = UI.getOperandNo();
219 UserBB = p->getIncomingBlock(OperandNo/2);
220 }
221
Chris Lattnerf9ba4012006-08-02 00:16:47 +0000222 if (*BB != UserBB && !inLoop(UserBB)) {
Owen Anderson11f510b2006-05-26 13:58:26 +0000223 AffectedValues.insert(I);
Owen Anderson408a4062006-05-31 20:55:06 +0000224 break;
225 }
Owen Anderson11f510b2006-05-26 13:58:26 +0000226 }
227 }
Owen Anderson24807372006-05-26 21:11:53 +0000228}
Owen Anderson408a4062006-05-31 20:55:06 +0000229
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000230/// GetValueForBlock - Get the value to use within the specified basic block.
231/// available values are in Phis.
Evan Chengcc045d52007-04-18 22:39:00 +0000232Value *LCSSA::GetValueForBlock(DominatorTree::Node *BB, Instruction *OrigInst,
233 std::map<DominatorTree::Node*, Value*> &Phis) {
Chris Lattnercbea67f2006-10-31 18:56:48 +0000234 // If there is no dominator info for this BB, it is unreachable.
235 if (BB == 0)
236 return UndefValue::get(OrigInst->getType());
237
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000238 // If we have already computed this value, return the previously computed val.
Chris Lattnercbea67f2006-10-31 18:56:48 +0000239 Value *&V = Phis[BB];
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000240 if (V) return V;
241
Evan Chengcc045d52007-04-18 22:39:00 +0000242 DominatorTree::Node *IDom = BB->getIDom();
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000243
244 // Otherwise, there are two cases: we either have to insert a PHI node or we
245 // don't. We need to insert a PHI node if this block is not dominated by one
246 // of the exit nodes from the loop (the loop could have multiple exits, and
247 // though the value defined *inside* the loop dominated all its uses, each
248 // exit by itself may not dominate all the uses).
249 //
250 // The simplest way to check for this condition is by checking to see if the
251 // idom is in the loop. If so, we *know* that none of the exit blocks
252 // dominate this block. Note that we *know* that the block defining the
253 // original instruction is in the idom chain, because if it weren't, then the
254 // original value didn't dominate this use.
Evan Chengcc045d52007-04-18 22:39:00 +0000255 if (!inLoop(IDom->getBlock())) {
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000256 // Idom is not in the loop, we must still be "below" the exit block and must
257 // be fully dominated by the value live in the idom.
258 return V = GetValueForBlock(IDom, OrigInst, Phis);
259 }
Owen Andersone4e1ecd2006-07-09 08:14:06 +0000260
Evan Chengcc045d52007-04-18 22:39:00 +0000261 BasicBlock *BBN = BB->getBlock();
262
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000263 // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so
264 // now, then get values to fill in the incoming values for the PHI.
Chris Lattnercbea67f2006-10-31 18:56:48 +0000265 PHINode *PN = new PHINode(OrigInst->getType(), OrigInst->getName()+".lcssa",
Evan Chengcc045d52007-04-18 22:39:00 +0000266 BBN->begin());
267 PN->reserveOperandSpace(std::distance(pred_begin(BBN), pred_end(BBN)));
Chris Lattnercbea67f2006-10-31 18:56:48 +0000268 V = PN;
269
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000270 // Fill in the incoming values for the block.
Evan Chengcc045d52007-04-18 22:39:00 +0000271 for (pred_iterator PI = pred_begin(BBN), E = pred_end(BBN); PI != E; ++PI)
272 PN->addIncoming(GetValueForBlock(DT->getNode(*PI), OrigInst, Phis), *PI);
Chris Lattnercbea67f2006-10-31 18:56:48 +0000273 return PN;
Owen Anderson408a4062006-05-31 20:55:06 +0000274}
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000275