blob: c7f3254d4c7728a93799735d8b47b7080b798eb3 [file] [log] [blame]
Chris Lattner3844c302004-07-22 08:00:28 +00001//===- DeadStoreElimination.cpp - Dead Store Elimination ------------------===//
2//
3// 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.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements a trivial dead store elimination that only considers
11// basic-block local redundant stores.
12//
13// FIXME: This should eventually be extended to be a post-dominator tree
14// traversal. Doing so would be pretty trivial.
15//
16//===----------------------------------------------------------------------===//
17
18#include "llvm/Transforms/Scalar.h"
19#include "llvm/Function.h"
20#include "llvm/Instructions.h"
21#include "llvm/Analysis/AliasAnalysis.h"
22#include "llvm/Analysis/AliasSetTracker.h"
23#include "llvm/Target/TargetData.h"
24#include "llvm/Transforms/Utils/Local.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000025#include "llvm/ADT/SetVector.h"
26#include "llvm/ADT/Statistic.h"
Chris Lattner3844c302004-07-22 08:00:28 +000027using namespace llvm;
28
29namespace {
30 Statistic<> NumStores("dse", "Number of stores deleted");
31 Statistic<> NumOther ("dse", "Number of other instrs removed");
32
33 struct DSE : public FunctionPass {
34
35 virtual bool runOnFunction(Function &F) {
36 bool Changed = false;
37 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
38 Changed |= runOnBasicBlock(*I);
39 return Changed;
40 }
41
42 bool runOnBasicBlock(BasicBlock &BB);
43
Chris Lattner7b25bcd2004-07-25 11:09:56 +000044 void DeleteDeadInstructionChains(Instruction *I,
45 SetVector<Instruction*> &DeadInsts);
Chris Lattner3844c302004-07-22 08:00:28 +000046
47 // getAnalysisUsage - We require post dominance frontiers (aka Control
48 // Dependence Graph)
49 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerbad64782004-07-24 07:51:27 +000050 AU.setPreservesCFG();
Chris Lattner3844c302004-07-22 08:00:28 +000051 AU.addRequired<TargetData>();
52 AU.addRequired<AliasAnalysis>();
53 AU.addPreserved<AliasAnalysis>();
54 }
55 };
56 RegisterOpt<DSE> X("dse", "Dead Store Elimination");
57}
58
Chris Lattner3e860842004-09-20 04:43:15 +000059FunctionPass *llvm::createDeadStoreEliminationPass() { return new DSE(); }
Chris Lattner3844c302004-07-22 08:00:28 +000060
61bool DSE::runOnBasicBlock(BasicBlock &BB) {
62 TargetData &TD = getAnalysis<TargetData>();
63 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
64 AliasSetTracker KillLocs(AA);
65
66 // If this block ends in a return, unwind, and eventually tailcall/barrier,
67 // then all allocas are dead at its end.
68 if (BB.getTerminator()->getNumSuccessors() == 0) {
Chris Lattnerf2980712004-07-26 06:14:11 +000069 BasicBlock *Entry = BB.getParent()->begin();
70 for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I)
71 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
72 KillLocs.add(AI, ~0);
Chris Lattner3844c302004-07-22 08:00:28 +000073 }
74
Chris Lattner7b25bcd2004-07-25 11:09:56 +000075 // PotentiallyDeadInsts - Deleting dead stores from the program can make other
76 // instructions die if they were only used as operands to stores. Keep track
77 // of the operands to stores so that we can try deleting them at the end of
78 // the traversal.
79 SetVector<Instruction*> PotentiallyDeadInsts;
80
Chris Lattner3844c302004-07-22 08:00:28 +000081 bool MadeChange = false;
82 for (BasicBlock::iterator BBI = BB.end(); BBI != BB.begin(); ) {
83 Instruction *I = --BBI; // Keep moving iterator backwards
84
Chris Lattner7b25bcd2004-07-25 11:09:56 +000085 // If this is a free instruction, it makes the free'd location dead!
86 if (FreeInst *FI = dyn_cast<FreeInst>(I)) {
Chris Lattner3844c302004-07-22 08:00:28 +000087 // Free instructions make any stores to the free'd location dead.
Chris Lattner7b25bcd2004-07-25 11:09:56 +000088 KillLocs.add(FI);
89 continue;
Chris Lattner3844c302004-07-22 08:00:28 +000090 }
Chris Lattner3844c302004-07-22 08:00:28 +000091
Chris Lattner7b25bcd2004-07-25 11:09:56 +000092 if (!isa<StoreInst>(I) || cast<StoreInst>(I)->isVolatile()) {
Chris Lattner3844c302004-07-22 08:00:28 +000093 // If this is a non-store instruction, it makes everything referenced no
94 // longer killed. Remove anything aliased from the alias set tracker.
95 KillLocs.remove(I);
96 continue;
97 }
98
99 // If this is a non-volatile store instruction, and if it is already in
100 // the stored location is already in the tracker, then this is a dead
101 // store. We can just delete it here, but while we're at it, we also
102 // delete any trivially dead expression chains.
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000103 unsigned ValSize = TD.getTypeSize(I->getOperand(0)->getType());
104 Value *Ptr = I->getOperand(1);
Chris Lattner4c1c1ac2004-07-25 07:58:38 +0000105
Chris Lattner3844c302004-07-22 08:00:28 +0000106 if (AliasSet *AS = KillLocs.getAliasSetForPointerIfExists(Ptr, ValSize))
107 for (AliasSet::iterator ASI = AS->begin(), E = AS->end(); ASI != E; ++ASI)
108 if (AA.alias(ASI.getPointer(), ASI.getSize(), Ptr, ValSize)
109 == AliasAnalysis::MustAlias) {
110 // If we found a must alias in the killed set, then this store really
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000111 // is dead. Remember that the various operands of the store now have
112 // fewer users. At the end we will see if we can delete any values
113 // that are dead as part of the store becoming dead.
114 if (Instruction *Op = dyn_cast<Instruction>(I->getOperand(0)))
115 PotentiallyDeadInsts.insert(Op);
116 if (Instruction *Op = dyn_cast<Instruction>(Ptr))
117 PotentiallyDeadInsts.insert(Op);
118
119 // Delete it now.
Chris Lattner3844c302004-07-22 08:00:28 +0000120 ++BBI; // Don't invalidate iterator.
Chris Lattner3844c302004-07-22 08:00:28 +0000121 BB.getInstList().erase(I); // Nuke the store!
122 ++NumStores;
Chris Lattner3844c302004-07-22 08:00:28 +0000123 MadeChange = true;
124 goto BigContinue;
125 }
126
127 // Otherwise, this is a non-dead store just add it to the set of dead
128 // locations.
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000129 KillLocs.add(cast<StoreInst>(I));
Chris Lattner3844c302004-07-22 08:00:28 +0000130 BigContinue:;
131 }
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000132
133 while (!PotentiallyDeadInsts.empty()) {
134 Instruction *I = PotentiallyDeadInsts.back();
135 PotentiallyDeadInsts.pop_back();
136 DeleteDeadInstructionChains(I, PotentiallyDeadInsts);
137 }
Chris Lattner3844c302004-07-22 08:00:28 +0000138 return MadeChange;
139}
140
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000141void DSE::DeleteDeadInstructionChains(Instruction *I,
142 SetVector<Instruction*> &DeadInsts) {
143 // Instruction must be dead.
144 if (!I->use_empty() || !isInstructionTriviallyDead(I)) return;
Chris Lattner3844c302004-07-22 08:00:28 +0000145
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000146 // Let the alias analysis know that we have nuked a value.
147 getAnalysis<AliasAnalysis>().deleteValue(I);
Chris Lattner3844c302004-07-22 08:00:28 +0000148
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000149 // See if this made any operands dead. We do it this way in case the
150 // instruction uses the same operand twice. We don't want to delete a
151 // value then reference it.
152 while (unsigned NumOps = I->getNumOperands()) {
153 Instruction *Op = dyn_cast<Instruction>(I->getOperand(NumOps-1));
154 I->op_erase(I->op_end()-1); // Drop from the operand list.
155
156 if (Op) DeadInsts.insert(Op); // Attempt to nuke it later.
157 }
158
159 I->getParent()->getInstList().erase(I);
160 ++NumOther;
Chris Lattner3844c302004-07-22 08:00:28 +0000161}