blob: 4b9e2b0b502456cd423f46ca0e1726d5a2b485e5 [file] [log] [blame]
Chris Lattner72bc70d2008-12-05 07:49:08 +00001//===- GVN.cpp - Eliminate redundant values and loads ---------------------===//
Owen Anderson1ad2cb72007-07-24 17:55:58 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Owen Anderson1ad2cb72007-07-24 17:55:58 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass performs global value numbering to eliminate fully redundant
11// instructions. It also performs simple dead load elimination.
12//
Matthijs Kooijman845f5242008-06-05 07:55:49 +000013// Note that this pass does the value numbering itself, it does not use the
14// ValueNumbering analysis passes.
15//
Owen Anderson1ad2cb72007-07-24 17:55:58 +000016//===----------------------------------------------------------------------===//
17
18#define DEBUG_TYPE "gvn"
Owen Anderson1ad2cb72007-07-24 17:55:58 +000019#include "llvm/Transforms/Scalar.h"
Owen Anderson0cd32032007-07-25 19:57:03 +000020#include "llvm/BasicBlock.h"
Owen Anderson45537912007-07-26 18:26:51 +000021#include "llvm/Constants.h"
Owen Anderson1ad2cb72007-07-24 17:55:58 +000022#include "llvm/DerivedTypes.h"
Owen Anderson45537912007-07-26 18:26:51 +000023#include "llvm/Function.h"
24#include "llvm/Instructions.h"
25#include "llvm/Value.h"
Owen Anderson1ad2cb72007-07-24 17:55:58 +000026#include "llvm/ADT/DenseMap.h"
27#include "llvm/ADT/DepthFirstIterator.h"
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 Lattnerc89c6a92008-12-02 08:16:11 +000046STATISTIC(NumPRELoad, "Number of loads PRE'd");
Chris Lattnerd27290d2008-03-22 04:13:49 +000047
Evan Cheng88d11c02008-06-20 01:01:07 +000048static cl::opt<bool> EnablePRE("enable-pre",
Owen Andersonc2b856e2008-07-17 19:41:00 +000049 cl::init(true), cl::Hidden);
Chris Lattner72bc70d2008-12-05 07:49:08 +000050cl::opt<bool> EnableLoadPRE("enable-load-pre"/*, cl::init(true)*/);
Owen Andersonaa0b6342008-06-19 19:57:25 +000051
Owen Anderson1ad2cb72007-07-24 17:55:58 +000052//===----------------------------------------------------------------------===//
53// ValueTable Class
54//===----------------------------------------------------------------------===//
55
56/// This class holds the mapping between values and value numbers. It is used
57/// as an efficient mechanism to determine the expression-wise equivalence of
58/// two values.
59namespace {
60 struct VISIBILITY_HIDDEN Expression {
61 enum ExpressionOpcode { ADD, SUB, MUL, UDIV, SDIV, FDIV, UREM, SREM,
62 FREM, SHL, LSHR, ASHR, AND, OR, XOR, ICMPEQ,
63 ICMPNE, ICMPUGT, ICMPUGE, ICMPULT, ICMPULE,
64 ICMPSGT, ICMPSGE, ICMPSLT, ICMPSLE, FCMPOEQ,
65 FCMPOGT, FCMPOGE, FCMPOLT, FCMPOLE, FCMPONE,
66 FCMPORD, FCMPUNO, FCMPUEQ, FCMPUGT, FCMPUGE,
67 FCMPULT, FCMPULE, FCMPUNE, EXTRACT, INSERT,
68 SHUFFLE, SELECT, TRUNC, ZEXT, SEXT, FPTOUI,
69 FPTOSI, UITOFP, SITOFP, FPTRUNC, FPEXT,
Owen Anderson3b3f58c2008-05-13 08:17:22 +000070 PTRTOINT, INTTOPTR, BITCAST, GEP, CALL, CONSTANT,
Owen Anderson3cd8eb32008-06-19 17:25:39 +000071 EMPTY, TOMBSTONE };
Owen Anderson1ad2cb72007-07-24 17:55:58 +000072
73 ExpressionOpcode opcode;
74 const Type* type;
75 uint32_t firstVN;
76 uint32_t secondVN;
77 uint32_t thirdVN;
78 SmallVector<uint32_t, 4> varargs;
Owen Andersonb388ca92007-10-18 19:39:33 +000079 Value* function;
Owen Anderson1ad2cb72007-07-24 17:55:58 +000080
81 Expression() { }
82 Expression(ExpressionOpcode o) : opcode(o) { }
83
84 bool operator==(const Expression &other) const {
85 if (opcode != other.opcode)
86 return false;
87 else if (opcode == EMPTY || opcode == TOMBSTONE)
88 return true;
89 else if (type != other.type)
90 return false;
Owen Andersonb388ca92007-10-18 19:39:33 +000091 else if (function != other.function)
92 return false;
Owen Anderson1ad2cb72007-07-24 17:55:58 +000093 else if (firstVN != other.firstVN)
94 return false;
95 else if (secondVN != other.secondVN)
96 return false;
97 else if (thirdVN != other.thirdVN)
98 return false;
99 else {
100 if (varargs.size() != other.varargs.size())
101 return false;
102
103 for (size_t i = 0; i < varargs.size(); ++i)
104 if (varargs[i] != other.varargs[i])
105 return false;
106
107 return true;
108 }
109 }
110
111 bool operator!=(const Expression &other) const {
112 if (opcode != other.opcode)
113 return true;
114 else if (opcode == EMPTY || opcode == TOMBSTONE)
115 return false;
116 else if (type != other.type)
117 return true;
Owen Andersonb388ca92007-10-18 19:39:33 +0000118 else if (function != other.function)
119 return true;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000120 else if (firstVN != other.firstVN)
121 return true;
122 else if (secondVN != other.secondVN)
123 return true;
124 else if (thirdVN != other.thirdVN)
125 return true;
126 else {
127 if (varargs.size() != other.varargs.size())
128 return true;
129
130 for (size_t i = 0; i < varargs.size(); ++i)
131 if (varargs[i] != other.varargs[i])
132 return true;
133
134 return false;
135 }
136 }
137 };
138
139 class VISIBILITY_HIDDEN ValueTable {
140 private:
141 DenseMap<Value*, uint32_t> valueNumbering;
142 DenseMap<Expression, uint32_t> expressionNumbering;
Owen Andersona472c4a2008-05-12 20:15:55 +0000143 AliasAnalysis* AA;
144 MemoryDependenceAnalysis* MD;
145 DominatorTree* DT;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000146
147 uint32_t nextValueNumber;
148
149 Expression::ExpressionOpcode getOpcode(BinaryOperator* BO);
150 Expression::ExpressionOpcode getOpcode(CmpInst* C);
151 Expression::ExpressionOpcode getOpcode(CastInst* C);
152 Expression create_expression(BinaryOperator* BO);
153 Expression create_expression(CmpInst* C);
154 Expression create_expression(ShuffleVectorInst* V);
155 Expression create_expression(ExtractElementInst* C);
156 Expression create_expression(InsertElementInst* V);
157 Expression create_expression(SelectInst* V);
158 Expression create_expression(CastInst* C);
159 Expression create_expression(GetElementPtrInst* G);
Owen Andersonb388ca92007-10-18 19:39:33 +0000160 Expression create_expression(CallInst* C);
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000161 Expression create_expression(Constant* C);
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000162 public:
Owen Andersonb388ca92007-10-18 19:39:33 +0000163 ValueTable() : nextValueNumber(1) { }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000164 uint32_t lookup_or_add(Value* V);
165 uint32_t lookup(Value* V) const;
166 void add(Value* V, uint32_t num);
167 void clear();
168 void erase(Value* v);
169 unsigned size();
Owen Andersona472c4a2008-05-12 20:15:55 +0000170 void setAliasAnalysis(AliasAnalysis* A) { AA = A; }
Chris Lattner663e4412008-12-01 00:40:32 +0000171 AliasAnalysis *getAliasAnalysis() const { return AA; }
Owen Andersona472c4a2008-05-12 20:15:55 +0000172 void setMemDep(MemoryDependenceAnalysis* M) { MD = M; }
173 void setDomTree(DominatorTree* D) { DT = D; }
Owen Anderson0ae33ef2008-07-03 17:44:33 +0000174 uint32_t getNextUnusedValueNumber() { return nextValueNumber; }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000175 };
176}
177
178namespace llvm {
Chris Lattner76c1b972007-09-17 18:34:04 +0000179template <> struct DenseMapInfo<Expression> {
Owen Anderson830db6a2007-08-02 18:16:06 +0000180 static inline Expression getEmptyKey() {
181 return Expression(Expression::EMPTY);
182 }
183
184 static inline Expression getTombstoneKey() {
185 return Expression(Expression::TOMBSTONE);
186 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000187
188 static unsigned getHashValue(const Expression e) {
189 unsigned hash = e.opcode;
190
191 hash = e.firstVN + hash * 37;
192 hash = e.secondVN + hash * 37;
193 hash = e.thirdVN + hash * 37;
194
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000195 hash = ((unsigned)((uintptr_t)e.type >> 4) ^
196 (unsigned)((uintptr_t)e.type >> 9)) +
197 hash * 37;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000198
Owen Anderson830db6a2007-08-02 18:16:06 +0000199 for (SmallVector<uint32_t, 4>::const_iterator I = e.varargs.begin(),
200 E = e.varargs.end(); I != E; ++I)
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000201 hash = *I + hash * 37;
202
Anton Korobeynikov07e6e562008-02-20 11:26:25 +0000203 hash = ((unsigned)((uintptr_t)e.function >> 4) ^
204 (unsigned)((uintptr_t)e.function >> 9)) +
205 hash * 37;
Owen Andersonb388ca92007-10-18 19:39:33 +0000206
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000207 return hash;
208 }
Chris Lattner76c1b972007-09-17 18:34:04 +0000209 static bool isEqual(const Expression &LHS, const Expression &RHS) {
210 return LHS == RHS;
211 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000212 static bool isPod() { return true; }
213};
214}
215
216//===----------------------------------------------------------------------===//
217// ValueTable Internal Functions
218//===----------------------------------------------------------------------===//
Chris Lattner88365bb2008-03-21 21:14:38 +0000219Expression::ExpressionOpcode ValueTable::getOpcode(BinaryOperator* BO) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000220 switch(BO->getOpcode()) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000221 default: // THIS SHOULD NEVER HAPPEN
222 assert(0 && "Binary operator with unknown opcode?");
223 case Instruction::Add: return Expression::ADD;
224 case Instruction::Sub: return Expression::SUB;
225 case Instruction::Mul: return Expression::MUL;
226 case Instruction::UDiv: return Expression::UDIV;
227 case Instruction::SDiv: return Expression::SDIV;
228 case Instruction::FDiv: return Expression::FDIV;
229 case Instruction::URem: return Expression::UREM;
230 case Instruction::SRem: return Expression::SREM;
231 case Instruction::FRem: return Expression::FREM;
232 case Instruction::Shl: return Expression::SHL;
233 case Instruction::LShr: return Expression::LSHR;
234 case Instruction::AShr: return Expression::ASHR;
235 case Instruction::And: return Expression::AND;
236 case Instruction::Or: return Expression::OR;
237 case Instruction::Xor: return Expression::XOR;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000238 }
239}
240
241Expression::ExpressionOpcode ValueTable::getOpcode(CmpInst* C) {
Nate Begeman1d6e4092008-05-18 19:49:05 +0000242 if (isa<ICmpInst>(C) || isa<VICmpInst>(C)) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000243 switch (C->getPredicate()) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000244 default: // THIS SHOULD NEVER HAPPEN
245 assert(0 && "Comparison with unknown predicate?");
246 case ICmpInst::ICMP_EQ: return Expression::ICMPEQ;
247 case ICmpInst::ICMP_NE: return Expression::ICMPNE;
248 case ICmpInst::ICMP_UGT: return Expression::ICMPUGT;
249 case ICmpInst::ICMP_UGE: return Expression::ICMPUGE;
250 case ICmpInst::ICMP_ULT: return Expression::ICMPULT;
251 case ICmpInst::ICMP_ULE: return Expression::ICMPULE;
252 case ICmpInst::ICMP_SGT: return Expression::ICMPSGT;
253 case ICmpInst::ICMP_SGE: return Expression::ICMPSGE;
254 case ICmpInst::ICMP_SLT: return Expression::ICMPSLT;
255 case ICmpInst::ICMP_SLE: return Expression::ICMPSLE;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000256 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000257 }
Nate Begeman1d6e4092008-05-18 19:49:05 +0000258 assert((isa<FCmpInst>(C) || isa<VFCmpInst>(C)) && "Unknown compare");
Chris Lattner88365bb2008-03-21 21:14:38 +0000259 switch (C->getPredicate()) {
260 default: // THIS SHOULD NEVER HAPPEN
261 assert(0 && "Comparison with unknown predicate?");
262 case FCmpInst::FCMP_OEQ: return Expression::FCMPOEQ;
263 case FCmpInst::FCMP_OGT: return Expression::FCMPOGT;
264 case FCmpInst::FCMP_OGE: return Expression::FCMPOGE;
265 case FCmpInst::FCMP_OLT: return Expression::FCMPOLT;
266 case FCmpInst::FCMP_OLE: return Expression::FCMPOLE;
267 case FCmpInst::FCMP_ONE: return Expression::FCMPONE;
268 case FCmpInst::FCMP_ORD: return Expression::FCMPORD;
269 case FCmpInst::FCMP_UNO: return Expression::FCMPUNO;
270 case FCmpInst::FCMP_UEQ: return Expression::FCMPUEQ;
271 case FCmpInst::FCMP_UGT: return Expression::FCMPUGT;
272 case FCmpInst::FCMP_UGE: return Expression::FCMPUGE;
273 case FCmpInst::FCMP_ULT: return Expression::FCMPULT;
274 case FCmpInst::FCMP_ULE: return Expression::FCMPULE;
275 case FCmpInst::FCMP_UNE: return Expression::FCMPUNE;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000276 }
277}
278
Chris Lattner88365bb2008-03-21 21:14:38 +0000279Expression::ExpressionOpcode ValueTable::getOpcode(CastInst* C) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000280 switch(C->getOpcode()) {
Chris Lattner88365bb2008-03-21 21:14:38 +0000281 default: // THIS SHOULD NEVER HAPPEN
282 assert(0 && "Cast operator with unknown opcode?");
283 case Instruction::Trunc: return Expression::TRUNC;
284 case Instruction::ZExt: return Expression::ZEXT;
285 case Instruction::SExt: return Expression::SEXT;
286 case Instruction::FPToUI: return Expression::FPTOUI;
287 case Instruction::FPToSI: return Expression::FPTOSI;
288 case Instruction::UIToFP: return Expression::UITOFP;
289 case Instruction::SIToFP: return Expression::SITOFP;
290 case Instruction::FPTrunc: return Expression::FPTRUNC;
291 case Instruction::FPExt: return Expression::FPEXT;
292 case Instruction::PtrToInt: return Expression::PTRTOINT;
293 case Instruction::IntToPtr: return Expression::INTTOPTR;
294 case Instruction::BitCast: return Expression::BITCAST;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000295 }
296}
297
Owen Andersonb388ca92007-10-18 19:39:33 +0000298Expression ValueTable::create_expression(CallInst* C) {
299 Expression e;
300
301 e.type = C->getType();
302 e.firstVN = 0;
303 e.secondVN = 0;
304 e.thirdVN = 0;
305 e.function = C->getCalledFunction();
306 e.opcode = Expression::CALL;
307
308 for (CallInst::op_iterator I = C->op_begin()+1, E = C->op_end();
309 I != E; ++I)
Owen Anderson8f46c782008-04-11 05:11:49 +0000310 e.varargs.push_back(lookup_or_add(*I));
Owen Andersonb388ca92007-10-18 19:39:33 +0000311
312 return e;
313}
314
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000315Expression ValueTable::create_expression(BinaryOperator* BO) {
316 Expression e;
317
Owen Anderson8f46c782008-04-11 05:11:49 +0000318 e.firstVN = lookup_or_add(BO->getOperand(0));
319 e.secondVN = lookup_or_add(BO->getOperand(1));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000320 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000321 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000322 e.type = BO->getType();
323 e.opcode = getOpcode(BO);
324
325 return e;
326}
327
328Expression ValueTable::create_expression(CmpInst* C) {
329 Expression e;
330
Owen Anderson8f46c782008-04-11 05:11:49 +0000331 e.firstVN = lookup_or_add(C->getOperand(0));
332 e.secondVN = lookup_or_add(C->getOperand(1));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000333 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000334 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000335 e.type = C->getType();
336 e.opcode = getOpcode(C);
337
338 return e;
339}
340
341Expression ValueTable::create_expression(CastInst* C) {
342 Expression e;
343
Owen Anderson8f46c782008-04-11 05:11:49 +0000344 e.firstVN = lookup_or_add(C->getOperand(0));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000345 e.secondVN = 0;
346 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000347 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000348 e.type = C->getType();
349 e.opcode = getOpcode(C);
350
351 return e;
352}
353
354Expression ValueTable::create_expression(ShuffleVectorInst* S) {
355 Expression e;
356
Owen Anderson8f46c782008-04-11 05:11:49 +0000357 e.firstVN = lookup_or_add(S->getOperand(0));
358 e.secondVN = lookup_or_add(S->getOperand(1));
359 e.thirdVN = lookup_or_add(S->getOperand(2));
Owen Andersonb388ca92007-10-18 19:39:33 +0000360 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000361 e.type = S->getType();
362 e.opcode = Expression::SHUFFLE;
363
364 return e;
365}
366
367Expression ValueTable::create_expression(ExtractElementInst* E) {
368 Expression e;
369
Owen Anderson8f46c782008-04-11 05:11:49 +0000370 e.firstVN = lookup_or_add(E->getOperand(0));
371 e.secondVN = lookup_or_add(E->getOperand(1));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000372 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000373 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000374 e.type = E->getType();
375 e.opcode = Expression::EXTRACT;
376
377 return e;
378}
379
380Expression ValueTable::create_expression(InsertElementInst* I) {
381 Expression e;
382
Owen Anderson8f46c782008-04-11 05:11:49 +0000383 e.firstVN = lookup_or_add(I->getOperand(0));
384 e.secondVN = lookup_or_add(I->getOperand(1));
385 e.thirdVN = lookup_or_add(I->getOperand(2));
Owen Andersonb388ca92007-10-18 19:39:33 +0000386 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000387 e.type = I->getType();
388 e.opcode = Expression::INSERT;
389
390 return e;
391}
392
393Expression ValueTable::create_expression(SelectInst* I) {
394 Expression e;
395
Owen Anderson8f46c782008-04-11 05:11:49 +0000396 e.firstVN = lookup_or_add(I->getCondition());
397 e.secondVN = lookup_or_add(I->getTrueValue());
398 e.thirdVN = lookup_or_add(I->getFalseValue());
Owen Andersonb388ca92007-10-18 19:39:33 +0000399 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000400 e.type = I->getType();
401 e.opcode = Expression::SELECT;
402
403 return e;
404}
405
406Expression ValueTable::create_expression(GetElementPtrInst* G) {
407 Expression e;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000408
Owen Anderson8f46c782008-04-11 05:11:49 +0000409 e.firstVN = lookup_or_add(G->getPointerOperand());
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000410 e.secondVN = 0;
411 e.thirdVN = 0;
Owen Andersonb388ca92007-10-18 19:39:33 +0000412 e.function = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000413 e.type = G->getType();
414 e.opcode = Expression::GEP;
415
416 for (GetElementPtrInst::op_iterator I = G->idx_begin(), E = G->idx_end();
417 I != E; ++I)
Owen Anderson8f46c782008-04-11 05:11:49 +0000418 e.varargs.push_back(lookup_or_add(*I));
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000419
420 return e;
421}
422
423//===----------------------------------------------------------------------===//
424// ValueTable External Functions
425//===----------------------------------------------------------------------===//
426
Owen Andersonb2303722008-06-18 21:41:49 +0000427/// add - Insert a value into the table with a specified value number.
428void ValueTable::add(Value* V, uint32_t num) {
429 valueNumbering.insert(std::make_pair(V, num));
430}
431
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000432/// lookup_or_add - Returns the value number for the specified value, assigning
433/// it a new number if it did not have one before.
434uint32_t ValueTable::lookup_or_add(Value* V) {
435 DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
436 if (VI != valueNumbering.end())
437 return VI->second;
438
Owen Andersonb388ca92007-10-18 19:39:33 +0000439 if (CallInst* C = dyn_cast<CallInst>(V)) {
Owen Anderson8f46c782008-04-11 05:11:49 +0000440 if (AA->doesNotAccessMemory(C)) {
Owen Andersonb388ca92007-10-18 19:39:33 +0000441 Expression e = create_expression(C);
442
443 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
444 if (EI != expressionNumbering.end()) {
445 valueNumbering.insert(std::make_pair(V, EI->second));
446 return EI->second;
447 } else {
448 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
449 valueNumbering.insert(std::make_pair(V, nextValueNumber));
450
451 return nextValueNumber++;
452 }
Owen Anderson241f6532008-04-17 05:36:50 +0000453 } else if (AA->onlyReadsMemory(C)) {
454 Expression e = create_expression(C);
455
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000456 if (expressionNumbering.find(e) == expressionNumbering.end()) {
Owen Anderson241f6532008-04-17 05:36:50 +0000457 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
458 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000459 return nextValueNumber++;
460 }
Owen Anderson241f6532008-04-17 05:36:50 +0000461
Chris Lattner4c724002008-11-29 02:29:27 +0000462 MemDepResult local_dep = MD->getDependency(C);
Owen Andersonc4f406e2008-05-13 23:18:30 +0000463
Chris Lattnerb51deb92008-12-05 21:04:20 +0000464 if (!local_dep.isDef() && !local_dep.isNonLocal()) {
Owen Andersonc4f406e2008-05-13 23:18:30 +0000465 valueNumbering.insert(std::make_pair(V, nextValueNumber));
466 return nextValueNumber++;
Chris Lattner1440ac52008-11-30 23:39:23 +0000467 }
Chris Lattnerb51deb92008-12-05 21:04:20 +0000468
469 if (local_dep.isDef()) {
470 CallInst* local_cdep = cast<CallInst>(local_dep.getInst());
471
472 if (local_cdep->getNumOperands() != C->getNumOperands()) {
Owen Andersonc4f406e2008-05-13 23:18:30 +0000473 valueNumbering.insert(std::make_pair(V, nextValueNumber));
474 return nextValueNumber++;
475 }
Chris Lattnerb51deb92008-12-05 21:04:20 +0000476
Chris Lattner1440ac52008-11-30 23:39:23 +0000477 for (unsigned i = 1; i < C->getNumOperands(); ++i) {
478 uint32_t c_vn = lookup_or_add(C->getOperand(i));
479 uint32_t cd_vn = lookup_or_add(local_cdep->getOperand(i));
480 if (c_vn != cd_vn) {
481 valueNumbering.insert(std::make_pair(V, nextValueNumber));
482 return nextValueNumber++;
483 }
484 }
485
486 uint32_t v = lookup_or_add(local_cdep);
487 valueNumbering.insert(std::make_pair(V, v));
488 return v;
Owen Andersonc4f406e2008-05-13 23:18:30 +0000489 }
Chris Lattnerbf145d62008-12-01 01:15:42 +0000490
Chris Lattnerb51deb92008-12-05 21:04:20 +0000491 // Non-local case.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000492 const MemoryDependenceAnalysis::NonLocalDepInfo &deps =
493 MD->getNonLocalDependency(C);
Chris Lattnerb51deb92008-12-05 21:04:20 +0000494 // FIXME: call/call dependencies for readonly calls should return def, not
495 // clobber! Move the checking logic to MemDep!
Owen Anderson16db1f72008-05-13 13:41:23 +0000496 CallInst* cdep = 0;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000497
Chris Lattner1440ac52008-11-30 23:39:23 +0000498 // Check to see if we have a single dominating call instruction that is
499 // identical to C.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000500 for (unsigned i = 0, e = deps.size(); i != e; ++i) {
501 const MemoryDependenceAnalysis::NonLocalDepEntry *I = &deps[i];
Chris Lattner1440ac52008-11-30 23:39:23 +0000502 // Ignore non-local dependencies.
503 if (I->second.isNonLocal())
504 continue;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000505
Chris Lattner1440ac52008-11-30 23:39:23 +0000506 // We don't handle non-depedencies. If we already have a call, reject
507 // instruction dependencies.
Chris Lattnerb51deb92008-12-05 21:04:20 +0000508 if (I->second.isClobber() || cdep != 0) {
Chris Lattner1440ac52008-11-30 23:39:23 +0000509 cdep = 0;
510 break;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000511 }
Chris Lattner1440ac52008-11-30 23:39:23 +0000512
513 CallInst *NonLocalDepCall = dyn_cast<CallInst>(I->second.getInst());
514 // FIXME: All duplicated with non-local case.
515 if (NonLocalDepCall && DT->properlyDominates(I->first, C->getParent())){
516 cdep = NonLocalDepCall;
517 continue;
518 }
519
520 cdep = 0;
521 break;
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000522 }
523
Owen Anderson16db1f72008-05-13 13:41:23 +0000524 if (!cdep) {
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000525 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson241f6532008-04-17 05:36:50 +0000526 return nextValueNumber++;
527 }
528
Chris Lattnerb51deb92008-12-05 21:04:20 +0000529 if (cdep->getNumOperands() != C->getNumOperands()) {
Owen Anderson3b3f58c2008-05-13 08:17:22 +0000530 valueNumbering.insert(std::make_pair(V, nextValueNumber));
Owen Anderson241f6532008-04-17 05:36:50 +0000531 return nextValueNumber++;
Owen Anderson241f6532008-04-17 05:36:50 +0000532 }
Chris Lattner1440ac52008-11-30 23:39:23 +0000533 for (unsigned i = 1; i < C->getNumOperands(); ++i) {
534 uint32_t c_vn = lookup_or_add(C->getOperand(i));
535 uint32_t cd_vn = lookup_or_add(cdep->getOperand(i));
536 if (c_vn != cd_vn) {
537 valueNumbering.insert(std::make_pair(V, nextValueNumber));
538 return nextValueNumber++;
539 }
540 }
541
542 uint32_t v = lookup_or_add(cdep);
543 valueNumbering.insert(std::make_pair(V, v));
544 return v;
Owen Anderson241f6532008-04-17 05:36:50 +0000545
Owen Andersonb388ca92007-10-18 19:39:33 +0000546 } else {
547 valueNumbering.insert(std::make_pair(V, nextValueNumber));
548 return nextValueNumber++;
549 }
550 } else if (BinaryOperator* BO = dyn_cast<BinaryOperator>(V)) {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000551 Expression e = create_expression(BO);
552
553 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
554 if (EI != expressionNumbering.end()) {
555 valueNumbering.insert(std::make_pair(V, EI->second));
556 return EI->second;
557 } else {
558 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
559 valueNumbering.insert(std::make_pair(V, nextValueNumber));
560
561 return nextValueNumber++;
562 }
563 } else if (CmpInst* C = dyn_cast<CmpInst>(V)) {
564 Expression e = create_expression(C);
565
566 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
567 if (EI != expressionNumbering.end()) {
568 valueNumbering.insert(std::make_pair(V, EI->second));
569 return EI->second;
570 } else {
571 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
572 valueNumbering.insert(std::make_pair(V, nextValueNumber));
573
574 return nextValueNumber++;
575 }
576 } else if (ShuffleVectorInst* U = dyn_cast<ShuffleVectorInst>(V)) {
577 Expression e = create_expression(U);
578
579 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
580 if (EI != expressionNumbering.end()) {
581 valueNumbering.insert(std::make_pair(V, EI->second));
582 return EI->second;
583 } else {
584 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
585 valueNumbering.insert(std::make_pair(V, nextValueNumber));
586
587 return nextValueNumber++;
588 }
589 } else if (ExtractElementInst* U = dyn_cast<ExtractElementInst>(V)) {
590 Expression e = create_expression(U);
591
592 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
593 if (EI != expressionNumbering.end()) {
594 valueNumbering.insert(std::make_pair(V, EI->second));
595 return EI->second;
596 } else {
597 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
598 valueNumbering.insert(std::make_pair(V, nextValueNumber));
599
600 return nextValueNumber++;
601 }
602 } else if (InsertElementInst* U = dyn_cast<InsertElementInst>(V)) {
603 Expression e = create_expression(U);
604
605 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
606 if (EI != expressionNumbering.end()) {
607 valueNumbering.insert(std::make_pair(V, EI->second));
608 return EI->second;
609 } else {
610 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
611 valueNumbering.insert(std::make_pair(V, nextValueNumber));
612
613 return nextValueNumber++;
614 }
615 } else if (SelectInst* U = dyn_cast<SelectInst>(V)) {
616 Expression e = create_expression(U);
617
618 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
619 if (EI != expressionNumbering.end()) {
620 valueNumbering.insert(std::make_pair(V, EI->second));
621 return EI->second;
622 } else {
623 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
624 valueNumbering.insert(std::make_pair(V, nextValueNumber));
625
626 return nextValueNumber++;
627 }
628 } else if (CastInst* U = dyn_cast<CastInst>(V)) {
629 Expression e = create_expression(U);
630
631 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
632 if (EI != expressionNumbering.end()) {
633 valueNumbering.insert(std::make_pair(V, EI->second));
634 return EI->second;
635 } else {
636 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
637 valueNumbering.insert(std::make_pair(V, nextValueNumber));
638
639 return nextValueNumber++;
640 }
641 } else if (GetElementPtrInst* U = dyn_cast<GetElementPtrInst>(V)) {
642 Expression e = create_expression(U);
643
644 DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
645 if (EI != expressionNumbering.end()) {
646 valueNumbering.insert(std::make_pair(V, EI->second));
647 return EI->second;
648 } else {
649 expressionNumbering.insert(std::make_pair(e, nextValueNumber));
650 valueNumbering.insert(std::make_pair(V, nextValueNumber));
651
652 return nextValueNumber++;
653 }
654 } else {
655 valueNumbering.insert(std::make_pair(V, nextValueNumber));
656 return nextValueNumber++;
657 }
658}
659
660/// lookup - Returns the value number of the specified value. Fails if
661/// the value has not yet been numbered.
662uint32_t ValueTable::lookup(Value* V) const {
663 DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
Chris Lattner88365bb2008-03-21 21:14:38 +0000664 assert(VI != valueNumbering.end() && "Value not numbered?");
665 return VI->second;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000666}
667
668/// clear - Remove all entries from the ValueTable
669void ValueTable::clear() {
670 valueNumbering.clear();
671 expressionNumbering.clear();
672 nextValueNumber = 1;
673}
674
Owen Andersonbf7d0bc2007-07-31 23:27:13 +0000675/// erase - Remove a value from the value numbering
676void ValueTable::erase(Value* V) {
677 valueNumbering.erase(V);
678}
679
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000680//===----------------------------------------------------------------------===//
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000681// GVN Pass
682//===----------------------------------------------------------------------===//
683
684namespace {
Owen Anderson6fafe842008-06-20 01:15:47 +0000685 struct VISIBILITY_HIDDEN ValueNumberScope {
686 ValueNumberScope* parent;
687 DenseMap<uint32_t, Value*> table;
688
689 ValueNumberScope(ValueNumberScope* p) : parent(p) { }
690 };
691}
692
693namespace {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000694
695 class VISIBILITY_HIDDEN GVN : public FunctionPass {
696 bool runOnFunction(Function &F);
697 public:
698 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +0000699 GVN() : FunctionPass(&ID) { }
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000700
701 private:
Chris Lattner663e4412008-12-01 00:40:32 +0000702 MemoryDependenceAnalysis *MD;
703 DominatorTree *DT;
704
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000705 ValueTable VN;
Owen Anderson6fafe842008-06-20 01:15:47 +0000706 DenseMap<BasicBlock*, ValueNumberScope*> localAvail;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000707
Owen Andersona37226a2007-08-07 23:12:31 +0000708 typedef DenseMap<Value*, SmallPtrSet<Instruction*, 4> > PhiMapType;
709 PhiMapType phiMap;
710
711
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000712 // This transformation requires dominator postdominator info
713 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000714 AU.addRequired<DominatorTree>();
715 AU.addRequired<MemoryDependenceAnalysis>();
Owen Andersonb388ca92007-10-18 19:39:33 +0000716 AU.addRequired<AliasAnalysis>();
Owen Andersonb70a5712008-06-23 17:49:45 +0000717
718 AU.addPreserved<DominatorTree>();
Owen Andersonb388ca92007-10-18 19:39:33 +0000719 AU.addPreserved<AliasAnalysis>();
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000720 }
721
722 // Helper fuctions
723 // FIXME: eliminate or document these better
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000724 bool processLoad(LoadInst* L,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000725 SmallVectorImpl<Instruction*> &toErase);
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000726 bool processInstruction(Instruction* I,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000727 SmallVectorImpl<Instruction*> &toErase);
Owen Anderson830db6a2007-08-02 18:16:06 +0000728 bool processNonLocalLoad(LoadInst* L,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000729 SmallVectorImpl<Instruction*> &toErase);
Owen Andersonaf4240a2008-06-12 19:25:32 +0000730 bool processBlock(DomTreeNode* DTN);
Owen Anderson45537912007-07-26 18:26:51 +0000731 Value *GetValueForBlock(BasicBlock *BB, LoadInst* orig,
Owen Anderson1c2763d2007-08-02 17:56:05 +0000732 DenseMap<BasicBlock*, Value*> &Phis,
733 bool top_level = false);
Owen Andersonb2303722008-06-18 21:41:49 +0000734 void dump(DenseMap<uint32_t, Value*>& d);
Owen Anderson3e75a422007-08-14 18:04:11 +0000735 bool iterateOnFunction(Function &F);
Owen Anderson1defe2d2007-08-16 22:51:56 +0000736 Value* CollapsePhi(PHINode* p);
Owen Anderson24866862007-09-16 08:04:16 +0000737 bool isSafeReplacement(PHINode* p, Instruction* inst);
Owen Andersonb2303722008-06-18 21:41:49 +0000738 bool performPRE(Function& F);
Owen Anderson6fafe842008-06-20 01:15:47 +0000739 Value* lookupNumber(BasicBlock* BB, uint32_t num);
Owen Anderson961edc82008-07-15 16:28:06 +0000740 bool mergeBlockIntoPredecessor(BasicBlock* BB);
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +0000741 void cleanupGlobalSets();
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000742 };
743
744 char GVN::ID = 0;
Owen Anderson1ad2cb72007-07-24 17:55:58 +0000745}
746
747// createGVNPass - The public interface to this file...
748FunctionPass *llvm::createGVNPass() { return new GVN(); }
749
750static RegisterPass<GVN> X("gvn",
751 "Global Value Numbering");
752
Owen Andersonb2303722008-06-18 21:41:49 +0000753void GVN::dump(DenseMap<uint32_t, Value*>& d) {
Owen Anderson0cd32032007-07-25 19:57:03 +0000754 printf("{\n");
Owen Andersonb2303722008-06-18 21:41:49 +0000755 for (DenseMap<uint32_t, Value*>::iterator I = d.begin(),
Owen Anderson0cd32032007-07-25 19:57:03 +0000756 E = d.end(); I != E; ++I) {
Owen Andersonb2303722008-06-18 21:41:49 +0000757 printf("%d\n", I->first);
Owen Anderson0cd32032007-07-25 19:57:03 +0000758 I->second->dump();
759 }
760 printf("}\n");
761}
762
Owen Anderson1defe2d2007-08-16 22:51:56 +0000763Value* GVN::CollapsePhi(PHINode* p) {
Owen Anderson1defe2d2007-08-16 22:51:56 +0000764 Value* constVal = p->hasConstantValue();
Chris Lattner88365bb2008-03-21 21:14:38 +0000765 if (!constVal) return 0;
Owen Anderson1defe2d2007-08-16 22:51:56 +0000766
Chris Lattner88365bb2008-03-21 21:14:38 +0000767 Instruction* inst = dyn_cast<Instruction>(constVal);
768 if (!inst)
769 return constVal;
770
Chris Lattner663e4412008-12-01 00:40:32 +0000771 if (DT->dominates(inst, p))
Chris Lattner88365bb2008-03-21 21:14:38 +0000772 if (isSafeReplacement(p, inst))
773 return inst;
Owen Anderson1defe2d2007-08-16 22:51:56 +0000774 return 0;
775}
Owen Anderson0cd32032007-07-25 19:57:03 +0000776
Owen Anderson24866862007-09-16 08:04:16 +0000777bool GVN::isSafeReplacement(PHINode* p, Instruction* inst) {
778 if (!isa<PHINode>(inst))
779 return true;
780
781 for (Instruction::use_iterator UI = p->use_begin(), E = p->use_end();
782 UI != E; ++UI)
783 if (PHINode* use_phi = dyn_cast<PHINode>(UI))
784 if (use_phi->getParent() == inst->getParent())
785 return false;
786
787 return true;
788}
789
Owen Anderson45537912007-07-26 18:26:51 +0000790/// GetValueForBlock - Get the value to use within the specified basic block.
791/// available values are in Phis.
792Value *GVN::GetValueForBlock(BasicBlock *BB, LoadInst* orig,
Chris Lattner88365bb2008-03-21 21:14:38 +0000793 DenseMap<BasicBlock*, Value*> &Phis,
794 bool top_level) {
Owen Anderson45537912007-07-26 18:26:51 +0000795
796 // If we have already computed this value, return the previously computed val.
Owen Andersonab870272007-08-03 19:59:35 +0000797 DenseMap<BasicBlock*, Value*>::iterator V = Phis.find(BB);
798 if (V != Phis.end() && !top_level) return V->second;
Owen Anderson45537912007-07-26 18:26:51 +0000799
Owen Andersoncb29a4f2008-07-02 18:15:31 +0000800 // If the block is unreachable, just return undef, since this path
801 // can't actually occur at runtime.
Chris Lattner663e4412008-12-01 00:40:32 +0000802 if (!DT->isReachableFromEntry(BB))
Owen Andersoncb29a4f2008-07-02 18:15:31 +0000803 return Phis[BB] = UndefValue::get(orig->getType());
Owen Andersonf2aa1602008-07-02 17:20:16 +0000804
Chris Lattnerae199312008-12-09 19:21:47 +0000805 if (BasicBlock *Pred = BB->getSinglePredecessor()) {
806 Value *ret = GetValueForBlock(Pred, orig, Phis);
Owen Andersonab870272007-08-03 19:59:35 +0000807 Phis[BB] = ret;
808 return ret;
Owen Anderson4b55c3b2007-08-03 11:03:26 +0000809 }
Chris Lattnerae199312008-12-09 19:21:47 +0000810
811 // Get the number of predecessors of this block so we can reserve space later.
812 // If there is already a PHI in it, use the #preds from it, otherwise count.
813 // Getting it from the PHI is constant time.
814 unsigned NumPreds;
815 if (PHINode *ExistingPN = dyn_cast<PHINode>(BB->begin()))
816 NumPreds = ExistingPN->getNumIncomingValues();
817 else
818 NumPreds = std::distance(pred_begin(BB), pred_end(BB));
Chris Lattner88365bb2008-03-21 21:14:38 +0000819
Owen Anderson45537912007-07-26 18:26:51 +0000820 // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so
821 // now, then get values to fill in the incoming values for the PHI.
Gabor Greif051a9502008-04-06 20:25:17 +0000822 PHINode *PN = PHINode::Create(orig->getType(), orig->getName()+".rle",
823 BB->begin());
Chris Lattnerae199312008-12-09 19:21:47 +0000824 PN->reserveOperandSpace(NumPreds);
Owen Andersonab870272007-08-03 19:59:35 +0000825
Chris Lattnerae199312008-12-09 19:21:47 +0000826 Phis.insert(std::make_pair(BB, PN));
Owen Anderson4f9ba7c2007-07-30 16:57:08 +0000827
Owen Anderson45537912007-07-26 18:26:51 +0000828 // Fill in the incoming values for the block.
Owen Anderson054ab942007-07-31 17:43:14 +0000829 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
830 Value* val = GetValueForBlock(*PI, orig, Phis);
Owen Anderson054ab942007-07-31 17:43:14 +0000831 PN->addIncoming(val, *PI);
832 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000833
Chris Lattner663e4412008-12-01 00:40:32 +0000834 VN.getAliasAnalysis()->copyValue(orig, PN);
Owen Anderson054ab942007-07-31 17:43:14 +0000835
Owen Anderson62bc33c2007-08-16 22:02:55 +0000836 // Attempt to collapse PHI nodes that are trivially redundant
Owen Anderson1defe2d2007-08-16 22:51:56 +0000837 Value* v = CollapsePhi(PN);
Chris Lattner88365bb2008-03-21 21:14:38 +0000838 if (!v) {
839 // Cache our phi construction results
840 phiMap[orig->getPointerOperand()].insert(PN);
841 return PN;
Owen Anderson054ab942007-07-31 17:43:14 +0000842 }
Owen Andersona472c4a2008-05-12 20:15:55 +0000843
Chris Lattner88365bb2008-03-21 21:14:38 +0000844 PN->replaceAllUsesWith(v);
845
846 for (DenseMap<BasicBlock*, Value*>::iterator I = Phis.begin(),
847 E = Phis.end(); I != E; ++I)
848 if (I->second == PN)
849 I->second = v;
850
Chris Lattner663e4412008-12-01 00:40:32 +0000851 DEBUG(cerr << "GVN removed: " << *PN);
852 MD->removeInstruction(PN);
Chris Lattner88365bb2008-03-21 21:14:38 +0000853 PN->eraseFromParent();
854
855 Phis[BB] = v;
856 return v;
Owen Anderson0cd32032007-07-25 19:57:03 +0000857}
858
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000859/// IsValueFullyAvailableInBlock - Return true if we can prove that the value
860/// we're analyzing is fully available in the specified block. As we go, keep
Chris Lattner72bc70d2008-12-05 07:49:08 +0000861/// track of which blocks we know are fully alive in FullyAvailableBlocks. This
862/// map is actually a tri-state map with the following values:
863/// 0) we know the block *is not* fully available.
864/// 1) we know the block *is* fully available.
865/// 2) we do not know whether the block is fully available or not, but we are
866/// currently speculating that it will be.
867/// 3) we are speculating for this block and have used that to speculate for
868/// other blocks.
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000869static bool IsValueFullyAvailableInBlock(BasicBlock *BB,
Chris Lattner72bc70d2008-12-05 07:49:08 +0000870 DenseMap<BasicBlock*, char> &FullyAvailableBlocks) {
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000871 // Optimistically assume that the block is fully available and check to see
872 // if we already know about this block in one lookup.
Chris Lattner72bc70d2008-12-05 07:49:08 +0000873 std::pair<DenseMap<BasicBlock*, char>::iterator, char> IV =
874 FullyAvailableBlocks.insert(std::make_pair(BB, 2));
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000875
876 // If the entry already existed for this block, return the precomputed value.
Chris Lattner72bc70d2008-12-05 07:49:08 +0000877 if (!IV.second) {
878 // If this is a speculative "available" value, mark it as being used for
879 // speculation of other blocks.
880 if (IV.first->second == 2)
881 IV.first->second = 3;
882 return IV.first->second != 0;
883 }
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000884
885 // Otherwise, see if it is fully available in all predecessors.
886 pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
887
888 // If this block has no predecessors, it isn't live-in here.
889 if (PI == PE)
Chris Lattner72bc70d2008-12-05 07:49:08 +0000890 goto SpeculationFailure;
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000891
892 for (; PI != PE; ++PI)
893 // If the value isn't fully available in one of our predecessors, then it
894 // isn't fully available in this block either. Undo our previous
895 // optimistic assumption and bail out.
896 if (!IsValueFullyAvailableInBlock(*PI, FullyAvailableBlocks))
Chris Lattner72bc70d2008-12-05 07:49:08 +0000897 goto SpeculationFailure;
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000898
899 return true;
Chris Lattner72bc70d2008-12-05 07:49:08 +0000900
901// SpeculationFailure - If we get here, we found out that this is not, after
902// all, a fully-available block. We have a problem if we speculated on this and
903// used the speculation to mark other blocks as available.
904SpeculationFailure:
905 char &BBVal = FullyAvailableBlocks[BB];
906
907 // If we didn't speculate on this, just return with it set to false.
908 if (BBVal == 2) {
909 BBVal = 0;
910 return false;
911 }
912
913 // If we did speculate on this value, we could have blocks set to 1 that are
914 // incorrect. Walk the (transitive) successors of this block and mark them as
915 // 0 if set to one.
916 SmallVector<BasicBlock*, 32> BBWorklist;
917 BBWorklist.push_back(BB);
918
919 while (!BBWorklist.empty()) {
920 BasicBlock *Entry = BBWorklist.pop_back_val();
921 // Note that this sets blocks to 0 (unavailable) if they happen to not
922 // already be in FullyAvailableBlocks. This is safe.
923 char &EntryVal = FullyAvailableBlocks[Entry];
924 if (EntryVal == 0) continue; // Already unavailable.
925
926 // Mark as unavailable.
927 EntryVal = 0;
928
929 for (succ_iterator I = succ_begin(Entry), E = succ_end(Entry); I != E; ++I)
930 BBWorklist.push_back(*I);
931 }
932
933 return false;
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000934}
935
Owen Anderson62bc33c2007-08-16 22:02:55 +0000936/// processNonLocalLoad - Attempt to eliminate a load whose dependencies are
937/// non-local by performing PHI construction.
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000938bool GVN::processNonLocalLoad(LoadInst *LI,
Chris Lattner8e1e95c2008-03-21 22:01:16 +0000939 SmallVectorImpl<Instruction*> &toErase) {
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000940 // Find the non-local dependencies of the load.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000941 const MemoryDependenceAnalysis::NonLocalDepInfo &deps =
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000942 MD->getNonLocalDependency(LI);
943 //DEBUG(cerr << "INVESTIGATING NONLOCAL LOAD: " << deps.size() << *LI);
Owen Anderson0cd32032007-07-25 19:57:03 +0000944
Owen Anderson516eb1c2008-08-26 22:07:42 +0000945 // If we had to process more than one hundred blocks to find the
946 // dependencies, this load isn't worth worrying about. Optimizing
947 // it will be too expensive.
948 if (deps.size() > 100)
949 return false;
950
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000951 BasicBlock *EntryBlock = &LI->getParent()->getParent()->getEntryBlock();
Chris Lattner86b29ef2008-11-29 21:22:42 +0000952
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000953 // Filter out useless results (non-locals, etc). Keep track of the blocks
954 // where we have a value available in repl, also keep track of whether we see
955 // dependencies that produce an unknown value for the load (such as a call
956 // that could potentially clobber the load).
957 SmallVector<std::pair<BasicBlock*, Value*>, 16> ValuesPerBlock;
958 SmallVector<BasicBlock*, 16> UnavailableBlocks;
Owen Andersona37226a2007-08-07 23:12:31 +0000959
Chris Lattnerbf145d62008-12-01 01:15:42 +0000960 for (unsigned i = 0, e = deps.size(); i != e; ++i) {
961 BasicBlock *DepBB = deps[i].first;
962 MemDepResult DepInfo = deps[i].second;
963
964 if (DepInfo.isNonLocal()) {
Chris Lattner86b29ef2008-11-29 21:22:42 +0000965 // If this is a non-local dependency in the entry block, then we depend on
966 // the value live-in at the start of the function. We could insert a load
967 // in the entry block to get this, but for now we'll just bail out.
Chris Lattnerbf145d62008-12-01 01:15:42 +0000968 if (DepBB == EntryBlock)
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000969 UnavailableBlocks.push_back(DepBB);
Chris Lattner86b29ef2008-11-29 21:22:42 +0000970 continue;
971 }
Chris Lattnerbf145d62008-12-01 01:15:42 +0000972
Chris Lattnerb51deb92008-12-05 21:04:20 +0000973 if (DepInfo.isClobber()) {
974 UnavailableBlocks.push_back(DepBB);
975 continue;
976 }
977
978 Instruction *DepInst = DepInfo.getInst();
979
980 // Loading the allocation -> undef.
981 if (isa<AllocationInst>(DepInst)) {
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000982 ValuesPerBlock.push_back(std::make_pair(DepBB,
983 UndefValue::get(LI->getType())));
Chris Lattnerbf145d62008-12-01 01:15:42 +0000984 continue;
985 }
Chris Lattner88365bb2008-03-21 21:14:38 +0000986
Chris Lattnerbf145d62008-12-01 01:15:42 +0000987 if (StoreInst* S = dyn_cast<StoreInst>(DepInfo.getInst())) {
Chris Lattner978796e2008-12-01 01:31:36 +0000988 // Reject loads and stores that are to the same address but are of
989 // different types.
990 // NOTE: 403.gcc does have this case (e.g. in readonly_fields_p) because
991 // of bitfield access, it would be interesting to optimize for it at some
992 // point.
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000993 if (S->getOperand(0)->getType() != LI->getType()) {
994 UnavailableBlocks.push_back(DepBB);
995 continue;
996 }
Chris Lattner978796e2008-12-01 01:31:36 +0000997
Chris Lattnerc89c6a92008-12-02 08:16:11 +0000998 ValuesPerBlock.push_back(std::make_pair(DepBB, S->getOperand(0)));
Chris Lattner978796e2008-12-01 01:31:36 +0000999
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001000 } else if (LoadInst* LD = dyn_cast<LoadInst>(DepInfo.getInst())) {
1001 if (LD->getType() != LI->getType()) {
1002 UnavailableBlocks.push_back(DepBB);
1003 continue;
1004 }
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001005 ValuesPerBlock.push_back(std::make_pair(DepBB, LD));
Owen Anderson0cd32032007-07-25 19:57:03 +00001006 } else {
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001007 UnavailableBlocks.push_back(DepBB);
1008 continue;
Owen Anderson0cd32032007-07-25 19:57:03 +00001009 }
Chris Lattner88365bb2008-03-21 21:14:38 +00001010 }
Owen Anderson0cd32032007-07-25 19:57:03 +00001011
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001012 // If we have no predecessors that produce a known value for this load, exit
1013 // early.
1014 if (ValuesPerBlock.empty()) return false;
1015
1016 // If all of the instructions we depend on produce a known value for this
1017 // load, then it is fully redundant and we can use PHI insertion to compute
1018 // its value. Insert PHIs and remove the fully redundant value now.
1019 if (UnavailableBlocks.empty()) {
1020 // Use cached PHI construction information from previous runs
1021 SmallPtrSet<Instruction*, 4> &p = phiMap[LI->getPointerOperand()];
1022 for (SmallPtrSet<Instruction*, 4>::iterator I = p.begin(), E = p.end();
1023 I != E; ++I) {
1024 if ((*I)->getParent() == LI->getParent()) {
1025 DEBUG(cerr << "GVN REMOVING NONLOCAL LOAD #1: " << *LI);
1026 LI->replaceAllUsesWith(*I);
1027 toErase.push_back(LI);
1028 NumGVNLoad++;
1029 return true;
1030 }
1031
1032 ValuesPerBlock.push_back(std::make_pair((*I)->getParent(), *I));
Owen Andersona37226a2007-08-07 23:12:31 +00001033 }
Chris Lattner88365bb2008-03-21 21:14:38 +00001034
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001035 DEBUG(cerr << "GVN REMOVING NONLOCAL LOAD: " << *LI);
1036
1037 DenseMap<BasicBlock*, Value*> BlockReplValues;
1038 BlockReplValues.insert(ValuesPerBlock.begin(), ValuesPerBlock.end());
1039 // Perform PHI construction.
1040 Value* v = GetValueForBlock(LI->getParent(), LI, BlockReplValues, true);
1041 LI->replaceAllUsesWith(v);
1042 toErase.push_back(LI);
1043 NumGVNLoad++;
1044 return true;
1045 }
1046
1047 if (!EnablePRE || !EnableLoadPRE)
1048 return false;
1049
1050 // Okay, we have *some* definitions of the value. This means that the value
1051 // is available in some of our (transitive) predecessors. Lets think about
1052 // doing PRE of this load. This will involve inserting a new load into the
1053 // predecessor when it's not available. We could do this in general, but
1054 // prefer to not increase code size. As such, we only do this when we know
1055 // that we only have to insert *one* load (which means we're basically moving
1056 // the load, not inserting a new one).
1057
1058 // Everything we do here is based on local predecessors of LI's block. If it
1059 // only has one predecessor, bail now.
1060 BasicBlock *LoadBB = LI->getParent();
1061 if (LoadBB->getSinglePredecessor())
1062 return false;
1063
1064 // If we have a repl set with LI itself in it, this means we have a loop where
1065 // at least one of the values is LI. Since this means that we won't be able
1066 // to eliminate LI even if we insert uses in the other predecessors, we will
1067 // end up increasing code size. Reject this by scanning for LI.
1068 for (unsigned i = 0, e = ValuesPerBlock.size(); i != e; ++i)
1069 if (ValuesPerBlock[i].second == LI)
1070 return false;
1071
1072 // Okay, we have some hope :). Check to see if the loaded value is fully
1073 // available in all but one predecessor.
1074 // FIXME: If we could restructure the CFG, we could make a common pred with
1075 // all the preds that don't have an available LI and insert a new load into
1076 // that one block.
1077 BasicBlock *UnavailablePred = 0;
1078
Chris Lattner72bc70d2008-12-05 07:49:08 +00001079 DenseMap<BasicBlock*, char> FullyAvailableBlocks;
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001080 for (unsigned i = 0, e = ValuesPerBlock.size(); i != e; ++i)
1081 FullyAvailableBlocks[ValuesPerBlock[i].first] = true;
1082 for (unsigned i = 0, e = UnavailableBlocks.size(); i != e; ++i)
1083 FullyAvailableBlocks[UnavailableBlocks[i]] = false;
1084
1085 for (pred_iterator PI = pred_begin(LoadBB), E = pred_end(LoadBB);
1086 PI != E; ++PI) {
1087 if (IsValueFullyAvailableInBlock(*PI, FullyAvailableBlocks))
1088 continue;
1089
1090 // If this load is not available in multiple predecessors, reject it.
1091 if (UnavailablePred && UnavailablePred != *PI)
1092 return false;
1093 UnavailablePred = *PI;
1094 }
1095
1096 assert(UnavailablePred != 0 &&
1097 "Fully available value should be eliminated above!");
1098
1099 // If the loaded pointer is PHI node defined in this block, do PHI translation
1100 // to get its value in the predecessor.
1101 Value *LoadPtr = LI->getOperand(0)->DoPHITranslation(LoadBB, UnavailablePred);
1102
1103 // Make sure the value is live in the predecessor. If it was defined by a
1104 // non-PHI instruction in this block, we don't know how to recompute it above.
1105 if (Instruction *LPInst = dyn_cast<Instruction>(LoadPtr))
1106 if (!DT->dominates(LPInst->getParent(), UnavailablePred)) {
1107 DEBUG(cerr << "COULDN'T PRE LOAD BECAUSE PTR IS UNAVAILABLE IN PRED: "
1108 << *LPInst << *LI << "\n");
1109 return false;
1110 }
1111
1112 // We don't currently handle critical edges :(
1113 if (UnavailablePred->getTerminator()->getNumSuccessors() != 1) {
1114 DEBUG(cerr << "COULD NOT PRE LOAD BECAUSE OF CRITICAL EDGE '"
1115 << UnavailablePred->getName() << "': " << *LI);
1116 return false;
Owen Andersona37226a2007-08-07 23:12:31 +00001117 }
Chris Lattner72bc70d2008-12-05 07:49:08 +00001118
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001119 // Okay, we can eliminate this load by inserting a reload in the predecessor
1120 // and using PHI construction to get the value in the other predecessors, do
1121 // it.
Chris Lattner7f7c7362008-12-05 17:04:12 +00001122 DEBUG(cerr << "GVN REMOVING PRE LOAD: " << *LI);
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001123
1124 Value *NewLoad = new LoadInst(LoadPtr, LI->getName()+".pre", false,
1125 LI->getAlignment(),
1126 UnavailablePred->getTerminator());
1127
1128 DenseMap<BasicBlock*, Value*> BlockReplValues;
1129 BlockReplValues.insert(ValuesPerBlock.begin(), ValuesPerBlock.end());
1130 BlockReplValues[UnavailablePred] = NewLoad;
1131
1132 // Perform PHI construction.
1133 Value* v = GetValueForBlock(LI->getParent(), LI, BlockReplValues, true);
1134 LI->replaceAllUsesWith(v);
Chris Lattner72bc70d2008-12-05 07:49:08 +00001135 v->takeName(LI);
Chris Lattnerc89c6a92008-12-02 08:16:11 +00001136 toErase.push_back(LI);
1137 NumPRELoad++;
Owen Anderson0cd32032007-07-25 19:57:03 +00001138 return true;
1139}
1140
Owen Anderson62bc33c2007-08-16 22:02:55 +00001141/// processLoad - Attempt to eliminate a load, first by eliminating it
1142/// locally, and then attempting non-local elimination if that fails.
Chris Lattnerb51deb92008-12-05 21:04:20 +00001143bool GVN::processLoad(LoadInst *L, SmallVectorImpl<Instruction*> &toErase) {
1144 if (L->isVolatile())
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001145 return false;
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001146
1147 Value* pointer = L->getPointerOperand();
Chris Lattnerb51deb92008-12-05 21:04:20 +00001148
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001149 // ... to a pointer that has been loaded from before...
Chris Lattner663e4412008-12-01 00:40:32 +00001150 MemDepResult dep = MD->getDependency(L);
Owen Anderson8e8278e2007-08-14 17:59:48 +00001151
Chris Lattnerb51deb92008-12-05 21:04:20 +00001152 // If the value isn't available, don't do anything!
1153 if (dep.isClobber())
1154 return false;
1155
1156 // If it is defined in another block, try harder.
Chris Lattnerae199312008-12-09 19:21:47 +00001157 if (dep.isNonLocal())
Chris Lattnerb51deb92008-12-05 21:04:20 +00001158 return processNonLocalLoad(L, toErase);
Eli Friedmanb6c36e42008-02-12 12:08:14 +00001159
Chris Lattnerb51deb92008-12-05 21:04:20 +00001160 Instruction *DepInst = dep.getInst();
1161 if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInst)) {
1162 // Only forward substitute stores to loads of the same type.
1163 // FIXME: Could do better!
1164 if (DepSI->getPointerOperand()->getType() != pointer->getType())
1165 return false;
1166
1167 // Remove it!
1168 L->replaceAllUsesWith(DepSI->getOperand(0));
1169 toErase.push_back(L);
1170 NumGVNLoad++;
1171 return true;
1172 }
1173
1174 if (LoadInst *DepLI = dyn_cast<LoadInst>(DepInst)) {
1175 // Only forward substitute stores to loads of the same type.
1176 // FIXME: Could do better! load i32 -> load i8 -> truncate on little endian.
1177 if (DepLI->getType() != L->getType())
1178 return false;
1179
1180 // Remove it!
1181 L->replaceAllUsesWith(DepLI);
1182 toErase.push_back(L);
1183 NumGVNLoad++;
1184 return true;
1185 }
1186
Chris Lattner237a8282008-11-30 01:39:32 +00001187 // If this load really doesn't depend on anything, then we must be loading an
1188 // undef value. This can happen when loading for a fresh allocation with no
1189 // intervening stores, for example.
Chris Lattnerb51deb92008-12-05 21:04:20 +00001190 if (isa<AllocationInst>(DepInst)) {
Chris Lattner237a8282008-11-30 01:39:32 +00001191 L->replaceAllUsesWith(UndefValue::get(L->getType()));
1192 toErase.push_back(L);
Chris Lattner237a8282008-11-30 01:39:32 +00001193 NumGVNLoad++;
Chris Lattnerb51deb92008-12-05 21:04:20 +00001194 return true;
Eli Friedmanb6c36e42008-02-12 12:08:14 +00001195 }
1196
Chris Lattnerb51deb92008-12-05 21:04:20 +00001197 return false;
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001198}
1199
Owen Anderson6fafe842008-06-20 01:15:47 +00001200Value* GVN::lookupNumber(BasicBlock* BB, uint32_t num) {
Owen Andersonb70a5712008-06-23 17:49:45 +00001201 DenseMap<BasicBlock*, ValueNumberScope*>::iterator I = localAvail.find(BB);
1202 if (I == localAvail.end())
1203 return 0;
1204
1205 ValueNumberScope* locals = I->second;
Owen Anderson6fafe842008-06-20 01:15:47 +00001206
1207 while (locals) {
1208 DenseMap<uint32_t, Value*>::iterator I = locals->table.find(num);
1209 if (I != locals->table.end())
1210 return I->second;
1211 else
1212 locals = locals->parent;
1213 }
1214
1215 return 0;
1216}
1217
Owen Anderson36057c72007-08-14 18:16:29 +00001218/// processInstruction - When calculating availability, handle an instruction
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001219/// by inserting it into the appropriate sets
Owen Andersonaf4240a2008-06-12 19:25:32 +00001220bool GVN::processInstruction(Instruction *I,
Chris Lattner8e1e95c2008-03-21 22:01:16 +00001221 SmallVectorImpl<Instruction*> &toErase) {
Owen Andersonb2303722008-06-18 21:41:49 +00001222 if (LoadInst* L = dyn_cast<LoadInst>(I)) {
Chris Lattnerb51deb92008-12-05 21:04:20 +00001223 bool changed = processLoad(L, toErase);
Owen Andersonb2303722008-06-18 21:41:49 +00001224
1225 if (!changed) {
1226 unsigned num = VN.lookup_or_add(L);
Owen Anderson6fafe842008-06-20 01:15:47 +00001227 localAvail[I->getParent()]->table.insert(std::make_pair(num, L));
Owen Andersonb2303722008-06-18 21:41:49 +00001228 }
1229
1230 return changed;
1231 }
1232
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001233 uint32_t nextNum = VN.getNextUnusedValueNumber();
Owen Andersonb2303722008-06-18 21:41:49 +00001234 unsigned num = VN.lookup_or_add(I);
Chris Lattner8e1e95c2008-03-21 22:01:16 +00001235
Owen Andersone5ffa902008-04-07 09:59:07 +00001236 // Allocations are always uniquely numbered, so we can save time and memory
1237 // by fast failing them.
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001238 if (isa<AllocationInst>(I) || isa<TerminatorInst>(I)) {
Owen Anderson6fafe842008-06-20 01:15:47 +00001239 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Andersone5ffa902008-04-07 09:59:07 +00001240 return false;
Owen Andersonb2303722008-06-18 21:41:49 +00001241 }
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001242
Owen Anderson62bc33c2007-08-16 22:02:55 +00001243 // Collapse PHI nodes
Owen Anderson31f49672007-08-14 18:33:27 +00001244 if (PHINode* p = dyn_cast<PHINode>(I)) {
Owen Anderson1defe2d2007-08-16 22:51:56 +00001245 Value* constVal = CollapsePhi(p);
Owen Anderson31f49672007-08-14 18:33:27 +00001246
1247 if (constVal) {
Owen Anderson1defe2d2007-08-16 22:51:56 +00001248 for (PhiMapType::iterator PI = phiMap.begin(), PE = phiMap.end();
1249 PI != PE; ++PI)
Chris Lattnerae199312008-12-09 19:21:47 +00001250 PI->second.erase(p);
Owen Anderson31f49672007-08-14 18:33:27 +00001251
Owen Anderson1defe2d2007-08-16 22:51:56 +00001252 p->replaceAllUsesWith(constVal);
1253 toErase.push_back(p);
Owen Andersonb2303722008-06-18 21:41:49 +00001254 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001255 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Anderson31f49672007-08-14 18:33:27 +00001256 }
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001257
1258 // If the number we were assigned was a brand new VN, then we don't
1259 // need to do a lookup to see if the number already exists
1260 // somewhere in the domtree: it can't!
1261 } else if (num == nextNum) {
1262 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1263
Owen Anderson62bc33c2007-08-16 22:02:55 +00001264 // Perform value-number based elimination
Owen Anderson6fafe842008-06-20 01:15:47 +00001265 } else if (Value* repl = lookupNumber(I->getParent(), num)) {
Owen Anderson5fc4aba2007-12-08 01:37:09 +00001266 // Remove it!
Owen Andersonbf7d0bc2007-07-31 23:27:13 +00001267 VN.erase(I);
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001268 I->replaceAllUsesWith(repl);
1269 toErase.push_back(I);
1270 return true;
Owen Anderson0ae33ef2008-07-03 17:44:33 +00001271 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001272 localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001273 }
1274
1275 return false;
1276}
1277
1278// GVN::runOnFunction - This is the main transformation entry point for a
1279// function.
1280//
Owen Anderson3e75a422007-08-14 18:04:11 +00001281bool GVN::runOnFunction(Function& F) {
Chris Lattner663e4412008-12-01 00:40:32 +00001282 MD = &getAnalysis<MemoryDependenceAnalysis>();
1283 DT = &getAnalysis<DominatorTree>();
Owen Andersona472c4a2008-05-12 20:15:55 +00001284 VN.setAliasAnalysis(&getAnalysis<AliasAnalysis>());
Chris Lattner663e4412008-12-01 00:40:32 +00001285 VN.setMemDep(MD);
1286 VN.setDomTree(DT);
Owen Andersonb388ca92007-10-18 19:39:33 +00001287
Owen Anderson3e75a422007-08-14 18:04:11 +00001288 bool changed = false;
1289 bool shouldContinue = true;
1290
Owen Anderson5d0af032008-07-16 17:52:31 +00001291 // Merge unconditional branches, allowing PRE to catch more
1292 // optimization opportunities.
1293 for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ) {
1294 BasicBlock* BB = FI;
1295 ++FI;
Owen Andersonb31b06d2008-07-17 00:01:40 +00001296 bool removedBlock = MergeBlockIntoPredecessor(BB, this);
1297 if (removedBlock) NumGVNBlocks++;
1298
1299 changed |= removedBlock;
Owen Anderson5d0af032008-07-16 17:52:31 +00001300 }
1301
Chris Lattnerae199312008-12-09 19:21:47 +00001302 unsigned Iteration = 0;
1303
Owen Anderson3e75a422007-08-14 18:04:11 +00001304 while (shouldContinue) {
Chris Lattnerae199312008-12-09 19:21:47 +00001305 DEBUG(cerr << "GVN iteration: " << Iteration << "\n");
Owen Anderson3e75a422007-08-14 18:04:11 +00001306 shouldContinue = iterateOnFunction(F);
1307 changed |= shouldContinue;
Chris Lattnerae199312008-12-09 19:21:47 +00001308 ++Iteration;
Owen Anderson3e75a422007-08-14 18:04:11 +00001309 }
1310
Owen Andersone98c54c2008-07-18 18:03:38 +00001311 if (EnablePRE) {
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001312 bool PREChanged = true;
1313 while (PREChanged) {
1314 PREChanged = performPRE(F);
Owen Andersone98c54c2008-07-18 18:03:38 +00001315 changed |= PREChanged;
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001316 }
Owen Andersone98c54c2008-07-18 18:03:38 +00001317 }
Chris Lattnerae199312008-12-09 19:21:47 +00001318 // FIXME: Should perform GVN again after PRE does something. PRE can move
1319 // computations into blocks where they become fully redundant. Note that
1320 // we can't do this until PRE's critical edge splitting updates memdep.
1321 // Actually, when this happens, we should just fully integrate PRE into GVN.
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001322
1323 cleanupGlobalSets();
1324
Owen Anderson3e75a422007-08-14 18:04:11 +00001325 return changed;
1326}
1327
1328
Owen Andersonaf4240a2008-06-12 19:25:32 +00001329bool GVN::processBlock(DomTreeNode* DTN) {
1330 BasicBlock* BB = DTN->getBlock();
Chris Lattnerae199312008-12-09 19:21:47 +00001331 // FIXME: Kill off toErase by doing erasing eagerly in a helper function (and
1332 // incrementing BI before processing an instruction).
Owen Andersonaf4240a2008-06-12 19:25:32 +00001333 SmallVector<Instruction*, 8> toErase;
Owen Andersonaf4240a2008-06-12 19:25:32 +00001334 bool changed_function = false;
Owen Andersonb2303722008-06-18 21:41:49 +00001335
1336 if (DTN->getIDom())
Owen Anderson6fafe842008-06-20 01:15:47 +00001337 localAvail[BB] =
1338 new ValueNumberScope(localAvail[DTN->getIDom()->getBlock()]);
1339 else
1340 localAvail[BB] = new ValueNumberScope(0);
Owen Andersonb2303722008-06-18 21:41:49 +00001341
Owen Andersonaf4240a2008-06-12 19:25:32 +00001342 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();
1343 BI != BE;) {
Chris Lattnerb51deb92008-12-05 21:04:20 +00001344 changed_function |= processInstruction(BI, toErase);
Owen Andersonaf4240a2008-06-12 19:25:32 +00001345 if (toErase.empty()) {
1346 ++BI;
1347 continue;
1348 }
1349
1350 // If we need some instructions deleted, do it now.
1351 NumGVNInstr += toErase.size();
1352
1353 // Avoid iterator invalidation.
1354 bool AtStart = BI == BB->begin();
1355 if (!AtStart)
1356 --BI;
1357
1358 for (SmallVector<Instruction*, 4>::iterator I = toErase.begin(),
Chris Lattner663e4412008-12-01 00:40:32 +00001359 E = toErase.end(); I != E; ++I) {
1360 DEBUG(cerr << "GVN removed: " << **I);
1361 MD->removeInstruction(*I);
Owen Andersonaf4240a2008-06-12 19:25:32 +00001362 (*I)->eraseFromParent();
Chris Lattner663e4412008-12-01 00:40:32 +00001363 }
Chris Lattnerae199312008-12-09 19:21:47 +00001364 toErase.clear();
Owen Andersonaf4240a2008-06-12 19:25:32 +00001365
1366 if (AtStart)
1367 BI = BB->begin();
1368 else
1369 ++BI;
Owen Andersonaf4240a2008-06-12 19:25:32 +00001370 }
1371
Owen Andersonaf4240a2008-06-12 19:25:32 +00001372 return changed_function;
1373}
1374
Owen Andersonb2303722008-06-18 21:41:49 +00001375/// performPRE - Perform a purely local form of PRE that looks for diamond
1376/// control flow patterns and attempts to perform simple PRE at the join point.
1377bool GVN::performPRE(Function& F) {
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001378 bool Changed = false;
Owen Anderson5c274ee2008-06-19 19:54:19 +00001379 SmallVector<std::pair<TerminatorInst*, unsigned>, 4> toSplit;
Chris Lattner09713792008-12-01 07:29:03 +00001380 DenseMap<BasicBlock*, Value*> predMap;
Owen Andersonb2303722008-06-18 21:41:49 +00001381 for (df_iterator<BasicBlock*> DI = df_begin(&F.getEntryBlock()),
1382 DE = df_end(&F.getEntryBlock()); DI != DE; ++DI) {
1383 BasicBlock* CurrentBlock = *DI;
1384
1385 // Nothing to PRE in the entry block.
1386 if (CurrentBlock == &F.getEntryBlock()) continue;
1387
1388 for (BasicBlock::iterator BI = CurrentBlock->begin(),
1389 BE = CurrentBlock->end(); BI != BE; ) {
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001390 Instruction *CurInst = BI++;
Owen Andersonb2303722008-06-18 21:41:49 +00001391
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001392 if (isa<AllocationInst>(CurInst) || isa<TerminatorInst>(CurInst) ||
1393 isa<PHINode>(CurInst) || CurInst->mayReadFromMemory() ||
1394 CurInst->mayWriteToMemory())
1395 continue;
1396
1397 uint32_t valno = VN.lookup(CurInst);
Owen Andersonb2303722008-06-18 21:41:49 +00001398
1399 // Look for the predecessors for PRE opportunities. We're
1400 // only trying to solve the basic diamond case, where
1401 // a value is computed in the successor and one predecessor,
1402 // but not the other. We also explicitly disallow cases
1403 // where the successor is its own predecessor, because they're
1404 // more complicated to get right.
1405 unsigned numWith = 0;
1406 unsigned numWithout = 0;
1407 BasicBlock* PREPred = 0;
Chris Lattner09713792008-12-01 07:29:03 +00001408 predMap.clear();
1409
Owen Andersonb2303722008-06-18 21:41:49 +00001410 for (pred_iterator PI = pred_begin(CurrentBlock),
1411 PE = pred_end(CurrentBlock); PI != PE; ++PI) {
1412 // We're not interested in PRE where the block is its
Owen Anderson6fafe842008-06-20 01:15:47 +00001413 // own predecessor, on in blocks with predecessors
1414 // that are not reachable.
1415 if (*PI == CurrentBlock) {
Owen Andersonb2303722008-06-18 21:41:49 +00001416 numWithout = 2;
Owen Anderson6fafe842008-06-20 01:15:47 +00001417 break;
1418 } else if (!localAvail.count(*PI)) {
1419 numWithout = 2;
1420 break;
1421 }
1422
1423 DenseMap<uint32_t, Value*>::iterator predV =
1424 localAvail[*PI]->table.find(valno);
1425 if (predV == localAvail[*PI]->table.end()) {
Owen Andersonb2303722008-06-18 21:41:49 +00001426 PREPred = *PI;
1427 numWithout++;
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001428 } else if (predV->second == CurInst) {
Owen Andersonb2303722008-06-18 21:41:49 +00001429 numWithout = 2;
1430 } else {
Owen Anderson6fafe842008-06-20 01:15:47 +00001431 predMap[*PI] = predV->second;
Owen Andersonb2303722008-06-18 21:41:49 +00001432 numWith++;
1433 }
1434 }
1435
1436 // Don't do PRE when it might increase code size, i.e. when
1437 // we would need to insert instructions in more than one pred.
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001438 if (numWithout != 1 || numWith == 0)
Owen Andersonb2303722008-06-18 21:41:49 +00001439 continue;
Owen Andersonb2303722008-06-18 21:41:49 +00001440
Owen Anderson5c274ee2008-06-19 19:54:19 +00001441 // We can't do PRE safely on a critical edge, so instead we schedule
1442 // the edge to be split and perform the PRE the next time we iterate
1443 // on the function.
1444 unsigned succNum = 0;
1445 for (unsigned i = 0, e = PREPred->getTerminator()->getNumSuccessors();
1446 i != e; ++i)
Owen Anderson0c7f91c2008-09-03 23:06:07 +00001447 if (PREPred->getTerminator()->getSuccessor(i) == CurrentBlock) {
Owen Anderson5c274ee2008-06-19 19:54:19 +00001448 succNum = i;
1449 break;
1450 }
1451
1452 if (isCriticalEdge(PREPred->getTerminator(), succNum)) {
1453 toSplit.push_back(std::make_pair(PREPred->getTerminator(), succNum));
Owen Anderson5c274ee2008-06-19 19:54:19 +00001454 continue;
1455 }
1456
Owen Andersonb2303722008-06-18 21:41:49 +00001457 // Instantiate the expression the in predecessor that lacked it.
1458 // Because we are going top-down through the block, all value numbers
1459 // will be available in the predecessor by the time we need them. Any
1460 // that weren't original present will have been instantiated earlier
1461 // in this loop.
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001462 Instruction* PREInstr = CurInst->clone();
Owen Andersonb2303722008-06-18 21:41:49 +00001463 bool success = true;
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001464 for (unsigned i = 0, e = CurInst->getNumOperands(); i != e; ++i) {
1465 Value *Op = PREInstr->getOperand(i);
1466 if (isa<Argument>(Op) || isa<Constant>(Op) || isa<GlobalValue>(Op))
1467 continue;
1468
1469 if (Value *V = lookupNumber(PREPred, VN.lookup(Op))) {
1470 PREInstr->setOperand(i, V);
1471 } else {
1472 success = false;
1473 break;
Owen Andersonc45996b2008-07-11 20:05:13 +00001474 }
Owen Andersonb2303722008-06-18 21:41:49 +00001475 }
1476
1477 // Fail out if we encounter an operand that is not available in
1478 // the PRE predecessor. This is typically because of loads which
1479 // are not value numbered precisely.
1480 if (!success) {
1481 delete PREInstr;
Owen Andersonb2303722008-06-18 21:41:49 +00001482 continue;
1483 }
1484
1485 PREInstr->insertBefore(PREPred->getTerminator());
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001486 PREInstr->setName(CurInst->getName() + ".pre");
Owen Anderson6fafe842008-06-20 01:15:47 +00001487 predMap[PREPred] = PREInstr;
Owen Andersonb2303722008-06-18 21:41:49 +00001488 VN.add(PREInstr, valno);
1489 NumGVNPRE++;
1490
1491 // Update the availability map to include the new instruction.
Owen Anderson6fafe842008-06-20 01:15:47 +00001492 localAvail[PREPred]->table.insert(std::make_pair(valno, PREInstr));
Owen Andersonb2303722008-06-18 21:41:49 +00001493
1494 // Create a PHI to make the value available in this block.
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001495 PHINode* Phi = PHINode::Create(CurInst->getType(),
1496 CurInst->getName() + ".pre-phi",
Owen Andersonb2303722008-06-18 21:41:49 +00001497 CurrentBlock->begin());
1498 for (pred_iterator PI = pred_begin(CurrentBlock),
1499 PE = pred_end(CurrentBlock); PI != PE; ++PI)
Owen Anderson6fafe842008-06-20 01:15:47 +00001500 Phi->addIncoming(predMap[*PI], *PI);
Owen Andersonb2303722008-06-18 21:41:49 +00001501
1502 VN.add(Phi, valno);
Owen Anderson6fafe842008-06-20 01:15:47 +00001503 localAvail[CurrentBlock]->table[valno] = Phi;
Owen Andersonb2303722008-06-18 21:41:49 +00001504
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001505 CurInst->replaceAllUsesWith(Phi);
1506 VN.erase(CurInst);
Owen Andersonb2303722008-06-18 21:41:49 +00001507
Chris Lattnerd0f5bfc2008-12-01 07:35:54 +00001508 DEBUG(cerr << "GVN PRE removed: " << *CurInst);
1509 MD->removeInstruction(CurInst);
1510 CurInst->eraseFromParent();
1511 Changed = true;
Owen Andersonb2303722008-06-18 21:41:49 +00001512 }
1513 }
1514
Owen Anderson5c274ee2008-06-19 19:54:19 +00001515 for (SmallVector<std::pair<TerminatorInst*, unsigned>, 4>::iterator
Anton Korobeynikov64b53562008-12-05 19:38:49 +00001516 I = toSplit.begin(), E = toSplit.end(); I != E; ++I)
Owen Anderson5c274ee2008-06-19 19:54:19 +00001517 SplitCriticalEdge(I->first, I->second, this);
1518
Anton Korobeynikov64b53562008-12-05 19:38:49 +00001519 return Changed || toSplit.size();
Owen Andersonb2303722008-06-18 21:41:49 +00001520}
1521
Owen Anderson961edc82008-07-15 16:28:06 +00001522// iterateOnFunction - Executes one iteration of GVN
Owen Anderson3e75a422007-08-14 18:04:11 +00001523bool GVN::iterateOnFunction(Function &F) {
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001524 cleanupGlobalSets();
Chris Lattner2e607012008-03-21 21:33:23 +00001525
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001526 // Top-down walk of the dominator tree
Owen Andersonb2303722008-06-18 21:41:49 +00001527 bool changed = false;
Chris Lattner663e4412008-12-01 00:40:32 +00001528 for (df_iterator<DomTreeNode*> DI = df_begin(DT->getRootNode()),
1529 DE = df_end(DT->getRootNode()); DI != DE; ++DI)
Owen Andersonb2303722008-06-18 21:41:49 +00001530 changed |= processBlock(*DI);
Owen Andersonaa0b6342008-06-19 19:57:25 +00001531
Owen Anderson5d0af032008-07-16 17:52:31 +00001532 return changed;
Owen Anderson1ad2cb72007-07-24 17:55:58 +00001533}
Nuno Lopes7cdd9ee2008-10-10 16:25:50 +00001534
1535void GVN::cleanupGlobalSets() {
1536 VN.clear();
1537 phiMap.clear();
1538
1539 for (DenseMap<BasicBlock*, ValueNumberScope*>::iterator
1540 I = localAvail.begin(), E = localAvail.end(); I != E; ++I)
1541 delete I->second;
1542 localAvail.clear();
1543}