blob: e468a1ad88b78155c046a5c9db588cf208cbd335 [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 Lattner1440ac52008-11-30 23:39:23 +0000464 }
465
466 if (Instruction *LocalDepInst = local_dep.getInst()) {
Chris Lattner4c724002008-11-29 02:29:27 +0000467 if (!isa<CallInst>(LocalDepInst)) {
Owen Andersonc4f406e2008-05-13 23:18:30 +0000468 valueNumbering.insert(std::make_pair(V, nextValueNumber));
469 return nextValueNumber++;
470 }
471
Chris Lattner4c724002008-11-29 02:29:27 +0000472 CallInst* local_cdep = cast<CallInst>(LocalDepInst);
Owen Andersonc4f406e2008-05-13 23:18:30 +0000473
474 if (local_cdep->getCalledFunction() != C->getCalledFunction() ||
475 local_cdep->getNumOperands() != C->getNumOperands()) {
476 valueNumbering.insert(std::make_pair(V, nextValueNumber));
477 return nextValueNumber++;
Chris Lattner1440ac52008-11-30 23:39:23 +0000478 }
479
480 if (!C->getCalledFunction()) {
Owen Andersonc4f406e2008-05-13 23:18:30 +0000481 valueNumbering.insert(std::make_pair(V, nextValueNumber));
482 return nextValueNumber++;
Owen Andersonc4f406e2008-05-13 23:18:30 +0000483 }
Chris Lattner1440ac52008-11-30 23:39:23 +0000484
485 for (unsigned i = 1; i < C->getNumOperands(); ++i) {
486 uint32_t c_vn = lookup_or_add(C->getOperand(i));
487 uint32_t cd_vn = lookup_or_add(local_cdep->getOperand(i));
488 if (c_vn != cd_vn) {
489 valueNumbering.insert(std::make_pair(V, nextValueNumber));
490 return nextValueNumber++;
491 }
492 }
493
494 uint32_t v = lookup_or_add(local_cdep);
495 valueNumbering.insert(std::make_pair(V, v));
496 return v;
Owen Andersonc4f406e2008-05-13 23:18:30 +0000497 }
498
499
Chris Lattner396a4a52008-11-29 21:33:22 +0000500 SmallVector<std::pair<BasicBlock*, MemDepResult>, 32> deps;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000501 MD->getNonLocalDependency(C, deps);
Owen Anderson16db1f72008-05-13 13:41:23 +0000502 CallInst* cdep = 0;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000503
Chris Lattner1440ac52008-11-30 23:39:23 +0000504 // Check to see if we have a single dominating call instruction that is
505 // identical to C.
Chris Lattner396a4a52008-11-29 21:33:22 +0000506 for (SmallVector<std::pair<BasicBlock*, MemDepResult>, 32>
Chris Lattner39f372e2008-11-29 01:43:36 +0000507 ::iterator I = deps.begin(), E = deps.end(); I != E; ++I) {
Chris Lattner1440ac52008-11-30 23:39:23 +0000508 // Ignore non-local dependencies.
509 if (I->second.isNonLocal())
510 continue;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000511
Chris Lattner1440ac52008-11-30 23:39:23 +0000512 // We don't handle non-depedencies. If we already have a call, reject
513 // instruction dependencies.
514 if (I->second.isNone() || cdep != 0) {
515 cdep = 0;
516 break;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000517 }
Chris Lattner1440ac52008-11-30 23:39:23 +0000518
519 CallInst *NonLocalDepCall = dyn_cast<CallInst>(I->second.getInst());
520 // FIXME: All duplicated with non-local case.
521 if (NonLocalDepCall && DT->properlyDominates(I->first, C->getParent())){
522 cdep = NonLocalDepCall;
523 continue;
524 }
525
526 cdep = 0;
527 break;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000528 }
529
Owen Anderson16db1f72008-05-13 13:41:23 +0000530 if (!cdep) {
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000531 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson241f6532008-04-17 05:36:50 +0000532 return nextValueNumber++;
533 }
534
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000535 if (cdep->getCalledFunction() != C->getCalledFunction() ||
536 cdep->getNumOperands() != C->getNumOperands()) {
Owen Anderson241f6532008-04-17 05:36:50 +0000537 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000538 return nextValueNumber++;
Chris Lattner1440ac52008-11-30 23:39:23 +0000539 }
540 if (!C->getCalledFunction()) {
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000541 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson241f6532008-04-17 05:36:50 +0000542 return nextValueNumber++;
Owen Anderson241f6532008-04-17 05:36:50 +0000543 }
Chris Lattner1440ac52008-11-30 23:39:23 +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
553 uint32_t v = lookup_or_add(cdep);
554 valueNumbering.insert(std::make_pair(V, v));
555 return v;
Owen Anderson241f6532008-04-17 05:36:50 +0000556
Owen Andersonb388ca92007-10-18 19:39:33 +0000557 } else {
558 valueNumbering.insert(std::make_pair(V, nextValueNumber));
559 return nextValueNumber++;
560 }
561 } else if (BinaryOperator* BO = dyn_cast<BinaryOperator>(V)) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000562 Expression e = create_expression(BO);
563
564 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
565 if (EI != expressionNumbering.end()) {
566 valueNumbering.insert(std::make_pair(V, EI->second));
567 return EI->second;
568 } else {
569 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
570 valueNumbering.insert(std::make_pair(V, nextValueNumber));
571
572 return nextValueNumber++;
573 }
574 } else if (CmpInst* C = dyn_cast<CmpInst>(V)) {
575 Expression e = create_expression(C);
576
577 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
578 if (EI != expressionNumbering.end()) {
579 valueNumbering.insert(std::make_pair(V, EI->second));
580 return EI->second;
581 } else {
582 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
583 valueNumbering.insert(std::make_pair(V, nextValueNumber));
584
585 return nextValueNumber++;
586 }
587 } else if (ShuffleVectorInst* U = dyn_cast<ShuffleVectorInst>(V)) {
588 Expression e = create_expression(U);
589
590 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
591 if (EI != expressionNumbering.end()) {
592 valueNumbering.insert(std::make_pair(V, EI->second));
593 return EI->second;
594 } else {
595 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
596 valueNumbering.insert(std::make_pair(V, nextValueNumber));
597
598 return nextValueNumber++;
599 }
600 } else if (ExtractElementInst* U = dyn_cast<ExtractElementInst>(V)) {
601 Expression e = create_expression(U);
602
603 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
604 if (EI != expressionNumbering.end()) {
605 valueNumbering.insert(std::make_pair(V, EI->second));
606 return EI->second;
607 } else {
608 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
609 valueNumbering.insert(std::make_pair(V, nextValueNumber));
610
611 return nextValueNumber++;
612 }
613 } else if (InsertElementInst* U = dyn_cast<InsertElementInst>(V)) {
614 Expression e = create_expression(U);
615
616 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
617 if (EI != expressionNumbering.end()) {
618 valueNumbering.insert(std::make_pair(V, EI->second));
619 return EI->second;
620 } else {
621 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
622 valueNumbering.insert(std::make_pair(V, nextValueNumber));
623
624 return nextValueNumber++;
625 }
626 } else if (SelectInst* U = dyn_cast<SelectInst>(V)) {
627 Expression e = create_expression(U);
628
629 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
630 if (EI != expressionNumbering.end()) {
631 valueNumbering.insert(std::make_pair(V, EI->second));
632 return EI->second;
633 } else {
634 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
635 valueNumbering.insert(std::make_pair(V, nextValueNumber));
636
637 return nextValueNumber++;
638 }
639 } else if (CastInst* U = dyn_cast<CastInst>(V)) {
640 Expression e = create_expression(U);
641
642 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
643 if (EI != expressionNumbering.end()) {
644 valueNumbering.insert(std::make_pair(V, EI->second));
645 return EI->second;
646 } else {
647 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
648 valueNumbering.insert(std::make_pair(V, nextValueNumber));
649
650 return nextValueNumber++;
651 }
652 } else if (GetElementPtrInst* U = dyn_cast<GetElementPtrInst>(V)) {
653 Expression e = create_expression(U);
654
655 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
656 if (EI != expressionNumbering.end()) {
657 valueNumbering.insert(std::make_pair(V, EI->second));
658 return EI->second;
659 } else {
660 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
661 valueNumbering.insert(std::make_pair(V, nextValueNumber));
662
663 return nextValueNumber++;
664 }
665 } else {
666 valueNumbering.insert(std::make_pair(V, nextValueNumber));
667 return nextValueNumber++;
668 }
669}
670
671/// lookup - Returns the value number of the specified value. Fails if
672/// the value has not yet been numbered.
673uint32_t ValueTable::lookup(Value* V) const {
674 DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
Chris Lattner88365bb2008-03-21 21:14:38 +0000675 assert(VI != valueNumbering.end() && "Value not numbered?");
676 return VI->second;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000677}
678
679/// clear - Remove all entries from the ValueTable
680void ValueTable::clear() {
681 valueNumbering.clear();
682 expressionNumbering.clear();
683 nextValueNumber = 1;
684}
685
Owen Andersonbf7d0bc2007-07-31 23:27:13 +0000686/// erase - Remove a value from the value numbering
687void ValueTable::erase(Value* V) {
688 valueNumbering.erase(V);
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:
713 ValueTable VN;
Owen Anderson6fafe842008-06-20 01:15:47 +0000714 DenseMap<BasicBlock*, ValueNumberScope*> localAvail;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000715
Owen Andersona37226a2007-08-07 23:12:31 +0000716 typedef DenseMap<Value*, SmallPtrSet<Instruction*, 4> > PhiMapType;
717 PhiMapType phiMap;
718
719
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000720 // This transformation requires dominator postdominator info
721 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000722 AU.addRequired<DominatorTree>();
723 AU.addRequired<MemoryDependenceAnalysis>();
Owen Andersonb388ca92007-10-18 19:39:33 +0000724 AU.addRequired<AliasAnalysis>();
Owen Andersonb70a5712008-06-23 17:49:45 +0000725
726 AU.addPreserved<DominatorTree>();
Owen Andersonb388ca92007-10-18 19:39:33 +0000727 AU.addPreserved<AliasAnalysis>();
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000728 }
729
730 // Helper fuctions
731 // FIXME: eliminate or document these better
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000732 bool processLoad(LoadInst* L,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000733 DenseMap<Value*, LoadInst*> &lastLoad,
734 SmallVectorImpl<Instruction*> &toErase);
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000735 bool processInstruction(Instruction* I,
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000736 DenseMap<Value*, LoadInst*>& lastSeenLoad,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000737 SmallVectorImpl<Instruction*> &toErase);
Owen Anderson830db6a2007-08-02 18:16:06 +0000738 bool processNonLocalLoad(LoadInst* L,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000739 SmallVectorImpl<Instruction*> &toErase);
Owen Andersonaf4240a2008-06-12 19:25:32 +0000740 bool processBlock(DomTreeNode* DTN);
Owen Anderson45537912007-07-26 18:26:51 +0000741 Value *GetValueForBlock(BasicBlock *BB, LoadInst* orig,
Owen Anderson1c2763d2007-08-02 17:56:05 +0000742 DenseMap<BasicBlock*, Value*> &Phis,
743 bool top_level = false);
Owen Andersonb2303722008-06-18 21:41:49 +0000744 void dump(DenseMap<uint32_t, Value*>& d);
Owen Anderson3e75a422007-08-14 18:04:11 +0000745 bool iterateOnFunction(Function &F);
Owen Anderson1defe2d2007-08-16 22:51:56 +0000746 Value* CollapsePhi(PHINode* p);
Owen Anderson24866862007-09-16 08:04:16 +0000747 bool isSafeReplacement(PHINode* p, Instruction* inst);
Owen Andersonb2303722008-06-18 21:41:49 +0000748 bool performPRE(Function& F);
Owen Anderson6fafe842008-06-20 01:15:47 +0000749 Value* lookupNumber(BasicBlock* BB, uint32_t num);
Owen Anderson961edc82008-07-15 16:28:06 +0000750 bool mergeBlockIntoPredecessor(BasicBlock* BB);
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +0000751 void cleanupGlobalSets();
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000752 };
753
754 char GVN::ID = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000755}
756
757// createGVNPass - The public interface to this file...
758FunctionPass *llvm::createGVNPass() { return new GVN(); }
759
760static RegisterPass<GVN> X("gvn",
761 "Global Value Numbering");
762
Owen Andersonb2303722008-06-18 21:41:49 +0000763void GVN::dump(DenseMap<uint32_t, Value*>& d) {
Owen Anderson0cd32032007-07-25 19:57:03 +0000764 printf("{\n");
Owen Andersonb2303722008-06-18 21:41:49 +0000765 for (DenseMap<uint32_t, Value*>::iterator I = d.begin(),
Owen Anderson0cd32032007-07-25 19:57:03 +0000766 E = d.end(); I != E; ++I) {
Owen Andersonb2303722008-06-18 21:41:49 +0000767 printf("%d\n", I->first);
Owen Anderson0cd32032007-07-25 19:57:03 +0000768 I->second->dump();
769 }
770 printf("}\n");
771}
772
Owen Anderson1defe2d2007-08-16 22:51:56 +0000773Value* GVN::CollapsePhi(PHINode* p) {
Owen Andersona472c4a2008-05-12 20:15:55 +0000774 DominatorTree &DT = getAnalysis<DominatorTree>();
Owen Anderson1defe2d2007-08-16 22:51:56 +0000775 Value* constVal = p->hasConstantValue();
776
Chris Lattner88365bb2008-03-21 21:14:38 +0000777 if (!constVal) return 0;
Owen Anderson1defe2d2007-08-16 22:51:56 +0000778
Chris Lattner88365bb2008-03-21 21:14:38 +0000779 Instruction* inst = dyn_cast<Instruction>(constVal);
780 if (!inst)
781 return constVal;
782
Owen Andersona472c4a2008-05-12 20:15:55 +0000783 if (DT.dominates(inst, p))
Chris Lattner88365bb2008-03-21 21:14:38 +0000784 if (isSafeReplacement(p, inst))
785 return inst;
Owen Anderson1defe2d2007-08-16 22:51:56 +0000786 return 0;
787}
Owen Anderson0cd32032007-07-25 19:57:03 +0000788
Owen Anderson24866862007-09-16 08:04:16 +0000789bool GVN::isSafeReplacement(PHINode* p, Instruction* inst) {
790 if (!isa<PHINode>(inst))
791 return true;
792
793 for (Instruction::use_iterator UI = p->use_begin(), E = p->use_end();
794 UI != E; ++UI)
795 if (PHINode* use_phi = dyn_cast<PHINode>(UI))
796 if (use_phi->getParent() == inst->getParent())
797 return false;
798
799 return true;
800}
801
Owen Anderson45537912007-07-26 18:26:51 +0000802/// GetValueForBlock - Get the value to use within the specified basic block.
803/// available values are in Phis.
804Value *GVN::GetValueForBlock(BasicBlock *BB, LoadInst* orig,
Chris Lattner88365bb2008-03-21 21:14:38 +0000805 DenseMap<BasicBlock*, Value*> &Phis,
806 bool top_level) {
Owen Anderson45537912007-07-26 18:26:51 +0000807
808 // If we have already computed this value, return the previously computed val.
Owen Andersonab870272007-08-03 19:59:35 +0000809 DenseMap<BasicBlock*, Value*>::iterator V = Phis.find(BB);
810 if (V != Phis.end() && !top_level) return V->second;
Owen Anderson45537912007-07-26 18:26:51 +0000811
Owen Andersoncb29a4f2008-07-02 18:15:31 +0000812 // If the block is unreachable, just return undef, since this path
813 // can't actually occur at runtime.
814 if (!getAnalysis<DominatorTree>().isReachableFromEntry(BB))
815 return Phis[BB] = UndefValue::get(orig->getType());
Owen Andersonf2aa1602008-07-02 17:20:16 +0000816
Owen Anderson90660202007-08-01 22:01:54 +0000817 BasicBlock* singlePred = BB->getSinglePredecessor();
Owen Anderson4b55c3b2007-08-03 11:03:26 +0000818 if (singlePred) {
Owen Andersonab870272007-08-03 19:59:35 +0000819 Value *ret = GetValueForBlock(singlePred, orig, Phis);
820 Phis[BB] = ret;
821 return ret;
Owen Anderson4b55c3b2007-08-03 11:03:26 +0000822 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000823
Owen Anderson45537912007-07-26 18:26:51 +0000824 // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so
825 // now, then get values to fill in the incoming values for the PHI.
Gabor Greif051a9502008-04-06 20:25:17 +0000826 PHINode *PN = PHINode::Create(orig->getType(), orig->getName()+".rle",
827 BB->begin());
Owen Anderson45537912007-07-26 18:26:51 +0000828 PN->reserveOperandSpace(std::distance(pred_begin(BB), pred_end(BB)));
Owen Andersonab870272007-08-03 19:59:35 +0000829
830 if (Phis.count(BB) == 0)
831 Phis.insert(std::make_pair(BB, PN));
Owen Anderson4f9ba7c2007-07-30 16:57:08 +0000832
Owen Anderson45537912007-07-26 18:26:51 +0000833 // Fill in the incoming values for the block.
Owen Anderson054ab942007-07-31 17:43:14 +0000834 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
835 Value* val = GetValueForBlock(*PI, orig, Phis);
Owen Anderson054ab942007-07-31 17:43:14 +0000836 PN->addIncoming(val, *PI);
837 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000838
Owen Andersona472c4a2008-05-12 20:15:55 +0000839 AliasAnalysis& AA = getAnalysis<AliasAnalysis>();
840 AA.copyValue(orig, PN);
Owen Anderson054ab942007-07-31 17:43:14 +0000841
Owen Anderson62bc33c2007-08-16 22:02:55 +0000842 // Attempt to collapse PHI nodes that are trivially redundant
Owen Anderson1defe2d2007-08-16 22:51:56 +0000843 Value* v = CollapsePhi(PN);
Chris Lattner88365bb2008-03-21 21:14:38 +0000844 if (!v) {
845 // Cache our phi construction results
846 phiMap[orig->getPointerOperand()].insert(PN);
847 return PN;
Owen Anderson054ab942007-07-31 17:43:14 +0000848 }
Owen Andersona472c4a2008-05-12 20:15:55 +0000849
850 MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
Owen Anderson054ab942007-07-31 17:43:14 +0000851
Owen Andersona472c4a2008-05-12 20:15:55 +0000852 MD.removeInstruction(PN);
Chris Lattner88365bb2008-03-21 21:14:38 +0000853 PN->replaceAllUsesWith(v);
854
855 for (DenseMap<BasicBlock*, Value*>::iterator I = Phis.begin(),
856 E = Phis.end(); I != E; ++I)
857 if (I->second == PN)
858 I->second = v;
859
860 PN->eraseFromParent();
861
862 Phis[BB] = v;
863 return v;
Owen Anderson0cd32032007-07-25 19:57:03 +0000864}
865
Owen Anderson62bc33c2007-08-16 22:02:55 +0000866/// processNonLocalLoad - Attempt to eliminate a load whose dependencies are
867/// non-local by performing PHI construction.
Owen Anderson830db6a2007-08-02 18:16:06 +0000868bool GVN::processNonLocalLoad(LoadInst* L,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000869 SmallVectorImpl<Instruction*> &toErase) {
Owen Andersona472c4a2008-05-12 20:15:55 +0000870 MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
871
Owen Anderson62bc33c2007-08-16 22:02:55 +0000872 // Find the non-local dependencies of the load
Chris Lattner396a4a52008-11-29 21:33:22 +0000873 SmallVector<std::pair<BasicBlock*, MemDepResult>, 32> deps;
Owen Andersona472c4a2008-05-12 20:15:55 +0000874 MD.getNonLocalDependency(L, deps);
Owen Anderson0cd32032007-07-25 19:57:03 +0000875
Owen Anderson516eb1c2008-08-26 22:07:42 +0000876 // If we had to process more than one hundred blocks to find the
877 // dependencies, this load isn't worth worrying about. Optimizing
878 // it will be too expensive.
879 if (deps.size() > 100)
880 return false;
881
Chris Lattner86b29ef2008-11-29 21:22:42 +0000882 BasicBlock *EntryBlock = &L->getParent()->getParent()->getEntryBlock();
883
Owen Anderson0cd32032007-07-25 19:57:03 +0000884 DenseMap<BasicBlock*, Value*> repl;
Owen Andersona37226a2007-08-07 23:12:31 +0000885
Owen Anderson62bc33c2007-08-16 22:02:55 +0000886 // Filter out useless results (non-locals, etc)
Chris Lattner396a4a52008-11-29 21:33:22 +0000887 for (SmallVector<std::pair<BasicBlock*, MemDepResult>, 32>::iterator
888 I = deps.begin(), E = deps.end(); I != E; ++I) {
Chris Lattner86b29ef2008-11-29 21:22:42 +0000889 if (I->second.isNone()) {
890 repl[I->first] = UndefValue::get(L->getType());
Owen Anderson45c83882007-07-30 17:29:24 +0000891 continue;
Chris Lattner86b29ef2008-11-29 21:22:42 +0000892 }
893
894 if (I->second.isNonLocal()) {
895 // If this is a non-local dependency in the entry block, then we depend on
896 // the value live-in at the start of the function. We could insert a load
897 // in the entry block to get this, but for now we'll just bail out.
898 // FIXME: Consider emitting a load in the entry block to catch this case!
899 if (I->first == EntryBlock)
900 return false;
901 continue;
902 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000903
Chris Lattner4c724002008-11-29 02:29:27 +0000904 if (StoreInst* S = dyn_cast<StoreInst>(I->second.getInst())) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000905 if (S->getPointerOperand() != L->getPointerOperand())
Owen Anderson0cd32032007-07-25 19:57:03 +0000906 return false;
Chris Lattner88365bb2008-03-21 21:14:38 +0000907 repl[I->first] = S->getOperand(0);
Chris Lattner4c724002008-11-29 02:29:27 +0000908 } else if (LoadInst* LD = dyn_cast<LoadInst>(I->second.getInst())) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000909 if (LD->getPointerOperand() != L->getPointerOperand())
Owen Anderson0cd32032007-07-25 19:57:03 +0000910 return false;
Chris Lattner88365bb2008-03-21 21:14:38 +0000911 repl[I->first] = LD;
Owen Anderson0cd32032007-07-25 19:57:03 +0000912 } else {
913 return false;
914 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000915 }
Owen Anderson0cd32032007-07-25 19:57:03 +0000916
Owen Anderson62bc33c2007-08-16 22:02:55 +0000917 // Use cached PHI construction information from previous runs
Owen Andersona37226a2007-08-07 23:12:31 +0000918 SmallPtrSet<Instruction*, 4>& p = phiMap[L->getPointerOperand()];
919 for (SmallPtrSet<Instruction*, 4>::iterator I = p.begin(), E = p.end();
920 I != E; ++I) {
921 if ((*I)->getParent() == L->getParent()) {
Owen Andersona472c4a2008-05-12 20:15:55 +0000922 MD.removeInstruction(L);
Owen Andersona37226a2007-08-07 23:12:31 +0000923 L->replaceAllUsesWith(*I);
924 toErase.push_back(L);
925 NumGVNLoad++;
Owen Andersona37226a2007-08-07 23:12:31 +0000926 return true;
Owen Andersona37226a2007-08-07 23:12:31 +0000927 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000928
929 repl.insert(std::make_pair((*I)->getParent(), *I));
Owen Andersona37226a2007-08-07 23:12:31 +0000930 }
931
Owen Anderson62bc33c2007-08-16 22:02:55 +0000932 // Perform PHI construction
Owen Anderson0d169882007-07-25 22:03:06 +0000933 SmallPtrSet<BasicBlock*, 4> visited;
Owen Anderson1c2763d2007-08-02 17:56:05 +0000934 Value* v = GetValueForBlock(L->getParent(), L, repl, true);
Owen Anderson0cd32032007-07-25 19:57:03 +0000935
Owen Andersona472c4a2008-05-12 20:15:55 +0000936 MD.removeInstruction(L);
Owen Anderson0cd32032007-07-25 19:57:03 +0000937 L->replaceAllUsesWith(v);
938 toErase.push_back(L);
Owen Andersona37226a2007-08-07 23:12:31 +0000939 NumGVNLoad++;
Owen Anderson0cd32032007-07-25 19:57:03 +0000940
941 return true;
942}
943
Owen Anderson62bc33c2007-08-16 22:02:55 +0000944/// processLoad - Attempt to eliminate a load, first by eliminating it
945/// locally, and then attempting non-local elimination if that fails.
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000946bool GVN::processLoad(LoadInst *L, DenseMap<Value*, LoadInst*> &lastLoad,
947 SmallVectorImpl<Instruction*> &toErase) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000948 if (L->isVolatile()) {
949 lastLoad[L->getPointerOperand()] = L;
950 return false;
951 }
952
953 Value* pointer = L->getPointerOperand();
954 LoadInst*& last = lastLoad[pointer];
955
956 // ... to a pointer that has been loaded from before...
Owen Andersona472c4a2008-05-12 20:15:55 +0000957 MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
Owen Anderson8e8278e2007-08-14 17:59:48 +0000958 bool removedNonLocal = false;
Chris Lattner4c724002008-11-29 02:29:27 +0000959 MemDepResult dep = MD.getDependency(L);
960 if (dep.isNonLocal() &&
Owen Anderson8e8278e2007-08-14 17:59:48 +0000961 L->getParent() != &L->getParent()->getParent()->getEntryBlock()) {
962 removedNonLocal = processNonLocalLoad(L, toErase);
963
964 if (!removedNonLocal)
965 last = L;
966
967 return removedNonLocal;
968 }
969
970
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000971 bool deletedLoad = false;
972
Owen Anderson62bc33c2007-08-16 22:02:55 +0000973 // Walk up the dependency chain until we either find
974 // a dependency we can use, or we can't walk any further
Chris Lattner4c724002008-11-29 02:29:27 +0000975 while (Instruction *DepInst = dep.getInst()) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000976 // ... that depends on a store ...
Chris Lattner4c724002008-11-29 02:29:27 +0000977 if (StoreInst* S = dyn_cast<StoreInst>(DepInst)) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000978 if (S->getPointerOperand() == pointer) {
979 // Remove it!
Owen Andersona472c4a2008-05-12 20:15:55 +0000980 MD.removeInstruction(L);
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000981
982 L->replaceAllUsesWith(S->getOperand(0));
983 toErase.push_back(L);
984 deletedLoad = true;
985 NumGVNLoad++;
986 }
987
988 // Whether we removed it or not, we can't
989 // go any further
990 break;
Chris Lattner4c724002008-11-29 02:29:27 +0000991 } else if (!isa<LoadInst>(DepInst)) {
992 // Only want to handle loads below.
993 break;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000994 } else if (!last) {
995 // If we don't depend on a store, and we haven't
996 // been loaded before, bail.
997 break;
Chris Lattner4c724002008-11-29 02:29:27 +0000998 } else if (DepInst == last) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000999 // Remove it!
Owen Andersona472c4a2008-05-12 20:15:55 +00001000 MD.removeInstruction(L);
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001001
1002 L->replaceAllUsesWith(last);
1003 toErase.push_back(L);
1004 deletedLoad = true;
1005 NumGVNLoad++;
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001006 break;
1007 } else {
Chris Lattner5391a1d2008-11-29 03:47:00 +00001008 dep = MD.getDependencyFrom(L, DepInst, DepInst->getParent());
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001009 }
1010 }
Eli Friedmanb6c36e42008-02-12 12:08:14 +00001011
Chris Lattner237a8282008-11-30 01:39:32 +00001012 // If this load really doesn't depend on anything, then we must be loading an
1013 // undef value. This can happen when loading for a fresh allocation with no
1014 // intervening stores, for example.
1015 if (dep.isNone()) {
1016 // If this load depends directly on an allocation, there isn't
1017 // anything stored there; therefore, we can optimize this load
1018 // to undef.
1019 MD.removeInstruction(L);
1020 L->replaceAllUsesWith(UndefValue::get(L->getType()));
1021 toErase.push_back(L);
1022 deletedLoad = true;
1023 NumGVNLoad++;
Eli Friedmanb6c36e42008-02-12 12:08:14 +00001024 }
1025
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001026 if (!deletedLoad)
1027 last = L;
1028
1029 return deletedLoad;
1030}
1031
Owen Anderson6fafe842008-06-20 01:15:47 +00001032Value* GVN::lookupNumber(BasicBlock* BB, uint32_t num) {
Owen Andersonb70a5712008-06-23 17:49:45 +00001033 DenseMap<BasicBlock*, ValueNumberScope*>::iterator I = localAvail.find(BB);
1034 if (I == localAvail.end())
1035 return 0;
1036
1037 ValueNumberScope* locals = I->second;
Owen Anderson6fafe842008-06-20 01:15:47 +00001038
1039 while (locals) {
1040 DenseMap<uint32_t, Value*>::iterator I = locals->table.find(num);
1041 if (I != locals->table.end())
1042 return I->second;
1043 else
1044 locals = locals->parent;
1045 }
1046
1047 return 0;
1048}
1049
Owen Anderson36057c72007-08-14 18:16:29 +00001050/// processInstruction - When calculating availability, handle an instruction
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001051/// by inserting it into the appropriate sets
Owen Andersonaf4240a2008-06-12 19:25:32 +00001052bool GVN::processInstruction(Instruction *I,
Chris Lattner8e1e95c2008-03-21 22:01:16 +00001053 DenseMap<Value*, LoadInst*> &lastSeenLoad,
1054 SmallVectorImpl<Instruction*> &toErase) {
Owen Andersonb2303722008-06-18 21:41:49 +00001055 if (LoadInst* L = dyn_cast<LoadInst>(I)) {
1056 bool changed = processLoad(L, lastSeenLoad, toErase);
1057
1058 if (!changed) {
1059 unsigned num = VN.lookup_or_add(L);
Owen Anderson6fafe842008-06-20 01:15:47 +00001060 localAvail[I->getParent()]->table.insert(std::make_pair(num, L));
Owen Andersonb2303722008-06-18 21:41:49 +00001061 }
1062
1063 return changed;
1064 }
1065
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001066 uint32_t nextNum = VN.getNextUnusedValueNumber();
Owen Andersonb2303722008-06-18 21:41:49 +00001067 unsigned num = VN.lookup_or_add(I);
Chris Lattner8e1e95c2008-03-21 22:01:16 +00001068
Owen Andersone5ffa902008-04-07 09:59:07 +00001069 // Allocations are always uniquely numbered, so we can save time and memory
1070 // by fast failing them.
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001071 if (isa<AllocationInst>(I) || isa<TerminatorInst>(I)) {
Owen Anderson6fafe842008-06-20 01:15:47 +00001072 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Andersone5ffa902008-04-07 09:59:07 +00001073 return false;
Owen Andersonb2303722008-06-18 21:41:49 +00001074 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001075
Owen Anderson62bc33c2007-08-16 22:02:55 +00001076 // Collapse PHI nodes
Owen Anderson31f49672007-08-14 18:33:27 +00001077 if (PHINode* p = dyn_cast<PHINode>(I)) {
Owen Anderson1defe2d2007-08-16 22:51:56 +00001078 Value* constVal = CollapsePhi(p);
Owen Anderson31f49672007-08-14 18:33:27 +00001079
1080 if (constVal) {
Owen Anderson1defe2d2007-08-16 22:51:56 +00001081 for (PhiMapType::iterator PI = phiMap.begin(), PE = phiMap.end();
1082 PI != PE; ++PI)
1083 if (PI->second.count(p))
1084 PI->second.erase(p);
Owen Anderson31f49672007-08-14 18:33:27 +00001085
Owen Anderson1defe2d2007-08-16 22:51:56 +00001086 p->replaceAllUsesWith(constVal);
1087 toErase.push_back(p);
Owen Andersonb2303722008-06-18 21:41:49 +00001088 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001089 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Anderson31f49672007-08-14 18:33:27 +00001090 }
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001091
1092 // If the number we were assigned was a brand new VN, then we don't
1093 // need to do a lookup to see if the number already exists
1094 // somewhere in the domtree: it can't!
1095 } else if (num == nextNum) {
1096 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1097
Owen Anderson62bc33c2007-08-16 22:02:55 +00001098 // Perform value-number based elimination
Owen Anderson6fafe842008-06-20 01:15:47 +00001099 } else if (Value* repl = lookupNumber(I->getParent(), num)) {
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001100 // Remove it!
Owen Andersona472c4a2008-05-12 20:15:55 +00001101 MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
1102 MD.removeInstruction(I);
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001103
Owen Andersonbf7d0bc2007-07-31 23:27:13 +00001104 VN.erase(I);
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001105 I->replaceAllUsesWith(repl);
1106 toErase.push_back(I);
1107 return true;
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001108 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001109 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001110 }
1111
1112 return false;
1113}
1114
1115// GVN::runOnFunction - This is the main transformation entry point for a
1116// function.
1117//
Owen Anderson3e75a422007-08-14 18:04:11 +00001118bool GVN::runOnFunction(Function& F) {
Owen Andersona472c4a2008-05-12 20:15:55 +00001119 VN.setAliasAnalysis(&getAnalysis<AliasAnalysis>());
1120 VN.setMemDep(&getAnalysis<MemoryDependenceAnalysis>());
1121 VN.setDomTree(&getAnalysis<DominatorTree>());
Owen Andersonb388ca92007-10-18 19:39:33 +00001122
Owen Anderson3e75a422007-08-14 18:04:11 +00001123 bool changed = false;
1124 bool shouldContinue = true;
1125
Owen Anderson5d0af032008-07-16 17:52:31 +00001126 // Merge unconditional branches, allowing PRE to catch more
1127 // optimization opportunities.
1128 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ) {
1129 BasicBlock* BB = FI;
1130 ++FI;
Owen Andersonb31b06d2008-07-17 00:01:40 +00001131 bool removedBlock = MergeBlockIntoPredecessor(BB, this);
1132 if (removedBlock) NumGVNBlocks++;
1133
1134 changed |= removedBlock;
Owen Anderson5d0af032008-07-16 17:52:31 +00001135 }
1136
Owen Anderson3e75a422007-08-14 18:04:11 +00001137 while (shouldContinue) {
1138 shouldContinue = iterateOnFunction(F);
1139 changed |= shouldContinue;
1140 }
1141
Owen Andersone98c54c2008-07-18 18:03:38 +00001142 if (EnablePRE) {
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001143 bool PREChanged = true;
1144 while (PREChanged) {
1145 PREChanged = performPRE(F);
Owen Andersone98c54c2008-07-18 18:03:38 +00001146 changed |= PREChanged;
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001147 }
Owen Andersone98c54c2008-07-18 18:03:38 +00001148 }
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001149
1150 cleanupGlobalSets();
1151
Owen Anderson3e75a422007-08-14 18:04:11 +00001152 return changed;
1153}
1154
1155
Owen Andersonaf4240a2008-06-12 19:25:32 +00001156bool GVN::processBlock(DomTreeNode* DTN) {
1157 BasicBlock* BB = DTN->getBlock();
Owen Andersonaf4240a2008-06-12 19:25:32 +00001158
1159 SmallVector<Instruction*, 8> toErase;
1160 DenseMap<Value*, LoadInst*> lastSeenLoad;
1161 bool changed_function = false;
Owen Andersonb2303722008-06-18 21:41:49 +00001162
1163 if (DTN->getIDom())
Owen Anderson6fafe842008-06-20 01:15:47 +00001164 localAvail[BB] =
1165 new ValueNumberScope(localAvail[DTN->getIDom()->getBlock()]);
1166 else
1167 localAvail[BB] = new ValueNumberScope(0);
Owen Andersonb2303722008-06-18 21:41:49 +00001168
Owen Andersonaf4240a2008-06-12 19:25:32 +00001169 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();
1170 BI != BE;) {
1171 changed_function |= processInstruction(BI, lastSeenLoad, toErase);
1172 if (toErase.empty()) {
1173 ++BI;
1174 continue;
1175 }
1176
1177 // If we need some instructions deleted, do it now.
1178 NumGVNInstr += toErase.size();
1179
1180 // Avoid iterator invalidation.
1181 bool AtStart = BI == BB->begin();
1182 if (!AtStart)
1183 --BI;
1184
1185 for (SmallVector<Instruction*, 4>::iterator I = toErase.begin(),
1186 E = toErase.end(); I != E; ++I)
1187 (*I)->eraseFromParent();
1188
1189 if (AtStart)
1190 BI = BB->begin();
1191 else
1192 ++BI;
1193
1194 toErase.clear();
1195 }
1196
Owen Andersonaf4240a2008-06-12 19:25:32 +00001197 return changed_function;
1198}
1199
Owen Andersonb2303722008-06-18 21:41:49 +00001200/// performPRE - Perform a purely local form of PRE that looks for diamond
1201/// control flow patterns and attempts to perform simple PRE at the join point.
1202bool GVN::performPRE(Function& F) {
1203 bool changed = false;
Owen Anderson5c274ee2008-06-19 19:54:19 +00001204 SmallVector<std::pair<TerminatorInst*, unsigned>, 4> toSplit;
Owen Andersonb2303722008-06-18 21:41:49 +00001205 for (df_iterator<BasicBlock*> DI = df_begin(&F.getEntryBlock()),
1206 DE = df_end(&F.getEntryBlock()); DI != DE; ++DI) {
1207 BasicBlock* CurrentBlock = *DI;
1208
1209 // Nothing to PRE in the entry block.
1210 if (CurrentBlock == &F.getEntryBlock()) continue;
1211
1212 for (BasicBlock::iterator BI = CurrentBlock->begin(),
1213 BE = CurrentBlock->end(); BI != BE; ) {
Owen Andersonb70a5712008-06-23 17:49:45 +00001214 if (isa<AllocationInst>(BI) || isa<TerminatorInst>(BI) ||
1215 isa<PHINode>(BI) || BI->mayReadFromMemory() ||
1216 BI->mayWriteToMemory()) {
Owen Andersonb2303722008-06-18 21:41:49 +00001217 BI++;
1218 continue;
1219 }
1220
1221 uint32_t valno = VN.lookup(BI);
1222
1223 // Look for the predecessors for PRE opportunities. We're
1224 // only trying to solve the basic diamond case, where
1225 // a value is computed in the successor and one predecessor,
1226 // but not the other. We also explicitly disallow cases
1227 // where the successor is its own predecessor, because they're
1228 // more complicated to get right.
1229 unsigned numWith = 0;
1230 unsigned numWithout = 0;
1231 BasicBlock* PREPred = 0;
Owen Anderson6fafe842008-06-20 01:15:47 +00001232 DenseMap<BasicBlock*, Value*> predMap;
Owen Andersonb2303722008-06-18 21:41:49 +00001233 for (pred_iterator PI = pred_begin(CurrentBlock),
1234 PE = pred_end(CurrentBlock); PI != PE; ++PI) {
1235 // We're not interested in PRE where the block is its
Owen Anderson6fafe842008-06-20 01:15:47 +00001236 // own predecessor, on in blocks with predecessors
1237 // that are not reachable.
1238 if (*PI == CurrentBlock) {
Owen Andersonb2303722008-06-18 21:41:49 +00001239 numWithout = 2;
Owen Anderson6fafe842008-06-20 01:15:47 +00001240 break;
1241 } else if (!localAvail.count(*PI)) {
1242 numWithout = 2;
1243 break;
1244 }
1245
1246 DenseMap<uint32_t, Value*>::iterator predV =
1247 localAvail[*PI]->table.find(valno);
1248 if (predV == localAvail[*PI]->table.end()) {
Owen Andersonb2303722008-06-18 21:41:49 +00001249 PREPred = *PI;
1250 numWithout++;
Owen Anderson6fafe842008-06-20 01:15:47 +00001251 } else if (predV->second == BI) {
Owen Andersonb2303722008-06-18 21:41:49 +00001252 numWithout = 2;
1253 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001254 predMap[*PI] = predV->second;
Owen Andersonb2303722008-06-18 21:41:49 +00001255 numWith++;
1256 }
1257 }
1258
1259 // Don't do PRE when it might increase code size, i.e. when
1260 // we would need to insert instructions in more than one pred.
1261 if (numWithout != 1 || numWith == 0) {
1262 BI++;
1263 continue;
1264 }
1265
Owen Anderson5c274ee2008-06-19 19:54:19 +00001266 // We can't do PRE safely on a critical edge, so instead we schedule
1267 // the edge to be split and perform the PRE the next time we iterate
1268 // on the function.
1269 unsigned succNum = 0;
1270 for (unsigned i = 0, e = PREPred->getTerminator()->getNumSuccessors();
1271 i != e; ++i)
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001272 if (PREPred->getTerminator()->getSuccessor(i) == CurrentBlock) {
Owen Anderson5c274ee2008-06-19 19:54:19 +00001273 succNum = i;
1274 break;
1275 }
1276
1277 if (isCriticalEdge(PREPred->getTerminator(), succNum)) {
1278 toSplit.push_back(std::make_pair(PREPred->getTerminator(), succNum));
1279 changed = true;
1280 BI++;
1281 continue;
1282 }
1283
Owen Andersonb2303722008-06-18 21:41:49 +00001284 // Instantiate the expression the in predecessor that lacked it.
1285 // Because we are going top-down through the block, all value numbers
1286 // will be available in the predecessor by the time we need them. Any
1287 // that weren't original present will have been instantiated earlier
1288 // in this loop.
1289 Instruction* PREInstr = BI->clone();
1290 bool success = true;
1291 for (unsigned i = 0; i < BI->getNumOperands(); ++i) {
1292 Value* op = BI->getOperand(i);
1293 if (isa<Argument>(op) || isa<Constant>(op) || isa<GlobalValue>(op))
1294 PREInstr->setOperand(i, op);
Owen Andersonc45996b2008-07-11 20:05:13 +00001295 else {
1296 Value* V = lookupNumber(PREPred, VN.lookup(op));
1297 if (!V) {
1298 success = false;
1299 break;
1300 } else
1301 PREInstr->setOperand(i, V);
1302 }
Owen Andersonb2303722008-06-18 21:41:49 +00001303 }
1304
1305 // Fail out if we encounter an operand that is not available in
1306 // the PRE predecessor. This is typically because of loads which
1307 // are not value numbered precisely.
1308 if (!success) {
1309 delete PREInstr;
1310 BI++;
1311 continue;
1312 }
1313
1314 PREInstr->insertBefore(PREPred->getTerminator());
1315 PREInstr->setName(BI->getName() + ".pre");
Owen Anderson6fafe842008-06-20 01:15:47 +00001316 predMap[PREPred] = PREInstr;
Owen Andersonb2303722008-06-18 21:41:49 +00001317 VN.add(PREInstr, valno);
1318 NumGVNPRE++;
1319
1320 // Update the availability map to include the new instruction.
Owen Anderson6fafe842008-06-20 01:15:47 +00001321 localAvail[PREPred]->table.insert(std::make_pair(valno, PREInstr));
Owen Andersonb2303722008-06-18 21:41:49 +00001322
1323 // Create a PHI to make the value available in this block.
1324 PHINode* Phi = PHINode::Create(BI->getType(),
1325 BI->getName() + ".pre-phi",
1326 CurrentBlock->begin());
1327 for (pred_iterator PI = pred_begin(CurrentBlock),
1328 PE = pred_end(CurrentBlock); PI != PE; ++PI)
Owen Anderson6fafe842008-06-20 01:15:47 +00001329 Phi->addIncoming(predMap[*PI], *PI);
Owen Andersonb2303722008-06-18 21:41:49 +00001330
1331 VN.add(Phi, valno);
Owen Anderson6fafe842008-06-20 01:15:47 +00001332 localAvail[CurrentBlock]->table[valno] = Phi;
Owen Andersonb2303722008-06-18 21:41:49 +00001333
1334 BI->replaceAllUsesWith(Phi);
Owen Anderson9da52dc2008-06-19 17:53:26 +00001335 VN.erase(BI);
Owen Andersonb2303722008-06-18 21:41:49 +00001336
1337 Instruction* erase = BI;
1338 BI++;
1339 erase->eraseFromParent();
1340
1341 changed = true;
1342 }
1343 }
1344
Owen Anderson5c274ee2008-06-19 19:54:19 +00001345 for (SmallVector<std::pair<TerminatorInst*, unsigned>, 4>::iterator
1346 I = toSplit.begin(), E = toSplit.end(); I != E; ++I)
1347 SplitCriticalEdge(I->first, I->second, this);
1348
Owen Andersone98c54c2008-07-18 18:03:38 +00001349 return changed || toSplit.size();
Owen Andersonb2303722008-06-18 21:41:49 +00001350}
1351
Owen Anderson961edc82008-07-15 16:28:06 +00001352// iterateOnFunction - Executes one iteration of GVN
Owen Anderson3e75a422007-08-14 18:04:11 +00001353bool GVN::iterateOnFunction(Function &F) {
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001354 DominatorTree &DT = getAnalysis<DominatorTree>();
1355
1356 cleanupGlobalSets();
Chris Lattner2e607012008-03-21 21:33:23 +00001357
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001358 // Top-down walk of the dominator tree
Owen Andersonb2303722008-06-18 21:41:49 +00001359 bool changed = false;
1360 for (df_iterator<DomTreeNode*> DI = df_begin(DT.getRootNode()),
1361 DE = df_end(DT.getRootNode()); DI != DE; ++DI)
1362 changed |= processBlock(*DI);
Owen Andersonaa0b6342008-06-19 19:57:25 +00001363
Owen Anderson5d0af032008-07-16 17:52:31 +00001364 return changed;
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001365}
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001366
1367void GVN::cleanupGlobalSets() {
1368 VN.clear();
1369 phiMap.clear();
1370
1371 for (DenseMap<BasicBlock*, ValueNumberScope*>::iterator
1372 I = localAvail.begin(), E = localAvail.end(); I != E; ++I)
1373 delete I->second;
1374 localAvail.clear();
1375}