blob: 21f9352637341d320286216615b1148d3acba457 [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
Owen Anderson24807372006-05-26 21:11:53 +000030#include "llvm/Transforms/Scalar.h"
Owen Andersone4e1ecd2006-07-09 08:14:06 +000031#include "llvm/Constants.h"
Owen Anderson11f510b2006-05-26 13:58:26 +000032#include "llvm/Pass.h"
33#include "llvm/Function.h"
34#include "llvm/Instructions.h"
Owen Anderson9e1c1dd2006-06-04 00:02:23 +000035#include "llvm/ADT/SetVector.h"
Owen Andersona90b2c72006-05-27 00:31:37 +000036#include "llvm/ADT/Statistic.h"
Owen Anderson24807372006-05-26 21:11:53 +000037#include "llvm/Analysis/Dominators.h"
Owen Anderson11f510b2006-05-26 13:58:26 +000038#include "llvm/Analysis/LoopInfo.h"
39#include "llvm/Support/CFG.h"
Owen Anderson24807372006-05-26 21:11:53 +000040#include <algorithm>
Owen Anderson2f21e072006-05-27 18:47:11 +000041#include <map>
Owen Anderson11f510b2006-05-26 13:58:26 +000042
43using namespace llvm;
44
45namespace {
Owen Andersonbd822772006-05-28 19:33:28 +000046 static Statistic<> NumLCSSA("lcssa",
47 "Number of live out of a loop variables");
Owen Andersona90b2c72006-05-27 00:31:37 +000048
Chris Lattnerd41ae8b2006-08-02 00:06:09 +000049 struct LCSSA : public FunctionPass {
50 // Cached analysis information for the current function.
51 LoopInfo *LI;
52 DominatorTree *DT;
Owen Anderson92deacf2006-06-06 04:28:30 +000053 std::vector<BasicBlock*> LoopBlocks;
Owen Anderson11f510b2006-05-26 13:58:26 +000054
55 virtual bool runOnFunction(Function &F);
Owen Andersonfc3a3bc2006-05-26 21:19:17 +000056 bool visitSubloop(Loop* L);
Chris Lattnerd41ae8b2006-08-02 00:06:09 +000057 void ProcessInstruction(Instruction* Instr,
Owen Anderson408a4062006-05-31 20:55:06 +000058 const std::vector<BasicBlock*>& exitBlocks);
Owen Anderson11f510b2006-05-26 13:58:26 +000059
60 /// This transformation requires natural loop information & requires that
Owen Andersona90b2c72006-05-27 00:31:37 +000061 /// loop preheaders be inserted into the CFG. It maintains both of these,
62 /// as well as the CFG. It also requires dominator information.
Owen Anderson11f510b2006-05-26 13:58:26 +000063 ///
64 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Owen Anderson24807372006-05-26 21:11:53 +000065 AU.setPreservesCFG();
Owen Anderson11f510b2006-05-26 13:58:26 +000066 AU.addRequiredID(LoopSimplifyID);
67 AU.addPreservedID(LoopSimplifyID);
68 AU.addRequired<LoopInfo>();
Owen Anderson2f21e072006-05-27 18:47:11 +000069 AU.addRequired<DominatorTree>();
Owen Anderson11f510b2006-05-26 13:58:26 +000070 }
71 private:
Owen Anderson9e1c1dd2006-06-04 00:02:23 +000072 SetVector<Instruction*> getLoopValuesUsedOutsideLoop(Loop *L);
Chris Lattnerd41ae8b2006-08-02 00:06:09 +000073
74 PHINode *GetValueForBlock(DominatorTree::Node *BB, Instruction *OrigInst,
75 std::map<DominatorTree::Node*, PHINode*> &Phis);
76
Owen Anderson92deacf2006-06-06 04:28:30 +000077 /// inLoop - returns true if the given block is within the current loop
78 const bool inLoop(BasicBlock* B) {
Owen Andersone9d93d52006-06-06 04:36:36 +000079 return std::binary_search(LoopBlocks.begin(), LoopBlocks.end(), B);
80 }
Owen Anderson11f510b2006-05-26 13:58:26 +000081 };
82
83 RegisterOpt<LCSSA> X("lcssa", "Loop-Closed SSA Form Pass");
84}
85
86FunctionPass *llvm::createLCSSAPass() { return new LCSSA(); }
Owen Andersona4529322006-06-08 20:02:53 +000087const PassInfo *llvm::LCSSAID = X.getPassInfo();
Owen Anderson11f510b2006-05-26 13:58:26 +000088
Owen Andersona4529322006-06-08 20:02:53 +000089/// runOnFunction - Process all loops in the function, inner-most out.
Owen Anderson11f510b2006-05-26 13:58:26 +000090bool LCSSA::runOnFunction(Function &F) {
91 bool changed = false;
Owen Anderson7be3f1e2006-06-13 19:37:18 +000092
Owen Anderson11f510b2006-05-26 13:58:26 +000093 LI = &getAnalysis<LoopInfo>();
Owen Anderson24807372006-05-26 21:11:53 +000094 DT = &getAnalysis<DominatorTree>();
Owen Anderson11f510b2006-05-26 13:58:26 +000095
Chris Lattnerd41ae8b2006-08-02 00:06:09 +000096 for (LoopInfo::iterator I = LI->begin(), E = LI->end(); I != E; ++I)
Owen Anderson24807372006-05-26 21:11:53 +000097 changed |= visitSubloop(*I);
Evan Chengb9b2b302006-06-11 09:32:57 +000098
Owen Anderson11f510b2006-05-26 13:58:26 +000099 return changed;
100}
101
Owen Andersona4529322006-06-08 20:02:53 +0000102/// visitSubloop - Recursively process all subloops, and then process the given
103/// loop if it has live-out values.
Owen Anderson24807372006-05-26 21:11:53 +0000104bool LCSSA::visitSubloop(Loop* L) {
105 for (Loop::iterator I = L->begin(), E = L->end(); I != E; ++I)
106 visitSubloop(*I);
Owen Anderson7be3f1e2006-06-13 19:37:18 +0000107
Owen Anderson24807372006-05-26 21:11:53 +0000108 // Speed up queries by creating a sorted list of blocks
Owen Anderson92deacf2006-06-06 04:28:30 +0000109 LoopBlocks.clear();
110 LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end());
111 std::sort(LoopBlocks.begin(), LoopBlocks.end());
Owen Anderson24807372006-05-26 21:11:53 +0000112
Owen Anderson9e1c1dd2006-06-04 00:02:23 +0000113 SetVector<Instruction*> AffectedValues = getLoopValuesUsedOutsideLoop(L);
Owen Anderson11f510b2006-05-26 13:58:26 +0000114
Owen Anderson408a4062006-05-31 20:55:06 +0000115 // If no values are affected, we can save a lot of work, since we know that
116 // nothing will be changed.
117 if (AffectedValues.empty())
118 return false;
119
Owen Anderson11f510b2006-05-26 13:58:26 +0000120 std::vector<BasicBlock*> exitBlocks;
121 L->getExitBlocks(exitBlocks);
122
Owen Anderson2f21e072006-05-27 18:47:11 +0000123
124 // Iterate over all affected values for this loop and insert Phi nodes
125 // for them in the appropriate exit blocks
Owen Anderson408a4062006-05-31 20:55:06 +0000126
Owen Anderson9e1c1dd2006-06-04 00:02:23 +0000127 for (SetVector<Instruction*>::iterator I = AffectedValues.begin(),
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000128 E = AffectedValues.end(); I != E; ++I)
129 ProcessInstruction(*I, exitBlocks);
Owen Anderson00ea74c2006-05-29 01:00:00 +0000130
Owen Andersonc2cc15c2006-06-11 19:22:28 +0000131 assert(L->isLCSSAForm());
132
Owen Anderson92deacf2006-06-06 04:28:30 +0000133 return true;
Owen Anderson11f510b2006-05-26 13:58:26 +0000134}
135
Owen Andersona4529322006-06-08 20:02:53 +0000136/// processInstruction - Given a live-out instruction, insert LCSSA Phi nodes,
137/// eliminate all out-of-loop uses.
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000138void LCSSA::ProcessInstruction(Instruction *Instr,
139 const std::vector<BasicBlock*>& exitBlocks) {
Owen Anderson408a4062006-05-31 20:55:06 +0000140 ++NumLCSSA; // We are applying the transformation
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000141
142 // Keep track of the blocks that have the value available already.
143 std::map<DominatorTree::Node*, PHINode*> Phis;
144
145 DominatorTree::Node *InstrNode = DT->getNode(Instr->getParent());
146
147 // Insert the LCSSA phi's into the exit blocks (dominated by the value), and
148 // add them to the Phi's map.
Owen Anderson408a4062006-05-31 20:55:06 +0000149 for (std::vector<BasicBlock*>::const_iterator BBI = exitBlocks.begin(),
Owen Anderson3d2aa472006-06-12 07:10:16 +0000150 BBE = exitBlocks.end(); BBI != BBE; ++BBI) {
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000151 BasicBlock *BB = *BBI;
152 DominatorTree::Node *ExitBBNode = DT->getNode(BB);
153 PHINode *&Phi = Phis[ExitBBNode];
154 if (!Phi && InstrNode->dominates(ExitBBNode)) {
155 Phi = new PHINode(Instr->getType(), Instr->getName()+".lcssa",
156 BB->begin());
157 Phi->reserveOperandSpace(std::distance(pred_begin(BB), pred_end(BB)));
158
159 // Add inputs from inside the loop for this PHI.
160 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
161 Phi->addIncoming(Instr, *PI);
162
163 // Remember that this phi makes the value alive in this block.
164 Phis[ExitBBNode] = Phi;
Owen Anderson2824da42006-06-01 06:05:47 +0000165 }
Owen Anderson3d2aa472006-06-12 07:10:16 +0000166 }
Owen Anderson408a4062006-05-31 20:55:06 +0000167
Owen Anderson30019c82006-06-03 23:22:50 +0000168
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000169 // Record all uses of Instr outside the loop. We need to rewrite these. The
170 // LCSSA phis won't be included because they use the value in the loop.
171 for (Value::use_iterator UI = Instr->use_begin(), E = Instr->use_end();
172 UI != E;) {
173 BasicBlock *UserBB = cast<Instruction>(*UI)->getParent();
174 if (PHINode *P = dyn_cast<PHINode>(*UI)) {
Owen Anderson8b92d0c2006-06-13 20:50:09 +0000175 unsigned OperandNo = UI.getOperandNo();
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000176 UserBB = P->getIncomingBlock(OperandNo/2);
Owen Anderson8b92d0c2006-06-13 20:50:09 +0000177 }
178
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000179 // If the user is in the loop, don't rewrite it!
Chris Lattnerf9ba4012006-08-02 00:16:47 +0000180 if (UserBB == Instr->getParent() || inLoop(UserBB)) {
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000181 ++UI;
182 continue;
Owen Anderson2824da42006-06-01 06:05:47 +0000183 }
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000184
185 // Otherwise, patch up uses of the value with the appropriate LCSSA Phi,
186 // inserting PHI nodes into join points where needed.
187 Value *Val = GetValueForBlock(DT->getNode(UserBB), Instr, Phis);
188
189 // Preincrement the iterator to avoid invalidating it when we change the
190 // value.
191 Use &U = UI.getUse();
192 ++UI;
193 U.set(Val);
Owen Anderson408a4062006-05-31 20:55:06 +0000194 }
195}
196
Owen Anderson24807372006-05-26 21:11:53 +0000197/// getLoopValuesUsedOutsideLoop - Return any values defined in the loop that
198/// are used by instructions outside of it.
Owen Anderson9e1c1dd2006-06-04 00:02:23 +0000199SetVector<Instruction*> LCSSA::getLoopValuesUsedOutsideLoop(Loop *L) {
Owen Anderson408a4062006-05-31 20:55:06 +0000200
201 // FIXME: For large loops, we may be able to avoid a lot of use-scanning
202 // by using dominance information. In particular, if a block does not
203 // dominate any of the loop exits, then none of the values defined in the
204 // block could be used outside the loop.
205
Owen Anderson9e1c1dd2006-06-04 00:02:23 +0000206 SetVector<Instruction*> AffectedValues;
Owen Anderson11f510b2006-05-26 13:58:26 +0000207 for (Loop::block_iterator BB = L->block_begin(), E = L->block_end();
208 BB != E; ++BB) {
209 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); I != E; ++I)
210 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E;
211 ++UI) {
212 BasicBlock *UserBB = cast<Instruction>(*UI)->getParent();
Owen Anderson7be3f1e2006-06-13 19:37:18 +0000213 if (PHINode* p = dyn_cast<PHINode>(*UI)) {
214 unsigned OperandNo = UI.getOperandNo();
215 UserBB = p->getIncomingBlock(OperandNo/2);
216 }
217
Chris Lattnerf9ba4012006-08-02 00:16:47 +0000218 if (*BB != UserBB && !inLoop(UserBB)) {
Owen Anderson11f510b2006-05-26 13:58:26 +0000219 AffectedValues.insert(I);
Owen Anderson408a4062006-05-31 20:55:06 +0000220 break;
221 }
Owen Anderson11f510b2006-05-26 13:58:26 +0000222 }
223 }
224 return AffectedValues;
Owen Anderson24807372006-05-26 21:11:53 +0000225}
Owen Anderson408a4062006-05-31 20:55:06 +0000226
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000227/// GetValueForBlock - Get the value to use within the specified basic block.
228/// available values are in Phis.
229PHINode *LCSSA::GetValueForBlock(DominatorTree::Node *BB, Instruction *OrigInst,
230 std::map<DominatorTree::Node*, PHINode*> &Phis) {
231 // If we have already computed this value, return the previously computed val.
232 PHINode *&V = Phis[BB];
233 if (V) return V;
234
235 DominatorTree::Node *IDom = BB->getIDom();
236
237 // Otherwise, there are two cases: we either have to insert a PHI node or we
238 // don't. We need to insert a PHI node if this block is not dominated by one
239 // of the exit nodes from the loop (the loop could have multiple exits, and
240 // though the value defined *inside* the loop dominated all its uses, each
241 // exit by itself may not dominate all the uses).
242 //
243 // The simplest way to check for this condition is by checking to see if the
244 // idom is in the loop. If so, we *know* that none of the exit blocks
245 // dominate this block. Note that we *know* that the block defining the
246 // original instruction is in the idom chain, because if it weren't, then the
247 // original value didn't dominate this use.
248 if (!inLoop(IDom->getBlock())) {
249 // Idom is not in the loop, we must still be "below" the exit block and must
250 // be fully dominated by the value live in the idom.
251 return V = GetValueForBlock(IDom, OrigInst, Phis);
252 }
Owen Andersone4e1ecd2006-07-09 08:14:06 +0000253
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000254 BasicBlock *BBN = BB->getBlock();
Owen Anderson408a4062006-05-31 20:55:06 +0000255
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000256 // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so
257 // now, then get values to fill in the incoming values for the PHI.
258 V = new PHINode(OrigInst->getType(), OrigInst->getName()+".lcssa",
259 BBN->begin());
260 V->reserveOperandSpace(std::distance(pred_begin(BBN), pred_end(BBN)));
261
262 // Fill in the incoming values for the block.
263 for (pred_iterator PI = pred_begin(BBN), E = pred_end(BBN); PI != E; ++PI)
264 V->addIncoming(GetValueForBlock(DT->getNode(*PI), OrigInst, Phis), *PI);
265 return V;
Owen Anderson408a4062006-05-31 20:55:06 +0000266}
Chris Lattnerd41ae8b2006-08-02 00:06:09 +0000267