2001-06-06 22:29:01 +02:00
|
|
|
//===- DCE.cpp - Code to perform dead code elimination --------------------===//
|
2005-04-22 01:48:37 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 01:48:37 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2002-05-07 06:24:11 +02:00
|
|
|
// This file implements dead inst elimination and dead code elimination.
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2002-05-07 06:24:11 +02:00
|
|
|
// Dead Inst Elimination performs a single pass over the function removing
|
|
|
|
// instructions that are obviously dead. Dead Code Elimination is similar, but
|
|
|
|
// it rechecks instructions that were used by removed instructions to see if
|
|
|
|
// they are newly dead.
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-12-19 22:40:18 +01:00
|
|
|
#define DEBUG_TYPE "dce"
|
2002-05-07 22:03:00 +02:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2002-05-07 20:10:55 +02:00
|
|
|
#include "llvm/Transforms/Utils/Local.h"
|
|
|
|
#include "llvm/Instruction.h"
|
2002-02-26 22:46:54 +01:00
|
|
|
#include "llvm/Pass.h"
|
2002-05-07 06:24:11 +02:00
|
|
|
#include "llvm/Support/InstIterator.h"
|
2004-09-02 00:55:40 +02:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2002-05-07 06:24:11 +02:00
|
|
|
#include <set>
|
2004-01-09 07:02:20 +01:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2006-12-19 22:40:18 +01:00
|
|
|
STATISTIC(DIEEliminated, "Number of insts removed by DIE pass");
|
|
|
|
STATISTIC(DCEEliminated, "Number of insts removed");
|
2002-05-10 17:38:35 +02:00
|
|
|
|
2006-12-19 22:40:18 +01:00
|
|
|
namespace {
|
2002-10-02 00:38:41 +02:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// DeadInstElimination pass implementation
|
|
|
|
//
|
2009-09-02 08:11:42 +02:00
|
|
|
struct DeadInstElimination : public BasicBlockPass {
|
2007-05-06 15:37:16 +02:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2009-02-18 06:09:16 +01:00
|
|
|
DeadInstElimination() : BasicBlockPass(&ID) {}
|
2002-06-25 18:13:24 +02:00
|
|
|
virtual bool runOnBasicBlock(BasicBlock &BB) {
|
2002-05-07 06:24:11 +02:00
|
|
|
bool Changed = false;
|
2008-11-27 23:46:09 +01:00
|
|
|
for (BasicBlock::iterator DI = BB.begin(); DI != BB.end(); ) {
|
|
|
|
Instruction *Inst = DI++;
|
|
|
|
if (isInstructionTriviallyDead(Inst)) {
|
|
|
|
Inst->eraseFromParent();
|
2002-05-07 06:24:11 +02:00
|
|
|
Changed = true;
|
2002-05-10 17:38:35 +02:00
|
|
|
++DIEEliminated;
|
2008-11-27 23:46:09 +01:00
|
|
|
}
|
|
|
|
}
|
2002-05-07 06:24:11 +02:00
|
|
|
return Changed;
|
|
|
|
}
|
2002-04-29 16:57:45 +02:00
|
|
|
|
2002-05-07 06:24:11 +02:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
2002-10-21 22:00:28 +02:00
|
|
|
AU.setPreservesCFG();
|
2002-05-07 06:24:11 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2002-02-26 22:46:54 +01:00
|
|
|
|
2008-05-13 02:00:25 +02:00
|
|
|
char DeadInstElimination::ID = 0;
|
|
|
|
static RegisterPass<DeadInstElimination>
|
|
|
|
X("die", "Dead Instruction Elimination");
|
|
|
|
|
2007-01-26 00:23:25 +01:00
|
|
|
Pass *llvm::createDeadInstEliminationPass() {
|
2002-02-26 22:46:54 +01:00
|
|
|
return new DeadInstElimination();
|
2002-01-23 06:48:24 +01:00
|
|
|
}
|
|
|
|
|
2001-06-07 18:59:26 +02:00
|
|
|
|
2002-05-07 06:24:11 +02:00
|
|
|
namespace {
|
2006-12-19 22:40:18 +01:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// DeadCodeElimination pass implementation
|
|
|
|
//
|
2002-05-07 06:24:11 +02:00
|
|
|
struct DCE : public FunctionPass {
|
2007-05-06 15:37:16 +02:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2008-09-04 19:05:41 +02:00
|
|
|
DCE() : FunctionPass(&ID) {}
|
2007-05-01 23:15:47 +02:00
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
virtual bool runOnFunction(Function &F);
|
2001-06-28 01:41:11 +02:00
|
|
|
|
2002-05-07 06:24:11 +02:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
2002-10-21 22:00:28 +02:00
|
|
|
AU.setPreservesCFG();
|
2001-06-28 01:41:11 +02:00
|
|
|
}
|
2002-05-07 06:24:11 +02:00
|
|
|
};
|
2001-06-07 18:59:26 +02:00
|
|
|
}
|
|
|
|
|
2008-05-13 02:00:25 +02:00
|
|
|
char DCE::ID = 0;
|
|
|
|
static RegisterPass<DCE> Y("dce", "Dead Code Elimination");
|
|
|
|
|
2002-06-25 18:13:24 +02:00
|
|
|
bool DCE::runOnFunction(Function &F) {
|
2002-05-07 06:24:11 +02:00
|
|
|
// Start out with all of the instructions in the worklist...
|
2004-04-27 17:13:33 +02:00
|
|
|
std::vector<Instruction*> WorkList;
|
2005-05-08 20:45:26 +02:00
|
|
|
for (inst_iterator i = inst_begin(F), e = inst_end(F); i != e; ++i)
|
|
|
|
WorkList.push_back(&*i);
|
2005-04-22 01:48:37 +02:00
|
|
|
|
2002-05-07 06:24:11 +02:00
|
|
|
// Loop over the worklist finding instructions that are dead. If they are
|
|
|
|
// dead make them drop all of their uses, making other instructions
|
|
|
|
// potentially dead, and work until the worklist is empty.
|
2001-06-06 22:29:01 +02:00
|
|
|
//
|
2005-05-08 20:45:26 +02:00
|
|
|
bool MadeChange = false;
|
2002-05-07 06:24:11 +02:00
|
|
|
while (!WorkList.empty()) {
|
|
|
|
Instruction *I = WorkList.back();
|
|
|
|
WorkList.pop_back();
|
2005-04-22 01:48:37 +02:00
|
|
|
|
2005-05-08 20:45:26 +02:00
|
|
|
if (isInstructionTriviallyDead(I)) { // If the instruction is dead.
|
2002-05-07 06:24:11 +02:00
|
|
|
// Loop over all of the values that the instruction uses, if there are
|
|
|
|
// instructions being used, add them to the worklist, because they might
|
|
|
|
// go dead after this one is removed.
|
|
|
|
//
|
2004-04-22 00:29:37 +02:00
|
|
|
for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
|
|
|
|
if (Instruction *Used = dyn_cast<Instruction>(*OI))
|
2002-05-07 06:24:11 +02:00
|
|
|
WorkList.push_back(Used);
|
|
|
|
|
2005-05-08 20:45:26 +02:00
|
|
|
// Remove the instruction.
|
|
|
|
I->eraseFromParent();
|
|
|
|
|
|
|
|
// Remove the instruction from the worklist if it still exists in it.
|
2007-12-17 18:39:51 +01:00
|
|
|
for (std::vector<Instruction*>::iterator WI = WorkList.begin();
|
2008-09-19 01:04:18 +02:00
|
|
|
WI != WorkList.end(); ) {
|
|
|
|
if (*WI == I)
|
2007-12-17 18:39:51 +01:00
|
|
|
WI = WorkList.erase(WI);
|
2008-09-19 01:04:18 +02:00
|
|
|
else
|
|
|
|
++WI;
|
|
|
|
}
|
2002-05-07 06:24:11 +02:00
|
|
|
|
2005-05-08 20:45:26 +02:00
|
|
|
MadeChange = true;
|
|
|
|
++DCEEliminated;
|
2001-07-28 19:51:49 +02:00
|
|
|
}
|
|
|
|
}
|
2005-05-08 20:45:26 +02:00
|
|
|
return MadeChange;
|
2002-02-26 22:46:54 +01:00
|
|
|
}
|
|
|
|
|
2004-07-27 19:43:21 +02:00
|
|
|
FunctionPass *llvm::createDeadCodeEliminationPass() {
|
2002-05-07 06:24:11 +02:00
|
|
|
return new DCE();
|
2002-02-26 22:46:54 +01:00
|
|
|
}
|
2003-11-11 23:41:34 +01:00
|
|
|
|