blob: 3f4bad5c5135893c67cdac4cf9bc6305344b90c8 [file] [log] [blame]
Owen Andersonf3dd3e22006-05-26 21:11:53 +00001//===-- LCSSA.cpp - Convert loops into loop-closed SSA form ---------------===//
Owen Anderson8eca8912006-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 (...)
Dan Gohmanb5650eb2007-05-11 21:10:54 +000015// if (c) if (c)
Owen Anderson8eca8912006-05-26 13:58:26 +000016// 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 Lattner45f966d2006-12-19 22:17:40 +000030#define DEBUG_TYPE "lcssa"
Owen Andersonf3dd3e22006-05-26 21:11:53 +000031#include "llvm/Transforms/Scalar.h"
Owen Andersonaecaabb2006-07-09 08:14:06 +000032#include "llvm/Constants.h"
Owen Anderson8eca8912006-05-26 13:58:26 +000033#include "llvm/Pass.h"
34#include "llvm/Function.h"
35#include "llvm/Instructions.h"
Owen Andersoneb338152006-06-04 00:02:23 +000036#include "llvm/ADT/SetVector.h"
Owen Andersonb4e16992006-05-27 00:31:37 +000037#include "llvm/ADT/Statistic.h"
Owen Andersonf3dd3e22006-05-26 21:11:53 +000038#include "llvm/Analysis/Dominators.h"
Devang Patel4cd14132007-07-13 23:57:11 +000039#include "llvm/Analysis/LoopPass.h"
40#include "llvm/Analysis/ScalarEvolution.h"
Owen Anderson8eca8912006-05-26 13:58:26 +000041#include "llvm/Support/CFG.h"
Reid Spencer557ab152007-02-05 23:32:05 +000042#include "llvm/Support/Compiler.h"
Owen Andersonf3dd3e22006-05-26 21:11:53 +000043#include <algorithm>
Reid Spencera1d35922007-02-05 05:23:32 +000044#include <map>
Owen Anderson8eca8912006-05-26 13:58:26 +000045using namespace llvm;
46
Chris Lattner45f966d2006-12-19 22:17:40 +000047STATISTIC(NumLCSSA, "Number of live out of a loop variables");
48
Owen Anderson8eca8912006-05-26 13:58:26 +000049namespace {
Devang Patel4cd14132007-07-13 23:57:11 +000050 struct VISIBILITY_HIDDEN LCSSA : public LoopPass {
Nick Lewyckye7da2d62007-05-06 13:37:16 +000051 static char ID; // Pass identification, replacement for typeid
Devang Patel4cd14132007-07-13 23:57:11 +000052 LCSSA() : LoopPass((intptr_t)&ID) {}
Devang Patel09f162c2007-05-01 21:15:47 +000053
Chris Lattner5a2bc782006-08-02 00:06:09 +000054 // Cached analysis information for the current function.
55 LoopInfo *LI;
Evan Chengdb9b65d62007-04-18 22:39:00 +000056 DominatorTree *DT;
Owen Anderson9e81c1b2006-06-06 04:28:30 +000057 std::vector<BasicBlock*> LoopBlocks;
Owen Anderson8eca8912006-05-26 13:58:26 +000058
Devang Patel4cd14132007-07-13 23:57:11 +000059 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
60
Chris Lattner5a2bc782006-08-02 00:06:09 +000061 void ProcessInstruction(Instruction* Instr,
Owen Andersondad8c572006-05-31 20:55:06 +000062 const std::vector<BasicBlock*>& exitBlocks);
Owen Anderson8eca8912006-05-26 13:58:26 +000063
64 /// This transformation requires natural loop information & requires that
Owen Andersonb4e16992006-05-27 00:31:37 +000065 /// loop preheaders be inserted into the CFG. It maintains both of these,
66 /// as well as the CFG. It also requires dominator information.
Owen Anderson8eca8912006-05-26 13:58:26 +000067 ///
68 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Owen Andersonf3dd3e22006-05-26 21:11:53 +000069 AU.setPreservesCFG();
Owen Anderson8eca8912006-05-26 13:58:26 +000070 AU.addRequiredID(LoopSimplifyID);
71 AU.addPreservedID(LoopSimplifyID);
72 AU.addRequired<LoopInfo>();
Devang Patel4cd14132007-07-13 23:57:11 +000073 AU.addPreserved<LoopInfo>();
Evan Chengdb9b65d62007-04-18 22:39:00 +000074 AU.addRequired<DominatorTree>();
Devang Patel4cd14132007-07-13 23:57:11 +000075 AU.addPreserved<ScalarEvolution>();
Owen Anderson8eca8912006-05-26 13:58:26 +000076 }
77 private:
Chris Lattnera6b56602007-04-14 22:10:17 +000078 void getLoopValuesUsedOutsideLoop(Loop *L,
79 SetVector<Instruction*> &AffectedValues);
Chris Lattner5a2bc782006-08-02 00:06:09 +000080
Devang Patelbdd1aae2007-06-04 00:32:22 +000081 Value *GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst,
82 std::map<DomTreeNode*, Value*> &Phis);
Chris Lattner5a2bc782006-08-02 00:06:09 +000083
Owen Anderson9e81c1b2006-06-06 04:28:30 +000084 /// inLoop - returns true if the given block is within the current loop
85 const bool inLoop(BasicBlock* B) {
Owen Andersonac601b42006-06-06 04:36:36 +000086 return std::binary_search(LoopBlocks.begin(), LoopBlocks.end(), B);
87 }
Owen Anderson8eca8912006-05-26 13:58:26 +000088 };
89
Devang Patel8c78a0b2007-05-03 01:11:54 +000090 char LCSSA::ID = 0;
Chris Lattnerc2d3d312006-08-27 22:42:52 +000091 RegisterPass<LCSSA> X("lcssa", "Loop-Closed SSA Form Pass");
Owen Anderson8eca8912006-05-26 13:58:26 +000092}
93
Devang Patel4cd14132007-07-13 23:57:11 +000094LoopPass *llvm::createLCSSAPass() { return new LCSSA(); }
Owen Anderson5d029262006-06-08 20:02:53 +000095const PassInfo *llvm::LCSSAID = X.getPassInfo();
Owen Anderson8eca8912006-05-26 13:58:26 +000096
Owen Anderson5d029262006-06-08 20:02:53 +000097/// runOnFunction - Process all loops in the function, inner-most out.
Devang Patel4cd14132007-07-13 23:57:11 +000098bool LCSSA::runOnLoop(Loop *L, LPPassManager &LPM) {
Owen Anderson3f8ff042006-06-13 19:37:18 +000099
Devang Patel4cd14132007-07-13 23:57:11 +0000100 LI = &LPM.getAnalysis<LoopInfo>();
Evan Chengdb9b65d62007-04-18 22:39:00 +0000101 DT = &getAnalysis<DominatorTree>();
Owen Anderson8eca8912006-05-26 13:58:26 +0000102
Owen Andersonf3dd3e22006-05-26 21:11:53 +0000103 // Speed up queries by creating a sorted list of blocks
Owen Anderson9e81c1b2006-06-06 04:28:30 +0000104 LoopBlocks.clear();
105 LoopBlocks.insert(LoopBlocks.end(), L->block_begin(), L->block_end());
106 std::sort(LoopBlocks.begin(), LoopBlocks.end());
Owen Andersonf3dd3e22006-05-26 21:11:53 +0000107
Chris Lattnera6b56602007-04-14 22:10:17 +0000108 SetVector<Instruction*> AffectedValues;
109 getLoopValuesUsedOutsideLoop(L, AffectedValues);
Owen Anderson8eca8912006-05-26 13:58:26 +0000110
Owen Andersondad8c572006-05-31 20:55:06 +0000111 // If no values are affected, we can save a lot of work, since we know that
112 // nothing will be changed.
113 if (AffectedValues.empty())
114 return false;
115
Owen Anderson8eca8912006-05-26 13:58:26 +0000116 std::vector<BasicBlock*> exitBlocks;
117 L->getExitBlocks(exitBlocks);
118
Owen Anderson1310e422006-05-27 18:47:11 +0000119
120 // Iterate over all affected values for this loop and insert Phi nodes
121 // for them in the appropriate exit blocks
Owen Andersondad8c572006-05-31 20:55:06 +0000122
Owen Andersoneb338152006-06-04 00:02:23 +0000123 for (SetVector<Instruction*>::iterator I = AffectedValues.begin(),
Chris Lattner5a2bc782006-08-02 00:06:09 +0000124 E = AffectedValues.end(); I != E; ++I)
125 ProcessInstruction(*I, exitBlocks);
Owen Anderson8a8f2782006-05-29 01:00:00 +0000126
Owen Andersonb538f142006-06-11 19:22:28 +0000127 assert(L->isLCSSAForm());
128
Owen Anderson9e81c1b2006-06-06 04:28:30 +0000129 return true;
Owen Anderson8eca8912006-05-26 13:58:26 +0000130}
131
Owen Anderson5d029262006-06-08 20:02:53 +0000132/// processInstruction - Given a live-out instruction, insert LCSSA Phi nodes,
133/// eliminate all out-of-loop uses.
Chris Lattner5a2bc782006-08-02 00:06:09 +0000134void LCSSA::ProcessInstruction(Instruction *Instr,
135 const std::vector<BasicBlock*>& exitBlocks) {
Owen Andersondad8c572006-05-31 20:55:06 +0000136 ++NumLCSSA; // We are applying the transformation
Chris Lattner5a2bc782006-08-02 00:06:09 +0000137
138 // Keep track of the blocks that have the value available already.
Devang Patelbdd1aae2007-06-04 00:32:22 +0000139 std::map<DomTreeNode*, Value*> Phis;
Chris Lattner5a2bc782006-08-02 00:06:09 +0000140
Devang Patelbdd1aae2007-06-04 00:32:22 +0000141 DomTreeNode *InstrNode = DT->getNode(Instr->getParent());
Chris Lattner5a2bc782006-08-02 00:06:09 +0000142
143 // Insert the LCSSA phi's into the exit blocks (dominated by the value), and
144 // add them to the Phi's map.
Owen Andersondad8c572006-05-31 20:55:06 +0000145 for (std::vector<BasicBlock*>::const_iterator BBI = exitBlocks.begin(),
Owen Anderson0ac33692006-06-12 07:10:16 +0000146 BBE = exitBlocks.end(); BBI != BBE; ++BBI) {
Chris Lattner5a2bc782006-08-02 00:06:09 +0000147 BasicBlock *BB = *BBI;
Devang Patelbdd1aae2007-06-04 00:32:22 +0000148 DomTreeNode *ExitBBNode = DT->getNode(BB);
Evan Chengdb9b65d62007-04-18 22:39:00 +0000149 Value *&Phi = Phis[ExitBBNode];
Devang Patelaf41e4a2007-06-07 17:47:21 +0000150 if (!Phi && DT->dominates(InstrNode, ExitBBNode)) {
Chris Lattner984d6e12006-10-31 18:56:48 +0000151 PHINode *PN = new PHINode(Instr->getType(), Instr->getName()+".lcssa",
152 BB->begin());
153 PN->reserveOperandSpace(std::distance(pred_begin(BB), pred_end(BB)));
154
155 // Remember that this phi makes the value alive in this block.
156 Phi = PN;
Chris Lattner5a2bc782006-08-02 00:06:09 +0000157
158 // Add inputs from inside the loop for this PHI.
159 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI)
Chris Lattner984d6e12006-10-31 18:56:48 +0000160 PN->addIncoming(Instr, *PI);
Owen Andersoncd76fa02006-06-01 06:05:47 +0000161 }
Owen Anderson0ac33692006-06-12 07:10:16 +0000162 }
Owen Andersondad8c572006-05-31 20:55:06 +0000163
Owen Andersond00eacc2006-06-03 23:22:50 +0000164
Chris Lattner5a2bc782006-08-02 00:06:09 +0000165 // Record all uses of Instr outside the loop. We need to rewrite these. The
166 // LCSSA phis won't be included because they use the value in the loop.
167 for (Value::use_iterator UI = Instr->use_begin(), E = Instr->use_end();
168 UI != E;) {
169 BasicBlock *UserBB = cast<Instruction>(*UI)->getParent();
170 if (PHINode *P = dyn_cast<PHINode>(*UI)) {
Owen Andersone714a5c2006-06-13 20:50:09 +0000171 unsigned OperandNo = UI.getOperandNo();
Chris Lattner5a2bc782006-08-02 00:06:09 +0000172 UserBB = P->getIncomingBlock(OperandNo/2);
Owen Andersone714a5c2006-06-13 20:50:09 +0000173 }
174
Chris Lattner5a2bc782006-08-02 00:06:09 +0000175 // If the user is in the loop, don't rewrite it!
Chris Lattner38b6e832006-08-02 00:16:47 +0000176 if (UserBB == Instr->getParent() || inLoop(UserBB)) {
Chris Lattner5a2bc782006-08-02 00:06:09 +0000177 ++UI;
178 continue;
Owen Andersoncd76fa02006-06-01 06:05:47 +0000179 }
Chris Lattner5a2bc782006-08-02 00:06:09 +0000180
181 // Otherwise, patch up uses of the value with the appropriate LCSSA Phi,
182 // inserting PHI nodes into join points where needed.
Evan Chengdb9b65d62007-04-18 22:39:00 +0000183 Value *Val = GetValueForBlock(DT->getNode(UserBB), Instr, Phis);
Chris Lattner5a2bc782006-08-02 00:06:09 +0000184
185 // Preincrement the iterator to avoid invalidating it when we change the
186 // value.
187 Use &U = UI.getUse();
188 ++UI;
189 U.set(Val);
Owen Andersondad8c572006-05-31 20:55:06 +0000190 }
191}
192
Owen Andersonf3dd3e22006-05-26 21:11:53 +0000193/// getLoopValuesUsedOutsideLoop - Return any values defined in the loop that
194/// are used by instructions outside of it.
Chris Lattnera6b56602007-04-14 22:10:17 +0000195void LCSSA::getLoopValuesUsedOutsideLoop(Loop *L,
196 SetVector<Instruction*> &AffectedValues) {
Owen Andersondad8c572006-05-31 20:55:06 +0000197 // FIXME: For large loops, we may be able to avoid a lot of use-scanning
198 // by using dominance information. In particular, if a block does not
199 // dominate any of the loop exits, then none of the values defined in the
200 // block could be used outside the loop.
Owen Anderson8eca8912006-05-26 13:58:26 +0000201 for (Loop::block_iterator BB = L->block_begin(), E = L->block_end();
202 BB != E; ++BB) {
203 for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); I != E; ++I)
204 for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E;
205 ++UI) {
206 BasicBlock *UserBB = cast<Instruction>(*UI)->getParent();
Owen Anderson3f8ff042006-06-13 19:37:18 +0000207 if (PHINode* p = dyn_cast<PHINode>(*UI)) {
208 unsigned OperandNo = UI.getOperandNo();
209 UserBB = p->getIncomingBlock(OperandNo/2);
210 }
211
Chris Lattner38b6e832006-08-02 00:16:47 +0000212 if (*BB != UserBB && !inLoop(UserBB)) {
Owen Anderson8eca8912006-05-26 13:58:26 +0000213 AffectedValues.insert(I);
Owen Andersondad8c572006-05-31 20:55:06 +0000214 break;
215 }
Owen Anderson8eca8912006-05-26 13:58:26 +0000216 }
217 }
Owen Andersonf3dd3e22006-05-26 21:11:53 +0000218}
Owen Andersondad8c572006-05-31 20:55:06 +0000219
Chris Lattner5a2bc782006-08-02 00:06:09 +0000220/// GetValueForBlock - Get the value to use within the specified basic block.
221/// available values are in Phis.
Devang Patelbdd1aae2007-06-04 00:32:22 +0000222Value *LCSSA::GetValueForBlock(DomTreeNode *BB, Instruction *OrigInst,
223 std::map<DomTreeNode*, Value*> &Phis) {
Chris Lattner984d6e12006-10-31 18:56:48 +0000224 // If there is no dominator info for this BB, it is unreachable.
225 if (BB == 0)
226 return UndefValue::get(OrigInst->getType());
227
Chris Lattner5a2bc782006-08-02 00:06:09 +0000228 // If we have already computed this value, return the previously computed val.
Chris Lattner984d6e12006-10-31 18:56:48 +0000229 Value *&V = Phis[BB];
Chris Lattner5a2bc782006-08-02 00:06:09 +0000230 if (V) return V;
231
Devang Patelbdd1aae2007-06-04 00:32:22 +0000232 DomTreeNode *IDom = BB->getIDom();
Chris Lattner5a2bc782006-08-02 00:06:09 +0000233
234 // Otherwise, there are two cases: we either have to insert a PHI node or we
235 // don't. We need to insert a PHI node if this block is not dominated by one
236 // of the exit nodes from the loop (the loop could have multiple exits, and
237 // though the value defined *inside* the loop dominated all its uses, each
238 // exit by itself may not dominate all the uses).
239 //
240 // The simplest way to check for this condition is by checking to see if the
241 // idom is in the loop. If so, we *know* that none of the exit blocks
242 // dominate this block. Note that we *know* that the block defining the
243 // original instruction is in the idom chain, because if it weren't, then the
244 // original value didn't dominate this use.
Evan Chengdb9b65d62007-04-18 22:39:00 +0000245 if (!inLoop(IDom->getBlock())) {
Chris Lattner5a2bc782006-08-02 00:06:09 +0000246 // Idom is not in the loop, we must still be "below" the exit block and must
247 // be fully dominated by the value live in the idom.
248 return V = GetValueForBlock(IDom, OrigInst, Phis);
249 }
Owen Andersonaecaabb2006-07-09 08:14:06 +0000250
Evan Chengdb9b65d62007-04-18 22:39:00 +0000251 BasicBlock *BBN = BB->getBlock();
252
Chris Lattner5a2bc782006-08-02 00:06:09 +0000253 // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so
254 // now, then get values to fill in the incoming values for the PHI.
Chris Lattner984d6e12006-10-31 18:56:48 +0000255 PHINode *PN = new PHINode(OrigInst->getType(), OrigInst->getName()+".lcssa",
Evan Chengdb9b65d62007-04-18 22:39:00 +0000256 BBN->begin());
257 PN->reserveOperandSpace(std::distance(pred_begin(BBN), pred_end(BBN)));
Chris Lattner984d6e12006-10-31 18:56:48 +0000258 V = PN;
259
Chris Lattner5a2bc782006-08-02 00:06:09 +0000260 // Fill in the incoming values for the block.
Evan Chengdb9b65d62007-04-18 22:39:00 +0000261 for (pred_iterator PI = pred_begin(BBN), E = pred_end(BBN); PI != E; ++PI)
262 PN->addIncoming(GetValueForBlock(DT->getNode(*PI), OrigInst, Phis), *PI);
Chris Lattner984d6e12006-10-31 18:56:48 +0000263 return PN;
Owen Andersondad8c572006-05-31 20:55:06 +0000264}
Chris Lattner5a2bc782006-08-02 00:06:09 +0000265