blob: 35189e36838b68eb98e5febb47ba4782cca50b54 [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;
Anand Shukla2bc64192002-06-25 21:07:58 +000024using std::vector;
Chris Lattnerb28986f2001-06-30 06:39:11 +000025
Chris Lattner559f0ee2002-05-22 21:32:16 +000026static Statistic<> NumBlockRemoved("adce\t\t- Number of basic blocks removed");
27static Statistic<> NumInstRemoved ("adce\t\t- Number of instructions removed");
28
Chris Lattner019f3642002-05-06 17:27:57 +000029namespace {
30
Chris Lattnerb28986f2001-06-30 06:39:11 +000031//===----------------------------------------------------------------------===//
32// ADCE Class
33//
Chris Lattnerc1496bda2002-05-07 22:11:39 +000034// This class does all of the work of Aggressive Dead Code Elimination.
Chris Lattnerb28986f2001-06-30 06:39:11 +000035// It's public interface consists of a constructor and a doADCE() method.
36//
Chris Lattner019f3642002-05-06 17:27:57 +000037class ADCE : public FunctionPass {
38 Function *Func; // The function that we are working on
Chris Lattner7f74a562002-01-20 22:54:45 +000039 std::vector<Instruction*> WorkList; // Instructions that just became live
40 std::set<Instruction*> LiveSet; // The set of live instructions
Chris Lattnerb28986f2001-06-30 06:39:11 +000041
42 //===--------------------------------------------------------------------===//
43 // The public interface for this class
44 //
45public:
Chris Lattner019f3642002-05-06 17:27:57 +000046 const char *getPassName() const { return "Aggressive Dead Code Elimination"; }
47
Chris Lattner559f0ee2002-05-22 21:32:16 +000048 // Execute the Aggressive Dead Code Elimination Algorithm
Chris Lattner019f3642002-05-06 17:27:57 +000049 //
Chris Lattner113f4f42002-06-25 16:13:24 +000050 virtual bool runOnFunction(Function &F) {
51 Func = &F;
Chris Lattner559f0ee2002-05-22 21:32:16 +000052 bool Changed = doADCE();
Chris Lattner019f3642002-05-06 17:27:57 +000053 assert(WorkList.empty());
54 LiveSet.clear();
Chris Lattner559f0ee2002-05-22 21:32:16 +000055 return Changed;
Chris Lattner019f3642002-05-06 17:27:57 +000056 }
57 // getAnalysisUsage - We require post dominance frontiers (aka Control
58 // Dependence Graph)
59 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner559f0ee2002-05-22 21:32:16 +000060 AU.addRequired(DominatorTree::PostDomID);
Chris Lattner019f3642002-05-06 17:27:57 +000061 AU.addRequired(DominanceFrontier::PostDomID);
62 }
Chris Lattnerb28986f2001-06-30 06:39:11 +000063
Chris Lattnerb28986f2001-06-30 06:39:11 +000064
65 //===--------------------------------------------------------------------===//
66 // The implementation of this class
67 //
68private:
Chris Lattnerc1496bda2002-05-07 22:11:39 +000069 // doADCE() - Run the Aggressive Dead Code Elimination algorithm, returning
Chris Lattner019f3642002-05-06 17:27:57 +000070 // true if the function was modified.
71 //
Chris Lattner559f0ee2002-05-22 21:32:16 +000072 bool doADCE();
73
74 void markBlockAlive(BasicBlock *BB);
Chris Lattner019f3642002-05-06 17:27:57 +000075
Chris Lattnerb28986f2001-06-30 06:39:11 +000076 inline void markInstructionLive(Instruction *I) {
77 if (LiveSet.count(I)) return;
Chris Lattner71cbd422002-05-22 17:17:27 +000078 DEBUG(cerr << "Insn Live: " << I);
Chris Lattnerb28986f2001-06-30 06:39:11 +000079 LiveSet.insert(I);
80 WorkList.push_back(I);
81 }
82
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +000083 inline void markTerminatorLive(const BasicBlock *BB) {
Chris Lattner71cbd422002-05-22 17:17:27 +000084 DEBUG(cerr << "Terminat Live: " << BB->getTerminator());
Chris Lattneracfd27d2001-09-09 22:26:47 +000085 markInstructionLive((Instruction*)BB->getTerminator());
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +000086 }
Chris Lattnerb28986f2001-06-30 06:39:11 +000087};
88
Chris Lattner019f3642002-05-06 17:27:57 +000089} // End of anonymous namespace
90
Chris Lattner559f0ee2002-05-22 21:32:16 +000091Pass *createAggressiveDCEPass() { return new ADCE(); }
92
93
94void ADCE::markBlockAlive(BasicBlock *BB) {
95 // Mark the basic block as being newly ALIVE... and mark all branches that
96 // this block is control dependant on as being alive also...
97 //
98 DominanceFrontier &CDG =
99 getAnalysis<DominanceFrontier>(DominanceFrontier::PostDomID);
100
101 DominanceFrontier::const_iterator It = CDG.find(BB);
102 if (It != CDG.end()) {
103 // Get the blocks that this node is control dependant on...
104 const DominanceFrontier::DomSetType &CDB = It->second;
105 for_each(CDB.begin(), CDB.end(), // Mark all their terminators as live
106 bind_obj(this, &ADCE::markTerminatorLive));
107 }
108
109 // If this basic block is live, then the terminator must be as well!
110 markTerminatorLive(BB);
Chris Lattner019f3642002-05-06 17:27:57 +0000111}
Chris Lattnerb28986f2001-06-30 06:39:11 +0000112
113
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000114// doADCE() - Run the Aggressive Dead Code Elimination algorithm, returning
Chris Lattnerc8e66542002-04-27 06:56:12 +0000115// true if the function was modified.
Chris Lattnerb28986f2001-06-30 06:39:11 +0000116//
Chris Lattner559f0ee2002-05-22 21:32:16 +0000117bool ADCE::doADCE() {
118 bool MadeChanges = false;
Chris Lattneracfd27d2001-09-09 22:26:47 +0000119
Chris Lattnerc8e66542002-04-27 06:56:12 +0000120 // Iterate over all of the instructions in the function, eliminating trivially
Chris Lattneracfd27d2001-09-09 22:26:47 +0000121 // dead instructions, and marking instructions live that are known to be
122 // needed. Perform the walk in depth first order so that we avoid marking any
123 // instructions live in basic blocks that are unreachable. These blocks will
124 // be eliminated later, along with the instructions inside.
125 //
Chris Lattner019f3642002-05-06 17:27:57 +0000126 for (df_iterator<Function*> BBI = df_begin(Func), BBE = df_end(Func);
Chris Lattneracfd27d2001-09-09 22:26:47 +0000127 BBI != BBE; ++BBI) {
128 BasicBlock *BB = *BBI;
129 for (BasicBlock::iterator II = BB->begin(), EI = BB->end(); II != EI; ) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000130 if (II->hasSideEffects() || II->getOpcode() == Instruction::Ret) {
131 markInstructionLive(II);
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000132 ++II; // Increment the inst iterator if the inst wasn't deleted
Chris Lattner113f4f42002-06-25 16:13:24 +0000133 } else if (isInstructionTriviallyDead(II)) {
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000134 // Remove the instruction from it's basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +0000135 II = BB->getInstList().erase(II);
Chris Lattner559f0ee2002-05-22 21:32:16 +0000136 ++NumInstRemoved;
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000137 MadeChanges = true;
Chris Lattneracfd27d2001-09-09 22:26:47 +0000138 } else {
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000139 ++II; // Increment the inst iterator if the inst wasn't deleted
Chris Lattneracfd27d2001-09-09 22:26:47 +0000140 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000141 }
142 }
143
Chris Lattner71cbd422002-05-22 17:17:27 +0000144 DEBUG(cerr << "Processing work list\n");
Chris Lattnerb28986f2001-06-30 06:39:11 +0000145
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000146 // AliveBlocks - Set of basic blocks that we know have instructions that are
147 // alive in them...
148 //
Chris Lattner7f74a562002-01-20 22:54:45 +0000149 std::set<BasicBlock*> AliveBlocks;
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000150
Chris Lattnerb28986f2001-06-30 06:39:11 +0000151 // Process the work list of instructions that just became live... if they
152 // became live, then that means that all of their operands are neccesary as
153 // well... make them live as well.
154 //
155 while (!WorkList.empty()) {
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000156 Instruction *I = WorkList.back(); // Get an instruction that became live...
Chris Lattnerb28986f2001-06-30 06:39:11 +0000157 WorkList.pop_back();
158
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000159 BasicBlock *BB = I->getParent();
Chris Lattner559f0ee2002-05-22 21:32:16 +0000160 if (!AliveBlocks.count(BB)) { // Basic block not alive yet...
161 AliveBlocks.insert(BB); // Block is now ALIVE!
162 markBlockAlive(BB); // Make it so now!
Chris Lattnerfb8ed0c2001-07-08 18:38:36 +0000163 }
164
Chris Lattner559f0ee2002-05-22 21:32:16 +0000165 // PHI nodes are a special case, because the incoming values are actually
166 // defined in the predecessor nodes of this block, meaning that the PHI
167 // makes the predecessors alive.
168 //
169 if (PHINode *PN = dyn_cast<PHINode>(I))
170 for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB); PI != PE; ++PI)
171 if (!AliveBlocks.count(*PI)) {
172 AliveBlocks.insert(BB); // Block is now ALIVE!
173 markBlockAlive(*PI);
174 }
175
Chris Lattneracfd27d2001-09-09 22:26:47 +0000176 // Loop over all of the operands of the live instruction, making sure that
177 // they are known to be alive as well...
178 //
Chris Lattnerc1496bda2002-05-07 22:11:39 +0000179 for (unsigned op = 0, End = I->getNumOperands(); op != End; ++op)
Chris Lattner4b717c02001-10-01 16:18:37 +0000180 if (Instruction *Operand = dyn_cast<Instruction>(I->getOperand(op)))
Chris Lattneracfd27d2001-09-09 22:26:47 +0000181 markInstructionLive(Operand);
Chris Lattnerb28986f2001-06-30 06:39:11 +0000182 }
183
Chris Lattner71cbd422002-05-22 17:17:27 +0000184 if (DebugFlag) {
185 cerr << "Current Function: X = Live\n";
186 for (Function::iterator I = Func->begin(), E = Func->end(); I != E; ++I)
Chris Lattner113f4f42002-06-25 16:13:24 +0000187 for (BasicBlock::iterator BI = I->begin(), BE = I->end(); BI != BE; ++BI){
188 if (LiveSet.count(BI)) cerr << "X ";
Chris Lattner71cbd422002-05-22 17:17:27 +0000189 cerr << *BI;
190 }
191 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000192
Chris Lattner559f0ee2002-05-22 21:32:16 +0000193 // Find the first postdominator of the entry node that is alive. Make it the
194 // new entry node...
Chris Lattnerb28986f2001-06-30 06:39:11 +0000195 //
Chris Lattner559f0ee2002-05-22 21:32:16 +0000196 DominatorTree &DT = getAnalysis<DominatorTree>(DominatorTree::PostDomID);
Chris Lattnerb28986f2001-06-30 06:39:11 +0000197
Chris Lattner559f0ee2002-05-22 21:32:16 +0000198 // If there are some blocks dead...
199 if (AliveBlocks.size() != Func->size()) {
200 // Insert a new entry node to eliminate the entry node as a special case.
201 BasicBlock *NewEntry = new BasicBlock();
Chris Lattner113f4f42002-06-25 16:13:24 +0000202 NewEntry->getInstList().push_back(new BranchInst(&Func->front()));
203 Func->getBasicBlockList().push_front(NewEntry);
Chris Lattner559f0ee2002-05-22 21:32:16 +0000204 AliveBlocks.insert(NewEntry); // This block is always alive!
205
206 // Loop over all of the alive blocks in the function. If any successor
207 // blocks are not alive, we adjust the outgoing branches to branch to the
208 // first live postdominator of the live block, adjusting any PHI nodes in
209 // the block to reflect this.
210 //
211 for (Function::iterator I = Func->begin(), E = Func->end(); I != E; ++I)
Chris Lattner113f4f42002-06-25 16:13:24 +0000212 if (AliveBlocks.count(I)) {
213 BasicBlock *BB = I;
Chris Lattner559f0ee2002-05-22 21:32:16 +0000214 TerminatorInst *TI = BB->getTerminator();
215
216 // Loop over all of the successors, looking for ones that are not alive
217 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i)
218 if (!AliveBlocks.count(TI->getSuccessor(i))) {
219 // Scan up the postdominator tree, looking for the first
220 // postdominator that is alive, and the last postdominator that is
221 // dead...
222 //
223 DominatorTree::Node *LastNode = DT[TI->getSuccessor(i)];
224 DominatorTree::Node *NextNode = LastNode->getIDom();
225 while (!AliveBlocks.count(NextNode->getNode())) {
226 LastNode = NextNode;
227 NextNode = NextNode->getIDom();
228 }
229
230 // Get the basic blocks that we need...
231 BasicBlock *LastDead = LastNode->getNode();
232 BasicBlock *NextAlive = NextNode->getNode();
233
234 // Make the conditional branch now go to the next alive block...
235 TI->getSuccessor(i)->removePredecessor(BB);
236 TI->setSuccessor(i, NextAlive);
237
238 // If there are PHI nodes in NextAlive, we need to add entries to
239 // the PHI nodes for the new incoming edge. The incoming values
240 // should be identical to the incoming values for LastDead.
241 //
242 for (BasicBlock::iterator II = NextAlive->begin();
Chris Lattner113f4f42002-06-25 16:13:24 +0000243 PHINode *PN = dyn_cast<PHINode>(&*II); ++II) {
Chris Lattner559f0ee2002-05-22 21:32:16 +0000244 // Get the incoming value for LastDead...
245 int OldIdx = PN->getBasicBlockIndex(LastDead);
246 assert(OldIdx != -1 && "LastDead is not a pred of NextAlive!");
247 Value *InVal = PN->getIncomingValue(OldIdx);
248
249 // Add an incoming value for BB now...
250 PN->addIncoming(InVal, BB);
251 }
252 }
Chris Lattnerbad1b4d2002-05-10 15:37:35 +0000253
Chris Lattner559f0ee2002-05-22 21:32:16 +0000254 // Now loop over all of the instructions in the basic block, telling
255 // dead instructions to drop their references. This is so that the next
256 // sweep over the program can safely delete dead instructions without
257 // other dead instructions still refering to them.
258 //
Chris Lattner113f4f42002-06-25 16:13:24 +0000259 for (BasicBlock::iterator I = BB->begin(), E = --BB->end(); I != E; ++I)
260 if (!LiveSet.count(I)) // Is this instruction alive?
261 I->dropAllReferences(); // Nope, drop references...
Chris Lattner559f0ee2002-05-22 21:32:16 +0000262 }
Chris Lattneracfd27d2001-09-09 22:26:47 +0000263 }
264
Chris Lattner194138c2002-05-28 21:38:16 +0000265 // Loop over all of the basic blocks in the function, dropping references of
266 // the dead basic blocks
Chris Lattner559f0ee2002-05-22 21:32:16 +0000267 //
Chris Lattner113f4f42002-06-25 16:13:24 +0000268 for (Function::iterator BB = Func->begin(), E = Func->end(); BB != E; ++BB) {
Chris Lattner194138c2002-05-28 21:38:16 +0000269 if (!AliveBlocks.count(BB)) {
Chris Lattner559f0ee2002-05-22 21:32:16 +0000270 // Remove all outgoing edges from this basic block and convert the
271 // terminator into a return instruction.
272 vector<BasicBlock*> Succs(succ_begin(BB), succ_end(BB));
273
274 if (!Succs.empty()) {
275 // Loop over all of the successors, removing this block from PHI node
276 // entries that might be in the block...
277 while (!Succs.empty()) {
278 Succs.back()->removePredecessor(BB);
279 Succs.pop_back();
280 }
281
282 // Delete the old terminator instruction...
Chris Lattner113f4f42002-06-25 16:13:24 +0000283 BB->getInstList().pop_back();
Chris Lattner559f0ee2002-05-22 21:32:16 +0000284 const Type *RetTy = Func->getReturnType();
285 Instruction *New = new ReturnInst(RetTy != Type::VoidTy ?
286 Constant::getNullValue(RetTy) : 0);
287 BB->getInstList().push_back(New);
288 }
289
290 BB->dropAllReferences();
291 ++NumBlockRemoved;
292 MadeChanges = true;
293 }
294 }
Chris Lattnerbad1b4d2002-05-10 15:37:35 +0000295
Chris Lattner194138c2002-05-28 21:38:16 +0000296 // Now loop through all of the blocks and delete the dead ones. We can safely
297 // do this now because we know that there are no references to dead blocks
298 // (because they have dropped all of their references... we also remove dead
299 // instructions from alive blocks.
Chris Lattneracfd27d2001-09-09 22:26:47 +0000300 //
Chris Lattner559f0ee2002-05-22 21:32:16 +0000301 for (Function::iterator BI = Func->begin(); BI != Func->end(); )
Chris Lattner113f4f42002-06-25 16:13:24 +0000302 if (!AliveBlocks.count(BI))
303 BI = Func->getBasicBlockList().erase(BI);
Chris Lattner194138c2002-05-28 21:38:16 +0000304 else {
Chris Lattner113f4f42002-06-25 16:13:24 +0000305 for (BasicBlock::iterator II = BI->begin(); II != --BI->end(); )
306 if (!LiveSet.count(II)) { // Is this instruction alive?
Chris Lattner194138c2002-05-28 21:38:16 +0000307 // Nope... remove the instruction from it's basic block...
Chris Lattner113f4f42002-06-25 16:13:24 +0000308 II = BI->getInstList().erase(II);
Chris Lattner194138c2002-05-28 21:38:16 +0000309 ++NumInstRemoved;
310 MadeChanges = true;
311 } else {
312 ++II;
313 }
314
Chris Lattner559f0ee2002-05-22 21:32:16 +0000315 ++BI; // Increment iterator...
Chris Lattner194138c2002-05-28 21:38:16 +0000316 }
Chris Lattnerbad1b4d2002-05-10 15:37:35 +0000317
Chris Lattner559f0ee2002-05-22 21:32:16 +0000318 return MadeChanges;
Chris Lattnerb28986f2001-06-30 06:39:11 +0000319}