2001-06-06 20:29:01 +00:00
|
|
|
//===- DCE.cpp - Code to perform dead code elimination --------------------===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2002-05-07 04:24:11 +00:00
|
|
|
// This file implements dead inst elimination and dead code elimination.
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
2002-05-07 04:24:11 +00: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 20:29:01 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-12-19 21:40:18 +00:00
|
|
|
#define DEBUG_TYPE "dce"
|
2002-05-07 20:03:00 +00:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/Instruction.h"
|
2002-02-26 21:46:54 +00:00
|
|
|
#include "llvm/Pass.h"
|
2002-05-07 04:24:11 +00:00
|
|
|
#include "llvm/Support/InstIterator.h"
|
2012-08-29 15:32:21 +00:00
|
|
|
#include "llvm/Target/TargetLibraryInfo.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Transforms/Utils/Local.h"
|
2004-01-09 06:02:20 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2006-12-19 21:40:18 +00:00
|
|
|
STATISTIC(DIEEliminated, "Number of insts removed by DIE pass");
|
|
|
|
STATISTIC(DCEEliminated, "Number of insts removed");
|
2002-05-10 15:38:35 +00:00
|
|
|
|
2006-12-19 21:40:18 +00:00
|
|
|
namespace {
|
2002-10-01 22:38:41 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// DeadInstElimination pass implementation
|
|
|
|
//
|
2009-09-02 06:11:42 +00:00
|
|
|
struct DeadInstElimination : public BasicBlockPass {
|
2007-05-06 13:37:16 +00:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2010-10-19 17:21:58 +00:00
|
|
|
DeadInstElimination() : BasicBlockPass(ID) {
|
|
|
|
initializeDeadInstEliminationPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
2002-06-25 16:13:24 +00:00
|
|
|
virtual bool runOnBasicBlock(BasicBlock &BB) {
|
2012-08-29 15:32:21 +00:00
|
|
|
TargetLibraryInfo *TLI = getAnalysisIfAvailable<TargetLibraryInfo>();
|
2002-05-07 04:24:11 +00:00
|
|
|
bool Changed = false;
|
2008-11-27 22:46:09 +00:00
|
|
|
for (BasicBlock::iterator DI = BB.begin(); DI != BB.end(); ) {
|
|
|
|
Instruction *Inst = DI++;
|
2012-08-29 15:32:21 +00:00
|
|
|
if (isInstructionTriviallyDead(Inst, TLI)) {
|
2008-11-27 22:46:09 +00:00
|
|
|
Inst->eraseFromParent();
|
2002-05-07 04:24:11 +00:00
|
|
|
Changed = true;
|
2002-05-10 15:38:35 +00:00
|
|
|
++DIEEliminated;
|
2008-11-27 22:46:09 +00:00
|
|
|
}
|
|
|
|
}
|
2002-05-07 04:24:11 +00:00
|
|
|
return Changed;
|
|
|
|
}
|
2002-04-29 14:57:45 +00:00
|
|
|
|
2002-05-07 04:24:11 +00:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
2002-10-21 20:00:28 +00:00
|
|
|
AU.setPreservesCFG();
|
2002-05-07 04:24:11 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2002-02-26 21:46:54 +00:00
|
|
|
|
2008-05-13 00:00:25 +00:00
|
|
|
char DeadInstElimination::ID = 0;
|
2010-07-21 22:09:45 +00:00
|
|
|
INITIALIZE_PASS(DeadInstElimination, "die",
|
2010-10-07 22:25:06 +00:00
|
|
|
"Dead Instruction Elimination", false, false)
|
2008-05-13 00:00:25 +00:00
|
|
|
|
2007-01-25 23:23:25 +00:00
|
|
|
Pass *llvm::createDeadInstEliminationPass() {
|
2002-02-26 21:46:54 +00:00
|
|
|
return new DeadInstElimination();
|
2002-01-23 05:48:24 +00:00
|
|
|
}
|
|
|
|
|
2001-06-07 16:59:26 +00:00
|
|
|
|
2002-05-07 04:24:11 +00:00
|
|
|
namespace {
|
2006-12-19 21:40:18 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// DeadCodeElimination pass implementation
|
|
|
|
//
|
2002-05-07 04:24:11 +00:00
|
|
|
struct DCE : public FunctionPass {
|
2007-05-06 13:37:16 +00:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2010-10-19 17:21:58 +00:00
|
|
|
DCE() : FunctionPass(ID) {
|
|
|
|
initializeDCEPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
2007-05-01 21:15:47 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
virtual bool runOnFunction(Function &F);
|
2001-06-27 23:41:11 +00:00
|
|
|
|
2002-05-07 04:24:11 +00:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
2002-10-21 20:00:28 +00:00
|
|
|
AU.setPreservesCFG();
|
2001-06-27 23:41:11 +00:00
|
|
|
}
|
2002-05-07 04:24:11 +00:00
|
|
|
};
|
2001-06-07 16:59:26 +00:00
|
|
|
}
|
|
|
|
|
2008-05-13 00:00:25 +00:00
|
|
|
char DCE::ID = 0;
|
2010-10-07 22:25:06 +00:00
|
|
|
INITIALIZE_PASS(DCE, "dce", "Dead Code Elimination", false, false)
|
2008-05-13 00:00:25 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
bool DCE::runOnFunction(Function &F) {
|
2012-08-29 15:32:21 +00:00
|
|
|
TargetLibraryInfo *TLI = getAnalysisIfAvailable<TargetLibraryInfo>();
|
|
|
|
|
2002-05-07 04:24:11 +00:00
|
|
|
// Start out with all of the instructions in the worklist...
|
2004-04-27 15:13:33 +00:00
|
|
|
std::vector<Instruction*> WorkList;
|
2005-05-08 18:45:26 +00:00
|
|
|
for (inst_iterator i = inst_begin(F), e = inst_end(F); i != e; ++i)
|
|
|
|
WorkList.push_back(&*i);
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2002-05-07 04:24:11 +00: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 20:29:01 +00:00
|
|
|
//
|
2005-05-08 18:45:26 +00:00
|
|
|
bool MadeChange = false;
|
2002-05-07 04:24:11 +00:00
|
|
|
while (!WorkList.empty()) {
|
|
|
|
Instruction *I = WorkList.back();
|
|
|
|
WorkList.pop_back();
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2012-08-29 15:32:21 +00:00
|
|
|
if (isInstructionTriviallyDead(I, TLI)) { // If the instruction is dead.
|
2002-05-07 04:24:11 +00: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-21 22:29:37 +00: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 04:24:11 +00:00
|
|
|
WorkList.push_back(Used);
|
|
|
|
|
2005-05-08 18:45:26 +00:00
|
|
|
// Remove the instruction.
|
|
|
|
I->eraseFromParent();
|
|
|
|
|
|
|
|
// Remove the instruction from the worklist if it still exists in it.
|
2012-10-16 19:39:40 +00:00
|
|
|
WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), I),
|
|
|
|
WorkList.end());
|
2002-05-07 04:24:11 +00:00
|
|
|
|
2005-05-08 18:45:26 +00:00
|
|
|
MadeChange = true;
|
|
|
|
++DCEEliminated;
|
2001-07-28 17:51:49 +00:00
|
|
|
}
|
|
|
|
}
|
2005-05-08 18:45:26 +00:00
|
|
|
return MadeChange;
|
2002-02-26 21:46:54 +00:00
|
|
|
}
|
|
|
|
|
2004-07-27 17:43:21 +00:00
|
|
|
FunctionPass *llvm::createDeadCodeEliminationPass() {
|
2002-05-07 04:24:11 +00:00
|
|
|
return new DCE();
|
2002-02-26 21:46:54 +00:00
|
|
|
}
|
2003-11-11 22:41:34 +00:00
|
|
|
|