blob: 488f494b4b47cb21f505858fdefc291cb584ba3b [file] [log] [blame]
Chris Lattnerea54ab92002-05-07 22:11:39 +00001//===- ADCE.cpp - Code to perform aggressive dead code elimination --------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattner02e90d52001-06-30 06:39:11 +00009//
Chris Lattnerea54ab92002-05-07 22:11:39 +000010// This file implements "aggressive" dead code elimination. ADCE is DCe where
Misha Brukmanfd939082005-04-21 23:48:37 +000011// values are assumed to be dead until proven otherwise. This is similar to
Chris Lattner02e90d52001-06-30 06:39:11 +000012// SCCP, except applied to the liveness of values.
13//
14//===----------------------------------------------------------------------===//
15
Chris Lattner022103b2002-05-07 20:03:00 +000016#include "llvm/Transforms/Scalar.h"
Chris Lattner387bc132004-12-12 23:40:17 +000017#include "llvm/Constants.h"
Chris Lattnerede6ac62004-04-10 06:53:09 +000018#include "llvm/Instructions.h"
Chris Lattnerede6ac62004-04-10 06:53:09 +000019#include "llvm/Analysis/AliasAnalysis.h"
20#include "llvm/Analysis/PostDominators.h"
Chris Lattner221d6882002-02-12 21:07:25 +000021#include "llvm/Support/CFG.h"
Chris Lattnerbd1a90e2003-12-19 09:08:34 +000022#include "llvm/Transforms/Utils/BasicBlockUtils.h"
23#include "llvm/Transforms/Utils/Local.h"
24#include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000025#include "llvm/Support/Debug.h"
26#include "llvm/ADT/DepthFirstIterator.h"
27#include "llvm/ADT/Statistic.h"
28#include "llvm/ADT/STLExtras.h"
Chris Lattner72f1e992001-07-08 18:38:36 +000029#include <algorithm>
Chris Lattnerbd1a90e2003-12-19 09:08:34 +000030using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000031
Chris Lattner492d4a92005-10-24 01:40:23 +000032static IncludeFile X((void*)createUnifyFunctionExitNodesPass);
33
Chris Lattnerdfe81ab2002-05-06 17:27:57 +000034namespace {
Chris Lattnera92f6962002-10-01 22:38:41 +000035 Statistic<> NumBlockRemoved("adce", "Number of basic blocks removed");
36 Statistic<> NumInstRemoved ("adce", "Number of instructions removed");
Chris Lattnerede6ac62004-04-10 06:53:09 +000037 Statistic<> NumCallRemoved ("adce", "Number of calls and invokes removed");
Chris Lattnerdfe81ab2002-05-06 17:27:57 +000038
Chris Lattner02e90d52001-06-30 06:39:11 +000039//===----------------------------------------------------------------------===//
40// ADCE Class
41//
Chris Lattnerea54ab92002-05-07 22:11:39 +000042// This class does all of the work of Aggressive Dead Code Elimination.
Chris Lattner02e90d52001-06-30 06:39:11 +000043// It's public interface consists of a constructor and a doADCE() method.
44//
Chris Lattnerdfe81ab2002-05-06 17:27:57 +000045class ADCE : public FunctionPass {
46 Function *Func; // The function that we are working on
Chris Lattner697954c2002-01-20 22:54:45 +000047 std::vector<Instruction*> WorkList; // Instructions that just became live
48 std::set<Instruction*> LiveSet; // The set of live instructions
Chris Lattner02e90d52001-06-30 06:39:11 +000049
50 //===--------------------------------------------------------------------===//
51 // The public interface for this class
52 //
53public:
Chris Lattnerd9036a12002-05-22 21:32:16 +000054 // Execute the Aggressive Dead Code Elimination Algorithm
Chris Lattnerdfe81ab2002-05-06 17:27:57 +000055 //
Chris Lattner7e708292002-06-25 16:13:24 +000056 virtual bool runOnFunction(Function &F) {
57 Func = &F;
Chris Lattnerd9036a12002-05-22 21:32:16 +000058 bool Changed = doADCE();
Chris Lattnerdfe81ab2002-05-06 17:27:57 +000059 assert(WorkList.empty());
60 LiveSet.clear();
Chris Lattnerd9036a12002-05-22 21:32:16 +000061 return Changed;
Chris Lattnerdfe81ab2002-05-06 17:27:57 +000062 }
63 // getAnalysisUsage - We require post dominance frontiers (aka Control
64 // Dependence Graph)
65 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerbd1a90e2003-12-19 09:08:34 +000066 // We require that all function nodes are unified, because otherwise code
67 // can be marked live that wouldn't necessarily be otherwise.
68 AU.addRequired<UnifyFunctionExitNodes>();
Chris Lattnerede6ac62004-04-10 06:53:09 +000069 AU.addRequired<AliasAnalysis>();
Chris Lattner5f0eb8d2002-08-08 19:01:30 +000070 AU.addRequired<PostDominatorTree>();
71 AU.addRequired<PostDominanceFrontier>();
Chris Lattnerdfe81ab2002-05-06 17:27:57 +000072 }
Chris Lattner02e90d52001-06-30 06:39:11 +000073
Chris Lattner02e90d52001-06-30 06:39:11 +000074
75 //===--------------------------------------------------------------------===//
76 // The implementation of this class
77 //
78private:
Chris Lattnerea54ab92002-05-07 22:11:39 +000079 // doADCE() - Run the Aggressive Dead Code Elimination algorithm, returning
Chris Lattnerdfe81ab2002-05-06 17:27:57 +000080 // true if the function was modified.
81 //
Chris Lattnerd9036a12002-05-22 21:32:16 +000082 bool doADCE();
83
84 void markBlockAlive(BasicBlock *BB);
Chris Lattnerdfe81ab2002-05-06 17:27:57 +000085
Chris Lattner446698b2002-07-30 00:22:34 +000086
Chris Lattner387bc132004-12-12 23:40:17 +000087 // deleteDeadInstructionsInLiveBlock - Loop over all of the instructions in
88 // the specified basic block, deleting ones that are dead according to
89 // LiveSet.
90 bool deleteDeadInstructionsInLiveBlock(BasicBlock *BB);
Chris Lattner446698b2002-07-30 00:22:34 +000091
Chris Lattner837e42c2003-06-24 23:02:45 +000092 TerminatorInst *convertToUnconditionalBranch(TerminatorInst *TI);
93
Chris Lattner02e90d52001-06-30 06:39:11 +000094 inline void markInstructionLive(Instruction *I) {
Chris Lattner188839a2004-12-12 22:16:13 +000095 if (!LiveSet.insert(I).second) return;
Chris Lattner2fc12302004-07-15 01:50:47 +000096 DEBUG(std::cerr << "Insn Live: " << *I);
Chris Lattner02e90d52001-06-30 06:39:11 +000097 WorkList.push_back(I);
98 }
99
Chris Lattner72f1e992001-07-08 18:38:36 +0000100 inline void markTerminatorLive(const BasicBlock *BB) {
Chris Lattner2fc12302004-07-15 01:50:47 +0000101 DEBUG(std::cerr << "Terminator Live: " << *BB->getTerminator());
Chris Lattner545a76c2003-09-10 20:38:14 +0000102 markInstructionLive(const_cast<TerminatorInst*>(BB->getTerminator()));
Chris Lattner72f1e992001-07-08 18:38:36 +0000103 }
Chris Lattner02e90d52001-06-30 06:39:11 +0000104};
105
Chris Lattnera6275cc2002-07-26 21:12:46 +0000106 RegisterOpt<ADCE> X("adce", "Aggressive Dead Code Elimination");
Chris Lattnerdfe81ab2002-05-06 17:27:57 +0000107} // End of anonymous namespace
108
Chris Lattner4b501562004-09-20 04:43:15 +0000109FunctionPass *llvm::createAggressiveDCEPass() { return new ADCE(); }
Chris Lattnerd9036a12002-05-22 21:32:16 +0000110
Chris Lattnerd9036a12002-05-22 21:32:16 +0000111void ADCE::markBlockAlive(BasicBlock *BB) {
112 // Mark the basic block as being newly ALIVE... and mark all branches that
Misha Brukmanef6a6a62003-08-21 22:14:26 +0000113 // this block is control dependent on as being alive also...
Chris Lattnerd9036a12002-05-22 21:32:16 +0000114 //
Chris Lattnerce6ef112002-07-26 18:40:14 +0000115 PostDominanceFrontier &CDG = getAnalysis<PostDominanceFrontier>();
Chris Lattnerd9036a12002-05-22 21:32:16 +0000116
Chris Lattnerce6ef112002-07-26 18:40:14 +0000117 PostDominanceFrontier::const_iterator It = CDG.find(BB);
Chris Lattnerd9036a12002-05-22 21:32:16 +0000118 if (It != CDG.end()) {
Misha Brukmanef6a6a62003-08-21 22:14:26 +0000119 // Get the blocks that this node is control dependent on...
Chris Lattnerce6ef112002-07-26 18:40:14 +0000120 const PostDominanceFrontier::DomSetType &CDB = It->second;
Misha Brukmanfd939082005-04-21 23:48:37 +0000121 for (PostDominanceFrontier::DomSetType::const_iterator I =
Chris Lattnercfa2f8e2005-02-22 23:22:58 +0000122 CDB.begin(), E = CDB.end(); I != E; ++I)
123 markTerminatorLive(*I); // Mark all their terminators as live
Chris Lattnerd9036a12002-05-22 21:32:16 +0000124 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000125
Chris Lattner99c91e02003-06-24 21:49:45 +0000126 // If this basic block is live, and it ends in an unconditional branch, then
127 // the branch is alive as well...
128 if (BranchInst *BI = dyn_cast<BranchInst>(BB->getTerminator()))
129 if (BI->isUnconditional())
130 markTerminatorLive(BB);
Chris Lattnerdfe81ab2002-05-06 17:27:57 +0000131}
Chris Lattner02e90d52001-06-30 06:39:11 +0000132
Chris Lattner387bc132004-12-12 23:40:17 +0000133// deleteDeadInstructionsInLiveBlock - Loop over all of the instructions in the
134// specified basic block, deleting ones that are dead according to LiveSet.
135bool ADCE::deleteDeadInstructionsInLiveBlock(BasicBlock *BB) {
Chris Lattner446698b2002-07-30 00:22:34 +0000136 bool Changed = false;
Chris Lattner387bc132004-12-12 23:40:17 +0000137 for (BasicBlock::iterator II = BB->begin(), E = --BB->end(); II != E; ) {
138 Instruction *I = II++;
Chris Lattner446698b2002-07-30 00:22:34 +0000139 if (!LiveSet.count(I)) { // Is this instruction alive?
Chris Lattner387bc132004-12-12 23:40:17 +0000140 if (!I->use_empty())
141 I->replaceAllUsesWith(UndefValue::get(I->getType()));
Chris Lattner17177602004-04-10 07:02:02 +0000142
Chris Lattner387bc132004-12-12 23:40:17 +0000143 // Nope... remove the instruction from it's basic block...
144 if (isa<CallInst>(I))
145 ++NumCallRemoved;
146 else
Chris Lattner27c694b2004-04-10 07:27:48 +0000147 ++NumInstRemoved;
Chris Lattner387bc132004-12-12 23:40:17 +0000148 BB->getInstList().erase(I);
149 Changed = true;
Chris Lattner446698b2002-07-30 00:22:34 +0000150 }
Chris Lattner387bc132004-12-12 23:40:17 +0000151 }
Chris Lattner446698b2002-07-30 00:22:34 +0000152 return Changed;
153}
154
Chris Lattner02e90d52001-06-30 06:39:11 +0000155
Chris Lattner837e42c2003-06-24 23:02:45 +0000156/// convertToUnconditionalBranch - Transform this conditional terminator
157/// instruction into an unconditional branch because we don't care which of the
158/// successors it goes to. This eliminate a use of the condition as well.
159///
160TerminatorInst *ADCE::convertToUnconditionalBranch(TerminatorInst *TI) {
161 BranchInst *NB = new BranchInst(TI->getSuccessor(0), TI);
162 BasicBlock *BB = TI->getParent();
163
164 // Remove entries from PHI nodes to avoid confusing ourself later...
165 for (unsigned i = 1, e = TI->getNumSuccessors(); i != e; ++i)
166 TI->getSuccessor(i)->removePredecessor(BB);
Misha Brukmanfd939082005-04-21 23:48:37 +0000167
Chris Lattner837e42c2003-06-24 23:02:45 +0000168 // Delete the old branch itself...
169 BB->getInstList().erase(TI);
170 return NB;
171}
172
173
Chris Lattnerea54ab92002-05-07 22:11:39 +0000174// doADCE() - Run the Aggressive Dead Code Elimination algorithm, returning
Chris Lattnerf57b8452002-04-27 06:56:12 +0000175// true if the function was modified.
Chris Lattner02e90d52001-06-30 06:39:11 +0000176//
Chris Lattnerd9036a12002-05-22 21:32:16 +0000177bool ADCE::doADCE() {
178 bool MadeChanges = false;
Chris Lattnerb8259dd2001-09-09 22:26:47 +0000179
Chris Lattnera5f41032004-04-10 18:06:21 +0000180 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
181
182
183 // Iterate over all invokes in the function, turning invokes into calls if
184 // they cannot throw.
185 for (Function::iterator BB = Func->begin(), E = Func->end(); BB != E; ++BB)
186 if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator()))
187 if (Function *F = II->getCalledFunction())
188 if (AA.onlyReadsMemory(F)) {
189 // The function cannot unwind. Convert it to a call with a branch
190 // after it to the normal destination.
191 std::vector<Value*> Args(II->op_begin()+3, II->op_end());
192 std::string Name = II->getName(); II->setName("");
Chris Lattnere4370262005-05-14 12:25:32 +0000193 CallInst *NewCall = new CallInst(F, Args, Name, II);
194 NewCall->setCallingConv(II->getCallingConv());
Chris Lattnera5f41032004-04-10 18:06:21 +0000195 II->replaceAllUsesWith(NewCall);
196 new BranchInst(II->getNormalDest(), II);
197
198 // Update PHI nodes in the unwind destination
199 II->getUnwindDest()->removePredecessor(BB);
200 BB->getInstList().erase(II);
201
202 if (NewCall->use_empty()) {
203 BB->getInstList().erase(NewCall);
204 ++NumCallRemoved;
205 }
206 }
207
Chris Lattnerf57b8452002-04-27 06:56:12 +0000208 // Iterate over all of the instructions in the function, eliminating trivially
Misha Brukmanfd939082005-04-21 23:48:37 +0000209 // dead instructions, and marking instructions live that are known to be
Chris Lattnerb8259dd2001-09-09 22:26:47 +0000210 // needed. Perform the walk in depth first order so that we avoid marking any
211 // instructions live in basic blocks that are unreachable. These blocks will
212 // be eliminated later, along with the instructions inside.
213 //
Chris Lattnerb9110c62004-05-04 17:00:46 +0000214 std::set<BasicBlock*> ReachableBBs;
215 for (df_ext_iterator<BasicBlock*>
216 BBI = df_ext_begin(&Func->front(), ReachableBBs),
217 BBE = df_ext_end(&Func->front(), ReachableBBs); BBI != BBE; ++BBI) {
Chris Lattnerb8259dd2001-09-09 22:26:47 +0000218 BasicBlock *BB = *BBI;
219 for (BasicBlock::iterator II = BB->begin(), EI = BB->end(); II != EI; ) {
Chris Lattnerede6ac62004-04-10 06:53:09 +0000220 Instruction *I = II++;
221 if (CallInst *CI = dyn_cast<CallInst>(I)) {
222 Function *F = CI->getCalledFunction();
Chris Lattnera5f41032004-04-10 18:06:21 +0000223 if (F && AA.onlyReadsMemory(F)) {
Chris Lattnerede6ac62004-04-10 06:53:09 +0000224 if (CI->use_empty()) {
225 BB->getInstList().erase(CI);
226 ++NumCallRemoved;
227 }
228 } else {
229 markInstructionLive(I);
230 }
Chris Lattnerede6ac62004-04-10 06:53:09 +0000231 } else if (I->mayWriteToMemory() || isa<ReturnInst>(I) ||
Chris Lattnerc7ff6c82004-10-17 23:45:06 +0000232 isa<UnwindInst>(I) || isa<UnreachableInst>(I)) {
233 // FIXME: Unreachable instructions should not be marked intrinsically
234 // live here.
Jeff Cohen9d809302005-04-23 21:38:35 +0000235 markInstructionLive(I);
Chris Lattnerede6ac62004-04-10 06:53:09 +0000236 } else if (isInstructionTriviallyDead(I)) {
Chris Lattnerea54ab92002-05-07 22:11:39 +0000237 // Remove the instruction from it's basic block...
Chris Lattnerede6ac62004-04-10 06:53:09 +0000238 BB->getInstList().erase(I);
Chris Lattnerd9036a12002-05-22 21:32:16 +0000239 ++NumInstRemoved;
Chris Lattnerb8259dd2001-09-09 22:26:47 +0000240 }
Chris Lattnerb8259dd2001-09-09 22:26:47 +0000241 }
242 }
243
Chris Lattner34e353e2003-06-16 12:10:45 +0000244 // Check to ensure we have an exit node for this CFG. If we don't, we won't
245 // have any post-dominance information, thus we cannot perform our
246 // transformations safely.
247 //
248 PostDominatorTree &DT = getAnalysis<PostDominatorTree>();
Chris Lattner02a3be02003-09-20 14:39:18 +0000249 if (DT[&Func->getEntryBlock()] == 0) {
Chris Lattner34e353e2003-06-16 12:10:45 +0000250 WorkList.clear();
251 return MadeChanges;
252 }
253
Chris Lattnerfaa45ce2003-11-16 21:39:27 +0000254 // Scan the function marking blocks without post-dominance information as
255 // live. Blocks without post-dominance information occur when there is an
256 // infinite loop in the program. Because the infinite loop could contain a
257 // function which unwinds, exits or has side-effects, we don't want to delete
258 // the infinite loop or those blocks leading up to it.
259 for (Function::iterator I = Func->begin(), E = Func->end(); I != E; ++I)
Chris Lattner1a84bd32005-02-17 19:28:49 +0000260 if (DT[I] == 0 && ReachableBBs.count(I))
Chris Lattnerfaa45ce2003-11-16 21:39:27 +0000261 for (pred_iterator PI = pred_begin(I), E = pred_end(I); PI != E; ++PI)
262 markInstructionLive((*PI)->getTerminator());
263
Chris Lattnerde579f12003-05-22 22:00:07 +0000264 DEBUG(std::cerr << "Processing work list\n");
Chris Lattner02e90d52001-06-30 06:39:11 +0000265
Chris Lattner72f1e992001-07-08 18:38:36 +0000266 // AliveBlocks - Set of basic blocks that we know have instructions that are
267 // alive in them...
268 //
Chris Lattner697954c2002-01-20 22:54:45 +0000269 std::set<BasicBlock*> AliveBlocks;
Chris Lattner72f1e992001-07-08 18:38:36 +0000270
Chris Lattner02e90d52001-06-30 06:39:11 +0000271 // Process the work list of instructions that just became live... if they
Misha Brukman5560c9d2003-08-18 14:43:39 +0000272 // became live, then that means that all of their operands are necessary as
Chris Lattner02e90d52001-06-30 06:39:11 +0000273 // well... make them live as well.
274 //
275 while (!WorkList.empty()) {
Chris Lattner72f1e992001-07-08 18:38:36 +0000276 Instruction *I = WorkList.back(); // Get an instruction that became live...
Chris Lattner02e90d52001-06-30 06:39:11 +0000277 WorkList.pop_back();
278
Chris Lattner72f1e992001-07-08 18:38:36 +0000279 BasicBlock *BB = I->getParent();
Chris Lattnerb9110c62004-05-04 17:00:46 +0000280 if (!ReachableBBs.count(BB)) continue;
Chris Lattner4e51ccd2004-12-12 22:22:18 +0000281 if (AliveBlocks.insert(BB).second) // Basic block not alive yet.
Chris Lattnerd9036a12002-05-22 21:32:16 +0000282 markBlockAlive(BB); // Make it so now!
Chris Lattner72f1e992001-07-08 18:38:36 +0000283
Chris Lattnerd9036a12002-05-22 21:32:16 +0000284 // PHI nodes are a special case, because the incoming values are actually
285 // defined in the predecessor nodes of this block, meaning that the PHI
286 // makes the predecessors alive.
287 //
Chris Lattner1a84bd32005-02-17 19:28:49 +0000288 if (PHINode *PN = dyn_cast<PHINode>(I)) {
289 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
290 // If the incoming edge is clearly dead, it won't have control
291 // dependence information. Do not mark it live.
292 BasicBlock *PredBB = PN->getIncomingBlock(i);
293 if (ReachableBBs.count(PredBB)) {
294 // FIXME: This should mark the control dependent edge as live, not
295 // necessarily the predecessor itself!
296 if (AliveBlocks.insert(PredBB).second)
297 markBlockAlive(PN->getIncomingBlock(i)); // Block is newly ALIVE!
298 if (Instruction *Op = dyn_cast<Instruction>(PN->getIncomingValue(i)))
299 markInstructionLive(Op);
300 }
301 }
302 } else {
303 // Loop over all of the operands of the live instruction, making sure that
304 // they are known to be alive as well.
305 //
306 for (unsigned op = 0, End = I->getNumOperands(); op != End; ++op)
307 if (Instruction *Operand = dyn_cast<Instruction>(I->getOperand(op)))
308 markInstructionLive(Operand);
309 }
Chris Lattner02e90d52001-06-30 06:39:11 +0000310 }
311
Chris Lattnerde579f12003-05-22 22:00:07 +0000312 DEBUG(
313 std::cerr << "Current Function: X = Live\n";
Chris Lattner34e353e2003-06-16 12:10:45 +0000314 for (Function::iterator I = Func->begin(), E = Func->end(); I != E; ++I){
315 std::cerr << I->getName() << ":\t"
316 << (AliveBlocks.count(I) ? "LIVE\n" : "DEAD\n");
Chris Lattner7e708292002-06-25 16:13:24 +0000317 for (BasicBlock::iterator BI = I->begin(), BE = I->end(); BI != BE; ++BI){
Chris Lattnerde579f12003-05-22 22:00:07 +0000318 if (LiveSet.count(BI)) std::cerr << "X ";
319 std::cerr << *BI;
Chris Lattnerf016ea42002-05-22 17:17:27 +0000320 }
Chris Lattner34e353e2003-06-16 12:10:45 +0000321 });
Chris Lattnerb8259dd2001-09-09 22:26:47 +0000322
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000323 // All blocks being live is a common case, handle it specially.
Chris Lattner446698b2002-07-30 00:22:34 +0000324 if (AliveBlocks.size() == Func->size()) { // No dead blocks?
Chris Lattner837e42c2003-06-24 23:02:45 +0000325 for (Function::iterator I = Func->begin(), E = Func->end(); I != E; ++I) {
Chris Lattner387bc132004-12-12 23:40:17 +0000326 // Loop over all of the instructions in the function deleting instructions
327 // to drop their references.
328 deleteDeadInstructionsInLiveBlock(I);
Chris Lattner837e42c2003-06-24 23:02:45 +0000329
330 // Check to make sure the terminator instruction is live. If it isn't,
331 // this means that the condition that it branches on (we know it is not an
332 // unconditional branch), is not needed to make the decision of where to
333 // go to, because all outgoing edges go to the same place. We must remove
334 // the use of the condition (because it's probably dead), so we convert
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000335 // the terminator to an unconditional branch.
Chris Lattner837e42c2003-06-24 23:02:45 +0000336 //
337 TerminatorInst *TI = I->getTerminator();
338 if (!LiveSet.count(TI))
339 convertToUnconditionalBranch(TI);
340 }
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000341
342 return MadeChanges;
343 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000344
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000345
346 // If the entry node is dead, insert a new entry node to eliminate the entry
347 // node as a special case.
348 //
349 if (!AliveBlocks.count(&Func->front())) {
350 BasicBlock *NewEntry = new BasicBlock();
351 new BranchInst(&Func->front(), NewEntry);
352 Func->getBasicBlockList().push_front(NewEntry);
353 AliveBlocks.insert(NewEntry); // This block is always alive!
354 LiveSet.insert(NewEntry->getTerminator()); // The branch is live
355 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000356
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000357 // Loop over all of the alive blocks in the function. If any successor
358 // blocks are not alive, we adjust the outgoing branches to branch to the
359 // first live postdominator of the live block, adjusting any PHI nodes in
360 // the block to reflect this.
361 //
362 for (Function::iterator I = Func->begin(), E = Func->end(); I != E; ++I)
363 if (AliveBlocks.count(I)) {
364 BasicBlock *BB = I;
365 TerminatorInst *TI = BB->getTerminator();
Misha Brukmanfd939082005-04-21 23:48:37 +0000366
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000367 // If the terminator instruction is alive, but the block it is contained
368 // in IS alive, this means that this terminator is a conditional branch on
369 // a condition that doesn't matter. Make it an unconditional branch to
370 // ONE of the successors. This has the side effect of dropping a use of
371 // the conditional value, which may also be dead.
372 if (!LiveSet.count(TI))
373 TI = convertToUnconditionalBranch(TI);
Chris Lattner99c91e02003-06-24 21:49:45 +0000374
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000375 // Loop over all of the successors, looking for ones that are not alive.
376 // We cannot save the number of successors in the terminator instruction
Chris Lattner1a84bd32005-02-17 19:28:49 +0000377 // here because we may remove them if we don't have a postdominator.
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000378 //
379 for (unsigned i = 0; i != TI->getNumSuccessors(); ++i)
380 if (!AliveBlocks.count(TI->getSuccessor(i))) {
381 // Scan up the postdominator tree, looking for the first
382 // postdominator that is alive, and the last postdominator that is
383 // dead...
384 //
385 PostDominatorTree::Node *LastNode = DT[TI->getSuccessor(i)];
Chris Lattner1a84bd32005-02-17 19:28:49 +0000386 PostDominatorTree::Node *NextNode = 0;
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000387
Chris Lattner1a84bd32005-02-17 19:28:49 +0000388 if (LastNode) {
389 NextNode = LastNode->getIDom();
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000390 while (!AliveBlocks.count(NextNode->getBlock())) {
391 LastNode = NextNode;
392 NextNode = NextNode->getIDom();
Chris Lattner1a84bd32005-02-17 19:28:49 +0000393 if (NextNode == 0) {
394 LastNode = 0;
395 break;
396 }
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000397 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000398 }
Chris Lattner1a84bd32005-02-17 19:28:49 +0000399
400 // There is a special case here... if there IS no post-dominator for
401 // the block we have nowhere to point our branch to. Instead, convert
402 // it to a return. This can only happen if the code branched into an
403 // infinite loop. Note that this may not be desirable, because we
404 // _are_ altering the behavior of the code. This is a well known
405 // drawback of ADCE, so in the future if we choose to revisit the
406 // decision, this is where it should be.
407 //
408 if (LastNode == 0) { // No postdominator!
409 if (!isa<InvokeInst>(TI)) {
410 // Call RemoveSuccessor to transmogrify the terminator instruction
411 // to not contain the outgoing branch, or to create a new
412 // terminator if the form fundamentally changes (i.e.,
413 // unconditional branch to return). Note that this will change a
414 // branch into an infinite loop into a return instruction!
415 //
416 RemoveSuccessor(TI, i);
Misha Brukmanfd939082005-04-21 23:48:37 +0000417
Chris Lattner1a84bd32005-02-17 19:28:49 +0000418 // RemoveSuccessor may replace TI... make sure we have a fresh
419 // pointer.
420 //
421 TI = BB->getTerminator();
Misha Brukmanfd939082005-04-21 23:48:37 +0000422
Chris Lattner1a84bd32005-02-17 19:28:49 +0000423 // Rescan this successor...
424 --i;
425 } else {
426
427 }
428 } else {
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000429 // Get the basic blocks that we need...
430 BasicBlock *LastDead = LastNode->getBlock();
431 BasicBlock *NextAlive = NextNode->getBlock();
Chris Lattner011de072002-07-29 22:31:39 +0000432
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000433 // Make the conditional branch now go to the next alive block...
434 TI->getSuccessor(i)->removePredecessor(BB);
435 TI->setSuccessor(i, NextAlive);
Chris Lattner011de072002-07-29 22:31:39 +0000436
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000437 // If there are PHI nodes in NextAlive, we need to add entries to
438 // the PHI nodes for the new incoming edge. The incoming values
439 // should be identical to the incoming values for LastDead.
440 //
441 for (BasicBlock::iterator II = NextAlive->begin();
442 isa<PHINode>(II); ++II) {
443 PHINode *PN = cast<PHINode>(II);
444 if (LiveSet.count(PN)) { // Only modify live phi nodes
445 // Get the incoming value for LastDead...
446 int OldIdx = PN->getBasicBlockIndex(LastDead);
447 assert(OldIdx != -1 &&"LastDead is not a pred of NextAlive!");
448 Value *InVal = PN->getIncomingValue(OldIdx);
Misha Brukmanfd939082005-04-21 23:48:37 +0000449
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000450 // Add an incoming value for BB now...
451 PN->addIncoming(InVal, BB);
Reid Spencer2da5c3d2004-09-15 17:06:42 +0000452 }
Chris Lattnerd9036a12002-05-22 21:32:16 +0000453 }
454 }
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000455 }
Chris Lattner55547272002-05-10 15:37:35 +0000456
Chris Lattner6b8efcd2004-12-12 23:49:37 +0000457 // Now loop over all of the instructions in the basic block, deleting
458 // dead instructions. This is so that the next sweep over the program
459 // can safely delete dead instructions without other dead instructions
460 // still referring to them.
461 //
462 deleteDeadInstructionsInLiveBlock(BB);
463 }
Chris Lattnerb8259dd2001-09-09 22:26:47 +0000464
Chris Lattnerd7f268d2003-01-23 02:12:18 +0000465 // Loop over all of the basic blocks in the function, dropping references of
466 // the dead basic blocks. We must do this after the previous step to avoid
467 // dropping references to PHIs which still have entries...
468 //
Chris Lattner387bc132004-12-12 23:40:17 +0000469 std::vector<BasicBlock*> DeadBlocks;
Chris Lattnerd7f268d2003-01-23 02:12:18 +0000470 for (Function::iterator BB = Func->begin(), E = Func->end(); BB != E; ++BB)
Chris Lattner387bc132004-12-12 23:40:17 +0000471 if (!AliveBlocks.count(BB)) {
472 // Remove PHI node entries for this block in live successor blocks.
473 for (succ_iterator SI = succ_begin(BB), E = succ_end(BB); SI != E; ++SI)
474 if (!SI->empty() && isa<PHINode>(SI->front()) && AliveBlocks.count(*SI))
475 (*SI)->removePredecessor(BB);
476
Chris Lattnerd7f268d2003-01-23 02:12:18 +0000477 BB->dropAllReferences();
Chris Lattner387bc132004-12-12 23:40:17 +0000478 MadeChanges = true;
479 DeadBlocks.push_back(BB);
480 }
481
482 NumBlockRemoved += DeadBlocks.size();
Chris Lattner55547272002-05-10 15:37:35 +0000483
Chris Lattner84369b32002-05-28 21:38:16 +0000484 // Now loop through all of the blocks and delete the dead ones. We can safely
485 // do this now because we know that there are no references to dead blocks
Chris Lattner387bc132004-12-12 23:40:17 +0000486 // (because they have dropped all of their references).
487 for (std::vector<BasicBlock*>::iterator I = DeadBlocks.begin(),
488 E = DeadBlocks.end(); I != E; ++I)
489 Func->getBasicBlockList().erase(*I);
Chris Lattner55547272002-05-10 15:37:35 +0000490
Chris Lattnerd9036a12002-05-22 21:32:16 +0000491 return MadeChanges;
Chris Lattner02e90d52001-06-30 06:39:11 +0000492}