blob: 29e3ba1a7196c6db390ab4b76f0bc2c9c726e7c6 [file] [log] [blame]
Chris Lattner00950542001-06-06 20:29:01 +00001//===- DCE.cpp - Code to perform dead code elimination --------------------===//
2//
3// This file implements dead code elimination and basic block merging.
4//
5// Specifically, this:
6// * removes definitions with no uses (including unused constants)
7// * removes basic blocks with no predecessors
8// * merges a basic block into its predecessor if there is only one and the
9// predecessor only has one successor.
Chris Lattnerf155e132001-06-07 16:59:26 +000010// * Eliminates PHI nodes for basic blocks with a single predecessor
11// * Eliminates a basic block that only contains an unconditional branch
Chris Lattner00950542001-06-06 20:29:01 +000012//
13// TODO: This should REALLY be recursive instead of iterative. Right now, we
14// scan linearly through values, removing unused ones as we go. The problem is
15// that this may cause other earlier values to become unused. To make sure that
16// we get them all, we iterate until things stop changing. Instead, when
17// removing a value, recheck all of its operands to see if they are now unused.
Chris Lattnerd36c91c2001-06-13 19:55:22 +000018// Piece of cake, and more efficient as well.
19//
20// Note, this is not trivial, because we have to worry about invalidating
21// iterators. :(
Chris Lattner00950542001-06-06 20:29:01 +000022//
23//===----------------------------------------------------------------------===//
24
25#include "llvm/Module.h"
26#include "llvm/Method.h"
27#include "llvm/BasicBlock.h"
28#include "llvm/iTerminators.h"
Chris Lattnerf155e132001-06-07 16:59:26 +000029#include "llvm/iOther.h"
Chris Lattner00950542001-06-06 20:29:01 +000030#include "llvm/Opt/AllOpts.h"
Chris Lattnerf155e132001-06-07 16:59:26 +000031#include "llvm/Assembly/Writer.h"
Chris Lattnerdac6dda2001-06-07 21:18:45 +000032#include "llvm/CFG.h"
Chris Lattner00950542001-06-06 20:29:01 +000033
Chris Lattnerd36c91c2001-06-13 19:55:22 +000034using namespace cfg;
35
Chris Lattner00950542001-06-06 20:29:01 +000036struct ConstPoolDCE {
37 enum { EndOffs = 0 };
38 static bool isDCEable(const Value *) { return true; }
39};
40
41struct BasicBlockDCE {
42 enum { EndOffs = 1 };
43 static bool isDCEable(const Instruction *I) {
44 return !I->hasSideEffects();
45 }
46};
47
Chris Lattnerf155e132001-06-07 16:59:26 +000048
Chris Lattner00950542001-06-06 20:29:01 +000049template<class ValueSubclass, class ItemParentType, class DCEController>
50static bool RemoveUnusedDefs(ValueHolder<ValueSubclass, ItemParentType> &Vals,
51 DCEController DCEControl) {
52 bool Changed = false;
53 typedef ValueHolder<ValueSubclass, ItemParentType> Container;
54
55 int Offset = DCEController::EndOffs;
56 for (Container::iterator DI = Vals.begin(); DI != Vals.end()-Offset; ) {
57 // Look for un"used" definitions...
58 if ((*DI)->use_empty() && DCEController::isDCEable(*DI)) {
59 // Bye bye
Chris Lattnerf155e132001-06-07 16:59:26 +000060 //cerr << "Removing: " << *DI;
Chris Lattner00950542001-06-06 20:29:01 +000061 delete Vals.remove(DI);
62 Changed = true;
63 } else {
64 DI++;
65 }
66 }
67 return Changed;
68}
69
Chris Lattnerf155e132001-06-07 16:59:26 +000070// RemoveSingularPHIs - This removes PHI nodes from basic blocks that have only
71// a single predecessor. This means that the PHI node must only have a single
72// RHS value and can be eliminated.
73//
74// This routine is very simple because we know that PHI nodes must be the first
75// things in a basic block, if they are present.
76//
77static bool RemoveSingularPHIs(BasicBlock *BB) {
Chris Lattnerdac6dda2001-06-07 21:18:45 +000078 pred_iterator PI(pred_begin(BB));
79 if (PI == pred_end(BB) || ++PI != pred_end(BB))
Chris Lattnerf155e132001-06-07 16:59:26 +000080 return false; // More than one predecessor...
81
82 Instruction *I = BB->getInstList().front();
83 if (I->getInstType() != Instruction::PHINode) return false; // No PHI nodes
84
Chris Lattneree976f32001-06-11 15:04:40 +000085 //cerr << "Killing PHIs from " << BB;
86 //cerr << "Pred #0 = " << *pred_begin(BB);
Chris Lattnerf155e132001-06-07 16:59:26 +000087
Chris Lattneree976f32001-06-11 15:04:40 +000088 //cerr << "Method == " << BB->getParent();
Chris Lattnerf155e132001-06-07 16:59:26 +000089
90 do {
91 PHINode *PN = (PHINode*)I;
Chris Lattneree976f32001-06-11 15:04:40 +000092 assert(PN->getOperand(2) == 0 && "PHI node should only have one value!");
Chris Lattnerf155e132001-06-07 16:59:26 +000093 Value *V = PN->getOperand(0);
94
95 PN->replaceAllUsesWith(V); // Replace PHI node with its single value.
96 delete BB->getInstList().remove(BB->getInstList().begin());
97
98 I = BB->getInstList().front();
99 } while (I->getInstType() == Instruction::PHINode);
100
101 return true; // Yes, we nuked at least one phi node
102}
Chris Lattner00950542001-06-06 20:29:01 +0000103
104bool DoRemoveUnusedConstants(SymTabValue *S) {
105 bool Changed = false;
106 ConstantPool &CP = S->getConstantPool();
107 for (ConstantPool::plane_iterator PI = CP.begin(); PI != CP.end(); ++PI)
108 Changed |= RemoveUnusedDefs(**PI, ConstPoolDCE());
109 return Changed;
110}
111
Chris Lattner00950542001-06-06 20:29:01 +0000112static void ReplaceUsesWithConstant(Instruction *I) {
113 // Get the method level constant pool
114 ConstantPool &CP = I->getParent()->getParent()->getConstantPool();
115
116 ConstPoolVal *CPV = 0;
117 ConstantPool::PlaneType *P;
118 if (!CP.getPlane(I->getType(), P)) { // Does plane exist?
119 // Yes, is it empty?
120 if (!P->empty()) CPV = P->front();
121 }
122
123 if (CPV == 0) { // We don't have an existing constant to reuse. Just add one.
124 CPV = ConstPoolVal::getNullConstant(I->getType()); // Create a new constant
125
126 // Add the new value to the constant pool...
127 CP.insert(CPV);
128 }
129
130 // Make all users of this instruction reference the constant instead
131 I->replaceAllUsesWith(CPV);
132}
133
Chris Lattnerf155e132001-06-07 16:59:26 +0000134// RemovePredecessorFromBlock - This function is called when we are about
135// to remove a predecessor from a basic block. This function takes care of
136// removing the predecessor from the PHI nodes in BB so that after the pred
137// is removed, the number of PHI slots per bb is equal to the number of
138// predecessors.
139//
140static void RemovePredecessorFromBlock(BasicBlock *BB, BasicBlock *Pred) {
Chris Lattnerdac6dda2001-06-07 21:18:45 +0000141 pred_iterator PI(pred_begin(BB)), EI(pred_end(BB));
Chris Lattneree976f32001-06-11 15:04:40 +0000142 unsigned max_idx;
Chris Lattnerf155e132001-06-07 16:59:26 +0000143
Chris Lattneree976f32001-06-11 15:04:40 +0000144 //cerr << "RPFB: " << Pred << "From Block: " << BB;
Chris Lattnerf155e132001-06-07 16:59:26 +0000145
Chris Lattnerf155e132001-06-07 16:59:26 +0000146 // Loop over the rest of the predecssors until we run out, or until we find
147 // out that there are more than 2 predecessors.
Chris Lattneree976f32001-06-11 15:04:40 +0000148 for (max_idx = 0; PI != EI && max_idx < 3; ++PI, ++max_idx) /*empty*/;
Chris Lattnerf155e132001-06-07 16:59:26 +0000149
150 // If there are exactly two predecessors, then we want to nuke the PHI nodes
151 // altogether.
Chris Lattneree976f32001-06-11 15:04:40 +0000152 bool NukePHIs = max_idx == 2;
153 assert(max_idx != 0 && "PHI Node in block with 0 predecessors!?!?!");
Chris Lattnerf155e132001-06-07 16:59:26 +0000154
155 // Okay, now we know that we need to remove predecessor #pred_idx from all
156 // PHI nodes. Iterate over each PHI node fixing them up
157 BasicBlock::InstListType::iterator II(BB->getInstList().begin());
158 for (; (*II)->getInstType() == Instruction::PHINode; ++II) {
159 PHINode *PN = (PHINode*)*II;
Chris Lattneree976f32001-06-11 15:04:40 +0000160 PN->removeIncomingValue(BB);
Chris Lattnerf155e132001-06-07 16:59:26 +0000161
162 if (NukePHIs) { // Destroy the PHI altogether??
163 assert(PN->getOperand(1) == 0 && "PHI node should only have one value!");
164 Value *V = PN->getOperand(0);
165
166 PN->replaceAllUsesWith(V); // Replace PHI node with its single value.
167 delete BB->getInstList().remove(II);
168 }
169 }
170}
171
172// PropogatePredecessors - This gets "Succ" ready to have the predecessors from
173// "BB". This is a little tricky because "Succ" has PHI nodes, which need to
174// have extra slots added to them to hold the merge edges from BB's
175// predecessors.
176//
177// Assumption: BB is the single predecessor of Succ.
178//
179static void PropogatePredecessorsForPHIs(BasicBlock *BB, BasicBlock *Succ) {
Chris Lattnerdac6dda2001-06-07 21:18:45 +0000180 assert(BB && Succ && *pred_begin(Succ) == BB && "BB is only pred of Succ" &&
181 ++pred_begin(Succ) == pred_end(Succ));
Chris Lattnerf155e132001-06-07 16:59:26 +0000182
183 // If there is more than one predecessor, and there are PHI nodes in
184 // the successor, then we need to add incoming edges for the PHI nodes
Chris Lattnerdac6dda2001-06-07 21:18:45 +0000185 pred_iterator PI(pred_begin(BB));
186 for (; PI != pred_end(BB); ++PI) {
Chris Lattnerf155e132001-06-07 16:59:26 +0000187 // TODO:
188 }
189}
190
Chris Lattner00950542001-06-06 20:29:01 +0000191static bool DoDCEPass(Method *M) {
Chris Lattner00950542001-06-06 20:29:01 +0000192 Method::BasicBlocksType &BBs = M->getBasicBlocks();
Chris Lattnerf155e132001-06-07 16:59:26 +0000193 Method::BasicBlocksType::iterator BBIt, BBEnd = BBs.end();
194 if (BBs.begin() == BBEnd) return false; // Nothing to do
Chris Lattner00950542001-06-06 20:29:01 +0000195 bool Changed = false;
196
197 // Loop through now and remove instructions that have no uses...
Chris Lattnerf155e132001-06-07 16:59:26 +0000198 for (BBIt = BBs.begin(); BBIt != BBEnd; BBIt++) {
Chris Lattner00950542001-06-06 20:29:01 +0000199 Changed |= RemoveUnusedDefs((*BBIt)->getInstList(), BasicBlockDCE());
Chris Lattnerf155e132001-06-07 16:59:26 +0000200 Changed |= RemoveSingularPHIs(*BBIt);
201 }
Chris Lattner00950542001-06-06 20:29:01 +0000202
Chris Lattnerf155e132001-06-07 16:59:26 +0000203 // Loop over all of the basic blocks (except the first one) and remove them
204 // if they are unneeded...
Chris Lattner00950542001-06-06 20:29:01 +0000205 //
Chris Lattnerf155e132001-06-07 16:59:26 +0000206 for (BBIt = BBs.begin(), ++BBIt; BBIt != BBs.end(); ++BBIt) {
Chris Lattner00950542001-06-06 20:29:01 +0000207 BasicBlock *BB = *BBIt;
Chris Lattnerf155e132001-06-07 16:59:26 +0000208 assert(BB->getTerminator() && "Degenerate basic block encountered!");
Chris Lattner00950542001-06-06 20:29:01 +0000209
Chris Lattnerf155e132001-06-07 16:59:26 +0000210#if 0
211 // Remove basic blocks that have no predecessors... which are unreachable.
Chris Lattnerdac6dda2001-06-07 21:18:45 +0000212 if (pred_begin(BB) == pred_end(BB) &&
Chris Lattnerf155e132001-06-07 16:59:26 +0000213 !BB->hasConstantPoolReferences() && 0) {
214 cerr << "Removing BB: \n" << BB;
215
216 // Loop through all of our successors and make sure they know that one
217 // of their predecessors is going away.
Chris Lattnerdac6dda2001-06-07 21:18:45 +0000218 for (succ_iterator SI = succ_begin(BB), EI = succ_end(BB); SI != EI; ++SI)
Chris Lattnerf155e132001-06-07 16:59:26 +0000219 RemovePredecessorFromBlock(*SI, BB);
Chris Lattner00950542001-06-06 20:29:01 +0000220
221 while (!BB->getInstList().empty()) {
222 Instruction *I = BB->getInstList().front();
223 // If this instruction is used, replace uses with an arbitrary
224 // constant value. Because control flow can't get here, we don't care
225 // what we replace the value with.
226 if (!I->use_empty()) ReplaceUsesWithConstant(I);
227
228 // Remove the instruction from the basic block
Chris Lattnerf155e132001-06-07 16:59:26 +0000229 delete BB->getInstList().remove(BB->getInstList().begin());
Chris Lattner00950542001-06-06 20:29:01 +0000230 }
Chris Lattner00950542001-06-06 20:29:01 +0000231 delete BBs.remove(BBIt);
Chris Lattnerf155e132001-06-07 16:59:26 +0000232 --BBIt; // remove puts use on the next block, we want the previous one
Chris Lattner00950542001-06-06 20:29:01 +0000233 Changed = true;
Chris Lattnerf155e132001-06-07 16:59:26 +0000234 continue;
235 }
236
237 // Check to see if this block has no instructions and only a single
238 // successor. If so, replace block references with successor.
Chris Lattnerdac6dda2001-06-07 21:18:45 +0000239 succ_iterator SI(succ_begin(BB));
240 if (SI != succ_end(BB) && ++SI == succ_end(BB)) { // One succ?
Chris Lattnerf155e132001-06-07 16:59:26 +0000241 Instruction *I = BB->getInstList().front();
242 if (I->isTerminator()) { // Terminator is the only instruction!
243
244 if (Succ->getInstList().front()->getInstType() == Instruction::PHINode){
245 // Add entries to the PHI nodes so that the PHI nodes have the right
246 // number of entries...
247 PropogatePredecessorsForPHIs(BB, Succ);
248 }
249
Chris Lattnerdac6dda2001-06-07 21:18:45 +0000250 BasicBlock *Succ = *succ_begin(BB); // There is exactly one successor
Chris Lattnerf155e132001-06-07 16:59:26 +0000251 BB->replaceAllUsesWith(Succ);
252 cerr << "Killing Trivial BB: \n" << BB;
253
254 BB = BBs.remove(BBIt);
255 --BBIt; // remove puts use on the next block, we want the previous one
256
257 if (BB->hasName() && !Succ->hasName()) // Transfer name if we can
258 Succ->setName(BB->getName());
259 delete BB; // Delete basic block
260
261 cerr << "Method after removal: \n" << M;
262 Changed = true;
263 continue;
264 }
Chris Lattner00950542001-06-06 20:29:01 +0000265 }
Chris Lattnerf155e132001-06-07 16:59:26 +0000266#endif
Chris Lattner00950542001-06-06 20:29:01 +0000267
Chris Lattnerf155e132001-06-07 16:59:26 +0000268 // Merge basic blocks into their predecessor if there is only one pred,
269 // and if there is only one successor of the predecessor.
Chris Lattnerdac6dda2001-06-07 21:18:45 +0000270 pred_iterator PI(pred_begin(BB));
271 if (PI != pred_end(BB) && *PI != BB && // Not empty? Not same BB?
272 ++PI == pred_end(BB) && !BB->hasConstantPoolReferences()) {
273 BasicBlock *Pred = *pred_begin(BB);
Chris Lattner00950542001-06-06 20:29:01 +0000274 TerminatorInst *Term = Pred->getTerminator();
Chris Lattnerf155e132001-06-07 16:59:26 +0000275 assert(Term != 0 && "malformed basic block without terminator!");
Chris Lattner00950542001-06-06 20:29:01 +0000276
Chris Lattnerf155e132001-06-07 16:59:26 +0000277 // Does the predecessor block only have a single successor?
Chris Lattnerdac6dda2001-06-07 21:18:45 +0000278 succ_iterator SI(succ_begin(Pred));
279 if (++SI == succ_end(Pred)) {
Chris Lattnerf155e132001-06-07 16:59:26 +0000280 //cerr << "Merging: " << BB << "into: " << Pred;
Chris Lattner00950542001-06-06 20:29:01 +0000281
Chris Lattnerf155e132001-06-07 16:59:26 +0000282 // Delete the unconditianal branch from the predecessor...
283 BasicBlock::InstListType::iterator DI = Pred->getInstList().end();
284 assert(Pred->getTerminator() &&
285 "Degenerate basic block encountered!"); // Empty bb???
Chris Lattneree976f32001-06-11 15:04:40 +0000286 delete Pred->getInstList().remove(--DI); // Destroy uncond branch
Chris Lattnerf155e132001-06-07 16:59:26 +0000287
288 // Move all definitions in the succecessor to the predecessor...
289 while (!BB->getInstList().empty()) {
290 DI = BB->getInstList().begin();
291 Instruction *Def = BB->getInstList().remove(DI); // Remove from front
292 Pred->getInstList().push_back(Def); // Add to end...
293 }
Chris Lattneree976f32001-06-11 15:04:40 +0000294
Chris Lattnerf155e132001-06-07 16:59:26 +0000295 // Remove basic block from the method... and advance iterator to the
296 // next valid block...
297 BB = BBs.remove(BBIt);
298 --BBIt; // remove puts us on the NEXT bb. We want the prev BB
299 Changed = true;
Chris Lattneree976f32001-06-11 15:04:40 +0000300
301 // Make all PHI nodes that refered to BB now refer to Pred as their
302 // source...
303 BB->replaceAllUsesWith(Pred);
Chris Lattnerf155e132001-06-07 16:59:26 +0000304
305 // Inherit predecessors name if it exists...
306 if (BB->hasName() && !Pred->hasName()) Pred->setName(BB->getName());
307
308 // You ARE the weakest link... goodbye
309 delete BB;
Chris Lattnerd36c91c2001-06-13 19:55:22 +0000310
311 WriteToVCG(M, "MergedInto");
Chris Lattner00950542001-06-06 20:29:01 +0000312 }
Chris Lattner00950542001-06-06 20:29:01 +0000313 }
314 }
315
316 // Remove unused constants
317 Changed |= DoRemoveUnusedConstants(M);
318 return Changed;
319}
320
321
322// It is possible that we may require multiple passes over the code to fully
323// eliminate dead code. Iterate until we are done.
324//
325bool DoDeadCodeElimination(Method *M) {
326 bool Changed = false;
327 while (DoDCEPass(M)) Changed = true;
328 return Changed;
329}
330
331bool DoDeadCodeElimination(Module *C) {
332 bool Val = ApplyOptToAllMethods(C, DoDeadCodeElimination);
333 while (DoRemoveUnusedConstants(C)) Val = true;
334 return Val;
335}