GVN.cpp revision 516eb1c1396bc0a2b35573e58c567d6092ed5fd0
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"
39using namespace llvm;
40
41STATISTIC(NumGVNInstr, "Number of instructions deleted");
42STATISTIC(NumGVNLoad, "Number of loads deleted");
43STATISTIC(NumGVNPRE, "Number of instructions PRE'd");
44STATISTIC(NumGVNBlocks, "Number of blocks merged");
45
46static cl::opt<bool> EnablePRE("enable-pre",
47                               cl::init(true), cl::Hidden);
48
49//===----------------------------------------------------------------------===//
50//                         ValueTable Class
51//===----------------------------------------------------------------------===//
52
53/// This class holds the mapping between values and value numbers.  It is used
54/// as an efficient mechanism to determine the expression-wise equivalence of
55/// two values.
56namespace {
57  struct VISIBILITY_HIDDEN Expression {
58    enum ExpressionOpcode { ADD, SUB, MUL, UDIV, SDIV, FDIV, UREM, SREM,
59                            FREM, SHL, LSHR, ASHR, AND, OR, XOR, ICMPEQ,
60                            ICMPNE, ICMPUGT, ICMPUGE, ICMPULT, ICMPULE,
61                            ICMPSGT, ICMPSGE, ICMPSLT, ICMPSLE, FCMPOEQ,
62                            FCMPOGT, FCMPOGE, FCMPOLT, FCMPOLE, FCMPONE,
63                            FCMPORD, FCMPUNO, FCMPUEQ, FCMPUGT, FCMPUGE,
64                            FCMPULT, FCMPULE, FCMPUNE, EXTRACT, INSERT,
65                            SHUFFLE, SELECT, TRUNC, ZEXT, SEXT, FPTOUI,
66                            FPTOSI, UITOFP, SITOFP, FPTRUNC, FPEXT,
67                            PTRTOINT, INTTOPTR, BITCAST, GEP, CALL, CONSTANT,
68                            EMPTY, TOMBSTONE };
69
70    ExpressionOpcode opcode;
71    const Type* type;
72    uint32_t firstVN;
73    uint32_t secondVN;
74    uint32_t thirdVN;
75    SmallVector<uint32_t, 4> varargs;
76    Value* function;
77
78    Expression() { }
79    Expression(ExpressionOpcode o) : opcode(o) { }
80
81    bool operator==(const Expression &other) const {
82      if (opcode != other.opcode)
83        return false;
84      else if (opcode == EMPTY || opcode == TOMBSTONE)
85        return true;
86      else if (type != other.type)
87        return false;
88      else if (function != other.function)
89        return false;
90      else if (firstVN != other.firstVN)
91        return false;
92      else if (secondVN != other.secondVN)
93        return false;
94      else if (thirdVN != other.thirdVN)
95        return false;
96      else {
97        if (varargs.size() != other.varargs.size())
98          return false;
99
100        for (size_t i = 0; i < varargs.size(); ++i)
101          if (varargs[i] != other.varargs[i])
102            return false;
103
104        return true;
105      }
106    }
107
108    bool operator!=(const Expression &other) const {
109      if (opcode != other.opcode)
110        return true;
111      else if (opcode == EMPTY || opcode == TOMBSTONE)
112        return false;
113      else if (type != other.type)
114        return true;
115      else if (function != other.function)
116        return true;
117      else if (firstVN != other.firstVN)
118        return true;
119      else if (secondVN != other.secondVN)
120        return true;
121      else if (thirdVN != other.thirdVN)
122        return true;
123      else {
124        if (varargs.size() != other.varargs.size())
125          return true;
126
127        for (size_t i = 0; i < varargs.size(); ++i)
128          if (varargs[i] != other.varargs[i])
129            return true;
130
131          return false;
132      }
133    }
134  };
135
136  class VISIBILITY_HIDDEN ValueTable {
137    private:
138      DenseMap<Value*, uint32_t> valueNumbering;
139      DenseMap<Expression, uint32_t> expressionNumbering;
140      AliasAnalysis* AA;
141      MemoryDependenceAnalysis* MD;
142      DominatorTree* DT;
143
144      uint32_t nextValueNumber;
145
146      Expression::ExpressionOpcode getOpcode(BinaryOperator* BO);
147      Expression::ExpressionOpcode getOpcode(CmpInst* C);
148      Expression::ExpressionOpcode getOpcode(CastInst* C);
149      Expression create_expression(BinaryOperator* BO);
150      Expression create_expression(CmpInst* C);
151      Expression create_expression(ShuffleVectorInst* V);
152      Expression create_expression(ExtractElementInst* C);
153      Expression create_expression(InsertElementInst* V);
154      Expression create_expression(SelectInst* V);
155      Expression create_expression(CastInst* C);
156      Expression create_expression(GetElementPtrInst* G);
157      Expression create_expression(CallInst* C);
158      Expression create_expression(Constant* C);
159    public:
160      ValueTable() : nextValueNumber(1) { }
161      uint32_t lookup_or_add(Value* V);
162      uint32_t lookup(Value* V) const;
163      void add(Value* V, uint32_t num);
164      void clear();
165      void erase(Value* v);
166      unsigned size();
167      void setAliasAnalysis(AliasAnalysis* A) { AA = A; }
168      void setMemDep(MemoryDependenceAnalysis* M) { MD = M; }
169      void setDomTree(DominatorTree* D) { DT = D; }
170      uint32_t getNextUnusedValueNumber() { return nextValueNumber; }
171  };
172}
173
174namespace llvm {
175template <> struct DenseMapInfo<Expression> {
176  static inline Expression getEmptyKey() {
177    return Expression(Expression::EMPTY);
178  }
179
180  static inline Expression getTombstoneKey() {
181    return Expression(Expression::TOMBSTONE);
182  }
183
184  static unsigned getHashValue(const Expression e) {
185    unsigned hash = e.opcode;
186
187    hash = e.firstVN + hash * 37;
188    hash = e.secondVN + hash * 37;
189    hash = e.thirdVN + hash * 37;
190
191    hash = ((unsigned)((uintptr_t)e.type >> 4) ^
192            (unsigned)((uintptr_t)e.type >> 9)) +
193           hash * 37;
194
195    for (SmallVector<uint32_t, 4>::const_iterator I = e.varargs.begin(),
196         E = e.varargs.end(); I != E; ++I)
197      hash = *I + hash * 37;
198
199    hash = ((unsigned)((uintptr_t)e.function >> 4) ^
200            (unsigned)((uintptr_t)e.function >> 9)) +
201           hash * 37;
202
203    return hash;
204  }
205  static bool isEqual(const Expression &LHS, const Expression &RHS) {
206    return LHS == RHS;
207  }
208  static bool isPod() { return true; }
209};
210}
211
212//===----------------------------------------------------------------------===//
213//                     ValueTable Internal Functions
214//===----------------------------------------------------------------------===//
215Expression::ExpressionOpcode ValueTable::getOpcode(BinaryOperator* BO) {
216  switch(BO->getOpcode()) {
217  default: // THIS SHOULD NEVER HAPPEN
218    assert(0 && "Binary operator with unknown opcode?");
219  case Instruction::Add:  return Expression::ADD;
220  case Instruction::Sub:  return Expression::SUB;
221  case Instruction::Mul:  return Expression::MUL;
222  case Instruction::UDiv: return Expression::UDIV;
223  case Instruction::SDiv: return Expression::SDIV;
224  case Instruction::FDiv: return Expression::FDIV;
225  case Instruction::URem: return Expression::UREM;
226  case Instruction::SRem: return Expression::SREM;
227  case Instruction::FRem: return Expression::FREM;
228  case Instruction::Shl:  return Expression::SHL;
229  case Instruction::LShr: return Expression::LSHR;
230  case Instruction::AShr: return Expression::ASHR;
231  case Instruction::And:  return Expression::AND;
232  case Instruction::Or:   return Expression::OR;
233  case Instruction::Xor:  return Expression::XOR;
234  }
235}
236
237Expression::ExpressionOpcode ValueTable::getOpcode(CmpInst* C) {
238  if (isa<ICmpInst>(C) || isa<VICmpInst>(C)) {
239    switch (C->getPredicate()) {
240    default:  // THIS SHOULD NEVER HAPPEN
241      assert(0 && "Comparison with unknown predicate?");
242    case ICmpInst::ICMP_EQ:  return Expression::ICMPEQ;
243    case ICmpInst::ICMP_NE:  return Expression::ICMPNE;
244    case ICmpInst::ICMP_UGT: return Expression::ICMPUGT;
245    case ICmpInst::ICMP_UGE: return Expression::ICMPUGE;
246    case ICmpInst::ICMP_ULT: return Expression::ICMPULT;
247    case ICmpInst::ICMP_ULE: return Expression::ICMPULE;
248    case ICmpInst::ICMP_SGT: return Expression::ICMPSGT;
249    case ICmpInst::ICMP_SGE: return Expression::ICMPSGE;
250    case ICmpInst::ICMP_SLT: return Expression::ICMPSLT;
251    case ICmpInst::ICMP_SLE: return Expression::ICMPSLE;
252    }
253  }
254  assert((isa<FCmpInst>(C) || isa<VFCmpInst>(C)) && "Unknown compare");
255  switch (C->getPredicate()) {
256  default: // THIS SHOULD NEVER HAPPEN
257    assert(0 && "Comparison with unknown predicate?");
258  case FCmpInst::FCMP_OEQ: return Expression::FCMPOEQ;
259  case FCmpInst::FCMP_OGT: return Expression::FCMPOGT;
260  case FCmpInst::FCMP_OGE: return Expression::FCMPOGE;
261  case FCmpInst::FCMP_OLT: return Expression::FCMPOLT;
262  case FCmpInst::FCMP_OLE: return Expression::FCMPOLE;
263  case FCmpInst::FCMP_ONE: return Expression::FCMPONE;
264  case FCmpInst::FCMP_ORD: return Expression::FCMPORD;
265  case FCmpInst::FCMP_UNO: return Expression::FCMPUNO;
266  case FCmpInst::FCMP_UEQ: return Expression::FCMPUEQ;
267  case FCmpInst::FCMP_UGT: return Expression::FCMPUGT;
268  case FCmpInst::FCMP_UGE: return Expression::FCMPUGE;
269  case FCmpInst::FCMP_ULT: return Expression::FCMPULT;
270  case FCmpInst::FCMP_ULE: return Expression::FCMPULE;
271  case FCmpInst::FCMP_UNE: return Expression::FCMPUNE;
272  }
273}
274
275Expression::ExpressionOpcode ValueTable::getOpcode(CastInst* C) {
276  switch(C->getOpcode()) {
277  default: // THIS SHOULD NEVER HAPPEN
278    assert(0 && "Cast operator with unknown opcode?");
279  case Instruction::Trunc:    return Expression::TRUNC;
280  case Instruction::ZExt:     return Expression::ZEXT;
281  case Instruction::SExt:     return Expression::SEXT;
282  case Instruction::FPToUI:   return Expression::FPTOUI;
283  case Instruction::FPToSI:   return Expression::FPTOSI;
284  case Instruction::UIToFP:   return Expression::UITOFP;
285  case Instruction::SIToFP:   return Expression::SITOFP;
286  case Instruction::FPTrunc:  return Expression::FPTRUNC;
287  case Instruction::FPExt:    return Expression::FPEXT;
288  case Instruction::PtrToInt: return Expression::PTRTOINT;
289  case Instruction::IntToPtr: return Expression::INTTOPTR;
290  case Instruction::BitCast:  return Expression::BITCAST;
291  }
292}
293
294Expression ValueTable::create_expression(CallInst* C) {
295  Expression e;
296
297  e.type = C->getType();
298  e.firstVN = 0;
299  e.secondVN = 0;
300  e.thirdVN = 0;
301  e.function = C->getCalledFunction();
302  e.opcode = Expression::CALL;
303
304  for (CallInst::op_iterator I = C->op_begin()+1, E = C->op_end();
305       I != E; ++I)
306    e.varargs.push_back(lookup_or_add(*I));
307
308  return e;
309}
310
311Expression ValueTable::create_expression(BinaryOperator* BO) {
312  Expression e;
313
314  e.firstVN = lookup_or_add(BO->getOperand(0));
315  e.secondVN = lookup_or_add(BO->getOperand(1));
316  e.thirdVN = 0;
317  e.function = 0;
318  e.type = BO->getType();
319  e.opcode = getOpcode(BO);
320
321  return e;
322}
323
324Expression ValueTable::create_expression(CmpInst* C) {
325  Expression e;
326
327  e.firstVN = lookup_or_add(C->getOperand(0));
328  e.secondVN = lookup_or_add(C->getOperand(1));
329  e.thirdVN = 0;
330  e.function = 0;
331  e.type = C->getType();
332  e.opcode = getOpcode(C);
333
334  return e;
335}
336
337Expression ValueTable::create_expression(CastInst* C) {
338  Expression e;
339
340  e.firstVN = lookup_or_add(C->getOperand(0));
341  e.secondVN = 0;
342  e.thirdVN = 0;
343  e.function = 0;
344  e.type = C->getType();
345  e.opcode = getOpcode(C);
346
347  return e;
348}
349
350Expression ValueTable::create_expression(ShuffleVectorInst* S) {
351  Expression e;
352
353  e.firstVN = lookup_or_add(S->getOperand(0));
354  e.secondVN = lookup_or_add(S->getOperand(1));
355  e.thirdVN = lookup_or_add(S->getOperand(2));
356  e.function = 0;
357  e.type = S->getType();
358  e.opcode = Expression::SHUFFLE;
359
360  return e;
361}
362
363Expression ValueTable::create_expression(ExtractElementInst* E) {
364  Expression e;
365
366  e.firstVN = lookup_or_add(E->getOperand(0));
367  e.secondVN = lookup_or_add(E->getOperand(1));
368  e.thirdVN = 0;
369  e.function = 0;
370  e.type = E->getType();
371  e.opcode = Expression::EXTRACT;
372
373  return e;
374}
375
376Expression ValueTable::create_expression(InsertElementInst* I) {
377  Expression e;
378
379  e.firstVN = lookup_or_add(I->getOperand(0));
380  e.secondVN = lookup_or_add(I->getOperand(1));
381  e.thirdVN = lookup_or_add(I->getOperand(2));
382  e.function = 0;
383  e.type = I->getType();
384  e.opcode = Expression::INSERT;
385
386  return e;
387}
388
389Expression ValueTable::create_expression(SelectInst* I) {
390  Expression e;
391
392  e.firstVN = lookup_or_add(I->getCondition());
393  e.secondVN = lookup_or_add(I->getTrueValue());
394  e.thirdVN = lookup_or_add(I->getFalseValue());
395  e.function = 0;
396  e.type = I->getType();
397  e.opcode = Expression::SELECT;
398
399  return e;
400}
401
402Expression ValueTable::create_expression(GetElementPtrInst* G) {
403  Expression e;
404
405  e.firstVN = lookup_or_add(G->getPointerOperand());
406  e.secondVN = 0;
407  e.thirdVN = 0;
408  e.function = 0;
409  e.type = G->getType();
410  e.opcode = Expression::GEP;
411
412  for (GetElementPtrInst::op_iterator I = G->idx_begin(), E = G->idx_end();
413       I != E; ++I)
414    e.varargs.push_back(lookup_or_add(*I));
415
416  return e;
417}
418
419//===----------------------------------------------------------------------===//
420//                     ValueTable External Functions
421//===----------------------------------------------------------------------===//
422
423/// add - Insert a value into the table with a specified value number.
424void ValueTable::add(Value* V, uint32_t num) {
425  valueNumbering.insert(std::make_pair(V, num));
426}
427
428/// lookup_or_add - Returns the value number for the specified value, assigning
429/// it a new number if it did not have one before.
430uint32_t ValueTable::lookup_or_add(Value* V) {
431  DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
432  if (VI != valueNumbering.end())
433    return VI->second;
434
435  if (CallInst* C = dyn_cast<CallInst>(V)) {
436    if (AA->doesNotAccessMemory(C)) {
437      Expression e = create_expression(C);
438
439      DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
440      if (EI != expressionNumbering.end()) {
441        valueNumbering.insert(std::make_pair(V, EI->second));
442        return EI->second;
443      } else {
444        expressionNumbering.insert(std::make_pair(e, nextValueNumber));
445        valueNumbering.insert(std::make_pair(V, nextValueNumber));
446
447        return nextValueNumber++;
448      }
449    } else if (AA->onlyReadsMemory(C)) {
450      Expression e = create_expression(C);
451
452      if (expressionNumbering.find(e) == expressionNumbering.end()) {
453        expressionNumbering.insert(std::make_pair(e, nextValueNumber));
454        valueNumbering.insert(std::make_pair(V, nextValueNumber));
455        return nextValueNumber++;
456      }
457
458      Instruction* local_dep = MD->getDependency(C);
459
460      if (local_dep == MemoryDependenceAnalysis::None) {
461        valueNumbering.insert(std::make_pair(V, nextValueNumber));
462        return nextValueNumber++;
463      } else if (local_dep != MemoryDependenceAnalysis::NonLocal) {
464        if (!isa<CallInst>(local_dep)) {
465          valueNumbering.insert(std::make_pair(V, nextValueNumber));
466          return nextValueNumber++;
467        }
468
469        CallInst* local_cdep = cast<CallInst>(local_dep);
470
471        if (local_cdep->getCalledFunction() != C->getCalledFunction() ||
472            local_cdep->getNumOperands() != C->getNumOperands()) {
473          valueNumbering.insert(std::make_pair(V, nextValueNumber));
474          return nextValueNumber++;
475        } else if (!C->getCalledFunction()) {
476          valueNumbering.insert(std::make_pair(V, nextValueNumber));
477          return nextValueNumber++;
478        } else {
479          for (unsigned i = 1; i < C->getNumOperands(); ++i) {
480            uint32_t c_vn = lookup_or_add(C->getOperand(i));
481            uint32_t cd_vn = lookup_or_add(local_cdep->getOperand(i));
482            if (c_vn != cd_vn) {
483              valueNumbering.insert(std::make_pair(V, nextValueNumber));
484              return nextValueNumber++;
485            }
486          }
487
488          uint32_t v = lookup_or_add(local_cdep);
489          valueNumbering.insert(std::make_pair(V, v));
490          return v;
491        }
492      }
493
494
495      DenseMap<BasicBlock*, Value*> deps;
496      MD->getNonLocalDependency(C, deps);
497      CallInst* cdep = 0;
498
499      for (DenseMap<BasicBlock*, Value*>::iterator I = deps.begin(),
500           E = deps.end(); I != E; ++I) {
501        if (I->second == MemoryDependenceAnalysis::None) {
502          valueNumbering.insert(std::make_pair(V, nextValueNumber));
503
504          return nextValueNumber++;
505        } else if (I->second != MemoryDependenceAnalysis::NonLocal) {
506          if (DT->properlyDominates(I->first, C->getParent())) {
507            if (CallInst* CD = dyn_cast<CallInst>(I->second))
508              cdep = CD;
509            else {
510              valueNumbering.insert(std::make_pair(V, nextValueNumber));
511              return nextValueNumber++;
512            }
513          } else {
514            valueNumbering.insert(std::make_pair(V, nextValueNumber));
515            return nextValueNumber++;
516          }
517        }
518      }
519
520      if (!cdep) {
521        valueNumbering.insert(std::make_pair(V, nextValueNumber));
522        return nextValueNumber++;
523      }
524
525      if (cdep->getCalledFunction() != C->getCalledFunction() ||
526          cdep->getNumOperands() != C->getNumOperands()) {
527        valueNumbering.insert(std::make_pair(V, nextValueNumber));
528        return nextValueNumber++;
529      } else if (!C->getCalledFunction()) {
530        valueNumbering.insert(std::make_pair(V, nextValueNumber));
531        return nextValueNumber++;
532      } else {
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
547    } else {
548      valueNumbering.insert(std::make_pair(V, nextValueNumber));
549      return nextValueNumber++;
550    }
551  } else if (BinaryOperator* BO = dyn_cast<BinaryOperator>(V)) {
552    Expression e = create_expression(BO);
553
554    DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
555    if (EI != expressionNumbering.end()) {
556      valueNumbering.insert(std::make_pair(V, EI->second));
557      return EI->second;
558    } else {
559      expressionNumbering.insert(std::make_pair(e, nextValueNumber));
560      valueNumbering.insert(std::make_pair(V, nextValueNumber));
561
562      return nextValueNumber++;
563    }
564  } else if (CmpInst* C = dyn_cast<CmpInst>(V)) {
565    Expression e = create_expression(C);
566
567    DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
568    if (EI != expressionNumbering.end()) {
569      valueNumbering.insert(std::make_pair(V, EI->second));
570      return EI->second;
571    } else {
572      expressionNumbering.insert(std::make_pair(e, nextValueNumber));
573      valueNumbering.insert(std::make_pair(V, nextValueNumber));
574
575      return nextValueNumber++;
576    }
577  } else if (ShuffleVectorInst* U = dyn_cast<ShuffleVectorInst>(V)) {
578    Expression e = create_expression(U);
579
580    DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
581    if (EI != expressionNumbering.end()) {
582      valueNumbering.insert(std::make_pair(V, EI->second));
583      return EI->second;
584    } else {
585      expressionNumbering.insert(std::make_pair(e, nextValueNumber));
586      valueNumbering.insert(std::make_pair(V, nextValueNumber));
587
588      return nextValueNumber++;
589    }
590  } else if (ExtractElementInst* U = dyn_cast<ExtractElementInst>(V)) {
591    Expression e = create_expression(U);
592
593    DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
594    if (EI != expressionNumbering.end()) {
595      valueNumbering.insert(std::make_pair(V, EI->second));
596      return EI->second;
597    } else {
598      expressionNumbering.insert(std::make_pair(e, nextValueNumber));
599      valueNumbering.insert(std::make_pair(V, nextValueNumber));
600
601      return nextValueNumber++;
602    }
603  } else if (InsertElementInst* U = dyn_cast<InsertElementInst>(V)) {
604    Expression e = create_expression(U);
605
606    DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
607    if (EI != expressionNumbering.end()) {
608      valueNumbering.insert(std::make_pair(V, EI->second));
609      return EI->second;
610    } else {
611      expressionNumbering.insert(std::make_pair(e, nextValueNumber));
612      valueNumbering.insert(std::make_pair(V, nextValueNumber));
613
614      return nextValueNumber++;
615    }
616  } else if (SelectInst* U = dyn_cast<SelectInst>(V)) {
617    Expression e = create_expression(U);
618
619    DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
620    if (EI != expressionNumbering.end()) {
621      valueNumbering.insert(std::make_pair(V, EI->second));
622      return EI->second;
623    } else {
624      expressionNumbering.insert(std::make_pair(e, nextValueNumber));
625      valueNumbering.insert(std::make_pair(V, nextValueNumber));
626
627      return nextValueNumber++;
628    }
629  } else if (CastInst* U = dyn_cast<CastInst>(V)) {
630    Expression e = create_expression(U);
631
632    DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
633    if (EI != expressionNumbering.end()) {
634      valueNumbering.insert(std::make_pair(V, EI->second));
635      return EI->second;
636    } else {
637      expressionNumbering.insert(std::make_pair(e, nextValueNumber));
638      valueNumbering.insert(std::make_pair(V, nextValueNumber));
639
640      return nextValueNumber++;
641    }
642  } else if (GetElementPtrInst* U = dyn_cast<GetElementPtrInst>(V)) {
643    Expression e = create_expression(U);
644
645    DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e);
646    if (EI != expressionNumbering.end()) {
647      valueNumbering.insert(std::make_pair(V, EI->second));
648      return EI->second;
649    } else {
650      expressionNumbering.insert(std::make_pair(e, nextValueNumber));
651      valueNumbering.insert(std::make_pair(V, nextValueNumber));
652
653      return nextValueNumber++;
654    }
655  } else {
656    valueNumbering.insert(std::make_pair(V, nextValueNumber));
657    return nextValueNumber++;
658  }
659}
660
661/// lookup - Returns the value number of the specified value. Fails if
662/// the value has not yet been numbered.
663uint32_t ValueTable::lookup(Value* V) const {
664  DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V);
665  assert(VI != valueNumbering.end() && "Value not numbered?");
666  return VI->second;
667}
668
669/// clear - Remove all entries from the ValueTable
670void ValueTable::clear() {
671  valueNumbering.clear();
672  expressionNumbering.clear();
673  nextValueNumber = 1;
674}
675
676/// erase - Remove a value from the value numbering
677void ValueTable::erase(Value* V) {
678  valueNumbering.erase(V);
679}
680
681//===----------------------------------------------------------------------===//
682//                         GVN Pass
683//===----------------------------------------------------------------------===//
684
685namespace {
686  struct VISIBILITY_HIDDEN ValueNumberScope {
687    ValueNumberScope* parent;
688    DenseMap<uint32_t, Value*> table;
689
690    ValueNumberScope(ValueNumberScope* p) : parent(p) { }
691  };
692}
693
694namespace {
695
696  class VISIBILITY_HIDDEN GVN : public FunctionPass {
697    bool runOnFunction(Function &F);
698  public:
699    static char ID; // Pass identification, replacement for typeid
700    GVN() : FunctionPass((intptr_t)&ID) { }
701
702  private:
703    ValueTable VN;
704    DenseMap<BasicBlock*, ValueNumberScope*> localAvail;
705
706    typedef DenseMap<Value*, SmallPtrSet<Instruction*, 4> > PhiMapType;
707    PhiMapType phiMap;
708
709
710    // This transformation requires dominator postdominator info
711    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
712      AU.addRequired<DominatorTree>();
713      AU.addRequired<MemoryDependenceAnalysis>();
714      AU.addRequired<AliasAnalysis>();
715
716      AU.addPreserved<DominatorTree>();
717      AU.addPreserved<AliasAnalysis>();
718    }
719
720    // Helper fuctions
721    // FIXME: eliminate or document these better
722    bool processLoad(LoadInst* L,
723                     DenseMap<Value*, LoadInst*> &lastLoad,
724                     SmallVectorImpl<Instruction*> &toErase);
725    bool processInstruction(Instruction* I,
726                            DenseMap<Value*, LoadInst*>& lastSeenLoad,
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  };
742
743  char GVN::ID = 0;
744}
745
746// createGVNPass - The public interface to this file...
747FunctionPass *llvm::createGVNPass() { return new GVN(); }
748
749static RegisterPass<GVN> X("gvn",
750                           "Global Value Numbering");
751
752void GVN::dump(DenseMap<uint32_t, Value*>& d) {
753  printf("{\n");
754  for (DenseMap<uint32_t, Value*>::iterator I = d.begin(),
755       E = d.end(); I != E; ++I) {
756      printf("%d\n", I->first);
757      I->second->dump();
758  }
759  printf("}\n");
760}
761
762Value* GVN::CollapsePhi(PHINode* p) {
763  DominatorTree &DT = getAnalysis<DominatorTree>();
764  Value* constVal = p->hasConstantValue();
765
766  if (!constVal) return 0;
767
768  Instruction* inst = dyn_cast<Instruction>(constVal);
769  if (!inst)
770    return constVal;
771
772  if (DT.dominates(inst, p))
773    if (isSafeReplacement(p, inst))
774      return inst;
775  return 0;
776}
777
778bool GVN::isSafeReplacement(PHINode* p, Instruction* inst) {
779  if (!isa<PHINode>(inst))
780    return true;
781
782  for (Instruction::use_iterator UI = p->use_begin(), E = p->use_end();
783       UI != E; ++UI)
784    if (PHINode* use_phi = dyn_cast<PHINode>(UI))
785      if (use_phi->getParent() == inst->getParent())
786        return false;
787
788  return true;
789}
790
791/// GetValueForBlock - Get the value to use within the specified basic block.
792/// available values are in Phis.
793Value *GVN::GetValueForBlock(BasicBlock *BB, LoadInst* orig,
794                             DenseMap<BasicBlock*, Value*> &Phis,
795                             bool top_level) {
796
797  // If we have already computed this value, return the previously computed val.
798  DenseMap<BasicBlock*, Value*>::iterator V = Phis.find(BB);
799  if (V != Phis.end() && !top_level) return V->second;
800
801  // If the block is unreachable, just return undef, since this path
802  // can't actually occur at runtime.
803  if (!getAnalysis<DominatorTree>().isReachableFromEntry(BB))
804    return Phis[BB] = UndefValue::get(orig->getType());
805
806  BasicBlock* singlePred = BB->getSinglePredecessor();
807  if (singlePred) {
808    Value *ret = GetValueForBlock(singlePred, orig, Phis);
809    Phis[BB] = ret;
810    return ret;
811  }
812
813  // Otherwise, the idom is the loop, so we need to insert a PHI node.  Do so
814  // now, then get values to fill in the incoming values for the PHI.
815  PHINode *PN = PHINode::Create(orig->getType(), orig->getName()+".rle",
816                                BB->begin());
817  PN->reserveOperandSpace(std::distance(pred_begin(BB), pred_end(BB)));
818
819  if (Phis.count(BB) == 0)
820    Phis.insert(std::make_pair(BB, PN));
821
822  // Fill in the incoming values for the block.
823  for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
824    Value* val = GetValueForBlock(*PI, orig, Phis);
825    PN->addIncoming(val, *PI);
826  }
827
828  AliasAnalysis& AA = getAnalysis<AliasAnalysis>();
829  AA.copyValue(orig, PN);
830
831  // Attempt to collapse PHI nodes that are trivially redundant
832  Value* v = CollapsePhi(PN);
833  if (!v) {
834    // Cache our phi construction results
835    phiMap[orig->getPointerOperand()].insert(PN);
836    return PN;
837  }
838
839  MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
840
841  MD.removeInstruction(PN);
842  PN->replaceAllUsesWith(v);
843
844  for (DenseMap<BasicBlock*, Value*>::iterator I = Phis.begin(),
845       E = Phis.end(); I != E; ++I)
846    if (I->second == PN)
847      I->second = v;
848
849  PN->eraseFromParent();
850
851  Phis[BB] = v;
852  return v;
853}
854
855/// processNonLocalLoad - Attempt to eliminate a load whose dependencies are
856/// non-local by performing PHI construction.
857bool GVN::processNonLocalLoad(LoadInst* L,
858                              SmallVectorImpl<Instruction*> &toErase) {
859  MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
860
861  // Find the non-local dependencies of the load
862  DenseMap<BasicBlock*, Value*> deps;
863  MD.getNonLocalDependency(L, deps);
864
865  // If we had to process more than one hundred blocks to find the
866  // dependencies, this load isn't worth worrying about.  Optimizing
867  // it will be too expensive.
868  if (deps.size() > 100)
869    return false;
870
871  DenseMap<BasicBlock*, Value*> repl;
872
873  // Filter out useless results (non-locals, etc)
874  for (DenseMap<BasicBlock*, Value*>::iterator I = deps.begin(), E = deps.end();
875       I != E; ++I) {
876    if (I->second == MemoryDependenceAnalysis::None)
877      return false;
878
879    if (I->second == MemoryDependenceAnalysis::NonLocal)
880      continue;
881
882    if (StoreInst* S = dyn_cast<StoreInst>(I->second)) {
883      if (S->getPointerOperand() != L->getPointerOperand())
884        return false;
885      repl[I->first] = S->getOperand(0);
886    } else if (LoadInst* LD = dyn_cast<LoadInst>(I->second)) {
887      if (LD->getPointerOperand() != L->getPointerOperand())
888        return false;
889      repl[I->first] = LD;
890    } else {
891      return false;
892    }
893  }
894
895  // Use cached PHI construction information from previous runs
896  SmallPtrSet<Instruction*, 4>& p = phiMap[L->getPointerOperand()];
897  for (SmallPtrSet<Instruction*, 4>::iterator I = p.begin(), E = p.end();
898       I != E; ++I) {
899    if ((*I)->getParent() == L->getParent()) {
900      MD.removeInstruction(L);
901      L->replaceAllUsesWith(*I);
902      toErase.push_back(L);
903      NumGVNLoad++;
904      return true;
905    }
906
907    repl.insert(std::make_pair((*I)->getParent(), *I));
908  }
909
910  // Perform PHI construction
911  SmallPtrSet<BasicBlock*, 4> visited;
912  Value* v = GetValueForBlock(L->getParent(), L, repl, true);
913
914  MD.removeInstruction(L);
915  L->replaceAllUsesWith(v);
916  toErase.push_back(L);
917  NumGVNLoad++;
918
919  return true;
920}
921
922/// processLoad - Attempt to eliminate a load, first by eliminating it
923/// locally, and then attempting non-local elimination if that fails.
924bool GVN::processLoad(LoadInst *L, DenseMap<Value*, LoadInst*> &lastLoad,
925                      SmallVectorImpl<Instruction*> &toErase) {
926  if (L->isVolatile()) {
927    lastLoad[L->getPointerOperand()] = L;
928    return false;
929  }
930
931  Value* pointer = L->getPointerOperand();
932  LoadInst*& last = lastLoad[pointer];
933
934  // ... to a pointer that has been loaded from before...
935  MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
936  bool removedNonLocal = false;
937  Instruction* dep = MD.getDependency(L);
938  if (dep == MemoryDependenceAnalysis::NonLocal &&
939      L->getParent() != &L->getParent()->getParent()->getEntryBlock()) {
940    removedNonLocal = processNonLocalLoad(L, toErase);
941
942    if (!removedNonLocal)
943      last = L;
944
945    return removedNonLocal;
946  }
947
948
949  bool deletedLoad = false;
950
951  // Walk up the dependency chain until we either find
952  // a dependency we can use, or we can't walk any further
953  while (dep != MemoryDependenceAnalysis::None &&
954         dep != MemoryDependenceAnalysis::NonLocal &&
955         (isa<LoadInst>(dep) || isa<StoreInst>(dep))) {
956    // ... that depends on a store ...
957    if (StoreInst* S = dyn_cast<StoreInst>(dep)) {
958      if (S->getPointerOperand() == pointer) {
959        // Remove it!
960        MD.removeInstruction(L);
961
962        L->replaceAllUsesWith(S->getOperand(0));
963        toErase.push_back(L);
964        deletedLoad = true;
965        NumGVNLoad++;
966      }
967
968      // Whether we removed it or not, we can't
969      // go any further
970      break;
971    } else if (!last) {
972      // If we don't depend on a store, and we haven't
973      // been loaded before, bail.
974      break;
975    } else if (dep == last) {
976      // Remove it!
977      MD.removeInstruction(L);
978
979      L->replaceAllUsesWith(last);
980      toErase.push_back(L);
981      deletedLoad = true;
982      NumGVNLoad++;
983
984      break;
985    } else {
986      dep = MD.getDependency(L, dep);
987    }
988  }
989
990  if (dep != MemoryDependenceAnalysis::None &&
991      dep != MemoryDependenceAnalysis::NonLocal &&
992      isa<AllocationInst>(dep)) {
993    // Check that this load is actually from the
994    // allocation we found
995    Value* v = L->getOperand(0);
996    while (true) {
997      if (BitCastInst *BC = dyn_cast<BitCastInst>(v))
998        v = BC->getOperand(0);
999      else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(v))
1000        v = GEP->getOperand(0);
1001      else
1002        break;
1003    }
1004    if (v == dep) {
1005      // If this load depends directly on an allocation, there isn't
1006      // anything stored there; therefore, we can optimize this load
1007      // to undef.
1008      MD.removeInstruction(L);
1009
1010      L->replaceAllUsesWith(UndefValue::get(L->getType()));
1011      toErase.push_back(L);
1012      deletedLoad = true;
1013      NumGVNLoad++;
1014    }
1015  }
1016
1017  if (!deletedLoad)
1018    last = L;
1019
1020  return deletedLoad;
1021}
1022
1023Value* GVN::lookupNumber(BasicBlock* BB, uint32_t num) {
1024  DenseMap<BasicBlock*, ValueNumberScope*>::iterator I = localAvail.find(BB);
1025  if (I == localAvail.end())
1026    return 0;
1027
1028  ValueNumberScope* locals = I->second;
1029
1030  while (locals) {
1031    DenseMap<uint32_t, Value*>::iterator I = locals->table.find(num);
1032    if (I != locals->table.end())
1033      return I->second;
1034    else
1035      locals = locals->parent;
1036  }
1037
1038  return 0;
1039}
1040
1041/// processInstruction - When calculating availability, handle an instruction
1042/// by inserting it into the appropriate sets
1043bool GVN::processInstruction(Instruction *I,
1044                             DenseMap<Value*, LoadInst*> &lastSeenLoad,
1045                             SmallVectorImpl<Instruction*> &toErase) {
1046  if (LoadInst* L = dyn_cast<LoadInst>(I)) {
1047    bool changed = processLoad(L, lastSeenLoad, toErase);
1048
1049    if (!changed) {
1050      unsigned num = VN.lookup_or_add(L);
1051      localAvail[I->getParent()]->table.insert(std::make_pair(num, L));
1052    }
1053
1054    return changed;
1055  }
1056
1057  uint32_t nextNum = VN.getNextUnusedValueNumber();
1058  unsigned num = VN.lookup_or_add(I);
1059
1060  // Allocations are always uniquely numbered, so we can save time and memory
1061  // by fast failing them.
1062  if (isa<AllocationInst>(I) || isa<TerminatorInst>(I)) {
1063    localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1064    return false;
1065  }
1066
1067  // Collapse PHI nodes
1068  if (PHINode* p = dyn_cast<PHINode>(I)) {
1069    Value* constVal = CollapsePhi(p);
1070
1071    if (constVal) {
1072      for (PhiMapType::iterator PI = phiMap.begin(), PE = phiMap.end();
1073           PI != PE; ++PI)
1074        if (PI->second.count(p))
1075          PI->second.erase(p);
1076
1077      p->replaceAllUsesWith(constVal);
1078      toErase.push_back(p);
1079    } else {
1080      localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1081    }
1082
1083  // If the number we were assigned was a brand new VN, then we don't
1084  // need to do a lookup to see if the number already exists
1085  // somewhere in the domtree: it can't!
1086  } else if (num == nextNum) {
1087    localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1088
1089  // Perform value-number based elimination
1090  } else if (Value* repl = lookupNumber(I->getParent(), num)) {
1091    // Remove it!
1092    MemoryDependenceAnalysis& MD = getAnalysis<MemoryDependenceAnalysis>();
1093    MD.removeInstruction(I);
1094
1095    VN.erase(I);
1096    I->replaceAllUsesWith(repl);
1097    toErase.push_back(I);
1098    return true;
1099  } else {
1100    localAvail[I->getParent()]->table.insert(std::make_pair(num, I));
1101  }
1102
1103  return false;
1104}
1105
1106// GVN::runOnFunction - This is the main transformation entry point for a
1107// function.
1108//
1109bool GVN::runOnFunction(Function& F) {
1110  VN.setAliasAnalysis(&getAnalysis<AliasAnalysis>());
1111  VN.setMemDep(&getAnalysis<MemoryDependenceAnalysis>());
1112  VN.setDomTree(&getAnalysis<DominatorTree>());
1113
1114  bool changed = false;
1115  bool shouldContinue = true;
1116
1117  // Merge unconditional branches, allowing PRE to catch more
1118  // optimization opportunities.
1119  for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ) {
1120    BasicBlock* BB = FI;
1121    ++FI;
1122    bool removedBlock = MergeBlockIntoPredecessor(BB, this);
1123    if (removedBlock) NumGVNBlocks++;
1124
1125    changed |= removedBlock;
1126  }
1127
1128  while (shouldContinue) {
1129    shouldContinue = iterateOnFunction(F);
1130    changed |= shouldContinue;
1131  }
1132
1133  if (EnablePRE) {
1134    bool PREChanged = false;
1135    while ((PREChanged = performPRE(F)))
1136      changed |= PREChanged;
1137  }
1138
1139  return changed;
1140}
1141
1142
1143bool GVN::processBlock(DomTreeNode* DTN) {
1144  BasicBlock* BB = DTN->getBlock();
1145
1146  SmallVector<Instruction*, 8> toErase;
1147  DenseMap<Value*, LoadInst*> lastSeenLoad;
1148  bool changed_function = false;
1149
1150  if (DTN->getIDom())
1151    localAvail[BB] =
1152                  new ValueNumberScope(localAvail[DTN->getIDom()->getBlock()]);
1153  else
1154    localAvail[BB] = new ValueNumberScope(0);
1155
1156  for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();
1157       BI != BE;) {
1158    changed_function |= processInstruction(BI, lastSeenLoad, toErase);
1159    if (toErase.empty()) {
1160      ++BI;
1161      continue;
1162    }
1163
1164    // If we need some instructions deleted, do it now.
1165    NumGVNInstr += toErase.size();
1166
1167    // Avoid iterator invalidation.
1168    bool AtStart = BI == BB->begin();
1169    if (!AtStart)
1170      --BI;
1171
1172    for (SmallVector<Instruction*, 4>::iterator I = toErase.begin(),
1173         E = toErase.end(); I != E; ++I)
1174      (*I)->eraseFromParent();
1175
1176    if (AtStart)
1177      BI = BB->begin();
1178    else
1179      ++BI;
1180
1181    toErase.clear();
1182  }
1183
1184  return changed_function;
1185}
1186
1187/// performPRE - Perform a purely local form of PRE that looks for diamond
1188/// control flow patterns and attempts to perform simple PRE at the join point.
1189bool GVN::performPRE(Function& F) {
1190  bool changed = false;
1191  SmallVector<std::pair<TerminatorInst*, unsigned>, 4> toSplit;
1192  for (df_iterator<BasicBlock*> DI = df_begin(&F.getEntryBlock()),
1193       DE = df_end(&F.getEntryBlock()); DI != DE; ++DI) {
1194    BasicBlock* CurrentBlock = *DI;
1195
1196    // Nothing to PRE in the entry block.
1197    if (CurrentBlock == &F.getEntryBlock()) continue;
1198
1199    for (BasicBlock::iterator BI = CurrentBlock->begin(),
1200         BE = CurrentBlock->end(); BI != BE; ) {
1201      if (isa<AllocationInst>(BI) || isa<TerminatorInst>(BI) ||
1202          isa<PHINode>(BI) || BI->mayReadFromMemory() ||
1203          BI->mayWriteToMemory()) {
1204        BI++;
1205        continue;
1206      }
1207
1208      uint32_t valno = VN.lookup(BI);
1209
1210      // Look for the predecessors for PRE opportunities.  We're
1211      // only trying to solve the basic diamond case, where
1212      // a value is computed in the successor and one predecessor,
1213      // but not the other.  We also explicitly disallow cases
1214      // where the successor is its own predecessor, because they're
1215      // more complicated to get right.
1216      unsigned numWith = 0;
1217      unsigned numWithout = 0;
1218      BasicBlock* PREPred = 0;
1219      DenseMap<BasicBlock*, Value*> predMap;
1220      for (pred_iterator PI = pred_begin(CurrentBlock),
1221           PE = pred_end(CurrentBlock); PI != PE; ++PI) {
1222        // We're not interested in PRE where the block is its
1223        // own predecessor, on in blocks with predecessors
1224        // that are not reachable.
1225        if (*PI == CurrentBlock) {
1226          numWithout = 2;
1227          break;
1228        } else if (!localAvail.count(*PI))  {
1229          numWithout = 2;
1230          break;
1231        }
1232
1233        DenseMap<uint32_t, Value*>::iterator predV =
1234                                            localAvail[*PI]->table.find(valno);
1235        if (predV == localAvail[*PI]->table.end()) {
1236          PREPred = *PI;
1237          numWithout++;
1238        } else if (predV->second == BI) {
1239          numWithout = 2;
1240        } else {
1241          predMap[*PI] = predV->second;
1242          numWith++;
1243        }
1244      }
1245
1246      // Don't do PRE when it might increase code size, i.e. when
1247      // we would need to insert instructions in more than one pred.
1248      if (numWithout != 1 || numWith == 0) {
1249        BI++;
1250        continue;
1251      }
1252
1253      // We can't do PRE safely on a critical edge, so instead we schedule
1254      // the edge to be split and perform the PRE the next time we iterate
1255      // on the function.
1256      unsigned succNum = 0;
1257      for (unsigned i = 0, e = PREPred->getTerminator()->getNumSuccessors();
1258           i != e; ++i)
1259        if (PREPred->getTerminator()->getSuccessor(i) == PREPred) {
1260          succNum = i;
1261          break;
1262        }
1263
1264      if (isCriticalEdge(PREPred->getTerminator(), succNum)) {
1265        toSplit.push_back(std::make_pair(PREPred->getTerminator(), succNum));
1266        changed = true;
1267        BI++;
1268        continue;
1269      }
1270
1271      // Instantiate the expression the in predecessor that lacked it.
1272      // Because we are going top-down through the block, all value numbers
1273      // will be available in the predecessor by the time we need them.  Any
1274      // that weren't original present will have been instantiated earlier
1275      // in this loop.
1276      Instruction* PREInstr = BI->clone();
1277      bool success = true;
1278      for (unsigned i = 0; i < BI->getNumOperands(); ++i) {
1279        Value* op = BI->getOperand(i);
1280        if (isa<Argument>(op) || isa<Constant>(op) || isa<GlobalValue>(op))
1281          PREInstr->setOperand(i, op);
1282        else {
1283          Value* V = lookupNumber(PREPred, VN.lookup(op));
1284          if (!V) {
1285            success = false;
1286            break;
1287          } else
1288            PREInstr->setOperand(i, V);
1289        }
1290      }
1291
1292      // Fail out if we encounter an operand that is not available in
1293      // the PRE predecessor.  This is typically because of loads which
1294      // are not value numbered precisely.
1295      if (!success) {
1296        delete PREInstr;
1297        BI++;
1298        continue;
1299      }
1300
1301      PREInstr->insertBefore(PREPred->getTerminator());
1302      PREInstr->setName(BI->getName() + ".pre");
1303      predMap[PREPred] = PREInstr;
1304      VN.add(PREInstr, valno);
1305      NumGVNPRE++;
1306
1307      // Update the availability map to include the new instruction.
1308      localAvail[PREPred]->table.insert(std::make_pair(valno, PREInstr));
1309
1310      // Create a PHI to make the value available in this block.
1311      PHINode* Phi = PHINode::Create(BI->getType(),
1312                                     BI->getName() + ".pre-phi",
1313                                     CurrentBlock->begin());
1314      for (pred_iterator PI = pred_begin(CurrentBlock),
1315           PE = pred_end(CurrentBlock); PI != PE; ++PI)
1316        Phi->addIncoming(predMap[*PI], *PI);
1317
1318      VN.add(Phi, valno);
1319      localAvail[CurrentBlock]->table[valno] = Phi;
1320
1321      BI->replaceAllUsesWith(Phi);
1322      VN.erase(BI);
1323
1324      Instruction* erase = BI;
1325      BI++;
1326      erase->eraseFromParent();
1327
1328      changed = true;
1329    }
1330  }
1331
1332  for (SmallVector<std::pair<TerminatorInst*, unsigned>, 4>::iterator
1333       I = toSplit.begin(), E = toSplit.end(); I != E; ++I)
1334    SplitCriticalEdge(I->first, I->second, this);
1335
1336  return changed || toSplit.size();
1337}
1338
1339// iterateOnFunction - Executes one iteration of GVN
1340bool GVN::iterateOnFunction(Function &F) {
1341  // Clean out global sets from any previous functions
1342  VN.clear();
1343  phiMap.clear();
1344
1345  for (DenseMap<BasicBlock*, ValueNumberScope*>::iterator
1346       I = localAvail.begin(), E = localAvail.end(); I != E; ++I)
1347    delete I->second;
1348  localAvail.clear();
1349
1350  DominatorTree &DT = getAnalysis<DominatorTree>();
1351
1352  // Top-down walk of the dominator tree
1353  bool changed = false;
1354  for (df_iterator<DomTreeNode*> DI = df_begin(DT.getRootNode()),
1355       DE = df_end(DT.getRootNode()); DI != DE; ++DI)
1356    changed |= processBlock(*DI);
1357
1358  return changed;
1359}
1360