2001-06-07 04:29:01 +08:00
|
|
|
//===- DCE.cpp - Code to perform dead code elimination --------------------===//
|
2005-04-22 07:48:37 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 07:48:37 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-07 04:29:01 +08:00
|
|
|
//
|
2002-05-07 12:24:11 +08:00
|
|
|
// This file implements dead inst elimination and dead code elimination.
|
2001-06-07 04:29:01 +08:00
|
|
|
//
|
2002-05-07 12:24:11 +08: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-07 04:29:01 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-04-23 03:40:41 +08:00
|
|
|
#include "llvm/Transforms/Scalar/DCE.h"
|
2015-10-01 01:49:49 +08:00
|
|
|
#include "llvm/ADT/SetVector.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2014-03-04 18:30:26 +08:00
|
|
|
#include "llvm/IR/InstIterator.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/Instruction.h"
|
2002-02-27 05:46:54 +08:00
|
|
|
#include "llvm/Pass.h"
|
2015-01-15 10:16:27 +08:00
|
|
|
#include "llvm/Analysis/TargetLibraryInfo.h"
|
2016-04-23 03:40:41 +08:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/Transforms/Utils/Local.h"
|
2004-01-09 14:02:20 +08:00
|
|
|
using namespace llvm;
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2014-04-22 10:55:47 +08:00
|
|
|
#define DEBUG_TYPE "dce"
|
|
|
|
|
2006-12-20 05:40:18 +08:00
|
|
|
STATISTIC(DIEEliminated, "Number of insts removed by DIE pass");
|
|
|
|
STATISTIC(DCEEliminated, "Number of insts removed");
|
2002-05-10 23:38:35 +08:00
|
|
|
|
2006-12-20 05:40:18 +08:00
|
|
|
namespace {
|
2002-10-02 06:38:41 +08:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// DeadInstElimination pass implementation
|
|
|
|
//
|
2009-09-02 14:11:42 +08:00
|
|
|
struct DeadInstElimination : public BasicBlockPass {
|
2007-05-06 21:37:16 +08:00
|
|
|
static char ID; // Pass identification, replacement for typeid
|
2010-10-20 01:21:58 +08:00
|
|
|
DeadInstElimination() : BasicBlockPass(ID) {
|
|
|
|
initializeDeadInstEliminationPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
2014-03-05 17:10:37 +08:00
|
|
|
bool runOnBasicBlock(BasicBlock &BB) override {
|
2016-04-23 06:06:11 +08:00
|
|
|
if (skipBasicBlock(BB))
|
2014-02-06 08:07:05 +08:00
|
|
|
return false;
|
2015-01-15 18:41:28 +08:00
|
|
|
auto *TLIP = getAnalysisIfAvailable<TargetLibraryInfoWrapperPass>();
|
|
|
|
TargetLibraryInfo *TLI = TLIP ? &TLIP->getTLI() : nullptr;
|
2002-05-07 12:24:11 +08:00
|
|
|
bool Changed = false;
|
2008-11-28 06:46:09 +08:00
|
|
|
for (BasicBlock::iterator DI = BB.begin(); DI != BB.end(); ) {
|
2015-10-14 02:26:00 +08:00
|
|
|
Instruction *Inst = &*DI++;
|
2012-08-29 23:32:21 +08:00
|
|
|
if (isInstructionTriviallyDead(Inst, TLI)) {
|
2008-11-28 06:46:09 +08:00
|
|
|
Inst->eraseFromParent();
|
2002-05-07 12:24:11 +08:00
|
|
|
Changed = true;
|
2002-05-10 23:38:35 +08:00
|
|
|
++DIEEliminated;
|
2008-11-28 06:46:09 +08:00
|
|
|
}
|
|
|
|
}
|
2002-05-07 12:24:11 +08:00
|
|
|
return Changed;
|
|
|
|
}
|
2002-04-29 22:57:45 +08:00
|
|
|
|
2014-03-05 17:10:37 +08:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
2002-10-22 04:00:28 +08:00
|
|
|
AU.setPreservesCFG();
|
2002-05-07 12:24:11 +08:00
|
|
|
}
|
|
|
|
};
|
2015-06-23 17:49:53 +08:00
|
|
|
}
|
2002-02-27 05:46:54 +08:00
|
|
|
|
2008-05-13 08:00:25 +08:00
|
|
|
char DeadInstElimination::ID = 0;
|
2010-07-22 06:09:45 +08:00
|
|
|
INITIALIZE_PASS(DeadInstElimination, "die",
|
2010-10-08 06:25:06 +08:00
|
|
|
"Dead Instruction Elimination", false, false)
|
2008-05-13 08:00:25 +08:00
|
|
|
|
2007-01-26 07:23:25 +08:00
|
|
|
Pass *llvm::createDeadInstEliminationPass() {
|
2002-02-27 05:46:54 +08:00
|
|
|
return new DeadInstElimination();
|
2002-01-23 13:48:24 +08:00
|
|
|
}
|
|
|
|
|
2015-10-01 01:49:49 +08:00
|
|
|
static bool DCEInstruction(Instruction *I,
|
|
|
|
SmallSetVector<Instruction *, 16> &WorkList,
|
|
|
|
const TargetLibraryInfo *TLI) {
|
|
|
|
if (isInstructionTriviallyDead(I, TLI)) {
|
|
|
|
// Null out all of the instruction's operands to see if any operand becomes
|
|
|
|
// dead as we go.
|
|
|
|
for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
|
|
|
|
Value *OpV = I->getOperand(i);
|
|
|
|
I->setOperand(i, nullptr);
|
|
|
|
|
|
|
|
if (!OpV->use_empty() || I == OpV)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// If the operand is an instruction that became dead as we nulled out the
|
|
|
|
// operand, and if it is 'trivially' dead, delete it in a future loop
|
|
|
|
// iteration.
|
|
|
|
if (Instruction *OpI = dyn_cast<Instruction>(OpV))
|
|
|
|
if (isInstructionTriviallyDead(OpI, TLI))
|
|
|
|
WorkList.insert(OpI);
|
|
|
|
}
|
|
|
|
|
|
|
|
I->eraseFromParent();
|
|
|
|
++DCEEliminated;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-05-15 23:18:11 +08:00
|
|
|
static bool eliminateDeadCode(Function &F, TargetLibraryInfo *TLI) {
|
2005-05-09 02:45:26 +08:00
|
|
|
bool MadeChange = false;
|
2015-10-01 01:49:49 +08:00
|
|
|
SmallSetVector<Instruction *, 16> WorkList;
|
|
|
|
// Iterate over the original function, only adding insts to the worklist
|
|
|
|
// if they actually need to be revisited. This avoids having to pre-init
|
|
|
|
// the worklist with the entire function's worth of instructions.
|
|
|
|
for (inst_iterator FI = inst_begin(F), FE = inst_end(F); FI != FE;) {
|
|
|
|
Instruction *I = &*FI;
|
|
|
|
++FI;
|
|
|
|
|
|
|
|
// We're visiting this instruction now, so make sure it's not in the
|
|
|
|
// worklist from an earlier visit.
|
|
|
|
if (!WorkList.count(I))
|
|
|
|
MadeChange |= DCEInstruction(I, WorkList, TLI);
|
|
|
|
}
|
|
|
|
|
2002-05-07 12:24:11 +08:00
|
|
|
while (!WorkList.empty()) {
|
2015-10-01 01:49:49 +08:00
|
|
|
Instruction *I = WorkList.pop_back_val();
|
|
|
|
MadeChange |= DCEInstruction(I, WorkList, TLI);
|
2001-07-29 01:51:49 +08:00
|
|
|
}
|
2005-05-09 02:45:26 +08:00
|
|
|
return MadeChange;
|
2002-02-27 05:46:54 +08:00
|
|
|
}
|
|
|
|
|
2016-04-23 03:40:41 +08:00
|
|
|
PreservedAnalyses DCEPass::run(Function &F, AnalysisManager<Function> &AM) {
|
|
|
|
if (eliminateDeadCode(F, AM.getCachedResult<TargetLibraryAnalysis>(F)))
|
|
|
|
return PreservedAnalyses::none();
|
|
|
|
return PreservedAnalyses::all();
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
struct DCELegacyPass : public FunctionPass {
|
|
|
|
static char ID; // Pass identification, replacement for typeid
|
|
|
|
DCELegacyPass() : FunctionPass(ID) {
|
|
|
|
initializeDCELegacyPassPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool runOnFunction(Function &F) override {
|
2016-04-23 06:06:11 +08:00
|
|
|
if (skipFunction(F))
|
2016-04-23 03:40:41 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
auto *TLIP = getAnalysisIfAvailable<TargetLibraryInfoWrapperPass>();
|
|
|
|
TargetLibraryInfo *TLI = TLIP ? &TLIP->getTLI() : nullptr;
|
|
|
|
|
|
|
|
return eliminateDeadCode(F, TLI);
|
|
|
|
}
|
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
|
|
|
AU.setPreservesCFG();
|
|
|
|
}
|
|
|
|
};
|
2002-02-27 05:46:54 +08:00
|
|
|
}
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2016-04-23 03:40:41 +08:00
|
|
|
char DCELegacyPass::ID = 0;
|
|
|
|
INITIALIZE_PASS(DCELegacyPass, "dce", "Dead Code Elimination", false, false)
|
|
|
|
|
|
|
|
FunctionPass *llvm::createDeadCodeEliminationPass() {
|
|
|
|
return new DCELegacyPass();
|
|
|
|
}
|