Make a few major changes to memdep and its clients:
[oota-llvm.git] / lib / Transforms / Scalar / GVN.cpp
1 //===- GVN.cpp - Eliminate redundant values and loads ---------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This pass performs global value numbering to eliminate fully redundant
11 // instructions.  It also performs simple dead load elimination.
12 //
13 // Note that this pass does the value numbering itself, it does not use the
14 // ValueNumbering analysis passes.
15 //
16 //===----------------------------------------------------------------------===//
17
18 #define DEBUG_TYPE "gvn"
19 #include "llvm/Transforms/Scalar.h"
20 #include "llvm/BasicBlock.h"
21 #include "llvm/Constants.h"
22 #include "llvm/DerivedTypes.h"
23 #include "llvm/Function.h"
24 #include "llvm/Instructions.h"
25 #include "llvm/Value.h"
26 #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"
31 #include "llvm/Analysis/Dominators.h"
32 #include "llvm/Analysis/AliasAnalysis.h"
33 #include "llvm/Analysis/MemoryDependenceAnalysis.h"
34 #include "llvm/Support/CFG.h"
35 #include "llvm/Support/CommandLine.h"
36 #include "llvm/Support/Compiler.h"
37 #include "llvm/Support/Debug.h"
38 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
39 #include <cstdio>
40 using namespace llvm;
41
42 STATISTIC(NumGVNInstr, "Number of instructions deleted");
43 STATISTIC(NumGVNLoad, "Number of loads deleted");
44 STATISTIC(NumGVNPRE, "Number of instructions PRE'd");
45 STATISTIC(NumGVNBlocks, "Number of blocks merged");
46 STATISTIC(NumPRELoad, "Number of loads PRE'd");
47
48 static cl::opt<bool> EnablePRE("enable-pre",
49                                cl::init(true), cl::Hidden);
50 cl::opt<bool> EnableLoadPRE("enable-load-pre"/*, cl::init(true)*/);
51
52 //===----------------------------------------------------------------------===//
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.
59 namespace {
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, 
70                             PTRTOINT, INTTOPTR, BITCAST, GEP, CALL, CONSTANT,
71                             EMPTY, TOMBSTONE };
72
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;
79     Value* function;
80   
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;
91       else if (function != other.function)
92         return false;
93       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;
118       else if (function != other.function)
119         return true;
120       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;
143       AliasAnalysis* AA;
144       MemoryDependenceAnalysis* MD;
145       DominatorTree* DT;
146   
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);
160       Expression create_expression(CallInst* C);
161       Expression create_expression(Constant* C);
162     public:
163       ValueTable() : nextValueNumber(1) { }
164       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();
170       void setAliasAnalysis(AliasAnalysis* A) { AA = A; }
171       AliasAnalysis *getAliasAnalysis() const { return AA; }
172       void setMemDep(MemoryDependenceAnalysis* M) { MD = M; }
173       void setDomTree(DominatorTree* D) { DT = D; }
174       uint32_t getNextUnusedValueNumber() { return nextValueNumber; }
175   };
176 }
177
178 namespace llvm {
179 template <> struct DenseMapInfo<Expression> {
180   static inline Expression getEmptyKey() {
181     return Expression(Expression::EMPTY);
182   }
183   
184   static inline Expression getTombstoneKey() {
185     return Expression(Expression::TOMBSTONE);
186   }
187   
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     
195     hash = ((unsigned)((uintptr_t)e.type >> 4) ^
196             (unsigned)((uintptr_t)e.type >> 9)) +
197            hash * 37;
198     
199     for (SmallVector<uint32_t, 4>::const_iterator I = e.varargs.begin(),
200          E = e.varargs.end(); I != E; ++I)
201       hash = *I + hash * 37;
202     
203     hash = ((unsigned)((uintptr_t)e.function >> 4) ^
204             (unsigned)((uintptr_t)e.function >> 9)) +
205            hash * 37;
206     
207     return hash;
208   }
209   static bool isEqual(const Expression &LHS, const Expression &RHS) {
210     return LHS == RHS;
211   }
212   static bool isPod() { return true; }
213 };
214 }
215
216 //===----------------------------------------------------------------------===//
217 //                     ValueTable Internal Functions
218 //===----------------------------------------------------------------------===//
219 Expression::ExpressionOpcode ValueTable::getOpcode(BinaryOperator* BO) {
220   switch(BO->getOpcode()) {
221   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;
238   }
239 }
240
241 Expression::ExpressionOpcode ValueTable::getOpcode(CmpInst* C) {
242   if (isa<ICmpInst>(C) || isa<VICmpInst>(C)) {
243     switch (C->getPredicate()) {
244     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;
256     }
257   }
258   assert((isa<FCmpInst>(C) || isa<VFCmpInst>(C)) && "Unknown compare");
259   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;
276   }
277 }
278
279 Expression::ExpressionOpcode ValueTable::getOpcode(CastInst* C) {
280   switch(C->getOpcode()) {
281   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;
295   }
296 }
297
298 Expression 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)
310     e.varargs.push_back(lookup_or_add(*I));
311   
312   return e;
313 }
314
315 Expression ValueTable::create_expression(BinaryOperator* BO) {
316   Expression e;
317     
318   e.firstVN = lookup_or_add(BO->getOperand(0));
319   e.secondVN = lookup_or_add(BO->getOperand(1));
320   e.thirdVN = 0;
321   e.function = 0;
322   e.type = BO->getType();
323   e.opcode = getOpcode(BO);
324   
325   return e;
326 }
327
328 Expression ValueTable::create_expression(CmpInst* C) {
329   Expression e;
330     
331   e.firstVN = lookup_or_add(C->getOperand(0));
332   e.secondVN = lookup_or_add(C->getOperand(1));
333   e.thirdVN = 0;
334   e.function = 0;
335   e.type = C->getType();
336   e.opcode = getOpcode(C);
337   
338   return e;
339 }
340
341 Expression ValueTable::create_expression(CastInst* C) {
342   Expression e;
343     
344   e.firstVN = lookup_or_add(C->getOperand(0));
345   e.secondVN = 0;
346   e.thirdVN = 0;
347   e.function = 0;
348   e.type = C->getType();
349   e.opcode = getOpcode(C);
350   
351   return e;
352 }
353
354 Expression ValueTable::create_expression(ShuffleVectorInst* S) {
355   Expression e;
356     
357   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));
360   e.function = 0;
361   e.type = S->getType();
362   e.opcode = Expression::SHUFFLE;
363   
364   return e;
365 }
366
367 Expression ValueTable::create_expression(ExtractElementInst* E) {
368   Expression e;
369     
370   e.firstVN = lookup_or_add(E->getOperand(0));
371   e.secondVN = lookup_or_add(E->getOperand(1));
372   e.thirdVN = 0;
373   e.function = 0;
374   e.type = E->getType();
375   e.opcode = Expression::EXTRACT;
376   
377   return e;
378 }
379
380 Expression ValueTable::create_expression(InsertElementInst* I) {
381   Expression e;
382     
383   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));
386   e.function = 0;
387   e.type = I->getType();
388   e.opcode = Expression::INSERT;
389   
390   return e;
391 }
392
393 Expression ValueTable::create_expression(SelectInst* I) {
394   Expression e;
395     
396   e.firstVN = lookup_or_add(I->getCondition());
397   e.secondVN = lookup_or_add(I->getTrueValue());
398   e.thirdVN = lookup_or_add(I->getFalseValue());
399   e.function = 0;
400   e.type = I->getType();
401   e.opcode = Expression::SELECT;
402   
403   return e;
404 }
405
406 Expression ValueTable::create_expression(GetElementPtrInst* G) {
407   Expression e;
408   
409   e.firstVN = lookup_or_add(G->getPointerOperand());
410   e.secondVN = 0;
411   e.thirdVN = 0;
412   e.function = 0;
413   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)
418     e.varargs.push_back(lookup_or_add(*I));
419   
420   return e;
421 }
422
423 //===----------------------------------------------------------------------===//
424 //                     ValueTable External Functions
425 //===----------------------------------------------------------------------===//
426
427 /// add - Insert a value into the table with a specified value number.
428 void ValueTable::add(Value* V, uint32_t num) {
429   valueNumbering.insert(std::make_pair(V, num));
430 }
431
432 /// lookup_or_add - Returns the value number for the specified value, assigning
433 /// it a new number if it did not have one before.
434 uint32_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   
439   if (CallInst* C = dyn_cast<CallInst>(V)) {
440     if (AA->doesNotAccessMemory(C)) {
441       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       }
453     } else if (AA->onlyReadsMemory(C)) {
454       Expression e = create_expression(C);
455       
456       if (expressionNumbering.find(e) == expressionNumbering.end()) {
457         expressionNumbering.insert(std::make_pair(e, nextValueNumber));
458         valueNumbering.insert(std::make_pair(V, nextValueNumber));
459         return nextValueNumber++;
460       }
461       
462       MemDepResult local_dep = MD->getDependency(C);
463       
464       if (!local_dep.isDef() && !local_dep.isNonLocal()) {
465         valueNumbering.insert(std::make_pair(V, nextValueNumber));
466         return nextValueNumber++;
467       }
468
469       if (local_dep.isDef()) {
470         CallInst* local_cdep = cast<CallInst>(local_dep.getInst());
471         
472         if (local_cdep->getNumOperands() != C->getNumOperands()) {
473           valueNumbering.insert(std::make_pair(V, nextValueNumber));
474           return nextValueNumber++;
475         }
476           
477         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;
489       }
490
491       // Non-local case.
492       const MemoryDependenceAnalysis::NonLocalDepInfo &deps = 
493         MD->getNonLocalDependency(C);
494       // FIXME: call/call dependencies for readonly calls should return def, not
495       // clobber!  Move the checking logic to MemDep!
496       CallInst* cdep = 0;
497       
498       // Check to see if we have a single dominating call instruction that is
499       // identical to C.
500       for (unsigned i = 0, e = deps.size(); i != e; ++i) {
501         const MemoryDependenceAnalysis::NonLocalDepEntry *I = &deps[i];
502         // Ignore non-local dependencies.
503         if (I->second.isNonLocal())
504           continue;
505
506         // We don't handle non-depedencies.  If we already have a call, reject
507         // instruction dependencies.
508         if (I->second.isClobber() || cdep != 0) {
509           cdep = 0;
510           break;
511         }
512         
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;
522       }
523       
524       if (!cdep) {
525         valueNumbering.insert(std::make_pair(V, nextValueNumber));
526         return nextValueNumber++;
527       }
528       
529       if (cdep->getNumOperands() != C->getNumOperands()) {
530         valueNumbering.insert(std::make_pair(V, nextValueNumber));
531         return nextValueNumber++;
532       }
533       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;
545       
546     } else {
547       valueNumbering.insert(std::make_pair(V, nextValueNumber));
548       return nextValueNumber++;
549     }
550   } else if (BinaryOperator* BO = dyn_cast<BinaryOperator>(V)) {
551     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.
662 uint32_t ValueTable::lookup(Value* V) const {
663   DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
664   assert(VI != valueNumbering.end() && "Value not numbered?");
665   return VI->second;
666 }
667
668 /// clear - Remove all entries from the ValueTable
669 void ValueTable::clear() {
670   valueNumbering.clear();
671   expressionNumbering.clear();
672   nextValueNumber = 1;
673 }
674
675 /// erase - Remove a value from the value numbering
676 void ValueTable::erase(Value* V) {
677   valueNumbering.erase(V);
678 }
679
680 //===----------------------------------------------------------------------===//
681 //                         GVN Pass
682 //===----------------------------------------------------------------------===//
683
684 namespace {
685   struct VISIBILITY_HIDDEN ValueNumberScope {
686     ValueNumberScope* parent;
687     DenseMap<uint32_t, Value*> table;
688     
689     ValueNumberScope(ValueNumberScope* p) : parent(p) { }
690   };
691 }
692
693 namespace {
694
695   class VISIBILITY_HIDDEN GVN : public FunctionPass {
696     bool runOnFunction(Function &F);
697   public:
698     static char ID; // Pass identification, replacement for typeid
699     GVN() : FunctionPass(&ID) { }
700
701   private:
702     MemoryDependenceAnalysis *MD;
703     DominatorTree *DT;
704
705     ValueTable VN;
706     DenseMap<BasicBlock*, ValueNumberScope*> localAvail;
707     
708     typedef DenseMap<Value*, SmallPtrSet<Instruction*, 4> > PhiMapType;
709     PhiMapType phiMap;
710     
711     
712     // This transformation requires dominator postdominator info
713     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
714       AU.addRequired<DominatorTree>();
715       AU.addRequired<MemoryDependenceAnalysis>();
716       AU.addRequired<AliasAnalysis>();
717       
718       AU.addPreserved<DominatorTree>();
719       AU.addPreserved<AliasAnalysis>();
720     }
721   
722     // Helper fuctions
723     // FIXME: eliminate or document these better
724     bool processLoad(LoadInst* L,
725                      SmallVectorImpl<Instruction*> &toErase);
726     bool processInstruction(Instruction* I,
727                             SmallVectorImpl<Instruction*> &toErase);
728     bool processNonLocalLoad(LoadInst* L,
729                              SmallVectorImpl<Instruction*> &toErase);
730     bool processBlock(DomTreeNode* DTN);
731     Value *GetValueForBlock(BasicBlock *BB, LoadInst* orig,
732                             DenseMap<BasicBlock*, Value*> &Phis,
733                             bool top_level = false);
734     void dump(DenseMap<uint32_t, Value*>& d);
735     bool iterateOnFunction(Function &F);
736     Value* CollapsePhi(PHINode* p);
737     bool isSafeReplacement(PHINode* p, Instruction* inst);
738     bool performPRE(Function& F);
739     Value* lookupNumber(BasicBlock* BB, uint32_t num);
740     bool mergeBlockIntoPredecessor(BasicBlock* BB);
741     void cleanupGlobalSets();
742   };
743   
744   char GVN::ID = 0;
745 }
746
747 // createGVNPass - The public interface to this file...
748 FunctionPass *llvm::createGVNPass() { return new GVN(); }
749
750 static RegisterPass<GVN> X("gvn",
751                            "Global Value Numbering");
752
753 void GVN::dump(DenseMap<uint32_t, Value*>& d) {
754   printf("{\n");
755   for (DenseMap<uint32_t, Value*>::iterator I = d.begin(),
756        E = d.end(); I != E; ++I) {
757       printf("%d\n", I->first);
758       I->second->dump();
759   }
760   printf("}\n");
761 }
762
763 Value* GVN::CollapsePhi(PHINode* p) {
764   Value* constVal = p->hasConstantValue();
765   if (!constVal) return 0;
766   
767   Instruction* inst = dyn_cast<Instruction>(constVal);
768   if (!inst)
769     return constVal;
770     
771   if (DT->dominates(inst, p))
772     if (isSafeReplacement(p, inst))
773       return inst;
774   return 0;
775 }
776
777 bool 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
790 /// GetValueForBlock - Get the value to use within the specified basic block.
791 /// available values are in Phis.
792 Value *GVN::GetValueForBlock(BasicBlock *BB, LoadInst* orig,
793                              DenseMap<BasicBlock*, Value*> &Phis,
794                              bool top_level) { 
795                                  
796   // If we have already computed this value, return the previously computed val.
797   DenseMap<BasicBlock*, Value*>::iterator V = Phis.find(BB);
798   if (V != Phis.end() && !top_level) return V->second;
799   
800   // If the block is unreachable, just return undef, since this path
801   // can't actually occur at runtime.
802   if (!DT->isReachableFromEntry(BB))
803     return Phis[BB] = UndefValue::get(orig->getType());
804   
805   BasicBlock* singlePred = BB->getSinglePredecessor();
806   if (singlePred) {
807     Value *ret = GetValueForBlock(singlePred, orig, Phis);
808     Phis[BB] = ret;
809     return ret;
810   }
811   
812   // Otherwise, the idom is the loop, so we need to insert a PHI node.  Do so
813   // now, then get values to fill in the incoming values for the PHI.
814   PHINode *PN = PHINode::Create(orig->getType(), orig->getName()+".rle",
815                                 BB->begin());
816   PN->reserveOperandSpace(std::distance(pred_begin(BB), pred_end(BB)));
817   
818   if (Phis.count(BB) == 0)
819     Phis.insert(std::make_pair(BB, PN));
820   
821   // Fill in the incoming values for the block.
822   for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
823     Value* val = GetValueForBlock(*PI, orig, Phis);
824     PN->addIncoming(val, *PI);
825   }
826   
827   VN.getAliasAnalysis()->copyValue(orig, PN);
828   
829   // Attempt to collapse PHI nodes that are trivially redundant
830   Value* v = CollapsePhi(PN);
831   if (!v) {
832     // Cache our phi construction results
833     phiMap[orig->getPointerOperand()].insert(PN);
834     return PN;
835   }
836     
837   PN->replaceAllUsesWith(v);
838
839   for (DenseMap<BasicBlock*, Value*>::iterator I = Phis.begin(),
840        E = Phis.end(); I != E; ++I)
841     if (I->second == PN)
842       I->second = v;
843
844   DEBUG(cerr << "GVN removed: " << *PN);
845   MD->removeInstruction(PN);
846   PN->eraseFromParent();
847
848   Phis[BB] = v;
849   return v;
850 }
851
852 /// IsValueFullyAvailableInBlock - Return true if we can prove that the value
853 /// we're analyzing is fully available in the specified block.  As we go, keep
854 /// track of which blocks we know are fully alive in FullyAvailableBlocks.  This
855 /// map is actually a tri-state map with the following values:
856 ///   0) we know the block *is not* fully available.
857 ///   1) we know the block *is* fully available.
858 ///   2) we do not know whether the block is fully available or not, but we are
859 ///      currently speculating that it will be.
860 ///   3) we are speculating for this block and have used that to speculate for
861 ///      other blocks.
862 static bool IsValueFullyAvailableInBlock(BasicBlock *BB, 
863                             DenseMap<BasicBlock*, char> &FullyAvailableBlocks) {
864   // Optimistically assume that the block is fully available and check to see
865   // if we already know about this block in one lookup.
866   std::pair<DenseMap<BasicBlock*, char>::iterator, char> IV = 
867     FullyAvailableBlocks.insert(std::make_pair(BB, 2));
868
869   // If the entry already existed for this block, return the precomputed value.
870   if (!IV.second) {
871     // If this is a speculative "available" value, mark it as being used for
872     // speculation of other blocks.
873     if (IV.first->second == 2)
874       IV.first->second = 3;
875     return IV.first->second != 0;
876   }
877   
878   // Otherwise, see if it is fully available in all predecessors.
879   pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
880   
881   // If this block has no predecessors, it isn't live-in here.
882   if (PI == PE)
883     goto SpeculationFailure;
884   
885   for (; PI != PE; ++PI)
886     // If the value isn't fully available in one of our predecessors, then it
887     // isn't fully available in this block either.  Undo our previous
888     // optimistic assumption and bail out.
889     if (!IsValueFullyAvailableInBlock(*PI, FullyAvailableBlocks))
890       goto SpeculationFailure;
891   
892   return true;
893   
894 // SpeculationFailure - If we get here, we found out that this is not, after
895 // all, a fully-available block.  We have a problem if we speculated on this and
896 // used the speculation to mark other blocks as available.
897 SpeculationFailure:
898   char &BBVal = FullyAvailableBlocks[BB];
899   
900   // If we didn't speculate on this, just return with it set to false.
901   if (BBVal == 2) {
902     BBVal = 0;
903     return false;
904   }
905
906   // If we did speculate on this value, we could have blocks set to 1 that are
907   // incorrect.  Walk the (transitive) successors of this block and mark them as
908   // 0 if set to one.
909   SmallVector<BasicBlock*, 32> BBWorklist;
910   BBWorklist.push_back(BB);
911   
912   while (!BBWorklist.empty()) {
913     BasicBlock *Entry = BBWorklist.pop_back_val();
914     // Note that this sets blocks to 0 (unavailable) if they happen to not
915     // already be in FullyAvailableBlocks.  This is safe.
916     char &EntryVal = FullyAvailableBlocks[Entry];
917     if (EntryVal == 0) continue;  // Already unavailable.
918
919     // Mark as unavailable.
920     EntryVal = 0;
921     
922     for (succ_iterator I = succ_begin(Entry), E = succ_end(Entry); I != E; ++I)
923       BBWorklist.push_back(*I);
924   }
925   
926   return false;
927 }
928
929 /// processNonLocalLoad - Attempt to eliminate a load whose dependencies are
930 /// non-local by performing PHI construction.
931 bool GVN::processNonLocalLoad(LoadInst *LI,
932                               SmallVectorImpl<Instruction*> &toErase) {
933   // Find the non-local dependencies of the load.
934   const MemoryDependenceAnalysis::NonLocalDepInfo &deps = 
935     MD->getNonLocalDependency(LI);
936   //DEBUG(cerr << "INVESTIGATING NONLOCAL LOAD: " << deps.size() << *LI);
937   
938   // If we had to process more than one hundred blocks to find the
939   // dependencies, this load isn't worth worrying about.  Optimizing
940   // it will be too expensive.
941   if (deps.size() > 100)
942     return false;
943   
944   BasicBlock *EntryBlock = &LI->getParent()->getParent()->getEntryBlock();
945   
946   // Filter out useless results (non-locals, etc).  Keep track of the blocks
947   // where we have a value available in repl, also keep track of whether we see
948   // dependencies that produce an unknown value for the load (such as a call
949   // that could potentially clobber the load).
950   SmallVector<std::pair<BasicBlock*, Value*>, 16> ValuesPerBlock;
951   SmallVector<BasicBlock*, 16> UnavailableBlocks;
952   
953   for (unsigned i = 0, e = deps.size(); i != e; ++i) {
954     BasicBlock *DepBB = deps[i].first;
955     MemDepResult DepInfo = deps[i].second;
956     
957     if (DepInfo.isNonLocal()) {
958       // If this is a non-local dependency in the entry block, then we depend on
959       // the value live-in at the start of the function.  We could insert a load
960       // in the entry block to get this, but for now we'll just bail out.
961       if (DepBB == EntryBlock)
962         UnavailableBlocks.push_back(DepBB);
963       continue;
964     }
965     
966     if (DepInfo.isClobber()) {
967       UnavailableBlocks.push_back(DepBB);
968       continue;
969     }
970     
971     Instruction *DepInst = DepInfo.getInst();
972     
973     // Loading the allocation -> undef.
974     if (isa<AllocationInst>(DepInst)) {
975       ValuesPerBlock.push_back(std::make_pair(DepBB, 
976                                               UndefValue::get(LI->getType())));
977       continue;
978     }
979   
980     if (StoreInst* S = dyn_cast<StoreInst>(DepInfo.getInst())) {
981       // Reject loads and stores that are to the same address but are of 
982       // different types.
983       // NOTE: 403.gcc does have this case (e.g. in readonly_fields_p) because
984       // of bitfield access, it would be interesting to optimize for it at some
985       // point.
986       if (S->getOperand(0)->getType() != LI->getType()) {
987         UnavailableBlocks.push_back(DepBB);
988         continue;
989       }
990       
991       ValuesPerBlock.push_back(std::make_pair(DepBB, S->getOperand(0)));
992       
993     } else if (LoadInst* LD = dyn_cast<LoadInst>(DepInfo.getInst())) {
994       if (LD->getType() != LI->getType()) {
995         UnavailableBlocks.push_back(DepBB);
996         continue;
997       }
998       ValuesPerBlock.push_back(std::make_pair(DepBB, LD));
999     } else {
1000       UnavailableBlocks.push_back(DepBB);
1001       continue;
1002     }
1003   }
1004   
1005   // If we have no predecessors that produce a known value for this load, exit
1006   // early.
1007   if (ValuesPerBlock.empty()) return false;
1008   
1009   // If all of the instructions we depend on produce a known value for this
1010   // load, then it is fully redundant and we can use PHI insertion to compute
1011   // its value.  Insert PHIs and remove the fully redundant value now.
1012   if (UnavailableBlocks.empty()) {
1013     // Use cached PHI construction information from previous runs
1014     SmallPtrSet<Instruction*, 4> &p = phiMap[LI->getPointerOperand()];
1015     for (SmallPtrSet<Instruction*, 4>::iterator I = p.begin(), E = p.end();
1016          I != E; ++I) {
1017       if ((*I)->getParent() == LI->getParent()) {
1018         DEBUG(cerr << "GVN REMOVING NONLOCAL LOAD #1: " << *LI);
1019         LI->replaceAllUsesWith(*I);
1020         toErase.push_back(LI);
1021         NumGVNLoad++;
1022         return true;
1023       }
1024       
1025       ValuesPerBlock.push_back(std::make_pair((*I)->getParent(), *I));
1026     }
1027     
1028     DEBUG(cerr << "GVN REMOVING NONLOCAL LOAD: " << *LI);
1029     
1030     DenseMap<BasicBlock*, Value*> BlockReplValues;
1031     BlockReplValues.insert(ValuesPerBlock.begin(), ValuesPerBlock.end());
1032     // Perform PHI construction.
1033     Value* v = GetValueForBlock(LI->getParent(), LI, BlockReplValues, true);
1034     LI->replaceAllUsesWith(v);
1035     toErase.push_back(LI);
1036     NumGVNLoad++;
1037     return true;
1038   }
1039   
1040   if (!EnablePRE || !EnableLoadPRE)
1041     return false;
1042
1043   // Okay, we have *some* definitions of the value.  This means that the value
1044   // is available in some of our (transitive) predecessors.  Lets think about
1045   // doing PRE of this load.  This will involve inserting a new load into the
1046   // predecessor when it's not available.  We could do this in general, but
1047   // prefer to not increase code size.  As such, we only do this when we know
1048   // that we only have to insert *one* load (which means we're basically moving
1049   // the load, not inserting a new one).
1050   
1051   // Everything we do here is based on local predecessors of LI's block.  If it
1052   // only has one predecessor, bail now.
1053   BasicBlock *LoadBB = LI->getParent();
1054   if (LoadBB->getSinglePredecessor())
1055     return false;
1056   
1057   // If we have a repl set with LI itself in it, this means we have a loop where
1058   // at least one of the values is LI.  Since this means that we won't be able
1059   // to eliminate LI even if we insert uses in the other predecessors, we will
1060   // end up increasing code size.  Reject this by scanning for LI.
1061   for (unsigned i = 0, e = ValuesPerBlock.size(); i != e; ++i)
1062     if (ValuesPerBlock[i].second == LI)
1063       return false;
1064   
1065   // Okay, we have some hope :).  Check to see if the loaded value is fully
1066   // available in all but one predecessor.
1067   // FIXME: If we could restructure the CFG, we could make a common pred with
1068   // all the preds that don't have an available LI and insert a new load into
1069   // that one block.
1070   BasicBlock *UnavailablePred = 0;
1071
1072   DenseMap<BasicBlock*, char> FullyAvailableBlocks;
1073   for (unsigned i = 0, e = ValuesPerBlock.size(); i != e; ++i)
1074     FullyAvailableBlocks[ValuesPerBlock[i].first] = true;
1075   for (unsigned i = 0, e = UnavailableBlocks.size(); i != e; ++i)
1076     FullyAvailableBlocks[UnavailableBlocks[i]] = false;
1077
1078   for (pred_iterator PI = pred_begin(LoadBB), E = pred_end(LoadBB);
1079        PI != E; ++PI) {
1080     if (IsValueFullyAvailableInBlock(*PI, FullyAvailableBlocks))
1081       continue;
1082     
1083     // If this load is not available in multiple predecessors, reject it.
1084     if (UnavailablePred && UnavailablePred != *PI)
1085       return false;
1086     UnavailablePred = *PI;
1087   }
1088   
1089   assert(UnavailablePred != 0 &&
1090          "Fully available value should be eliminated above!");
1091   
1092   // If the loaded pointer is PHI node defined in this block, do PHI translation
1093   // to get its value in the predecessor.
1094   Value *LoadPtr = LI->getOperand(0)->DoPHITranslation(LoadBB, UnavailablePred);
1095   
1096   // Make sure the value is live in the predecessor.  If it was defined by a
1097   // non-PHI instruction in this block, we don't know how to recompute it above.
1098   if (Instruction *LPInst = dyn_cast<Instruction>(LoadPtr))
1099     if (!DT->dominates(LPInst->getParent(), UnavailablePred)) {
1100       DEBUG(cerr << "COULDN'T PRE LOAD BECAUSE PTR IS UNAVAILABLE IN PRED: "
1101                  << *LPInst << *LI << "\n");
1102       return false;
1103     }
1104   
1105   // We don't currently handle critical edges :(
1106   if (UnavailablePred->getTerminator()->getNumSuccessors() != 1) {
1107     DEBUG(cerr << "COULD NOT PRE LOAD BECAUSE OF CRITICAL EDGE '"
1108                 << UnavailablePred->getName() << "': " << *LI);
1109     return false;
1110   }
1111   
1112   // Okay, we can eliminate this load by inserting a reload in the predecessor
1113   // and using PHI construction to get the value in the other predecessors, do
1114   // it.
1115   DEBUG(cerr << "GVN REMOVING PRE LOAD: " << *LI);
1116   
1117   Value *NewLoad = new LoadInst(LoadPtr, LI->getName()+".pre", false,
1118                                 LI->getAlignment(),
1119                                 UnavailablePred->getTerminator());
1120   
1121   DenseMap<BasicBlock*, Value*> BlockReplValues;
1122   BlockReplValues.insert(ValuesPerBlock.begin(), ValuesPerBlock.end());
1123   BlockReplValues[UnavailablePred] = NewLoad;
1124   
1125   // Perform PHI construction.
1126   Value* v = GetValueForBlock(LI->getParent(), LI, BlockReplValues, true);
1127   LI->replaceAllUsesWith(v);
1128   v->takeName(LI);
1129   toErase.push_back(LI);
1130   NumPRELoad++;
1131   return true;
1132 }
1133
1134 /// processLoad - Attempt to eliminate a load, first by eliminating it
1135 /// locally, and then attempting non-local elimination if that fails.
1136 bool GVN::processLoad(LoadInst *L, SmallVectorImpl<Instruction*> &toErase) {
1137   if (L->isVolatile())
1138     return false;
1139   
1140   Value* pointer = L->getPointerOperand();
1141
1142   // ... to a pointer that has been loaded from before...
1143   MemDepResult dep = MD->getDependency(L);
1144   
1145   // If the value isn't available, don't do anything!
1146   if (dep.isClobber())
1147     return false;
1148
1149   // If it is defined in another block, try harder.
1150   if (dep.isNonLocal()) {
1151     if (L->getParent() == &L->getParent()->getParent()->getEntryBlock())
1152       return false;
1153     return processNonLocalLoad(L, toErase);
1154   }
1155
1156   Instruction *DepInst = dep.getInst();
1157   if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInst)) {
1158     // Only forward substitute stores to loads of the same type.
1159     // FIXME: Could do better!
1160     if (DepSI->getPointerOperand()->getType() != pointer->getType())
1161       return false;
1162     
1163     // Remove it!
1164     L->replaceAllUsesWith(DepSI->getOperand(0));
1165     toErase.push_back(L);
1166     NumGVNLoad++;
1167     return true;
1168   }
1169
1170   if (LoadInst *DepLI = dyn_cast<LoadInst>(DepInst)) {
1171     // Only forward substitute stores to loads of the same type.
1172     // FIXME: Could do better! load i32 -> load i8 -> truncate on little endian.
1173     if (DepLI->getType() != L->getType())
1174       return false;
1175     
1176     // Remove it!
1177     L->replaceAllUsesWith(DepLI);
1178     toErase.push_back(L);
1179     NumGVNLoad++;
1180     return true;
1181   }
1182   
1183   // If this load really doesn't depend on anything, then we must be loading an
1184   // undef value.  This can happen when loading for a fresh allocation with no
1185   // intervening stores, for example.
1186   if (isa<AllocationInst>(DepInst)) {
1187     L->replaceAllUsesWith(UndefValue::get(L->getType()));
1188     toErase.push_back(L);
1189     NumGVNLoad++;
1190     return true;
1191   }
1192
1193   return false;
1194 }
1195
1196 Value* GVN::lookupNumber(BasicBlock* BB, uint32_t num) {
1197   DenseMap<BasicBlock*, ValueNumberScope*>::iterator I = localAvail.find(BB);
1198   if (I == localAvail.end())
1199     return 0;
1200   
1201   ValueNumberScope* locals = I->second;
1202   
1203   while (locals) {
1204     DenseMap<uint32_t, Value*>::iterator I = locals->table.find(num);
1205     if (I != locals->table.end())
1206       return I->second;
1207     else
1208       locals = locals->parent;
1209   }
1210   
1211   return 0;
1212 }
1213
1214 /// processInstruction - When calculating availability, handle an instruction
1215 /// by inserting it into the appropriate sets
1216 bool GVN::processInstruction(Instruction *I,
1217                              SmallVectorImpl<Instruction*> &toErase) {
1218   if (LoadInst* L = dyn_cast<LoadInst>(I)) {
1219     bool changed = processLoad(L, toErase);
1220     
1221     if (!changed) {
1222       unsigned num = VN.lookup_or_add(L);
1223       localAvail[I->getParent()]->table.insert(std::make_pair(num, L));
1224     }
1225     
1226     return changed;
1227   }
1228   
1229   uint32_t nextNum = VN.getNextUnusedValueNumber();
1230   unsigned num = VN.lookup_or_add(I);
1231   
1232   // Allocations are always uniquely numbered, so we can save time and memory
1233   // by fast failing them.
1234   if (isa<AllocationInst>(I) || isa<TerminatorInst>(I)) {
1235     localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1236     return false;
1237   }
1238   
1239   // Collapse PHI nodes
1240   if (PHINode* p = dyn_cast<PHINode>(I)) {
1241     Value* constVal = CollapsePhi(p);
1242     
1243     if (constVal) {
1244       for (PhiMapType::iterator PI = phiMap.begin(), PE = phiMap.end();
1245            PI != PE; ++PI)
1246         if (PI->second.count(p))
1247           PI->second.erase(p);
1248         
1249       p->replaceAllUsesWith(constVal);
1250       toErase.push_back(p);
1251     } else {
1252       localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1253     }
1254   
1255   // If the number we were assigned was a brand new VN, then we don't
1256   // need to do a lookup to see if the number already exists
1257   // somewhere in the domtree: it can't!
1258   } else if (num == nextNum) {
1259     localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1260     
1261   // Perform value-number based elimination
1262   } else if (Value* repl = lookupNumber(I->getParent(), num)) {
1263     // Remove it!
1264     VN.erase(I);
1265     I->replaceAllUsesWith(repl);
1266     toErase.push_back(I);
1267     return true;
1268   } else {
1269     localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1270   }
1271   
1272   return false;
1273 }
1274
1275 // GVN::runOnFunction - This is the main transformation entry point for a
1276 // function.
1277 //
1278 bool GVN::runOnFunction(Function& F) {
1279   MD = &getAnalysis<MemoryDependenceAnalysis>();
1280   DT = &getAnalysis<DominatorTree>();
1281   VN.setAliasAnalysis(&getAnalysis<AliasAnalysis>());
1282   VN.setMemDep(MD);
1283   VN.setDomTree(DT);
1284   
1285   bool changed = false;
1286   bool shouldContinue = true;
1287   
1288   // Merge unconditional branches, allowing PRE to catch more
1289   // optimization opportunities.
1290   for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ) {
1291     BasicBlock* BB = FI;
1292     ++FI;
1293     bool removedBlock = MergeBlockIntoPredecessor(BB, this);
1294     if (removedBlock) NumGVNBlocks++;
1295     
1296     changed |= removedBlock;
1297   }
1298   
1299   while (shouldContinue) {
1300     shouldContinue = iterateOnFunction(F);
1301     changed |= shouldContinue;
1302   }
1303   
1304   if (EnablePRE) {
1305     bool PREChanged = true;
1306     while (PREChanged) {
1307       PREChanged = performPRE(F);
1308       changed |= PREChanged;
1309     }
1310   }
1311
1312   cleanupGlobalSets();
1313
1314   return changed;
1315 }
1316
1317
1318 bool GVN::processBlock(DomTreeNode* DTN) {
1319   BasicBlock* BB = DTN->getBlock();
1320   SmallVector<Instruction*, 8> toErase;
1321   bool changed_function = false;
1322   
1323   if (DTN->getIDom())
1324     localAvail[BB] =
1325                   new ValueNumberScope(localAvail[DTN->getIDom()->getBlock()]);
1326   else
1327     localAvail[BB] = new ValueNumberScope(0);
1328   
1329   for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();
1330        BI != BE;) {
1331     changed_function |= processInstruction(BI, toErase);
1332     if (toErase.empty()) {
1333       ++BI;
1334       continue;
1335     }
1336     
1337     // If we need some instructions deleted, do it now.
1338     NumGVNInstr += toErase.size();
1339     
1340     // Avoid iterator invalidation.
1341     bool AtStart = BI == BB->begin();
1342     if (!AtStart)
1343       --BI;
1344
1345     for (SmallVector<Instruction*, 4>::iterator I = toErase.begin(),
1346          E = toErase.end(); I != E; ++I) {
1347       DEBUG(cerr << "GVN removed: " << **I);
1348       MD->removeInstruction(*I);
1349       (*I)->eraseFromParent();
1350     }
1351
1352     if (AtStart)
1353       BI = BB->begin();
1354     else
1355       ++BI;
1356     
1357     toErase.clear();
1358   }
1359   
1360   return changed_function;
1361 }
1362
1363 /// performPRE - Perform a purely local form of PRE that looks for diamond
1364 /// control flow patterns and attempts to perform simple PRE at the join point.
1365 bool GVN::performPRE(Function& F) {
1366   bool Changed = false;
1367   SmallVector<std::pair<TerminatorInst*, unsigned>, 4> toSplit;
1368   DenseMap<BasicBlock*, Value*> predMap;
1369   for (df_iterator<BasicBlock*> DI = df_begin(&F.getEntryBlock()),
1370        DE = df_end(&F.getEntryBlock()); DI != DE; ++DI) {
1371     BasicBlock* CurrentBlock = *DI;
1372     
1373     // Nothing to PRE in the entry block.
1374     if (CurrentBlock == &F.getEntryBlock()) continue;
1375     
1376     for (BasicBlock::iterator BI = CurrentBlock->begin(),
1377          BE = CurrentBlock->end(); BI != BE; ) {
1378       Instruction *CurInst = BI++;
1379       
1380       if (isa<AllocationInst>(CurInst) || isa<TerminatorInst>(CurInst) ||
1381           isa<PHINode>(CurInst) || CurInst->mayReadFromMemory() ||
1382           CurInst->mayWriteToMemory())
1383         continue;
1384       
1385       uint32_t valno = VN.lookup(CurInst);
1386       
1387       // Look for the predecessors for PRE opportunities.  We're
1388       // only trying to solve the basic diamond case, where
1389       // a value is computed in the successor and one predecessor,
1390       // but not the other.  We also explicitly disallow cases
1391       // where the successor is its own predecessor, because they're
1392       // more complicated to get right.
1393       unsigned numWith = 0;
1394       unsigned numWithout = 0;
1395       BasicBlock* PREPred = 0;
1396       predMap.clear();
1397
1398       for (pred_iterator PI = pred_begin(CurrentBlock),
1399            PE = pred_end(CurrentBlock); PI != PE; ++PI) {
1400         // We're not interested in PRE where the block is its
1401         // own predecessor, on in blocks with predecessors
1402         // that are not reachable.
1403         if (*PI == CurrentBlock) {
1404           numWithout = 2;
1405           break;
1406         } else if (!localAvail.count(*PI))  {
1407           numWithout = 2;
1408           break;
1409         }
1410         
1411         DenseMap<uint32_t, Value*>::iterator predV = 
1412                                             localAvail[*PI]->table.find(valno);
1413         if (predV == localAvail[*PI]->table.end()) {
1414           PREPred = *PI;
1415           numWithout++;
1416         } else if (predV->second == CurInst) {
1417           numWithout = 2;
1418         } else {
1419           predMap[*PI] = predV->second;
1420           numWith++;
1421         }
1422       }
1423       
1424       // Don't do PRE when it might increase code size, i.e. when
1425       // we would need to insert instructions in more than one pred.
1426       if (numWithout != 1 || numWith == 0)
1427         continue;
1428       
1429       // We can't do PRE safely on a critical edge, so instead we schedule
1430       // the edge to be split and perform the PRE the next time we iterate
1431       // on the function.
1432       unsigned succNum = 0;
1433       for (unsigned i = 0, e = PREPred->getTerminator()->getNumSuccessors();
1434            i != e; ++i)
1435         if (PREPred->getTerminator()->getSuccessor(i) == CurrentBlock) {
1436           succNum = i;
1437           break;
1438         }
1439         
1440       if (isCriticalEdge(PREPred->getTerminator(), succNum)) {
1441         toSplit.push_back(std::make_pair(PREPred->getTerminator(), succNum));
1442         continue;
1443       }
1444       
1445       // Instantiate the expression the in predecessor that lacked it.
1446       // Because we are going top-down through the block, all value numbers
1447       // will be available in the predecessor by the time we need them.  Any
1448       // that weren't original present will have been instantiated earlier
1449       // in this loop.
1450       Instruction* PREInstr = CurInst->clone();
1451       bool success = true;
1452       for (unsigned i = 0, e = CurInst->getNumOperands(); i != e; ++i) {
1453         Value *Op = PREInstr->getOperand(i);
1454         if (isa<Argument>(Op) || isa<Constant>(Op) || isa<GlobalValue>(Op))
1455           continue;
1456         
1457         if (Value *V = lookupNumber(PREPred, VN.lookup(Op))) {
1458           PREInstr->setOperand(i, V);
1459         } else {
1460           success = false;
1461           break;
1462         }
1463       }
1464       
1465       // Fail out if we encounter an operand that is not available in
1466       // the PRE predecessor.  This is typically because of loads which 
1467       // are not value numbered precisely.
1468       if (!success) {
1469         delete PREInstr;
1470         continue;
1471       }
1472       
1473       PREInstr->insertBefore(PREPred->getTerminator());
1474       PREInstr->setName(CurInst->getName() + ".pre");
1475       predMap[PREPred] = PREInstr;
1476       VN.add(PREInstr, valno);
1477       NumGVNPRE++;
1478       
1479       // Update the availability map to include the new instruction.
1480       localAvail[PREPred]->table.insert(std::make_pair(valno, PREInstr));
1481       
1482       // Create a PHI to make the value available in this block.
1483       PHINode* Phi = PHINode::Create(CurInst->getType(),
1484                                      CurInst->getName() + ".pre-phi",
1485                                      CurrentBlock->begin());
1486       for (pred_iterator PI = pred_begin(CurrentBlock),
1487            PE = pred_end(CurrentBlock); PI != PE; ++PI)
1488         Phi->addIncoming(predMap[*PI], *PI);
1489       
1490       VN.add(Phi, valno);
1491       localAvail[CurrentBlock]->table[valno] = Phi;
1492       
1493       CurInst->replaceAllUsesWith(Phi);
1494       VN.erase(CurInst);
1495       
1496       DEBUG(cerr << "GVN PRE removed: " << *CurInst);
1497       MD->removeInstruction(CurInst);
1498       CurInst->eraseFromParent();
1499       Changed = true;
1500     }
1501   }
1502   
1503   for (SmallVector<std::pair<TerminatorInst*, unsigned>, 4>::iterator
1504        I = toSplit.begin(), E = toSplit.end(); I != E; ++I)
1505     SplitCriticalEdge(I->first, I->second, this);
1506   
1507   return Changed || toSplit.size();
1508 }
1509
1510 // iterateOnFunction - Executes one iteration of GVN
1511 bool GVN::iterateOnFunction(Function &F) {
1512   cleanupGlobalSets();
1513
1514   // Top-down walk of the dominator tree
1515   bool changed = false;
1516   for (df_iterator<DomTreeNode*> DI = df_begin(DT->getRootNode()),
1517        DE = df_end(DT->getRootNode()); DI != DE; ++DI)
1518     changed |= processBlock(*DI);
1519   
1520   return changed;
1521 }
1522
1523 void GVN::cleanupGlobalSets() {
1524   VN.clear();
1525   phiMap.clear();
1526
1527   for (DenseMap<BasicBlock*, ValueNumberScope*>::iterator
1528        I = localAvail.begin(), E = localAvail.end(); I != E; ++I)
1529     delete I->second;
1530   localAvail.clear();
1531 }