blob: 665d538ef9a63c58da4fe155b7e20a5f2374760f [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
Chris Lattner79a42ac2006-12-19 21:40:18 +000018#define DEBUG_TYPE "dse"
Chris Lattner3844c302004-07-22 08:00:28 +000019#include "llvm/Transforms/Scalar.h"
Chris Lattner6ea28882004-11-28 20:44:37 +000020#include "llvm/DerivedTypes.h"
Chris Lattner3844c302004-07-22 08:00:28 +000021#include "llvm/Function.h"
22#include "llvm/Instructions.h"
23#include "llvm/Analysis/AliasAnalysis.h"
24#include "llvm/Analysis/AliasSetTracker.h"
25#include "llvm/Target/TargetData.h"
26#include "llvm/Transforms/Utils/Local.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000027#include "llvm/ADT/SetVector.h"
28#include "llvm/ADT/Statistic.h"
Reid Spencer557ab152007-02-05 23:32:05 +000029#include "llvm/Support/Compiler.h"
Chris Lattner3844c302004-07-22 08:00:28 +000030using namespace llvm;
31
Chris Lattner79a42ac2006-12-19 21:40:18 +000032STATISTIC(NumStores, "Number of stores deleted");
33STATISTIC(NumOther , "Number of other instrs removed");
Chris Lattner3844c302004-07-22 08:00:28 +000034
Chris Lattner79a42ac2006-12-19 21:40:18 +000035namespace {
Reid Spencer557ab152007-02-05 23:32:05 +000036 struct VISIBILITY_HIDDEN DSE : public FunctionPass {
Nick Lewyckye7da2d62007-05-06 13:37:16 +000037 static char ID; // Pass identification, replacement for typeid
Devang Patel09f162c2007-05-01 21:15:47 +000038 DSE() : FunctionPass((intptr_t)&ID) {}
Chris Lattner3844c302004-07-22 08:00:28 +000039
40 virtual bool runOnFunction(Function &F) {
41 bool Changed = false;
42 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
43 Changed |= runOnBasicBlock(*I);
44 return Changed;
45 }
Misha Brukmanb1c93172005-04-21 23:48:37 +000046
Chris Lattner3844c302004-07-22 08:00:28 +000047 bool runOnBasicBlock(BasicBlock &BB);
Misha Brukmanb1c93172005-04-21 23:48:37 +000048
Chris Lattner7b25bcd2004-07-25 11:09:56 +000049 void DeleteDeadInstructionChains(Instruction *I,
50 SetVector<Instruction*> &DeadInsts);
Chris Lattner3844c302004-07-22 08:00:28 +000051
52 // getAnalysisUsage - We require post dominance frontiers (aka Control
53 // Dependence Graph)
54 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattnerbad64782004-07-24 07:51:27 +000055 AU.setPreservesCFG();
Chris Lattner3844c302004-07-22 08:00:28 +000056 AU.addRequired<TargetData>();
57 AU.addRequired<AliasAnalysis>();
58 AU.addPreserved<AliasAnalysis>();
59 }
60 };
Devang Patel8c78a0b2007-05-03 01:11:54 +000061 char DSE::ID = 0;
Chris Lattnerc2d3d312006-08-27 22:42:52 +000062 RegisterPass<DSE> X("dse", "Dead Store Elimination");
Chris Lattner3844c302004-07-22 08:00:28 +000063}
64
Chris Lattner3e860842004-09-20 04:43:15 +000065FunctionPass *llvm::createDeadStoreEliminationPass() { return new DSE(); }
Chris Lattner3844c302004-07-22 08:00:28 +000066
67bool DSE::runOnBasicBlock(BasicBlock &BB) {
68 TargetData &TD = getAnalysis<TargetData>();
69 AliasAnalysis &AA = getAnalysis<AliasAnalysis>();
70 AliasSetTracker KillLocs(AA);
71
Chris Lattner6ea28882004-11-28 20:44:37 +000072 // If this block ends in a return, unwind, unreachable, and eventually
73 // tailcall, then all allocas are dead at its end.
Chris Lattner3844c302004-07-22 08:00:28 +000074 if (BB.getTerminator()->getNumSuccessors() == 0) {
Chris Lattnerf2980712004-07-26 06:14:11 +000075 BasicBlock *Entry = BB.getParent()->begin();
76 for (BasicBlock::iterator I = Entry->begin(), E = Entry->end(); I != E; ++I)
Chris Lattner6ea28882004-11-28 20:44:37 +000077 if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) {
78 unsigned Size = ~0U;
79 if (!AI->isArrayAllocation() &&
80 AI->getType()->getElementType()->isSized())
Chris Lattnerfdfe3e492005-01-08 19:42:22 +000081 Size = (unsigned)TD.getTypeSize(AI->getType()->getElementType());
Chris Lattner6ea28882004-11-28 20:44:37 +000082 KillLocs.add(AI, Size);
83 }
Chris Lattner3844c302004-07-22 08:00:28 +000084 }
85
Chris Lattner7b25bcd2004-07-25 11:09:56 +000086 // PotentiallyDeadInsts - Deleting dead stores from the program can make other
87 // instructions die if they were only used as operands to stores. Keep track
88 // of the operands to stores so that we can try deleting them at the end of
89 // the traversal.
90 SetVector<Instruction*> PotentiallyDeadInsts;
91
Chris Lattner3844c302004-07-22 08:00:28 +000092 bool MadeChange = false;
93 for (BasicBlock::iterator BBI = BB.end(); BBI != BB.begin(); ) {
94 Instruction *I = --BBI; // Keep moving iterator backwards
Misha Brukmanb1c93172005-04-21 23:48:37 +000095
Chris Lattner7b25bcd2004-07-25 11:09:56 +000096 // If this is a free instruction, it makes the free'd location dead!
97 if (FreeInst *FI = dyn_cast<FreeInst>(I)) {
Chris Lattner3844c302004-07-22 08:00:28 +000098 // Free instructions make any stores to the free'd location dead.
Chris Lattner7b25bcd2004-07-25 11:09:56 +000099 KillLocs.add(FI);
100 continue;
Chris Lattner3844c302004-07-22 08:00:28 +0000101 }
Chris Lattner3844c302004-07-22 08:00:28 +0000102
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000103 if (!isa<StoreInst>(I) || cast<StoreInst>(I)->isVolatile()) {
Chris Lattnerdc4ffef2005-11-30 19:38:22 +0000104 // If this is a vaarg instruction, it reads its operand. We don't model
105 // it correctly, so just conservatively remove all entries.
106 if (isa<VAArgInst>(I)) {
107 KillLocs.clear();
108 continue;
109 }
110
Chris Lattner3844c302004-07-22 08:00:28 +0000111 // If this is a non-store instruction, it makes everything referenced no
112 // longer killed. Remove anything aliased from the alias set tracker.
113 KillLocs.remove(I);
114 continue;
115 }
116
117 // If this is a non-volatile store instruction, and if it is already in
118 // the stored location is already in the tracker, then this is a dead
119 // store. We can just delete it here, but while we're at it, we also
120 // delete any trivially dead expression chains.
Chris Lattnerfdfe3e492005-01-08 19:42:22 +0000121 unsigned ValSize = (unsigned)TD.getTypeSize(I->getOperand(0)->getType());
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000122 Value *Ptr = I->getOperand(1);
Chris Lattner4c1c1ac2004-07-25 07:58:38 +0000123
Chris Lattner3844c302004-07-22 08:00:28 +0000124 if (AliasSet *AS = KillLocs.getAliasSetForPointerIfExists(Ptr, ValSize))
125 for (AliasSet::iterator ASI = AS->begin(), E = AS->end(); ASI != E; ++ASI)
Chris Lattner13516fe2004-12-29 04:36:02 +0000126 if (ASI.getSize() >= ValSize && // Overwriting all of this store.
127 AA.alias(ASI.getPointer(), ASI.getSize(), Ptr, ValSize)
Chris Lattner3844c302004-07-22 08:00:28 +0000128 == AliasAnalysis::MustAlias) {
129 // If we found a must alias in the killed set, then this store really
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000130 // is dead. Remember that the various operands of the store now have
131 // fewer users. At the end we will see if we can delete any values
132 // that are dead as part of the store becoming dead.
133 if (Instruction *Op = dyn_cast<Instruction>(I->getOperand(0)))
134 PotentiallyDeadInsts.insert(Op);
135 if (Instruction *Op = dyn_cast<Instruction>(Ptr))
136 PotentiallyDeadInsts.insert(Op);
137
138 // Delete it now.
Chris Lattner3844c302004-07-22 08:00:28 +0000139 ++BBI; // Don't invalidate iterator.
Chris Lattner3844c302004-07-22 08:00:28 +0000140 BB.getInstList().erase(I); // Nuke the store!
141 ++NumStores;
Chris Lattner3844c302004-07-22 08:00:28 +0000142 MadeChange = true;
143 goto BigContinue;
144 }
145
146 // Otherwise, this is a non-dead store just add it to the set of dead
147 // locations.
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000148 KillLocs.add(cast<StoreInst>(I));
Chris Lattner3844c302004-07-22 08:00:28 +0000149 BigContinue:;
150 }
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000151
152 while (!PotentiallyDeadInsts.empty()) {
153 Instruction *I = PotentiallyDeadInsts.back();
154 PotentiallyDeadInsts.pop_back();
155 DeleteDeadInstructionChains(I, PotentiallyDeadInsts);
156 }
Chris Lattner3844c302004-07-22 08:00:28 +0000157 return MadeChange;
158}
159
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000160void DSE::DeleteDeadInstructionChains(Instruction *I,
161 SetVector<Instruction*> &DeadInsts) {
162 // Instruction must be dead.
163 if (!I->use_empty() || !isInstructionTriviallyDead(I)) return;
Chris Lattner3844c302004-07-22 08:00:28 +0000164
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000165 // Let the alias analysis know that we have nuked a value.
166 getAnalysis<AliasAnalysis>().deleteValue(I);
Chris Lattner3844c302004-07-22 08:00:28 +0000167
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000168 // See if this made any operands dead. We do it this way in case the
169 // instruction uses the same operand twice. We don't want to delete a
170 // value then reference it.
Chris Lattnerd8e20182005-01-29 00:39:08 +0000171 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
172 if (Instruction *Op = dyn_cast<Instruction>(I->getOperand(i)))
173 DeadInsts.insert(Op); // Attempt to nuke it later.
174 I->setOperand(i, 0); // Drop from the operand list.
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000175 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000176
Chris Lattnerd8e20182005-01-29 00:39:08 +0000177 I->eraseFromParent();
Chris Lattner7b25bcd2004-07-25 11:09:56 +0000178 ++NumOther;
Chris Lattner3844c302004-07-22 08:00:28 +0000179}