blob: 862ec5a39170242f0676019b46dd082979d8443c [file] [log] [blame]
Chris Lattnerc1496bda2002-05-07 22:11:39 +00001//===- ADCE.cpp - Code to perform aggressive dead code elimination --------===//
Chris Lattnerb28986f2001-06-30 06:39:11 +00002//
Chris Lattnerc1496bda2002-05-07 22:11:39 +00003// This file implements "aggressive" dead code elimination. ADCE is DCe where
Chris Lattnerb28986f2001-06-30 06:39:11 +00004// values are assumed to be dead until proven otherwise. This is similar to
5// SCCP, except applied to the liveness of values.
6//
7//===----------------------------------------------------------------------===//
8
Chris Lattnerb4cfa7f2002-05-07 20:03:00 +00009#include "llvm/Transforms/Scalar.h"
Chris Lattnerc1496bda2002-05-07 22:11:39 +000010#include "llvm/Transforms/Utils/Local.h"
Chris Lattnerb28986f2001-06-30 06:39:11 +000011#include "llvm/Type.h"
Chris Lattner8024bde2001-07-06 16:32:07 +000012#include "llvm/Analysis/Dominators.h"
Chris Lattner8024bde2001-07-06 16:32:07 +000013#include "llvm/Analysis/Writer.h"
Chris Lattneracfd27d2001-09-09 22:26:47 +000014#include "llvm/iTerminators.h"
Chris Lattnerfb5ae022001-12-03 18:02:31 +000015#include "llvm/iPHINode.h"
Chris Lattner559f0ee2002-05-22 21:32:16 +000016#include "llvm/Constant.h"
Chris Lattner60a65912002-02-12 21:07:25 +000017#include "llvm/Support/CFG.h"
Chris Lattner5de22042001-11-27 00:03:19 +000018#include "Support/STLExtras.h"
19#include "Support/DepthFirstIterator.h"
Chris Lattner71cbd422002-05-22 17:17:27 +000020#include "Support/StatisticReporter.h"
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +000021#include <algorithm>
Chris Lattner7f74a562002-01-20 22:54:45 +000022#include <iostream>
23using std::cerr;
Chris Lattnerb28986f2001-06-30 06:39:11 +000024
Chris Lattner559f0ee2002-05-22 21:32:16 +000025static Statistic<> NumBlockRemoved("adce\t\t- Number of basic blocks removed");
26static Statistic<> NumInstRemoved ("adce\t\t- Number of instructions removed");
27
Chris Lattner019f3642002-05-06 17:27:57 +000028namespace {
29
Chris Lattnerb28986f2001-06-30 06:39:11 +000030//===----------------------------------------------------------------------===//
31// ADCE Class
32//
Chris Lattnerc1496bda2002-05-07 22:11:39 +000033// This class does all of the work of Aggressive Dead Code Elimination.
Chris Lattnerb28986f2001-06-30 06:39:11 +000034// It's public interface consists of a constructor and a doADCE() method.
35//
Chris Lattner019f3642002-05-06 17:27:57 +000036class ADCE : public FunctionPass {
37 Function *Func; // The function that we are working on
Chris Lattner7f74a562002-01-20 22:54:45 +000038 std::vector<Instruction*> WorkList; // Instructions that just became live
39 std::set<Instruction*> LiveSet; // The set of live instructions
Chris Lattnerb28986f2001-06-30 06:39:11 +000040
41 //===--------------------------------------------------------------------===//
42 // The public interface for this class
43 //
44public:
Chris Lattner019f3642002-05-06 17:27:57 +000045 const char *getPassName() const { return "Aggressive Dead Code Elimination"; }
46
Chris Lattner559f0ee2002-05-22 21:32:16 +000047 // Execute the Aggressive Dead Code Elimination Algorithm
Chris Lattner019f3642002-05-06 17:27:57 +000048 //
49 virtual bool runOnFunction(Function *F) {
Chris Lattner559f0ee2002-05-22 21:32:16 +000050 Func = F;
51 bool Changed = doADCE();
Chris Lattner019f3642002-05-06 17:27:57 +000052 assert(WorkList.empty());
53 LiveSet.clear();
Chris Lattner559f0ee2002-05-22 21:32:16 +000054 return Changed;
Chris Lattner019f3642002-05-06 17:27:57 +000055 }
56 // getAnalysisUsage - We require post dominance frontiers (aka Control
57 // Dependence Graph)
58 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner559f0ee2002-05-22 21:32:16 +000059 AU.addRequired(DominatorTree::PostDomID);
Chris Lattner019f3642002-05-06 17:27:57 +000060 AU.addRequired(DominanceFrontier::PostDomID);
61 }
Chris Lattnerb28986f2001-06-30 06:39:11 +000062
Chris Lattnerb28986f2001-06-30 06:39:11 +000063
64 //===--------------------------------------------------------------------===//
65 // The implementation of this class
66 //
67private:
Chris Lattnerc1496bda2002-05-07 22:11:39 +000068 // doADCE() - Run the Aggressive Dead Code Elimination algorithm, returning
Chris Lattner019f3642002-05-06 17:27:57 +000069 // true if the function was modified.
70 //
Chris Lattner559f0ee2002-05-22 21:32:16 +000071 bool doADCE();
72
73 void markBlockAlive(BasicBlock *BB);
Chris Lattner019f3642002-05-06 17:27:57 +000074
Chris Lattnerb28986f2001-06-30 06:39:11 +000075 inline void markInstructionLive(Instruction *I) {
76 if (LiveSet.count(I)) return;
Chris Lattner71cbd422002-05-22 17:17:27 +000077 DEBUG(cerr << "Insn Live: " << I);
Chris Lattnerb28986f2001-06-30 06:39:11 +000078 LiveSet.insert(I);
79 WorkList.push_back(I);
80 }
81
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +000082 inline void markTerminatorLive(const BasicBlock *BB) {
Chris Lattner71cbd422002-05-22 17:17:27 +000083 DEBUG(cerr << "Terminat Live: " << BB->getTerminator());
Chris Lattneracfd27d2001-09-09 22:26:47 +000084 markInstructionLive((Instruction*)BB->getTerminator());
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +000085 }
Chris Lattnerb28986f2001-06-30 06:39:11 +000086};
87
Chris Lattner019f3642002-05-06 17:27:57 +000088} // End of anonymous namespace
89
Chris Lattner559f0ee2002-05-22 21:32:16 +000090Pass *createAggressiveDCEPass() { return new ADCE(); }
91
92
93void ADCE::markBlockAlive(BasicBlock *BB) {
94 // Mark the basic block as being newly ALIVE... and mark all branches that
95 // this block is control dependant on as being alive also...
96 //
97 DominanceFrontier &CDG =
98 getAnalysis<DominanceFrontier>(DominanceFrontier::PostDomID);
99
100 DominanceFrontier::const_iterator It = CDG.find(BB);
101 if (It != CDG.end()) {
102 // Get the blocks that this node is control dependant on...
103 const DominanceFrontier::DomSetType &CDB = It->second;
104 for_each(CDB.begin(), CDB.end(), // Mark all their terminators as live
105 bind_obj(this, &ADCE::markTerminatorLive));
106 }
107
108 // If this basic block is live, then the terminator must be as well!
109 markTerminatorLive(BB);
Chris Lattner019f3642002-05-06 17:27:57 +0000110}
Chris Lattnerb28986f2001-06-30 06:39:11 +0000111
112
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000113// doADCE() - Run the Aggressive Dead Code Elimination algorithm, returning
Chris Lattnerc8e66542002-04-27 06:56:12 +0000114// true if the function was modified.
Chris Lattnerb28986f2001-06-30 06:39:11 +0000115//
Chris Lattner559f0ee2002-05-22 21:32:16 +0000116bool ADCE::doADCE() {
117 bool MadeChanges = false;
Chris Lattneracfd27d2001-09-09 22:26:47 +0000118
Chris Lattnerc8e66542002-04-27 06:56:12 +0000119 // Iterate over all of the instructions in the function, eliminating trivially
Chris Lattneracfd27d2001-09-09 22:26:47 +0000120 // dead instructions, and marking instructions live that are known to be
121 // needed. Perform the walk in depth first order so that we avoid marking any
122 // instructions live in basic blocks that are unreachable. These blocks will
123 // be eliminated later, along with the instructions inside.
124 //
Chris Lattner019f3642002-05-06 17:27:57 +0000125 for (df_iterator<Function*> BBI = df_begin(Func), BBE = df_end(Func);
Chris Lattneracfd27d2001-09-09 22:26:47 +0000126 BBI != BBE; ++BBI) {
127 BasicBlock *BB = *BBI;
128 for (BasicBlock::iterator II = BB->begin(), EI = BB->end(); II != EI; ) {
129 Instruction *I = *II;
130
131 if (I->hasSideEffects() || I->getOpcode() == Instruction::Ret) {
132 markInstructionLive(I);
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000133 ++II; // Increment the inst iterator if the inst wasn't deleted
134 } else if (isInstructionTriviallyDead(I)) {
135 // Remove the instruction from it's basic block...
136 delete BB->getInstList().remove(II);
Chris Lattner559f0ee2002-05-22 21:32:16 +0000137 ++NumInstRemoved;
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000138 MadeChanges = true;
Chris Lattneracfd27d2001-09-09 22:26:47 +0000139 } else {
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000140 ++II; // Increment the inst iterator if the inst wasn't deleted
Chris Lattneracfd27d2001-09-09 22:26:47 +0000141 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000142 }
143 }
144
Chris Lattner71cbd422002-05-22 17:17:27 +0000145 DEBUG(cerr << "Processing work list\n");
Chris Lattnerb28986f2001-06-30 06:39:11 +0000146
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000147 // AliveBlocks - Set of basic blocks that we know have instructions that are
148 // alive in them...
149 //
Chris Lattner7f74a562002-01-20 22:54:45 +0000150 std::set<BasicBlock*> AliveBlocks;
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000151
Chris Lattnerb28986f2001-06-30 06:39:11 +0000152 // Process the work list of instructions that just became live... if they
153 // became live, then that means that all of their operands are neccesary as
154 // well... make them live as well.
155 //
156 while (!WorkList.empty()) {
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000157 Instruction *I = WorkList.back(); // Get an instruction that became live...
Chris Lattnerb28986f2001-06-30 06:39:11 +0000158 WorkList.pop_back();
159
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000160 BasicBlock *BB = I->getParent();
Chris Lattner559f0ee2002-05-22 21:32:16 +0000161 if (!AliveBlocks.count(BB)) { // Basic block not alive yet...
162 AliveBlocks.insert(BB); // Block is now ALIVE!
163 markBlockAlive(BB); // Make it so now!
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000164 }
165
Chris Lattner559f0ee2002-05-22 21:32:16 +0000166 // PHI nodes are a special case, because the incoming values are actually
167 // defined in the predecessor nodes of this block, meaning that the PHI
168 // makes the predecessors alive.
169 //
170 if (PHINode *PN = dyn_cast<PHINode>(I))
171 for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB); PI != PE; ++PI)
172 if (!AliveBlocks.count(*PI)) {
173 AliveBlocks.insert(BB); // Block is now ALIVE!
174 markBlockAlive(*PI);
175 }
176
Chris Lattneracfd27d2001-09-09 22:26:47 +0000177 // Loop over all of the operands of the live instruction, making sure that
178 // they are known to be alive as well...
179 //
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000180 for (unsigned op = 0, End = I->getNumOperands(); op != End; ++op)
Chris Lattner4b717c02001-10-01 16:18:37 +0000181 if (Instruction *Operand = dyn_cast<Instruction>(I->getOperand(op)))
Chris Lattneracfd27d2001-09-09 22:26:47 +0000182 markInstructionLive(Operand);
Chris Lattnerb28986f2001-06-30 06:39:11 +0000183 }
184
Chris Lattner71cbd422002-05-22 17:17:27 +0000185 if (DebugFlag) {
186 cerr << "Current Function: X = Live\n";
187 for (Function::iterator I = Func->begin(), E = Func->end(); I != E; ++I)
188 for (BasicBlock::iterator BI = (*I)->begin(), BE = (*I)->end();
189 BI != BE; ++BI) {
190 if (LiveSet.count(*BI)) cerr << "X ";
191 cerr << *BI;
192 }
193 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000194
Chris Lattner559f0ee2002-05-22 21:32:16 +0000195 // Find the first postdominator of the entry node that is alive. Make it the
196 // new entry node...
Chris Lattnerb28986f2001-06-30 06:39:11 +0000197 //
Chris Lattner559f0ee2002-05-22 21:32:16 +0000198 DominatorTree &DT = getAnalysis<DominatorTree>(DominatorTree::PostDomID);
Chris Lattnerb28986f2001-06-30 06:39:11 +0000199
Chris Lattner559f0ee2002-05-22 21:32:16 +0000200 // If there are some blocks dead...
201 if (AliveBlocks.size() != Func->size()) {
202 // Insert a new entry node to eliminate the entry node as a special case.
203 BasicBlock *NewEntry = new BasicBlock();
204 NewEntry->getInstList().push_back(new BranchInst(Func->front()));
205 Func->getBasicBlocks().push_front(NewEntry);
206 AliveBlocks.insert(NewEntry); // This block is always alive!
207
208 // Loop over all of the alive blocks in the function. If any successor
209 // blocks are not alive, we adjust the outgoing branches to branch to the
210 // first live postdominator of the live block, adjusting any PHI nodes in
211 // the block to reflect this.
212 //
213 for (Function::iterator I = Func->begin(), E = Func->end(); I != E; ++I)
214 if (AliveBlocks.count(*I)) {
215 BasicBlock *BB = *I;
216 TerminatorInst *TI = BB->getTerminator();
217
218 // Loop over all of the successors, looking for ones that are not alive
219 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
220 if (!AliveBlocks.count(TI->getSuccessor(i))) {
221 // Scan up the postdominator tree, looking for the first
222 // postdominator that is alive, and the last postdominator that is
223 // dead...
224 //
225 DominatorTree::Node *LastNode = DT[TI->getSuccessor(i)];
226 DominatorTree::Node *NextNode = LastNode->getIDom();
227 while (!AliveBlocks.count(NextNode->getNode())) {
228 LastNode = NextNode;
229 NextNode = NextNode->getIDom();
230 }
231
232 // Get the basic blocks that we need...
233 BasicBlock *LastDead = LastNode->getNode();
234 BasicBlock *NextAlive = NextNode->getNode();
235
236 // Make the conditional branch now go to the next alive block...
237 TI->getSuccessor(i)->removePredecessor(BB);
238 TI->setSuccessor(i, NextAlive);
239
240 // If there are PHI nodes in NextAlive, we need to add entries to
241 // the PHI nodes for the new incoming edge. The incoming values
242 // should be identical to the incoming values for LastDead.
243 //
244 for (BasicBlock::iterator II = NextAlive->begin();
245 PHINode *PN = dyn_cast<PHINode>(*II); ++II) {
246 // Get the incoming value for LastDead...
247 int OldIdx = PN->getBasicBlockIndex(LastDead);
248 assert(OldIdx != -1 && "LastDead is not a pred of NextAlive!");
249 Value *InVal = PN->getIncomingValue(OldIdx);
250
251 // Add an incoming value for BB now...
252 PN->addIncoming(InVal, BB);
253 }
254 }
Chris Lattnerbad1b4d2002-05-10 15:37:35 +0000255
Chris Lattner559f0ee2002-05-22 21:32:16 +0000256 // Now loop over all of the instructions in the basic block, telling
257 // dead instructions to drop their references. This is so that the next
258 // sweep over the program can safely delete dead instructions without
259 // other dead instructions still refering to them.
260 //
261 for (BasicBlock::iterator I = BB->begin(), E = BB->end()-1; I != E; ++I)
262 if (!LiveSet.count(*I)) // Is this instruction alive?
263 (*I)->dropAllReferences(); // Nope, drop references...
264 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000265 }
266
Chris Lattner194138c2002-05-28 21:38:16 +0000267 // Loop over all of the basic blocks in the function, dropping references of
268 // the dead basic blocks
Chris Lattner559f0ee2002-05-22 21:32:16 +0000269 //
270 for (Function::iterator I = Func->begin(), E = Func->end(); I != E; ++I) {
271 BasicBlock *BB = *I;
Chris Lattner194138c2002-05-28 21:38:16 +0000272 if (!AliveBlocks.count(BB)) {
Chris Lattner559f0ee2002-05-22 21:32:16 +0000273 // Remove all outgoing edges from this basic block and convert the
274 // terminator into a return instruction.
275 vector<BasicBlock*> Succs(succ_begin(BB), succ_end(BB));
276
277 if (!Succs.empty()) {
278 // Loop over all of the successors, removing this block from PHI node
279 // entries that might be in the block...
280 while (!Succs.empty()) {
281 Succs.back()->removePredecessor(BB);
282 Succs.pop_back();
283 }
284
285 // Delete the old terminator instruction...
286 delete BB->getInstList().remove(BB->end()-1);
287 const Type *RetTy = Func->getReturnType();
288 Instruction *New = new ReturnInst(RetTy != Type::VoidTy ?
289 Constant::getNullValue(RetTy) : 0);
290 BB->getInstList().push_back(New);
291 }
292
293 BB->dropAllReferences();
294 ++NumBlockRemoved;
295 MadeChanges = true;
296 }
297 }
Chris Lattnerbad1b4d2002-05-10 15:37:35 +0000298
Chris Lattner194138c2002-05-28 21:38:16 +0000299 // Now loop through all of the blocks and delete the dead ones. We can safely
300 // do this now because we know that there are no references to dead blocks
301 // (because they have dropped all of their references... we also remove dead
302 // instructions from alive blocks.
Chris Lattneracfd27d2001-09-09 22:26:47 +0000303 //
Chris Lattner559f0ee2002-05-22 21:32:16 +0000304 for (Function::iterator BI = Func->begin(); BI != Func->end(); )
305 if (!AliveBlocks.count(*BI))
Chris Lattner019f3642002-05-06 17:27:57 +0000306 delete Func->getBasicBlocks().remove(BI);
Chris Lattner194138c2002-05-28 21:38:16 +0000307 else {
308 BasicBlock *BB = *BI;
309 for (BasicBlock::iterator II = BB->begin(); II != BB->end()-1; )
310 if (!LiveSet.count(*II)) { // Is this instruction alive?
311 // Nope... remove the instruction from it's basic block...
312 delete BB->getInstList().remove(II);
313 ++NumInstRemoved;
314 MadeChanges = true;
315 } else {
316 ++II;
317 }
318
Chris Lattner559f0ee2002-05-22 21:32:16 +0000319 ++BI; // Increment iterator...
Chris Lattner194138c2002-05-28 21:38:16 +0000320 }
Chris Lattnerbad1b4d2002-05-10 15:37:35 +0000321
Chris Lattner559f0ee2002-05-22 21:32:16 +0000322 return MadeChanges;
Chris Lattnerb28986f2001-06-30 06:39:11 +0000323}