blob: e517b3a52954e7d0cac920328fa87d2acd48ed0c [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//
Matthijs Kooijman845f5242008-06-05 07:55:49 +000013// Note that this pass does the value numbering itself, it does not use the
14// 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"
24#include "llvm/Instructions.h"
25#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 Wendlinge533f4e2008-12-18 22:19:50 +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 {
113 if (opcode != other.opcode)
114 return true;
115 else if (opcode == EMPTY || opcode == TOMBSTONE)
116 return false;
117 else if (type != other.type)
118 return true;
Owen Andersonb388ca92007-10-18 19:39:33 +0000119 else if (function != other.function)
120 return true;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000121 else if (firstVN != other.firstVN)
122 return true;
123 else if (secondVN != other.secondVN)
124 return true;
125 else if (thirdVN != other.thirdVN)
126 return true;
127 else {
128 if (varargs.size() != other.varargs.size())
129 return true;
130
131 for (size_t i = 0; i < varargs.size(); ++i)
132 if (varargs[i] != other.varargs[i])
133 return true;
134
135 return false;
136 }
137 }
138 };
139
140 class VISIBILITY_HIDDEN ValueTable {
141 private:
142 DenseMap<Value*, uint32_t> valueNumbering;
143 DenseMap<Expression, uint32_t> expressionNumbering;
Owen Andersona472c4a2008-05-12 20:15:55 +0000144 AliasAnalysis* AA;
145 MemoryDependenceAnalysis* MD;
146 DominatorTree* DT;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000147
148 uint32_t nextValueNumber;
149
150 Expression::ExpressionOpcode getOpcode(BinaryOperator* BO);
151 Expression::ExpressionOpcode getOpcode(CmpInst* C);
152 Expression::ExpressionOpcode getOpcode(CastInst* C);
153 Expression create_expression(BinaryOperator* BO);
154 Expression create_expression(CmpInst* C);
155 Expression create_expression(ShuffleVectorInst* V);
156 Expression create_expression(ExtractElementInst* C);
157 Expression create_expression(InsertElementInst* V);
158 Expression create_expression(SelectInst* V);
159 Expression create_expression(CastInst* C);
160 Expression create_expression(GetElementPtrInst* G);
Owen Andersonb388ca92007-10-18 19:39:33 +0000161 Expression create_expression(CallInst* C);
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000162 Expression create_expression(Constant* C);
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000163 public:
Owen Andersonb388ca92007-10-18 19:39:33 +0000164 ValueTable() : nextValueNumber(1) { }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000165 uint32_t lookup_or_add(Value* V);
166 uint32_t lookup(Value* V) const;
167 void add(Value* V, uint32_t num);
168 void clear();
169 void erase(Value* v);
170 unsigned size();
Owen Andersona472c4a2008-05-12 20:15:55 +0000171 void setAliasAnalysis(AliasAnalysis* A) { AA = A; }
Chris Lattner663e4412008-12-01 00:40:32 +0000172 AliasAnalysis *getAliasAnalysis() const { return AA; }
Owen Andersona472c4a2008-05-12 20:15:55 +0000173 void setMemDep(MemoryDependenceAnalysis* M) { MD = M; }
174 void setDomTree(DominatorTree* D) { DT = D; }
Owen Anderson0ae33ef2008-07-03 17:44:33 +0000175 uint32_t getNextUnusedValueNumber() { return nextValueNumber; }
Bill Wendling246dbbb2008-12-22 21:36:08 +0000176 void verifyRemoved(const Value *) const;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000177 };
178}
179
180namespace llvm {
Chris Lattner76c1b972007-09-17 18:34:04 +0000181template <> struct DenseMapInfo<Expression> {
Owen Anderson830db6a2007-08-02 18:16:06 +0000182 static inline Expression getEmptyKey() {
183 return Expression(Expression::EMPTY);
184 }
185
186 static inline Expression getTombstoneKey() {
187 return Expression(Expression::TOMBSTONE);
188 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000189
190 static unsigned getHashValue(const Expression e) {
191 unsigned hash = e.opcode;
192
193 hash = e.firstVN + hash * 37;
194 hash = e.secondVN + hash * 37;
195 hash = e.thirdVN + hash * 37;
196
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000197 hash = ((unsigned)((uintptr_t)e.type >> 4) ^
198 (unsigned)((uintptr_t)e.type >> 9)) +
199 hash * 37;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000200
Owen Anderson830db6a2007-08-02 18:16:06 +0000201 for (SmallVector<uint32_t, 4>::const_iterator I = e.varargs.begin(),
202 E = e.varargs.end(); I != E; ++I)
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000203 hash = *I + hash * 37;
204
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000205 hash = ((unsigned)((uintptr_t)e.function >> 4) ^
206 (unsigned)((uintptr_t)e.function >> 9)) +
207 hash * 37;
Owen Andersonb388ca92007-10-18 19:39:33 +0000208
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000209 return hash;
210 }
Chris Lattner76c1b972007-09-17 18:34:04 +0000211 static bool isEqual(const Expression &LHS, const Expression &RHS) {
212 return LHS == RHS;
213 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000214 static bool isPod() { return true; }
215};
216}
217
218//===----------------------------------------------------------------------===//
219// ValueTable Internal Functions
220//===----------------------------------------------------------------------===//
Chris Lattner88365bb2008-03-21 21:14:38 +0000221Expression::ExpressionOpcode ValueTable::getOpcode(BinaryOperator* BO) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000222 switch(BO->getOpcode()) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000223 default: // THIS SHOULD NEVER HAPPEN
224 assert(0 && "Binary operator with unknown opcode?");
225 case Instruction::Add: return Expression::ADD;
226 case Instruction::Sub: return Expression::SUB;
227 case Instruction::Mul: return Expression::MUL;
228 case Instruction::UDiv: return Expression::UDIV;
229 case Instruction::SDiv: return Expression::SDIV;
230 case Instruction::FDiv: return Expression::FDIV;
231 case Instruction::URem: return Expression::UREM;
232 case Instruction::SRem: return Expression::SREM;
233 case Instruction::FRem: return Expression::FREM;
234 case Instruction::Shl: return Expression::SHL;
235 case Instruction::LShr: return Expression::LSHR;
236 case Instruction::AShr: return Expression::ASHR;
237 case Instruction::And: return Expression::AND;
238 case Instruction::Or: return Expression::OR;
239 case Instruction::Xor: return Expression::XOR;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000240 }
241}
242
243Expression::ExpressionOpcode ValueTable::getOpcode(CmpInst* C) {
Nate Begeman1d6e4092008-05-18 19:49:05 +0000244 if (isa<ICmpInst>(C) || isa<VICmpInst>(C)) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000245 switch (C->getPredicate()) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000246 default: // THIS SHOULD NEVER HAPPEN
247 assert(0 && "Comparison with unknown predicate?");
248 case ICmpInst::ICMP_EQ: return Expression::ICMPEQ;
249 case ICmpInst::ICMP_NE: return Expression::ICMPNE;
250 case ICmpInst::ICMP_UGT: return Expression::ICMPUGT;
251 case ICmpInst::ICMP_UGE: return Expression::ICMPUGE;
252 case ICmpInst::ICMP_ULT: return Expression::ICMPULT;
253 case ICmpInst::ICMP_ULE: return Expression::ICMPULE;
254 case ICmpInst::ICMP_SGT: return Expression::ICMPSGT;
255 case ICmpInst::ICMP_SGE: return Expression::ICMPSGE;
256 case ICmpInst::ICMP_SLT: return Expression::ICMPSLT;
257 case ICmpInst::ICMP_SLE: return Expression::ICMPSLE;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000258 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000259 }
Nate Begeman1d6e4092008-05-18 19:49:05 +0000260 assert((isa<FCmpInst>(C) || isa<VFCmpInst>(C)) && "Unknown compare");
Chris Lattner88365bb2008-03-21 21:14:38 +0000261 switch (C->getPredicate()) {
262 default: // THIS SHOULD NEVER HAPPEN
263 assert(0 && "Comparison with unknown predicate?");
264 case FCmpInst::FCMP_OEQ: return Expression::FCMPOEQ;
265 case FCmpInst::FCMP_OGT: return Expression::FCMPOGT;
266 case FCmpInst::FCMP_OGE: return Expression::FCMPOGE;
267 case FCmpInst::FCMP_OLT: return Expression::FCMPOLT;
268 case FCmpInst::FCMP_OLE: return Expression::FCMPOLE;
269 case FCmpInst::FCMP_ONE: return Expression::FCMPONE;
270 case FCmpInst::FCMP_ORD: return Expression::FCMPORD;
271 case FCmpInst::FCMP_UNO: return Expression::FCMPUNO;
272 case FCmpInst::FCMP_UEQ: return Expression::FCMPUEQ;
273 case FCmpInst::FCMP_UGT: return Expression::FCMPUGT;
274 case FCmpInst::FCMP_UGE: return Expression::FCMPUGE;
275 case FCmpInst::FCMP_ULT: return Expression::FCMPULT;
276 case FCmpInst::FCMP_ULE: return Expression::FCMPULE;
277 case FCmpInst::FCMP_UNE: return Expression::FCMPUNE;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000278 }
279}
280
Chris Lattner88365bb2008-03-21 21:14:38 +0000281Expression::ExpressionOpcode ValueTable::getOpcode(CastInst* C) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000282 switch(C->getOpcode()) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000283 default: // THIS SHOULD NEVER HAPPEN
284 assert(0 && "Cast operator with unknown opcode?");
285 case Instruction::Trunc: return Expression::TRUNC;
286 case Instruction::ZExt: return Expression::ZEXT;
287 case Instruction::SExt: return Expression::SEXT;
288 case Instruction::FPToUI: return Expression::FPTOUI;
289 case Instruction::FPToSI: return Expression::FPTOSI;
290 case Instruction::UIToFP: return Expression::UITOFP;
291 case Instruction::SIToFP: return Expression::SITOFP;
292 case Instruction::FPTrunc: return Expression::FPTRUNC;
293 case Instruction::FPExt: return Expression::FPEXT;
294 case Instruction::PtrToInt: return Expression::PTRTOINT;
295 case Instruction::IntToPtr: return Expression::INTTOPTR;
296 case Instruction::BitCast: return Expression::BITCAST;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000297 }
298}
299
Owen Andersonb388ca92007-10-18 19:39:33 +0000300Expression ValueTable::create_expression(CallInst* C) {
301 Expression e;
302
303 e.type = C->getType();
304 e.firstVN = 0;
305 e.secondVN = 0;
306 e.thirdVN = 0;
307 e.function = C->getCalledFunction();
308 e.opcode = Expression::CALL;
309
310 for (CallInst::op_iterator I = C->op_begin()+1, E = C->op_end();
311 I != E; ++I)
Owen Anderson8f46c782008-04-11 05:11:49 +0000312 e.varargs.push_back(lookup_or_add(*I));
Owen Andersonb388ca92007-10-18 19:39:33 +0000313
314 return e;
315}
316
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000317Expression ValueTable::create_expression(BinaryOperator* BO) {
318 Expression e;
319
Owen Anderson8f46c782008-04-11 05:11:49 +0000320 e.firstVN = lookup_or_add(BO->getOperand(0));
321 e.secondVN = lookup_or_add(BO->getOperand(1));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000322 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000323 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000324 e.type = BO->getType();
325 e.opcode = getOpcode(BO);
326
327 return e;
328}
329
330Expression ValueTable::create_expression(CmpInst* C) {
331 Expression e;
332
Owen Anderson8f46c782008-04-11 05:11:49 +0000333 e.firstVN = lookup_or_add(C->getOperand(0));
334 e.secondVN = lookup_or_add(C->getOperand(1));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000335 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000336 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000337 e.type = C->getType();
338 e.opcode = getOpcode(C);
339
340 return e;
341}
342
343Expression ValueTable::create_expression(CastInst* C) {
344 Expression e;
345
Owen Anderson8f46c782008-04-11 05:11:49 +0000346 e.firstVN = lookup_or_add(C->getOperand(0));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000347 e.secondVN = 0;
348 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000349 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000350 e.type = C->getType();
351 e.opcode = getOpcode(C);
352
353 return e;
354}
355
356Expression ValueTable::create_expression(ShuffleVectorInst* S) {
357 Expression e;
358
Owen Anderson8f46c782008-04-11 05:11:49 +0000359 e.firstVN = lookup_or_add(S->getOperand(0));
360 e.secondVN = lookup_or_add(S->getOperand(1));
361 e.thirdVN = lookup_or_add(S->getOperand(2));
Owen Andersonb388ca92007-10-18 19:39:33 +0000362 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000363 e.type = S->getType();
364 e.opcode = Expression::SHUFFLE;
365
366 return e;
367}
368
369Expression ValueTable::create_expression(ExtractElementInst* E) {
370 Expression e;
371
Owen Anderson8f46c782008-04-11 05:11:49 +0000372 e.firstVN = lookup_or_add(E->getOperand(0));
373 e.secondVN = lookup_or_add(E->getOperand(1));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000374 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000375 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000376 e.type = E->getType();
377 e.opcode = Expression::EXTRACT;
378
379 return e;
380}
381
382Expression ValueTable::create_expression(InsertElementInst* I) {
383 Expression e;
384
Owen Anderson8f46c782008-04-11 05:11:49 +0000385 e.firstVN = lookup_or_add(I->getOperand(0));
386 e.secondVN = lookup_or_add(I->getOperand(1));
387 e.thirdVN = lookup_or_add(I->getOperand(2));
Owen Andersonb388ca92007-10-18 19:39:33 +0000388 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000389 e.type = I->getType();
390 e.opcode = Expression::INSERT;
391
392 return e;
393}
394
395Expression ValueTable::create_expression(SelectInst* I) {
396 Expression e;
397
Owen Anderson8f46c782008-04-11 05:11:49 +0000398 e.firstVN = lookup_or_add(I->getCondition());
399 e.secondVN = lookup_or_add(I->getTrueValue());
400 e.thirdVN = lookup_or_add(I->getFalseValue());
Owen Andersonb388ca92007-10-18 19:39:33 +0000401 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000402 e.type = I->getType();
403 e.opcode = Expression::SELECT;
404
405 return e;
406}
407
408Expression ValueTable::create_expression(GetElementPtrInst* G) {
409 Expression e;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000410
Owen Anderson8f46c782008-04-11 05:11:49 +0000411 e.firstVN = lookup_or_add(G->getPointerOperand());
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000412 e.secondVN = 0;
413 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000414 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000415 e.type = G->getType();
416 e.opcode = Expression::GEP;
417
418 for (GetElementPtrInst::op_iterator I = G->idx_begin(), E = G->idx_end();
419 I != E; ++I)
Owen Anderson8f46c782008-04-11 05:11:49 +0000420 e.varargs.push_back(lookup_or_add(*I));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000421
422 return e;
423}
424
425//===----------------------------------------------------------------------===//
426// ValueTable External Functions
427//===----------------------------------------------------------------------===//
428
Owen Andersonb2303722008-06-18 21:41:49 +0000429/// add - Insert a value into the table with a specified value number.
430void ValueTable::add(Value* V, uint32_t num) {
431 valueNumbering.insert(std::make_pair(V, num));
432}
433
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000434/// lookup_or_add - Returns the value number for the specified value, assigning
435/// it a new number if it did not have one before.
436uint32_t ValueTable::lookup_or_add(Value* V) {
437 DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
438 if (VI != valueNumbering.end())
439 return VI->second;
440
Owen Andersonb388ca92007-10-18 19:39:33 +0000441 if (CallInst* C = dyn_cast<CallInst>(V)) {
Owen Anderson8f46c782008-04-11 05:11:49 +0000442 if (AA->doesNotAccessMemory(C)) {
Owen Andersonb388ca92007-10-18 19:39:33 +0000443 Expression e = create_expression(C);
444
445 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
446 if (EI != expressionNumbering.end()) {
447 valueNumbering.insert(std::make_pair(V, EI->second));
448 return EI->second;
449 } else {
450 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
451 valueNumbering.insert(std::make_pair(V, nextValueNumber));
452
453 return nextValueNumber++;
454 }
Owen Anderson241f6532008-04-17 05:36:50 +0000455 } else if (AA->onlyReadsMemory(C)) {
456 Expression e = create_expression(C);
457
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000458 if (expressionNumbering.find(e) == expressionNumbering.end()) {
Owen Anderson241f6532008-04-17 05:36:50 +0000459 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
460 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000461 return nextValueNumber++;
462 }
Owen Anderson241f6532008-04-17 05:36:50 +0000463
Chris Lattner4c724002008-11-29 02:29:27 +0000464 MemDepResult local_dep = MD->getDependency(C);
Owen Andersonc4f406e2008-05-13 23:18:30 +0000465
Chris Lattnerb51deb92008-12-05 21:04:20 +0000466 if (!local_dep.isDef() && !local_dep.isNonLocal()) {
Owen Andersonc4f406e2008-05-13 23:18:30 +0000467 valueNumbering.insert(std::make_pair(V, nextValueNumber));
468 return nextValueNumber++;
Chris Lattner1440ac52008-11-30 23:39:23 +0000469 }
Chris Lattnerb51deb92008-12-05 21:04:20 +0000470
471 if (local_dep.isDef()) {
472 CallInst* local_cdep = cast<CallInst>(local_dep.getInst());
473
474 if (local_cdep->getNumOperands() != C->getNumOperands()) {
Owen Andersonc4f406e2008-05-13 23:18:30 +0000475 valueNumbering.insert(std::make_pair(V, nextValueNumber));
476 return nextValueNumber++;
477 }
Chris Lattnerb51deb92008-12-05 21:04:20 +0000478
Chris Lattner1440ac52008-11-30 23:39:23 +0000479 for (unsigned i = 1; i < C->getNumOperands(); ++i) {
480 uint32_t c_vn = lookup_or_add(C->getOperand(i));
481 uint32_t cd_vn = lookup_or_add(local_cdep->getOperand(i));
482 if (c_vn != cd_vn) {
483 valueNumbering.insert(std::make_pair(V, nextValueNumber));
484 return nextValueNumber++;
485 }
486 }
487
488 uint32_t v = lookup_or_add(local_cdep);
489 valueNumbering.insert(std::make_pair(V, v));
490 return v;
Owen Andersonc4f406e2008-05-13 23:18:30 +0000491 }
Chris Lattnerbf145d62008-12-01 01:15:42 +0000492
Chris Lattnerb51deb92008-12-05 21:04:20 +0000493 // Non-local case.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000494 const MemoryDependenceAnalysis::NonLocalDepInfo &deps =
Chris Lattner1559b362008-12-09 19:38:05 +0000495 MD->getNonLocalCallDependency(CallSite(C));
Chris Lattnerb51deb92008-12-05 21:04:20 +0000496 // FIXME: call/call dependencies for readonly calls should return def, not
497 // clobber! Move the checking logic to MemDep!
Owen Anderson16db1f72008-05-13 13:41:23 +0000498 CallInst* cdep = 0;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000499
Chris Lattner1440ac52008-11-30 23:39:23 +0000500 // Check to see if we have a single dominating call instruction that is
501 // identical to C.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000502 for (unsigned i = 0, e = deps.size(); i != e; ++i) {
503 const MemoryDependenceAnalysis::NonLocalDepEntry *I = &deps[i];
Chris Lattner1440ac52008-11-30 23:39:23 +0000504 // Ignore non-local dependencies.
505 if (I->second.isNonLocal())
506 continue;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000507
Chris Lattner1440ac52008-11-30 23:39:23 +0000508 // We don't handle non-depedencies. If we already have a call, reject
509 // instruction dependencies.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000510 if (I->second.isClobber() || cdep != 0) {
Chris Lattner1440ac52008-11-30 23:39:23 +0000511 cdep = 0;
512 break;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000513 }
Chris Lattner1440ac52008-11-30 23:39:23 +0000514
515 CallInst *NonLocalDepCall = dyn_cast<CallInst>(I->second.getInst());
516 // FIXME: All duplicated with non-local case.
517 if (NonLocalDepCall && DT->properlyDominates(I->first, C->getParent())){
518 cdep = NonLocalDepCall;
519 continue;
520 }
521
522 cdep = 0;
523 break;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000524 }
525
Owen Anderson16db1f72008-05-13 13:41:23 +0000526 if (!cdep) {
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000527 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson241f6532008-04-17 05:36:50 +0000528 return nextValueNumber++;
529 }
530
Chris Lattnerb51deb92008-12-05 21:04:20 +0000531 if (cdep->getNumOperands() != C->getNumOperands()) {
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000532 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson241f6532008-04-17 05:36:50 +0000533 return nextValueNumber++;
Owen Anderson241f6532008-04-17 05:36:50 +0000534 }
Chris Lattner1440ac52008-11-30 23:39:23 +0000535 for (unsigned i = 1; i < C->getNumOperands(); ++i) {
536 uint32_t c_vn = lookup_or_add(C->getOperand(i));
537 uint32_t cd_vn = lookup_or_add(cdep->getOperand(i));
538 if (c_vn != cd_vn) {
539 valueNumbering.insert(std::make_pair(V, nextValueNumber));
540 return nextValueNumber++;
541 }
542 }
543
544 uint32_t v = lookup_or_add(cdep);
545 valueNumbering.insert(std::make_pair(V, v));
546 return v;
Owen Anderson241f6532008-04-17 05:36:50 +0000547
Owen Andersonb388ca92007-10-18 19:39:33 +0000548 } else {
549 valueNumbering.insert(std::make_pair(V, nextValueNumber));
550 return nextValueNumber++;
551 }
552 } else if (BinaryOperator* BO = dyn_cast<BinaryOperator>(V)) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000553 Expression e = create_expression(BO);
554
555 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
556 if (EI != expressionNumbering.end()) {
557 valueNumbering.insert(std::make_pair(V, EI->second));
558 return EI->second;
559 } else {
560 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
561 valueNumbering.insert(std::make_pair(V, nextValueNumber));
562
563 return nextValueNumber++;
564 }
565 } else if (CmpInst* C = dyn_cast<CmpInst>(V)) {
566 Expression e = create_expression(C);
567
568 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
569 if (EI != expressionNumbering.end()) {
570 valueNumbering.insert(std::make_pair(V, EI->second));
571 return EI->second;
572 } else {
573 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
574 valueNumbering.insert(std::make_pair(V, nextValueNumber));
575
576 return nextValueNumber++;
577 }
578 } else if (ShuffleVectorInst* U = dyn_cast<ShuffleVectorInst>(V)) {
579 Expression e = create_expression(U);
580
581 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
582 if (EI != expressionNumbering.end()) {
583 valueNumbering.insert(std::make_pair(V, EI->second));
584 return EI->second;
585 } else {
586 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
587 valueNumbering.insert(std::make_pair(V, nextValueNumber));
588
589 return nextValueNumber++;
590 }
591 } else if (ExtractElementInst* U = dyn_cast<ExtractElementInst>(V)) {
592 Expression e = create_expression(U);
593
594 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
595 if (EI != expressionNumbering.end()) {
596 valueNumbering.insert(std::make_pair(V, EI->second));
597 return EI->second;
598 } else {
599 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
600 valueNumbering.insert(std::make_pair(V, nextValueNumber));
601
602 return nextValueNumber++;
603 }
604 } else if (InsertElementInst* U = dyn_cast<InsertElementInst>(V)) {
605 Expression e = create_expression(U);
606
607 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
608 if (EI != expressionNumbering.end()) {
609 valueNumbering.insert(std::make_pair(V, EI->second));
610 return EI->second;
611 } else {
612 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
613 valueNumbering.insert(std::make_pair(V, nextValueNumber));
614
615 return nextValueNumber++;
616 }
617 } else if (SelectInst* U = dyn_cast<SelectInst>(V)) {
618 Expression e = create_expression(U);
619
620 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
621 if (EI != expressionNumbering.end()) {
622 valueNumbering.insert(std::make_pair(V, EI->second));
623 return EI->second;
624 } else {
625 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
626 valueNumbering.insert(std::make_pair(V, nextValueNumber));
627
628 return nextValueNumber++;
629 }
630 } else if (CastInst* U = dyn_cast<CastInst>(V)) {
631 Expression e = create_expression(U);
632
633 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
634 if (EI != expressionNumbering.end()) {
635 valueNumbering.insert(std::make_pair(V, EI->second));
636 return EI->second;
637 } else {
638 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
639 valueNumbering.insert(std::make_pair(V, nextValueNumber));
640
641 return nextValueNumber++;
642 }
643 } else if (GetElementPtrInst* U = dyn_cast<GetElementPtrInst>(V)) {
644 Expression e = create_expression(U);
645
646 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
647 if (EI != expressionNumbering.end()) {
648 valueNumbering.insert(std::make_pair(V, EI->second));
649 return EI->second;
650 } else {
651 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
652 valueNumbering.insert(std::make_pair(V, nextValueNumber));
653
654 return nextValueNumber++;
655 }
656 } else {
657 valueNumbering.insert(std::make_pair(V, nextValueNumber));
658 return nextValueNumber++;
659 }
660}
661
662/// lookup - Returns the value number of the specified value. Fails if
663/// the value has not yet been numbered.
664uint32_t ValueTable::lookup(Value* V) const {
665 DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
Chris Lattner88365bb2008-03-21 21:14:38 +0000666 assert(VI != valueNumbering.end() && "Value not numbered?");
667 return VI->second;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000668}
669
670/// clear - Remove all entries from the ValueTable
671void ValueTable::clear() {
672 valueNumbering.clear();
673 expressionNumbering.clear();
674 nextValueNumber = 1;
675}
676
Owen Andersonbf7d0bc2007-07-31 23:27:13 +0000677/// erase - Remove a value from the value numbering
678void ValueTable::erase(Value* V) {
679 valueNumbering.erase(V);
680}
681
Bill Wendling246dbbb2008-12-22 21:36:08 +0000682/// verifyRemoved - Verify that the value is removed from all internal data
683/// structures.
684void ValueTable::verifyRemoved(const Value *V) const {
685 for (DenseMap<Value*, uint32_t>::iterator
686 I = valueNumbering.begin(), E = valueNumbering.end(); I != E; ++I) {
687 assert(I->first != V && "Inst still occurs in value numbering map!");
688 }
689}
690
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000691//===----------------------------------------------------------------------===//
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000692// GVN Pass
693//===----------------------------------------------------------------------===//
694
695namespace {
Owen Anderson6fafe842008-06-20 01:15:47 +0000696 struct VISIBILITY_HIDDEN ValueNumberScope {
697 ValueNumberScope* parent;
698 DenseMap<uint32_t, Value*> table;
699
700 ValueNumberScope(ValueNumberScope* p) : parent(p) { }
701 };
702}
703
704namespace {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000705
706 class VISIBILITY_HIDDEN GVN : public FunctionPass {
707 bool runOnFunction(Function &F);
708 public:
709 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +0000710 GVN() : FunctionPass(&ID) { }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000711
712 private:
Chris Lattner663e4412008-12-01 00:40:32 +0000713 MemoryDependenceAnalysis *MD;
714 DominatorTree *DT;
715
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000716 ValueTable VN;
Owen Anderson6fafe842008-06-20 01:15:47 +0000717 DenseMap<BasicBlock*, ValueNumberScope*> localAvail;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000718
Owen Andersona37226a2007-08-07 23:12:31 +0000719 typedef DenseMap<Value*, SmallPtrSet<Instruction*, 4> > PhiMapType;
720 PhiMapType phiMap;
721
722
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000723 // This transformation requires dominator postdominator info
724 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000725 AU.addRequired<DominatorTree>();
726 AU.addRequired<MemoryDependenceAnalysis>();
Owen Andersonb388ca92007-10-18 19:39:33 +0000727 AU.addRequired<AliasAnalysis>();
Owen Andersonb70a5712008-06-23 17:49:45 +0000728
729 AU.addPreserved<DominatorTree>();
Owen Andersonb388ca92007-10-18 19:39:33 +0000730 AU.addPreserved<AliasAnalysis>();
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000731 }
732
733 // Helper fuctions
734 // FIXME: eliminate or document these better
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000735 bool processLoad(LoadInst* L,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000736 SmallVectorImpl<Instruction*> &toErase);
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000737 bool processInstruction(Instruction* I,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000738 SmallVectorImpl<Instruction*> &toErase);
Owen Anderson830db6a2007-08-02 18:16:06 +0000739 bool processNonLocalLoad(LoadInst* L,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000740 SmallVectorImpl<Instruction*> &toErase);
Owen Anderson255dafc2008-12-15 02:03:00 +0000741 bool processBlock(BasicBlock* BB);
Owen Andersoncbe1d942008-12-14 19:10:35 +0000742 Value *GetValueForBlock(BasicBlock *BB, Instruction* orig,
Owen Anderson1c2763d2007-08-02 17:56:05 +0000743 DenseMap<BasicBlock*, Value*> &Phis,
744 bool top_level = false);
Owen Andersonb2303722008-06-18 21:41:49 +0000745 void dump(DenseMap<uint32_t, Value*>& d);
Owen Anderson3e75a422007-08-14 18:04:11 +0000746 bool iterateOnFunction(Function &F);
Owen Anderson1defe2d2007-08-16 22:51:56 +0000747 Value* CollapsePhi(PHINode* p);
Owen Anderson24866862007-09-16 08:04:16 +0000748 bool isSafeReplacement(PHINode* p, Instruction* inst);
Owen Andersonb2303722008-06-18 21:41:49 +0000749 bool performPRE(Function& F);
Owen Anderson6fafe842008-06-20 01:15:47 +0000750 Value* lookupNumber(BasicBlock* BB, uint32_t num);
Owen Anderson961edc82008-07-15 16:28:06 +0000751 bool mergeBlockIntoPredecessor(BasicBlock* BB);
Owen Anderson255dafc2008-12-15 02:03:00 +0000752 Value* AttemptRedundancyElimination(Instruction* orig, unsigned valno);
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +0000753 void cleanupGlobalSets();
Bill Wendling246dbbb2008-12-22 21:36:08 +0000754 void verifyRemoved(const Instruction *I) const;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000755 };
756
757 char GVN::ID = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000758}
759
760// createGVNPass - The public interface to this file...
761FunctionPass *llvm::createGVNPass() { return new GVN(); }
762
763static RegisterPass<GVN> X("gvn",
764 "Global Value Numbering");
765
Owen Andersonb2303722008-06-18 21:41:49 +0000766void GVN::dump(DenseMap<uint32_t, Value*>& d) {
Owen Anderson0cd32032007-07-25 19:57:03 +0000767 printf("{\n");
Owen Andersonb2303722008-06-18 21:41:49 +0000768 for (DenseMap<uint32_t, Value*>::iterator I = d.begin(),
Owen Anderson0cd32032007-07-25 19:57:03 +0000769 E = d.end(); I != E; ++I) {
Owen Andersonb2303722008-06-18 21:41:49 +0000770 printf("%d\n", I->first);
Owen Anderson0cd32032007-07-25 19:57:03 +0000771 I->second->dump();
772 }
773 printf("}\n");
774}
775
Owen Anderson1defe2d2007-08-16 22:51:56 +0000776Value* GVN::CollapsePhi(PHINode* p) {
Owen Anderson1defe2d2007-08-16 22:51:56 +0000777 Value* constVal = p->hasConstantValue();
Chris Lattner88365bb2008-03-21 21:14:38 +0000778 if (!constVal) return 0;
Owen Anderson1defe2d2007-08-16 22:51:56 +0000779
Chris Lattner88365bb2008-03-21 21:14:38 +0000780 Instruction* inst = dyn_cast<Instruction>(constVal);
781 if (!inst)
782 return constVal;
783
Chris Lattner663e4412008-12-01 00:40:32 +0000784 if (DT->dominates(inst, p))
Chris Lattner88365bb2008-03-21 21:14:38 +0000785 if (isSafeReplacement(p, inst))
786 return inst;
Owen Anderson1defe2d2007-08-16 22:51:56 +0000787 return 0;
788}
Owen Anderson0cd32032007-07-25 19:57:03 +0000789
Owen Anderson24866862007-09-16 08:04:16 +0000790bool GVN::isSafeReplacement(PHINode* p, Instruction* inst) {
791 if (!isa<PHINode>(inst))
792 return true;
793
794 for (Instruction::use_iterator UI = p->use_begin(), E = p->use_end();
795 UI != E; ++UI)
796 if (PHINode* use_phi = dyn_cast<PHINode>(UI))
797 if (use_phi->getParent() == inst->getParent())
798 return false;
799
800 return true;
801}
802
Owen Anderson45537912007-07-26 18:26:51 +0000803/// GetValueForBlock - Get the value to use within the specified basic block.
804/// available values are in Phis.
Owen Andersoncbe1d942008-12-14 19:10:35 +0000805Value *GVN::GetValueForBlock(BasicBlock *BB, Instruction* orig,
Chris Lattner88365bb2008-03-21 21:14:38 +0000806 DenseMap<BasicBlock*, Value*> &Phis,
807 bool top_level) {
Owen Anderson45537912007-07-26 18:26:51 +0000808
809 // If we have already computed this value, return the previously computed val.
Owen Andersonab870272007-08-03 19:59:35 +0000810 DenseMap<BasicBlock*, Value*>::iterator V = Phis.find(BB);
811 if (V != Phis.end() && !top_level) return V->second;
Owen Anderson45537912007-07-26 18:26:51 +0000812
Owen Andersoncb29a4f2008-07-02 18:15:31 +0000813 // If the block is unreachable, just return undef, since this path
814 // can't actually occur at runtime.
Chris Lattner663e4412008-12-01 00:40:32 +0000815 if (!DT->isReachableFromEntry(BB))
Owen Andersoncb29a4f2008-07-02 18:15:31 +0000816 return Phis[BB] = UndefValue::get(orig->getType());
Owen Andersonf2aa1602008-07-02 17:20:16 +0000817
Chris Lattnerae199312008-12-09 19:21:47 +0000818 if (BasicBlock *Pred = BB->getSinglePredecessor()) {
819 Value *ret = GetValueForBlock(Pred, orig, Phis);
Owen Andersonab870272007-08-03 19:59:35 +0000820 Phis[BB] = ret;
821 return ret;
Owen Anderson4b55c3b2007-08-03 11:03:26 +0000822 }
Chris Lattnerae199312008-12-09 19:21:47 +0000823
824 // Get the number of predecessors of this block so we can reserve space later.
825 // If there is already a PHI in it, use the #preds from it, otherwise count.
826 // Getting it from the PHI is constant time.
827 unsigned NumPreds;
828 if (PHINode *ExistingPN = dyn_cast<PHINode>(BB->begin()))
829 NumPreds = ExistingPN->getNumIncomingValues();
830 else
831 NumPreds = std::distance(pred_begin(BB), pred_end(BB));
Chris Lattner88365bb2008-03-21 21:14:38 +0000832
Owen Anderson45537912007-07-26 18:26:51 +0000833 // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so
834 // now, then get values to fill in the incoming values for the PHI.
Gabor Greif051a9502008-04-06 20:25:17 +0000835 PHINode *PN = PHINode::Create(orig->getType(), orig->getName()+".rle",
836 BB->begin());
Chris Lattnerae199312008-12-09 19:21:47 +0000837 PN->reserveOperandSpace(NumPreds);
Owen Andersonab870272007-08-03 19:59:35 +0000838
Chris Lattnerae199312008-12-09 19:21:47 +0000839 Phis.insert(std::make_pair(BB, PN));
Owen Anderson4f9ba7c2007-07-30 16:57:08 +0000840
Owen Anderson45537912007-07-26 18:26:51 +0000841 // Fill in the incoming values for the block.
Owen Anderson054ab942007-07-31 17:43:14 +0000842 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
843 Value* val = GetValueForBlock(*PI, orig, Phis);
Owen Anderson054ab942007-07-31 17:43:14 +0000844 PN->addIncoming(val, *PI);
845 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000846
Chris Lattner663e4412008-12-01 00:40:32 +0000847 VN.getAliasAnalysis()->copyValue(orig, PN);
Owen Anderson054ab942007-07-31 17:43:14 +0000848
Owen Anderson62bc33c2007-08-16 22:02:55 +0000849 // Attempt to collapse PHI nodes that are trivially redundant
Owen Anderson1defe2d2007-08-16 22:51:56 +0000850 Value* v = CollapsePhi(PN);
Chris Lattner88365bb2008-03-21 21:14:38 +0000851 if (!v) {
852 // Cache our phi construction results
Owen Andersoncbe1d942008-12-14 19:10:35 +0000853 if (LoadInst* L = dyn_cast<LoadInst>(orig))
854 phiMap[L->getPointerOperand()].insert(PN);
855 else
856 phiMap[orig].insert(PN);
857
Chris Lattner88365bb2008-03-21 21:14:38 +0000858 return PN;
Owen Anderson054ab942007-07-31 17:43:14 +0000859 }
Owen Andersona472c4a2008-05-12 20:15:55 +0000860
Chris Lattner88365bb2008-03-21 21:14:38 +0000861 PN->replaceAllUsesWith(v);
Chris Lattnerbc99be12008-12-09 22:06:23 +0000862 if (isa<PointerType>(v->getType()))
863 MD->invalidateCachedPointerInfo(v);
Chris Lattner88365bb2008-03-21 21:14:38 +0000864
865 for (DenseMap<BasicBlock*, Value*>::iterator I = Phis.begin(),
866 E = Phis.end(); I != E; ++I)
867 if (I->second == PN)
868 I->second = v;
869
Chris Lattner663e4412008-12-01 00:40:32 +0000870 DEBUG(cerr << "GVN removed: " << *PN);
871 MD->removeInstruction(PN);
Chris Lattner88365bb2008-03-21 21:14:38 +0000872 PN->eraseFromParent();
Bill Wendling246dbbb2008-12-22 21:36:08 +0000873 DEBUG(verifyRemoved(PN));
Chris Lattner88365bb2008-03-21 21:14:38 +0000874
875 Phis[BB] = v;
876 return v;
Owen Anderson0cd32032007-07-25 19:57:03 +0000877}
878
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000879/// IsValueFullyAvailableInBlock - Return true if we can prove that the value
880/// we're analyzing is fully available in the specified block. As we go, keep
Chris Lattner72bc70d2008-12-05 07:49:08 +0000881/// track of which blocks we know are fully alive in FullyAvailableBlocks. This
882/// map is actually a tri-state map with the following values:
883/// 0) we know the block *is not* fully available.
884/// 1) we know the block *is* fully available.
885/// 2) we do not know whether the block is fully available or not, but we are
886/// currently speculating that it will be.
887/// 3) we are speculating for this block and have used that to speculate for
888/// other blocks.
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000889static bool IsValueFullyAvailableInBlock(BasicBlock *BB,
Chris Lattner72bc70d2008-12-05 07:49:08 +0000890 DenseMap<BasicBlock*, char> &FullyAvailableBlocks) {
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000891 // Optimistically assume that the block is fully available and check to see
892 // if we already know about this block in one lookup.
Chris Lattner72bc70d2008-12-05 07:49:08 +0000893 std::pair<DenseMap<BasicBlock*, char>::iterator, char> IV =
894 FullyAvailableBlocks.insert(std::make_pair(BB, 2));
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000895
896 // If the entry already existed for this block, return the precomputed value.
Chris Lattner72bc70d2008-12-05 07:49:08 +0000897 if (!IV.second) {
898 // If this is a speculative "available" value, mark it as being used for
899 // speculation of other blocks.
900 if (IV.first->second == 2)
901 IV.first->second = 3;
902 return IV.first->second != 0;
903 }
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000904
905 // Otherwise, see if it is fully available in all predecessors.
906 pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
907
908 // If this block has no predecessors, it isn't live-in here.
909 if (PI == PE)
Chris Lattner72bc70d2008-12-05 07:49:08 +0000910 goto SpeculationFailure;
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000911
912 for (; PI != PE; ++PI)
913 // If the value isn't fully available in one of our predecessors, then it
914 // isn't fully available in this block either. Undo our previous
915 // optimistic assumption and bail out.
916 if (!IsValueFullyAvailableInBlock(*PI, FullyAvailableBlocks))
Chris Lattner72bc70d2008-12-05 07:49:08 +0000917 goto SpeculationFailure;
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000918
919 return true;
Chris Lattner72bc70d2008-12-05 07:49:08 +0000920
921// SpeculationFailure - If we get here, we found out that this is not, after
922// all, a fully-available block. We have a problem if we speculated on this and
923// used the speculation to mark other blocks as available.
924SpeculationFailure:
925 char &BBVal = FullyAvailableBlocks[BB];
926
927 // If we didn't speculate on this, just return with it set to false.
928 if (BBVal == 2) {
929 BBVal = 0;
930 return false;
931 }
932
933 // If we did speculate on this value, we could have blocks set to 1 that are
934 // incorrect. Walk the (transitive) successors of this block and mark them as
935 // 0 if set to one.
936 SmallVector<BasicBlock*, 32> BBWorklist;
937 BBWorklist.push_back(BB);
938
939 while (!BBWorklist.empty()) {
940 BasicBlock *Entry = BBWorklist.pop_back_val();
941 // Note that this sets blocks to 0 (unavailable) if they happen to not
942 // already be in FullyAvailableBlocks. This is safe.
943 char &EntryVal = FullyAvailableBlocks[Entry];
944 if (EntryVal == 0) continue; // Already unavailable.
945
946 // Mark as unavailable.
947 EntryVal = 0;
948
949 for (succ_iterator I = succ_begin(Entry), E = succ_end(Entry); I != E; ++I)
950 BBWorklist.push_back(*I);
951 }
952
953 return false;
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000954}
955
Owen Anderson62bc33c2007-08-16 22:02:55 +0000956/// processNonLocalLoad - Attempt to eliminate a load whose dependencies are
957/// non-local by performing PHI construction.
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000958bool GVN::processNonLocalLoad(LoadInst *LI,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000959 SmallVectorImpl<Instruction*> &toErase) {
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000960 // Find the non-local dependencies of the load.
Chris Lattner91bcf642008-12-09 19:25:07 +0000961 SmallVector<MemoryDependenceAnalysis::NonLocalDepEntry, 64> Deps;
962 MD->getNonLocalPointerDependency(LI->getOperand(0), true, LI->getParent(),
963 Deps);
964 //DEBUG(cerr << "INVESTIGATING NONLOCAL LOAD: " << Deps.size() << *LI);
Owen Anderson0cd32032007-07-25 19:57:03 +0000965
Owen Anderson516eb1c2008-08-26 22:07:42 +0000966 // If we had to process more than one hundred blocks to find the
967 // dependencies, this load isn't worth worrying about. Optimizing
968 // it will be too expensive.
Chris Lattner91bcf642008-12-09 19:25:07 +0000969 if (Deps.size() > 100)
Owen Anderson516eb1c2008-08-26 22:07:42 +0000970 return false;
Chris Lattner5f4f84b2008-12-18 00:51:32 +0000971
972 // If we had a phi translation failure, we'll have a single entry which is a
973 // clobber in the current block. Reject this early.
974 if (Deps.size() == 1 && Deps[0].second.isClobber())
975 return false;
Owen Anderson516eb1c2008-08-26 22:07:42 +0000976
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000977 // Filter out useless results (non-locals, etc). Keep track of the blocks
978 // where we have a value available in repl, also keep track of whether we see
979 // dependencies that produce an unknown value for the load (such as a call
980 // that could potentially clobber the load).
981 SmallVector<std::pair<BasicBlock*, Value*>, 16> ValuesPerBlock;
982 SmallVector<BasicBlock*, 16> UnavailableBlocks;
Owen Andersona37226a2007-08-07 23:12:31 +0000983
Chris Lattner91bcf642008-12-09 19:25:07 +0000984 for (unsigned i = 0, e = Deps.size(); i != e; ++i) {
985 BasicBlock *DepBB = Deps[i].first;
986 MemDepResult DepInfo = Deps[i].second;
Chris Lattnerbf145d62008-12-01 01:15:42 +0000987
Chris Lattnerb51deb92008-12-05 21:04:20 +0000988 if (DepInfo.isClobber()) {
989 UnavailableBlocks.push_back(DepBB);
990 continue;
991 }
992
993 Instruction *DepInst = DepInfo.getInst();
994
995 // Loading the allocation -> undef.
996 if (isa<AllocationInst>(DepInst)) {
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000997 ValuesPerBlock.push_back(std::make_pair(DepBB,
998 UndefValue::get(LI->getType())));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000999 continue;
1000 }
Chris Lattner88365bb2008-03-21 21:14:38 +00001001
Chris Lattner91bcf642008-12-09 19:25:07 +00001002 if (StoreInst* S = dyn_cast<StoreInst>(DepInst)) {
Chris Lattner978796e2008-12-01 01:31:36 +00001003 // Reject loads and stores that are to the same address but are of
1004 // different types.
1005 // NOTE: 403.gcc does have this case (e.g. in readonly_fields_p) because
1006 // of bitfield access, it would be interesting to optimize for it at some
1007 // point.
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001008 if (S->getOperand(0)->getType() != LI->getType()) {
1009 UnavailableBlocks.push_back(DepBB);
1010 continue;
1011 }
Chris Lattner978796e2008-12-01 01:31:36 +00001012
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001013 ValuesPerBlock.push_back(std::make_pair(DepBB, S->getOperand(0)));
Chris Lattner978796e2008-12-01 01:31:36 +00001014
Chris Lattner91bcf642008-12-09 19:25:07 +00001015 } else if (LoadInst* LD = dyn_cast<LoadInst>(DepInst)) {
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001016 if (LD->getType() != LI->getType()) {
1017 UnavailableBlocks.push_back(DepBB);
1018 continue;
1019 }
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001020 ValuesPerBlock.push_back(std::make_pair(DepBB, LD));
Owen Anderson0cd32032007-07-25 19:57:03 +00001021 } else {
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001022 UnavailableBlocks.push_back(DepBB);
1023 continue;
Owen Anderson0cd32032007-07-25 19:57:03 +00001024 }
Chris Lattner88365bb2008-03-21 21:14:38 +00001025 }
Owen Anderson0cd32032007-07-25 19:57:03 +00001026
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001027 // If we have no predecessors that produce a known value for this load, exit
1028 // early.
1029 if (ValuesPerBlock.empty()) return false;
1030
1031 // If all of the instructions we depend on produce a known value for this
1032 // load, then it is fully redundant and we can use PHI insertion to compute
1033 // its value. Insert PHIs and remove the fully redundant value now.
1034 if (UnavailableBlocks.empty()) {
1035 // Use cached PHI construction information from previous runs
1036 SmallPtrSet<Instruction*, 4> &p = phiMap[LI->getPointerOperand()];
Chris Lattner91bcf642008-12-09 19:25:07 +00001037 // FIXME: What does phiMap do? Are we positive it isn't getting invalidated?
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001038 for (SmallPtrSet<Instruction*, 4>::iterator I = p.begin(), E = p.end();
1039 I != E; ++I) {
1040 if ((*I)->getParent() == LI->getParent()) {
1041 DEBUG(cerr << "GVN REMOVING NONLOCAL LOAD #1: " << *LI);
1042 LI->replaceAllUsesWith(*I);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001043 if (isa<PointerType>((*I)->getType()))
1044 MD->invalidateCachedPointerInfo(*I);
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001045 toErase.push_back(LI);
1046 NumGVNLoad++;
1047 return true;
1048 }
1049
1050 ValuesPerBlock.push_back(std::make_pair((*I)->getParent(), *I));
Owen Andersona37226a2007-08-07 23:12:31 +00001051 }
Chris Lattner88365bb2008-03-21 21:14:38 +00001052
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001053 DEBUG(cerr << "GVN REMOVING NONLOCAL LOAD: " << *LI);
1054
1055 DenseMap<BasicBlock*, Value*> BlockReplValues;
1056 BlockReplValues.insert(ValuesPerBlock.begin(), ValuesPerBlock.end());
1057 // Perform PHI construction.
1058 Value* v = GetValueForBlock(LI->getParent(), LI, BlockReplValues, true);
1059 LI->replaceAllUsesWith(v);
Chris Lattnerf3313162008-12-15 03:46:38 +00001060
1061 if (!isa<GlobalValue>(v))
1062 v->takeName(LI);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001063 if (isa<PointerType>(v->getType()))
1064 MD->invalidateCachedPointerInfo(v);
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001065 toErase.push_back(LI);
1066 NumGVNLoad++;
1067 return true;
1068 }
1069
1070 if (!EnablePRE || !EnableLoadPRE)
1071 return false;
1072
1073 // Okay, we have *some* definitions of the value. This means that the value
1074 // is available in some of our (transitive) predecessors. Lets think about
1075 // doing PRE of this load. This will involve inserting a new load into the
1076 // predecessor when it's not available. We could do this in general, but
1077 // prefer to not increase code size. As such, we only do this when we know
1078 // that we only have to insert *one* load (which means we're basically moving
1079 // the load, not inserting a new one).
1080
1081 // Everything we do here is based on local predecessors of LI's block. If it
1082 // only has one predecessor, bail now.
1083 BasicBlock *LoadBB = LI->getParent();
1084 if (LoadBB->getSinglePredecessor())
1085 return false;
1086
1087 // If we have a repl set with LI itself in it, this means we have a loop where
1088 // at least one of the values is LI. Since this means that we won't be able
1089 // to eliminate LI even if we insert uses in the other predecessors, we will
1090 // end up increasing code size. Reject this by scanning for LI.
1091 for (unsigned i = 0, e = ValuesPerBlock.size(); i != e; ++i)
1092 if (ValuesPerBlock[i].second == LI)
1093 return false;
1094
1095 // Okay, we have some hope :). Check to see if the loaded value is fully
1096 // available in all but one predecessor.
1097 // FIXME: If we could restructure the CFG, we could make a common pred with
1098 // all the preds that don't have an available LI and insert a new load into
1099 // that one block.
1100 BasicBlock *UnavailablePred = 0;
1101
Chris Lattner72bc70d2008-12-05 07:49:08 +00001102 DenseMap<BasicBlock*, char> FullyAvailableBlocks;
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001103 for (unsigned i = 0, e = ValuesPerBlock.size(); i != e; ++i)
1104 FullyAvailableBlocks[ValuesPerBlock[i].first] = true;
1105 for (unsigned i = 0, e = UnavailableBlocks.size(); i != e; ++i)
1106 FullyAvailableBlocks[UnavailableBlocks[i]] = false;
1107
1108 for (pred_iterator PI = pred_begin(LoadBB), E = pred_end(LoadBB);
1109 PI != E; ++PI) {
1110 if (IsValueFullyAvailableInBlock(*PI, FullyAvailableBlocks))
1111 continue;
1112
1113 // If this load is not available in multiple predecessors, reject it.
1114 if (UnavailablePred && UnavailablePred != *PI)
1115 return false;
1116 UnavailablePred = *PI;
1117 }
1118
1119 assert(UnavailablePred != 0 &&
1120 "Fully available value should be eliminated above!");
1121
1122 // If the loaded pointer is PHI node defined in this block, do PHI translation
1123 // to get its value in the predecessor.
1124 Value *LoadPtr = LI->getOperand(0)->DoPHITranslation(LoadBB, UnavailablePred);
1125
1126 // Make sure the value is live in the predecessor. If it was defined by a
1127 // non-PHI instruction in this block, we don't know how to recompute it above.
1128 if (Instruction *LPInst = dyn_cast<Instruction>(LoadPtr))
1129 if (!DT->dominates(LPInst->getParent(), UnavailablePred)) {
1130 DEBUG(cerr << "COULDN'T PRE LOAD BECAUSE PTR IS UNAVAILABLE IN PRED: "
1131 << *LPInst << *LI << "\n");
1132 return false;
1133 }
1134
1135 // We don't currently handle critical edges :(
1136 if (UnavailablePred->getTerminator()->getNumSuccessors() != 1) {
1137 DEBUG(cerr << "COULD NOT PRE LOAD BECAUSE OF CRITICAL EDGE '"
1138 << UnavailablePred->getName() << "': " << *LI);
1139 return false;
Owen Andersona37226a2007-08-07 23:12:31 +00001140 }
Chris Lattner72bc70d2008-12-05 07:49:08 +00001141
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001142 // Okay, we can eliminate this load by inserting a reload in the predecessor
1143 // and using PHI construction to get the value in the other predecessors, do
1144 // it.
Chris Lattner7f7c7362008-12-05 17:04:12 +00001145 DEBUG(cerr << "GVN REMOVING PRE LOAD: " << *LI);
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001146
1147 Value *NewLoad = new LoadInst(LoadPtr, LI->getName()+".pre", false,
1148 LI->getAlignment(),
1149 UnavailablePred->getTerminator());
1150
1151 DenseMap<BasicBlock*, Value*> BlockReplValues;
1152 BlockReplValues.insert(ValuesPerBlock.begin(), ValuesPerBlock.end());
1153 BlockReplValues[UnavailablePred] = NewLoad;
1154
1155 // Perform PHI construction.
1156 Value* v = GetValueForBlock(LI->getParent(), LI, BlockReplValues, true);
1157 LI->replaceAllUsesWith(v);
Chris Lattnerf3313162008-12-15 03:46:38 +00001158 if (!isa<GlobalValue>(v))
1159 v->takeName(LI);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001160 if (isa<PointerType>(v->getType()))
1161 MD->invalidateCachedPointerInfo(v);
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001162 toErase.push_back(LI);
1163 NumPRELoad++;
Owen Anderson0cd32032007-07-25 19:57:03 +00001164 return true;
1165}
1166
Owen Anderson62bc33c2007-08-16 22:02:55 +00001167/// processLoad - Attempt to eliminate a load, first by eliminating it
1168/// locally, and then attempting non-local elimination if that fails.
Chris Lattnerb51deb92008-12-05 21:04:20 +00001169bool GVN::processLoad(LoadInst *L, SmallVectorImpl<Instruction*> &toErase) {
1170 if (L->isVolatile())
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001171 return false;
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001172
1173 Value* pointer = L->getPointerOperand();
Chris Lattnerb51deb92008-12-05 21:04:20 +00001174
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001175 // ... to a pointer that has been loaded from before...
Chris Lattner663e4412008-12-01 00:40:32 +00001176 MemDepResult dep = MD->getDependency(L);
Owen Anderson8e8278e2007-08-14 17:59:48 +00001177
Chris Lattnerb51deb92008-12-05 21:04:20 +00001178 // If the value isn't available, don't do anything!
1179 if (dep.isClobber())
1180 return false;
1181
1182 // If it is defined in another block, try harder.
Chris Lattnerae199312008-12-09 19:21:47 +00001183 if (dep.isNonLocal())
Chris Lattnerb51deb92008-12-05 21:04:20 +00001184 return processNonLocalLoad(L, toErase);
Eli Friedmanb6c36e42008-02-12 12:08:14 +00001185
Chris Lattnerb51deb92008-12-05 21:04:20 +00001186 Instruction *DepInst = dep.getInst();
1187 if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInst)) {
1188 // Only forward substitute stores to loads of the same type.
1189 // FIXME: Could do better!
1190 if (DepSI->getPointerOperand()->getType() != pointer->getType())
1191 return false;
1192
1193 // Remove it!
1194 L->replaceAllUsesWith(DepSI->getOperand(0));
Chris Lattnerbc99be12008-12-09 22:06:23 +00001195 if (isa<PointerType>(DepSI->getOperand(0)->getType()))
1196 MD->invalidateCachedPointerInfo(DepSI->getOperand(0));
Chris Lattnerb51deb92008-12-05 21:04:20 +00001197 toErase.push_back(L);
1198 NumGVNLoad++;
1199 return true;
1200 }
1201
1202 if (LoadInst *DepLI = dyn_cast<LoadInst>(DepInst)) {
1203 // Only forward substitute stores to loads of the same type.
1204 // FIXME: Could do better! load i32 -> load i8 -> truncate on little endian.
1205 if (DepLI->getType() != L->getType())
1206 return false;
1207
1208 // Remove it!
1209 L->replaceAllUsesWith(DepLI);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001210 if (isa<PointerType>(DepLI->getType()))
1211 MD->invalidateCachedPointerInfo(DepLI);
Chris Lattnerb51deb92008-12-05 21:04:20 +00001212 toErase.push_back(L);
1213 NumGVNLoad++;
1214 return true;
1215 }
1216
Chris Lattner237a8282008-11-30 01:39:32 +00001217 // If this load really doesn't depend on anything, then we must be loading an
1218 // undef value. This can happen when loading for a fresh allocation with no
1219 // intervening stores, for example.
Chris Lattnerb51deb92008-12-05 21:04:20 +00001220 if (isa<AllocationInst>(DepInst)) {
Chris Lattner237a8282008-11-30 01:39:32 +00001221 L->replaceAllUsesWith(UndefValue::get(L->getType()));
1222 toErase.push_back(L);
Chris Lattner237a8282008-11-30 01:39:32 +00001223 NumGVNLoad++;
Chris Lattnerb51deb92008-12-05 21:04:20 +00001224 return true;
Eli Friedmanb6c36e42008-02-12 12:08:14 +00001225 }
1226
Chris Lattnerb51deb92008-12-05 21:04:20 +00001227 return false;
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001228}
1229
Owen Anderson6fafe842008-06-20 01:15:47 +00001230Value* GVN::lookupNumber(BasicBlock* BB, uint32_t num) {
Owen Andersonb70a5712008-06-23 17:49:45 +00001231 DenseMap<BasicBlock*, ValueNumberScope*>::iterator I = localAvail.find(BB);
1232 if (I == localAvail.end())
1233 return 0;
1234
1235 ValueNumberScope* locals = I->second;
Owen Anderson6fafe842008-06-20 01:15:47 +00001236
1237 while (locals) {
1238 DenseMap<uint32_t, Value*>::iterator I = locals->table.find(num);
1239 if (I != locals->table.end())
1240 return I->second;
1241 else
1242 locals = locals->parent;
1243 }
1244
1245 return 0;
1246}
1247
Owen Anderson255dafc2008-12-15 02:03:00 +00001248/// AttemptRedundancyElimination - If the "fast path" of redundancy elimination
1249/// by inheritance from the dominator fails, see if we can perform phi
1250/// construction to eliminate the redundancy.
1251Value* GVN::AttemptRedundancyElimination(Instruction* orig, unsigned valno) {
1252 BasicBlock* BaseBlock = orig->getParent();
1253
1254 SmallPtrSet<BasicBlock*, 4> Visited;
1255 SmallVector<BasicBlock*, 8> Stack;
1256 Stack.push_back(BaseBlock);
1257
1258 DenseMap<BasicBlock*, Value*> Results;
1259
1260 // Walk backwards through our predecessors, looking for instances of the
1261 // value number we're looking for. Instances are recorded in the Results
1262 // map, which is then used to perform phi construction.
1263 while (!Stack.empty()) {
1264 BasicBlock* Current = Stack.back();
1265 Stack.pop_back();
1266
1267 // If we've walked all the way to a proper dominator, then give up. Cases
1268 // where the instance is in the dominator will have been caught by the fast
1269 // path, and any cases that require phi construction further than this are
1270 // probably not worth it anyways. Note that this is a SIGNIFICANT compile
1271 // time improvement.
1272 if (DT->properlyDominates(Current, orig->getParent())) return 0;
1273
1274 DenseMap<BasicBlock*, ValueNumberScope*>::iterator LA =
1275 localAvail.find(Current);
1276 if (LA == localAvail.end()) return 0;
1277 DenseMap<unsigned, Value*>::iterator V = LA->second->table.find(valno);
1278
1279 if (V != LA->second->table.end()) {
1280 // Found an instance, record it.
1281 Results.insert(std::make_pair(Current, V->second));
1282 continue;
1283 }
1284
1285 // If we reach the beginning of the function, then give up.
1286 if (pred_begin(Current) == pred_end(Current))
1287 return 0;
1288
1289 for (pred_iterator PI = pred_begin(Current), PE = pred_end(Current);
1290 PI != PE; ++PI)
1291 if (Visited.insert(*PI))
1292 Stack.push_back(*PI);
1293 }
1294
1295 // If we didn't find instances, give up. Otherwise, perform phi construction.
1296 if (Results.size() == 0)
1297 return 0;
1298 else
1299 return GetValueForBlock(BaseBlock, orig, Results, true);
1300}
1301
Owen Anderson36057c72007-08-14 18:16:29 +00001302/// processInstruction - When calculating availability, handle an instruction
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001303/// by inserting it into the appropriate sets
Owen Andersonaf4240a2008-06-12 19:25:32 +00001304bool GVN::processInstruction(Instruction *I,
Chris Lattner8e1e95c2008-03-21 22:01:16 +00001305 SmallVectorImpl<Instruction*> &toErase) {
Owen Andersonb2303722008-06-18 21:41:49 +00001306 if (LoadInst* L = dyn_cast<LoadInst>(I)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +00001307 bool changed = processLoad(L, toErase);
Owen Andersonb2303722008-06-18 21:41:49 +00001308
1309 if (!changed) {
1310 unsigned num = VN.lookup_or_add(L);
Owen Anderson6fafe842008-06-20 01:15:47 +00001311 localAvail[I->getParent()]->table.insert(std::make_pair(num, L));
Owen Andersonb2303722008-06-18 21:41:49 +00001312 }
1313
1314 return changed;
1315 }
1316
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001317 uint32_t nextNum = VN.getNextUnusedValueNumber();
Owen Andersonb2303722008-06-18 21:41:49 +00001318 unsigned num = VN.lookup_or_add(I);
Chris Lattner8e1e95c2008-03-21 22:01:16 +00001319
Owen Andersone5ffa902008-04-07 09:59:07 +00001320 // Allocations are always uniquely numbered, so we can save time and memory
1321 // by fast failing them.
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001322 if (isa<AllocationInst>(I) || isa<TerminatorInst>(I)) {
Owen Anderson6fafe842008-06-20 01:15:47 +00001323 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Andersone5ffa902008-04-07 09:59:07 +00001324 return false;
Owen Andersonb2303722008-06-18 21:41:49 +00001325 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001326
Owen Anderson62bc33c2007-08-16 22:02:55 +00001327 // Collapse PHI nodes
Owen Anderson31f49672007-08-14 18:33:27 +00001328 if (PHINode* p = dyn_cast<PHINode>(I)) {
Owen Anderson1defe2d2007-08-16 22:51:56 +00001329 Value* constVal = CollapsePhi(p);
Owen Anderson31f49672007-08-14 18:33:27 +00001330
1331 if (constVal) {
Owen Anderson1defe2d2007-08-16 22:51:56 +00001332 for (PhiMapType::iterator PI = phiMap.begin(), PE = phiMap.end();
1333 PI != PE; ++PI)
Chris Lattnerae199312008-12-09 19:21:47 +00001334 PI->second.erase(p);
Owen Anderson31f49672007-08-14 18:33:27 +00001335
Owen Anderson1defe2d2007-08-16 22:51:56 +00001336 p->replaceAllUsesWith(constVal);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001337 if (isa<PointerType>(constVal->getType()))
1338 MD->invalidateCachedPointerInfo(constVal);
Owen Anderson1defe2d2007-08-16 22:51:56 +00001339 toErase.push_back(p);
Owen Andersonb2303722008-06-18 21:41:49 +00001340 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001341 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Anderson31f49672007-08-14 18:33:27 +00001342 }
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001343
1344 // If the number we were assigned was a brand new VN, then we don't
1345 // need to do a lookup to see if the number already exists
1346 // somewhere in the domtree: it can't!
1347 } else if (num == nextNum) {
1348 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1349
Owen Anderson255dafc2008-12-15 02:03:00 +00001350 // Perform fast-path value-number based elimination of values inherited from
1351 // dominators.
Owen Anderson6fafe842008-06-20 01:15:47 +00001352 } else if (Value* repl = lookupNumber(I->getParent(), num)) {
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001353 // Remove it!
Owen Andersonbf7d0bc2007-07-31 23:27:13 +00001354 VN.erase(I);
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001355 I->replaceAllUsesWith(repl);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001356 if (isa<PointerType>(repl->getType()))
1357 MD->invalidateCachedPointerInfo(repl);
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001358 toErase.push_back(I);
1359 return true;
Owen Anderson255dafc2008-12-15 02:03:00 +00001360
1361#if 0
1362 // Perform slow-pathvalue-number based elimination with phi construction.
1363 } else if (Value* repl = AttemptRedundancyElimination(I, num)) {
1364 // Remove it!
1365 VN.erase(I);
1366 I->replaceAllUsesWith(repl);
1367 if (isa<PointerType>(repl->getType()))
1368 MD->invalidateCachedPointerInfo(repl);
1369 toErase.push_back(I);
1370 return true;
1371#endif
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001372 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001373 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001374 }
1375
1376 return false;
1377}
1378
1379// GVN::runOnFunction - This is the main transformation entry point for a
1380// function.
1381//
Owen Anderson3e75a422007-08-14 18:04:11 +00001382bool GVN::runOnFunction(Function& F) {
Chris Lattner663e4412008-12-01 00:40:32 +00001383 MD = &getAnalysis<MemoryDependenceAnalysis>();
1384 DT = &getAnalysis<DominatorTree>();
Owen Andersona472c4a2008-05-12 20:15:55 +00001385 VN.setAliasAnalysis(&getAnalysis<AliasAnalysis>());
Chris Lattner663e4412008-12-01 00:40:32 +00001386 VN.setMemDep(MD);
1387 VN.setDomTree(DT);
Owen Andersonb388ca92007-10-18 19:39:33 +00001388
Owen Anderson3e75a422007-08-14 18:04:11 +00001389 bool changed = false;
1390 bool shouldContinue = true;
1391
Owen Anderson5d0af032008-07-16 17:52:31 +00001392 // Merge unconditional branches, allowing PRE to catch more
1393 // optimization opportunities.
1394 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ) {
1395 BasicBlock* BB = FI;
1396 ++FI;
Owen Andersonb31b06d2008-07-17 00:01:40 +00001397 bool removedBlock = MergeBlockIntoPredecessor(BB, this);
1398 if (removedBlock) NumGVNBlocks++;
1399
1400 changed |= removedBlock;
Owen Anderson5d0af032008-07-16 17:52:31 +00001401 }
1402
Chris Lattnerae199312008-12-09 19:21:47 +00001403 unsigned Iteration = 0;
1404
Owen Anderson3e75a422007-08-14 18:04:11 +00001405 while (shouldContinue) {
Chris Lattnerae199312008-12-09 19:21:47 +00001406 DEBUG(cerr << "GVN iteration: " << Iteration << "\n");
Owen Anderson3e75a422007-08-14 18:04:11 +00001407 shouldContinue = iterateOnFunction(F);
1408 changed |= shouldContinue;
Chris Lattnerae199312008-12-09 19:21:47 +00001409 ++Iteration;
Owen Anderson3e75a422007-08-14 18:04:11 +00001410 }
1411
Owen Andersone98c54c2008-07-18 18:03:38 +00001412 if (EnablePRE) {
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001413 bool PREChanged = true;
1414 while (PREChanged) {
1415 PREChanged = performPRE(F);
Owen Andersone98c54c2008-07-18 18:03:38 +00001416 changed |= PREChanged;
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001417 }
Owen Andersone98c54c2008-07-18 18:03:38 +00001418 }
Chris Lattnerae199312008-12-09 19:21:47 +00001419 // FIXME: Should perform GVN again after PRE does something. PRE can move
1420 // computations into blocks where they become fully redundant. Note that
1421 // we can't do this until PRE's critical edge splitting updates memdep.
1422 // Actually, when this happens, we should just fully integrate PRE into GVN.
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001423
1424 cleanupGlobalSets();
1425
Owen Anderson3e75a422007-08-14 18:04:11 +00001426 return changed;
1427}
1428
1429
Owen Anderson255dafc2008-12-15 02:03:00 +00001430bool GVN::processBlock(BasicBlock* BB) {
1431 DomTreeNode* DTN = DT->getNode(BB);
Chris Lattnerae199312008-12-09 19:21:47 +00001432 // FIXME: Kill off toErase by doing erasing eagerly in a helper function (and
1433 // incrementing BI before processing an instruction).
Owen Andersonaf4240a2008-06-12 19:25:32 +00001434 SmallVector<Instruction*, 8> toErase;
Owen Andersonaf4240a2008-06-12 19:25:32 +00001435 bool changed_function = false;
Owen Andersonb2303722008-06-18 21:41:49 +00001436
1437 if (DTN->getIDom())
Owen Anderson6fafe842008-06-20 01:15:47 +00001438 localAvail[BB] =
1439 new ValueNumberScope(localAvail[DTN->getIDom()->getBlock()]);
1440 else
1441 localAvail[BB] = new ValueNumberScope(0);
Owen Andersonb2303722008-06-18 21:41:49 +00001442
Owen Andersonaf4240a2008-06-12 19:25:32 +00001443 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();
1444 BI != BE;) {
Chris Lattnerb51deb92008-12-05 21:04:20 +00001445 changed_function |= processInstruction(BI, toErase);
Owen Andersonaf4240a2008-06-12 19:25:32 +00001446 if (toErase.empty()) {
1447 ++BI;
1448 continue;
1449 }
1450
1451 // If we need some instructions deleted, do it now.
1452 NumGVNInstr += toErase.size();
1453
1454 // Avoid iterator invalidation.
1455 bool AtStart = BI == BB->begin();
1456 if (!AtStart)
1457 --BI;
1458
1459 for (SmallVector<Instruction*, 4>::iterator I = toErase.begin(),
Chris Lattner663e4412008-12-01 00:40:32 +00001460 E = toErase.end(); I != E; ++I) {
1461 DEBUG(cerr << "GVN removed: " << **I);
1462 MD->removeInstruction(*I);
Owen Andersonaf4240a2008-06-12 19:25:32 +00001463 (*I)->eraseFromParent();
Bill Wendlingec40d502008-12-22 21:57:30 +00001464 DEBUG(verifyRemoved(*I));
Chris Lattner663e4412008-12-01 00:40:32 +00001465 }
Chris Lattnerae199312008-12-09 19:21:47 +00001466 toErase.clear();
Owen Andersonaf4240a2008-06-12 19:25:32 +00001467
1468 if (AtStart)
1469 BI = BB->begin();
1470 else
1471 ++BI;
Owen Andersonaf4240a2008-06-12 19:25:32 +00001472 }
1473
Owen Andersonaf4240a2008-06-12 19:25:32 +00001474 return changed_function;
1475}
1476
Owen Andersonb2303722008-06-18 21:41:49 +00001477/// performPRE - Perform a purely local form of PRE that looks for diamond
1478/// control flow patterns and attempts to perform simple PRE at the join point.
1479bool GVN::performPRE(Function& F) {
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001480 bool Changed = false;
Owen Anderson5c274ee2008-06-19 19:54:19 +00001481 SmallVector<std::pair<TerminatorInst*, unsigned>, 4> toSplit;
Chris Lattner09713792008-12-01 07:29:03 +00001482 DenseMap<BasicBlock*, Value*> predMap;
Owen Andersonb2303722008-06-18 21:41:49 +00001483 for (df_iterator<BasicBlock*> DI = df_begin(&F.getEntryBlock()),
1484 DE = df_end(&F.getEntryBlock()); DI != DE; ++DI) {
1485 BasicBlock* CurrentBlock = *DI;
1486
1487 // Nothing to PRE in the entry block.
1488 if (CurrentBlock == &F.getEntryBlock()) continue;
1489
1490 for (BasicBlock::iterator BI = CurrentBlock->begin(),
1491 BE = CurrentBlock->end(); BI != BE; ) {
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001492 Instruction *CurInst = BI++;
Owen Andersonb2303722008-06-18 21:41:49 +00001493
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001494 if (isa<AllocationInst>(CurInst) || isa<TerminatorInst>(CurInst) ||
1495 isa<PHINode>(CurInst) || CurInst->mayReadFromMemory() ||
1496 CurInst->mayWriteToMemory())
1497 continue;
1498
1499 uint32_t valno = VN.lookup(CurInst);
Owen Andersonb2303722008-06-18 21:41:49 +00001500
1501 // Look for the predecessors for PRE opportunities. We're
1502 // only trying to solve the basic diamond case, where
1503 // a value is computed in the successor and one predecessor,
1504 // but not the other. We also explicitly disallow cases
1505 // where the successor is its own predecessor, because they're
1506 // more complicated to get right.
1507 unsigned numWith = 0;
1508 unsigned numWithout = 0;
1509 BasicBlock* PREPred = 0;
Chris Lattner09713792008-12-01 07:29:03 +00001510 predMap.clear();
1511
Owen Andersonb2303722008-06-18 21:41:49 +00001512 for (pred_iterator PI = pred_begin(CurrentBlock),
1513 PE = pred_end(CurrentBlock); PI != PE; ++PI) {
1514 // We're not interested in PRE where the block is its
Owen Anderson6fafe842008-06-20 01:15:47 +00001515 // own predecessor, on in blocks with predecessors
1516 // that are not reachable.
1517 if (*PI == CurrentBlock) {
Owen Andersonb2303722008-06-18 21:41:49 +00001518 numWithout = 2;
Owen Anderson6fafe842008-06-20 01:15:47 +00001519 break;
1520 } else if (!localAvail.count(*PI)) {
1521 numWithout = 2;
1522 break;
1523 }
1524
1525 DenseMap<uint32_t, Value*>::iterator predV =
1526 localAvail[*PI]->table.find(valno);
1527 if (predV == localAvail[*PI]->table.end()) {
Owen Andersonb2303722008-06-18 21:41:49 +00001528 PREPred = *PI;
1529 numWithout++;
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001530 } else if (predV->second == CurInst) {
Owen Andersonb2303722008-06-18 21:41:49 +00001531 numWithout = 2;
1532 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001533 predMap[*PI] = predV->second;
Owen Andersonb2303722008-06-18 21:41:49 +00001534 numWith++;
1535 }
1536 }
1537
1538 // Don't do PRE when it might increase code size, i.e. when
1539 // we would need to insert instructions in more than one pred.
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001540 if (numWithout != 1 || numWith == 0)
Owen Andersonb2303722008-06-18 21:41:49 +00001541 continue;
Owen Andersonb2303722008-06-18 21:41:49 +00001542
Owen Anderson5c274ee2008-06-19 19:54:19 +00001543 // We can't do PRE safely on a critical edge, so instead we schedule
1544 // the edge to be split and perform the PRE the next time we iterate
1545 // on the function.
1546 unsigned succNum = 0;
1547 for (unsigned i = 0, e = PREPred->getTerminator()->getNumSuccessors();
1548 i != e; ++i)
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001549 if (PREPred->getTerminator()->getSuccessor(i) == CurrentBlock) {
Owen Anderson5c274ee2008-06-19 19:54:19 +00001550 succNum = i;
1551 break;
1552 }
1553
1554 if (isCriticalEdge(PREPred->getTerminator(), succNum)) {
1555 toSplit.push_back(std::make_pair(PREPred->getTerminator(), succNum));
Owen Anderson5c274ee2008-06-19 19:54:19 +00001556 continue;
1557 }
1558
Owen Andersonb2303722008-06-18 21:41:49 +00001559 // Instantiate the expression the in predecessor that lacked it.
1560 // Because we are going top-down through the block, all value numbers
1561 // will be available in the predecessor by the time we need them. Any
1562 // that weren't original present will have been instantiated earlier
1563 // in this loop.
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001564 Instruction* PREInstr = CurInst->clone();
Owen Andersonb2303722008-06-18 21:41:49 +00001565 bool success = true;
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001566 for (unsigned i = 0, e = CurInst->getNumOperands(); i != e; ++i) {
1567 Value *Op = PREInstr->getOperand(i);
1568 if (isa<Argument>(Op) || isa<Constant>(Op) || isa<GlobalValue>(Op))
1569 continue;
1570
1571 if (Value *V = lookupNumber(PREPred, VN.lookup(Op))) {
1572 PREInstr->setOperand(i, V);
1573 } else {
1574 success = false;
1575 break;
Owen Andersonc45996b2008-07-11 20:05:13 +00001576 }
Owen Andersonb2303722008-06-18 21:41:49 +00001577 }
1578
1579 // Fail out if we encounter an operand that is not available in
1580 // the PRE predecessor. This is typically because of loads which
1581 // are not value numbered precisely.
1582 if (!success) {
1583 delete PREInstr;
Bill Wendling70ded192008-12-22 22:14:07 +00001584 DEBUG(verifyRemoved(PREInstr));
Owen Andersonb2303722008-06-18 21:41:49 +00001585 continue;
1586 }
1587
1588 PREInstr->insertBefore(PREPred->getTerminator());
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001589 PREInstr->setName(CurInst->getName() + ".pre");
Owen Anderson6fafe842008-06-20 01:15:47 +00001590 predMap[PREPred] = PREInstr;
Owen Andersonb2303722008-06-18 21:41:49 +00001591 VN.add(PREInstr, valno);
1592 NumGVNPRE++;
1593
1594 // Update the availability map to include the new instruction.
Owen Anderson6fafe842008-06-20 01:15:47 +00001595 localAvail[PREPred]->table.insert(std::make_pair(valno, PREInstr));
Owen Andersonb2303722008-06-18 21:41:49 +00001596
1597 // Create a PHI to make the value available in this block.
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001598 PHINode* Phi = PHINode::Create(CurInst->getType(),
1599 CurInst->getName() + ".pre-phi",
Owen Andersonb2303722008-06-18 21:41:49 +00001600 CurrentBlock->begin());
1601 for (pred_iterator PI = pred_begin(CurrentBlock),
1602 PE = pred_end(CurrentBlock); PI != PE; ++PI)
Owen Anderson6fafe842008-06-20 01:15:47 +00001603 Phi->addIncoming(predMap[*PI], *PI);
Owen Andersonb2303722008-06-18 21:41:49 +00001604
1605 VN.add(Phi, valno);
Owen Anderson6fafe842008-06-20 01:15:47 +00001606 localAvail[CurrentBlock]->table[valno] = Phi;
Owen Andersonb2303722008-06-18 21:41:49 +00001607
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001608 CurInst->replaceAllUsesWith(Phi);
Chris Lattnerbc99be12008-12-09 22:06:23 +00001609 if (isa<PointerType>(Phi->getType()))
1610 MD->invalidateCachedPointerInfo(Phi);
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001611 VN.erase(CurInst);
Owen Andersonb2303722008-06-18 21:41:49 +00001612
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001613 DEBUG(cerr << "GVN PRE removed: " << *CurInst);
1614 MD->removeInstruction(CurInst);
1615 CurInst->eraseFromParent();
Bill Wendlingec40d502008-12-22 21:57:30 +00001616 DEBUG(verifyRemoved(CurInst));
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001617 Changed = true;
Owen Andersonb2303722008-06-18 21:41:49 +00001618 }
1619 }
1620
Owen Anderson5c274ee2008-06-19 19:54:19 +00001621 for (SmallVector<std::pair<TerminatorInst*, unsigned>, 4>::iterator
Anton Korobeynikov64b53562008-12-05 19:38:49 +00001622 I = toSplit.begin(), E = toSplit.end(); I != E; ++I)
Owen Anderson5c274ee2008-06-19 19:54:19 +00001623 SplitCriticalEdge(I->first, I->second, this);
1624
Anton Korobeynikov64b53562008-12-05 19:38:49 +00001625 return Changed || toSplit.size();
Owen Andersonb2303722008-06-18 21:41:49 +00001626}
1627
Owen Anderson961edc82008-07-15 16:28:06 +00001628// iterateOnFunction - Executes one iteration of GVN
Owen Anderson3e75a422007-08-14 18:04:11 +00001629bool GVN::iterateOnFunction(Function &F) {
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001630 cleanupGlobalSets();
Chris Lattner2e607012008-03-21 21:33:23 +00001631
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001632 // Top-down walk of the dominator tree
Owen Andersonb2303722008-06-18 21:41:49 +00001633 bool changed = false;
Owen Andersonc34d1122008-12-15 03:52:17 +00001634#if 0
1635 // Needed for value numbering with phi construction to work.
Owen Anderson255dafc2008-12-15 02:03:00 +00001636 ReversePostOrderTraversal<Function*> RPOT(&F);
1637 for (ReversePostOrderTraversal<Function*>::rpo_iterator RI = RPOT.begin(),
1638 RE = RPOT.end(); RI != RE; ++RI)
1639 changed |= processBlock(*RI);
Owen Andersonc34d1122008-12-15 03:52:17 +00001640#else
1641 for (df_iterator<DomTreeNode*> DI = df_begin(DT->getRootNode()),
1642 DE = df_end(DT->getRootNode()); DI != DE; ++DI)
1643 changed |= processBlock(DI->getBlock());
1644#endif
1645
Owen Anderson5d0af032008-07-16 17:52:31 +00001646 return changed;
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001647}
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001648
1649void GVN::cleanupGlobalSets() {
1650 VN.clear();
1651 phiMap.clear();
1652
1653 for (DenseMap<BasicBlock*, ValueNumberScope*>::iterator
1654 I = localAvail.begin(), E = localAvail.end(); I != E; ++I)
1655 delete I->second;
1656 localAvail.clear();
1657}
Bill Wendling246dbbb2008-12-22 21:36:08 +00001658
1659/// verifyRemoved - Verify that the specified instruction does not occur in our
1660/// internal data structures.
1661void GVN::verifyRemoved(const Instruction *I) const {
1662 VN.verifyRemoved(I);
Bill Wendling70ded192008-12-22 22:14:07 +00001663
1664 // Walk through the PHI map to make sure the instruction isn't hiding in there
1665 // somewhere.
1666 for (PhiMapType::iterator
1667 II = phiMap.begin(), IE = phiMap.end(); II != IE; ++II) {
1668 assert(II->first != I && "Inst is still a key in PHI map!");
1669
1670 for (SmallPtrSet<Instruction*, 4>::iterator
1671 SI = II->second.begin(), SE = II->second.end(); SI != SE; ++SI) {
1672 assert(*SI != I && "Inst is still a value in PHI map!");
1673 }
1674 }
Bill Wendling246dbbb2008-12-22 21:36:08 +00001675}