blob: b00d3005bfa6c6159b45f9e42f5ceb81f0c9b65e [file] [log] [blame]
Chris Lattner1467f642002-04-28 00:47:11 +00001//===-- GCSE.cpp - SSA based Global Common Subexpr Elimination ------------===//
John Criswell482202a2003-10-20 19:43:21 +00002//
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//===----------------------------------------------------------------------===//
Chris Lattner1467f642002-04-28 00:47:11 +00009//
10// This pass is designed to be a very quick global transformation that
11// eliminates global common subexpressions from a function. It does this by
Chris Lattner1b09a9a2002-08-30 22:53:30 +000012// using an existing value numbering implementation to identify the common
13// subexpressions, eliminating them when possible.
Chris Lattner1467f642002-04-28 00:47:11 +000014//
Chris Lattner1467f642002-04-28 00:47:11 +000015//===----------------------------------------------------------------------===//
16
Chris Lattnerb4cfa7f2002-05-07 20:03:00 +000017#include "llvm/Transforms/Scalar.h"
Chris Lattner1467f642002-04-28 00:47:11 +000018#include "llvm/iMemory.h"
Chris Lattner1b09a9a2002-08-30 22:53:30 +000019#include "llvm/Type.h"
Chris Lattner1467f642002-04-28 00:47:11 +000020#include "llvm/Analysis/Dominators.h"
Chris Lattnerb2a31092002-08-30 20:22:29 +000021#include "llvm/Analysis/ValueNumbering.h"
Chris Lattner1467f642002-04-28 00:47:11 +000022#include "llvm/Support/InstIterator.h"
Chris Lattnerbf3a0992002-10-01 22:38:41 +000023#include "Support/Statistic.h"
Chris Lattner1467f642002-04-28 00:47:11 +000024#include <algorithm>
Chris Lattner1467f642002-04-28 00:47:11 +000025
Brian Gaeke960707c2003-11-11 22:41:34 +000026namespace llvm {
27
Chris Lattner1467f642002-04-28 00:47:11 +000028namespace {
Chris Lattnerbf3a0992002-10-01 22:38:41 +000029 Statistic<> NumInstRemoved("gcse", "Number of instructions removed");
30 Statistic<> NumLoadRemoved("gcse", "Number of loads removed");
31 Statistic<> NumNonInsts ("gcse", "Number of instructions removed due "
Chris Lattnerb2a31092002-08-30 20:22:29 +000032 "to non-instruction values");
33
34 class GCSE : public FunctionPass {
Chris Lattner1b09a9a2002-08-30 22:53:30 +000035 std::set<Instruction*> WorkList;
Chris Lattnerd38ddb12002-05-14 05:02:40 +000036 DominatorSet *DomSetInfo;
Chris Lattnerb2a31092002-08-30 20:22:29 +000037 ValueNumbering *VN;
Chris Lattner1467f642002-04-28 00:47:11 +000038 public:
Chris Lattner113f4f42002-06-25 16:13:24 +000039 virtual bool runOnFunction(Function &F);
Chris Lattner1467f642002-04-28 00:47:11 +000040
Chris Lattner1467f642002-04-28 00:47:11 +000041 private:
Chris Lattnerb2a31092002-08-30 20:22:29 +000042 bool EliminateRedundancies(Instruction *I,std::vector<Value*> &EqualValues);
43 Instruction *EliminateCSE(Instruction *I, Instruction *Other);
Chris Lattner1467f642002-04-28 00:47:11 +000044 void ReplaceInstWithInst(Instruction *First, BasicBlock::iterator SI);
Chris Lattnerd38ddb12002-05-14 05:02:40 +000045
Chris Lattner1467f642002-04-28 00:47:11 +000046 // This transformation requires dominator and immediate dominator info
47 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner820d9712002-10-21 20:00:28 +000048 AU.setPreservesCFG();
Chris Lattnerf0ed55d2002-08-08 19:01:30 +000049 AU.addRequired<DominatorSet>();
50 AU.addRequired<ImmediateDominators>();
Chris Lattnerb2a31092002-08-30 20:22:29 +000051 AU.addRequired<ValueNumbering>();
Chris Lattner1467f642002-04-28 00:47:11 +000052 }
53 };
Chris Lattnerb28b6802002-07-23 18:06:35 +000054
Chris Lattnerc8b70922002-07-26 21:12:46 +000055 RegisterOpt<GCSE> X("gcse", "Global Common Subexpression Elimination");
Chris Lattner1467f642002-04-28 00:47:11 +000056}
57
58// createGCSEPass - The public interface to this file...
Misha Brukmanad03afc2003-11-07 17:20:18 +000059FunctionPass *createGCSEPass() { return new GCSE(); }
Chris Lattner1467f642002-04-28 00:47:11 +000060
Chris Lattner1467f642002-04-28 00:47:11 +000061// GCSE::runOnFunction - This is the main transformation entry point for a
62// function.
63//
Chris Lattner113f4f42002-06-25 16:13:24 +000064bool GCSE::runOnFunction(Function &F) {
Chris Lattner1467f642002-04-28 00:47:11 +000065 bool Changed = false;
66
Chris Lattner879cb972002-08-22 18:24:48 +000067 // Get pointers to the analysis results that we will be using...
Chris Lattner1467f642002-04-28 00:47:11 +000068 DomSetInfo = &getAnalysis<DominatorSet>();
Chris Lattnerb2a31092002-08-30 20:22:29 +000069 VN = &getAnalysis<ValueNumbering>();
Chris Lattner1467f642002-04-28 00:47:11 +000070
71 // Step #1: Add all instructions in the function to the worklist for
72 // processing. All of the instructions are considered to be our
73 // subexpressions to eliminate if possible.
74 //
75 WorkList.insert(inst_begin(F), inst_end(F));
76
77 // Step #2: WorkList processing. Iterate through all of the instructions,
78 // checking to see if there are any additionally defined subexpressions in the
79 // program. If so, eliminate them!
80 //
81 while (!WorkList.empty()) {
Chris Lattner113f4f42002-06-25 16:13:24 +000082 Instruction &I = **WorkList.begin(); // Get an instruction from the worklist
Chris Lattner1467f642002-04-28 00:47:11 +000083 WorkList.erase(WorkList.begin());
84
Chris Lattnerb2a31092002-08-30 20:22:29 +000085 // If this instruction computes a value, try to fold together common
86 // instructions that compute it.
Chris Lattner1467f642002-04-28 00:47:11 +000087 //
Chris Lattnerb2a31092002-08-30 20:22:29 +000088 if (I.getType() != Type::VoidTy) {
89 std::vector<Value*> EqualValues;
90 VN->getEqualNumberNodes(&I, EqualValues);
91
92 if (!EqualValues.empty())
93 Changed |= EliminateRedundancies(&I, EqualValues);
94 }
Chris Lattner1467f642002-04-28 00:47:11 +000095 }
Chris Lattnerd38ddb12002-05-14 05:02:40 +000096
Chris Lattner1467f642002-04-28 00:47:11 +000097 // When the worklist is empty, return whether or not we changed anything...
98 return Changed;
99}
100
Chris Lattnerb2a31092002-08-30 20:22:29 +0000101bool GCSE::EliminateRedundancies(Instruction *I,
102 std::vector<Value*> &EqualValues) {
103 // If the EqualValues set contains any non-instruction values, then we know
104 // that all of the instructions can be replaced with the non-instruction value
105 // because it is guaranteed to dominate all of the instructions in the
106 // function. We only have to do hard work if all we have are instructions.
107 //
108 for (unsigned i = 0, e = EqualValues.size(); i != e; ++i)
109 if (!isa<Instruction>(EqualValues[i])) {
110 // Found a non-instruction. Replace all instructions with the
111 // non-instruction.
112 //
113 Value *Replacement = EqualValues[i];
114
115 // Make sure we get I as well...
116 EqualValues[i] = I;
117
118 // Replace all instructions with the Replacement value.
119 for (i = 0; i != e; ++i)
120 if (Instruction *I = dyn_cast<Instruction>(EqualValues[i])) {
121 // Change all users of I to use Replacement.
122 I->replaceAllUsesWith(Replacement);
123
124 if (isa<LoadInst>(I))
125 ++NumLoadRemoved; // Keep track of loads eliminated
126 ++NumInstRemoved; // Keep track of number of instructions eliminated
127 ++NumNonInsts; // Keep track of number of insts repl with values
128
129 // Erase the instruction from the program.
130 I->getParent()->getInstList().erase(I);
Chris Lattner2a8c3012003-06-17 03:57:18 +0000131 WorkList.erase(I);
Chris Lattnerb2a31092002-08-30 20:22:29 +0000132 }
133
134 return true;
135 }
136
137 // Remove duplicate entries from EqualValues...
138 std::sort(EqualValues.begin(), EqualValues.end());
139 EqualValues.erase(std::unique(EqualValues.begin(), EqualValues.end()),
140 EqualValues.end());
141
142 // From this point on, EqualValues is logically a vector of instructions.
143 //
144 bool Changed = false;
145 EqualValues.push_back(I); // Make sure I is included...
146 while (EqualValues.size() > 1) {
147 // FIXME, this could be done better than simple iteration!
148 Instruction *Test = cast<Instruction>(EqualValues.back());
149 EqualValues.pop_back();
150
151 for (unsigned i = 0, e = EqualValues.size(); i != e; ++i)
152 if (Instruction *Ret = EliminateCSE(Test,
153 cast<Instruction>(EqualValues[i]))) {
154 if (Ret == Test) // Eliminated EqualValues[i]
155 EqualValues[i] = Test; // Make sure that we reprocess I at some point
156 Changed = true;
157 break;
158 }
159 }
160 return Changed;
161}
162
Chris Lattner1467f642002-04-28 00:47:11 +0000163
164// ReplaceInstWithInst - Destroy the instruction pointed to by SI, making all
165// uses of the instruction use First now instead.
166//
167void GCSE::ReplaceInstWithInst(Instruction *First, BasicBlock::iterator SI) {
Chris Lattner113f4f42002-06-25 16:13:24 +0000168 Instruction &Second = *SI;
Chris Lattner2dfc6672002-04-29 16:20:25 +0000169
170 //cerr << "DEL " << (void*)Second << Second;
Chris Lattner1467f642002-04-28 00:47:11 +0000171
172 // Add the first instruction back to the worklist
173 WorkList.insert(First);
174
175 // Add all uses of the second instruction to the worklist
Chris Lattner113f4f42002-06-25 16:13:24 +0000176 for (Value::use_iterator UI = Second.use_begin(), UE = Second.use_end();
Chris Lattner1467f642002-04-28 00:47:11 +0000177 UI != UE; ++UI)
178 WorkList.insert(cast<Instruction>(*UI));
179
180 // Make all users of 'Second' now use 'First'
Chris Lattner113f4f42002-06-25 16:13:24 +0000181 Second.replaceAllUsesWith(First);
Chris Lattner1467f642002-04-28 00:47:11 +0000182
183 // Erase the second instruction from the program
Chris Lattner113f4f42002-06-25 16:13:24 +0000184 Second.getParent()->getInstList().erase(SI);
Chris Lattner1467f642002-04-28 00:47:11 +0000185}
186
Chris Lattnerb2a31092002-08-30 20:22:29 +0000187// EliminateCSE - The two instruction I & Other have been found to be common
188// subexpressions. This function is responsible for eliminating one of them,
189// and for fixing the worklist to be correct. The instruction that is preserved
190// is returned from the function if the other is eliminated, otherwise null is
191// returned.
Chris Lattner1467f642002-04-28 00:47:11 +0000192//
Chris Lattnerb2a31092002-08-30 20:22:29 +0000193Instruction *GCSE::EliminateCSE(Instruction *I, Instruction *Other) {
Chris Lattnerd38ddb12002-05-14 05:02:40 +0000194 assert(I != Other);
Chris Lattner2dfc6672002-04-29 16:20:25 +0000195
Chris Lattnerd38ddb12002-05-14 05:02:40 +0000196 WorkList.erase(I);
Chris Lattner2dfc6672002-04-29 16:20:25 +0000197 WorkList.erase(Other); // Other may not actually be on the worklist anymore...
Chris Lattner1467f642002-04-28 00:47:11 +0000198
Chris Lattner1467f642002-04-28 00:47:11 +0000199 // Handle the easy case, where both instructions are in the same basic block
200 BasicBlock *BB1 = I->getParent(), *BB2 = Other->getParent();
Chris Lattnerb2a31092002-08-30 20:22:29 +0000201 Instruction *Ret = 0;
202
Chris Lattner1467f642002-04-28 00:47:11 +0000203 if (BB1 == BB2) {
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000204 // Eliminate the second occurring instruction. Add all uses of the second
Chris Lattner1467f642002-04-28 00:47:11 +0000205 // instruction to the worklist.
206 //
207 // Scan the basic block looking for the "first" instruction
208 BasicBlock::iterator BI = BB1->begin();
Chris Lattner113f4f42002-06-25 16:13:24 +0000209 while (&*BI != I && &*BI != Other) {
Chris Lattner1467f642002-04-28 00:47:11 +0000210 ++BI;
211 assert(BI != BB1->end() && "Instructions not found in parent BB!");
212 }
213
214 // Keep track of which instructions occurred first & second
Chris Lattner113f4f42002-06-25 16:13:24 +0000215 Instruction *First = BI;
Chris Lattner1467f642002-04-28 00:47:11 +0000216 Instruction *Second = I != First ? I : Other; // Get iterator to second inst
Chris Lattner113f4f42002-06-25 16:13:24 +0000217 BI = Second;
Chris Lattner1467f642002-04-28 00:47:11 +0000218
219 // Destroy Second, using First instead.
Chris Lattnerb2a31092002-08-30 20:22:29 +0000220 ReplaceInstWithInst(First, BI);
221 Ret = First;
Chris Lattner1467f642002-04-28 00:47:11 +0000222
223 // Otherwise, the two instructions are in different basic blocks. If one
224 // dominates the other instruction, we can simply use it
225 //
226 } else if (DomSetInfo->dominates(BB1, BB2)) { // I dom Other?
Chris Lattner113f4f42002-06-25 16:13:24 +0000227 ReplaceInstWithInst(I, Other);
Chris Lattnerb2a31092002-08-30 20:22:29 +0000228 Ret = I;
Chris Lattner1467f642002-04-28 00:47:11 +0000229 } else if (DomSetInfo->dominates(BB2, BB1)) { // Other dom I?
Chris Lattner113f4f42002-06-25 16:13:24 +0000230 ReplaceInstWithInst(Other, I);
Chris Lattnerb2a31092002-08-30 20:22:29 +0000231 Ret = Other;
Chris Lattner1467f642002-04-28 00:47:11 +0000232 } else {
Chris Lattnerf56bd892002-08-02 18:06:01 +0000233 // This code is disabled because it has several problems:
234 // One, the actual assumption is wrong, as shown by this code:
235 // int "test"(int %X, int %Y) {
236 // %Z = add int %X, %Y
237 // ret int %Z
238 // Unreachable:
239 // %Q = add int %X, %Y
240 // ret int %Q
241 // }
242 //
243 // Here there are no shared dominators. Additionally, this had the habit of
244 // moving computations where they were not always computed. For example, in
Chris Lattnerf6835992003-02-01 04:50:59 +0000245 // a case like this:
Chris Lattnerf56bd892002-08-02 18:06:01 +0000246 // if (c) {
247 // if (d) ...
248 // else ... X+Y ...
249 // } else {
250 // ... X+Y ...
251 // }
252 //
Misha Brukman8b2bd4e2003-10-10 17:57:28 +0000253 // In this case, the expression would be hoisted to outside the 'if' stmt,
Chris Lattnerf56bd892002-08-02 18:06:01 +0000254 // causing the expression to be evaluated, even for the if (d) path, which
255 // could cause problems, if, for example, it caused a divide by zero. In
256 // general the problem this case is trying to solve is better addressed with
257 // PRE than GCSE.
258 //
Chris Lattnerb2a31092002-08-30 20:22:29 +0000259 return 0;
Chris Lattner1467f642002-04-28 00:47:11 +0000260 }
Chris Lattner1467f642002-04-28 00:47:11 +0000261
Chris Lattnerb2a31092002-08-30 20:22:29 +0000262 if (isa<LoadInst>(Ret))
263 ++NumLoadRemoved; // Keep track of loads eliminated
264 ++NumInstRemoved; // Keep track of number of instructions eliminated
Chris Lattner1467f642002-04-28 00:47:11 +0000265
Chris Lattnerb2a31092002-08-30 20:22:29 +0000266 // Add all users of Ret to the worklist...
267 for (Value::use_iterator I = Ret->use_begin(), E = Ret->use_end(); I != E;++I)
268 if (Instruction *Inst = dyn_cast<Instruction>(*I))
269 WorkList.insert(Inst);
Chris Lattner1467f642002-04-28 00:47:11 +0000270
Chris Lattnerb2a31092002-08-30 20:22:29 +0000271 return Ret;
Chris Lattnerd38ddb12002-05-14 05:02:40 +0000272}
Brian Gaeke960707c2003-11-11 22:41:34 +0000273
274} // End llvm namespace