blob: 6684b21f99a0df1f7c4d8c9693deee3bf7d5e3cc [file] [log] [blame]
Chris Lattner3844c302004-07-22 08:00:28 +00001//===- DeadStoreElimination.cpp - Dead Store Elimination ------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Chris Lattner3844c302004-07-22 08:00:28 +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 Brukmanb1c93172005-04-21 23:48:37 +00007//
Chris Lattner3844c302004-07-22 08:00:28 +00008//===----------------------------------------------------------------------===//
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"
Chris Lattner6ea28882004-11-28 20:44:37 +000019#include "llvm/DerivedTypes.h"
Chris Lattner3844c302004-07-22 08:00:28 +000020#include "llvm/Function.h"
21#include "llvm/Instructions.h"
22#include "llvm/Analysis/AliasAnalysis.h"
23#include "llvm/Analysis/AliasSetTracker.h"
24#include "llvm/Target/TargetData.h"
25#include "llvm/Transforms/Utils/Local.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000026#include "llvm/ADT/SetVector.h"
27#include "llvm/ADT/Statistic.h"
Chris Lattner3844c302004-07-22 08:00:28 +000028using namespace llvm;
29
30namespace {
31 Statistic<> NumStores("dse", "Number of stores deleted");
32 Statistic<> NumOther ("dse", "Number of other instrs removed");
33
34 struct DSE : public FunctionPass {
35
36 virtual bool runOnFunction(Function &F) {
37 bool Changed = false;
38 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
39 Changed |= runOnBasicBlock(*I);
40 return Changed;
41 }
Misha Brukmanb1c93172005-04-21 23:48:37 +000042
Chris Lattner3844c302004-07-22 08:00:28 +000043 bool runOnBasicBlock(BasicBlock &BB);
Misha Brukmanb1c93172005-04-21 23:48:37 +000044
Chris Lattner7b25bcd2004-07-25 11:09:56 +000045 void DeleteDeadInstructionChains(Instruction *I,
46 SetVector<Instruction*> &DeadInsts);
Chris Lattner3844c302004-07-22 08:00:28 +000047
48 // getAnalysisUsage - We require post dominance frontiers (aka Control
49 // Dependence Graph)
50 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerbad64782004-07-24 07:51:27 +000051 AU.setPreservesCFG();
Chris Lattner3844c302004-07-22 08:00:28 +000052 AU.addRequired<TargetData>();
53 AU.addRequired<AliasAnalysis>();
54 AU.addPreserved<AliasAnalysis>();
55 }
56 };
Chris Lattnerc2d3d312006-08-27 22:42:52 +000057 RegisterPass<DSE> X("dse", "Dead Store Elimination");
Chris Lattner3844c302004-07-22 08:00:28 +000058}
59
Chris Lattner3e860842004-09-20 04:43:15 +000060FunctionPass *llvm::createDeadStoreEliminationPass() { return new DSE(); }
Chris Lattner3844c302004-07-22 08:00:28 +000061
62bool DSE::runOnBasicBlock(BasicBlock &BB) {
63 TargetData &TD = getAnalysis<TargetData>();
64 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
65 AliasSetTracker KillLocs(AA);
66
Chris Lattner6ea28882004-11-28 20:44:37 +000067 // If this block ends in a return, unwind, unreachable, and eventually
68 // tailcall, then all allocas are dead at its end.
Chris Lattner3844c302004-07-22 08:00:28 +000069 if (BB.getTerminator()->getNumSuccessors() == 0) {
Chris Lattnerf2980712004-07-26 06:14:11 +000070 BasicBlock *Entry = BB.getParent()->begin();
71 for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I)
Chris Lattner6ea28882004-11-28 20:44:37 +000072 if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) {
73 unsigned Size = ~0U;
74 if (!AI->isArrayAllocation() &&
75 AI->getType()->getElementType()->isSized())
Chris Lattnerfdfe3e492005-01-08 19:42:22 +000076 Size = (unsigned)TD.getTypeSize(AI->getType()->getElementType());
Chris Lattner6ea28882004-11-28 20:44:37 +000077 KillLocs.add(AI, Size);
78 }
Chris Lattner3844c302004-07-22 08:00:28 +000079 }
80
Chris Lattner7b25bcd2004-07-25 11:09:56 +000081 // PotentiallyDeadInsts - Deleting dead stores from the program can make other
82 // instructions die if they were only used as operands to stores. Keep track
83 // of the operands to stores so that we can try deleting them at the end of
84 // the traversal.
85 SetVector<Instruction*> PotentiallyDeadInsts;
86
Chris Lattner3844c302004-07-22 08:00:28 +000087 bool MadeChange = false;
88 for (BasicBlock::iterator BBI = BB.end(); BBI != BB.begin(); ) {
89 Instruction *I = --BBI; // Keep moving iterator backwards
Misha Brukmanb1c93172005-04-21 23:48:37 +000090
Chris Lattner7b25bcd2004-07-25 11:09:56 +000091 // If this is a free instruction, it makes the free'd location dead!
92 if (FreeInst *FI = dyn_cast<FreeInst>(I)) {
Chris Lattner3844c302004-07-22 08:00:28 +000093 // Free instructions make any stores to the free'd location dead.
Chris Lattner7b25bcd2004-07-25 11:09:56 +000094 KillLocs.add(FI);
95 continue;
Chris Lattner3844c302004-07-22 08:00:28 +000096 }
Chris Lattner3844c302004-07-22 08:00:28 +000097
Chris Lattner7b25bcd2004-07-25 11:09:56 +000098 if (!isa<StoreInst>(I) || cast<StoreInst>(I)->isVolatile()) {
Chris Lattnerdc4ffef2005-11-30 19:38:22 +000099 // If this is a vaarg instruction, it reads its operand. We don't model
100 // it correctly, so just conservatively remove all entries.
101 if (isa<VAArgInst>(I)) {
102 KillLocs.clear();
103 continue;
104 }
105
Chris Lattner3844c302004-07-22 08:00:28 +0000106 // If this is a non-store instruction, it makes everything referenced no
107 // longer killed. Remove anything aliased from the alias set tracker.
108 KillLocs.remove(I);
109 continue;
110 }
111
112 // If this is a non-volatile store instruction, and if it is already in
113 // the stored location is already in the tracker, then this is a dead
114 // store. We can just delete it here, but while we're at it, we also
115 // delete any trivially dead expression chains.
Chris Lattnerfdfe3e492005-01-08 19:42:22 +0000116 unsigned ValSize = (unsigned)TD.getTypeSize(I->getOperand(0)->getType());
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000117 Value *Ptr = I->getOperand(1);
Chris Lattner4c1c1ac2004-07-25 07:58:38 +0000118
Chris Lattner3844c302004-07-22 08:00:28 +0000119 if (AliasSet *AS = KillLocs.getAliasSetForPointerIfExists(Ptr, ValSize))
120 for (AliasSet::iterator ASI = AS->begin(), E = AS->end(); ASI != E; ++ASI)
Chris Lattner13516fe2004-12-29 04:36:02 +0000121 if (ASI.getSize() >= ValSize && // Overwriting all of this store.
122 AA.alias(ASI.getPointer(), ASI.getSize(), Ptr, ValSize)
Chris Lattner3844c302004-07-22 08:00:28 +0000123 == AliasAnalysis::MustAlias) {
124 // If we found a must alias in the killed set, then this store really
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000125 // is dead. Remember that the various operands of the store now have
126 // fewer users. At the end we will see if we can delete any values
127 // that are dead as part of the store becoming dead.
128 if (Instruction *Op = dyn_cast<Instruction>(I->getOperand(0)))
129 PotentiallyDeadInsts.insert(Op);
130 if (Instruction *Op = dyn_cast<Instruction>(Ptr))
131 PotentiallyDeadInsts.insert(Op);
132
133 // Delete it now.
Chris Lattner3844c302004-07-22 08:00:28 +0000134 ++BBI; // Don't invalidate iterator.
Chris Lattner3844c302004-07-22 08:00:28 +0000135 BB.getInstList().erase(I); // Nuke the store!
136 ++NumStores;
Chris Lattner3844c302004-07-22 08:00:28 +0000137 MadeChange = true;
138 goto BigContinue;
139 }
140
141 // Otherwise, this is a non-dead store just add it to the set of dead
142 // locations.
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000143 KillLocs.add(cast<StoreInst>(I));
Chris Lattner3844c302004-07-22 08:00:28 +0000144 BigContinue:;
145 }
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000146
147 while (!PotentiallyDeadInsts.empty()) {
148 Instruction *I = PotentiallyDeadInsts.back();
149 PotentiallyDeadInsts.pop_back();
150 DeleteDeadInstructionChains(I, PotentiallyDeadInsts);
151 }
Chris Lattner3844c302004-07-22 08:00:28 +0000152 return MadeChange;
153}
154
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000155void DSE::DeleteDeadInstructionChains(Instruction *I,
156 SetVector<Instruction*> &DeadInsts) {
157 // Instruction must be dead.
158 if (!I->use_empty() || !isInstructionTriviallyDead(I)) return;
Chris Lattner3844c302004-07-22 08:00:28 +0000159
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000160 // Let the alias analysis know that we have nuked a value.
161 getAnalysis<AliasAnalysis>().deleteValue(I);
Chris Lattner3844c302004-07-22 08:00:28 +0000162
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000163 // See if this made any operands dead. We do it this way in case the
164 // instruction uses the same operand twice. We don't want to delete a
165 // value then reference it.
Chris Lattnerd8e20182005-01-29 00:39:08 +0000166 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
167 if (Instruction *Op = dyn_cast<Instruction>(I->getOperand(i)))
168 DeadInsts.insert(Op); // Attempt to nuke it later.
169 I->setOperand(i, 0); // Drop from the operand list.
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000170 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000171
Chris Lattnerd8e20182005-01-29 00:39:08 +0000172 I->eraseFromParent();
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000173 ++NumOther;
Chris Lattner3844c302004-07-22 08:00:28 +0000174}