blob: 11f84334c2536b1faeb84e9418efdc7b0d3e2af7 [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 Lattnerfb8ed0c2001-07-08 18:38:36 +000019#include <algorithm>
Chris Lattner7f74a562002-01-20 22:54:45 +000020#include <iostream>
21using std::cerr;
Chris Lattnerb28986f2001-06-30 06:39:11 +000022
Chris Lattnerb271be32001-09-28 00:06:42 +000023#define DEBUG_ADCE 1
Chris Lattneracfd27d2001-09-09 22:26:47 +000024
Chris Lattner019f3642002-05-06 17:27:57 +000025namespace {
26
Chris Lattnerb28986f2001-06-30 06:39:11 +000027//===----------------------------------------------------------------------===//
28// ADCE Class
29//
Chris Lattnerc1496bda2002-05-07 22:11:39 +000030// This class does all of the work of Aggressive Dead Code Elimination.
Chris Lattnerb28986f2001-06-30 06:39:11 +000031// It's public interface consists of a constructor and a doADCE() method.
32//
Chris Lattner019f3642002-05-06 17:27:57 +000033class ADCE : public FunctionPass {
34 Function *Func; // The function that we are working on
Chris Lattner7f74a562002-01-20 22:54:45 +000035 std::vector<Instruction*> WorkList; // Instructions that just became live
36 std::set<Instruction*> LiveSet; // The set of live instructions
Chris Lattneracfd27d2001-09-09 22:26:47 +000037 bool MadeChanges;
Chris Lattnerb28986f2001-06-30 06:39:11 +000038
39 //===--------------------------------------------------------------------===//
40 // The public interface for this class
41 //
42public:
Chris Lattner019f3642002-05-06 17:27:57 +000043 const char *getPassName() const { return "Aggressive Dead Code Elimination"; }
44
Chris Lattnerc1496bda2002-05-07 22:11:39 +000045 // doADCE - Execute the Aggressive Dead Code Elimination Algorithm
Chris Lattner019f3642002-05-06 17:27:57 +000046 //
47 virtual bool runOnFunction(Function *F) {
48 Func = F; MadeChanges = false;
49 doADCE(getAnalysis<DominanceFrontier>(DominanceFrontier::PostDomID));
50 assert(WorkList.empty());
51 LiveSet.clear();
52 return MadeChanges;
53 }
54 // getAnalysisUsage - We require post dominance frontiers (aka Control
55 // Dependence Graph)
56 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
57 AU.addRequired(DominanceFrontier::PostDomID);
58 }
Chris Lattnerb28986f2001-06-30 06:39:11 +000059
Chris Lattnerb28986f2001-06-30 06:39:11 +000060
61 //===--------------------------------------------------------------------===//
62 // The implementation of this class
63 //
64private:
Chris Lattnerc1496bda2002-05-07 22:11:39 +000065 // doADCE() - Run the Aggressive Dead Code Elimination algorithm, returning
Chris Lattner019f3642002-05-06 17:27:57 +000066 // true if the function was modified.
67 //
68 void doADCE(DominanceFrontier &CDG);
69
Chris Lattnerb28986f2001-06-30 06:39:11 +000070 inline void markInstructionLive(Instruction *I) {
71 if (LiveSet.count(I)) return;
Chris Lattneracfd27d2001-09-09 22:26:47 +000072#ifdef DEBUG_ADCE
Chris Lattnerb28986f2001-06-30 06:39:11 +000073 cerr << "Insn Live: " << I;
Chris Lattneracfd27d2001-09-09 22:26:47 +000074#endif
Chris Lattnerb28986f2001-06-30 06:39:11 +000075 LiveSet.insert(I);
76 WorkList.push_back(I);
77 }
78
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +000079 inline void markTerminatorLive(const BasicBlock *BB) {
Chris Lattneracfd27d2001-09-09 22:26:47 +000080#ifdef DEBUG_ADCE
81 cerr << "Terminat Live: " << BB->getTerminator();
82#endif
83 markInstructionLive((Instruction*)BB->getTerminator());
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +000084 }
Chris Lattneracfd27d2001-09-09 22:26:47 +000085
86 // fixupCFG - Walk the CFG in depth first order, eliminating references to
87 // dead blocks.
88 //
Chris Lattner7f74a562002-01-20 22:54:45 +000089 BasicBlock *fixupCFG(BasicBlock *Head, std::set<BasicBlock*> &VisitedBlocks,
90 const std::set<BasicBlock*> &AliveBlocks);
Chris Lattnerb28986f2001-06-30 06:39:11 +000091};
92
Chris Lattner019f3642002-05-06 17:27:57 +000093} // End of anonymous namespace
94
Chris Lattnerc1496bda2002-05-07 22:11:39 +000095Pass *createAggressiveDCEPass() {
Chris Lattner019f3642002-05-06 17:27:57 +000096 return new ADCE();
97}
Chris Lattnerb28986f2001-06-30 06:39:11 +000098
99
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000100// doADCE() - Run the Aggressive Dead Code Elimination algorithm, returning
Chris Lattnerc8e66542002-04-27 06:56:12 +0000101// true if the function was modified.
Chris Lattnerb28986f2001-06-30 06:39:11 +0000102//
Chris Lattner019f3642002-05-06 17:27:57 +0000103void ADCE::doADCE(DominanceFrontier &CDG) {
Chris Lattneracfd27d2001-09-09 22:26:47 +0000104#ifdef DEBUG_ADCE
Chris Lattner019f3642002-05-06 17:27:57 +0000105 cerr << "Function: " << Func;
Chris Lattneracfd27d2001-09-09 22:26:47 +0000106#endif
107
Chris Lattnerc8e66542002-04-27 06:56:12 +0000108 // Iterate over all of the instructions in the function, eliminating trivially
Chris Lattneracfd27d2001-09-09 22:26:47 +0000109 // dead instructions, and marking instructions live that are known to be
110 // needed. Perform the walk in depth first order so that we avoid marking any
111 // instructions live in basic blocks that are unreachable. These blocks will
112 // be eliminated later, along with the instructions inside.
113 //
Chris Lattner019f3642002-05-06 17:27:57 +0000114 for (df_iterator<Function*> BBI = df_begin(Func), BBE = df_end(Func);
Chris Lattneracfd27d2001-09-09 22:26:47 +0000115 BBI != BBE; ++BBI) {
116 BasicBlock *BB = *BBI;
117 for (BasicBlock::iterator II = BB->begin(), EI = BB->end(); II != EI; ) {
118 Instruction *I = *II;
119
120 if (I->hasSideEffects() || I->getOpcode() == Instruction::Ret) {
121 markInstructionLive(I);
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000122 ++II; // Increment the inst iterator if the inst wasn't deleted
123 } else if (isInstructionTriviallyDead(I)) {
124 // Remove the instruction from it's basic block...
125 delete BB->getInstList().remove(II);
126 MadeChanges = true;
Chris Lattneracfd27d2001-09-09 22:26:47 +0000127 } else {
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000128 ++II; // Increment the inst iterator if the inst wasn't deleted
Chris Lattneracfd27d2001-09-09 22:26:47 +0000129 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000130 }
131 }
132
133#ifdef DEBUG_ADCE
Chris Lattnerb28986f2001-06-30 06:39:11 +0000134 cerr << "Processing work list\n";
Chris Lattneracfd27d2001-09-09 22:26:47 +0000135#endif
Chris Lattnerb28986f2001-06-30 06:39:11 +0000136
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000137 // AliveBlocks - Set of basic blocks that we know have instructions that are
138 // alive in them...
139 //
Chris Lattner7f74a562002-01-20 22:54:45 +0000140 std::set<BasicBlock*> AliveBlocks;
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000141
Chris Lattnerb28986f2001-06-30 06:39:11 +0000142 // Process the work list of instructions that just became live... if they
143 // became live, then that means that all of their operands are neccesary as
144 // well... make them live as well.
145 //
146 while (!WorkList.empty()) {
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000147 Instruction *I = WorkList.back(); // Get an instruction that became live...
Chris Lattnerb28986f2001-06-30 06:39:11 +0000148 WorkList.pop_back();
149
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000150 BasicBlock *BB = I->getParent();
151 if (AliveBlocks.count(BB) == 0) { // Basic block not alive yet...
152 // Mark the basic block as being newly ALIVE... and mark all branches that
153 // this block is control dependant on as being alive also...
154 //
155 AliveBlocks.insert(BB); // Block is now ALIVE!
Chris Lattner78dd56f2002-04-28 16:21:30 +0000156 DominanceFrontier::const_iterator It = CDG.find(BB);
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000157 if (It != CDG.end()) {
158 // Get the blocks that this node is control dependant on...
Chris Lattner78dd56f2002-04-28 16:21:30 +0000159 const DominanceFrontier::DomSetType &CDB = It->second;
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000160 for_each(CDB.begin(), CDB.end(), // Mark all their terminators as live
161 bind_obj(this, &ADCE::markTerminatorLive));
162 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000163
164 // If this basic block is live, then the terminator must be as well!
165 markTerminatorLive(BB);
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000166 }
167
Chris Lattneracfd27d2001-09-09 22:26:47 +0000168 // Loop over all of the operands of the live instruction, making sure that
169 // they are known to be alive as well...
170 //
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000171 for (unsigned op = 0, End = I->getNumOperands(); op != End; ++op)
Chris Lattner4b717c02001-10-01 16:18:37 +0000172 if (Instruction *Operand = dyn_cast<Instruction>(I->getOperand(op)))
Chris Lattneracfd27d2001-09-09 22:26:47 +0000173 markInstructionLive(Operand);
Chris Lattnerb28986f2001-06-30 06:39:11 +0000174 }
175
Chris Lattneracfd27d2001-09-09 22:26:47 +0000176#ifdef DEBUG_ADCE
Chris Lattnerf8e4dc32002-04-08 22:03:00 +0000177 cerr << "Current Function: X = Live\n";
Chris Lattner019f3642002-05-06 17:27:57 +0000178 for (Function::iterator I = Func->begin(), E = Func->end(); I != E; ++I)
Chris Lattner60a65912002-02-12 21:07:25 +0000179 for (BasicBlock::iterator BI = (*I)->begin(), BE = (*I)->end();
180 BI != BE; ++BI) {
181 if (LiveSet.count(*BI)) cerr << "X ";
182 cerr << *BI;
183 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000184#endif
185
186 // After the worklist is processed, recursively walk the CFG in depth first
187 // order, patching up references to dead blocks...
Chris Lattnerb28986f2001-06-30 06:39:11 +0000188 //
Chris Lattner7f74a562002-01-20 22:54:45 +0000189 std::set<BasicBlock*> VisitedBlocks;
Chris Lattner019f3642002-05-06 17:27:57 +0000190 BasicBlock *EntryBlock = fixupCFG(Func->front(), VisitedBlocks, AliveBlocks);
191 if (EntryBlock && EntryBlock != Func->front()) {
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000192 // We need to move the new entry block to be the first bb of the function
193 Function::iterator EBI = find(Func->begin(), Func->end(), EntryBlock);
194 std::swap(*EBI, *Func->begin()); // Exchange old location with start of fn
195
196 while (PHINode *PN = dyn_cast<PHINode>(EntryBlock->front())) {
197 assert(PN->getNumIncomingValues() == 1 &&
198 "Can only have a single incoming value at this point...");
199 // The incoming value must be outside of the scope of the function, a
200 // global variable, constant or parameter maybe...
Chris Lattneracfd27d2001-09-09 22:26:47 +0000201 //
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000202 PN->replaceAllUsesWith(PN->getIncomingValue(0));
Chris Lattnerb271be32001-09-28 00:06:42 +0000203
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000204 // Nuke the phi node...
205 delete EntryBlock->getInstList().remove(EntryBlock->begin());
Chris Lattnerb28986f2001-06-30 06:39:11 +0000206 }
Chris Lattnerb28986f2001-06-30 06:39:11 +0000207 }
208
Chris Lattneracfd27d2001-09-09 22:26:47 +0000209 // Now go through and tell dead blocks to drop all of their references so they
210 // can be safely deleted.
211 //
Chris Lattner019f3642002-05-06 17:27:57 +0000212 for (Function::iterator BI = Func->begin(), BE = Func->end(); BI != BE; ++BI){
Chris Lattneracfd27d2001-09-09 22:26:47 +0000213 BasicBlock *BB = *BI;
214 if (!AliveBlocks.count(BB)) {
215 BB->dropAllReferences();
216 }
217 }
218
219 // Now loop through all of the blocks and delete them. We can safely do this
220 // now because we know that there are no references to dead blocks (because
221 // they have dropped all of their references...
222 //
Chris Lattner019f3642002-05-06 17:27:57 +0000223 for (Function::iterator BI = Func->begin(); BI != Func->end();) {
Chris Lattneracfd27d2001-09-09 22:26:47 +0000224 if (!AliveBlocks.count(*BI)) {
Chris Lattner019f3642002-05-06 17:27:57 +0000225 delete Func->getBasicBlocks().remove(BI);
Chris Lattneracfd27d2001-09-09 22:26:47 +0000226 MadeChanges = true;
227 continue; // Don't increment iterator
228 }
229 ++BI; // Increment iterator...
230 }
Chris Lattnerb28986f2001-06-30 06:39:11 +0000231}
232
233
Chris Lattneracfd27d2001-09-09 22:26:47 +0000234// fixupCFG - Walk the CFG in depth first order, eliminating references to
235// dead blocks:
236// If the BB is alive (in AliveBlocks):
237// 1. Eliminate all dead instructions in the BB
238// 2. Recursively traverse all of the successors of the BB:
239// - If the returned successor is non-null, update our terminator to
240// reference the returned BB
241// 3. Return 0 (no update needed)
242//
243// If the BB is dead (not in AliveBlocks):
244// 1. Add the BB to the dead set
245// 2. Recursively traverse all of the successors of the block:
246// - Only one shall return a nonnull value (or else this block should have
247// been in the alive set).
248// 3. Return the nonnull child, or 0 if no non-null children.
249//
Chris Lattner7f74a562002-01-20 22:54:45 +0000250BasicBlock *ADCE::fixupCFG(BasicBlock *BB, std::set<BasicBlock*> &VisitedBlocks,
251 const std::set<BasicBlock*> &AliveBlocks) {
Chris Lattneracfd27d2001-09-09 22:26:47 +0000252 if (VisitedBlocks.count(BB)) return 0; // Revisiting a node? No update.
253 VisitedBlocks.insert(BB); // We have now visited this node!
254
255#ifdef DEBUG_ADCE
256 cerr << "Fixing up BB: " << BB;
257#endif
258
259 if (AliveBlocks.count(BB)) { // Is the block alive?
260 // Yes it's alive: loop through and eliminate all dead instructions in block
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000261 for (BasicBlock::iterator II = BB->begin(); II != BB->end()-1; )
262 if (!LiveSet.count(*II)) { // Is this instruction alive?
Chris Lattneracfd27d2001-09-09 22:26:47 +0000263 // Nope... remove the instruction from it's basic block...
264 delete BB->getInstList().remove(II);
265 MadeChanges = true;
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000266 } else {
267 ++II;
Chris Lattneracfd27d2001-09-09 22:26:47 +0000268 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000269
270 // Recursively traverse successors of this basic block.
Chris Lattner83d485b2002-02-12 22:39:50 +0000271 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); SI != SE; ++SI) {
Chris Lattneracfd27d2001-09-09 22:26:47 +0000272 BasicBlock *Succ = *SI;
273 BasicBlock *Repl = fixupCFG(Succ, VisitedBlocks, AliveBlocks);
274 if (Repl && Repl != Succ) { // We have to replace the successor
275 Succ->replaceAllUsesWith(Repl);
276 MadeChanges = true;
277 }
278 }
279 return BB;
280 } else { // Otherwise the block is dead...
281 BasicBlock *ReturnBB = 0; // Default to nothing live down here
282
283 // Recursively traverse successors of this basic block.
Chris Lattner83d485b2002-02-12 22:39:50 +0000284 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); SI != SE; ++SI) {
Chris Lattneracfd27d2001-09-09 22:26:47 +0000285 BasicBlock *RetBB = fixupCFG(*SI, VisitedBlocks, AliveBlocks);
286 if (RetBB) {
287 assert(ReturnBB == 0 && "One one live child allowed!");
288 ReturnBB = RetBB;
289 }
290 }
291 return ReturnBB; // Return the result of traversal
292 }
293}
294