Take advantage of the new fast SmallPtrSet assignment operator when propagating AVAIL...
[oota-llvm.git] / lib / Transforms / Scalar / GVNPRE.cpp
1 //===- GVNPRE.cpp - Eliminate redundant values and expressions ------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the Owen Anderson and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This pass performs a hybrid of global value numbering and partial redundancy
11 // elimination, known as GVN-PRE.  It performs partial redundancy elimination on
12 // values, rather than lexical expressions, allowing a more comprehensive view 
13 // the optimization.  It replaces redundant values with uses of earlier 
14 // occurences of the same value.  While this is beneficial in that it eliminates
15 // unneeded computation, it also increases register pressure by creating large
16 // live ranges, and should be used with caution on platforms that are very 
17 // sensitive to register pressure.
18 //
19 //===----------------------------------------------------------------------===//
20
21 #define DEBUG_TYPE "gvnpre"
22 #include "llvm/Value.h"
23 #include "llvm/Transforms/Scalar.h"
24 #include "llvm/Instructions.h"
25 #include "llvm/Function.h"
26 #include "llvm/DerivedTypes.h"
27 #include "llvm/Analysis/Dominators.h"
28 #include "llvm/ADT/BitVector.h"
29 #include "llvm/ADT/DenseMap.h"
30 #include "llvm/ADT/DepthFirstIterator.h"
31 #include "llvm/ADT/PostOrderIterator.h"
32 #include "llvm/ADT/SmallPtrSet.h"
33 #include "llvm/ADT/Statistic.h"
34 #include "llvm/Transforms/Utils/UnifyFunctionExitNodes.h"
35 #include "llvm/Support/CFG.h"
36 #include "llvm/Support/Compiler.h"
37 #include "llvm/Support/Debug.h"
38 #include <algorithm>
39 #include <deque>
40 #include <map>
41 #include <vector>
42 #include <set>
43 using namespace llvm;
44
45 //===----------------------------------------------------------------------===//
46 //                         ValueTable Class
47 //===----------------------------------------------------------------------===//
48
49 /// This class holds the mapping between values and value numbers.  It is used
50 /// as an efficient mechanism to determine the expression-wise equivalence of
51 /// two values.
52
53 namespace {
54   class VISIBILITY_HIDDEN ValueTable {
55     public:
56       struct Expression {
57         enum ExpressionOpcode { ADD, SUB, MUL, UDIV, SDIV, FDIV, UREM, SREM, 
58                               FREM, SHL, LSHR, ASHR, AND, OR, XOR, ICMPEQ, 
59                               ICMPNE, ICMPUGT, ICMPUGE, ICMPULT, ICMPULE, 
60                               ICMPSGT, ICMPSGE, ICMPSLT, ICMPSLE, FCMPOEQ, 
61                               FCMPOGT, FCMPOGE, FCMPOLT, FCMPOLE, FCMPONE, 
62                               FCMPORD, FCMPUNO, FCMPUEQ, FCMPUGT, FCMPUGE, 
63                               FCMPULT, FCMPULE, FCMPUNE, EXTRACT, INSERT,
64                               SHUFFLE, SELECT, TRUNC, ZEXT, SEXT, FPTOUI,
65                               FPTOSI, UITOFP, SITOFP, FPTRUNC, FPEXT, 
66                               PTRTOINT, INTTOPTR, BITCAST, GEP};
67     
68         ExpressionOpcode opcode;
69         const Type* type;
70         uint32_t firstVN;
71         uint32_t secondVN;
72         uint32_t thirdVN;
73         std::vector<uint32_t> varargs;
74       
75         bool operator< (const Expression& other) const {
76           if (opcode < other.opcode)
77             return true;
78           else if (opcode > other.opcode)
79             return false;
80           else if (type < other.type)
81             return true;
82           else if (type > other.type)
83             return false;
84           else if (firstVN < other.firstVN)
85             return true;
86           else if (firstVN > other.firstVN)
87             return false;
88           else if (secondVN < other.secondVN)
89             return true;
90           else if (secondVN > other.secondVN)
91             return false;
92           else if (thirdVN < other.thirdVN)
93             return true;
94           else if (thirdVN > other.thirdVN)
95             return false;
96           else {
97             if (varargs.size() < other.varargs.size())
98               return true;
99             else if (varargs.size() > other.varargs.size())
100               return false;
101             
102             for (size_t i = 0; i < varargs.size(); ++i)
103               if (varargs[i] < other.varargs[i])
104                 return true;
105               else if (varargs[i] > other.varargs[i])
106                 return false;
107           
108             return false;
109           }
110         }
111       };
112     
113     private:
114       DenseMap<Value*, uint32_t> valueNumbering;
115       std::map<Expression, uint32_t> expressionNumbering;
116   
117       uint32_t nextValueNumber;
118     
119       Expression::ExpressionOpcode getOpcode(BinaryOperator* BO);
120       Expression::ExpressionOpcode getOpcode(CmpInst* C);
121       Expression::ExpressionOpcode getOpcode(CastInst* C);
122       Expression create_expression(BinaryOperator* BO);
123       Expression create_expression(CmpInst* C);
124       Expression create_expression(ShuffleVectorInst* V);
125       Expression create_expression(ExtractElementInst* C);
126       Expression create_expression(InsertElementInst* V);
127       Expression create_expression(SelectInst* V);
128       Expression create_expression(CastInst* C);
129       Expression create_expression(GetElementPtrInst* G);
130     public:
131       ValueTable() { nextValueNumber = 1; }
132       uint32_t lookup_or_add(Value* V);
133       uint32_t lookup(Value* V) const;
134       void add(Value* V, uint32_t num);
135       void clear();
136       void erase(Value* v);
137       unsigned size();
138   };
139 }
140
141 //===----------------------------------------------------------------------===//
142 //                     ValueTable Internal Functions
143 //===----------------------------------------------------------------------===//
144 ValueTable::Expression::ExpressionOpcode 
145                              ValueTable::getOpcode(BinaryOperator* BO) {
146   switch(BO->getOpcode()) {
147     case Instruction::Add:
148       return Expression::ADD;
149     case Instruction::Sub:
150       return Expression::SUB;
151     case Instruction::Mul:
152       return Expression::MUL;
153     case Instruction::UDiv:
154       return Expression::UDIV;
155     case Instruction::SDiv:
156       return Expression::SDIV;
157     case Instruction::FDiv:
158       return Expression::FDIV;
159     case Instruction::URem:
160       return Expression::UREM;
161     case Instruction::SRem:
162       return Expression::SREM;
163     case Instruction::FRem:
164       return Expression::FREM;
165     case Instruction::Shl:
166       return Expression::SHL;
167     case Instruction::LShr:
168       return Expression::LSHR;
169     case Instruction::AShr:
170       return Expression::ASHR;
171     case Instruction::And:
172       return Expression::AND;
173     case Instruction::Or:
174       return Expression::OR;
175     case Instruction::Xor:
176       return Expression::XOR;
177     
178     // THIS SHOULD NEVER HAPPEN
179     default:
180       assert(0 && "Binary operator with unknown opcode?");
181       return Expression::ADD;
182   }
183 }
184
185 ValueTable::Expression::ExpressionOpcode ValueTable::getOpcode(CmpInst* C) {
186   if (C->getOpcode() == Instruction::ICmp) {
187     switch (C->getPredicate()) {
188       case ICmpInst::ICMP_EQ:
189         return Expression::ICMPEQ;
190       case ICmpInst::ICMP_NE:
191         return Expression::ICMPNE;
192       case ICmpInst::ICMP_UGT:
193         return Expression::ICMPUGT;
194       case ICmpInst::ICMP_UGE:
195         return Expression::ICMPUGE;
196       case ICmpInst::ICMP_ULT:
197         return Expression::ICMPULT;
198       case ICmpInst::ICMP_ULE:
199         return Expression::ICMPULE;
200       case ICmpInst::ICMP_SGT:
201         return Expression::ICMPSGT;
202       case ICmpInst::ICMP_SGE:
203         return Expression::ICMPSGE;
204       case ICmpInst::ICMP_SLT:
205         return Expression::ICMPSLT;
206       case ICmpInst::ICMP_SLE:
207         return Expression::ICMPSLE;
208       
209       // THIS SHOULD NEVER HAPPEN
210       default:
211         assert(0 && "Comparison with unknown predicate?");
212         return Expression::ICMPEQ;
213     }
214   } else {
215     switch (C->getPredicate()) {
216       case FCmpInst::FCMP_OEQ:
217         return Expression::FCMPOEQ;
218       case FCmpInst::FCMP_OGT:
219         return Expression::FCMPOGT;
220       case FCmpInst::FCMP_OGE:
221         return Expression::FCMPOGE;
222       case FCmpInst::FCMP_OLT:
223         return Expression::FCMPOLT;
224       case FCmpInst::FCMP_OLE:
225         return Expression::FCMPOLE;
226       case FCmpInst::FCMP_ONE:
227         return Expression::FCMPONE;
228       case FCmpInst::FCMP_ORD:
229         return Expression::FCMPORD;
230       case FCmpInst::FCMP_UNO:
231         return Expression::FCMPUNO;
232       case FCmpInst::FCMP_UEQ:
233         return Expression::FCMPUEQ;
234       case FCmpInst::FCMP_UGT:
235         return Expression::FCMPUGT;
236       case FCmpInst::FCMP_UGE:
237         return Expression::FCMPUGE;
238       case FCmpInst::FCMP_ULT:
239         return Expression::FCMPULT;
240       case FCmpInst::FCMP_ULE:
241         return Expression::FCMPULE;
242       case FCmpInst::FCMP_UNE:
243         return Expression::FCMPUNE;
244       
245       // THIS SHOULD NEVER HAPPEN
246       default:
247         assert(0 && "Comparison with unknown predicate?");
248         return Expression::FCMPOEQ;
249     }
250   }
251 }
252
253 ValueTable::Expression::ExpressionOpcode 
254                              ValueTable::getOpcode(CastInst* C) {
255   switch(C->getOpcode()) {
256     case Instruction::Trunc:
257       return Expression::TRUNC;
258     case Instruction::ZExt:
259       return Expression::ZEXT;
260     case Instruction::SExt:
261       return Expression::SEXT;
262     case Instruction::FPToUI:
263       return Expression::FPTOUI;
264     case Instruction::FPToSI:
265       return Expression::FPTOSI;
266     case Instruction::UIToFP:
267       return Expression::UITOFP;
268     case Instruction::SIToFP:
269       return Expression::SITOFP;
270     case Instruction::FPTrunc:
271       return Expression::FPTRUNC;
272     case Instruction::FPExt:
273       return Expression::FPEXT;
274     case Instruction::PtrToInt:
275       return Expression::PTRTOINT;
276     case Instruction::IntToPtr:
277       return Expression::INTTOPTR;
278     case Instruction::BitCast:
279       return Expression::BITCAST;
280     
281     // THIS SHOULD NEVER HAPPEN
282     default:
283       assert(0 && "Cast operator with unknown opcode?");
284       return Expression::BITCAST;
285   }
286 }
287
288 ValueTable::Expression ValueTable::create_expression(BinaryOperator* BO) {
289   Expression e;
290     
291   e.firstVN = lookup_or_add(BO->getOperand(0));
292   e.secondVN = lookup_or_add(BO->getOperand(1));
293   e.thirdVN = 0;
294   e.type = BO->getType();
295   e.opcode = getOpcode(BO);
296   
297   return e;
298 }
299
300 ValueTable::Expression ValueTable::create_expression(CmpInst* C) {
301   Expression e;
302     
303   e.firstVN = lookup_or_add(C->getOperand(0));
304   e.secondVN = lookup_or_add(C->getOperand(1));
305   e.thirdVN = 0;
306   e.type = C->getType();
307   e.opcode = getOpcode(C);
308   
309   return e;
310 }
311
312 ValueTable::Expression ValueTable::create_expression(CastInst* C) {
313   Expression e;
314     
315   e.firstVN = lookup_or_add(C->getOperand(0));
316   e.secondVN = 0;
317   e.thirdVN = 0;
318   e.type = C->getType();
319   e.opcode = getOpcode(C);
320   
321   return e;
322 }
323
324 ValueTable::Expression ValueTable::create_expression(ShuffleVectorInst* S) {
325   Expression e;
326     
327   e.firstVN = lookup_or_add(S->getOperand(0));
328   e.secondVN = lookup_or_add(S->getOperand(1));
329   e.thirdVN = lookup_or_add(S->getOperand(2));
330   e.type = S->getType();
331   e.opcode = Expression::SHUFFLE;
332   
333   return e;
334 }
335
336 ValueTable::Expression ValueTable::create_expression(ExtractElementInst* E) {
337   Expression e;
338     
339   e.firstVN = lookup_or_add(E->getOperand(0));
340   e.secondVN = lookup_or_add(E->getOperand(1));
341   e.thirdVN = 0;
342   e.type = E->getType();
343   e.opcode = Expression::EXTRACT;
344   
345   return e;
346 }
347
348 ValueTable::Expression ValueTable::create_expression(InsertElementInst* I) {
349   Expression e;
350     
351   e.firstVN = lookup_or_add(I->getOperand(0));
352   e.secondVN = lookup_or_add(I->getOperand(1));
353   e.thirdVN = lookup_or_add(I->getOperand(2));
354   e.type = I->getType();
355   e.opcode = Expression::INSERT;
356   
357   return e;
358 }
359
360 ValueTable::Expression ValueTable::create_expression(SelectInst* I) {
361   Expression e;
362     
363   e.firstVN = lookup_or_add(I->getCondition());
364   e.secondVN = lookup_or_add(I->getTrueValue());
365   e.thirdVN = lookup_or_add(I->getFalseValue());
366   e.type = I->getType();
367   e.opcode = Expression::SELECT;
368   
369   return e;
370 }
371
372 ValueTable::Expression ValueTable::create_expression(GetElementPtrInst* G) {
373   Expression e;
374     
375   e.firstVN = lookup_or_add(G->getPointerOperand());
376   e.secondVN = 0;
377   e.thirdVN = 0;
378   e.type = G->getType();
379   e.opcode = Expression::SELECT;
380   
381   for (GetElementPtrInst::op_iterator I = G->idx_begin(), E = G->idx_end();
382        I != E; ++I)
383     e.varargs.push_back(lookup_or_add(*I));
384   
385   return e;
386 }
387
388 //===----------------------------------------------------------------------===//
389 //                     ValueTable External Functions
390 //===----------------------------------------------------------------------===//
391
392 /// lookup_or_add - Returns the value number for the specified value, assigning
393 /// it a new number if it did not have one before.
394 uint32_t ValueTable::lookup_or_add(Value* V) {
395   DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
396   if (VI != valueNumbering.end())
397     return VI->second;
398   
399   
400   if (BinaryOperator* BO = dyn_cast<BinaryOperator>(V)) {
401     Expression e = create_expression(BO);
402     
403     std::map<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
404     if (EI != expressionNumbering.end()) {
405       valueNumbering.insert(std::make_pair(V, EI->second));
406       return EI->second;
407     } else {
408       expressionNumbering.insert(std::make_pair(e, nextValueNumber));
409       valueNumbering.insert(std::make_pair(V, nextValueNumber));
410       
411       return nextValueNumber++;
412     }
413   } else if (CmpInst* C = dyn_cast<CmpInst>(V)) {
414     Expression e = create_expression(C);
415     
416     std::map<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
417     if (EI != expressionNumbering.end()) {
418       valueNumbering.insert(std::make_pair(V, EI->second));
419       return EI->second;
420     } else {
421       expressionNumbering.insert(std::make_pair(e, nextValueNumber));
422       valueNumbering.insert(std::make_pair(V, nextValueNumber));
423       
424       return nextValueNumber++;
425     }
426   } else if (ShuffleVectorInst* U = dyn_cast<ShuffleVectorInst>(V)) {
427     Expression e = create_expression(U);
428     
429     std::map<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
430     if (EI != expressionNumbering.end()) {
431       valueNumbering.insert(std::make_pair(V, EI->second));
432       return EI->second;
433     } else {
434       expressionNumbering.insert(std::make_pair(e, nextValueNumber));
435       valueNumbering.insert(std::make_pair(V, nextValueNumber));
436       
437       return nextValueNumber++;
438     }
439   } else if (ExtractElementInst* U = dyn_cast<ExtractElementInst>(V)) {
440     Expression e = create_expression(U);
441     
442     std::map<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
443     if (EI != expressionNumbering.end()) {
444       valueNumbering.insert(std::make_pair(V, EI->second));
445       return EI->second;
446     } else {
447       expressionNumbering.insert(std::make_pair(e, nextValueNumber));
448       valueNumbering.insert(std::make_pair(V, nextValueNumber));
449       
450       return nextValueNumber++;
451     }
452   } else if (InsertElementInst* U = dyn_cast<InsertElementInst>(V)) {
453     Expression e = create_expression(U);
454     
455     std::map<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
456     if (EI != expressionNumbering.end()) {
457       valueNumbering.insert(std::make_pair(V, EI->second));
458       return EI->second;
459     } else {
460       expressionNumbering.insert(std::make_pair(e, nextValueNumber));
461       valueNumbering.insert(std::make_pair(V, nextValueNumber));
462       
463       return nextValueNumber++;
464     }
465   } else if (SelectInst* U = dyn_cast<SelectInst>(V)) {
466     Expression e = create_expression(U);
467     
468     std::map<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
469     if (EI != expressionNumbering.end()) {
470       valueNumbering.insert(std::make_pair(V, EI->second));
471       return EI->second;
472     } else {
473       expressionNumbering.insert(std::make_pair(e, nextValueNumber));
474       valueNumbering.insert(std::make_pair(V, nextValueNumber));
475       
476       return nextValueNumber++;
477     }
478   } else if (CastInst* U = dyn_cast<CastInst>(V)) {
479     Expression e = create_expression(U);
480     
481     std::map<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
482     if (EI != expressionNumbering.end()) {
483       valueNumbering.insert(std::make_pair(V, EI->second));
484       return EI->second;
485     } else {
486       expressionNumbering.insert(std::make_pair(e, nextValueNumber));
487       valueNumbering.insert(std::make_pair(V, nextValueNumber));
488       
489       return nextValueNumber++;
490     }
491   } else if (GetElementPtrInst* U = dyn_cast<GetElementPtrInst>(V)) {
492     Expression e = create_expression(U);
493     
494     std::map<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
495     if (EI != expressionNumbering.end()) {
496       valueNumbering.insert(std::make_pair(V, EI->second));
497       return EI->second;
498     } else {
499       expressionNumbering.insert(std::make_pair(e, nextValueNumber));
500       valueNumbering.insert(std::make_pair(V, nextValueNumber));
501       
502       return nextValueNumber++;
503     }
504   } else {
505     valueNumbering.insert(std::make_pair(V, nextValueNumber));
506     return nextValueNumber++;
507   }
508 }
509
510 /// lookup - Returns the value number of the specified value. Fails if
511 /// the value has not yet been numbered.
512 uint32_t ValueTable::lookup(Value* V) const {
513   DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
514   if (VI != valueNumbering.end())
515     return VI->second;
516   else
517     assert(0 && "Value not numbered?");
518   
519   return 0;
520 }
521
522 /// add - Add the specified value with the given value number, removing
523 /// its old number, if any
524 void ValueTable::add(Value* V, uint32_t num) {
525   DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
526   if (VI != valueNumbering.end())
527     valueNumbering.erase(VI);
528   valueNumbering.insert(std::make_pair(V, num));
529 }
530
531 /// clear - Remove all entries from the ValueTable
532 void ValueTable::clear() {
533   valueNumbering.clear();
534   expressionNumbering.clear();
535   nextValueNumber = 1;
536 }
537
538 /// erase - Remove a value from the value numbering
539 void ValueTable::erase(Value* V) {
540   valueNumbering.erase(V);
541 }
542
543 /// size - Return the number of assigned value numbers
544 unsigned ValueTable::size() {
545   // NOTE: zero is never assigned
546   return nextValueNumber;
547 }
548
549 //===----------------------------------------------------------------------===//
550 //                       ValueNumberedSet Class
551 //===----------------------------------------------------------------------===//
552
553 class ValueNumberedSet {
554   private:
555     SmallPtrSet<Value*, 8> contents;
556     BitVector numbers;
557   public:
558     ValueNumberedSet() { numbers.resize(1); }
559     
560     typedef SmallPtrSet<Value*, 8>::iterator iterator;
561     
562     iterator begin() { return contents.begin(); }
563     iterator end() { return contents.end(); }
564     
565     bool insert(Value* v) { return contents.insert(v); }
566     void insert(iterator I, iterator E) { contents.insert(I, E); }
567     void erase(Value* v) { contents.erase(v); }
568     size_t size() { return contents.size(); }
569     
570     void set(unsigned i)  {
571       if (i >= numbers.size())
572         numbers.resize(i+1);
573       
574       numbers.set(i);
575     }
576     
577     void operator=(const ValueNumberedSet& other) {
578       contents = other.contents;
579       numbers = other.numbers;
580     }
581     
582     void reset(unsigned i)  {
583       if (i < numbers.size())
584         numbers.reset(i);
585     }
586     
587     bool test(unsigned i)  {
588       if (i >= numbers.size())
589         return false;
590       
591       return numbers.test(i);
592     }
593     
594     void clear() {
595       contents.clear();
596       numbers.clear();
597     }
598 };
599
600 //===----------------------------------------------------------------------===//
601 //                         GVNPRE Pass
602 //===----------------------------------------------------------------------===//
603
604 namespace {
605
606   class VISIBILITY_HIDDEN GVNPRE : public FunctionPass {
607     bool runOnFunction(Function &F);
608   public:
609     static char ID; // Pass identification, replacement for typeid
610     GVNPRE() : FunctionPass((intptr_t)&ID) { }
611
612   private:
613     ValueTable VN;
614     std::vector<Instruction*> createdExpressions;
615     
616     std::map<BasicBlock*, ValueNumberedSet> availableOut;
617     std::map<BasicBlock*, ValueNumberedSet> anticipatedIn;
618     std::map<BasicBlock*, ValueNumberedSet> generatedPhis;
619     
620     // This transformation requires dominator postdominator info
621     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
622       AU.setPreservesCFG();
623       AU.addRequiredID(BreakCriticalEdgesID);
624       AU.addRequired<UnifyFunctionExitNodes>();
625       AU.addRequired<DominatorTree>();
626     }
627   
628     // Helper fuctions
629     // FIXME: eliminate or document these better
630     void dump(ValueNumberedSet& s) const ;
631     void clean(ValueNumberedSet& set) ;
632     Value* find_leader(ValueNumberedSet& vals, uint32_t v) ;
633     Value* phi_translate(Value* V, BasicBlock* pred, BasicBlock* succ) ;
634     void phi_translate_set(ValueNumberedSet& anticIn, BasicBlock* pred,
635                            BasicBlock* succ, ValueNumberedSet& out) ;
636     
637     void topo_sort(ValueNumberedSet& set,
638                    std::vector<Value*>& vec) ;
639     
640     void cleanup() ;
641     bool elimination() ;
642     
643     void val_insert(ValueNumberedSet& s, Value* v) ;
644     void val_replace(ValueNumberedSet& s, Value* v) ;
645     bool dependsOnInvoke(Value* V) ;
646     void buildsets_availout(BasicBlock::iterator I,
647                             ValueNumberedSet& currAvail,
648                             ValueNumberedSet& currPhis,
649                             ValueNumberedSet& currExps,
650                             SmallPtrSet<Value*, 16>& currTemps) ;
651     bool buildsets_anticout(BasicBlock* BB,
652                             ValueNumberedSet& anticOut,
653                             std::set<BasicBlock*>& visited) ;
654     unsigned buildsets_anticin(BasicBlock* BB,
655                            ValueNumberedSet& anticOut,
656                            ValueNumberedSet& currExps,
657                            SmallPtrSet<Value*, 16>& currTemps,
658                            std::set<BasicBlock*>& visited) ;
659     void buildsets(Function& F) ;
660     
661     void insertion_pre(Value* e, BasicBlock* BB,
662                        std::map<BasicBlock*, Value*>& avail,
663                       std::map<BasicBlock*,ValueNumberedSet>& new_set) ;
664     unsigned insertion_mergepoint(std::vector<Value*>& workList,
665                                   df_iterator<DomTreeNode*>& D,
666                       std::map<BasicBlock*, ValueNumberedSet>& new_set) ;
667     bool insertion(Function& F) ;
668   
669   };
670   
671   char GVNPRE::ID = 0;
672   
673 }
674
675 // createGVNPREPass - The public interface to this file...
676 FunctionPass *llvm::createGVNPREPass() { return new GVNPRE(); }
677
678 RegisterPass<GVNPRE> X("gvnpre",
679                        "Global Value Numbering/Partial Redundancy Elimination");
680
681
682 STATISTIC(NumInsertedVals, "Number of values inserted");
683 STATISTIC(NumInsertedPhis, "Number of PHI nodes inserted");
684 STATISTIC(NumEliminated, "Number of redundant instructions eliminated");
685
686 /// find_leader - Given a set and a value number, return the first
687 /// element of the set with that value number, or 0 if no such element
688 /// is present
689 Value* GVNPRE::find_leader(ValueNumberedSet& vals, uint32_t v) {
690   if (!vals.test(v))
691     return 0;
692   
693   for (ValueNumberedSet::iterator I = vals.begin(), E = vals.end();
694        I != E; ++I)
695     if (v == VN.lookup(*I))
696       return *I;
697   
698   return 0;
699 }
700
701 /// val_insert - Insert a value into a set only if there is not a value
702 /// with the same value number already in the set
703 void GVNPRE::val_insert(ValueNumberedSet& s, Value* v) {
704   uint32_t num = VN.lookup(v);
705   if (!s.test(num))
706     s.insert(v);
707 }
708
709 /// val_replace - Insert a value into a set, replacing any values already in
710 /// the set that have the same value number
711 void GVNPRE::val_replace(ValueNumberedSet& s, Value* v) {
712   uint32_t num = VN.lookup(v);
713   Value* leader = find_leader(s, num);
714   if (leader != 0)
715     s.erase(leader);
716   s.insert(v);
717   s.set(num);
718 }
719
720 /// phi_translate - Given a value, its parent block, and a predecessor of its
721 /// parent, translate the value into legal for the predecessor block.  This 
722 /// means translating its operands (and recursively, their operands) through
723 /// any phi nodes in the parent into values available in the predecessor
724 Value* GVNPRE::phi_translate(Value* V, BasicBlock* pred, BasicBlock* succ) {
725   if (V == 0)
726     return 0;
727   
728   // Unary Operations
729   if (CastInst* U = dyn_cast<CastInst>(V)) {
730     Value* newOp1 = 0;
731     if (isa<Instruction>(U->getOperand(0)))
732       newOp1 = phi_translate(U->getOperand(0), pred, succ);
733     else
734       newOp1 = U->getOperand(0);
735     
736     if (newOp1 == 0)
737       return 0;
738     
739     if (newOp1 != U->getOperand(0)) {
740       Instruction* newVal = 0;
741       if (CastInst* C = dyn_cast<CastInst>(U))
742         newVal = CastInst::create(C->getOpcode(),
743                                   newOp1, C->getType(),
744                                   C->getName()+".expr");
745       
746       uint32_t v = VN.lookup_or_add(newVal);
747       
748       Value* leader = find_leader(availableOut[pred], v);
749       if (leader == 0) {
750         createdExpressions.push_back(newVal);
751         return newVal;
752       } else {
753         VN.erase(newVal);
754         delete newVal;
755         return leader;
756       }
757     }
758   
759   // Binary Operations
760   } if (isa<BinaryOperator>(V) || isa<CmpInst>(V) || 
761       isa<ExtractElementInst>(V)) {
762     User* U = cast<User>(V);
763     
764     Value* newOp1 = 0;
765     if (isa<Instruction>(U->getOperand(0)))
766       newOp1 = phi_translate(U->getOperand(0), pred, succ);
767     else
768       newOp1 = U->getOperand(0);
769     
770     if (newOp1 == 0)
771       return 0;
772     
773     Value* newOp2 = 0;
774     if (isa<Instruction>(U->getOperand(1)))
775       newOp2 = phi_translate(U->getOperand(1), pred, succ);
776     else
777       newOp2 = U->getOperand(1);
778     
779     if (newOp2 == 0)
780       return 0;
781     
782     if (newOp1 != U->getOperand(0) || newOp2 != U->getOperand(1)) {
783       Instruction* newVal = 0;
784       if (BinaryOperator* BO = dyn_cast<BinaryOperator>(U))
785         newVal = BinaryOperator::create(BO->getOpcode(),
786                                         newOp1, newOp2,
787                                         BO->getName()+".expr");
788       else if (CmpInst* C = dyn_cast<CmpInst>(U))
789         newVal = CmpInst::create(C->getOpcode(),
790                                  C->getPredicate(),
791                                  newOp1, newOp2,
792                                  C->getName()+".expr");
793       else if (ExtractElementInst* E = dyn_cast<ExtractElementInst>(U))
794         newVal = new ExtractElementInst(newOp1, newOp2, E->getName()+".expr");
795       
796       uint32_t v = VN.lookup_or_add(newVal);
797       
798       Value* leader = find_leader(availableOut[pred], v);
799       if (leader == 0) {
800         createdExpressions.push_back(newVal);
801         return newVal;
802       } else {
803         VN.erase(newVal);
804         delete newVal;
805         return leader;
806       }
807     }
808   
809   // Ternary Operations
810   } else if (isa<ShuffleVectorInst>(V) || isa<InsertElementInst>(V) ||
811              isa<SelectInst>(V)) {
812     User* U = cast<User>(V);
813     
814     Value* newOp1 = 0;
815     if (isa<Instruction>(U->getOperand(0)))
816       newOp1 = phi_translate(U->getOperand(0), pred, succ);
817     else
818       newOp1 = U->getOperand(0);
819     
820     if (newOp1 == 0)
821       return 0;
822     
823     Value* newOp2 = 0;
824     if (isa<Instruction>(U->getOperand(1)))
825       newOp2 = phi_translate(U->getOperand(1), pred, succ);
826     else
827       newOp2 = U->getOperand(1);
828     
829     if (newOp2 == 0)
830       return 0;
831     
832     Value* newOp3 = 0;
833     if (isa<Instruction>(U->getOperand(2)))
834       newOp3 = phi_translate(U->getOperand(2), pred, succ);
835     else
836       newOp3 = U->getOperand(2);
837     
838     if (newOp3 == 0)
839       return 0;
840     
841     if (newOp1 != U->getOperand(0) ||
842         newOp2 != U->getOperand(1) ||
843         newOp3 != U->getOperand(2)) {
844       Instruction* newVal = 0;
845       if (ShuffleVectorInst* S = dyn_cast<ShuffleVectorInst>(U))
846         newVal = new ShuffleVectorInst(newOp1, newOp2, newOp3,
847                                        S->getName()+".expr");
848       else if (InsertElementInst* I = dyn_cast<InsertElementInst>(U))
849         newVal = new InsertElementInst(newOp1, newOp2, newOp3,
850                                        I->getName()+".expr");
851       else if (SelectInst* I = dyn_cast<SelectInst>(U))
852         newVal = new SelectInst(newOp1, newOp2, newOp3, I->getName()+".expr");
853       
854       uint32_t v = VN.lookup_or_add(newVal);
855       
856       Value* leader = find_leader(availableOut[pred], v);
857       if (leader == 0) {
858         createdExpressions.push_back(newVal);
859         return newVal;
860       } else {
861         VN.erase(newVal);
862         delete newVal;
863         return leader;
864       }
865     }
866   
867   // Varargs operators
868   } else if (GetElementPtrInst* U = dyn_cast<GetElementPtrInst>(V)) {
869     Value* newOp1 = 0;
870     if (isa<Instruction>(U->getPointerOperand()))
871       newOp1 = phi_translate(U->getPointerOperand(), pred, succ);
872     else
873       newOp1 = U->getPointerOperand();
874     
875     if (newOp1 == 0)
876       return 0;
877     
878     bool changed_idx = false;
879     std::vector<Value*> newIdx;
880     for (GetElementPtrInst::op_iterator I = U->idx_begin(), E = U->idx_end();
881          I != E; ++I)
882       if (isa<Instruction>(*I)) {
883         Value* newVal = phi_translate(*I, pred, succ);
884         newIdx.push_back(newVal);
885         if (newVal != *I)
886           changed_idx = true;
887       } else {
888         newIdx.push_back(*I);
889       }
890     
891     if (newOp1 != U->getPointerOperand() || changed_idx) {
892       Instruction* newVal = new GetElementPtrInst(newOp1,
893                                        &newIdx[0], newIdx.size(),
894                                        U->getName()+".expr");
895       
896       uint32_t v = VN.lookup_or_add(newVal);
897       
898       Value* leader = find_leader(availableOut[pred], v);
899       if (leader == 0) {
900         createdExpressions.push_back(newVal);
901         return newVal;
902       } else {
903         VN.erase(newVal);
904         delete newVal;
905         return leader;
906       }
907     }
908   
909   // PHI Nodes
910   } else if (PHINode* P = dyn_cast<PHINode>(V)) {
911     if (P->getParent() == succ)
912       return P->getIncomingValueForBlock(pred);
913   }
914   
915   return V;
916 }
917
918 /// phi_translate_set - Perform phi translation on every element of a set
919 void GVNPRE::phi_translate_set(ValueNumberedSet& anticIn,
920                               BasicBlock* pred, BasicBlock* succ,
921                               ValueNumberedSet& out) {
922   for (ValueNumberedSet::iterator I = anticIn.begin(),
923        E = anticIn.end(); I != E; ++I) {
924     Value* V = phi_translate(*I, pred, succ);
925     if (V != 0 && !out.test(VN.lookup_or_add(V))) {
926       out.insert(V);
927       out.set(VN.lookup(V));
928     }
929   }
930 }
931
932 /// dependsOnInvoke - Test if a value has an phi node as an operand, any of 
933 /// whose inputs is an invoke instruction.  If this is true, we cannot safely
934 /// PRE the instruction or anything that depends on it.
935 bool GVNPRE::dependsOnInvoke(Value* V) {
936   if (PHINode* p = dyn_cast<PHINode>(V)) {
937     for (PHINode::op_iterator I = p->op_begin(), E = p->op_end(); I != E; ++I)
938       if (isa<InvokeInst>(*I))
939         return true;
940     return false;
941   } else {
942     return false;
943   }
944 }
945
946 /// clean - Remove all non-opaque values from the set whose operands are not
947 /// themselves in the set, as well as all values that depend on invokes (see 
948 /// above)
949 void GVNPRE::clean(ValueNumberedSet& set) {
950   std::vector<Value*> worklist;
951   worklist.reserve(set.size());
952   topo_sort(set, worklist);
953   
954   for (unsigned i = 0; i < worklist.size(); ++i) {
955     Value* v = worklist[i];
956     
957     // Handle unary ops
958     if (CastInst* U = dyn_cast<CastInst>(v)) {
959       bool lhsValid = !isa<Instruction>(U->getOperand(0));
960       lhsValid |= set.test(VN.lookup(U->getOperand(0)));
961       if (lhsValid)
962         lhsValid = !dependsOnInvoke(U->getOperand(0));
963       
964       if (!lhsValid) {
965         set.erase(U);
966         set.reset(VN.lookup(U));
967       }
968     
969     // Handle binary ops
970     } else if (isa<BinaryOperator>(v) || isa<CmpInst>(v) ||
971         isa<ExtractElementInst>(v)) {
972       User* U = cast<User>(v);
973       
974       bool lhsValid = !isa<Instruction>(U->getOperand(0));
975       lhsValid |= set.test(VN.lookup(U->getOperand(0)));
976       if (lhsValid)
977         lhsValid = !dependsOnInvoke(U->getOperand(0));
978     
979       bool rhsValid = !isa<Instruction>(U->getOperand(1));
980       rhsValid |= set.test(VN.lookup(U->getOperand(1)));
981       if (rhsValid)
982         rhsValid = !dependsOnInvoke(U->getOperand(1));
983       
984       if (!lhsValid || !rhsValid) {
985         set.erase(U);
986         set.reset(VN.lookup(U));
987       }
988     
989     // Handle ternary ops
990     } else if (isa<ShuffleVectorInst>(v) || isa<InsertElementInst>(v) ||
991                isa<SelectInst>(v)) {
992       User* U = cast<User>(v);
993     
994       bool lhsValid = !isa<Instruction>(U->getOperand(0));
995       lhsValid |= set.test(VN.lookup(U->getOperand(0)));
996       if (lhsValid)
997         lhsValid = !dependsOnInvoke(U->getOperand(0));
998       
999       bool rhsValid = !isa<Instruction>(U->getOperand(1));
1000       rhsValid |= set.test(VN.lookup(U->getOperand(1)));
1001       if (rhsValid)
1002         rhsValid = !dependsOnInvoke(U->getOperand(1));
1003       
1004       bool thirdValid = !isa<Instruction>(U->getOperand(2));
1005       thirdValid |= set.test(VN.lookup(U->getOperand(2)));
1006       if (thirdValid)
1007         thirdValid = !dependsOnInvoke(U->getOperand(2));
1008     
1009       if (!lhsValid || !rhsValid || !thirdValid) {
1010         set.erase(U);
1011         set.reset(VN.lookup(U));
1012       }
1013     
1014     // Handle varargs ops
1015     } else if (GetElementPtrInst* U = dyn_cast<GetElementPtrInst>(v)) {
1016       bool ptrValid = !isa<Instruction>(U->getPointerOperand());
1017       ptrValid |= set.test(VN.lookup(U->getPointerOperand()));
1018       if (ptrValid)
1019         ptrValid = !dependsOnInvoke(U->getPointerOperand());
1020       
1021       bool varValid = true;
1022       for (GetElementPtrInst::op_iterator I = U->idx_begin(), E = U->idx_end();
1023            I != E; ++I)
1024         if (varValid) {
1025           varValid &= !isa<Instruction>(*I) || set.test(VN.lookup(*I));
1026           varValid &= !dependsOnInvoke(*I);
1027         }
1028     
1029       if (!ptrValid || !varValid) {
1030         set.erase(U);
1031         set.reset(VN.lookup(U));
1032       }
1033     }
1034   }
1035 }
1036
1037 /// topo_sort - Given a set of values, sort them by topological
1038 /// order into the provided vector.
1039 void GVNPRE::topo_sort(ValueNumberedSet& set, std::vector<Value*>& vec) {
1040   SmallPtrSet<Value*, 16> visited;
1041   std::vector<Value*> stack;
1042   for (ValueNumberedSet::iterator I = set.begin(), E = set.end();
1043        I != E; ++I) {
1044     if (visited.count(*I) == 0)
1045       stack.push_back(*I);
1046     
1047     while (!stack.empty()) {
1048       Value* e = stack.back();
1049       
1050       // Handle unary ops
1051       if (CastInst* U = dyn_cast<CastInst>(e)) {
1052         Value* l = find_leader(set, VN.lookup(U->getOperand(0)));
1053     
1054         if (l != 0 && isa<Instruction>(l) &&
1055             visited.count(l) == 0)
1056           stack.push_back(l);
1057         else {
1058           vec.push_back(e);
1059           visited.insert(e);
1060           stack.pop_back();
1061         }
1062       
1063       // Handle binary ops
1064       } else if (isa<BinaryOperator>(e) || isa<CmpInst>(e) ||
1065           isa<ExtractElementInst>(e)) {
1066         User* U = cast<User>(e);
1067         Value* l = find_leader(set, VN.lookup(U->getOperand(0)));
1068         Value* r = find_leader(set, VN.lookup(U->getOperand(1)));
1069     
1070         if (l != 0 && isa<Instruction>(l) &&
1071             visited.count(l) == 0)
1072           stack.push_back(l);
1073         else if (r != 0 && isa<Instruction>(r) &&
1074                  visited.count(r) == 0)
1075           stack.push_back(r);
1076         else {
1077           vec.push_back(e);
1078           visited.insert(e);
1079           stack.pop_back();
1080         }
1081       
1082       // Handle ternary ops
1083       } else if (isa<InsertElementInst>(e) || isa<ShuffleVectorInst>(e) ||
1084                  isa<SelectInst>(e)) {
1085         User* U = cast<User>(e);
1086         Value* l = find_leader(set, VN.lookup(U->getOperand(0)));
1087         Value* r = find_leader(set, VN.lookup(U->getOperand(1)));
1088         Value* m = find_leader(set, VN.lookup(U->getOperand(2)));
1089       
1090         if (l != 0 && isa<Instruction>(l) &&
1091             visited.count(l) == 0)
1092           stack.push_back(l);
1093         else if (r != 0 && isa<Instruction>(r) &&
1094                  visited.count(r) == 0)
1095           stack.push_back(r);
1096         else if (m != 0 && isa<Instruction>(m) &&
1097                  visited.count(m) == 0)
1098           stack.push_back(m);
1099         else {
1100           vec.push_back(e);
1101           visited.insert(e);
1102           stack.pop_back();
1103         }
1104       
1105       // Handle vararg ops
1106       } else if (GetElementPtrInst* U = dyn_cast<GetElementPtrInst>(e)) {
1107         Value* p = find_leader(set, VN.lookup(U->getPointerOperand()));
1108         
1109         if (p != 0 && isa<Instruction>(p) &&
1110             visited.count(p) == 0)
1111           stack.push_back(p);
1112         else {
1113           bool push_va = false;
1114           for (GetElementPtrInst::op_iterator I = U->idx_begin(),
1115                E = U->idx_end(); I != E; ++I) {
1116             Value * v = find_leader(set, VN.lookup(*I));
1117             if (v != 0 && isa<Instruction>(v) && visited.count(v) == 0) {
1118               stack.push_back(v);
1119               push_va = true;
1120             }
1121           }
1122           
1123           if (!push_va) {
1124             vec.push_back(e);
1125             visited.insert(e);
1126             stack.pop_back();
1127           }
1128         }
1129       
1130       // Handle opaque ops
1131       } else {
1132         visited.insert(e);
1133         vec.push_back(e);
1134         stack.pop_back();
1135       }
1136     }
1137     
1138     stack.clear();
1139   }
1140 }
1141
1142 /// dump - Dump a set of values to standard error
1143 void GVNPRE::dump(ValueNumberedSet& s) const {
1144   DOUT << "{ ";
1145   for (ValueNumberedSet::iterator I = s.begin(), E = s.end();
1146        I != E; ++I) {
1147     DOUT << "" << VN.lookup(*I) << ": ";
1148     DEBUG((*I)->dump());
1149   }
1150   DOUT << "}\n\n";
1151 }
1152
1153 /// elimination - Phase 3 of the main algorithm.  Perform full redundancy 
1154 /// elimination by walking the dominator tree and removing any instruction that 
1155 /// is dominated by another instruction with the same value number.
1156 bool GVNPRE::elimination() {
1157   bool changed_function = false;
1158   
1159   std::vector<std::pair<Instruction*, Value*> > replace;
1160   std::vector<Instruction*> erase;
1161   
1162   DominatorTree& DT = getAnalysis<DominatorTree>();
1163   
1164   for (df_iterator<DomTreeNode*> DI = df_begin(DT.getRootNode()),
1165          E = df_end(DT.getRootNode()); DI != E; ++DI) {
1166     BasicBlock* BB = DI->getBlock();
1167     
1168     for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();
1169          BI != BE; ++BI) {
1170
1171       if (isa<BinaryOperator>(BI) || isa<CmpInst>(BI) ||
1172           isa<ShuffleVectorInst>(BI) || isa<InsertElementInst>(BI) ||
1173           isa<ExtractElementInst>(BI) || isa<SelectInst>(BI) ||
1174           isa<CastInst>(BI) || isa<GetElementPtrInst>(BI)) {
1175          Value *leader = find_leader(availableOut[BB], VN.lookup(BI));
1176   
1177         if (leader != 0)
1178           if (Instruction* Instr = dyn_cast<Instruction>(leader))
1179             if (Instr->getParent() != 0 && Instr != BI) {
1180               replace.push_back(std::make_pair(BI, leader));
1181               erase.push_back(BI);
1182               ++NumEliminated;
1183             }
1184       }
1185     }
1186   }
1187   
1188   while (!replace.empty()) {
1189     std::pair<Instruction*, Value*> rep = replace.back();
1190     replace.pop_back();
1191     rep.first->replaceAllUsesWith(rep.second);
1192     changed_function = true;
1193   }
1194     
1195   for (std::vector<Instruction*>::iterator I = erase.begin(), E = erase.end();
1196        I != E; ++I)
1197      (*I)->eraseFromParent();
1198   
1199   return changed_function;
1200 }
1201
1202 /// cleanup - Delete any extraneous values that were created to represent
1203 /// expressions without leaders.
1204 void GVNPRE::cleanup() {
1205   while (!createdExpressions.empty()) {
1206     Instruction* I = createdExpressions.back();
1207     createdExpressions.pop_back();
1208     
1209     delete I;
1210   }
1211 }
1212
1213 /// buildsets_availout - When calculating availability, handle an instruction
1214 /// by inserting it into the appropriate sets
1215 void GVNPRE::buildsets_availout(BasicBlock::iterator I,
1216                                 ValueNumberedSet& currAvail,
1217                                 ValueNumberedSet& currPhis,
1218                                 ValueNumberedSet& currExps,
1219                                 SmallPtrSet<Value*, 16>& currTemps) {
1220   // Handle PHI nodes
1221   if (PHINode* p = dyn_cast<PHINode>(I)) {
1222     unsigned num = VN.lookup_or_add(p);
1223     
1224     currPhis.insert(p);
1225     currPhis.set(num);
1226   
1227   // Handle unary ops
1228   } else if (CastInst* U = dyn_cast<CastInst>(I)) {
1229     Value* leftValue = U->getOperand(0);
1230     
1231     unsigned num = VN.lookup_or_add(U);
1232       
1233     if (isa<Instruction>(leftValue))
1234       if (!currExps.test(VN.lookup(leftValue))) {
1235         currExps.insert(leftValue);
1236         currExps.set(VN.lookup(leftValue));
1237       }
1238     
1239     if (!currExps.test(num)) {
1240       currExps.insert(U);
1241       currExps.set(num);
1242     }
1243   
1244   // Handle binary ops
1245   } else if (isa<BinaryOperator>(I) || isa<CmpInst>(I) ||
1246              isa<ExtractElementInst>(I)) {
1247     User* U = cast<User>(I);
1248     Value* leftValue = U->getOperand(0);
1249     Value* rightValue = U->getOperand(1);
1250     
1251     unsigned num = VN.lookup_or_add(U);
1252       
1253     if (isa<Instruction>(leftValue))
1254       if (!currExps.test(VN.lookup(leftValue))) {
1255         currExps.insert(leftValue);
1256         currExps.set(VN.lookup(leftValue));
1257       }
1258     
1259     if (isa<Instruction>(rightValue))
1260       if (!currExps.test(VN.lookup(rightValue))) {
1261         currExps.insert(rightValue);
1262         currExps.set(VN.lookup(rightValue));
1263       }
1264     
1265     if (!currExps.test(num)) {
1266       currExps.insert(U);
1267       currExps.set(num);
1268     }
1269     
1270   // Handle ternary ops
1271   } else if (isa<InsertElementInst>(I) || isa<ShuffleVectorInst>(I) ||
1272              isa<SelectInst>(I)) {
1273     User* U = cast<User>(I);
1274     Value* leftValue = U->getOperand(0);
1275     Value* rightValue = U->getOperand(1);
1276     Value* thirdValue = U->getOperand(2);
1277       
1278     VN.lookup_or_add(U);
1279     
1280     unsigned num = VN.lookup_or_add(U);
1281     
1282     if (isa<Instruction>(leftValue))
1283       if (!currExps.test(VN.lookup(leftValue))) {
1284         currExps.insert(leftValue);
1285         currExps.set(VN.lookup(leftValue));
1286       }
1287     if (isa<Instruction>(rightValue))
1288       if (!currExps.test(VN.lookup(rightValue))) {
1289         currExps.insert(rightValue);
1290         currExps.set(VN.lookup(rightValue));
1291       }
1292     if (isa<Instruction>(thirdValue))
1293       if (!currExps.test(VN.lookup(thirdValue))) {
1294         currExps.insert(thirdValue);
1295         currExps.set(VN.lookup(thirdValue));
1296       }
1297     
1298     if (!currExps.test(num)) {
1299       currExps.insert(U);
1300       currExps.set(num);
1301     }
1302     
1303   // Handle vararg ops
1304   } else if (GetElementPtrInst* U = dyn_cast<GetElementPtrInst>(I)) {
1305     Value* ptrValue = U->getPointerOperand();
1306       
1307     VN.lookup_or_add(U);
1308     
1309     unsigned num = VN.lookup_or_add(U);
1310     
1311     if (isa<Instruction>(ptrValue))
1312       if (!currExps.test(VN.lookup(ptrValue))) {
1313         currExps.insert(ptrValue);
1314         currExps.set(VN.lookup(ptrValue));
1315       }
1316     
1317     for (GetElementPtrInst::op_iterator OI = U->idx_begin(), OE = U->idx_end();
1318          OI != OE; ++OI)
1319       if (isa<Instruction>(*OI) && !currExps.test(VN.lookup(*OI))) {
1320         currExps.insert(*OI);
1321         currExps.set(VN.lookup(*OI));
1322       }
1323     
1324     if (!currExps.test(VN.lookup(U))) {
1325       currExps.insert(U);
1326       currExps.set(num);
1327     }
1328     
1329   // Handle opaque ops
1330   } else if (!I->isTerminator()){
1331     VN.lookup_or_add(I);
1332     
1333     currTemps.insert(I);
1334   }
1335     
1336   if (!I->isTerminator())
1337     if (!currAvail.test(VN.lookup(I))) {
1338       currAvail.insert(I);
1339       currAvail.set(VN.lookup(I));
1340     }
1341 }
1342
1343 /// buildsets_anticout - When walking the postdom tree, calculate the ANTIC_OUT
1344 /// set as a function of the ANTIC_IN set of the block's predecessors
1345 bool GVNPRE::buildsets_anticout(BasicBlock* BB,
1346                                 ValueNumberedSet& anticOut,
1347                                 std::set<BasicBlock*>& visited) {
1348   if (BB->getTerminator()->getNumSuccessors() == 1) {
1349     if (BB->getTerminator()->getSuccessor(0) != BB &&
1350         visited.count(BB->getTerminator()->getSuccessor(0)) == 0) {
1351       return true;
1352     }
1353     else {
1354       phi_translate_set(anticipatedIn[BB->getTerminator()->getSuccessor(0)],
1355                         BB,  BB->getTerminator()->getSuccessor(0), anticOut);
1356     }
1357   } else if (BB->getTerminator()->getNumSuccessors() > 1) {
1358     BasicBlock* first = BB->getTerminator()->getSuccessor(0);
1359     for (ValueNumberedSet::iterator I = anticipatedIn[first].begin(),
1360          E = anticipatedIn[first].end(); I != E; ++I) {
1361       anticOut.insert(*I);
1362       anticOut.set(VN.lookup(*I));
1363     }
1364     
1365     for (unsigned i = 1; i < BB->getTerminator()->getNumSuccessors(); ++i) {
1366       BasicBlock* currSucc = BB->getTerminator()->getSuccessor(i);
1367       ValueNumberedSet& succAnticIn = anticipatedIn[currSucc];
1368       
1369       std::vector<Value*> temp;
1370       
1371       for (ValueNumberedSet::iterator I = anticOut.begin(),
1372            E = anticOut.end(); I != E; ++I)
1373         if (!succAnticIn.test(VN.lookup(*I)))
1374           temp.push_back(*I);
1375
1376       for (std::vector<Value*>::iterator I = temp.begin(), E = temp.end();
1377            I != E; ++I) {
1378         anticOut.erase(*I);
1379         anticOut.reset(VN.lookup(*I));
1380       }
1381     }
1382   }
1383   
1384   return false;
1385 }
1386
1387 /// buildsets_anticin - Walk the postdom tree, calculating ANTIC_OUT for
1388 /// each block.  ANTIC_IN is then a function of ANTIC_OUT and the GEN
1389 /// sets populated in buildsets_availout
1390 unsigned GVNPRE::buildsets_anticin(BasicBlock* BB,
1391                                ValueNumberedSet& anticOut,
1392                                ValueNumberedSet& currExps,
1393                                SmallPtrSet<Value*, 16>& currTemps,
1394                                std::set<BasicBlock*>& visited) {
1395   ValueNumberedSet& anticIn = anticipatedIn[BB];
1396   unsigned old = anticIn.size();
1397       
1398   bool defer = buildsets_anticout(BB, anticOut, visited);
1399   if (defer)
1400     return 0;
1401   
1402   anticIn.clear();
1403   
1404   for (ValueNumberedSet::iterator I = anticOut.begin(),
1405        E = anticOut.end(); I != E; ++I) {
1406     anticIn.insert(*I);
1407     anticIn.set(VN.lookup(*I));
1408   }
1409   for (ValueNumberedSet::iterator I = currExps.begin(),
1410        E = currExps.end(); I != E; ++I) {
1411     if (!anticIn.test(VN.lookup(*I))) {
1412       anticIn.insert(*I);
1413       anticIn.set(VN.lookup(*I));
1414     }
1415   } 
1416   
1417   for (SmallPtrSet<Value*, 16>::iterator I = currTemps.begin(),
1418        E = currTemps.end(); I != E; ++I) {
1419     anticIn.erase(*I);
1420     anticIn.reset(VN.lookup(*I));
1421   }
1422   
1423   clean(anticIn);
1424   anticOut.clear();
1425   
1426   if (old != anticIn.size())
1427     return 2;
1428   else
1429     return 1;
1430 }
1431
1432 /// buildsets - Phase 1 of the main algorithm.  Construct the AVAIL_OUT
1433 /// and the ANTIC_IN sets.
1434 void GVNPRE::buildsets(Function& F) {
1435   std::map<BasicBlock*, ValueNumberedSet> generatedExpressions;
1436   std::map<BasicBlock*, SmallPtrSet<Value*, 16> > generatedTemporaries;
1437
1438   DominatorTree &DT = getAnalysis<DominatorTree>();   
1439   
1440   // Phase 1, Part 1: calculate AVAIL_OUT
1441   
1442   // Top-down walk of the dominator tree
1443   for (df_iterator<DomTreeNode*> DI = df_begin(DT.getRootNode()),
1444          E = df_end(DT.getRootNode()); DI != E; ++DI) {
1445     
1446     // Get the sets to update for this block
1447     ValueNumberedSet& currExps = generatedExpressions[DI->getBlock()];
1448     ValueNumberedSet& currPhis = generatedPhis[DI->getBlock()];
1449     SmallPtrSet<Value*, 16>& currTemps = generatedTemporaries[DI->getBlock()];
1450     ValueNumberedSet& currAvail = availableOut[DI->getBlock()];     
1451     
1452     BasicBlock* BB = DI->getBlock();
1453   
1454     // A block inherits AVAIL_OUT from its dominator
1455     if (DI->getIDom() != 0)
1456       currAvail = availableOut[DI->getIDom()->getBlock()];
1457
1458     for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();
1459          BI != BE; ++BI)
1460       buildsets_availout(BI, currAvail, currPhis, currExps,
1461                          currTemps);
1462       
1463   }
1464
1465   // Phase 1, Part 2: calculate ANTIC_IN
1466   
1467   std::set<BasicBlock*> visited;
1468   SmallPtrSet<BasicBlock*, 4> block_changed;
1469   for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ++FI)
1470     block_changed.insert(FI);
1471   
1472   bool changed = true;
1473   unsigned iterations = 0;
1474   
1475   while (changed) {
1476     changed = false;
1477     ValueNumberedSet anticOut;
1478     
1479     // Postorder walk of the CFG
1480     for (po_iterator<BasicBlock*> BBI = po_begin(&F.getEntryBlock()),
1481          BBE = po_end(&F.getEntryBlock()); BBI != BBE; ++BBI) {
1482       BasicBlock* BB = *BBI;
1483       
1484       if (block_changed.count(BB) != 0) {
1485         unsigned ret = buildsets_anticin(BB, anticOut,generatedExpressions[BB],
1486                                          generatedTemporaries[BB], visited);
1487       
1488         if (ret == 0) {
1489           changed = true;
1490           continue;
1491         } else {
1492           visited.insert(BB);
1493         
1494           if (ret == 2)
1495            for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
1496                  PI != PE; ++PI) {
1497               block_changed.insert(*PI);
1498            }
1499           else
1500             block_changed.erase(BB);
1501         
1502           changed |= (ret == 2);
1503         }
1504       }
1505     }
1506     
1507     iterations++;
1508   }
1509 }
1510
1511 /// insertion_pre - When a partial redundancy has been identified, eliminate it
1512 /// by inserting appropriate values into the predecessors and a phi node in
1513 /// the main block
1514 void GVNPRE::insertion_pre(Value* e, BasicBlock* BB,
1515                            std::map<BasicBlock*, Value*>& avail,
1516                     std::map<BasicBlock*, ValueNumberedSet>& new_sets) {
1517   for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB); PI != PE; ++PI) {
1518     Value* e2 = avail[*PI];
1519     if (!availableOut[*PI].test(VN.lookup(e2))) {
1520       User* U = cast<User>(e2);
1521       
1522       Value* s1 = 0;
1523       if (isa<BinaryOperator>(U->getOperand(0)) || 
1524           isa<CmpInst>(U->getOperand(0)) ||
1525           isa<ShuffleVectorInst>(U->getOperand(0)) ||
1526           isa<ExtractElementInst>(U->getOperand(0)) ||
1527           isa<InsertElementInst>(U->getOperand(0)) ||
1528           isa<SelectInst>(U->getOperand(0)) ||
1529           isa<CastInst>(U->getOperand(0)) ||
1530           isa<GetElementPtrInst>(U->getOperand(0)))
1531         s1 = find_leader(availableOut[*PI], VN.lookup(U->getOperand(0)));
1532       else
1533         s1 = U->getOperand(0);
1534       
1535       Value* s2 = 0;
1536       
1537       if (isa<BinaryOperator>(U) || 
1538           isa<CmpInst>(U) ||
1539           isa<ShuffleVectorInst>(U) ||
1540           isa<ExtractElementInst>(U) ||
1541           isa<InsertElementInst>(U) ||
1542           isa<SelectInst>(U))
1543         if (isa<BinaryOperator>(U->getOperand(1)) || 
1544             isa<CmpInst>(U->getOperand(1)) ||
1545             isa<ShuffleVectorInst>(U->getOperand(1)) ||
1546             isa<ExtractElementInst>(U->getOperand(1)) ||
1547             isa<InsertElementInst>(U->getOperand(1)) ||
1548             isa<SelectInst>(U->getOperand(1)) ||
1549             isa<CastInst>(U->getOperand(1)) ||
1550             isa<GetElementPtrInst>(U->getOperand(1))) {
1551           s2 = find_leader(availableOut[*PI], VN.lookup(U->getOperand(1)));
1552         } else {
1553           s2 = U->getOperand(1);
1554         }
1555       
1556       // Ternary Operators
1557       Value* s3 = 0;
1558       if (isa<ShuffleVectorInst>(U) ||
1559           isa<InsertElementInst>(U) ||
1560           isa<SelectInst>(U))
1561         if (isa<BinaryOperator>(U->getOperand(2)) || 
1562             isa<CmpInst>(U->getOperand(2)) ||
1563             isa<ShuffleVectorInst>(U->getOperand(2)) ||
1564             isa<ExtractElementInst>(U->getOperand(2)) ||
1565             isa<InsertElementInst>(U->getOperand(2)) ||
1566             isa<SelectInst>(U->getOperand(2)) ||
1567             isa<CastInst>(U->getOperand(2)) ||
1568             isa<GetElementPtrInst>(U->getOperand(2))) {
1569           s3 = find_leader(availableOut[*PI], VN.lookup(U->getOperand(2)));
1570         } else {
1571           s3 = U->getOperand(2);
1572         }
1573       
1574       // Vararg operators
1575       std::vector<Value*> sVarargs;
1576       if (GetElementPtrInst* G = dyn_cast<GetElementPtrInst>(U)) {
1577         for (GetElementPtrInst::op_iterator OI = G->idx_begin(),
1578              OE = G->idx_end(); OI != OE; ++OI) {
1579           if (isa<BinaryOperator>(*OI) || 
1580               isa<CmpInst>(*OI) ||
1581               isa<ShuffleVectorInst>(*OI) ||
1582               isa<ExtractElementInst>(*OI) ||
1583               isa<InsertElementInst>(*OI) ||
1584               isa<SelectInst>(*OI) ||
1585               isa<CastInst>(*OI) ||
1586               isa<GetElementPtrInst>(*OI)) {
1587             sVarargs.push_back(find_leader(availableOut[*PI], 
1588                                VN.lookup(*OI)));
1589           } else {
1590             sVarargs.push_back(*OI);
1591           }
1592         }
1593       }
1594       
1595       Value* newVal = 0;
1596       if (BinaryOperator* BO = dyn_cast<BinaryOperator>(U))
1597         newVal = BinaryOperator::create(BO->getOpcode(), s1, s2,
1598                                         BO->getName()+".gvnpre",
1599                                         (*PI)->getTerminator());
1600       else if (CmpInst* C = dyn_cast<CmpInst>(U))
1601         newVal = CmpInst::create(C->getOpcode(), C->getPredicate(), s1, s2,
1602                                  C->getName()+".gvnpre", 
1603                                  (*PI)->getTerminator());
1604       else if (ShuffleVectorInst* S = dyn_cast<ShuffleVectorInst>(U))
1605         newVal = new ShuffleVectorInst(s1, s2, s3, S->getName()+".gvnpre",
1606                                        (*PI)->getTerminator());
1607       else if (InsertElementInst* S = dyn_cast<InsertElementInst>(U))
1608         newVal = new InsertElementInst(s1, s2, s3, S->getName()+".gvnpre",
1609                                        (*PI)->getTerminator());
1610       else if (ExtractElementInst* S = dyn_cast<ExtractElementInst>(U))
1611         newVal = new ExtractElementInst(s1, s2, S->getName()+".gvnpre",
1612                                         (*PI)->getTerminator());
1613       else if (SelectInst* S = dyn_cast<SelectInst>(U))
1614         newVal = new SelectInst(s1, s2, s3, S->getName()+".gvnpre",
1615                                 (*PI)->getTerminator());
1616       else if (CastInst* C = dyn_cast<CastInst>(U))
1617         newVal = CastInst::create(C->getOpcode(), s1, C->getType(),
1618                                   C->getName()+".gvnpre", 
1619                                   (*PI)->getTerminator());
1620       else if (GetElementPtrInst* G = dyn_cast<GetElementPtrInst>(U))
1621         newVal = new GetElementPtrInst(s1, &sVarargs[0], sVarargs.size(), 
1622                                        G->getName()+".gvnpre", 
1623                                        (*PI)->getTerminator());
1624                                 
1625                   
1626       VN.add(newVal, VN.lookup(U));
1627                   
1628       ValueNumberedSet& predAvail = availableOut[*PI];
1629       val_replace(predAvail, newVal);
1630       val_replace(new_sets[*PI], newVal);
1631       predAvail.set(VN.lookup(newVal));
1632             
1633       std::map<BasicBlock*, Value*>::iterator av = avail.find(*PI);
1634       if (av != avail.end())
1635         avail.erase(av);
1636       avail.insert(std::make_pair(*PI, newVal));
1637                   
1638       ++NumInsertedVals;
1639     }
1640   }
1641               
1642   PHINode* p = 0;
1643               
1644   for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB); PI != PE; ++PI) {
1645     if (p == 0)
1646       p = new PHINode(avail[*PI]->getType(), "gvnpre-join", BB->begin());
1647     
1648     p->addIncoming(avail[*PI], *PI);
1649   }
1650
1651   VN.add(p, VN.lookup(e));
1652   val_replace(availableOut[BB], p);
1653   availableOut[BB].set(VN.lookup(e));
1654   generatedPhis[BB].insert(p);
1655   generatedPhis[BB].set(VN.lookup(e));
1656   new_sets[BB].insert(p);
1657   new_sets[BB].set(VN.lookup(e));
1658               
1659   ++NumInsertedPhis;
1660 }
1661
1662 /// insertion_mergepoint - When walking the dom tree, check at each merge
1663 /// block for the possibility of a partial redundancy.  If present, eliminate it
1664 unsigned GVNPRE::insertion_mergepoint(std::vector<Value*>& workList,
1665                                       df_iterator<DomTreeNode*>& D,
1666                     std::map<BasicBlock*, ValueNumberedSet >& new_sets) {
1667   bool changed_function = false;
1668   bool new_stuff = false;
1669   
1670   BasicBlock* BB = D->getBlock();
1671   for (unsigned i = 0; i < workList.size(); ++i) {
1672     Value* e = workList[i];
1673           
1674     if (isa<BinaryOperator>(e) || isa<CmpInst>(e) ||
1675         isa<ExtractElementInst>(e) || isa<InsertElementInst>(e) ||
1676         isa<ShuffleVectorInst>(e) || isa<SelectInst>(e) || isa<CastInst>(e) ||
1677         isa<GetElementPtrInst>(e)) {
1678       if (availableOut[D->getIDom()->getBlock()].test(VN.lookup(e)))
1679         continue;
1680             
1681       std::map<BasicBlock*, Value*> avail;
1682       bool by_some = false;
1683       bool all_same = true;
1684       Value * first_s = 0;
1685             
1686       for (pred_iterator PI = pred_begin(BB), PE = pred_end(BB); PI != PE;
1687            ++PI) {
1688         Value *e2 = phi_translate(e, *PI, BB);
1689         Value *e3 = find_leader(availableOut[*PI], VN.lookup(e2));
1690               
1691         if (e3 == 0) {
1692           std::map<BasicBlock*, Value*>::iterator av = avail.find(*PI);
1693           if (av != avail.end())
1694             avail.erase(av);
1695           avail.insert(std::make_pair(*PI, e2));
1696           all_same = false;
1697         } else {
1698           std::map<BasicBlock*, Value*>::iterator av = avail.find(*PI);
1699           if (av != avail.end())
1700             avail.erase(av);
1701           avail.insert(std::make_pair(*PI, e3));
1702                 
1703           by_some = true;
1704           if (first_s == 0)
1705             first_s = e3;
1706           else if (first_s != e3)
1707             all_same = false;
1708         }
1709       }
1710             
1711       if (by_some && !all_same &&
1712           !generatedPhis[BB].test(VN.lookup(e))) {
1713         insertion_pre(e, BB, avail, new_sets);
1714               
1715         changed_function = true;
1716         new_stuff = true;
1717       }
1718     }
1719   }
1720   
1721   unsigned retval = 0;
1722   if (changed_function)
1723     retval += 1;
1724   if (new_stuff)
1725     retval += 2;
1726   
1727   return retval;
1728 }
1729
1730 /// insert - Phase 2 of the main algorithm.  Walk the dominator tree looking for
1731 /// merge points.  When one is found, check for a partial redundancy.  If one is
1732 /// present, eliminate it.  Repeat this walk until no changes are made.
1733 bool GVNPRE::insertion(Function& F) {
1734   bool changed_function = false;
1735
1736   DominatorTree &DT = getAnalysis<DominatorTree>();  
1737   
1738   std::map<BasicBlock*, ValueNumberedSet> new_sets;
1739   bool new_stuff = true;
1740   while (new_stuff) {
1741     new_stuff = false;
1742     for (df_iterator<DomTreeNode*> DI = df_begin(DT.getRootNode()),
1743          E = df_end(DT.getRootNode()); DI != E; ++DI) {
1744       BasicBlock* BB = DI->getBlock();
1745       
1746       if (BB == 0)
1747         continue;
1748       
1749       ValueNumberedSet& availOut = availableOut[BB];
1750       ValueNumberedSet& anticIn = anticipatedIn[BB];
1751       
1752       // Replace leaders with leaders inherited from dominator
1753       if (DI->getIDom() != 0) {
1754         ValueNumberedSet& dom_set = new_sets[DI->getIDom()->getBlock()];
1755         for (ValueNumberedSet::iterator I = dom_set.begin(),
1756              E = dom_set.end(); I != E; ++I) {
1757           val_replace(new_sets[BB], *I);
1758           val_replace(availOut, *I);
1759         }
1760       }
1761       
1762       // If there is more than one predecessor...
1763       if (pred_begin(BB) != pred_end(BB) && ++pred_begin(BB) != pred_end(BB)) {
1764         std::vector<Value*> workList;
1765         workList.reserve(anticIn.size());
1766         topo_sort(anticIn, workList);
1767         
1768         unsigned result = insertion_mergepoint(workList, DI, new_sets);
1769         if (result & 1)
1770           changed_function = true;
1771         if (result & 2)
1772           new_stuff = true;
1773       }
1774     }
1775   }
1776   
1777   return changed_function;
1778 }
1779
1780 // GVNPRE::runOnFunction - This is the main transformation entry point for a
1781 // function.
1782 //
1783 bool GVNPRE::runOnFunction(Function &F) {
1784   // Clean out global sets from any previous functions
1785   VN.clear();
1786   createdExpressions.clear();
1787   availableOut.clear();
1788   anticipatedIn.clear();
1789   generatedPhis.clear();
1790  
1791   bool changed_function = false;
1792   
1793   // Phase 1: BuildSets
1794   // This phase calculates the AVAIL_OUT and ANTIC_IN sets
1795   buildsets(F);
1796   
1797   // Phase 2: Insert
1798   // This phase inserts values to make partially redundant values
1799   // fully redundant
1800   changed_function |= insertion(F);
1801   
1802   // Phase 3: Eliminate
1803   // This phase performs trivial full redundancy elimination
1804   changed_function |= elimination();
1805   
1806   // Phase 4: Cleanup
1807   // This phase cleans up values that were created solely
1808   // as leaders for expressions
1809   cleanup();
1810   
1811   return changed_function;
1812 }