blob: 5ce51c74fdeccf51163a7ce3e78278948bb56866 [file] [log] [blame]
Chris Lattner72bc70d2008-12-05 07:49:08 +00001//===- GVN.cpp - Eliminate redundant values and loads ---------------------===//
Owen Anderson1ad2cb72007-07-24 17:55:58 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Owen Anderson1ad2cb72007-07-24 17:55:58 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass performs global value numbering to eliminate fully redundant
11// instructions. It also performs simple dead load elimination.
12//
John Criswell090c0a22009-03-10 15:04:53 +000013// Note that this pass does the value numbering itself; it does not use the
Matthijs Kooijman845f5242008-06-05 07:55:49 +000014// ValueNumbering analysis passes.
15//
Owen Anderson1ad2cb72007-07-24 17:55:58 +000016//===----------------------------------------------------------------------===//
17
18#define DEBUG_TYPE "gvn"
Owen Anderson1ad2cb72007-07-24 17:55:58 +000019#include "llvm/Transforms/Scalar.h"
Owen Anderson0cd32032007-07-25 19:57:03 +000020#include "llvm/BasicBlock.h"
Owen Anderson45537912007-07-26 18:26:51 +000021#include "llvm/Constants.h"
Owen Anderson1ad2cb72007-07-24 17:55:58 +000022#include "llvm/DerivedTypes.h"
Owen Anderson45537912007-07-26 18:26:51 +000023#include "llvm/Function.h"
Devang Patelc64bc162009-03-06 02:59:27 +000024#include "llvm/IntrinsicInst.h"
Owen Anderson45537912007-07-26 18:26:51 +000025#include "llvm/Value.h"
Owen Anderson1ad2cb72007-07-24 17:55:58 +000026#include "llvm/ADT/DenseMap.h"
27#include "llvm/ADT/DepthFirstIterator.h"
Owen Anderson255dafc2008-12-15 02:03:00 +000028#include "llvm/ADT/PostOrderIterator.h"
Owen Anderson1ad2cb72007-07-24 17:55:58 +000029#include "llvm/ADT/SmallPtrSet.h"
30#include "llvm/ADT/SmallVector.h"
31#include "llvm/ADT/Statistic.h"
Owen Andersonb388ca92007-10-18 19:39:33 +000032#include "llvm/Analysis/Dominators.h"
33#include "llvm/Analysis/AliasAnalysis.h"
Owen Anderson1ad2cb72007-07-24 17:55:58 +000034#include "llvm/Analysis/MemoryDependenceAnalysis.h"
35#include "llvm/Support/CFG.h"
Owen Andersonaa0b6342008-06-19 19:57:25 +000036#include "llvm/Support/CommandLine.h"
Owen Anderson1ad2cb72007-07-24 17:55:58 +000037#include "llvm/Support/Compiler.h"
Chris Lattner9f8a6a72008-03-29 04:36:18 +000038#include "llvm/Support/Debug.h"
Owen Anderson5c274ee2008-06-19 19:54:19 +000039#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Duncan Sands4520dd22008-10-08 07:23:46 +000040#include <cstdio>
Owen Anderson1ad2cb72007-07-24 17:55:58 +000041using namespace llvm;
42
Bill Wendling70ded192008-12-22 22:14:07 +000043STATISTIC(NumGVNInstr, "Number of instructions deleted");
44STATISTIC(NumGVNLoad, "Number of loads deleted");
45STATISTIC(NumGVNPRE, "Number of instructions PRE'd");
Owen Anderson961edc82008-07-15 16:28:06 +000046STATISTIC(NumGVNBlocks, "Number of blocks merged");
Bill Wendling70ded192008-12-22 22:14:07 +000047STATISTIC(NumPRELoad, "Number of loads PRE'd");
Chris Lattnerd27290d2008-03-22 04:13:49 +000048
Evan Cheng88d11c02008-06-20 01:01:07 +000049static cl::opt<bool> EnablePRE("enable-pre",
Owen Andersonc2b856e2008-07-17 19:41:00 +000050 cl::init(true), cl::Hidden);
Bill Wendlingb8050302009-02-08 01:32:00 +000051cl::opt<bool> EnableLoadPRE("enable-load-pre"/*, cl::init(true)*/);
Owen Andersonaa0b6342008-06-19 19:57:25 +000052
Owen Anderson1ad2cb72007-07-24 17:55:58 +000053//===----------------------------------------------------------------------===//
54// ValueTable Class
55//===----------------------------------------------------------------------===//
56
57/// This class holds the mapping between values and value numbers. It is used
58/// as an efficient mechanism to determine the expression-wise equivalence of
59/// two values.
60namespace {
61 struct VISIBILITY_HIDDEN Expression {
62 enum ExpressionOpcode { ADD, SUB, MUL, UDIV, SDIV, FDIV, UREM, SREM,
63 FREM, SHL, LSHR, ASHR, AND, OR, XOR, ICMPEQ,
64 ICMPNE, ICMPUGT, ICMPUGE, ICMPULT, ICMPULE,
65 ICMPSGT, ICMPSGE, ICMPSLT, ICMPSLE, FCMPOEQ,
66 FCMPOGT, FCMPOGE, FCMPOLT, FCMPOLE, FCMPONE,
67 FCMPORD, FCMPUNO, FCMPUEQ, FCMPUGT, FCMPUGE,
68 FCMPULT, FCMPULE, FCMPUNE, EXTRACT, INSERT,
69 SHUFFLE, SELECT, TRUNC, ZEXT, SEXT, FPTOUI,
70 FPTOSI, UITOFP, SITOFP, FPTRUNC, FPEXT,
Owen Anderson3b3f58c2008-05-13 08:17:22 +000071 PTRTOINT, INTTOPTR, BITCAST, GEP, CALL, CONSTANT,
Owen Anderson3cd8eb32008-06-19 17:25:39 +000072 EMPTY, TOMBSTONE };
Owen Anderson1ad2cb72007-07-24 17:55:58 +000073
74 ExpressionOpcode opcode;
75 const Type* type;
76 uint32_t firstVN;
77 uint32_t secondVN;
78 uint32_t thirdVN;
79 SmallVector<uint32_t, 4> varargs;
Owen Andersonb388ca92007-10-18 19:39:33 +000080 Value* function;
Owen Anderson1ad2cb72007-07-24 17:55:58 +000081
82 Expression() { }
83 Expression(ExpressionOpcode o) : opcode(o) { }
84
85 bool operator==(const Expression &other) const {
86 if (opcode != other.opcode)
87 return false;
88 else if (opcode == EMPTY || opcode == TOMBSTONE)
89 return true;
90 else if (type != other.type)
91 return false;
Owen Andersonb388ca92007-10-18 19:39:33 +000092 else if (function != other.function)
93 return false;
Owen Anderson1ad2cb72007-07-24 17:55:58 +000094 else if (firstVN != other.firstVN)
95 return false;
96 else if (secondVN != other.secondVN)
97 return false;
98 else if (thirdVN != other.thirdVN)
99 return false;
100 else {
101 if (varargs.size() != other.varargs.size())
102 return false;
103
104 for (size_t i = 0; i < varargs.size(); ++i)
105 if (varargs[i] != other.varargs[i])
106 return false;
107
108 return true;
109 }
110 }
111
112 bool operator!=(const Expression &other) const {
Bill Wendling75f02ee2008-12-22 22:16:31 +0000113 return !(*this == other);
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000114 }
115 };
116
117 class VISIBILITY_HIDDEN ValueTable {
118 private:
119 DenseMap<Value*, uint32_t> valueNumbering;
120 DenseMap<Expression, uint32_t> expressionNumbering;
Owen Andersona472c4a2008-05-12 20:15:55 +0000121 AliasAnalysis* AA;
122 MemoryDependenceAnalysis* MD;
123 DominatorTree* DT;
Owen Andersonf41fcbb2009-04-01 01:20:45 +0000124 uint32_t true_vn, false_vn;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000125
126 uint32_t nextValueNumber;
127
128 Expression::ExpressionOpcode getOpcode(BinaryOperator* BO);
129 Expression::ExpressionOpcode getOpcode(CmpInst* C);
130 Expression::ExpressionOpcode getOpcode(CastInst* C);
131 Expression create_expression(BinaryOperator* BO);
132 Expression create_expression(CmpInst* C);
133 Expression create_expression(ShuffleVectorInst* V);
134 Expression create_expression(ExtractElementInst* C);
135 Expression create_expression(InsertElementInst* V);
136 Expression create_expression(SelectInst* V);
137 Expression create_expression(CastInst* C);
138 Expression create_expression(GetElementPtrInst* G);
Owen Andersonb388ca92007-10-18 19:39:33 +0000139 Expression create_expression(CallInst* C);
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000140 Expression create_expression(Constant* C);
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000141 public:
Owen Andersonf41fcbb2009-04-01 01:20:45 +0000142 ValueTable() : nextValueNumber(1) {
143 true_vn = lookup_or_add(ConstantInt::getTrue());
144 false_vn = lookup_or_add(ConstantInt::getFalse());
145 }
146
147 uint32_t getTrueVN() { return true_vn; }
148 uint32_t getFalseVN() { return false_vn; }
149
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000150 uint32_t lookup_or_add(Value* V);
151 uint32_t lookup(Value* V) const;
152 void add(Value* V, uint32_t num);
153 void clear();
154 void erase(Value* v);
155 unsigned size();
Owen Andersona472c4a2008-05-12 20:15:55 +0000156 void setAliasAnalysis(AliasAnalysis* A) { AA = A; }
Chris Lattner663e4412008-12-01 00:40:32 +0000157 AliasAnalysis *getAliasAnalysis() const { return AA; }
Owen Andersona472c4a2008-05-12 20:15:55 +0000158 void setMemDep(MemoryDependenceAnalysis* M) { MD = M; }
159 void setDomTree(DominatorTree* D) { DT = D; }
Owen Anderson0ae33ef2008-07-03 17:44:33 +0000160 uint32_t getNextUnusedValueNumber() { return nextValueNumber; }
Bill Wendling246dbbb2008-12-22 21:36:08 +0000161 void verifyRemoved(const Value *) const;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000162 };
163}
164
165namespace llvm {
Chris Lattner76c1b972007-09-17 18:34:04 +0000166template <> struct DenseMapInfo<Expression> {
Owen Anderson830db6a2007-08-02 18:16:06 +0000167 static inline Expression getEmptyKey() {
168 return Expression(Expression::EMPTY);
169 }
170
171 static inline Expression getTombstoneKey() {
172 return Expression(Expression::TOMBSTONE);
173 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000174
175 static unsigned getHashValue(const Expression e) {
176 unsigned hash = e.opcode;
177
178 hash = e.firstVN + hash * 37;
179 hash = e.secondVN + hash * 37;
180 hash = e.thirdVN + hash * 37;
181
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000182 hash = ((unsigned)((uintptr_t)e.type >> 4) ^
183 (unsigned)((uintptr_t)e.type >> 9)) +
184 hash * 37;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000185
Owen Anderson830db6a2007-08-02 18:16:06 +0000186 for (SmallVector<uint32_t, 4>::const_iterator I = e.varargs.begin(),
187 E = e.varargs.end(); I != E; ++I)
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000188 hash = *I + hash * 37;
189
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000190 hash = ((unsigned)((uintptr_t)e.function >> 4) ^
191 (unsigned)((uintptr_t)e.function >> 9)) +
192 hash * 37;
Owen Andersonb388ca92007-10-18 19:39:33 +0000193
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000194 return hash;
195 }
Chris Lattner76c1b972007-09-17 18:34:04 +0000196 static bool isEqual(const Expression &LHS, const Expression &RHS) {
197 return LHS == RHS;
198 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000199 static bool isPod() { return true; }
200};
201}
202
203//===----------------------------------------------------------------------===//
204// ValueTable Internal Functions
205//===----------------------------------------------------------------------===//
Chris Lattner88365bb2008-03-21 21:14:38 +0000206Expression::ExpressionOpcode ValueTable::getOpcode(BinaryOperator* BO) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000207 switch(BO->getOpcode()) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000208 default: // THIS SHOULD NEVER HAPPEN
209 assert(0 && "Binary operator with unknown opcode?");
210 case Instruction::Add: return Expression::ADD;
211 case Instruction::Sub: return Expression::SUB;
212 case Instruction::Mul: return Expression::MUL;
213 case Instruction::UDiv: return Expression::UDIV;
214 case Instruction::SDiv: return Expression::SDIV;
215 case Instruction::FDiv: return Expression::FDIV;
216 case Instruction::URem: return Expression::UREM;
217 case Instruction::SRem: return Expression::SREM;
218 case Instruction::FRem: return Expression::FREM;
219 case Instruction::Shl: return Expression::SHL;
220 case Instruction::LShr: return Expression::LSHR;
221 case Instruction::AShr: return Expression::ASHR;
222 case Instruction::And: return Expression::AND;
223 case Instruction::Or: return Expression::OR;
224 case Instruction::Xor: return Expression::XOR;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000225 }
226}
227
228Expression::ExpressionOpcode ValueTable::getOpcode(CmpInst* C) {
Nate Begeman1d6e4092008-05-18 19:49:05 +0000229 if (isa<ICmpInst>(C) || isa<VICmpInst>(C)) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000230 switch (C->getPredicate()) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000231 default: // THIS SHOULD NEVER HAPPEN
232 assert(0 && "Comparison with unknown predicate?");
233 case ICmpInst::ICMP_EQ: return Expression::ICMPEQ;
234 case ICmpInst::ICMP_NE: return Expression::ICMPNE;
235 case ICmpInst::ICMP_UGT: return Expression::ICMPUGT;
236 case ICmpInst::ICMP_UGE: return Expression::ICMPUGE;
237 case ICmpInst::ICMP_ULT: return Expression::ICMPULT;
238 case ICmpInst::ICMP_ULE: return Expression::ICMPULE;
239 case ICmpInst::ICMP_SGT: return Expression::ICMPSGT;
240 case ICmpInst::ICMP_SGE: return Expression::ICMPSGE;
241 case ICmpInst::ICMP_SLT: return Expression::ICMPSLT;
242 case ICmpInst::ICMP_SLE: return Expression::ICMPSLE;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000243 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000244 }
Nate Begeman1d6e4092008-05-18 19:49:05 +0000245 assert((isa<FCmpInst>(C) || isa<VFCmpInst>(C)) && "Unknown compare");
Chris Lattner88365bb2008-03-21 21:14:38 +0000246 switch (C->getPredicate()) {
247 default: // THIS SHOULD NEVER HAPPEN
248 assert(0 && "Comparison with unknown predicate?");
249 case FCmpInst::FCMP_OEQ: return Expression::FCMPOEQ;
250 case FCmpInst::FCMP_OGT: return Expression::FCMPOGT;
251 case FCmpInst::FCMP_OGE: return Expression::FCMPOGE;
252 case FCmpInst::FCMP_OLT: return Expression::FCMPOLT;
253 case FCmpInst::FCMP_OLE: return Expression::FCMPOLE;
254 case FCmpInst::FCMP_ONE: return Expression::FCMPONE;
255 case FCmpInst::FCMP_ORD: return Expression::FCMPORD;
256 case FCmpInst::FCMP_UNO: return Expression::FCMPUNO;
257 case FCmpInst::FCMP_UEQ: return Expression::FCMPUEQ;
258 case FCmpInst::FCMP_UGT: return Expression::FCMPUGT;
259 case FCmpInst::FCMP_UGE: return Expression::FCMPUGE;
260 case FCmpInst::FCMP_ULT: return Expression::FCMPULT;
261 case FCmpInst::FCMP_ULE: return Expression::FCMPULE;
262 case FCmpInst::FCMP_UNE: return Expression::FCMPUNE;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000263 }
264}
265
Chris Lattner88365bb2008-03-21 21:14:38 +0000266Expression::ExpressionOpcode ValueTable::getOpcode(CastInst* C) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000267 switch(C->getOpcode()) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000268 default: // THIS SHOULD NEVER HAPPEN
269 assert(0 && "Cast operator with unknown opcode?");
270 case Instruction::Trunc: return Expression::TRUNC;
271 case Instruction::ZExt: return Expression::ZEXT;
272 case Instruction::SExt: return Expression::SEXT;
273 case Instruction::FPToUI: return Expression::FPTOUI;
274 case Instruction::FPToSI: return Expression::FPTOSI;
275 case Instruction::UIToFP: return Expression::UITOFP;
276 case Instruction::SIToFP: return Expression::SITOFP;
277 case Instruction::FPTrunc: return Expression::FPTRUNC;
278 case Instruction::FPExt: return Expression::FPEXT;
279 case Instruction::PtrToInt: return Expression::PTRTOINT;
280 case Instruction::IntToPtr: return Expression::INTTOPTR;
281 case Instruction::BitCast: return Expression::BITCAST;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000282 }
283}
284
Owen Andersonb388ca92007-10-18 19:39:33 +0000285Expression ValueTable::create_expression(CallInst* C) {
286 Expression e;
287
288 e.type = C->getType();
289 e.firstVN = 0;
290 e.secondVN = 0;
291 e.thirdVN = 0;
292 e.function = C->getCalledFunction();
293 e.opcode = Expression::CALL;
294
295 for (CallInst::op_iterator I = C->op_begin()+1, E = C->op_end();
296 I != E; ++I)
Owen Anderson8f46c782008-04-11 05:11:49 +0000297 e.varargs.push_back(lookup_or_add(*I));
Owen Andersonb388ca92007-10-18 19:39:33 +0000298
299 return e;
300}
301
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000302Expression ValueTable::create_expression(BinaryOperator* BO) {
303 Expression e;
304
Owen Anderson8f46c782008-04-11 05:11:49 +0000305 e.firstVN = lookup_or_add(BO->getOperand(0));
306 e.secondVN = lookup_or_add(BO->getOperand(1));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000307 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000308 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000309 e.type = BO->getType();
310 e.opcode = getOpcode(BO);
311
312 return e;
313}
314
315Expression ValueTable::create_expression(CmpInst* C) {
316 Expression e;
317
Owen Anderson8f46c782008-04-11 05:11:49 +0000318 e.firstVN = lookup_or_add(C->getOperand(0));
319 e.secondVN = lookup_or_add(C->getOperand(1));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000320 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000321 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000322 e.type = C->getType();
323 e.opcode = getOpcode(C);
324
325 return e;
326}
327
328Expression ValueTable::create_expression(CastInst* C) {
329 Expression e;
330
Owen Anderson8f46c782008-04-11 05:11:49 +0000331 e.firstVN = lookup_or_add(C->getOperand(0));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000332 e.secondVN = 0;
333 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000334 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000335 e.type = C->getType();
336 e.opcode = getOpcode(C);
337
338 return e;
339}
340
341Expression ValueTable::create_expression(ShuffleVectorInst* S) {
342 Expression e;
343
Owen Anderson8f46c782008-04-11 05:11:49 +0000344 e.firstVN = lookup_or_add(S->getOperand(0));
345 e.secondVN = lookup_or_add(S->getOperand(1));
346 e.thirdVN = lookup_or_add(S->getOperand(2));
Owen Andersonb388ca92007-10-18 19:39:33 +0000347 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000348 e.type = S->getType();
349 e.opcode = Expression::SHUFFLE;
350
351 return e;
352}
353
354Expression ValueTable::create_expression(ExtractElementInst* E) {
355 Expression e;
356
Owen Anderson8f46c782008-04-11 05:11:49 +0000357 e.firstVN = lookup_or_add(E->getOperand(0));
358 e.secondVN = lookup_or_add(E->getOperand(1));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000359 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000360 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000361 e.type = E->getType();
362 e.opcode = Expression::EXTRACT;
363
364 return e;
365}
366
367Expression ValueTable::create_expression(InsertElementInst* I) {
368 Expression e;
369
Owen Anderson8f46c782008-04-11 05:11:49 +0000370 e.firstVN = lookup_or_add(I->getOperand(0));
371 e.secondVN = lookup_or_add(I->getOperand(1));
372 e.thirdVN = lookup_or_add(I->getOperand(2));
Owen Andersonb388ca92007-10-18 19:39:33 +0000373 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000374 e.type = I->getType();
375 e.opcode = Expression::INSERT;
376
377 return e;
378}
379
380Expression ValueTable::create_expression(SelectInst* I) {
381 Expression e;
382
Owen Anderson8f46c782008-04-11 05:11:49 +0000383 e.firstVN = lookup_or_add(I->getCondition());
384 e.secondVN = lookup_or_add(I->getTrueValue());
385 e.thirdVN = lookup_or_add(I->getFalseValue());
Owen Andersonb388ca92007-10-18 19:39:33 +0000386 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000387 e.type = I->getType();
388 e.opcode = Expression::SELECT;
389
390 return e;
391}
392
393Expression ValueTable::create_expression(GetElementPtrInst* G) {
394 Expression e;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000395
Owen Anderson8f46c782008-04-11 05:11:49 +0000396 e.firstVN = lookup_or_add(G->getPointerOperand());
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000397 e.secondVN = 0;
398 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000399 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000400 e.type = G->getType();
401 e.opcode = Expression::GEP;
402
403 for (GetElementPtrInst::op_iterator I = G->idx_begin(), E = G->idx_end();
404 I != E; ++I)
Owen Anderson8f46c782008-04-11 05:11:49 +0000405 e.varargs.push_back(lookup_or_add(*I));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000406
407 return e;
408}
409
410//===----------------------------------------------------------------------===//
411// ValueTable External Functions
412//===----------------------------------------------------------------------===//
413
Owen Andersonb2303722008-06-18 21:41:49 +0000414/// add - Insert a value into the table with a specified value number.
415void ValueTable::add(Value* V, uint32_t num) {
416 valueNumbering.insert(std::make_pair(V, num));
417}
418
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000419/// lookup_or_add - Returns the value number for the specified value, assigning
420/// it a new number if it did not have one before.
421uint32_t ValueTable::lookup_or_add(Value* V) {
422 DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
423 if (VI != valueNumbering.end())
424 return VI->second;
425
Owen Andersonb388ca92007-10-18 19:39:33 +0000426 if (CallInst* C = dyn_cast<CallInst>(V)) {
Owen Anderson8f46c782008-04-11 05:11:49 +0000427 if (AA->doesNotAccessMemory(C)) {
Owen Andersonb388ca92007-10-18 19:39:33 +0000428 Expression e = create_expression(C);
429
430 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
431 if (EI != expressionNumbering.end()) {
432 valueNumbering.insert(std::make_pair(V, EI->second));
433 return EI->second;
434 } else {
435 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
436 valueNumbering.insert(std::make_pair(V, nextValueNumber));
437
438 return nextValueNumber++;
439 }
Owen Anderson241f6532008-04-17 05:36:50 +0000440 } else if (AA->onlyReadsMemory(C)) {
441 Expression e = create_expression(C);
442
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000443 if (expressionNumbering.find(e) == expressionNumbering.end()) {
Owen Anderson241f6532008-04-17 05:36:50 +0000444 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
445 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000446 return nextValueNumber++;
447 }
Owen Anderson241f6532008-04-17 05:36:50 +0000448
Chris Lattner4c724002008-11-29 02:29:27 +0000449 MemDepResult local_dep = MD->getDependency(C);
Owen Andersonc4f406e2008-05-13 23:18:30 +0000450
Chris Lattnerb51deb92008-12-05 21:04:20 +0000451 if (!local_dep.isDef() && !local_dep.isNonLocal()) {
Owen Andersonc4f406e2008-05-13 23:18:30 +0000452 valueNumbering.insert(std::make_pair(V, nextValueNumber));
453 return nextValueNumber++;
Chris Lattner1440ac52008-11-30 23:39:23 +0000454 }
Chris Lattnerb51deb92008-12-05 21:04:20 +0000455
456 if (local_dep.isDef()) {
457 CallInst* local_cdep = cast<CallInst>(local_dep.getInst());
458
459 if (local_cdep->getNumOperands() != C->getNumOperands()) {
Owen Andersonc4f406e2008-05-13 23:18:30 +0000460 valueNumbering.insert(std::make_pair(V, nextValueNumber));
461 return nextValueNumber++;
462 }
Chris Lattnerb51deb92008-12-05 21:04:20 +0000463
Chris Lattner1440ac52008-11-30 23:39:23 +0000464 for (unsigned i = 1; i < C->getNumOperands(); ++i) {
465 uint32_t c_vn = lookup_or_add(C->getOperand(i));
466 uint32_t cd_vn = lookup_or_add(local_cdep->getOperand(i));
467 if (c_vn != cd_vn) {
468 valueNumbering.insert(std::make_pair(V, nextValueNumber));
469 return nextValueNumber++;
470 }
471 }
472
473 uint32_t v = lookup_or_add(local_cdep);
474 valueNumbering.insert(std::make_pair(V, v));
475 return v;
Owen Andersonc4f406e2008-05-13 23:18:30 +0000476 }
Chris Lattnerbf145d62008-12-01 01:15:42 +0000477
Chris Lattnerb51deb92008-12-05 21:04:20 +0000478 // Non-local case.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000479 const MemoryDependenceAnalysis::NonLocalDepInfo &deps =
Chris Lattner1559b362008-12-09 19:38:05 +0000480 MD->getNonLocalCallDependency(CallSite(C));
Chris Lattnerb51deb92008-12-05 21:04:20 +0000481 // FIXME: call/call dependencies for readonly calls should return def, not
482 // clobber! Move the checking logic to MemDep!
Owen Anderson16db1f72008-05-13 13:41:23 +0000483 CallInst* cdep = 0;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000484
Chris Lattner1440ac52008-11-30 23:39:23 +0000485 // Check to see if we have a single dominating call instruction that is
486 // identical to C.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000487 for (unsigned i = 0, e = deps.size(); i != e; ++i) {
488 const MemoryDependenceAnalysis::NonLocalDepEntry *I = &deps[i];
Chris Lattner1440ac52008-11-30 23:39:23 +0000489 // Ignore non-local dependencies.
490 if (I->second.isNonLocal())
491 continue;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000492
Chris Lattner1440ac52008-11-30 23:39:23 +0000493 // We don't handle non-depedencies. If we already have a call, reject
494 // instruction dependencies.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000495 if (I->second.isClobber() || cdep != 0) {
Chris Lattner1440ac52008-11-30 23:39:23 +0000496 cdep = 0;
497 break;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000498 }
Chris Lattner1440ac52008-11-30 23:39:23 +0000499
500 CallInst *NonLocalDepCall = dyn_cast<CallInst>(I->second.getInst());
501 // FIXME: All duplicated with non-local case.
502 if (NonLocalDepCall && DT->properlyDominates(I->first, C->getParent())){
503 cdep = NonLocalDepCall;
504 continue;
505 }
506
507 cdep = 0;
508 break;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000509 }
510
Owen Anderson16db1f72008-05-13 13:41:23 +0000511 if (!cdep) {
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000512 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson241f6532008-04-17 05:36:50 +0000513 return nextValueNumber++;
514 }
515
Chris Lattnerb51deb92008-12-05 21:04:20 +0000516 if (cdep->getNumOperands() != C->getNumOperands()) {
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000517 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson241f6532008-04-17 05:36:50 +0000518 return nextValueNumber++;
Owen Anderson241f6532008-04-17 05:36:50 +0000519 }
Chris Lattner1440ac52008-11-30 23:39:23 +0000520 for (unsigned i = 1; i < C->getNumOperands(); ++i) {
521 uint32_t c_vn = lookup_or_add(C->getOperand(i));
522 uint32_t cd_vn = lookup_or_add(cdep->getOperand(i));
523 if (c_vn != cd_vn) {
524 valueNumbering.insert(std::make_pair(V, nextValueNumber));
525 return nextValueNumber++;
526 }
527 }
528
529 uint32_t v = lookup_or_add(cdep);
530 valueNumbering.insert(std::make_pair(V, v));
531 return v;
Owen Anderson241f6532008-04-17 05:36:50 +0000532
Owen Andersonb388ca92007-10-18 19:39:33 +0000533 } else {
534 valueNumbering.insert(std::make_pair(V, nextValueNumber));
535 return nextValueNumber++;
536 }
537 } else if (BinaryOperator* BO = dyn_cast<BinaryOperator>(V)) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000538 Expression e = create_expression(BO);
539
540 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
541 if (EI != expressionNumbering.end()) {
542 valueNumbering.insert(std::make_pair(V, EI->second));
543 return EI->second;
544 } else {
545 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
546 valueNumbering.insert(std::make_pair(V, nextValueNumber));
547
548 return nextValueNumber++;
549 }
550 } else if (CmpInst* C = dyn_cast<CmpInst>(V)) {
551 Expression e = create_expression(C);
552
553 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
554 if (EI != expressionNumbering.end()) {
555 valueNumbering.insert(std::make_pair(V, EI->second));
556 return EI->second;
557 } else {
558 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
559 valueNumbering.insert(std::make_pair(V, nextValueNumber));
560
561 return nextValueNumber++;
562 }
563 } else if (ShuffleVectorInst* U = dyn_cast<ShuffleVectorInst>(V)) {
564 Expression e = create_expression(U);
565
566 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
567 if (EI != expressionNumbering.end()) {
568 valueNumbering.insert(std::make_pair(V, EI->second));
569 return EI->second;
570 } else {
571 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
572 valueNumbering.insert(std::make_pair(V, nextValueNumber));
573
574 return nextValueNumber++;
575 }
576 } else if (ExtractElementInst* U = dyn_cast<ExtractElementInst>(V)) {
577 Expression e = create_expression(U);
578
579 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
580 if (EI != expressionNumbering.end()) {
581 valueNumbering.insert(std::make_pair(V, EI->second));
582 return EI->second;
583 } else {
584 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
585 valueNumbering.insert(std::make_pair(V, nextValueNumber));
586
587 return nextValueNumber++;
588 }
589 } else if (InsertElementInst* U = dyn_cast<InsertElementInst>(V)) {
590 Expression e = create_expression(U);
591
592 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
593 if (EI != expressionNumbering.end()) {
594 valueNumbering.insert(std::make_pair(V, EI->second));
595 return EI->second;
596 } else {
597 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
598 valueNumbering.insert(std::make_pair(V, nextValueNumber));
599
600 return nextValueNumber++;
601 }
602 } else if (SelectInst* U = dyn_cast<SelectInst>(V)) {
603 Expression e = create_expression(U);
604
605 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
606 if (EI != expressionNumbering.end()) {
607 valueNumbering.insert(std::make_pair(V, EI->second));
608 return EI->second;
609 } else {
610 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
611 valueNumbering.insert(std::make_pair(V, nextValueNumber));
612
613 return nextValueNumber++;
614 }
615 } else if (CastInst* U = dyn_cast<CastInst>(V)) {
616 Expression e = create_expression(U);
617
618 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
619 if (EI != expressionNumbering.end()) {
620 valueNumbering.insert(std::make_pair(V, EI->second));
621 return EI->second;
622 } else {
623 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
624 valueNumbering.insert(std::make_pair(V, nextValueNumber));
625
626 return nextValueNumber++;
627 }
628 } else if (GetElementPtrInst* U = dyn_cast<GetElementPtrInst>(V)) {
629 Expression e = create_expression(U);
630
631 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
632 if (EI != expressionNumbering.end()) {
633 valueNumbering.insert(std::make_pair(V, EI->second));
634 return EI->second;
635 } else {
636 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
637 valueNumbering.insert(std::make_pair(V, nextValueNumber));
638
639 return nextValueNumber++;
640 }
641 } else {
642 valueNumbering.insert(std::make_pair(V, nextValueNumber));
643 return nextValueNumber++;
644 }
645}
646
647/// lookup - Returns the value number of the specified value. Fails if
648/// the value has not yet been numbered.
649uint32_t ValueTable::lookup(Value* V) const {
650 DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
Chris Lattner88365bb2008-03-21 21:14:38 +0000651 assert(VI != valueNumbering.end() && "Value not numbered?");
652 return VI->second;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000653}
654
655/// clear - Remove all entries from the ValueTable
656void ValueTable::clear() {
657 valueNumbering.clear();
658 expressionNumbering.clear();
659 nextValueNumber = 1;
660}
661
Owen Andersonbf7d0bc2007-07-31 23:27:13 +0000662/// erase - Remove a value from the value numbering
663void ValueTable::erase(Value* V) {
664 valueNumbering.erase(V);
665}
666
Bill Wendling246dbbb2008-12-22 21:36:08 +0000667/// verifyRemoved - Verify that the value is removed from all internal data
668/// structures.
669void ValueTable::verifyRemoved(const Value *V) const {
670 for (DenseMap<Value*, uint32_t>::iterator
671 I = valueNumbering.begin(), E = valueNumbering.end(); I != E; ++I) {
672 assert(I->first != V && "Inst still occurs in value numbering map!");
673 }
674}
675
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000676//===----------------------------------------------------------------------===//
Bill Wendling30788b82008-12-22 22:32:22 +0000677// GVN Pass
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000678//===----------------------------------------------------------------------===//
679
680namespace {
Owen Anderson6fafe842008-06-20 01:15:47 +0000681 struct VISIBILITY_HIDDEN ValueNumberScope {
682 ValueNumberScope* parent;
683 DenseMap<uint32_t, Value*> table;
684
685 ValueNumberScope(ValueNumberScope* p) : parent(p) { }
686 };
687}
688
689namespace {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000690
691 class VISIBILITY_HIDDEN GVN : public FunctionPass {
692 bool runOnFunction(Function &F);
693 public:
694 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +0000695 GVN() : FunctionPass(&ID) { }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000696
697 private:
Chris Lattner663e4412008-12-01 00:40:32 +0000698 MemoryDependenceAnalysis *MD;
699 DominatorTree *DT;
700
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000701 ValueTable VN;
Owen Anderson6fafe842008-06-20 01:15:47 +0000702 DenseMap<BasicBlock*, ValueNumberScope*> localAvail;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000703
Owen Andersona37226a2007-08-07 23:12:31 +0000704 typedef DenseMap<Value*, SmallPtrSet<Instruction*, 4> > PhiMapType;
705 PhiMapType phiMap;
706
707
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000708 // This transformation requires dominator postdominator info
709 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000710 AU.addRequired<DominatorTree>();
711 AU.addRequired<MemoryDependenceAnalysis>();
Owen Andersonb388ca92007-10-18 19:39:33 +0000712 AU.addRequired<AliasAnalysis>();
Owen Andersonb70a5712008-06-23 17:49:45 +0000713
714 AU.addPreserved<DominatorTree>();
Owen Andersonb388ca92007-10-18 19:39:33 +0000715 AU.addPreserved<AliasAnalysis>();
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000716 }
717
718 // Helper fuctions
719 // FIXME: eliminate or document these better
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000720 bool processLoad(LoadInst* L,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000721 SmallVectorImpl<Instruction*> &toErase);
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000722 bool processInstruction(Instruction* I,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000723 SmallVectorImpl<Instruction*> &toErase);
Owen Anderson830db6a2007-08-02 18:16:06 +0000724 bool processNonLocalLoad(LoadInst* L,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000725 SmallVectorImpl<Instruction*> &toErase);
Owen Anderson255dafc2008-12-15 02:03:00 +0000726 bool processBlock(BasicBlock* BB);
Owen Andersoncbe1d942008-12-14 19:10:35 +0000727 Value *GetValueForBlock(BasicBlock *BB, Instruction* orig,
Owen Anderson1c2763d2007-08-02 17:56:05 +0000728 DenseMap<BasicBlock*, Value*> &Phis,
729 bool top_level = false);
Owen Andersonb2303722008-06-18 21:41:49 +0000730 void dump(DenseMap<uint32_t, Value*>& d);
Owen Anderson3e75a422007-08-14 18:04:11 +0000731 bool iterateOnFunction(Function &F);
Owen Anderson1defe2d2007-08-16 22:51:56 +0000732 Value* CollapsePhi(PHINode* p);
Owen Anderson24866862007-09-16 08:04:16 +0000733 bool isSafeReplacement(PHINode* p, Instruction* inst);
Owen Andersonb2303722008-06-18 21:41:49 +0000734 bool performPRE(Function& F);
Owen Anderson6fafe842008-06-20 01:15:47 +0000735 Value* lookupNumber(BasicBlock* BB, uint32_t num);
Owen Anderson961edc82008-07-15 16:28:06 +0000736 bool mergeBlockIntoPredecessor(BasicBlock* BB);
Owen Anderson255dafc2008-12-15 02:03:00 +0000737 Value* AttemptRedundancyElimination(Instruction* orig, unsigned valno);
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +0000738 void cleanupGlobalSets();
Bill Wendling246dbbb2008-12-22 21:36:08 +0000739 void verifyRemoved(const Instruction *I) const;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000740 };
741
742 char GVN::ID = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000743}
744
745// createGVNPass - The public interface to this file...
746FunctionPass *llvm::createGVNPass() { return new GVN(); }
747
748static RegisterPass<GVN> X("gvn",
749 "Global Value Numbering");
750
Owen Andersonb2303722008-06-18 21:41:49 +0000751void GVN::dump(DenseMap<uint32_t, Value*>& d) {
Owen Anderson0cd32032007-07-25 19:57:03 +0000752 printf("{\n");
Owen Andersonb2303722008-06-18 21:41:49 +0000753 for (DenseMap<uint32_t, Value*>::iterator I = d.begin(),
Owen Anderson0cd32032007-07-25 19:57:03 +0000754 E = d.end(); I != E; ++I) {
Owen Andersonb2303722008-06-18 21:41:49 +0000755 printf("%d\n", I->first);
Owen Anderson0cd32032007-07-25 19:57:03 +0000756 I->second->dump();
757 }
758 printf("}\n");
759}
760
Owen Anderson1defe2d2007-08-16 22:51:56 +0000761Value* GVN::CollapsePhi(PHINode* p) {
Owen Anderson1defe2d2007-08-16 22:51:56 +0000762 Value* constVal = p->hasConstantValue();
Chris Lattner88365bb2008-03-21 21:14:38 +0000763 if (!constVal) return 0;
Owen Anderson1defe2d2007-08-16 22:51:56 +0000764
Chris Lattner88365bb2008-03-21 21:14:38 +0000765 Instruction* inst = dyn_cast<Instruction>(constVal);
766 if (!inst)
767 return constVal;
768
Chris Lattner663e4412008-12-01 00:40:32 +0000769 if (DT->dominates(inst, p))
Chris Lattner88365bb2008-03-21 21:14:38 +0000770 if (isSafeReplacement(p, inst))
771 return inst;
Owen Anderson1defe2d2007-08-16 22:51:56 +0000772 return 0;
773}
Owen Anderson0cd32032007-07-25 19:57:03 +0000774
Owen Anderson24866862007-09-16 08:04:16 +0000775bool GVN::isSafeReplacement(PHINode* p, Instruction* inst) {
776 if (!isa<PHINode>(inst))
777 return true;
778
779 for (Instruction::use_iterator UI = p->use_begin(), E = p->use_end();
780 UI != E; ++UI)
781 if (PHINode* use_phi = dyn_cast<PHINode>(UI))
782 if (use_phi->getParent() == inst->getParent())
783 return false;
784
785 return true;
786}
787
Owen Anderson45537912007-07-26 18:26:51 +0000788/// GetValueForBlock - Get the value to use within the specified basic block.
789/// available values are in Phis.
Owen Andersoncbe1d942008-12-14 19:10:35 +0000790Value *GVN::GetValueForBlock(BasicBlock *BB, Instruction* orig,
Chris Lattner88365bb2008-03-21 21:14:38 +0000791 DenseMap<BasicBlock*, Value*> &Phis,
792 bool top_level) {
Owen Anderson45537912007-07-26 18:26:51 +0000793
794 // If we have already computed this value, return the previously computed val.
Owen Andersonab870272007-08-03 19:59:35 +0000795 DenseMap<BasicBlock*, Value*>::iterator V = Phis.find(BB);
796 if (V != Phis.end() && !top_level) return V->second;
Owen Anderson45537912007-07-26 18:26:51 +0000797
Owen Andersoncb29a4f2008-07-02 18:15:31 +0000798 // If the block is unreachable, just return undef, since this path
799 // can't actually occur at runtime.
Chris Lattner663e4412008-12-01 00:40:32 +0000800 if (!DT->isReachableFromEntry(BB))
Owen Andersoncb29a4f2008-07-02 18:15:31 +0000801 return Phis[BB] = UndefValue::get(orig->getType());
Owen Andersonf2aa1602008-07-02 17:20:16 +0000802
Chris Lattnerae199312008-12-09 19:21:47 +0000803 if (BasicBlock *Pred = BB->getSinglePredecessor()) {
804 Value *ret = GetValueForBlock(Pred, orig, Phis);
Owen Andersonab870272007-08-03 19:59:35 +0000805 Phis[BB] = ret;
806 return ret;
Owen Anderson4b55c3b2007-08-03 11:03:26 +0000807 }
Chris Lattnerae199312008-12-09 19:21:47 +0000808
809 // Get the number of predecessors of this block so we can reserve space later.
810 // If there is already a PHI in it, use the #preds from it, otherwise count.
811 // Getting it from the PHI is constant time.
812 unsigned NumPreds;
813 if (PHINode *ExistingPN = dyn_cast<PHINode>(BB->begin()))
814 NumPreds = ExistingPN->getNumIncomingValues();
815 else
816 NumPreds = std::distance(pred_begin(BB), pred_end(BB));
Chris Lattner88365bb2008-03-21 21:14:38 +0000817
Owen Anderson45537912007-07-26 18:26:51 +0000818 // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so
819 // now, then get values to fill in the incoming values for the PHI.
Gabor Greif051a9502008-04-06 20:25:17 +0000820 PHINode *PN = PHINode::Create(orig->getType(), orig->getName()+".rle",
821 BB->begin());
Chris Lattnerae199312008-12-09 19:21:47 +0000822 PN->reserveOperandSpace(NumPreds);
Owen Andersonab870272007-08-03 19:59:35 +0000823
Chris Lattnerae199312008-12-09 19:21:47 +0000824 Phis.insert(std::make_pair(BB, PN));
Owen Anderson4f9ba7c2007-07-30 16:57:08 +0000825
Owen Anderson45537912007-07-26 18:26:51 +0000826 // Fill in the incoming values for the block.
Owen Anderson054ab942007-07-31 17:43:14 +0000827 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
828 Value* val = GetValueForBlock(*PI, orig, Phis);
Owen Anderson054ab942007-07-31 17:43:14 +0000829 PN->addIncoming(val, *PI);
830 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000831
Chris Lattner663e4412008-12-01 00:40:32 +0000832 VN.getAliasAnalysis()->copyValue(orig, PN);
Owen Anderson054ab942007-07-31 17:43:14 +0000833
Owen Anderson62bc33c2007-08-16 22:02:55 +0000834 // Attempt to collapse PHI nodes that are trivially redundant
Owen Anderson1defe2d2007-08-16 22:51:56 +0000835 Value* v = CollapsePhi(PN);
Chris Lattner88365bb2008-03-21 21:14:38 +0000836 if (!v) {
837 // Cache our phi construction results
Owen Andersoncbe1d942008-12-14 19:10:35 +0000838 if (LoadInst* L = dyn_cast<LoadInst>(orig))
839 phiMap[L->getPointerOperand()].insert(PN);
840 else
841 phiMap[orig].insert(PN);
842
Chris Lattner88365bb2008-03-21 21:14:38 +0000843 return PN;
Owen Anderson054ab942007-07-31 17:43:14 +0000844 }
Owen Andersona472c4a2008-05-12 20:15:55 +0000845
Chris Lattner88365bb2008-03-21 21:14:38 +0000846 PN->replaceAllUsesWith(v);
Chris Lattnerbc99be12008-12-09 22:06:23 +0000847 if (isa<PointerType>(v->getType()))
848 MD->invalidateCachedPointerInfo(v);
Chris Lattner88365bb2008-03-21 21:14:38 +0000849
850 for (DenseMap<BasicBlock*, Value*>::iterator I = Phis.begin(),
851 E = Phis.end(); I != E; ++I)
852 if (I->second == PN)
853 I->second = v;
854
Chris Lattner663e4412008-12-01 00:40:32 +0000855 DEBUG(cerr << "GVN removed: " << *PN);
856 MD->removeInstruction(PN);
Chris Lattner88365bb2008-03-21 21:14:38 +0000857 PN->eraseFromParent();
Bill Wendling246dbbb2008-12-22 21:36:08 +0000858 DEBUG(verifyRemoved(PN));
Chris Lattner88365bb2008-03-21 21:14:38 +0000859
860 Phis[BB] = v;
861 return v;
Owen Anderson0cd32032007-07-25 19:57:03 +0000862}
863
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000864/// IsValueFullyAvailableInBlock - Return true if we can prove that the value
865/// we're analyzing is fully available in the specified block. As we go, keep
Chris Lattner72bc70d2008-12-05 07:49:08 +0000866/// track of which blocks we know are fully alive in FullyAvailableBlocks. This
867/// map is actually a tri-state map with the following values:
868/// 0) we know the block *is not* fully available.
869/// 1) we know the block *is* fully available.
870/// 2) we do not know whether the block is fully available or not, but we are
871/// currently speculating that it will be.
872/// 3) we are speculating for this block and have used that to speculate for
873/// other blocks.
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000874static bool IsValueFullyAvailableInBlock(BasicBlock *BB,
Chris Lattner72bc70d2008-12-05 07:49:08 +0000875 DenseMap<BasicBlock*, char> &FullyAvailableBlocks) {
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000876 // Optimistically assume that the block is fully available and check to see
877 // if we already know about this block in one lookup.
Chris Lattner72bc70d2008-12-05 07:49:08 +0000878 std::pair<DenseMap<BasicBlock*, char>::iterator, char> IV =
879 FullyAvailableBlocks.insert(std::make_pair(BB, 2));
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000880
881 // If the entry already existed for this block, return the precomputed value.
Chris Lattner72bc70d2008-12-05 07:49:08 +0000882 if (!IV.second) {
883 // If this is a speculative "available" value, mark it as being used for
884 // speculation of other blocks.
885 if (IV.first->second == 2)
886 IV.first->second = 3;
887 return IV.first->second != 0;
888 }
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000889
890 // Otherwise, see if it is fully available in all predecessors.
891 pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
892
893 // If this block has no predecessors, it isn't live-in here.
894 if (PI == PE)
Chris Lattner72bc70d2008-12-05 07:49:08 +0000895 goto SpeculationFailure;
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000896
897 for (; PI != PE; ++PI)
898 // If the value isn't fully available in one of our predecessors, then it
899 // isn't fully available in this block either. Undo our previous
900 // optimistic assumption and bail out.
901 if (!IsValueFullyAvailableInBlock(*PI, FullyAvailableBlocks))
Chris Lattner72bc70d2008-12-05 07:49:08 +0000902 goto SpeculationFailure;
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000903
904 return true;
Chris Lattner72bc70d2008-12-05 07:49:08 +0000905
906// SpeculationFailure - If we get here, we found out that this is not, after
907// all, a fully-available block. We have a problem if we speculated on this and
908// used the speculation to mark other blocks as available.
909SpeculationFailure:
910 char &BBVal = FullyAvailableBlocks[BB];
911
912 // If we didn't speculate on this, just return with it set to false.
913 if (BBVal == 2) {
914 BBVal = 0;
915 return false;
916 }
917
918 // If we did speculate on this value, we could have blocks set to 1 that are
919 // incorrect. Walk the (transitive) successors of this block and mark them as
920 // 0 if set to one.
921 SmallVector<BasicBlock*, 32> BBWorklist;
922 BBWorklist.push_back(BB);
923
924 while (!BBWorklist.empty()) {
925 BasicBlock *Entry = BBWorklist.pop_back_val();
926 // Note that this sets blocks to 0 (unavailable) if they happen to not
927 // already be in FullyAvailableBlocks. This is safe.
928 char &EntryVal = FullyAvailableBlocks[Entry];
929 if (EntryVal == 0) continue; // Already unavailable.
930
931 // Mark as unavailable.
932 EntryVal = 0;
933
934 for (succ_iterator I = succ_begin(Entry), E = succ_end(Entry); I != E; ++I)
935 BBWorklist.push_back(*I);
936 }
937
938 return false;
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000939}
940
Owen Anderson62bc33c2007-08-16 22:02:55 +0000941/// processNonLocalLoad - Attempt to eliminate a load whose dependencies are
942/// non-local by performing PHI construction.
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000943bool GVN::processNonLocalLoad(LoadInst *LI,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000944 SmallVectorImpl<Instruction*> &toErase) {
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000945 // Find the non-local dependencies of the load.
Chris Lattner91bcf642008-12-09 19:25:07 +0000946 SmallVector<MemoryDependenceAnalysis::NonLocalDepEntry, 64> Deps;
947 MD->getNonLocalPointerDependency(LI->getOperand(0), true, LI->getParent(),
948 Deps);
949 //DEBUG(cerr << "INVESTIGATING NONLOCAL LOAD: " << Deps.size() << *LI);
Owen Anderson0cd32032007-07-25 19:57:03 +0000950
Owen Anderson516eb1c2008-08-26 22:07:42 +0000951 // If we had to process more than one hundred blocks to find the
952 // dependencies, this load isn't worth worrying about. Optimizing
953 // it will be too expensive.
Chris Lattner91bcf642008-12-09 19:25:07 +0000954 if (Deps.size() > 100)
Owen Anderson516eb1c2008-08-26 22:07:42 +0000955 return false;
Chris Lattner5f4f84b2008-12-18 00:51:32 +0000956
957 // If we had a phi translation failure, we'll have a single entry which is a
958 // clobber in the current block. Reject this early.
959 if (Deps.size() == 1 && Deps[0].second.isClobber())
960 return false;
Owen Anderson516eb1c2008-08-26 22:07:42 +0000961
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000962 // Filter out useless results (non-locals, etc). Keep track of the blocks
963 // where we have a value available in repl, also keep track of whether we see
964 // dependencies that produce an unknown value for the load (such as a call
965 // that could potentially clobber the load).
966 SmallVector<std::pair<BasicBlock*, Value*>, 16> ValuesPerBlock;
967 SmallVector<BasicBlock*, 16> UnavailableBlocks;
Owen Andersona37226a2007-08-07 23:12:31 +0000968
Chris Lattner91bcf642008-12-09 19:25:07 +0000969 for (unsigned i = 0, e = Deps.size(); i != e; ++i) {
970 BasicBlock *DepBB = Deps[i].first;
971 MemDepResult DepInfo = Deps[i].second;
Chris Lattnerbf145d62008-12-01 01:15:42 +0000972
Chris Lattnerb51deb92008-12-05 21:04:20 +0000973 if (DepInfo.isClobber()) {
974 UnavailableBlocks.push_back(DepBB);
975 continue;
976 }
977
978 Instruction *DepInst = DepInfo.getInst();
979
980 // Loading the allocation -> undef.
981 if (isa<AllocationInst>(DepInst)) {
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000982 ValuesPerBlock.push_back(std::make_pair(DepBB,
983 UndefValue::get(LI->getType())));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000984 continue;
985 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000986
Chris Lattner91bcf642008-12-09 19:25:07 +0000987 if (StoreInst* S = dyn_cast<StoreInst>(DepInst)) {
Chris Lattner978796e2008-12-01 01:31:36 +0000988 // Reject loads and stores that are to the same address but are of
989 // different types.
990 // NOTE: 403.gcc does have this case (e.g. in readonly_fields_p) because
991 // of bitfield access, it would be interesting to optimize for it at some
992 // point.
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000993 if (S->getOperand(0)->getType() != LI->getType()) {
994 UnavailableBlocks.push_back(DepBB);
995 continue;
996 }
Chris Lattner978796e2008-12-01 01:31:36 +0000997
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000998 ValuesPerBlock.push_back(std::make_pair(DepBB, S->getOperand(0)));
Chris Lattner978796e2008-12-01 01:31:36 +0000999
Chris Lattner91bcf642008-12-09 19:25:07 +00001000 } else if (LoadInst* LD = dyn_cast<LoadInst>(DepInst)) {
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001001 if (LD->getType() != LI->getType()) {
1002 UnavailableBlocks.push_back(DepBB);
1003 continue;
1004 }
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001005 ValuesPerBlock.push_back(std::make_pair(DepBB, LD));
Owen Anderson0cd32032007-07-25 19:57:03 +00001006 } else {
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001007 UnavailableBlocks.push_back(DepBB);
1008 continue;
Owen Anderson0cd32032007-07-25 19:57:03 +00001009 }
Chris Lattner88365bb2008-03-21 21:14:38 +00001010 }
Owen Anderson0cd32032007-07-25 19:57:03 +00001011
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001012 // If we have no predecessors that produce a known value for this load, exit
1013 // early.
1014 if (ValuesPerBlock.empty()) return false;
1015
1016 // If all of the instructions we depend on produce a known value for this
1017 // load, then it is fully redundant and we can use PHI insertion to compute
1018 // its value. Insert PHIs and remove the fully redundant value now.
1019 if (UnavailableBlocks.empty()) {
1020 // Use cached PHI construction information from previous runs
1021 SmallPtrSet<Instruction*, 4> &p = phiMap[LI->getPointerOperand()];
Chris Lattner91bcf642008-12-09 19:25:07 +00001022 // FIXME: What does phiMap do? Are we positive it isn't getting invalidated?
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001023 for (SmallPtrSet<Instruction*, 4>::iterator I = p.begin(), E = p.end();
1024 I != E; ++I) {
1025 if ((*I)->getParent() == LI->getParent()) {
1026 DEBUG(cerr << "GVN REMOVING NONLOCAL LOAD #1: " << *LI);
1027 LI->replaceAllUsesWith(*I);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001028 if (isa<PointerType>((*I)->getType()))
1029 MD->invalidateCachedPointerInfo(*I);
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001030 toErase.push_back(LI);
1031 NumGVNLoad++;
1032 return true;
1033 }
1034
1035 ValuesPerBlock.push_back(std::make_pair((*I)->getParent(), *I));
Owen Andersona37226a2007-08-07 23:12:31 +00001036 }
Chris Lattner88365bb2008-03-21 21:14:38 +00001037
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001038 DEBUG(cerr << "GVN REMOVING NONLOCAL LOAD: " << *LI);
1039
1040 DenseMap<BasicBlock*, Value*> BlockReplValues;
1041 BlockReplValues.insert(ValuesPerBlock.begin(), ValuesPerBlock.end());
1042 // Perform PHI construction.
1043 Value* v = GetValueForBlock(LI->getParent(), LI, BlockReplValues, true);
1044 LI->replaceAllUsesWith(v);
Chris Lattnerf3313162008-12-15 03:46:38 +00001045
Chris Lattner0aefc0e2009-02-12 07:00:35 +00001046 if (isa<PHINode>(v))
Chris Lattnerf3313162008-12-15 03:46:38 +00001047 v->takeName(LI);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001048 if (isa<PointerType>(v->getType()))
1049 MD->invalidateCachedPointerInfo(v);
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001050 toErase.push_back(LI);
1051 NumGVNLoad++;
1052 return true;
1053 }
1054
1055 if (!EnablePRE || !EnableLoadPRE)
1056 return false;
1057
1058 // Okay, we have *some* definitions of the value. This means that the value
1059 // is available in some of our (transitive) predecessors. Lets think about
1060 // doing PRE of this load. This will involve inserting a new load into the
1061 // predecessor when it's not available. We could do this in general, but
1062 // prefer to not increase code size. As such, we only do this when we know
1063 // that we only have to insert *one* load (which means we're basically moving
1064 // the load, not inserting a new one).
1065
1066 // Everything we do here is based on local predecessors of LI's block. If it
1067 // only has one predecessor, bail now.
1068 BasicBlock *LoadBB = LI->getParent();
1069 if (LoadBB->getSinglePredecessor())
1070 return false;
1071
1072 // If we have a repl set with LI itself in it, this means we have a loop where
1073 // at least one of the values is LI. Since this means that we won't be able
1074 // to eliminate LI even if we insert uses in the other predecessors, we will
1075 // end up increasing code size. Reject this by scanning for LI.
1076 for (unsigned i = 0, e = ValuesPerBlock.size(); i != e; ++i)
1077 if (ValuesPerBlock[i].second == LI)
1078 return false;
1079
1080 // Okay, we have some hope :). Check to see if the loaded value is fully
1081 // available in all but one predecessor.
1082 // FIXME: If we could restructure the CFG, we could make a common pred with
1083 // all the preds that don't have an available LI and insert a new load into
1084 // that one block.
1085 BasicBlock *UnavailablePred = 0;
1086
Chris Lattner72bc70d2008-12-05 07:49:08 +00001087 DenseMap<BasicBlock*, char> FullyAvailableBlocks;
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001088 for (unsigned i = 0, e = ValuesPerBlock.size(); i != e; ++i)
1089 FullyAvailableBlocks[ValuesPerBlock[i].first] = true;
1090 for (unsigned i = 0, e = UnavailableBlocks.size(); i != e; ++i)
1091 FullyAvailableBlocks[UnavailableBlocks[i]] = false;
1092
1093 for (pred_iterator PI = pred_begin(LoadBB), E = pred_end(LoadBB);
1094 PI != E; ++PI) {
1095 if (IsValueFullyAvailableInBlock(*PI, FullyAvailableBlocks))
1096 continue;
1097
1098 // If this load is not available in multiple predecessors, reject it.
1099 if (UnavailablePred && UnavailablePred != *PI)
1100 return false;
1101 UnavailablePred = *PI;
1102 }
1103
1104 assert(UnavailablePred != 0 &&
1105 "Fully available value should be eliminated above!");
1106
1107 // If the loaded pointer is PHI node defined in this block, do PHI translation
1108 // to get its value in the predecessor.
1109 Value *LoadPtr = LI->getOperand(0)->DoPHITranslation(LoadBB, UnavailablePred);
1110
1111 // Make sure the value is live in the predecessor. If it was defined by a
1112 // non-PHI instruction in this block, we don't know how to recompute it above.
1113 if (Instruction *LPInst = dyn_cast<Instruction>(LoadPtr))
1114 if (!DT->dominates(LPInst->getParent(), UnavailablePred)) {
1115 DEBUG(cerr << "COULDN'T PRE LOAD BECAUSE PTR IS UNAVAILABLE IN PRED: "
1116 << *LPInst << *LI << "\n");
1117 return false;
1118 }
1119
1120 // We don't currently handle critical edges :(
1121 if (UnavailablePred->getTerminator()->getNumSuccessors() != 1) {
1122 DEBUG(cerr << "COULD NOT PRE LOAD BECAUSE OF CRITICAL EDGE '"
1123 << UnavailablePred->getName() << "': " << *LI);
1124 return false;
Owen Andersona37226a2007-08-07 23:12:31 +00001125 }
Chris Lattner72bc70d2008-12-05 07:49:08 +00001126
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001127 // Okay, we can eliminate this load by inserting a reload in the predecessor
1128 // and using PHI construction to get the value in the other predecessors, do
1129 // it.
Chris Lattner7f7c7362008-12-05 17:04:12 +00001130 DEBUG(cerr << "GVN REMOVING PRE LOAD: " << *LI);
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001131
1132 Value *NewLoad = new LoadInst(LoadPtr, LI->getName()+".pre", false,
1133 LI->getAlignment(),
1134 UnavailablePred->getTerminator());
1135
1136 DenseMap<BasicBlock*, Value*> BlockReplValues;
1137 BlockReplValues.insert(ValuesPerBlock.begin(), ValuesPerBlock.end());
1138 BlockReplValues[UnavailablePred] = NewLoad;
1139
1140 // Perform PHI construction.
1141 Value* v = GetValueForBlock(LI->getParent(), LI, BlockReplValues, true);
1142 LI->replaceAllUsesWith(v);
Chris Lattner0aefc0e2009-02-12 07:00:35 +00001143 if (isa<PHINode>(v))
Chris Lattnerf3313162008-12-15 03:46:38 +00001144 v->takeName(LI);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001145 if (isa<PointerType>(v->getType()))
1146 MD->invalidateCachedPointerInfo(v);
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001147 toErase.push_back(LI);
1148 NumPRELoad++;
Owen Anderson0cd32032007-07-25 19:57:03 +00001149 return true;
1150}
1151
Owen Anderson62bc33c2007-08-16 22:02:55 +00001152/// processLoad - Attempt to eliminate a load, first by eliminating it
1153/// locally, and then attempting non-local elimination if that fails.
Chris Lattnerb51deb92008-12-05 21:04:20 +00001154bool GVN::processLoad(LoadInst *L, SmallVectorImpl<Instruction*> &toErase) {
1155 if (L->isVolatile())
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001156 return false;
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001157
1158 Value* pointer = L->getPointerOperand();
Chris Lattnerb51deb92008-12-05 21:04:20 +00001159
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001160 // ... to a pointer that has been loaded from before...
Chris Lattner663e4412008-12-01 00:40:32 +00001161 MemDepResult dep = MD->getDependency(L);
Owen Anderson8e8278e2007-08-14 17:59:48 +00001162
Chris Lattnerb51deb92008-12-05 21:04:20 +00001163 // If the value isn't available, don't do anything!
1164 if (dep.isClobber())
1165 return false;
1166
1167 // If it is defined in another block, try harder.
Chris Lattnerae199312008-12-09 19:21:47 +00001168 if (dep.isNonLocal())
Chris Lattnerb51deb92008-12-05 21:04:20 +00001169 return processNonLocalLoad(L, toErase);
Eli Friedmanb6c36e42008-02-12 12:08:14 +00001170
Chris Lattnerb51deb92008-12-05 21:04:20 +00001171 Instruction *DepInst = dep.getInst();
1172 if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInst)) {
1173 // Only forward substitute stores to loads of the same type.
1174 // FIXME: Could do better!
1175 if (DepSI->getPointerOperand()->getType() != pointer->getType())
1176 return false;
1177
1178 // Remove it!
1179 L->replaceAllUsesWith(DepSI->getOperand(0));
Chris Lattnerbc99be12008-12-09 22:06:23 +00001180 if (isa<PointerType>(DepSI->getOperand(0)->getType()))
1181 MD->invalidateCachedPointerInfo(DepSI->getOperand(0));
Chris Lattnerb51deb92008-12-05 21:04:20 +00001182 toErase.push_back(L);
1183 NumGVNLoad++;
1184 return true;
1185 }
1186
1187 if (LoadInst *DepLI = dyn_cast<LoadInst>(DepInst)) {
1188 // Only forward substitute stores to loads of the same type.
1189 // FIXME: Could do better! load i32 -> load i8 -> truncate on little endian.
1190 if (DepLI->getType() != L->getType())
1191 return false;
1192
1193 // Remove it!
1194 L->replaceAllUsesWith(DepLI);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001195 if (isa<PointerType>(DepLI->getType()))
1196 MD->invalidateCachedPointerInfo(DepLI);
Chris Lattnerb51deb92008-12-05 21:04:20 +00001197 toErase.push_back(L);
1198 NumGVNLoad++;
1199 return true;
1200 }
1201
Chris Lattner237a8282008-11-30 01:39:32 +00001202 // If this load really doesn't depend on anything, then we must be loading an
1203 // undef value. This can happen when loading for a fresh allocation with no
1204 // intervening stores, for example.
Chris Lattnerb51deb92008-12-05 21:04:20 +00001205 if (isa<AllocationInst>(DepInst)) {
Chris Lattner237a8282008-11-30 01:39:32 +00001206 L->replaceAllUsesWith(UndefValue::get(L->getType()));
1207 toErase.push_back(L);
Chris Lattner237a8282008-11-30 01:39:32 +00001208 NumGVNLoad++;
Chris Lattnerb51deb92008-12-05 21:04:20 +00001209 return true;
Eli Friedmanb6c36e42008-02-12 12:08:14 +00001210 }
1211
Chris Lattnerb51deb92008-12-05 21:04:20 +00001212 return false;
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001213}
1214
Owen Anderson6fafe842008-06-20 01:15:47 +00001215Value* GVN::lookupNumber(BasicBlock* BB, uint32_t num) {
Owen Andersonb70a5712008-06-23 17:49:45 +00001216 DenseMap<BasicBlock*, ValueNumberScope*>::iterator I = localAvail.find(BB);
1217 if (I == localAvail.end())
1218 return 0;
1219
1220 ValueNumberScope* locals = I->second;
Owen Anderson6fafe842008-06-20 01:15:47 +00001221
1222 while (locals) {
1223 DenseMap<uint32_t, Value*>::iterator I = locals->table.find(num);
1224 if (I != locals->table.end())
1225 return I->second;
1226 else
1227 locals = locals->parent;
1228 }
1229
1230 return 0;
1231}
1232
Owen Anderson255dafc2008-12-15 02:03:00 +00001233/// AttemptRedundancyElimination - If the "fast path" of redundancy elimination
1234/// by inheritance from the dominator fails, see if we can perform phi
1235/// construction to eliminate the redundancy.
1236Value* GVN::AttemptRedundancyElimination(Instruction* orig, unsigned valno) {
1237 BasicBlock* BaseBlock = orig->getParent();
1238
1239 SmallPtrSet<BasicBlock*, 4> Visited;
1240 SmallVector<BasicBlock*, 8> Stack;
1241 Stack.push_back(BaseBlock);
1242
1243 DenseMap<BasicBlock*, Value*> Results;
1244
1245 // Walk backwards through our predecessors, looking for instances of the
1246 // value number we're looking for. Instances are recorded in the Results
1247 // map, which is then used to perform phi construction.
1248 while (!Stack.empty()) {
1249 BasicBlock* Current = Stack.back();
1250 Stack.pop_back();
1251
1252 // If we've walked all the way to a proper dominator, then give up. Cases
1253 // where the instance is in the dominator will have been caught by the fast
1254 // path, and any cases that require phi construction further than this are
1255 // probably not worth it anyways. Note that this is a SIGNIFICANT compile
1256 // time improvement.
1257 if (DT->properlyDominates(Current, orig->getParent())) return 0;
1258
1259 DenseMap<BasicBlock*, ValueNumberScope*>::iterator LA =
1260 localAvail.find(Current);
1261 if (LA == localAvail.end()) return 0;
Chris Lattner2f39b292009-01-19 22:00:18 +00001262 DenseMap<uint32_t, Value*>::iterator V = LA->second->table.find(valno);
Owen Anderson255dafc2008-12-15 02:03:00 +00001263
1264 if (V != LA->second->table.end()) {
1265 // Found an instance, record it.
1266 Results.insert(std::make_pair(Current, V->second));
1267 continue;
1268 }
1269
1270 // If we reach the beginning of the function, then give up.
1271 if (pred_begin(Current) == pred_end(Current))
1272 return 0;
1273
1274 for (pred_iterator PI = pred_begin(Current), PE = pred_end(Current);
1275 PI != PE; ++PI)
1276 if (Visited.insert(*PI))
1277 Stack.push_back(*PI);
1278 }
1279
1280 // If we didn't find instances, give up. Otherwise, perform phi construction.
1281 if (Results.size() == 0)
1282 return 0;
1283 else
1284 return GetValueForBlock(BaseBlock, orig, Results, true);
1285}
1286
Owen Anderson36057c72007-08-14 18:16:29 +00001287/// processInstruction - When calculating availability, handle an instruction
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001288/// by inserting it into the appropriate sets
Owen Andersonaf4240a2008-06-12 19:25:32 +00001289bool GVN::processInstruction(Instruction *I,
Chris Lattner8e1e95c2008-03-21 22:01:16 +00001290 SmallVectorImpl<Instruction*> &toErase) {
Owen Andersonb2303722008-06-18 21:41:49 +00001291 if (LoadInst* L = dyn_cast<LoadInst>(I)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +00001292 bool changed = processLoad(L, toErase);
Owen Andersonb2303722008-06-18 21:41:49 +00001293
1294 if (!changed) {
1295 unsigned num = VN.lookup_or_add(L);
Owen Anderson6fafe842008-06-20 01:15:47 +00001296 localAvail[I->getParent()]->table.insert(std::make_pair(num, L));
Owen Andersonb2303722008-06-18 21:41:49 +00001297 }
1298
1299 return changed;
1300 }
1301
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001302 uint32_t nextNum = VN.getNextUnusedValueNumber();
Owen Andersonb2303722008-06-18 21:41:49 +00001303 unsigned num = VN.lookup_or_add(I);
Chris Lattner8e1e95c2008-03-21 22:01:16 +00001304
Owen Andersonf41fcbb2009-04-01 01:20:45 +00001305 if (BranchInst* BI = dyn_cast<BranchInst>(I)) {
1306 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1307
1308 if (!BI->isConditional() || isa<Constant>(BI->getCondition()))
1309 return false;
1310
1311 Value* branchCond = BI->getCondition();
1312 uint32_t condVN = VN.lookup_or_add(branchCond);
1313
1314 BasicBlock* trueSucc = BI->getSuccessor(0);
1315 BasicBlock* falseSucc = BI->getSuccessor(1);
1316
1317 localAvail[trueSucc]->table.insert(std::make_pair(condVN,
1318 ConstantInt::getTrue()));
1319 localAvail[falseSucc]->table.insert(std::make_pair(condVN,
1320 ConstantInt::getFalse()));
1321 return false;
1322
Owen Andersone5ffa902008-04-07 09:59:07 +00001323 // Allocations are always uniquely numbered, so we can save time and memory
Owen Andersonf41fcbb2009-04-01 01:20:45 +00001324 // by fast failing them.
1325 } else if (isa<AllocationInst>(I) || isa<TerminatorInst>(I)) {
Owen Anderson6fafe842008-06-20 01:15:47 +00001326 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Andersone5ffa902008-04-07 09:59:07 +00001327 return false;
Owen Andersonb2303722008-06-18 21:41:49 +00001328 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001329
Owen Anderson62bc33c2007-08-16 22:02:55 +00001330 // Collapse PHI nodes
Owen Anderson31f49672007-08-14 18:33:27 +00001331 if (PHINode* p = dyn_cast<PHINode>(I)) {
Owen Anderson1defe2d2007-08-16 22:51:56 +00001332 Value* constVal = CollapsePhi(p);
Owen Anderson31f49672007-08-14 18:33:27 +00001333
1334 if (constVal) {
Owen Anderson1defe2d2007-08-16 22:51:56 +00001335 for (PhiMapType::iterator PI = phiMap.begin(), PE = phiMap.end();
1336 PI != PE; ++PI)
Chris Lattnerae199312008-12-09 19:21:47 +00001337 PI->second.erase(p);
Owen Anderson31f49672007-08-14 18:33:27 +00001338
Owen Anderson1defe2d2007-08-16 22:51:56 +00001339 p->replaceAllUsesWith(constVal);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001340 if (isa<PointerType>(constVal->getType()))
1341 MD->invalidateCachedPointerInfo(constVal);
Owen Andersonae53c932008-12-23 00:49:51 +00001342 VN.erase(p);
1343
Owen Anderson1defe2d2007-08-16 22:51:56 +00001344 toErase.push_back(p);
Owen Andersonb2303722008-06-18 21:41:49 +00001345 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001346 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Anderson31f49672007-08-14 18:33:27 +00001347 }
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001348
1349 // If the number we were assigned was a brand new VN, then we don't
1350 // need to do a lookup to see if the number already exists
1351 // somewhere in the domtree: it can't!
1352 } else if (num == nextNum) {
1353 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1354
Owen Anderson255dafc2008-12-15 02:03:00 +00001355 // Perform fast-path value-number based elimination of values inherited from
1356 // dominators.
Owen Anderson6fafe842008-06-20 01:15:47 +00001357 } else if (Value* repl = lookupNumber(I->getParent(), num)) {
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001358 // Remove it!
Owen Andersonbf7d0bc2007-07-31 23:27:13 +00001359 VN.erase(I);
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001360 I->replaceAllUsesWith(repl);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001361 if (isa<PointerType>(repl->getType()))
1362 MD->invalidateCachedPointerInfo(repl);
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001363 toErase.push_back(I);
1364 return true;
Owen Anderson255dafc2008-12-15 02:03:00 +00001365
1366#if 0
1367 // Perform slow-pathvalue-number based elimination with phi construction.
1368 } else if (Value* repl = AttemptRedundancyElimination(I, num)) {
1369 // Remove it!
1370 VN.erase(I);
1371 I->replaceAllUsesWith(repl);
1372 if (isa<PointerType>(repl->getType()))
1373 MD->invalidateCachedPointerInfo(repl);
1374 toErase.push_back(I);
1375 return true;
1376#endif
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001377 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001378 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001379 }
1380
1381 return false;
1382}
1383
Bill Wendling30788b82008-12-22 22:32:22 +00001384/// runOnFunction - This is the main transformation entry point for a function.
Owen Anderson3e75a422007-08-14 18:04:11 +00001385bool GVN::runOnFunction(Function& F) {
Chris Lattner663e4412008-12-01 00:40:32 +00001386 MD = &getAnalysis<MemoryDependenceAnalysis>();
1387 DT = &getAnalysis<DominatorTree>();
Owen Andersona472c4a2008-05-12 20:15:55 +00001388 VN.setAliasAnalysis(&getAnalysis<AliasAnalysis>());
Chris Lattner663e4412008-12-01 00:40:32 +00001389 VN.setMemDep(MD);
1390 VN.setDomTree(DT);
Owen Andersonb388ca92007-10-18 19:39:33 +00001391
Owen Anderson3e75a422007-08-14 18:04:11 +00001392 bool changed = false;
1393 bool shouldContinue = true;
1394
Owen Anderson5d0af032008-07-16 17:52:31 +00001395 // Merge unconditional branches, allowing PRE to catch more
1396 // optimization opportunities.
1397 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ) {
1398 BasicBlock* BB = FI;
1399 ++FI;
Owen Andersonb31b06d2008-07-17 00:01:40 +00001400 bool removedBlock = MergeBlockIntoPredecessor(BB, this);
1401 if (removedBlock) NumGVNBlocks++;
1402
1403 changed |= removedBlock;
Owen Anderson5d0af032008-07-16 17:52:31 +00001404 }
1405
Chris Lattnerae199312008-12-09 19:21:47 +00001406 unsigned Iteration = 0;
1407
Owen Anderson3e75a422007-08-14 18:04:11 +00001408 while (shouldContinue) {
Chris Lattnerae199312008-12-09 19:21:47 +00001409 DEBUG(cerr << "GVN iteration: " << Iteration << "\n");
Owen Anderson3e75a422007-08-14 18:04:11 +00001410 shouldContinue = iterateOnFunction(F);
1411 changed |= shouldContinue;
Chris Lattnerae199312008-12-09 19:21:47 +00001412 ++Iteration;
Owen Anderson3e75a422007-08-14 18:04:11 +00001413 }
1414
Owen Andersone98c54c2008-07-18 18:03:38 +00001415 if (EnablePRE) {
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001416 bool PREChanged = true;
1417 while (PREChanged) {
1418 PREChanged = performPRE(F);
Owen Andersone98c54c2008-07-18 18:03:38 +00001419 changed |= PREChanged;
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001420 }
Owen Andersone98c54c2008-07-18 18:03:38 +00001421 }
Chris Lattnerae199312008-12-09 19:21:47 +00001422 // FIXME: Should perform GVN again after PRE does something. PRE can move
1423 // computations into blocks where they become fully redundant. Note that
1424 // we can't do this until PRE's critical edge splitting updates memdep.
1425 // Actually, when this happens, we should just fully integrate PRE into GVN.
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001426
1427 cleanupGlobalSets();
1428
Owen Anderson3e75a422007-08-14 18:04:11 +00001429 return changed;
1430}
1431
1432
Owen Anderson255dafc2008-12-15 02:03:00 +00001433bool GVN::processBlock(BasicBlock* BB) {
Chris Lattnerae199312008-12-09 19:21:47 +00001434 // FIXME: Kill off toErase by doing erasing eagerly in a helper function (and
1435 // incrementing BI before processing an instruction).
Owen Andersonaf4240a2008-06-12 19:25:32 +00001436 SmallVector<Instruction*, 8> toErase;
Owen Andersonaf4240a2008-06-12 19:25:32 +00001437 bool changed_function = false;
Owen Andersonb2303722008-06-18 21:41:49 +00001438
Owen Andersonaf4240a2008-06-12 19:25:32 +00001439 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();
1440 BI != BE;) {
Chris Lattnerb51deb92008-12-05 21:04:20 +00001441 changed_function |= processInstruction(BI, toErase);
Owen Andersonaf4240a2008-06-12 19:25:32 +00001442 if (toErase.empty()) {
1443 ++BI;
1444 continue;
1445 }
1446
1447 // If we need some instructions deleted, do it now.
1448 NumGVNInstr += toErase.size();
1449
1450 // Avoid iterator invalidation.
1451 bool AtStart = BI == BB->begin();
1452 if (!AtStart)
1453 --BI;
1454
1455 for (SmallVector<Instruction*, 4>::iterator I = toErase.begin(),
Chris Lattner663e4412008-12-01 00:40:32 +00001456 E = toErase.end(); I != E; ++I) {
1457 DEBUG(cerr << "GVN removed: " << **I);
1458 MD->removeInstruction(*I);
Owen Andersonaf4240a2008-06-12 19:25:32 +00001459 (*I)->eraseFromParent();
Bill Wendlingec40d502008-12-22 21:57:30 +00001460 DEBUG(verifyRemoved(*I));
Chris Lattner663e4412008-12-01 00:40:32 +00001461 }
Chris Lattnerae199312008-12-09 19:21:47 +00001462 toErase.clear();
Owen Andersonaf4240a2008-06-12 19:25:32 +00001463
1464 if (AtStart)
1465 BI = BB->begin();
1466 else
1467 ++BI;
Owen Andersonaf4240a2008-06-12 19:25:32 +00001468 }
1469
Owen Andersonaf4240a2008-06-12 19:25:32 +00001470 return changed_function;
1471}
1472
Owen Andersonb2303722008-06-18 21:41:49 +00001473/// performPRE - Perform a purely local form of PRE that looks for diamond
1474/// control flow patterns and attempts to perform simple PRE at the join point.
1475bool GVN::performPRE(Function& F) {
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001476 bool Changed = false;
Owen Anderson5c274ee2008-06-19 19:54:19 +00001477 SmallVector<std::pair<TerminatorInst*, unsigned>, 4> toSplit;
Chris Lattner09713792008-12-01 07:29:03 +00001478 DenseMap<BasicBlock*, Value*> predMap;
Owen Andersonb2303722008-06-18 21:41:49 +00001479 for (df_iterator<BasicBlock*> DI = df_begin(&F.getEntryBlock()),
1480 DE = df_end(&F.getEntryBlock()); DI != DE; ++DI) {
1481 BasicBlock* CurrentBlock = *DI;
1482
1483 // Nothing to PRE in the entry block.
1484 if (CurrentBlock == &F.getEntryBlock()) continue;
1485
1486 for (BasicBlock::iterator BI = CurrentBlock->begin(),
1487 BE = CurrentBlock->end(); BI != BE; ) {
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001488 Instruction *CurInst = BI++;
Owen Andersonb2303722008-06-18 21:41:49 +00001489
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001490 if (isa<AllocationInst>(CurInst) || isa<TerminatorInst>(CurInst) ||
John Criswell090c0a22009-03-10 15:04:53 +00001491 isa<PHINode>(CurInst) || (CurInst->getType() == Type::VoidTy) ||
1492 CurInst->mayReadFromMemory() || CurInst->mayWriteToMemory() ||
1493 isa<DbgInfoIntrinsic>(CurInst))
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001494 continue;
1495
1496 uint32_t valno = VN.lookup(CurInst);
Owen Andersonb2303722008-06-18 21:41:49 +00001497
1498 // Look for the predecessors for PRE opportunities. We're
1499 // only trying to solve the basic diamond case, where
1500 // a value is computed in the successor and one predecessor,
1501 // but not the other. We also explicitly disallow cases
1502 // where the successor is its own predecessor, because they're
1503 // more complicated to get right.
1504 unsigned numWith = 0;
1505 unsigned numWithout = 0;
1506 BasicBlock* PREPred = 0;
Chris Lattner09713792008-12-01 07:29:03 +00001507 predMap.clear();
1508
Owen Andersonb2303722008-06-18 21:41:49 +00001509 for (pred_iterator PI = pred_begin(CurrentBlock),
1510 PE = pred_end(CurrentBlock); PI != PE; ++PI) {
1511 // We're not interested in PRE where the block is its
Owen Anderson6fafe842008-06-20 01:15:47 +00001512 // own predecessor, on in blocks with predecessors
1513 // that are not reachable.
1514 if (*PI == CurrentBlock) {
Owen Andersonb2303722008-06-18 21:41:49 +00001515 numWithout = 2;
Owen Anderson6fafe842008-06-20 01:15:47 +00001516 break;
1517 } else if (!localAvail.count(*PI)) {
1518 numWithout = 2;
1519 break;
1520 }
1521
1522 DenseMap<uint32_t, Value*>::iterator predV =
1523 localAvail[*PI]->table.find(valno);
1524 if (predV == localAvail[*PI]->table.end()) {
Owen Andersonb2303722008-06-18 21:41:49 +00001525 PREPred = *PI;
1526 numWithout++;
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001527 } else if (predV->second == CurInst) {
Owen Andersonb2303722008-06-18 21:41:49 +00001528 numWithout = 2;
1529 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001530 predMap[*PI] = predV->second;
Owen Andersonb2303722008-06-18 21:41:49 +00001531 numWith++;
1532 }
1533 }
1534
1535 // Don't do PRE when it might increase code size, i.e. when
1536 // we would need to insert instructions in more than one pred.
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001537 if (numWithout != 1 || numWith == 0)
Owen Andersonb2303722008-06-18 21:41:49 +00001538 continue;
Owen Andersonb2303722008-06-18 21:41:49 +00001539
Owen Anderson5c274ee2008-06-19 19:54:19 +00001540 // We can't do PRE safely on a critical edge, so instead we schedule
1541 // the edge to be split and perform the PRE the next time we iterate
1542 // on the function.
1543 unsigned succNum = 0;
1544 for (unsigned i = 0, e = PREPred->getTerminator()->getNumSuccessors();
1545 i != e; ++i)
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001546 if (PREPred->getTerminator()->getSuccessor(i) == CurrentBlock) {
Owen Anderson5c274ee2008-06-19 19:54:19 +00001547 succNum = i;
1548 break;
1549 }
1550
1551 if (isCriticalEdge(PREPred->getTerminator(), succNum)) {
1552 toSplit.push_back(std::make_pair(PREPred->getTerminator(), succNum));
Owen Anderson5c274ee2008-06-19 19:54:19 +00001553 continue;
1554 }
1555
Owen Andersonb2303722008-06-18 21:41:49 +00001556 // Instantiate the expression the in predecessor that lacked it.
1557 // Because we are going top-down through the block, all value numbers
1558 // will be available in the predecessor by the time we need them. Any
1559 // that weren't original present will have been instantiated earlier
1560 // in this loop.
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001561 Instruction* PREInstr = CurInst->clone();
Owen Andersonb2303722008-06-18 21:41:49 +00001562 bool success = true;
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001563 for (unsigned i = 0, e = CurInst->getNumOperands(); i != e; ++i) {
1564 Value *Op = PREInstr->getOperand(i);
1565 if (isa<Argument>(Op) || isa<Constant>(Op) || isa<GlobalValue>(Op))
1566 continue;
1567
1568 if (Value *V = lookupNumber(PREPred, VN.lookup(Op))) {
1569 PREInstr->setOperand(i, V);
1570 } else {
1571 success = false;
1572 break;
Owen Andersonc45996b2008-07-11 20:05:13 +00001573 }
Owen Andersonb2303722008-06-18 21:41:49 +00001574 }
1575
1576 // Fail out if we encounter an operand that is not available in
1577 // the PRE predecessor. This is typically because of loads which
1578 // are not value numbered precisely.
1579 if (!success) {
1580 delete PREInstr;
Bill Wendling70ded192008-12-22 22:14:07 +00001581 DEBUG(verifyRemoved(PREInstr));
Owen Andersonb2303722008-06-18 21:41:49 +00001582 continue;
1583 }
1584
1585 PREInstr->insertBefore(PREPred->getTerminator());
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001586 PREInstr->setName(CurInst->getName() + ".pre");
Owen Anderson6fafe842008-06-20 01:15:47 +00001587 predMap[PREPred] = PREInstr;
Owen Andersonb2303722008-06-18 21:41:49 +00001588 VN.add(PREInstr, valno);
1589 NumGVNPRE++;
1590
1591 // Update the availability map to include the new instruction.
Owen Anderson6fafe842008-06-20 01:15:47 +00001592 localAvail[PREPred]->table.insert(std::make_pair(valno, PREInstr));
Owen Andersonb2303722008-06-18 21:41:49 +00001593
1594 // Create a PHI to make the value available in this block.
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001595 PHINode* Phi = PHINode::Create(CurInst->getType(),
1596 CurInst->getName() + ".pre-phi",
Owen Andersonb2303722008-06-18 21:41:49 +00001597 CurrentBlock->begin());
1598 for (pred_iterator PI = pred_begin(CurrentBlock),
1599 PE = pred_end(CurrentBlock); PI != PE; ++PI)
Owen Anderson6fafe842008-06-20 01:15:47 +00001600 Phi->addIncoming(predMap[*PI], *PI);
Owen Andersonb2303722008-06-18 21:41:49 +00001601
1602 VN.add(Phi, valno);
Owen Anderson6fafe842008-06-20 01:15:47 +00001603 localAvail[CurrentBlock]->table[valno] = Phi;
Owen Andersonb2303722008-06-18 21:41:49 +00001604
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001605 CurInst->replaceAllUsesWith(Phi);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001606 if (isa<PointerType>(Phi->getType()))
1607 MD->invalidateCachedPointerInfo(Phi);
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001608 VN.erase(CurInst);
Owen Andersonb2303722008-06-18 21:41:49 +00001609
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001610 DEBUG(cerr << "GVN PRE removed: " << *CurInst);
1611 MD->removeInstruction(CurInst);
1612 CurInst->eraseFromParent();
Bill Wendlingec40d502008-12-22 21:57:30 +00001613 DEBUG(verifyRemoved(CurInst));
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001614 Changed = true;
Owen Andersonb2303722008-06-18 21:41:49 +00001615 }
1616 }
1617
Owen Anderson5c274ee2008-06-19 19:54:19 +00001618 for (SmallVector<std::pair<TerminatorInst*, unsigned>, 4>::iterator
Anton Korobeynikov64b53562008-12-05 19:38:49 +00001619 I = toSplit.begin(), E = toSplit.end(); I != E; ++I)
Owen Anderson5c274ee2008-06-19 19:54:19 +00001620 SplitCriticalEdge(I->first, I->second, this);
1621
Anton Korobeynikov64b53562008-12-05 19:38:49 +00001622 return Changed || toSplit.size();
Owen Andersonb2303722008-06-18 21:41:49 +00001623}
1624
Bill Wendling30788b82008-12-22 22:32:22 +00001625/// iterateOnFunction - Executes one iteration of GVN
Owen Anderson3e75a422007-08-14 18:04:11 +00001626bool GVN::iterateOnFunction(Function &F) {
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001627 cleanupGlobalSets();
Chris Lattner2e607012008-03-21 21:33:23 +00001628
Owen Andersonf41fcbb2009-04-01 01:20:45 +00001629 for (df_iterator<DomTreeNode*> DI = df_begin(DT->getRootNode()),
1630 DE = df_end(DT->getRootNode()); DI != DE; ++DI) {
1631 if (DI->getIDom())
1632 localAvail[DI->getBlock()] =
1633 new ValueNumberScope(localAvail[DI->getIDom()->getBlock()]);
1634 else
1635 localAvail[DI->getBlock()] = new ValueNumberScope(0);
1636 }
1637
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001638 // Top-down walk of the dominator tree
Owen Andersonb2303722008-06-18 21:41:49 +00001639 bool changed = false;
Owen Andersonc34d1122008-12-15 03:52:17 +00001640#if 0
1641 // Needed for value numbering with phi construction to work.
Owen Anderson255dafc2008-12-15 02:03:00 +00001642 ReversePostOrderTraversal<Function*> RPOT(&F);
1643 for (ReversePostOrderTraversal<Function*>::rpo_iterator RI = RPOT.begin(),
1644 RE = RPOT.end(); RI != RE; ++RI)
1645 changed |= processBlock(*RI);
Owen Andersonc34d1122008-12-15 03:52:17 +00001646#else
1647 for (df_iterator<DomTreeNode*> DI = df_begin(DT->getRootNode()),
1648 DE = df_end(DT->getRootNode()); DI != DE; ++DI)
1649 changed |= processBlock(DI->getBlock());
1650#endif
1651
Owen Anderson5d0af032008-07-16 17:52:31 +00001652 return changed;
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001653}
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001654
1655void GVN::cleanupGlobalSets() {
1656 VN.clear();
1657 phiMap.clear();
1658
1659 for (DenseMap<BasicBlock*, ValueNumberScope*>::iterator
1660 I = localAvail.begin(), E = localAvail.end(); I != E; ++I)
1661 delete I->second;
1662 localAvail.clear();
1663}
Bill Wendling246dbbb2008-12-22 21:36:08 +00001664
1665/// verifyRemoved - Verify that the specified instruction does not occur in our
1666/// internal data structures.
Bill Wendling6d463f22008-12-22 22:28:56 +00001667void GVN::verifyRemoved(const Instruction *Inst) const {
1668 VN.verifyRemoved(Inst);
Bill Wendling70ded192008-12-22 22:14:07 +00001669
1670 // Walk through the PHI map to make sure the instruction isn't hiding in there
1671 // somewhere.
1672 for (PhiMapType::iterator
Bill Wendling6d463f22008-12-22 22:28:56 +00001673 I = phiMap.begin(), E = phiMap.end(); I != E; ++I) {
1674 assert(I->first != Inst && "Inst is still a key in PHI map!");
Bill Wendling70ded192008-12-22 22:14:07 +00001675
1676 for (SmallPtrSet<Instruction*, 4>::iterator
Bill Wendling6d463f22008-12-22 22:28:56 +00001677 II = I->second.begin(), IE = I->second.end(); II != IE; ++II) {
1678 assert(*II != Inst && "Inst is still a value in PHI map!");
1679 }
1680 }
1681
1682 // Walk through the value number scope to make sure the instruction isn't
1683 // ferreted away in it.
1684 for (DenseMap<BasicBlock*, ValueNumberScope*>::iterator
1685 I = localAvail.begin(), E = localAvail.end(); I != E; ++I) {
1686 const ValueNumberScope *VNS = I->second;
1687
1688 while (VNS) {
1689 for (DenseMap<uint32_t, Value*>::iterator
1690 II = VNS->table.begin(), IE = VNS->table.end(); II != IE; ++II) {
1691 assert(II->second != Inst && "Inst still in value numbering scope!");
1692 }
1693
1694 VNS = VNS->parent;
Bill Wendling70ded192008-12-22 22:14:07 +00001695 }
1696 }
Bill Wendling246dbbb2008-12-22 21:36:08 +00001697}