blob: 20a34c1c7e9abd84db5165bfe4e1183b2e5d3858 [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 Lattner60a65912002-02-12 21:07:25 +000016#include "llvm/Support/CFG.h"
Chris Lattner5de22042001-11-27 00:03:19 +000017#include "Support/STLExtras.h"
18#include "Support/DepthFirstIterator.h"
Chris Lattner71cbd422002-05-22 17:17:27 +000019#include "Support/StatisticReporter.h"
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +000020#include <algorithm>
Chris Lattner7f74a562002-01-20 22:54:45 +000021#include <iostream>
22using std::cerr;
Chris Lattnerb28986f2001-06-30 06:39:11 +000023
Chris Lattner019f3642002-05-06 17:27:57 +000024namespace {
25
Chris Lattnerb28986f2001-06-30 06:39:11 +000026//===----------------------------------------------------------------------===//
27// ADCE Class
28//
Chris Lattnerc1496bda2002-05-07 22:11:39 +000029// This class does all of the work of Aggressive Dead Code Elimination.
Chris Lattnerb28986f2001-06-30 06:39:11 +000030// It's public interface consists of a constructor and a doADCE() method.
31//
Chris Lattner019f3642002-05-06 17:27:57 +000032class ADCE : public FunctionPass {
33 Function *Func; // The function that we are working on
Chris Lattner7f74a562002-01-20 22:54:45 +000034 std::vector<Instruction*> WorkList; // Instructions that just became live
35 std::set<Instruction*> LiveSet; // The set of live instructions
Chris Lattneracfd27d2001-09-09 22:26:47 +000036 bool MadeChanges;
Chris Lattnerb28986f2001-06-30 06:39:11 +000037
38 //===--------------------------------------------------------------------===//
39 // The public interface for this class
40 //
41public:
Chris Lattner019f3642002-05-06 17:27:57 +000042 const char *getPassName() const { return "Aggressive Dead Code Elimination"; }
43
Chris Lattnerc1496bda2002-05-07 22:11:39 +000044 // doADCE - Execute the Aggressive Dead Code Elimination Algorithm
Chris Lattner019f3642002-05-06 17:27:57 +000045 //
46 virtual bool runOnFunction(Function *F) {
47 Func = F; MadeChanges = false;
48 doADCE(getAnalysis<DominanceFrontier>(DominanceFrontier::PostDomID));
49 assert(WorkList.empty());
50 LiveSet.clear();
51 return MadeChanges;
52 }
53 // getAnalysisUsage - We require post dominance frontiers (aka Control
54 // Dependence Graph)
55 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
56 AU.addRequired(DominanceFrontier::PostDomID);
57 }
Chris Lattnerb28986f2001-06-30 06:39:11 +000058
Chris Lattnerb28986f2001-06-30 06:39:11 +000059
60 //===--------------------------------------------------------------------===//
61 // The implementation of this class
62 //
63private:
Chris Lattnerc1496bda2002-05-07 22:11:39 +000064 // doADCE() - Run the Aggressive Dead Code Elimination algorithm, returning
Chris Lattner019f3642002-05-06 17:27:57 +000065 // true if the function was modified.
66 //
67 void doADCE(DominanceFrontier &CDG);
68
Chris Lattnerb28986f2001-06-30 06:39:11 +000069 inline void markInstructionLive(Instruction *I) {
70 if (LiveSet.count(I)) return;
Chris Lattner71cbd422002-05-22 17:17:27 +000071 DEBUG(cerr << "Insn Live: " << I);
Chris Lattnerb28986f2001-06-30 06:39:11 +000072 LiveSet.insert(I);
73 WorkList.push_back(I);
74 }
75
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +000076 inline void markTerminatorLive(const BasicBlock *BB) {
Chris Lattner71cbd422002-05-22 17:17:27 +000077 DEBUG(cerr << "Terminat Live: " << BB->getTerminator());
Chris Lattneracfd27d2001-09-09 22:26:47 +000078 markInstructionLive((Instruction*)BB->getTerminator());
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +000079 }
Chris Lattneracfd27d2001-09-09 22:26:47 +000080
81 // fixupCFG - Walk the CFG in depth first order, eliminating references to
82 // dead blocks.
83 //
Chris Lattner7f74a562002-01-20 22:54:45 +000084 BasicBlock *fixupCFG(BasicBlock *Head, std::set<BasicBlock*> &VisitedBlocks,
85 const std::set<BasicBlock*> &AliveBlocks);
Chris Lattnerb28986f2001-06-30 06:39:11 +000086};
87
Chris Lattner019f3642002-05-06 17:27:57 +000088} // End of anonymous namespace
89
Chris Lattnerc1496bda2002-05-07 22:11:39 +000090Pass *createAggressiveDCEPass() {
Chris Lattner019f3642002-05-06 17:27:57 +000091 return new ADCE();
92}
Chris Lattnerb28986f2001-06-30 06:39:11 +000093
94
Chris Lattnerc1496bda2002-05-07 22:11:39 +000095// doADCE() - Run the Aggressive Dead Code Elimination algorithm, returning
Chris Lattnerc8e66542002-04-27 06:56:12 +000096// true if the function was modified.
Chris Lattnerb28986f2001-06-30 06:39:11 +000097//
Chris Lattner019f3642002-05-06 17:27:57 +000098void ADCE::doADCE(DominanceFrontier &CDG) {
Chris Lattner71cbd422002-05-22 17:17:27 +000099 DEBUG(cerr << "Function: " << Func);
Chris Lattneracfd27d2001-09-09 22:26:47 +0000100
Chris Lattnerc8e66542002-04-27 06:56:12 +0000101 // Iterate over all of the instructions in the function, eliminating trivially
Chris Lattneracfd27d2001-09-09 22:26:47 +0000102 // dead instructions, and marking instructions live that are known to be
103 // needed. Perform the walk in depth first order so that we avoid marking any
104 // instructions live in basic blocks that are unreachable. These blocks will
105 // be eliminated later, along with the instructions inside.
106 //
Chris Lattner019f3642002-05-06 17:27:57 +0000107 for (df_iterator<Function*> BBI = df_begin(Func), BBE = df_end(Func);
Chris Lattneracfd27d2001-09-09 22:26:47 +0000108 BBI != BBE; ++BBI) {
109 BasicBlock *BB = *BBI;
110 for (BasicBlock::iterator II = BB->begin(), EI = BB->end(); II != EI; ) {
111 Instruction *I = *II;
112
113 if (I->hasSideEffects() || I->getOpcode() == Instruction::Ret) {
114 markInstructionLive(I);
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000115 ++II; // Increment the inst iterator if the inst wasn't deleted
116 } else if (isInstructionTriviallyDead(I)) {
117 // Remove the instruction from it's basic block...
118 delete BB->getInstList().remove(II);
119 MadeChanges = true;
Chris Lattneracfd27d2001-09-09 22:26:47 +0000120 } else {
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000121 ++II; // Increment the inst iterator if the inst wasn't deleted
Chris Lattneracfd27d2001-09-09 22:26:47 +0000122 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000123 }
124 }
125
Chris Lattner71cbd422002-05-22 17:17:27 +0000126 DEBUG(cerr << "Processing work list\n");
Chris Lattnerb28986f2001-06-30 06:39:11 +0000127
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000128 // AliveBlocks - Set of basic blocks that we know have instructions that are
129 // alive in them...
130 //
Chris Lattner7f74a562002-01-20 22:54:45 +0000131 std::set<BasicBlock*> AliveBlocks;
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000132
Chris Lattnerb28986f2001-06-30 06:39:11 +0000133 // Process the work list of instructions that just became live... if they
134 // became live, then that means that all of their operands are neccesary as
135 // well... make them live as well.
136 //
137 while (!WorkList.empty()) {
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000138 Instruction *I = WorkList.back(); // Get an instruction that became live...
Chris Lattnerb28986f2001-06-30 06:39:11 +0000139 WorkList.pop_back();
140
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000141 BasicBlock *BB = I->getParent();
142 if (AliveBlocks.count(BB) == 0) { // Basic block not alive yet...
143 // Mark the basic block as being newly ALIVE... and mark all branches that
144 // this block is control dependant on as being alive also...
145 //
146 AliveBlocks.insert(BB); // Block is now ALIVE!
Chris Lattner78dd56f2002-04-28 16:21:30 +0000147 DominanceFrontier::const_iterator It = CDG.find(BB);
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000148 if (It != CDG.end()) {
149 // Get the blocks that this node is control dependant on...
Chris Lattner78dd56f2002-04-28 16:21:30 +0000150 const DominanceFrontier::DomSetType &CDB = It->second;
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000151 for_each(CDB.begin(), CDB.end(), // Mark all their terminators as live
152 bind_obj(this, &ADCE::markTerminatorLive));
153 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000154
155 // If this basic block is live, then the terminator must be as well!
156 markTerminatorLive(BB);
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000157 }
158
Chris Lattneracfd27d2001-09-09 22:26:47 +0000159 // Loop over all of the operands of the live instruction, making sure that
160 // they are known to be alive as well...
161 //
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000162 for (unsigned op = 0, End = I->getNumOperands(); op != End; ++op)
Chris Lattner4b717c02001-10-01 16:18:37 +0000163 if (Instruction *Operand = dyn_cast<Instruction>(I->getOperand(op)))
Chris Lattneracfd27d2001-09-09 22:26:47 +0000164 markInstructionLive(Operand);
Chris Lattnerb28986f2001-06-30 06:39:11 +0000165 }
166
Chris Lattner71cbd422002-05-22 17:17:27 +0000167 if (DebugFlag) {
168 cerr << "Current Function: X = Live\n";
169 for (Function::iterator I = Func->begin(), E = Func->end(); I != E; ++I)
170 for (BasicBlock::iterator BI = (*I)->begin(), BE = (*I)->end();
171 BI != BE; ++BI) {
172 if (LiveSet.count(*BI)) cerr << "X ";
173 cerr << *BI;
174 }
175 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000176
177 // After the worklist is processed, recursively walk the CFG in depth first
178 // order, patching up references to dead blocks...
Chris Lattnerb28986f2001-06-30 06:39:11 +0000179 //
Chris Lattner7f74a562002-01-20 22:54:45 +0000180 std::set<BasicBlock*> VisitedBlocks;
Chris Lattner019f3642002-05-06 17:27:57 +0000181 BasicBlock *EntryBlock = fixupCFG(Func->front(), VisitedBlocks, AliveBlocks);
Chris Lattnerb28986f2001-06-30 06:39:11 +0000182
Chris Lattneracfd27d2001-09-09 22:26:47 +0000183 // Now go through and tell dead blocks to drop all of their references so they
Chris Lattnerbad1b4d2002-05-10 15:37:35 +0000184 // can be safely deleted. Also, as we are doing so, if the block has
185 // successors that are still live (and that have PHI nodes in them), remove
186 // the entry for this block from the phi nodes.
Chris Lattneracfd27d2001-09-09 22:26:47 +0000187 //
Chris Lattner019f3642002-05-06 17:27:57 +0000188 for (Function::iterator BI = Func->begin(), BE = Func->end(); BI != BE; ++BI){
Chris Lattneracfd27d2001-09-09 22:26:47 +0000189 BasicBlock *BB = *BI;
190 if (!AliveBlocks.count(BB)) {
Chris Lattnerbad1b4d2002-05-10 15:37:35 +0000191 // Remove entries from successors PHI nodes if they are still alive...
192 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); SI != SE; ++SI)
193 if (AliveBlocks.count(*SI)) { // Only if the successor is alive...
194 BasicBlock *Succ = *SI;
195 for (BasicBlock::iterator I = Succ->begin();// Loop over all PHI nodes
196 PHINode *PN = dyn_cast<PHINode>(*I); ++I)
197 PN->removeIncomingValue(BB); // Remove value for this block
198 }
199
Chris Lattneracfd27d2001-09-09 22:26:47 +0000200 BB->dropAllReferences();
201 }
202 }
203
Chris Lattnerbad1b4d2002-05-10 15:37:35 +0000204 cerr << "Before Deleting Blocks: " << Func;
205
Chris Lattneracfd27d2001-09-09 22:26:47 +0000206 // Now loop through all of the blocks and delete them. We can safely do this
207 // now because we know that there are no references to dead blocks (because
208 // they have dropped all of their references...
209 //
Chris Lattner019f3642002-05-06 17:27:57 +0000210 for (Function::iterator BI = Func->begin(); BI != Func->end();) {
Chris Lattneracfd27d2001-09-09 22:26:47 +0000211 if (!AliveBlocks.count(*BI)) {
Chris Lattner019f3642002-05-06 17:27:57 +0000212 delete Func->getBasicBlocks().remove(BI);
Chris Lattneracfd27d2001-09-09 22:26:47 +0000213 MadeChanges = true;
214 continue; // Don't increment iterator
215 }
216 ++BI; // Increment iterator...
217 }
Chris Lattnerbad1b4d2002-05-10 15:37:35 +0000218
219 if (EntryBlock && EntryBlock != Func->front()) {
220 // We need to move the new entry block to be the first bb of the function
221 Function::iterator EBI = find(Func->begin(), Func->end(), EntryBlock);
222 std::swap(*EBI, *Func->begin()); // Exchange old location with start of fn
223 }
224
225 while (PHINode *PN = dyn_cast<PHINode>(EntryBlock->front())) {
226 assert(PN->getNumIncomingValues() == 1 &&
227 "Can only have a single incoming value at this point...");
228 // The incoming value must be outside of the scope of the function, a
229 // global variable, constant or parameter maybe...
230 //
231 PN->replaceAllUsesWith(PN->getIncomingValue(0));
232
233 // Nuke the phi node...
234 delete EntryBlock->getInstList().remove(EntryBlock->begin());
235 }
Chris Lattnerb28986f2001-06-30 06:39:11 +0000236}
237
238
Chris Lattneracfd27d2001-09-09 22:26:47 +0000239// fixupCFG - Walk the CFG in depth first order, eliminating references to
240// dead blocks:
241// If the BB is alive (in AliveBlocks):
242// 1. Eliminate all dead instructions in the BB
243// 2. Recursively traverse all of the successors of the BB:
244// - If the returned successor is non-null, update our terminator to
245// reference the returned BB
246// 3. Return 0 (no update needed)
247//
248// If the BB is dead (not in AliveBlocks):
249// 1. Add the BB to the dead set
250// 2. Recursively traverse all of the successors of the block:
251// - Only one shall return a nonnull value (or else this block should have
252// been in the alive set).
253// 3. Return the nonnull child, or 0 if no non-null children.
254//
Chris Lattner7f74a562002-01-20 22:54:45 +0000255BasicBlock *ADCE::fixupCFG(BasicBlock *BB, std::set<BasicBlock*> &VisitedBlocks,
256 const std::set<BasicBlock*> &AliveBlocks) {
Chris Lattneracfd27d2001-09-09 22:26:47 +0000257 if (VisitedBlocks.count(BB)) return 0; // Revisiting a node? No update.
258 VisitedBlocks.insert(BB); // We have now visited this node!
259
Chris Lattner71cbd422002-05-22 17:17:27 +0000260 DEBUG(cerr << "Fixing up BB: " << BB);
Chris Lattneracfd27d2001-09-09 22:26:47 +0000261
262 if (AliveBlocks.count(BB)) { // Is the block alive?
263 // Yes it's alive: loop through and eliminate all dead instructions in block
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000264 for (BasicBlock::iterator II = BB->begin(); II != BB->end()-1; )
265 if (!LiveSet.count(*II)) { // Is this instruction alive?
Chris Lattneracfd27d2001-09-09 22:26:47 +0000266 // Nope... remove the instruction from it's basic block...
267 delete BB->getInstList().remove(II);
268 MadeChanges = true;
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000269 } else {
270 ++II;
Chris Lattneracfd27d2001-09-09 22:26:47 +0000271 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000272
273 // Recursively traverse successors of this basic block.
Chris Lattner83d485b2002-02-12 22:39:50 +0000274 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); SI != SE; ++SI) {
Chris Lattneracfd27d2001-09-09 22:26:47 +0000275 BasicBlock *Succ = *SI;
276 BasicBlock *Repl = fixupCFG(Succ, VisitedBlocks, AliveBlocks);
277 if (Repl && Repl != Succ) { // We have to replace the successor
278 Succ->replaceAllUsesWith(Repl);
279 MadeChanges = true;
280 }
281 }
282 return BB;
283 } else { // Otherwise the block is dead...
284 BasicBlock *ReturnBB = 0; // Default to nothing live down here
285
286 // Recursively traverse successors of this basic block.
Chris Lattner83d485b2002-02-12 22:39:50 +0000287 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); SI != SE; ++SI) {
Chris Lattneracfd27d2001-09-09 22:26:47 +0000288 BasicBlock *RetBB = fixupCFG(*SI, VisitedBlocks, AliveBlocks);
289 if (RetBB) {
Chris Lattnerbad1b4d2002-05-10 15:37:35 +0000290 assert(ReturnBB == 0 && "At most one live child allowed!");
Chris Lattneracfd27d2001-09-09 22:26:47 +0000291 ReturnBB = RetBB;
292 }
293 }
294 return ReturnBB; // Return the result of traversal
295 }
296}
297