blob: a6cc9931efae65ad5143280cba5875581d57ad4a [file] [log] [blame]
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001//===- GVN.cpp - Eliminate redundant values and loads ------------===//
2//
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"
28#include "llvm/ADT/SmallPtrSet.h"
29#include "llvm/ADT/SmallVector.h"
30#include "llvm/ADT/Statistic.h"
Owen Andersonb388ca92007-10-18 19:39:33 +000031#include "llvm/Analysis/Dominators.h"
32#include "llvm/Analysis/AliasAnalysis.h"
Owen Anderson1ad2cb72007-07-24 17:55:58 +000033#include "llvm/Analysis/MemoryDependenceAnalysis.h"
34#include "llvm/Support/CFG.h"
Owen Andersonaa0b6342008-06-19 19:57:25 +000035#include "llvm/Support/CommandLine.h"
Owen Anderson1ad2cb72007-07-24 17:55:58 +000036#include "llvm/Support/Compiler.h"
Chris Lattner9f8a6a72008-03-29 04:36:18 +000037#include "llvm/Support/Debug.h"
Owen Anderson5c274ee2008-06-19 19:54:19 +000038#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Duncan Sands4520dd22008-10-08 07:23:46 +000039#include <cstdio>
Owen Anderson1ad2cb72007-07-24 17:55:58 +000040using namespace llvm;
41
Chris Lattnerd27290d2008-03-22 04:13:49 +000042STATISTIC(NumGVNInstr, "Number of instructions deleted");
43STATISTIC(NumGVNLoad, "Number of loads deleted");
Owen Andersonb2303722008-06-18 21:41:49 +000044STATISTIC(NumGVNPRE, "Number of instructions PRE'd");
Owen Anderson961edc82008-07-15 16:28:06 +000045STATISTIC(NumGVNBlocks, "Number of blocks merged");
Chris Lattnerd27290d2008-03-22 04:13:49 +000046
Evan Cheng88d11c02008-06-20 01:01:07 +000047static cl::opt<bool> EnablePRE("enable-pre",
Owen Andersonc2b856e2008-07-17 19:41:00 +000048 cl::init(true), cl::Hidden);
Owen Andersonaa0b6342008-06-19 19:57:25 +000049
Owen Anderson1ad2cb72007-07-24 17:55:58 +000050//===----------------------------------------------------------------------===//
51// ValueTable Class
52//===----------------------------------------------------------------------===//
53
54/// This class holds the mapping between values and value numbers. It is used
55/// as an efficient mechanism to determine the expression-wise equivalence of
56/// two values.
57namespace {
58 struct VISIBILITY_HIDDEN Expression {
59 enum ExpressionOpcode { ADD, SUB, MUL, UDIV, SDIV, FDIV, UREM, SREM,
60 FREM, SHL, LSHR, ASHR, AND, OR, XOR, ICMPEQ,
61 ICMPNE, ICMPUGT, ICMPUGE, ICMPULT, ICMPULE,
62 ICMPSGT, ICMPSGE, ICMPSLT, ICMPSLE, FCMPOEQ,
63 FCMPOGT, FCMPOGE, FCMPOLT, FCMPOLE, FCMPONE,
64 FCMPORD, FCMPUNO, FCMPUEQ, FCMPUGT, FCMPUGE,
65 FCMPULT, FCMPULE, FCMPUNE, EXTRACT, INSERT,
66 SHUFFLE, SELECT, TRUNC, ZEXT, SEXT, FPTOUI,
67 FPTOSI, UITOFP, SITOFP, FPTRUNC, FPEXT,
Owen Anderson3b3f58c2008-05-13 08:17:22 +000068 PTRTOINT, INTTOPTR, BITCAST, GEP, CALL, CONSTANT,
Owen Anderson3cd8eb32008-06-19 17:25:39 +000069 EMPTY, TOMBSTONE };
Owen Anderson1ad2cb72007-07-24 17:55:58 +000070
71 ExpressionOpcode opcode;
72 const Type* type;
73 uint32_t firstVN;
74 uint32_t secondVN;
75 uint32_t thirdVN;
76 SmallVector<uint32_t, 4> varargs;
Owen Andersonb388ca92007-10-18 19:39:33 +000077 Value* function;
Owen Anderson1ad2cb72007-07-24 17:55:58 +000078
79 Expression() { }
80 Expression(ExpressionOpcode o) : opcode(o) { }
81
82 bool operator==(const Expression &other) const {
83 if (opcode != other.opcode)
84 return false;
85 else if (opcode == EMPTY || opcode == TOMBSTONE)
86 return true;
87 else if (type != other.type)
88 return false;
Owen Andersonb388ca92007-10-18 19:39:33 +000089 else if (function != other.function)
90 return false;
Owen Anderson1ad2cb72007-07-24 17:55:58 +000091 else if (firstVN != other.firstVN)
92 return false;
93 else if (secondVN != other.secondVN)
94 return false;
95 else if (thirdVN != other.thirdVN)
96 return false;
97 else {
98 if (varargs.size() != other.varargs.size())
99 return false;
100
101 for (size_t i = 0; i < varargs.size(); ++i)
102 if (varargs[i] != other.varargs[i])
103 return false;
104
105 return true;
106 }
107 }
108
109 bool operator!=(const Expression &other) const {
110 if (opcode != other.opcode)
111 return true;
112 else if (opcode == EMPTY || opcode == TOMBSTONE)
113 return false;
114 else if (type != other.type)
115 return true;
Owen Andersonb388ca92007-10-18 19:39:33 +0000116 else if (function != other.function)
117 return true;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000118 else if (firstVN != other.firstVN)
119 return true;
120 else if (secondVN != other.secondVN)
121 return true;
122 else if (thirdVN != other.thirdVN)
123 return true;
124 else {
125 if (varargs.size() != other.varargs.size())
126 return true;
127
128 for (size_t i = 0; i < varargs.size(); ++i)
129 if (varargs[i] != other.varargs[i])
130 return true;
131
132 return false;
133 }
134 }
135 };
136
137 class VISIBILITY_HIDDEN ValueTable {
138 private:
139 DenseMap<Value*, uint32_t> valueNumbering;
140 DenseMap<Expression, uint32_t> expressionNumbering;
Owen Andersona472c4a2008-05-12 20:15:55 +0000141 AliasAnalysis* AA;
142 MemoryDependenceAnalysis* MD;
143 DominatorTree* DT;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000144
145 uint32_t nextValueNumber;
146
147 Expression::ExpressionOpcode getOpcode(BinaryOperator* BO);
148 Expression::ExpressionOpcode getOpcode(CmpInst* C);
149 Expression::ExpressionOpcode getOpcode(CastInst* C);
150 Expression create_expression(BinaryOperator* BO);
151 Expression create_expression(CmpInst* C);
152 Expression create_expression(ShuffleVectorInst* V);
153 Expression create_expression(ExtractElementInst* C);
154 Expression create_expression(InsertElementInst* V);
155 Expression create_expression(SelectInst* V);
156 Expression create_expression(CastInst* C);
157 Expression create_expression(GetElementPtrInst* G);
Owen Andersonb388ca92007-10-18 19:39:33 +0000158 Expression create_expression(CallInst* C);
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000159 Expression create_expression(Constant* C);
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000160 public:
Owen Andersonb388ca92007-10-18 19:39:33 +0000161 ValueTable() : nextValueNumber(1) { }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000162 uint32_t lookup_or_add(Value* V);
163 uint32_t lookup(Value* V) const;
164 void add(Value* V, uint32_t num);
165 void clear();
166 void erase(Value* v);
167 unsigned size();
Owen Andersona472c4a2008-05-12 20:15:55 +0000168 void setAliasAnalysis(AliasAnalysis* A) { AA = A; }
169 void setMemDep(MemoryDependenceAnalysis* M) { MD = M; }
170 void setDomTree(DominatorTree* D) { DT = D; }
Owen Anderson0ae33ef2008-07-03 17:44:33 +0000171 uint32_t getNextUnusedValueNumber() { return nextValueNumber; }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000172 };
173}
174
175namespace llvm {
Chris Lattner76c1b972007-09-17 18:34:04 +0000176template <> struct DenseMapInfo<Expression> {
Owen Anderson830db6a2007-08-02 18:16:06 +0000177 static inline Expression getEmptyKey() {
178 return Expression(Expression::EMPTY);
179 }
180
181 static inline Expression getTombstoneKey() {
182 return Expression(Expression::TOMBSTONE);
183 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000184
185 static unsigned getHashValue(const Expression e) {
186 unsigned hash = e.opcode;
187
188 hash = e.firstVN + hash * 37;
189 hash = e.secondVN + hash * 37;
190 hash = e.thirdVN + hash * 37;
191
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000192 hash = ((unsigned)((uintptr_t)e.type >> 4) ^
193 (unsigned)((uintptr_t)e.type >> 9)) +
194 hash * 37;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000195
Owen Anderson830db6a2007-08-02 18:16:06 +0000196 for (SmallVector<uint32_t, 4>::const_iterator I = e.varargs.begin(),
197 E = e.varargs.end(); I != E; ++I)
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000198 hash = *I + hash * 37;
199
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000200 hash = ((unsigned)((uintptr_t)e.function >> 4) ^
201 (unsigned)((uintptr_t)e.function >> 9)) +
202 hash * 37;
Owen Andersonb388ca92007-10-18 19:39:33 +0000203
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000204 return hash;
205 }
Chris Lattner76c1b972007-09-17 18:34:04 +0000206 static bool isEqual(const Expression &LHS, const Expression &RHS) {
207 return LHS == RHS;
208 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000209 static bool isPod() { return true; }
210};
211}
212
213//===----------------------------------------------------------------------===//
214// ValueTable Internal Functions
215//===----------------------------------------------------------------------===//
Chris Lattner88365bb2008-03-21 21:14:38 +0000216Expression::ExpressionOpcode ValueTable::getOpcode(BinaryOperator* BO) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000217 switch(BO->getOpcode()) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000218 default: // THIS SHOULD NEVER HAPPEN
219 assert(0 && "Binary operator with unknown opcode?");
220 case Instruction::Add: return Expression::ADD;
221 case Instruction::Sub: return Expression::SUB;
222 case Instruction::Mul: return Expression::MUL;
223 case Instruction::UDiv: return Expression::UDIV;
224 case Instruction::SDiv: return Expression::SDIV;
225 case Instruction::FDiv: return Expression::FDIV;
226 case Instruction::URem: return Expression::UREM;
227 case Instruction::SRem: return Expression::SREM;
228 case Instruction::FRem: return Expression::FREM;
229 case Instruction::Shl: return Expression::SHL;
230 case Instruction::LShr: return Expression::LSHR;
231 case Instruction::AShr: return Expression::ASHR;
232 case Instruction::And: return Expression::AND;
233 case Instruction::Or: return Expression::OR;
234 case Instruction::Xor: return Expression::XOR;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000235 }
236}
237
238Expression::ExpressionOpcode ValueTable::getOpcode(CmpInst* C) {
Nate Begeman1d6e4092008-05-18 19:49:05 +0000239 if (isa<ICmpInst>(C) || isa<VICmpInst>(C)) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000240 switch (C->getPredicate()) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000241 default: // THIS SHOULD NEVER HAPPEN
242 assert(0 && "Comparison with unknown predicate?");
243 case ICmpInst::ICMP_EQ: return Expression::ICMPEQ;
244 case ICmpInst::ICMP_NE: return Expression::ICMPNE;
245 case ICmpInst::ICMP_UGT: return Expression::ICMPUGT;
246 case ICmpInst::ICMP_UGE: return Expression::ICMPUGE;
247 case ICmpInst::ICMP_ULT: return Expression::ICMPULT;
248 case ICmpInst::ICMP_ULE: return Expression::ICMPULE;
249 case ICmpInst::ICMP_SGT: return Expression::ICMPSGT;
250 case ICmpInst::ICMP_SGE: return Expression::ICMPSGE;
251 case ICmpInst::ICMP_SLT: return Expression::ICMPSLT;
252 case ICmpInst::ICMP_SLE: return Expression::ICMPSLE;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000253 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000254 }
Nate Begeman1d6e4092008-05-18 19:49:05 +0000255 assert((isa<FCmpInst>(C) || isa<VFCmpInst>(C)) && "Unknown compare");
Chris Lattner88365bb2008-03-21 21:14:38 +0000256 switch (C->getPredicate()) {
257 default: // THIS SHOULD NEVER HAPPEN
258 assert(0 && "Comparison with unknown predicate?");
259 case FCmpInst::FCMP_OEQ: return Expression::FCMPOEQ;
260 case FCmpInst::FCMP_OGT: return Expression::FCMPOGT;
261 case FCmpInst::FCMP_OGE: return Expression::FCMPOGE;
262 case FCmpInst::FCMP_OLT: return Expression::FCMPOLT;
263 case FCmpInst::FCMP_OLE: return Expression::FCMPOLE;
264 case FCmpInst::FCMP_ONE: return Expression::FCMPONE;
265 case FCmpInst::FCMP_ORD: return Expression::FCMPORD;
266 case FCmpInst::FCMP_UNO: return Expression::FCMPUNO;
267 case FCmpInst::FCMP_UEQ: return Expression::FCMPUEQ;
268 case FCmpInst::FCMP_UGT: return Expression::FCMPUGT;
269 case FCmpInst::FCMP_UGE: return Expression::FCMPUGE;
270 case FCmpInst::FCMP_ULT: return Expression::FCMPULT;
271 case FCmpInst::FCMP_ULE: return Expression::FCMPULE;
272 case FCmpInst::FCMP_UNE: return Expression::FCMPUNE;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000273 }
274}
275
Chris Lattner88365bb2008-03-21 21:14:38 +0000276Expression::ExpressionOpcode ValueTable::getOpcode(CastInst* C) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000277 switch(C->getOpcode()) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000278 default: // THIS SHOULD NEVER HAPPEN
279 assert(0 && "Cast operator with unknown opcode?");
280 case Instruction::Trunc: return Expression::TRUNC;
281 case Instruction::ZExt: return Expression::ZEXT;
282 case Instruction::SExt: return Expression::SEXT;
283 case Instruction::FPToUI: return Expression::FPTOUI;
284 case Instruction::FPToSI: return Expression::FPTOSI;
285 case Instruction::UIToFP: return Expression::UITOFP;
286 case Instruction::SIToFP: return Expression::SITOFP;
287 case Instruction::FPTrunc: return Expression::FPTRUNC;
288 case Instruction::FPExt: return Expression::FPEXT;
289 case Instruction::PtrToInt: return Expression::PTRTOINT;
290 case Instruction::IntToPtr: return Expression::INTTOPTR;
291 case Instruction::BitCast: return Expression::BITCAST;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000292 }
293}
294
Owen Andersonb388ca92007-10-18 19:39:33 +0000295Expression ValueTable::create_expression(CallInst* C) {
296 Expression e;
297
298 e.type = C->getType();
299 e.firstVN = 0;
300 e.secondVN = 0;
301 e.thirdVN = 0;
302 e.function = C->getCalledFunction();
303 e.opcode = Expression::CALL;
304
305 for (CallInst::op_iterator I = C->op_begin()+1, E = C->op_end();
306 I != E; ++I)
Owen Anderson8f46c782008-04-11 05:11:49 +0000307 e.varargs.push_back(lookup_or_add(*I));
Owen Andersonb388ca92007-10-18 19:39:33 +0000308
309 return e;
310}
311
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000312Expression ValueTable::create_expression(BinaryOperator* BO) {
313 Expression e;
314
Owen Anderson8f46c782008-04-11 05:11:49 +0000315 e.firstVN = lookup_or_add(BO->getOperand(0));
316 e.secondVN = lookup_or_add(BO->getOperand(1));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000317 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000318 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000319 e.type = BO->getType();
320 e.opcode = getOpcode(BO);
321
322 return e;
323}
324
325Expression ValueTable::create_expression(CmpInst* C) {
326 Expression e;
327
Owen Anderson8f46c782008-04-11 05:11:49 +0000328 e.firstVN = lookup_or_add(C->getOperand(0));
329 e.secondVN = lookup_or_add(C->getOperand(1));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000330 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000331 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000332 e.type = C->getType();
333 e.opcode = getOpcode(C);
334
335 return e;
336}
337
338Expression ValueTable::create_expression(CastInst* C) {
339 Expression e;
340
Owen Anderson8f46c782008-04-11 05:11:49 +0000341 e.firstVN = lookup_or_add(C->getOperand(0));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000342 e.secondVN = 0;
343 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000344 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000345 e.type = C->getType();
346 e.opcode = getOpcode(C);
347
348 return e;
349}
350
351Expression ValueTable::create_expression(ShuffleVectorInst* S) {
352 Expression e;
353
Owen Anderson8f46c782008-04-11 05:11:49 +0000354 e.firstVN = lookup_or_add(S->getOperand(0));
355 e.secondVN = lookup_or_add(S->getOperand(1));
356 e.thirdVN = lookup_or_add(S->getOperand(2));
Owen Andersonb388ca92007-10-18 19:39:33 +0000357 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000358 e.type = S->getType();
359 e.opcode = Expression::SHUFFLE;
360
361 return e;
362}
363
364Expression ValueTable::create_expression(ExtractElementInst* E) {
365 Expression e;
366
Owen Anderson8f46c782008-04-11 05:11:49 +0000367 e.firstVN = lookup_or_add(E->getOperand(0));
368 e.secondVN = lookup_or_add(E->getOperand(1));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000369 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000370 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000371 e.type = E->getType();
372 e.opcode = Expression::EXTRACT;
373
374 return e;
375}
376
377Expression ValueTable::create_expression(InsertElementInst* I) {
378 Expression e;
379
Owen Anderson8f46c782008-04-11 05:11:49 +0000380 e.firstVN = lookup_or_add(I->getOperand(0));
381 e.secondVN = lookup_or_add(I->getOperand(1));
382 e.thirdVN = lookup_or_add(I->getOperand(2));
Owen Andersonb388ca92007-10-18 19:39:33 +0000383 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000384 e.type = I->getType();
385 e.opcode = Expression::INSERT;
386
387 return e;
388}
389
390Expression ValueTable::create_expression(SelectInst* I) {
391 Expression e;
392
Owen Anderson8f46c782008-04-11 05:11:49 +0000393 e.firstVN = lookup_or_add(I->getCondition());
394 e.secondVN = lookup_or_add(I->getTrueValue());
395 e.thirdVN = lookup_or_add(I->getFalseValue());
Owen Andersonb388ca92007-10-18 19:39:33 +0000396 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000397 e.type = I->getType();
398 e.opcode = Expression::SELECT;
399
400 return e;
401}
402
403Expression ValueTable::create_expression(GetElementPtrInst* G) {
404 Expression e;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000405
Owen Anderson8f46c782008-04-11 05:11:49 +0000406 e.firstVN = lookup_or_add(G->getPointerOperand());
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000407 e.secondVN = 0;
408 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000409 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000410 e.type = G->getType();
411 e.opcode = Expression::GEP;
412
413 for (GetElementPtrInst::op_iterator I = G->idx_begin(), E = G->idx_end();
414 I != E; ++I)
Owen Anderson8f46c782008-04-11 05:11:49 +0000415 e.varargs.push_back(lookup_or_add(*I));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000416
417 return e;
418}
419
420//===----------------------------------------------------------------------===//
421// ValueTable External Functions
422//===----------------------------------------------------------------------===//
423
Owen Andersonb2303722008-06-18 21:41:49 +0000424/// add - Insert a value into the table with a specified value number.
425void ValueTable::add(Value* V, uint32_t num) {
426 valueNumbering.insert(std::make_pair(V, num));
427}
428
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000429/// lookup_or_add - Returns the value number for the specified value, assigning
430/// it a new number if it did not have one before.
431uint32_t ValueTable::lookup_or_add(Value* V) {
432 DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
433 if (VI != valueNumbering.end())
434 return VI->second;
435
Owen Andersonb388ca92007-10-18 19:39:33 +0000436 if (CallInst* C = dyn_cast<CallInst>(V)) {
Owen Anderson8f46c782008-04-11 05:11:49 +0000437 if (AA->doesNotAccessMemory(C)) {
Owen Andersonb388ca92007-10-18 19:39:33 +0000438 Expression e = create_expression(C);
439
440 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
441 if (EI != expressionNumbering.end()) {
442 valueNumbering.insert(std::make_pair(V, EI->second));
443 return EI->second;
444 } else {
445 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
446 valueNumbering.insert(std::make_pair(V, nextValueNumber));
447
448 return nextValueNumber++;
449 }
Owen Anderson241f6532008-04-17 05:36:50 +0000450 } else if (AA->onlyReadsMemory(C)) {
451 Expression e = create_expression(C);
452
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000453 if (expressionNumbering.find(e) == expressionNumbering.end()) {
Owen Anderson241f6532008-04-17 05:36:50 +0000454 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
455 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000456 return nextValueNumber++;
457 }
Owen Anderson241f6532008-04-17 05:36:50 +0000458
Chris Lattner4c724002008-11-29 02:29:27 +0000459 MemDepResult local_dep = MD->getDependency(C);
Owen Andersonc4f406e2008-05-13 23:18:30 +0000460
Chris Lattner4c724002008-11-29 02:29:27 +0000461 if (local_dep.isNone()) {
Owen Andersonc4f406e2008-05-13 23:18:30 +0000462 valueNumbering.insert(std::make_pair(V, nextValueNumber));
463 return nextValueNumber++;
Chris Lattner4c724002008-11-29 02:29:27 +0000464 } else if (Instruction *LocalDepInst = local_dep.getInst()) {
Chris Lattner39f372e2008-11-29 01:43:36 +0000465 // FIXME: INDENT PROPERLY!
Chris Lattner4c724002008-11-29 02:29:27 +0000466 if (!isa<CallInst>(LocalDepInst)) {
Owen Andersonc4f406e2008-05-13 23:18:30 +0000467 valueNumbering.insert(std::make_pair(V, nextValueNumber));
468 return nextValueNumber++;
469 }
470
Chris Lattner4c724002008-11-29 02:29:27 +0000471 CallInst* local_cdep = cast<CallInst>(LocalDepInst);
Owen Andersonc4f406e2008-05-13 23:18:30 +0000472
Chris Lattner39f372e2008-11-29 01:43:36 +0000473 // FIXME: INDENT PROPERLY.
Owen Andersonc4f406e2008-05-13 23:18:30 +0000474 if (local_cdep->getCalledFunction() != C->getCalledFunction() ||
475 local_cdep->getNumOperands() != C->getNumOperands()) {
476 valueNumbering.insert(std::make_pair(V, nextValueNumber));
477 return nextValueNumber++;
478 } else if (!C->getCalledFunction()) {
479 valueNumbering.insert(std::make_pair(V, nextValueNumber));
480 return nextValueNumber++;
481 } else {
482 for (unsigned i = 1; i < C->getNumOperands(); ++i) {
483 uint32_t c_vn = lookup_or_add(C->getOperand(i));
484 uint32_t cd_vn = lookup_or_add(local_cdep->getOperand(i));
485 if (c_vn != cd_vn) {
486 valueNumbering.insert(std::make_pair(V, nextValueNumber));
487 return nextValueNumber++;
488 }
489 }
490
491 uint32_t v = lookup_or_add(local_cdep);
492 valueNumbering.insert(std::make_pair(V, v));
493 return v;
494 }
495 }
496
497
Chris Lattner4c724002008-11-29 02:29:27 +0000498 DenseMap<BasicBlock*, MemDepResult> deps;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000499 MD->getNonLocalDependency(C, deps);
Owen Anderson16db1f72008-05-13 13:41:23 +0000500 CallInst* cdep = 0;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000501
Chris Lattner4c724002008-11-29 02:29:27 +0000502 for (DenseMap<BasicBlock*, MemDepResult>
Chris Lattner39f372e2008-11-29 01:43:36 +0000503 ::iterator I = deps.begin(), E = deps.end(); I != E; ++I) {
Chris Lattner4c724002008-11-29 02:29:27 +0000504 if (I->second.isNone()) {
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000505 valueNumbering.insert(std::make_pair(V, nextValueNumber));
506
507 return nextValueNumber++;
Chris Lattner4c724002008-11-29 02:29:27 +0000508 } else if (Instruction *NonLocalDepInst = I->second.getInst()) {
Chris Lattner39f372e2008-11-29 01:43:36 +0000509 // FIXME: INDENT PROPERLY
Chris Lattner4c724002008-11-29 02:29:27 +0000510 // FIXME: All duplicated with non-local case.
Chris Lattner86b29ef2008-11-29 21:22:42 +0000511 if (cdep == 0 && DT->properlyDominates(I->first, C->getParent())) {
Chris Lattner4c724002008-11-29 02:29:27 +0000512 if (CallInst* CD = dyn_cast<CallInst>(NonLocalDepInst))
Owen Anderson16db1f72008-05-13 13:41:23 +0000513 cdep = CD;
514 else {
515 valueNumbering.insert(std::make_pair(V, nextValueNumber));
516 return nextValueNumber++;
517 }
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000518 } else {
519 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000520 return nextValueNumber++;
521 }
522 }
523 }
524
Owen Anderson16db1f72008-05-13 13:41:23 +0000525 if (!cdep) {
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000526 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson241f6532008-04-17 05:36:50 +0000527 return nextValueNumber++;
528 }
529
Chris Lattner86b29ef2008-11-29 21:22:42 +0000530 // FIXME: THIS ISN'T SAFE: CONSIDER:
531 // X = strlen(str)
532 // if (C)
533 // str[0] = 1;
534 // Y = strlen(str)
535 // This doesn't guarantee all-paths availability!
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000536 if (cdep->getCalledFunction() != C->getCalledFunction() ||
537 cdep->getNumOperands() != C->getNumOperands()) {
Owen Anderson241f6532008-04-17 05:36:50 +0000538 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000539 return nextValueNumber++;
540 } else if (!C->getCalledFunction()) {
541 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson241f6532008-04-17 05:36:50 +0000542 return nextValueNumber++;
543 } else {
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000544 for (unsigned i = 1; i < C->getNumOperands(); ++i) {
545 uint32_t c_vn = lookup_or_add(C->getOperand(i));
546 uint32_t cd_vn = lookup_or_add(cdep->getOperand(i));
547 if (c_vn != cd_vn) {
548 valueNumbering.insert(std::make_pair(V, nextValueNumber));
549 return nextValueNumber++;
550 }
551 }
552
Owen Andersonc4f406e2008-05-13 23:18:30 +0000553 uint32_t v = lookup_or_add(cdep);
Owen Anderson241f6532008-04-17 05:36:50 +0000554 valueNumbering.insert(std::make_pair(V, v));
555 return v;
556 }
557
Owen Andersonb388ca92007-10-18 19:39:33 +0000558 } else {
559 valueNumbering.insert(std::make_pair(V, nextValueNumber));
560 return nextValueNumber++;
561 }
562 } else if (BinaryOperator* BO = dyn_cast<BinaryOperator>(V)) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000563 Expression e = create_expression(BO);
564
565 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
566 if (EI != expressionNumbering.end()) {
567 valueNumbering.insert(std::make_pair(V, EI->second));
568 return EI->second;
569 } else {
570 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
571 valueNumbering.insert(std::make_pair(V, nextValueNumber));
572
573 return nextValueNumber++;
574 }
575 } else if (CmpInst* C = dyn_cast<CmpInst>(V)) {
576 Expression e = create_expression(C);
577
578 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
579 if (EI != expressionNumbering.end()) {
580 valueNumbering.insert(std::make_pair(V, EI->second));
581 return EI->second;
582 } else {
583 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
584 valueNumbering.insert(std::make_pair(V, nextValueNumber));
585
586 return nextValueNumber++;
587 }
588 } else if (ShuffleVectorInst* U = dyn_cast<ShuffleVectorInst>(V)) {
589 Expression e = create_expression(U);
590
591 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
592 if (EI != expressionNumbering.end()) {
593 valueNumbering.insert(std::make_pair(V, EI->second));
594 return EI->second;
595 } else {
596 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
597 valueNumbering.insert(std::make_pair(V, nextValueNumber));
598
599 return nextValueNumber++;
600 }
601 } else if (ExtractElementInst* U = dyn_cast<ExtractElementInst>(V)) {
602 Expression e = create_expression(U);
603
604 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
605 if (EI != expressionNumbering.end()) {
606 valueNumbering.insert(std::make_pair(V, EI->second));
607 return EI->second;
608 } else {
609 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
610 valueNumbering.insert(std::make_pair(V, nextValueNumber));
611
612 return nextValueNumber++;
613 }
614 } else if (InsertElementInst* U = dyn_cast<InsertElementInst>(V)) {
615 Expression e = create_expression(U);
616
617 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
618 if (EI != expressionNumbering.end()) {
619 valueNumbering.insert(std::make_pair(V, EI->second));
620 return EI->second;
621 } else {
622 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
623 valueNumbering.insert(std::make_pair(V, nextValueNumber));
624
625 return nextValueNumber++;
626 }
627 } else if (SelectInst* U = dyn_cast<SelectInst>(V)) {
628 Expression e = create_expression(U);
629
630 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
631 if (EI != expressionNumbering.end()) {
632 valueNumbering.insert(std::make_pair(V, EI->second));
633 return EI->second;
634 } else {
635 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
636 valueNumbering.insert(std::make_pair(V, nextValueNumber));
637
638 return nextValueNumber++;
639 }
640 } else if (CastInst* U = dyn_cast<CastInst>(V)) {
641 Expression e = create_expression(U);
642
643 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
644 if (EI != expressionNumbering.end()) {
645 valueNumbering.insert(std::make_pair(V, EI->second));
646 return EI->second;
647 } else {
648 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
649 valueNumbering.insert(std::make_pair(V, nextValueNumber));
650
651 return nextValueNumber++;
652 }
653 } else if (GetElementPtrInst* U = dyn_cast<GetElementPtrInst>(V)) {
654 Expression e = create_expression(U);
655
656 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
657 if (EI != expressionNumbering.end()) {
658 valueNumbering.insert(std::make_pair(V, EI->second));
659 return EI->second;
660 } else {
661 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
662 valueNumbering.insert(std::make_pair(V, nextValueNumber));
663
664 return nextValueNumber++;
665 }
666 } else {
667 valueNumbering.insert(std::make_pair(V, nextValueNumber));
668 return nextValueNumber++;
669 }
670}
671
672/// lookup - Returns the value number of the specified value. Fails if
673/// the value has not yet been numbered.
674uint32_t ValueTable::lookup(Value* V) const {
675 DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
Chris Lattner88365bb2008-03-21 21:14:38 +0000676 assert(VI != valueNumbering.end() && "Value not numbered?");
677 return VI->second;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000678}
679
680/// clear - Remove all entries from the ValueTable
681void ValueTable::clear() {
682 valueNumbering.clear();
683 expressionNumbering.clear();
684 nextValueNumber = 1;
685}
686
Owen Andersonbf7d0bc2007-07-31 23:27:13 +0000687/// erase - Remove a value from the value numbering
688void ValueTable::erase(Value* V) {
689 valueNumbering.erase(V);
690}
691
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000692//===----------------------------------------------------------------------===//
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000693// GVN Pass
694//===----------------------------------------------------------------------===//
695
696namespace {
Owen Anderson6fafe842008-06-20 01:15:47 +0000697 struct VISIBILITY_HIDDEN ValueNumberScope {
698 ValueNumberScope* parent;
699 DenseMap<uint32_t, Value*> table;
700
701 ValueNumberScope(ValueNumberScope* p) : parent(p) { }
702 };
703}
704
705namespace {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000706
707 class VISIBILITY_HIDDEN GVN : public FunctionPass {
708 bool runOnFunction(Function &F);
709 public:
710 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +0000711 GVN() : FunctionPass(&ID) { }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000712
713 private:
714 ValueTable VN;
Owen Anderson6fafe842008-06-20 01:15:47 +0000715 DenseMap<BasicBlock*, ValueNumberScope*> localAvail;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000716
Owen Andersona37226a2007-08-07 23:12:31 +0000717 typedef DenseMap<Value*, SmallPtrSet<Instruction*, 4> > PhiMapType;
718 PhiMapType phiMap;
719
720
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000721 // This transformation requires dominator postdominator info
722 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000723 AU.addRequired<DominatorTree>();
724 AU.addRequired<MemoryDependenceAnalysis>();
Owen Andersonb388ca92007-10-18 19:39:33 +0000725 AU.addRequired<AliasAnalysis>();
Owen Andersonb70a5712008-06-23 17:49:45 +0000726
727 AU.addPreserved<DominatorTree>();
Owen Andersonb388ca92007-10-18 19:39:33 +0000728 AU.addPreserved<AliasAnalysis>();
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000729 }
730
731 // Helper fuctions
732 // FIXME: eliminate or document these better
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000733 bool processLoad(LoadInst* L,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000734 DenseMap<Value*, LoadInst*> &lastLoad,
735 SmallVectorImpl<Instruction*> &toErase);
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000736 bool processInstruction(Instruction* I,
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000737 DenseMap<Value*, LoadInst*>& lastSeenLoad,
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 Andersonaf4240a2008-06-12 19:25:32 +0000741 bool processBlock(DomTreeNode* DTN);
Owen Anderson45537912007-07-26 18:26:51 +0000742 Value *GetValueForBlock(BasicBlock *BB, LoadInst* 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);
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +0000752 void cleanupGlobalSets();
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000753 };
754
755 char GVN::ID = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000756}
757
758// createGVNPass - The public interface to this file...
759FunctionPass *llvm::createGVNPass() { return new GVN(); }
760
761static RegisterPass<GVN> X("gvn",
762 "Global Value Numbering");
763
Owen Andersonb2303722008-06-18 21:41:49 +0000764void GVN::dump(DenseMap<uint32_t, Value*>& d) {
Owen Anderson0cd32032007-07-25 19:57:03 +0000765 printf("{\n");
Owen Andersonb2303722008-06-18 21:41:49 +0000766 for (DenseMap<uint32_t, Value*>::iterator I = d.begin(),
Owen Anderson0cd32032007-07-25 19:57:03 +0000767 E = d.end(); I != E; ++I) {
Owen Andersonb2303722008-06-18 21:41:49 +0000768 printf("%d\n", I->first);
Owen Anderson0cd32032007-07-25 19:57:03 +0000769 I->second->dump();
770 }
771 printf("}\n");
772}
773
Owen Anderson1defe2d2007-08-16 22:51:56 +0000774Value* GVN::CollapsePhi(PHINode* p) {
Owen Andersona472c4a2008-05-12 20:15:55 +0000775 DominatorTree &DT = getAnalysis<DominatorTree>();
Owen Anderson1defe2d2007-08-16 22:51:56 +0000776 Value* constVal = p->hasConstantValue();
777
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
Owen Andersona472c4a2008-05-12 20:15:55 +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.
805Value *GVN::GetValueForBlock(BasicBlock *BB, LoadInst* 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.
815 if (!getAnalysis<DominatorTree>().isReachableFromEntry(BB))
816 return Phis[BB] = UndefValue::get(orig->getType());
Owen Andersonf2aa1602008-07-02 17:20:16 +0000817
Owen Anderson90660202007-08-01 22:01:54 +0000818 BasicBlock* singlePred = BB->getSinglePredecessor();
Owen Anderson4b55c3b2007-08-03 11:03:26 +0000819 if (singlePred) {
Owen Andersonab870272007-08-03 19:59:35 +0000820 Value *ret = GetValueForBlock(singlePred, orig, Phis);
821 Phis[BB] = ret;
822 return ret;
Owen Anderson4b55c3b2007-08-03 11:03:26 +0000823 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000824
Owen Anderson45537912007-07-26 18:26:51 +0000825 // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so
826 // now, then get values to fill in the incoming values for the PHI.
Gabor Greif051a9502008-04-06 20:25:17 +0000827 PHINode *PN = PHINode::Create(orig->getType(), orig->getName()+".rle",
828 BB->begin());
Owen Anderson45537912007-07-26 18:26:51 +0000829 PN->reserveOperandSpace(std::distance(pred_begin(BB), pred_end(BB)));
Owen Andersonab870272007-08-03 19:59:35 +0000830
831 if (Phis.count(BB) == 0)
832 Phis.insert(std::make_pair(BB, PN));
Owen Anderson4f9ba7c2007-07-30 16:57:08 +0000833
Owen Anderson45537912007-07-26 18:26:51 +0000834 // Fill in the incoming values for the block.
Owen Anderson054ab942007-07-31 17:43:14 +0000835 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
836 Value* val = GetValueForBlock(*PI, orig, Phis);
Owen Anderson054ab942007-07-31 17:43:14 +0000837 PN->addIncoming(val, *PI);
838 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000839
Owen Andersona472c4a2008-05-12 20:15:55 +0000840 AliasAnalysis& AA = getAnalysis<AliasAnalysis>();
841 AA.copyValue(orig, PN);
Owen Anderson054ab942007-07-31 17:43:14 +0000842
Owen Anderson62bc33c2007-08-16 22:02:55 +0000843 // Attempt to collapse PHI nodes that are trivially redundant
Owen Anderson1defe2d2007-08-16 22:51:56 +0000844 Value* v = CollapsePhi(PN);
Chris Lattner88365bb2008-03-21 21:14:38 +0000845 if (!v) {
846 // Cache our phi construction results
847 phiMap[orig->getPointerOperand()].insert(PN);
848 return PN;
Owen Anderson054ab942007-07-31 17:43:14 +0000849 }
Owen Andersona472c4a2008-05-12 20:15:55 +0000850
851 MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
Owen Anderson054ab942007-07-31 17:43:14 +0000852
Owen Andersona472c4a2008-05-12 20:15:55 +0000853 MD.removeInstruction(PN);
Chris Lattner88365bb2008-03-21 21:14:38 +0000854 PN->replaceAllUsesWith(v);
855
856 for (DenseMap<BasicBlock*, Value*>::iterator I = Phis.begin(),
857 E = Phis.end(); I != E; ++I)
858 if (I->second == PN)
859 I->second = v;
860
861 PN->eraseFromParent();
862
863 Phis[BB] = v;
864 return v;
Owen Anderson0cd32032007-07-25 19:57:03 +0000865}
866
Owen Anderson62bc33c2007-08-16 22:02:55 +0000867/// processNonLocalLoad - Attempt to eliminate a load whose dependencies are
868/// non-local by performing PHI construction.
Owen Anderson830db6a2007-08-02 18:16:06 +0000869bool GVN::processNonLocalLoad(LoadInst* L,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000870 SmallVectorImpl<Instruction*> &toErase) {
Owen Andersona472c4a2008-05-12 20:15:55 +0000871 MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
872
Owen Anderson62bc33c2007-08-16 22:02:55 +0000873 // Find the non-local dependencies of the load
Chris Lattner4c724002008-11-29 02:29:27 +0000874 DenseMap<BasicBlock*, MemDepResult> deps;
Owen Andersona472c4a2008-05-12 20:15:55 +0000875 MD.getNonLocalDependency(L, deps);
Owen Anderson0cd32032007-07-25 19:57:03 +0000876
Owen Anderson516eb1c2008-08-26 22:07:42 +0000877 // If we had to process more than one hundred blocks to find the
878 // dependencies, this load isn't worth worrying about. Optimizing
879 // it will be too expensive.
880 if (deps.size() > 100)
881 return false;
882
Chris Lattner86b29ef2008-11-29 21:22:42 +0000883 BasicBlock *EntryBlock = &L->getParent()->getParent()->getEntryBlock();
884
Owen Anderson0cd32032007-07-25 19:57:03 +0000885 DenseMap<BasicBlock*, Value*> repl;
Owen Andersona37226a2007-08-07 23:12:31 +0000886
Owen Anderson62bc33c2007-08-16 22:02:55 +0000887 // Filter out useless results (non-locals, etc)
Chris Lattner4c724002008-11-29 02:29:27 +0000888 for (DenseMap<BasicBlock*, MemDepResult>::iterator I = deps.begin(),
Chris Lattner39f372e2008-11-29 01:43:36 +0000889 E = deps.end(); I != E; ++I) {
Chris Lattner86b29ef2008-11-29 21:22:42 +0000890 if (I->second.isNone()) {
891 repl[I->first] = UndefValue::get(L->getType());
Owen Anderson45c83882007-07-30 17:29:24 +0000892 continue;
Chris Lattner86b29ef2008-11-29 21:22:42 +0000893 }
894
895 if (I->second.isNonLocal()) {
896 // If this is a non-local dependency in the entry block, then we depend on
897 // the value live-in at the start of the function. We could insert a load
898 // in the entry block to get this, but for now we'll just bail out.
899 // FIXME: Consider emitting a load in the entry block to catch this case!
900 if (I->first == EntryBlock)
901 return false;
902 continue;
903 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000904
Chris Lattner4c724002008-11-29 02:29:27 +0000905 if (StoreInst* S = dyn_cast<StoreInst>(I->second.getInst())) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000906 if (S->getPointerOperand() != L->getPointerOperand())
Owen Anderson0cd32032007-07-25 19:57:03 +0000907 return false;
Chris Lattner88365bb2008-03-21 21:14:38 +0000908 repl[I->first] = S->getOperand(0);
Chris Lattner4c724002008-11-29 02:29:27 +0000909 } else if (LoadInst* LD = dyn_cast<LoadInst>(I->second.getInst())) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000910 if (LD->getPointerOperand() != L->getPointerOperand())
Owen Anderson0cd32032007-07-25 19:57:03 +0000911 return false;
Chris Lattner88365bb2008-03-21 21:14:38 +0000912 repl[I->first] = LD;
Owen Anderson0cd32032007-07-25 19:57:03 +0000913 } else {
914 return false;
915 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000916 }
Owen Anderson0cd32032007-07-25 19:57:03 +0000917
Owen Anderson62bc33c2007-08-16 22:02:55 +0000918 // Use cached PHI construction information from previous runs
Owen Andersona37226a2007-08-07 23:12:31 +0000919 SmallPtrSet<Instruction*, 4>& p = phiMap[L->getPointerOperand()];
920 for (SmallPtrSet<Instruction*, 4>::iterator I = p.begin(), E = p.end();
921 I != E; ++I) {
922 if ((*I)->getParent() == L->getParent()) {
Owen Andersona472c4a2008-05-12 20:15:55 +0000923 MD.removeInstruction(L);
Owen Andersona37226a2007-08-07 23:12:31 +0000924 L->replaceAllUsesWith(*I);
925 toErase.push_back(L);
926 NumGVNLoad++;
Owen Andersona37226a2007-08-07 23:12:31 +0000927 return true;
Owen Andersona37226a2007-08-07 23:12:31 +0000928 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000929
930 repl.insert(std::make_pair((*I)->getParent(), *I));
Owen Andersona37226a2007-08-07 23:12:31 +0000931 }
932
Owen Anderson62bc33c2007-08-16 22:02:55 +0000933 // Perform PHI construction
Owen Anderson0d169882007-07-25 22:03:06 +0000934 SmallPtrSet<BasicBlock*, 4> visited;
Owen Anderson1c2763d2007-08-02 17:56:05 +0000935 Value* v = GetValueForBlock(L->getParent(), L, repl, true);
Owen Anderson0cd32032007-07-25 19:57:03 +0000936
Owen Andersona472c4a2008-05-12 20:15:55 +0000937 MD.removeInstruction(L);
Owen Anderson0cd32032007-07-25 19:57:03 +0000938 L->replaceAllUsesWith(v);
939 toErase.push_back(L);
Owen Andersona37226a2007-08-07 23:12:31 +0000940 NumGVNLoad++;
Owen Anderson0cd32032007-07-25 19:57:03 +0000941
942 return true;
943}
944
Owen Anderson62bc33c2007-08-16 22:02:55 +0000945/// processLoad - Attempt to eliminate a load, first by eliminating it
946/// locally, and then attempting non-local elimination if that fails.
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000947bool GVN::processLoad(LoadInst *L, DenseMap<Value*, LoadInst*> &lastLoad,
948 SmallVectorImpl<Instruction*> &toErase) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000949 if (L->isVolatile()) {
950 lastLoad[L->getPointerOperand()] = L;
951 return false;
952 }
953
954 Value* pointer = L->getPointerOperand();
955 LoadInst*& last = lastLoad[pointer];
956
957 // ... to a pointer that has been loaded from before...
Owen Andersona472c4a2008-05-12 20:15:55 +0000958 MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
Owen Anderson8e8278e2007-08-14 17:59:48 +0000959 bool removedNonLocal = false;
Chris Lattner4c724002008-11-29 02:29:27 +0000960 MemDepResult dep = MD.getDependency(L);
961 if (dep.isNonLocal() &&
Owen Anderson8e8278e2007-08-14 17:59:48 +0000962 L->getParent() != &L->getParent()->getParent()->getEntryBlock()) {
963 removedNonLocal = processNonLocalLoad(L, toErase);
964
965 if (!removedNonLocal)
966 last = L;
967
968 return removedNonLocal;
969 }
970
971
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000972 bool deletedLoad = false;
973
Owen Anderson62bc33c2007-08-16 22:02:55 +0000974 // Walk up the dependency chain until we either find
975 // a dependency we can use, or we can't walk any further
Chris Lattner4c724002008-11-29 02:29:27 +0000976 while (Instruction *DepInst = dep.getInst()) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000977 // ... that depends on a store ...
Chris Lattner4c724002008-11-29 02:29:27 +0000978 if (StoreInst* S = dyn_cast<StoreInst>(DepInst)) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000979 if (S->getPointerOperand() == pointer) {
980 // Remove it!
Owen Andersona472c4a2008-05-12 20:15:55 +0000981 MD.removeInstruction(L);
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000982
983 L->replaceAllUsesWith(S->getOperand(0));
984 toErase.push_back(L);
985 deletedLoad = true;
986 NumGVNLoad++;
987 }
988
989 // Whether we removed it or not, we can't
990 // go any further
991 break;
Chris Lattner4c724002008-11-29 02:29:27 +0000992 } else if (!isa<LoadInst>(DepInst)) {
993 // Only want to handle loads below.
994 break;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000995 } else if (!last) {
996 // If we don't depend on a store, and we haven't
997 // been loaded before, bail.
998 break;
Chris Lattner4c724002008-11-29 02:29:27 +0000999 } else if (DepInst == last) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001000 // Remove it!
Owen Andersona472c4a2008-05-12 20:15:55 +00001001 MD.removeInstruction(L);
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001002
1003 L->replaceAllUsesWith(last);
1004 toErase.push_back(L);
1005 deletedLoad = true;
1006 NumGVNLoad++;
1007
1008 break;
1009 } else {
Chris Lattner5391a1d2008-11-29 03:47:00 +00001010 dep = MD.getDependencyFrom(L, DepInst, DepInst->getParent());
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001011 }
1012 }
Eli Friedmanb6c36e42008-02-12 12:08:14 +00001013
Chris Lattner4c724002008-11-29 02:29:27 +00001014 if (AllocationInst *DepAI = dyn_cast_or_null<AllocationInst>(dep.getInst())) {
Eli Friedmanb6c36e42008-02-12 12:08:14 +00001015 // Check that this load is actually from the
1016 // allocation we found
Chris Lattner4c724002008-11-29 02:29:27 +00001017 if (L->getOperand(0)->getUnderlyingObject() == DepAI) {
Eli Friedmanb6c36e42008-02-12 12:08:14 +00001018 // If this load depends directly on an allocation, there isn't
1019 // anything stored there; therefore, we can optimize this load
1020 // to undef.
Owen Andersona472c4a2008-05-12 20:15:55 +00001021 MD.removeInstruction(L);
Eli Friedmanb6c36e42008-02-12 12:08:14 +00001022
1023 L->replaceAllUsesWith(UndefValue::get(L->getType()));
1024 toErase.push_back(L);
1025 deletedLoad = true;
1026 NumGVNLoad++;
1027 }
1028 }
1029
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001030 if (!deletedLoad)
1031 last = L;
1032
1033 return deletedLoad;
1034}
1035
Owen Anderson6fafe842008-06-20 01:15:47 +00001036Value* GVN::lookupNumber(BasicBlock* BB, uint32_t num) {
Owen Andersonb70a5712008-06-23 17:49:45 +00001037 DenseMap<BasicBlock*, ValueNumberScope*>::iterator I = localAvail.find(BB);
1038 if (I == localAvail.end())
1039 return 0;
1040
1041 ValueNumberScope* locals = I->second;
Owen Anderson6fafe842008-06-20 01:15:47 +00001042
1043 while (locals) {
1044 DenseMap<uint32_t, Value*>::iterator I = locals->table.find(num);
1045 if (I != locals->table.end())
1046 return I->second;
1047 else
1048 locals = locals->parent;
1049 }
1050
1051 return 0;
1052}
1053
Owen Anderson36057c72007-08-14 18:16:29 +00001054/// processInstruction - When calculating availability, handle an instruction
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001055/// by inserting it into the appropriate sets
Owen Andersonaf4240a2008-06-12 19:25:32 +00001056bool GVN::processInstruction(Instruction *I,
Chris Lattner8e1e95c2008-03-21 22:01:16 +00001057 DenseMap<Value*, LoadInst*> &lastSeenLoad,
1058 SmallVectorImpl<Instruction*> &toErase) {
Owen Andersonb2303722008-06-18 21:41:49 +00001059 if (LoadInst* L = dyn_cast<LoadInst>(I)) {
1060 bool changed = processLoad(L, lastSeenLoad, toErase);
1061
1062 if (!changed) {
1063 unsigned num = VN.lookup_or_add(L);
Owen Anderson6fafe842008-06-20 01:15:47 +00001064 localAvail[I->getParent()]->table.insert(std::make_pair(num, L));
Owen Andersonb2303722008-06-18 21:41:49 +00001065 }
1066
1067 return changed;
1068 }
1069
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001070 uint32_t nextNum = VN.getNextUnusedValueNumber();
Owen Andersonb2303722008-06-18 21:41:49 +00001071 unsigned num = VN.lookup_or_add(I);
Chris Lattner8e1e95c2008-03-21 22:01:16 +00001072
Owen Andersone5ffa902008-04-07 09:59:07 +00001073 // Allocations are always uniquely numbered, so we can save time and memory
1074 // by fast failing them.
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001075 if (isa<AllocationInst>(I) || isa<TerminatorInst>(I)) {
Owen Anderson6fafe842008-06-20 01:15:47 +00001076 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Andersone5ffa902008-04-07 09:59:07 +00001077 return false;
Owen Andersonb2303722008-06-18 21:41:49 +00001078 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001079
Owen Anderson62bc33c2007-08-16 22:02:55 +00001080 // Collapse PHI nodes
Owen Anderson31f49672007-08-14 18:33:27 +00001081 if (PHINode* p = dyn_cast<PHINode>(I)) {
Owen Anderson1defe2d2007-08-16 22:51:56 +00001082 Value* constVal = CollapsePhi(p);
Owen Anderson31f49672007-08-14 18:33:27 +00001083
1084 if (constVal) {
Owen Anderson1defe2d2007-08-16 22:51:56 +00001085 for (PhiMapType::iterator PI = phiMap.begin(), PE = phiMap.end();
1086 PI != PE; ++PI)
1087 if (PI->second.count(p))
1088 PI->second.erase(p);
Owen Anderson31f49672007-08-14 18:33:27 +00001089
Owen Anderson1defe2d2007-08-16 22:51:56 +00001090 p->replaceAllUsesWith(constVal);
1091 toErase.push_back(p);
Owen Andersonb2303722008-06-18 21:41:49 +00001092 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001093 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Anderson31f49672007-08-14 18:33:27 +00001094 }
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001095
1096 // If the number we were assigned was a brand new VN, then we don't
1097 // need to do a lookup to see if the number already exists
1098 // somewhere in the domtree: it can't!
1099 } else if (num == nextNum) {
1100 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1101
Owen Anderson62bc33c2007-08-16 22:02:55 +00001102 // Perform value-number based elimination
Owen Anderson6fafe842008-06-20 01:15:47 +00001103 } else if (Value* repl = lookupNumber(I->getParent(), num)) {
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001104 // Remove it!
Owen Andersona472c4a2008-05-12 20:15:55 +00001105 MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
1106 MD.removeInstruction(I);
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001107
Owen Andersonbf7d0bc2007-07-31 23:27:13 +00001108 VN.erase(I);
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001109 I->replaceAllUsesWith(repl);
1110 toErase.push_back(I);
1111 return true;
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001112 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001113 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001114 }
1115
1116 return false;
1117}
1118
1119// GVN::runOnFunction - This is the main transformation entry point for a
1120// function.
1121//
Owen Anderson3e75a422007-08-14 18:04:11 +00001122bool GVN::runOnFunction(Function& F) {
Owen Andersona472c4a2008-05-12 20:15:55 +00001123 VN.setAliasAnalysis(&getAnalysis<AliasAnalysis>());
1124 VN.setMemDep(&getAnalysis<MemoryDependenceAnalysis>());
1125 VN.setDomTree(&getAnalysis<DominatorTree>());
Owen Andersonb388ca92007-10-18 19:39:33 +00001126
Owen Anderson3e75a422007-08-14 18:04:11 +00001127 bool changed = false;
1128 bool shouldContinue = true;
1129
Owen Anderson5d0af032008-07-16 17:52:31 +00001130 // Merge unconditional branches, allowing PRE to catch more
1131 // optimization opportunities.
1132 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ) {
1133 BasicBlock* BB = FI;
1134 ++FI;
Owen Andersonb31b06d2008-07-17 00:01:40 +00001135 bool removedBlock = MergeBlockIntoPredecessor(BB, this);
1136 if (removedBlock) NumGVNBlocks++;
1137
1138 changed |= removedBlock;
Owen Anderson5d0af032008-07-16 17:52:31 +00001139 }
1140
Owen Anderson3e75a422007-08-14 18:04:11 +00001141 while (shouldContinue) {
1142 shouldContinue = iterateOnFunction(F);
1143 changed |= shouldContinue;
1144 }
1145
Owen Andersone98c54c2008-07-18 18:03:38 +00001146 if (EnablePRE) {
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001147 bool PREChanged = true;
1148 while (PREChanged) {
1149 PREChanged = performPRE(F);
Owen Andersone98c54c2008-07-18 18:03:38 +00001150 changed |= PREChanged;
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001151 }
Owen Andersone98c54c2008-07-18 18:03:38 +00001152 }
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001153
1154 cleanupGlobalSets();
1155
Owen Anderson3e75a422007-08-14 18:04:11 +00001156 return changed;
1157}
1158
1159
Owen Andersonaf4240a2008-06-12 19:25:32 +00001160bool GVN::processBlock(DomTreeNode* DTN) {
1161 BasicBlock* BB = DTN->getBlock();
Owen Andersonaf4240a2008-06-12 19:25:32 +00001162
1163 SmallVector<Instruction*, 8> toErase;
1164 DenseMap<Value*, LoadInst*> lastSeenLoad;
1165 bool changed_function = false;
Owen Andersonb2303722008-06-18 21:41:49 +00001166
1167 if (DTN->getIDom())
Owen Anderson6fafe842008-06-20 01:15:47 +00001168 localAvail[BB] =
1169 new ValueNumberScope(localAvail[DTN->getIDom()->getBlock()]);
1170 else
1171 localAvail[BB] = new ValueNumberScope(0);
Owen Andersonb2303722008-06-18 21:41:49 +00001172
Owen Andersonaf4240a2008-06-12 19:25:32 +00001173 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();
1174 BI != BE;) {
1175 changed_function |= processInstruction(BI, lastSeenLoad, toErase);
1176 if (toErase.empty()) {
1177 ++BI;
1178 continue;
1179 }
1180
1181 // If we need some instructions deleted, do it now.
1182 NumGVNInstr += toErase.size();
1183
1184 // Avoid iterator invalidation.
1185 bool AtStart = BI == BB->begin();
1186 if (!AtStart)
1187 --BI;
1188
1189 for (SmallVector<Instruction*, 4>::iterator I = toErase.begin(),
1190 E = toErase.end(); I != E; ++I)
1191 (*I)->eraseFromParent();
1192
1193 if (AtStart)
1194 BI = BB->begin();
1195 else
1196 ++BI;
1197
1198 toErase.clear();
1199 }
1200
Owen Andersonaf4240a2008-06-12 19:25:32 +00001201 return changed_function;
1202}
1203
Owen Andersonb2303722008-06-18 21:41:49 +00001204/// performPRE - Perform a purely local form of PRE that looks for diamond
1205/// control flow patterns and attempts to perform simple PRE at the join point.
1206bool GVN::performPRE(Function& F) {
1207 bool changed = false;
Owen Anderson5c274ee2008-06-19 19:54:19 +00001208 SmallVector<std::pair<TerminatorInst*, unsigned>, 4> toSplit;
Owen Andersonb2303722008-06-18 21:41:49 +00001209 for (df_iterator<BasicBlock*> DI = df_begin(&F.getEntryBlock()),
1210 DE = df_end(&F.getEntryBlock()); DI != DE; ++DI) {
1211 BasicBlock* CurrentBlock = *DI;
1212
1213 // Nothing to PRE in the entry block.
1214 if (CurrentBlock == &F.getEntryBlock()) continue;
1215
1216 for (BasicBlock::iterator BI = CurrentBlock->begin(),
1217 BE = CurrentBlock->end(); BI != BE; ) {
Owen Andersonb70a5712008-06-23 17:49:45 +00001218 if (isa<AllocationInst>(BI) || isa<TerminatorInst>(BI) ||
1219 isa<PHINode>(BI) || BI->mayReadFromMemory() ||
1220 BI->mayWriteToMemory()) {
Owen Andersonb2303722008-06-18 21:41:49 +00001221 BI++;
1222 continue;
1223 }
1224
1225 uint32_t valno = VN.lookup(BI);
1226
1227 // Look for the predecessors for PRE opportunities. We're
1228 // only trying to solve the basic diamond case, where
1229 // a value is computed in the successor and one predecessor,
1230 // but not the other. We also explicitly disallow cases
1231 // where the successor is its own predecessor, because they're
1232 // more complicated to get right.
1233 unsigned numWith = 0;
1234 unsigned numWithout = 0;
1235 BasicBlock* PREPred = 0;
Owen Anderson6fafe842008-06-20 01:15:47 +00001236 DenseMap<BasicBlock*, Value*> predMap;
Owen Andersonb2303722008-06-18 21:41:49 +00001237 for (pred_iterator PI = pred_begin(CurrentBlock),
1238 PE = pred_end(CurrentBlock); PI != PE; ++PI) {
1239 // We're not interested in PRE where the block is its
Owen Anderson6fafe842008-06-20 01:15:47 +00001240 // own predecessor, on in blocks with predecessors
1241 // that are not reachable.
1242 if (*PI == CurrentBlock) {
Owen Andersonb2303722008-06-18 21:41:49 +00001243 numWithout = 2;
Owen Anderson6fafe842008-06-20 01:15:47 +00001244 break;
1245 } else if (!localAvail.count(*PI)) {
1246 numWithout = 2;
1247 break;
1248 }
1249
1250 DenseMap<uint32_t, Value*>::iterator predV =
1251 localAvail[*PI]->table.find(valno);
1252 if (predV == localAvail[*PI]->table.end()) {
Owen Andersonb2303722008-06-18 21:41:49 +00001253 PREPred = *PI;
1254 numWithout++;
Owen Anderson6fafe842008-06-20 01:15:47 +00001255 } else if (predV->second == BI) {
Owen Andersonb2303722008-06-18 21:41:49 +00001256 numWithout = 2;
1257 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001258 predMap[*PI] = predV->second;
Owen Andersonb2303722008-06-18 21:41:49 +00001259 numWith++;
1260 }
1261 }
1262
1263 // Don't do PRE when it might increase code size, i.e. when
1264 // we would need to insert instructions in more than one pred.
1265 if (numWithout != 1 || numWith == 0) {
1266 BI++;
1267 continue;
1268 }
1269
Owen Anderson5c274ee2008-06-19 19:54:19 +00001270 // We can't do PRE safely on a critical edge, so instead we schedule
1271 // the edge to be split and perform the PRE the next time we iterate
1272 // on the function.
1273 unsigned succNum = 0;
1274 for (unsigned i = 0, e = PREPred->getTerminator()->getNumSuccessors();
1275 i != e; ++i)
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001276 if (PREPred->getTerminator()->getSuccessor(i) == CurrentBlock) {
Owen Anderson5c274ee2008-06-19 19:54:19 +00001277 succNum = i;
1278 break;
1279 }
1280
1281 if (isCriticalEdge(PREPred->getTerminator(), succNum)) {
1282 toSplit.push_back(std::make_pair(PREPred->getTerminator(), succNum));
1283 changed = true;
1284 BI++;
1285 continue;
1286 }
1287
Owen Andersonb2303722008-06-18 21:41:49 +00001288 // Instantiate the expression the in predecessor that lacked it.
1289 // Because we are going top-down through the block, all value numbers
1290 // will be available in the predecessor by the time we need them. Any
1291 // that weren't original present will have been instantiated earlier
1292 // in this loop.
1293 Instruction* PREInstr = BI->clone();
1294 bool success = true;
1295 for (unsigned i = 0; i < BI->getNumOperands(); ++i) {
1296 Value* op = BI->getOperand(i);
1297 if (isa<Argument>(op) || isa<Constant>(op) || isa<GlobalValue>(op))
1298 PREInstr->setOperand(i, op);
Owen Andersonc45996b2008-07-11 20:05:13 +00001299 else {
1300 Value* V = lookupNumber(PREPred, VN.lookup(op));
1301 if (!V) {
1302 success = false;
1303 break;
1304 } else
1305 PREInstr->setOperand(i, V);
1306 }
Owen Andersonb2303722008-06-18 21:41:49 +00001307 }
1308
1309 // Fail out if we encounter an operand that is not available in
1310 // the PRE predecessor. This is typically because of loads which
1311 // are not value numbered precisely.
1312 if (!success) {
1313 delete PREInstr;
1314 BI++;
1315 continue;
1316 }
1317
1318 PREInstr->insertBefore(PREPred->getTerminator());
1319 PREInstr->setName(BI->getName() + ".pre");
Owen Anderson6fafe842008-06-20 01:15:47 +00001320 predMap[PREPred] = PREInstr;
Owen Andersonb2303722008-06-18 21:41:49 +00001321 VN.add(PREInstr, valno);
1322 NumGVNPRE++;
1323
1324 // Update the availability map to include the new instruction.
Owen Anderson6fafe842008-06-20 01:15:47 +00001325 localAvail[PREPred]->table.insert(std::make_pair(valno, PREInstr));
Owen Andersonb2303722008-06-18 21:41:49 +00001326
1327 // Create a PHI to make the value available in this block.
1328 PHINode* Phi = PHINode::Create(BI->getType(),
1329 BI->getName() + ".pre-phi",
1330 CurrentBlock->begin());
1331 for (pred_iterator PI = pred_begin(CurrentBlock),
1332 PE = pred_end(CurrentBlock); PI != PE; ++PI)
Owen Anderson6fafe842008-06-20 01:15:47 +00001333 Phi->addIncoming(predMap[*PI], *PI);
Owen Andersonb2303722008-06-18 21:41:49 +00001334
1335 VN.add(Phi, valno);
Owen Anderson6fafe842008-06-20 01:15:47 +00001336 localAvail[CurrentBlock]->table[valno] = Phi;
Owen Andersonb2303722008-06-18 21:41:49 +00001337
1338 BI->replaceAllUsesWith(Phi);
Owen Anderson9da52dc2008-06-19 17:53:26 +00001339 VN.erase(BI);
Owen Andersonb2303722008-06-18 21:41:49 +00001340
1341 Instruction* erase = BI;
1342 BI++;
1343 erase->eraseFromParent();
1344
1345 changed = true;
1346 }
1347 }
1348
Owen Anderson5c274ee2008-06-19 19:54:19 +00001349 for (SmallVector<std::pair<TerminatorInst*, unsigned>, 4>::iterator
1350 I = toSplit.begin(), E = toSplit.end(); I != E; ++I)
1351 SplitCriticalEdge(I->first, I->second, this);
1352
Owen Andersone98c54c2008-07-18 18:03:38 +00001353 return changed || toSplit.size();
Owen Andersonb2303722008-06-18 21:41:49 +00001354}
1355
Owen Anderson961edc82008-07-15 16:28:06 +00001356// iterateOnFunction - Executes one iteration of GVN
Owen Anderson3e75a422007-08-14 18:04:11 +00001357bool GVN::iterateOnFunction(Function &F) {
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001358 DominatorTree &DT = getAnalysis<DominatorTree>();
1359
1360 cleanupGlobalSets();
Chris Lattner2e607012008-03-21 21:33:23 +00001361
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001362 // Top-down walk of the dominator tree
Owen Andersonb2303722008-06-18 21:41:49 +00001363 bool changed = false;
1364 for (df_iterator<DomTreeNode*> DI = df_begin(DT.getRootNode()),
1365 DE = df_end(DT.getRootNode()); DI != DE; ++DI)
1366 changed |= processBlock(*DI);
Owen Andersonaa0b6342008-06-19 19:57:25 +00001367
Owen Anderson5d0af032008-07-16 17:52:31 +00001368 return changed;
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001369}
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001370
1371void GVN::cleanupGlobalSets() {
1372 VN.clear();
1373 phiMap.clear();
1374
1375 for (DenseMap<BasicBlock*, ValueNumberScope*>::iterator
1376 I = localAvail.begin(), E = localAvail.end(); I != E; ++I)
1377 delete I->second;
1378 localAvail.clear();
1379}